mgltools-mglutil-1.5.7~rc1~cvs.20130519/0000755000175000017500000000000012146210063016701 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/0000755000175000017500000000000012146210177020364 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/bhtfunctions.py0000644000175000017500000000440610651433500023444 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by import numpy.oldnumeric as Numeric from bhtree import bhtreelib # # $Header: /opt/cvs/python/packages/share1.5/mglutil/bhtfunctions.py,v 1.9 2007/07/24 17:30:40 vareille Exp $ # # $Id: bhtfunctions.py,v 1.9 2007/07/24 17:30:40 vareille Exp $ # # ClosePointsDist2: result and dist are empty arrays large enough to contain # all the points expected to be found. To be safe, they should be the same # size as the list of coordinates. This function then puts in the results # array the indices of the close points in the list (as supplied in the array # ids): the dist array contains the corresponding distances. def findNearestAtoms(mol,vertices, **kw): """None <- color(mol,vertices2,**kw) mol: reference molecule vertices: list of lists(coordinates): the first three items in each list must be coordinates x,y,z of a point. atomIndices is the index of the nearest atom to the vertex, such that mol.allAtoms[atomIndices[x]] is the nearest atom to vertices[x] vertexIndices is the list of nearest vertices to an atom, such that vertexIndices[x] = [vertex1,vertex2,...] are the vertices associated with mol.allAtoms[x] """ coords = mol.allAtoms.coords if not hasattr(mol,'bhtree'): print "Building bhtree for ",mol ids = Numeric.arange(len(coords)).astype('i') bhtree = bhtreelib.TBHTree(coords,ids,10,10,9999.0) mol.bhtree = bhtree vertexIndices={} atomIndices={} for x in range(len(coords)): vertexIndices[x+1]=[] cutoff=5. for x in range(len(vertices)): xyz = vertices[x] result = Numeric.zeros( (len(vertices),) ).astype('i') dist = Numeric.zeros( (len(vertices),) ).astype('f') nb2 = mol.bhtree.ClosePointsDist2(tuple(xyz[:3]), cutoff, result, dist ) while nb2==0: cutoff = cutoff+5. nb2 = mol.bhtree.ClosePointsDist2(tuple(xyz[:3]), cutoff, result, dist ) result = result[:nb2] dist = dist[:nb2] idx = dist.tolist().index(min(dist)) atnum = result[idx]+1 atomIndices[x]=atnum vertexIndices[atnum].append(x) return atomIndices,vertexIndices mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/0000755000175000017500000000000012146210175021313 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/crystal.py0000644000175000017500000001414011104647302023345 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by import numpy.oldnumeric as Numeric, types def EulerAnglesToMat( angles ): """Builds a rotation matrix from Euler angles given in degrees""" from math import pi, cos, sin t1 = angles[0]* (pi/180.0) t2 = angles[1]* (pi/180.0) t3 = angles[2]* (pi/180.0) # from Lattman, Meth. Enzymology V. 115 p. 63 rot = Numeric.identity(3).astype('d') rot[0][0]= -sin(t1)*cos(t2)*sin(t3) + cos(t1)*cos(t3) rot[0][1]= cos(t1)*cos(t2)*sin(t3) + sin(t1)*cos(t3) rot[0][2]= sin(t2)*sin(t3) rot[1][0]= -sin(t1)*cos(t2)*cos(t3) - cos(t1)*sin(t3) rot[1][1]= cos(t1)*cos(t2)*cos(t3) - sin(t1)*sin(t3) rot[1][2]= sin(t2)*cos(t3) rot[2][0]= sin(t1)*sin(t2) rot[2][1]= -cos(t1)*sin(t2) rot[2][2]= cos(t2) return rot class Crystal: """Class to provide functionalities related to crystal structures""" def __init__(self, length, angles): """Constructor for Crystal""" self.ctof = None # transpose of Xformation to go from cart. to fract. self.ftoc = None # transpose of Xformation to go from fract. to cart. assert len(length)==3 and type(length[0])==types.FloatType self.length = length assert len(angles)==3 and type(angles[0])==types.FloatType self.angles = angles self.ctof = self._orthog( self.length, self.angles) # build ctof self.ftoc = self._uinv( Numeric.transpose(self.ctof) ) # build ftoc def _orthog(self, length, angles): """ let u be a 3x3 transformation matrix which relates a new cell with orthogonal axes of unit dimensions to the original unit cell (crystal system). Aug 5, 1991 changed to XPLOR convention was: ut[0][0]=as; ut[0][1]=0.; ut[0][2]=0.; ut[1][0]=bs*cosgas; ut[1][1]=1./b; ut[1][2]= -(1./tan(al))/b; ut[2][0]=cs*cosbes; ut[2][1]=0.; ut[2][2]=1./(c*sin(al)); June 1, 1996: Corrected LFT The correct orthogonalization matrix for the default PDB convention (Cartesion x along A, y in A-B plane, and z along c*) is 1/a -cos(ga)/(a sin(ga)) as cosbes 0 1/(b sin(ga)) bs cosals 0 0 cs and the deorthogonalization matrix is a b cos(ga) c cos(be) 0 b sin(ga) -c sin(be) cosals 0 0 1/cs usage: xf = x * ut[0][0] + y * ut[0][1] + z * ut[0][2] yf = x * ut[1][0] + y * ut[1][1] + z * ut[1][2] zf = x * ut[2][0] + y * ut[2][1] + z * ut[2][2] """ from math import pi, cos, sin, sqrt degtor=pi/180. al=angles[0]*degtor be=angles[1]*degtor ga=angles[2]*degtor vol= length[0]* length[1]* length[2] *sqrt(1.-cos(al)*cos(al)-cos(be)*cos(be) -cos(ga)*cos(ga)+2.*(cos(al)*cos(be)*cos(ga))) lAs=(length[1]* length[2]*sin(al))/vol bs=(length[0]* length[2]*sin(be))/vol cs=(length[0]* length[1]*sin(ga))/vol cosals=(cos(be)*cos(ga)-cos(al))/(sin(be)*sin(ga)) cosbes=(cos(ga)*cos(al)-cos(be))/(sin(ga)*sin(al)) cosgas=(cos(al)*cos(be)-cos(ga))/(sin(al)*sin(be)) ut = Numeric.identity(3).astype('f') # sabgs1 = sqrt(1.0-cos(al)*cos(al)) ut[0][0]=1./length[0] ut[0][1]= -(cos(ga))/(sin(ga)*length[0]) # ut[0][2]= -(cos(ga)*sin(be)*cosals + cos(be)*sin(ga))/ */ # (sin(be)*sabgs1*sin(ga)*a) */ ut[0][2]= lAs * cosbes ut[1][0]=0.0 ut[1][1]=1./(sin(ga)*length[1]) # ut[1][2]=cosals/(sabgs1*sin(ga)*b) ut[1][2]= bs * cosals ut[2][0]=0.0 ut[2][1]=0.0 # ut[2][2]=1.0/(sin(be)*sabgs1*c) ut[2][2]= cs return Numeric.transpose(ut) def _uinv(self, mat): """Inverts a transformation matrix used to go from cartesian to cell coordinates""" dmat = Numeric.identity(3).astype('d') imat = Numeric.identity(3).astype('d') dmat[0][0]=mat[1][1]*mat[2][2]-mat[2][1]*mat[1][2] dmat[1][0]=mat[1][2]*mat[2][0]-mat[1][0]*mat[2][2] dmat[2][0]=mat[1][0]*mat[2][1]-mat[1][1]*mat[2][0] dmat[0][1]=mat[0][2]*mat[2][1]-mat[0][1]*mat[2][2] dmat[1][1]=mat[0][0]*mat[2][2]-mat[0][2]*mat[2][0] dmat[2][1]=mat[0][1]*mat[2][0]-mat[0][0]*mat[2][1] dmat[0][2]=mat[0][1]*mat[1][2]-mat[0][2]*mat[1][1] dmat[1][2]=mat[0][2]*mat[1][0]-mat[0][0]*mat[1][2] dmat[2][2]=mat[0][0]*mat[1][1]-mat[0][1]*mat[1][0] det = mat[0][0]*mat[1][1]*mat[2][2]+mat[1][0]*mat[2][1]*mat[0][2]+ \ mat[2][0]*mat[0][1]*mat[1][2]-mat[2][2]*mat[0][1]*mat[1][0]- \ mat[0][0]*mat[2][1]*mat[1][2]-mat[2][0]*mat[1][1]*mat[0][2] for i in (0,1,2): for j in (0,1,2): imat[j][i]=dmat[j][i]/det return Numeric.transpose(imat) def toCartesian(self, coords): """Transform coords from fractional coordinates to cartesian space""" return Numeric.dot(coords, self.ftoc) def toFractional(self, coords): """Transform coords from cartesian coordinates to fractional space""" return Numeric.dot(coords, self.ctof) def rotate(self, rot, coords): """Apply rotation to the coordinates. Rotation can be a 3x3 matrix or 3 Euler angles""" if isinstance(rot[0], types.FloatType): rot = EulerAnglesToMat(rot) return Numeric.dot(coords, Numeric.transpose(rot)) def translate(self, trans, coords): """Apply a translation to the coordinates""" return coords + trans if __name__ == '__main__': cryst = Crystal( (120.3, 120.3, 78.4), (90., 90., 120.) ) from MolKit import Read mol = Read('./1ctt_CA.pdb')[0] c = Numeric.array(mol.chains.residues.atoms.coords) fc = cryst.toFractional( c ) fc1 = cryst.rotate( ((0., 1., 0.), (1., 0., 0.), (0., 0., -1.)), fc ) fc2 = cryst.toCartesian( fc1 ) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/usr.py0000644000175000017500000001574210651433500022505 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by #!/usr/bin/env python # # Last modified on Wed Mar 21 13:32:05 PDT 2007 by lindy # # $Id: usr.py,v 1.3 2007/07/24 17:30:40 vareille Exp $ # """usr.py - ultrafast shape recognition Implements method described in: Ballester, PJ & Richards, WG (2007) Proc.R.Soc.A doi:10.1098/rspa.2007.1823 """ import numpy.oldnumeric as N import math def centroid(points): """reuturn the centroid of points """ points = N.array(points) num, dim = points.shape return N.add.reduce(points)/float(num) def dist_array(point, points): """return array of distances from point to each of points """ point = N.array(point) points = N.array(points) return N.sqrt(N.add.reduce((points - point)**2, axis=1)) def mean_var_skew(data): """return the mean, variance, and skewness of data """ data = N.array(data) num = data.shape[0] mean = N.add.reduce(data)/float(num) var = N.add.reduce((data - mean)**2)/float(num-1) # std = math.sqrt(var) skew = N.add.reduce( (data - mean)**3)/(float(num-1)* std**3) return mean, var, skew def usr_descriptors(points): """return 12-tuple of geoemtric descriptors for points Reference for method: Ballester, PJ & Richards, WG (2007) Proc.R.Soc.A doi:10.1098/rspa.2007.1823 """ # centroid ctr = centroid(points) ctr_da = dist_array(ctr, points) ctr_m, ctr_v, ctr_s = mean_var_skew(ctr_da) # closest to centroid cst = points[ N.argmin(ctr_da) ] cst_da = dist_array(cst, points) cst_m, cst_v, cst_s = mean_var_skew(cst_da) # farthest from centroid fct = points [ N.argmax(ctr_da) ] fct_da = dist_array(fct, points) fct_m, fct_v, fct_s = mean_var_skew(fct_da) # farthest from fct ftf = points [ N.argmax(fct_da) ] ftf_da = dist_array(ftf, points) ftf_m, ftf_v, ftf_s = mean_var_skew(ftf_da) return (ctr_m, ctr_v, ctr_s, cst_m, cst_v, cst_s, fct_m, fct_v, fct_s, ftf_m, ftf_v, ftf_s) def usr_similarity(x, y): """return similarity of two usr_descriptor vectors, x and y """ x = N.array(x) num = float(x.shape[0]) y = N.array(y) # normalized and montonically inverted Manhattan distance return num/(num + N.add.reduce(N.absolute(x-y))) def print_usr_desc(val): print "%0.3f, %0.3f, %0.3f, %0.3f, %0.3f, %0.3f, %0.3f, %0.3f, %0.3f, %0.3f, %0.3f, %0.3f" %val # # everything down here is just scaffold and # technically not needed for the USR code above. # import unittest def distance_matrix(points): """return NxN point to point distance matrix this works but is not needed for USR """ points = N.array(points) num, dim = points.shape delta = N.zeros((num,num), 'd') for d in xrange(dim): data = points[:,d] delta += (data - data[:,N.NewAxis])**2 return N.sqrt(delta) def closest( point, points): """works, but @@DEPRECATED!! return index into points of closest-to-point """ da = dist_array(point, points) return N.argmin(da) def farthest( point, points): """works, but @@DEPRECATED!! return index into points of farthest-from-point """ da = dist_array(point, points) return N.argmax(da) class USRTest(unittest.TestCase): def setUp(self): self.points_2D = [[0, 0], [1, 1], [4, 5]] self.points_3D = [[0, 0, 0], [1.0, 1, 1], [4, 5, 6], [10,10,10]] # from Ballester & Richards, Figure 2. self.mq = (4.44, 2.98, 1.04, 4.55, 4.70, 0.23, 8.30, 16.69, -22.97, 7.37, 15.64, 0.51) self.mi = (4.39, 3.11, 1.36, 4.50, 4.44, 0.09, 8.34, 16.78, -23.20, 7.15, 16.52, 0.13) self.sqi = 0.811359026369 # but in Figure 2, Sqi = 0.812 !! class DistanceMatrixTest(USRTest): def test_2D(self): dm = distance_matrix(self.points_2D) self.assertAlmostEqual(1.414213562373095049, dm[0][1]) self.assertAlmostEqual(6.403124237432848686, dm[0][2]) self.assertAlmostEqual(5, dm[1][2]) self._testSymmetry(dm) def test_3D(self): dm = distance_matrix(self.points_3D) self.assertAlmostEqual(1.732050807568877294, dm[0][1]) self.assertAlmostEqual(8.77496438739212206, dm[0][2]) self.assertAlmostEqual(17.32050807568877294, dm[0][3]) self.assertAlmostEqual(7.071067811865475244, dm[1][2]) self.assertAlmostEqual(15.58845726811989564, dm[1][3]) self.assertAlmostEqual(8.77496438739212206, dm[2][3]) self._testSymmetry(dm) def _testSymmetry(self, dm): for i in range(len(dm)): for j in range(len(dm)): self.assertEqual(dm[i][j], dm[j][i]) class CentroidTest(USRTest): def test_2D(self): ctr = centroid(self.points_2D) self.assertAlmostEqual((5./3.), ctr[0]) self.assertAlmostEqual((6./3.), ctr[1]) def test_3D(self): ctr = centroid(self.points_3D) self.assertAlmostEqual((15./4.), ctr[0]) self.assertAlmostEqual((16./4.), ctr[1]) self.assertAlmostEqual((17./4.), ctr[2]) class ClosestTest(USRTest): def test_2D(self): point = [0.5, 0.] ix = closest(point, self.points_2D) self.assertEqual( 0, ix) point = [1.5, 1.] ix = closest(point, self.points_2D) self.assertEqual( 1, ix) point = [10., 10.] ix = closest(point, self.points_2D) self.assertEqual( 2, ix) def test_3D(self): point = [0.5, 0., 0.] ix = closest(point, self.points_3D) self.assertEqual( 0, ix) point = [1.5, 1., 1.] ix = closest(point, self.points_3D) self.assertEqual( 1, ix) point = [4.5, 5., 6.8] ix = closest(point, self.points_3D) self.assertEqual( 2, ix) point = [10., 10., 11.] ix = closest(point, self.points_3D) self.assertEqual( 3, ix) class FarthestTest(USRTest): def test_2D(self): point = [0.5, 0.] ix = farthest(point, self.points_2D) self.assertEqual( 2, ix) point = [1.5, 1.] ix = farthest(point, self.points_2D) self.assertEqual( 2, ix) point = [10., 10.] ix = farthest(point, self.points_2D) self.assertEqual( 0, ix) def test_3D(self): point = [0.5, 0., 0.] ix = farthest(point, self.points_3D) self.assertEqual( 3, ix) point = [1.5, 1., 1.] ix = farthest(point, self.points_3D) self.assertEqual( 3, ix) point = [4.5, 5., 6.8] ix = farthest(point, self.points_3D) self.assertEqual( 0, ix) point = [10., 10., 11.] ix = farthest(point, self.points_3D) self.assertEqual( 0, ix) class SimilarityTest(USRTest): def test_fig2(self): s = usr_similarity(self.mq, self.mi) self.assertAlmostEqual( self.sqi, s) if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/rmsdtest.py0000644000175000017500000000637610651433500023544 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # Last modified on Thu Jan 31 10:27:11 PST 2002 by lindy # # $Header: /opt/cvs/python/packages/share1.5/mglutil/math/rmsdtest.py,v 1.4 2007/07/24 17:30:40 vareille Exp $ # """Unit test for rmsd.py Requirements for rmsd: A. RMSDCalculator.__init__ 0. should .. B. RMSDCalculator.setRefCoords 0. should .. C. RMSDCalculator.computeRMSD 1. should return known result with known input 2. raise ValueError for input of unlike dimensions 3. for two random sets of points, rmsd(x,y) == rmsd(y,x) 4. raise ValueError if the reference coords have not been set D. """ from mglutil.math import rmsd import unittest, math import numpy.oldnumeric as Numeric, numpy.oldnumeric.random_array as RandomArray class ComputedValues(unittest.TestCase): decimals = 4 # decimal places to round to for float comparison point_list_0 = Numeric.zeros((5,3)) point_list_1 = Numeric.ones( (5,3)) knowValues = ( (point_list_0, point_list_0, 0.0), (point_list_1, point_list_1, 0.0), (point_list_0, point_list_1, math.sqrt(3.0)), (point_list_1, point_list_0, math.sqrt(3.0))) def test_computeRMSD_KnowValues(self): """1. should return known result with known input""" for ref, input, known in self.knowValues: self.assertEqual(known, rmsd.RMSDCalculator(ref).computeRMSD(input)) def test_computeRMSD_RandomOffset(self): """5. offset point by random value returns offset*sqrt(3)""" min = -10000. max = 10000. num_points = 20 dimension = 3 point_list_1 = RandomArray.uniform(min, max, (num_points, dimension)) delta = point_list_1[0][0] point_list_2 = point_list_1 + delta answer = rmsd.RMSDCalculator(point_list_1).computeRMSD(point_list_2) self.assertEqual( round(answer, self.decimals), round(abs(delta)*math.sqrt(3.0), self.decimals)) def test_computeRMSD_Random(self): """3. for two random sets of points, rmsd(x,y) == rmsd(y,x)""" min = -10000. max = 10000. num_points = 20 dimension = 3 point_list_1 = RandomArray.uniform(min, max, (num_points, dimension)) point_list_2 = RandomArray.uniform(min, max, (num_points, dimension)) self.assertEqual( rmsd.RMSDCalculator(point_list_1).computeRMSD(point_list_2), rmsd.RMSDCalculator(point_list_2).computeRMSD(point_list_1)) class InputValues(unittest.TestCase): point_list_0 = Numeric.zeros((3,3)) point_list_1 = Numeric.ones( (4,3)) # different lengths def test_computeRMSD_dimensions(self): """2. raise ValueError for input of unlike dimensions""" ruler = rmsd.RMSDCalculator(self.point_list_0) self.assertRaises(ValueError, ruler.computeRMSD, self.point_list_1) def test_computeRMSD_noRefCoords(self): """4. raise ValueError if the reference coords have not been set""" ruler = rmsd.RMSDCalculator() self.assertRaises(ValueError, ruler.computeRMSD, self.point_list_1) if __name__ == "__main__": unittest.main() # for example: py mglutil/math/rmsdtest.py -v mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/kinematicstest.py0000644000175000017500000002127510651433500024721 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # Last modified on Thu Jan 24 16:14:31 PST 2002 by lindy # # $Header: /opt/cvs/python/packages/share1.5/mglutil/math/kinematicstest.py,v 1.8 2007/07/24 17:30:40 vareille Exp $ # """Unit test for kinematics.py Requirements for kinematics.py: A. Kinematics.__init__: 1. make Numeric, homogenious coordinates out of refCoords 2. raise ValueError if refCoords is bad B. Kinematics.reset(): 3. nx3 slice of resultCoords must be equal to refCoords C. Kinematic.getResultCoords: 4. return nx3 (not nx4) coordinates 5. return as Numeric.array or ListType accorinding to self.tolist D. Kinematics.setTorTree: 0. should ... E. Kinematics.applyState: 0. return the coordinates correctly 0. raise ValueError for bad State parameters F. Kinematics.applyAngList: 0. return coorectly transformed coordinates 0. rasie ValueError if len(angList) != len(self.torsions) G. Kinematis.applyTorsion: 0. return the coordinates correctly H. Kinematics.applyOrientation 0. return the coordinates correctly I. Kinematics.applyQuaternion 0. return the coordinates correctly J. Kinematics.applyTranslation 0. return the coordinates correctly """ from mglutil.math.kinematics import Kinematics from mglutil.math.transformation import Transformation import unittest, math import numpy.oldnumeric as Numeric, numpy.oldnumeric.random_array as RandomArray from UserList import UserList class TestTorTree(UserList): def __init__(self, data=None): UserList.__init__(self, data) self.tList = self.data def setTorsionAngles(self, angList): pass class TestTorsion: def __init__(self, pivot1, pivot2, points): self.atm1_ix = pivot1 self.atm2_ix = pivot2 self.atms_to_move = points class KinematicsTest(unittest.TestCase): def setUp(self): """Called for every test.""" self.decimals = 4 # for Numeric.around; 7 is SciPy default. self.idmtx = Transformation().getMatrix(transpose=1) self.known_points = [ [1., 0., 2.], [1., 0., 1.], [1., 1., 1.], [0., 0., 1.], [0., 0., 0.], [0., 1., 0.], [0., 1., -1.], [1., 1., -1.], [1., 2., -1.], [1., 1., -2.]] npts = len(self.known_points) dim = 3 self.max = 9999999. self.min = -self.max self.random_points = RandomArray.uniform(self.min, self.max, (npts,dim)).tolist() # create a simple torsion system for both point lists torTree = TestTorTree() torTree.append(TestTorsion(4, 3, [0,1,2])) torTree.append(TestTorsion(3, 1, [0,2])) torTree.append(TestTorsion(6, 7, [8,9])) self.torTree = torTree def assertArrayEqual(self, a1, a2, decimals=None): """Round the arrays according to decimals and compare Use self.decimals if decimals is not supplied""" if decimals: d = decimals else: d = self.decimals for point in xrange(len(a1)): for axis in [0, 1, 2]: self.assertEqual(round(a1[point][axis],d), round(a2[point][axis],d)) def tearDown(self): pass class InputOutputValues(KinematicsTest): def test_setTorTree(self): """setTorTree -- I/O validity untested""" self.assertEqual(0, 1) class ComputedValues(KinematicsTest): def test_applyAngList00(self): """applyAngList -- return correct coords (0., 0., 0.)""" ko = Kinematics(self.known_points, self.torTree, tolist=1) self.assertEqual(self.known_points, ko.applyAngList([0,0,0], self.idmtx)) def test_applyAngList01(self): """applyAngList -- return correct coords (360., 360., 360.)""" ko = Kinematics(self.known_points, self.torTree, tolist=0) result = ko.applyAngList([360.,360.,360.], self.idmtx)[:,:3] self.assertArrayEqual(self.known_points, result) def test_applyAngList020(self): """applyAngList -- return correct coords (-90, 0, 0)""" ko = Kinematics(self.known_points, self.torTree, tolist=0) result = ko.applyAngList([-90.,0.,0.], self.idmtx)[:,:3] self.known_points[0] = [0., -1., 2.] self.known_points[1] = [0., -1., 1.] self.known_points[2] = [1., -1., 1.] self.assertArrayEqual(self.known_points, result) def test_applyAngList021(self): """applyAngList -- return correct coords (90, 0, 0)""" ko = Kinematics(self.known_points, self.torTree, tolist=0) result = ko.applyAngList([90.,0.,0.], self.idmtx)[:,:3] self.known_points[0] = [0., 1., 2.] self.known_points[1] = [0., 1., 1.] self.known_points[2] = [-1., 1., 1.] self.assertArrayEqual(self.known_points, result) def test_applyAngList022(self): """applyAngList -- return correct coords ( 0,-90, 0)""" ko = Kinematics(self.known_points, self.torTree, tolist=0) result = ko.applyAngList([0.,-90.,0.], self.idmtx)[:,:3] self.known_points[0] = [1., 1., 1.] self.known_points[2] = [1., 0., 0.] self.assertArrayEqual(self.known_points, result) def test_applyAngList03(self): """applyAngList -- return correct coords (90, -90, 0)""" ko = Kinematics(self.known_points, self.torTree, tolist=0) result = ko.applyAngList([90.,-90.,0.], self.idmtx)[:,:3] self.known_points[0] = [-1., 1., 1.] self.known_points[1] = [ 0., 1., 1.] self.known_points[2] = [ 0., 1., 0.] self.assertArrayEqual(self.known_points, result) def test_applyAngList04(self): """applyAngList -- one-at-time equals all-at-once""" ko1 = Kinematics(self.known_points, self.torTree, tolist=0) ko2 = Kinematics(self.known_points, self.torTree, tolist=0) result1 = ko1.applyAngList([90.,-90.,0.], self.idmtx)[:,:3] # do the rotations separately ko2.applyAngList([90.,0.,0.]) result2 = ko2.applyAngList([0.,-90.,0.], self.idmtx)[:,:3] self.assertArrayEqual(result1, result2) def test_applyAngList05(self): """applyAngList -- ValueError if len(angList) != len(torsions)""" ko = Kinematics(self.known_points, self.torTree, tolist=1) self.assertRaises(ValueError, ko.applyAngList, ([0,0], self.idmtx)) ## def test_applyTorsion00(self): ## """applyAngList, applyTorsion give same results""" ## ko = Kinematics(self.known_points, self.torTree, tolist=0) ## result = Numeric.around(ko.applyAngList([90.,-90.,0.])[:,:3], ## self.decimals).tolist() ## jo = Kinematics(self.known_points, self.torTree, tolist=0) ## jo.applyTorsion(jo.torsions[0], 90.) ## jo.applyTorsion(jo.torsions[1], -90.) ## # ## self.known_points[0] = [-1., 1., 1.] ## self.known_points[1] = [ 0., 1., 1.] ## self.known_points[2] = [ 0., 1., 0.] ## self.assertEqual( self.known_points, result) def test_applyTorsion01(self): """applyTorsion -- return correct coords torsion=0, angle=0.""" ko = Kinematics(self.known_points, self.torTree, tolist=1) self.assertEqual(self.known_points, ko.applyTorsion( ko.torsions[0], 0.) ) def test_applyTorsion02(self): """applyTorsion -- return correct coords torsion=1, angle=90.""" ko = Kinematics(self.known_points, self.torTree, tolist=0) result = ko.applyTorsion(ko.torsions[1], 90.)[:,:3] self.known_points[0] = [1., -1., 1.] self.known_points[2] = [1., 0., 2.] self.assertArrayEqual(self.known_points, result) def test_applyTorsion02(self): """applyTorsion -- apply torsions in any order""" ko1 = Kinematics(self.known_points, self.torTree, tolist=0) ko1.applyTorsion(ko1.torsions[0], 90.) result1 = ko1.applyTorsion(ko1.torsions[1], -90.) ko2 = Kinematics(self.known_points, self.torTree, tolist=0) ko2.applyTorsion(ko2.torsions[1], -90.) result2 = ko2.applyTorsion(ko2.torsions[0], 90.) self.assertArrayEqual(result1, result2) if __name__ == '__main__': unittest.main() # for example: # py mglutil/math/kinematicstest.py -v # or, to redirect output to a file: # py kinematicstest.py -v > & ! /tmp/kt.out mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/rmsd.py0000644000175000017500000000314410651433500022632 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ############################################################################# # # Author: Sophie I. COON, William LINDSTROM, Michel F. SANNER # # Copyright: M. Sanner TSRI 2000 # ############################################################################# # # Last modified on Thu Aug 9 20:00:31 PDT 2001 by lindy # # $Header: /opt/cvs/python/packages/share1.5/mglutil/math/rmsd.py,v 1.6 2007/07/24 17:30:40 vareille Exp $ # import numpy.oldnumeric as Numeric import math class RMSDCalculator: """ This class implements method to compute RMSD and distance vector between two given lists of coordinates. """ def __init__(self, refCoords = None): self.refCoords = refCoords def setRefCoords(self, refCoords): self.refCoords = refCoords def computeRMSD(self, listCoords): """rmsd <- computRMSD(listCoords) rmsd returns the overall root mean square distance (rmsd) and also sets self.distVect as the vector of distances between each pair of points. """ if self.refCoords is None: raise ValueError("no reference coordinates set") if len(self.refCoords) != len(listCoords): raise ValueError("input vector length mismatch") deltaVect = Numeric.array(self.refCoords) - Numeric.array(listCoords) distSquaredVect = Numeric.sum(Numeric.transpose(deltaVect*deltaVect)) self.distVect = Numeric.sqrt(distSquaredVect) self.rmsd = math.sqrt(Numeric.sum(distSquaredVect)/len(self.refCoords)) return self.rmsd mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/TensorModule.py0000644000175000017500000001513310651433500024306 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ## Copyright 1997-1999 by Konrad Hinsen, except as noted below. ## Permission to use, copy, modify, and distribute this software and its ## documentation for any purpose and without fee is hereby granted, ## provided that the above copyright notice appear in all copies and that ## both that copyright notice and this permission notice appear in ## supporting documentation. ## THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, ## INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO ## EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR ## CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF ## USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR ## OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ## PERFORMANCE OF THIS SOFTWARE. # This module defines 3d geometrical tensors with the standard # operations on them. The elements are stored in an array. # # Written by: Konrad Hinsen # Last revision: 1999-7-23 # _undocumented = 1 import numpy.oldnumeric as Numeric, types import VectorModule class Tensor: """Tensor in 3D space Constructor: Tensor([[xx, xy, xz], [yx, yy, yz], [zx, zy, zz]]) Tensors support the usual arithmetic operations ('t1', 't2': tensors, 'v': vector, 's': scalar): - 't1+t2' (addition) - 't1-t2' (subtraction) - 't1*t2' (tensorial (outer) product) - 't1*v' (contraction with a vector, same as t1.dot(v.asTensor())) - 's*t1', 't1*s' (multiplication with a scalar) - 't1/s' (division by a scalar) The coordinates can be extracted by indexing; a tensor of rank N can be indexed like an array of dimension N. Tensors are *immutable*, i.e. their elements cannot be changed. Tensor elements can be any objects on which the standard arithmetic operations are defined. However, eigenvalue calculation is supported only for float elements. """ is_tensor = 1 def __init__(self, elements, nocheck = None): self.array = Numeric.array(elements) if nocheck is None: if not Numeric.logical_and.reduce( Numeric.equal(Numeric.array(self.array.shape), 3)): raise ValueError, 'Tensor must have length 3 along any axis' self.rank = len(self.array.shape) def __repr__(self): return 'Tensor(' + str(self) + ')' def __str__(self): return str(self.array) def __add__(self, other): return Tensor(self.array+other.array, 1) __radd__ = __add__ def __neg__(self): return Tensor(-self.array, 1) def __sub__(self, other): return Tensor(self.array-other.array, 1) def __rsub__(self, other): return Tensor(other.array-self.array, 1) def __mul__(self, other): if isTensor(other): a = self.array[self.rank*(slice(None),)+(Numeric.NewAxis,)] b = other.array[other.rank*(slice(None),)+(Numeric.NewAxis,)] return Tensor(Numeric.innerproduct(a, b), 1) elif VectorModule.isVector(other): return other.__rmul__(self) else: return Tensor(self.array*other, 1) def __rmul__(self, other): return Tensor(self.array*other, 1) def __div__(self, other): if isTensor(other): raise TypeError, "Can't divide by a tensor" else: return Tensor(self.array/(1.*other), 1) def __rdiv__(self, other): raise TypeError, "Can't divide by a tensor" def __cmp__(self, other): if self.rank != other.rank: return 1 else: return not Numeric.logical_and.reduce( Numeric.equal(self.array, other.array).ravel()) def __len__(self): return 3 def __getitem__(self, index): elements = self.array[index] if type(elements) == type(self.array): return Tensor(elements) else: return elements def asVector(self): "Returns an equivalent vector object (only for rank 1)." if self.rank == 1: return VectorModule.Vector(self.array) else: raise ValueError, 'rank > 1' def dot(self, other): "Returns the contraction with |other|." if isTensor(other): a = self.array b = Numeric.transpose(other.array, range(1, other.rank)+[0]) return Tensor(Numeric.innerproduct(a, b), 1) else: return Tensor(self.array*other, 1) def diagonal(self, axis1=0, axis2=1): if self.rank == 2: return Tensor([self.array[0,0], self.array[1,1], self.array[2,2]]) else: if axis2 < axis1: axis1, axis2 = axis2, axis1 raise ValueError, 'Not yet implemented' def trace(self, axis1=0, axis2=1): "Returns the trace of a rank-2 tensor." if self.rank == 2: return self.array[0,0]+self.array[1,1]+self.array[2,2] else: raise ValueError, 'Not yet implemented' def transpose(self): "Returns the transposed (index reversed) tensor." return Tensor(Numeric.transpose(self.array)) def symmetricalPart(self): "Returns the symmetrical part of a rank-2 tensor." if self.rank == 2: return Tensor(0.5*(self.array + \ Numeric.transpose(self.array, Numeric.array([1,0]))), 1) else: raise ValueError, 'Not yet implemented' def asymmetricalPart(self): "Returns the asymmetrical part of a rank-2 tensor." if self.rank == 2: return Tensor(0.5*(self.array - \ Numeric.transpose(self.array, Numeric.array([1,0]))), 1) else: raise ValueError, 'Not yet implemented' def eigenvalues(self): "Returns the eigenvalues of a rank-2 tensor in an array." if self.rank == 2: from numpy.oldnumeric.linear_algebra import eigenvalues return eigenvalues(self.array) else: raise ValueError, 'Undefined operation' def diagonalization(self): """Returns the eigenvalues of a rank-2 tensor and a tensor representing the rotation matrix to the diagonalized form.""" if self.rank == 2: from numpy.oldnumeric.linear_algebra import eigenvectors ev, vectors = eigenvectors(self.array) return ev, Tensor(vectors) else: raise ValueError, 'Undefined operation' def inverse(self): "Returns the inverse of a rank-2 tensor." if self.rank == 2: from numpy.oldnumeric.linear_algebra import inverse return Tensor(inverse(self.array)) else: raise ValueError, 'Undefined operation' # Type check def isTensor(x): "Return 1 if |x| is a tensor." return hasattr(x,'is_tensor') # Some useful constant tensors delta = Tensor([[1,0,0], [0,1,0], [0,0,1]]) _epsilon = Numeric.zeros((3,3,3)) _epsilon[0,1,2] = 1 _epsilon[1,2,0] = 1 _epsilon[2,0,1] = 1 _epsilon[0,2,1] = -1 _epsilon[2,1,0] = -1 _epsilon[1,0,2] = -1 epsilon = Tensor(_epsilon) del _epsilon mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/kinematics.py0000644000175000017500000001444710651433500024024 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # Last modified on Mon Oct 15 15:33:49 PDT 2001 by lindy # # $Header: /opt/cvs/python/packages/share1.5/mglutil/math/kinematics.py,v 1.16 2007/07/24 17:30:40 vareille Exp $ # """kinematics.py - kinematic manipulation of chains of points All transformations happen in the local coordinate space. The refCoords supplied to the constructor and returned by the object are local to the object. Clients should handle putting the points into world coordinates (using translation, orientation, and origin). """ #from mglutil.math.ncoords import Ncoords from mglutil.math.rotax import rotax import numpy.oldnumeric as Numeric, math class Kinematics: rads_per_degree = Numeric.pi/180. def __init__(self, allAtomsCoords, torTree, tolist=1): """refCoords is an nx3 list of n points resultCoords is set up and maintained as homogeneous coords """ self.allAtomsCoords = allAtomsCoords self.torTree = torTree def __applyTorsion(self, node, parent_mtx): """Transform the subtree rooted at node. The new torsion angle must be pre-set. Children of the node are transformed recursively. """ # get rotation matrix for node # my_mtx = self.rotax(node) mtx = rotax( Numeric.array(node.a.coords), Numeric.array(node.b.coords), node.angle * self.rads_per_degree, transpose=1) # node_mtx = Numeric.dot(parent_mtx, mtx) node_mtx = self.mult4_3Mat(parent_mtx, mtx) # set-up for the transformation mm11 = node_mtx[0][0]; mm12 = node_mtx[0][1]; mm13 = node_mtx[0][2] mm21 = node_mtx[1][0]; mm22 = node_mtx[1][1]; mm23 = node_mtx[1][2] mm31 = node_mtx[2][0]; mm32 = node_mtx[2][1]; mm33 = node_mtx[2][2] mm41 = node_mtx[3][0]; mm42 = node_mtx[3][1]; mm43 = node_mtx[3][2] atomSet = node.atomSet # transform the coordinates for the node for i in node.atomRange: x,y,z = node.coords[i][:3] # get origin-subtracted originals c = atomSet[i].coords c[0] = x*mm11 + y*mm21 + z*mm31 + mm41 c[1] = x*mm12 + y*mm22 + z*mm32 + mm42 c[2] = x*mm13 + y*mm23 + z*mm33 + mm43 # recurse through children for child in node.children: self.__applyTorsion(child, node_mtx) def applyAngList(self, angList, mtx): """ """ # pre-set the torsion angles self.torTree.setTorsionAngles(angList) # set-up for the transformation mm11 = mtx[0][0]; mm12 = mtx[0][1]; mm13 = mtx[0][2] mm21 = mtx[1][0]; mm22 = mtx[1][1]; mm23 = mtx[1][2] mm31 = mtx[2][0]; mm32 = mtx[2][1]; mm33 = mtx[2][2] mm41 = mtx[3][0]; mm42 = mtx[3][1]; mm43 = mtx[3][2] root = self.torTree.rootNode atomSet = root.atomSet # transform the coordinates for the node for i in root.atomRange: x,y,z = root.coords[i][:3] c = atomSet[i].coords c[0] = x*mm11 + y*mm21 + z*mm31 + mm41 c[1] = x*mm12 + y*mm22 + z*mm32 + mm42 c[2] = x*mm13 + y*mm23 + z*mm33 + mm43 # traverse children of rootNode for child in root.children: self.__applyTorsion(child, mtx) def mult4_3Mat(self, m1, m2): ma11 = m1[0][0] ma12 = m1[0][1] ma13 = m1[0][2] ma21 = m1[1][0] ma22 = m1[1][1] ma23 = m1[1][2] ma31 = m1[2][0] ma32 = m1[2][1] ma33 = m1[2][2] ma41 = m1[3][0] ma42 = m1[3][1] ma43 = m1[3][2] mb11 = m2[0][0] mb12 = m2[0][1] mb13 = m2[0][2] mb21 = m2[1][0] mb22 = m2[1][1] mb23 = m2[1][2] mb31 = m2[2][0] mb32 = m2[2][1] mb33 = m2[2][2] mb41 = m2[3][0] mb42 = m2[3][1] mb43 = m2[3][2] # first line of resulting matrix val1 = ma11*mb11 + ma12*mb21 + ma13*mb31 val2 = ma11*mb12 + ma12*mb22 + ma13*mb32 val3 = ma11*mb13 + ma12*mb23 + ma13*mb33 result = [[val1, val2, val3, 0.0]] # second line of resulting matrix val1 = ma21*mb11 + ma22*mb21 + ma23*mb31 val2 = ma21*mb12 + ma22*mb22 + ma23*mb32 val3 = ma21*mb13 + ma22*mb23 + ma23*mb33 result.append([val1, val2, val3, 0.0]) # third line of resulting matrix val1 = ma31*mb11 + ma32*mb21 + ma33*mb31 val2 = ma31*mb12 + ma32*mb22 + ma33*mb32 val3 = ma31*mb13 + ma32*mb23 + ma33*mb33 result.append([val1, val2, val3, 0.0]) # fourth line of resulting matrix val1 = ma41*mb11 + ma42*mb21 + ma43*mb31 + mb41 val2 = ma41*mb12 + ma42*mb22 + ma43*mb32 + mb42 val3 = ma41*mb13 + ma42*mb23 + ma43*mb33 + mb43 result.append([val1, val2, val3, 1.0]) return result def rotax(self, node): """ Build 4x4 matrix of clockwise rotation about axis a-->b by angle tau (radians). a and b are numeric arrys of floats of shape (3,) Result is a homogenous 4x4 transformation matrix. NOTE: This has been changed by Brian, 8/30/01: rotax now returns the rotation matrix, _not_ the transpose. This is to get consistency across rotax, mat_to_quat and the classes in transformation.py """ tau = node.angle * self.rads_per_degree ct = math.cos(tau) ct1 = 1.0 - ct st = math.sin(tau) v = node.torUnitVector rot = Numeric.zeros( (4,4), 'f' ) # Compute 3x3 rotation matrix v2 = v*v v3 = (1.0-v2)*ct rot[0][0]=v2[0]+v3[0] rot[1][1]=v2[1]+v3[1] rot[2][2]=v2[2]+v3[2] rot[3][3] = 1.0; v2 = v*st rot[1][0]=v[0]*v[1] * ct1-v2[2] rot[2][1]=v[1]*v[2] * ct1-v2[0] rot[0][2]=v[2]*v[0] * ct1-v2[1] rot[0][1]=v[0]*v[1] * ct1+v2[2] rot[1][2]=v[1]*v[2] * ct1+v2[0] rot[2][0]=v[2]*v[0] * ct1+v2[1] # add translation a = node.torBase.coords print " torBase (%2d) %4f, %4f, %4f:" % (node.bond[0], a[0], a[1], a[2]) for i in (0,1,2): rot[3][i] = a[i] for j in (0,1,2): rot[3][i] = rot[3][i]-rot[j][i]*a[j] rot[i][3]=0.0 return rot mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/ncoords.py0000644000175000017500000000262410651433500023336 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # Last modified on Tue Sep 4 16:32:29 PDT 2001 by lindy # # $Header: /opt/cvs/python/packages/share1.5/mglutil/math/ncoords.py,v 1.2 2007/07/24 17:30:40 vareille Exp $ # """ncoords.py - Numeric coordinates This class is intented to be the base class of a number of classes which transform and generally operate on lists of homogeneous coordinates. """ import numpy.oldnumeric as Numeric class Ncoords: def __init__(self, refCoords, tolist=1): """refCoords is an nx3 list of n points resultCoords is set up and maintained as homogeneous coords if tolist then return the result coords as a python list """ try: self.refCoords = Numeric.array(Numeric.concatenate( (refCoords, Numeric.ones( (len(refCoords), 1), 'f')), 1)) except TypeError: raise ValueError, "invalid input array" self.resultCoords = self.refCoords self.tolist = tolist def reset(self): self.resultCoords = self.refCoords def getResultCoords(self): """Return the list of result coordinates if tolist is set, return an nx3 Python ListType. if tolist is not set, return an nx4 Numeric array. """ if self.tolist: return self.resultCoords[:,:3].tolist() else: return self.resultCoords mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/statetocoordstest.py0000644000175000017500000002176310651433500025471 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # Last modified on Thu Sep 6 12:14:22 PDT 2001 by lindy # # $Header: /opt/cvs/python/packages/share1.5/mglutil/math/statetocoordstest.py,v 1.3 2007/07/24 17:30:40 vareille Exp $ # """Unit test for state.py """ from mglutil.math.statetocoords import StateToCoords import unittest, math import numpy.oldnumeric as Numeric, numpy.oldnumeric.random_array as RandomArray from UserList import UserList class TestState: def __init__(self, q, t, o, tList): self.quaternion = q self.translation = t self.origin = o self.torsions = tList class TestTorTree(UserList): def __init__(self, data=None): UserList.__init__(self, data) self.tList = self.data class TestTorsion: def __init__(self, pivot1, pivot2, points): self.atm1_ix = pivot1 self.atm2_ix = pivot2 self.atms_to_move = points class StateToCoordsTest(unittest.TestCase): def setUp(self): """Called for every test.""" self.decimals = 2 # for rounding; 7 is SciPy default. self.known_points = [ [1., 0., 2.], [1., 0., 1.], [1., 1., 1.], [0., 0., 1.], [0., 0., 0.], [0., 1., 0.], [0., 1., -1.], [1., 1., -1.], [1., 2., -1.], [1., 1., -2.]] # create a simple torsion system for known_points torTree = TestTorTree() torTree.append(TestTorsion(4, 3, [0,1,2])) torTree.append(TestTorsion(3, 1, [0,2])) torTree.append(TestTorsion(6, 7, [8,9])) self.torTree = torTree npts = 5 dim = 3 self.max = 9999. self.min = -self.max self.random_points = RandomArray.uniform(self.min, self.max, (npts,dim)).tolist() def assertArrayEqual(self, a1, a2, decimals=None): """Round the arrays according to decimals and compare Use self.decimals if decimals is not supplied""" if decimals: d = decimals else: d = self.decimals for point in xrange(len(a1)): for axis in [0, 1, 2]: self.assertEqual(round(a1[point][axis],d), round(a2[point][axis],d)) def tearDown(self): pass class ComputedValues(StateToCoordsTest): def test_applyState(self): """applyState -- computed values untested""" value = TestState(q=(1.0, 0.0, 0.0, 90.0), t=(10., 10., 10.), o=(1., 0., 1.), tList=[0., 0., 270.]) state = StateToCoords(self.known_points, self.torTree, tolist=1) result = state.applyState(value) expected = [[11., 9., 11.], [11., 10., 11.], [11., 10., 12.], [10., 10., 11.], [10., 11., 11.], [10., 11., 12.], [10., 12., 12.], [11., 12., 12.], [11., 13., 12.], [11., 12., 11.]] self.assertArrayEqual(expected, result) def test_applyOrientation00(self): """applyOrientation00 -- random pts with defaults""" state = StateToCoords(self.random_points, tolist=1) self.assertEqual(self.random_points, state.applyOrientation()) def test_applyOrientation01(self): """applyOrientation01 -- Q, T, O combined""" state = StateToCoords(self.known_points, tolist=1) result = state.applyOrientation( quat=(1.0, 0.0, 0.0, 90.0), trans= (10., 10., 10.), origin=(1., 0., 1.)) expected = [[11., 9., 11.], [11., 10., 11.], [11., 10., 12.], [10., 10., 11.], [10., 11., 11.], [10., 11., 12.], [10., 12., 12.], [11., 12., 12.], [11., 12., 13.], [11., 13., 12.]] self.assertArrayEqual(expected, result) def test_applyQuaternion01(self): """applyQuaternion01 -- known pts 360 about x-axis""" state = StateToCoords(self.known_points, tolist=1) result = state.applyQuaternion((1.0, 0.0, 0.0, 360.0)) self.assertArrayEqual(self.known_points, result) def test_applyQuaternion02(self): """applyQuaternion02 -- known pts 90 about x-axis""" state = StateToCoords(self.known_points, tolist=1) result = state.applyQuaternion((1.0, 0.0, 0.0, 90.0)) expected = [[1., -2., 0.], [1., -1., 0.], [1., -1., 1.], [0., -1., 0.], [0., 0., 0.], [0., 0., 1.], [0., 1., 1.], [1., 1., 1.], [1., 1., 2.], [1., 2., 1.]] self.assertArrayEqual(expected, result) def test_applyQuaternion021(self): """applyQuaternion021 -- known pts 90 about x-axis; origin(1., 0., 1.)""" state = StateToCoords(self.known_points, tolist=1) result = state.applyQuaternion((1.0, 0.0, 0.0, 90.0), (1., 0., 1.)) expected = [[1., -1., 1.], [1., 0., 1.], [1., 0., 2.], [0., 0., 1.], [0., 1., 1.], [0., 1., 2.], [0., 2., 2.], [1., 2., 2.], [1., 2., 3.], [1., 3., 2.]] self.assertArrayEqual(expected, result) def test_applyQuaternion03(self): """applyQuaternion02 -- known pts 90 about z-axis""" state = StateToCoords(self.known_points, tolist=1) result = state.applyQuaternion((0.0, 0.0, 1.0, 90.0)) expected = [[ 0., 1., 2.], [ 0., 1., 1.], [-1., 1., 1.], [ 0., 0., 1.], [ 0., 0., 0.], [-1., 0., 0.], [-1., 0., -1.], [-1., 1., -1.], [-2., 1., -1.], [-1., 1., -2.]] self.assertArrayEqual(expected, result) def test_applyQuaternion04(self): """applyQuaternion04 -- random pts 360 about random-axis""" state = StateToCoords(self.random_points, tolist=1) q = RandomArray.uniform(self.min, self.max, (4,)) q[3] = 360.0 result = state.applyQuaternion(q) self.assertArrayEqual(self.random_points, result) def test_applyQuaternion05(self): """applyQuaternion05 -- random pts 3*120 about x-axis""" state = StateToCoords(self.random_points, tolist=1) q = (0.0, 0.0, 1.0, 120.0) for n in xrange(3): result = state.applyQuaternion(q) self.assertArrayEqual(self.random_points, result,0) def test_applyQuaternion06(self): """applyQuaternion06 -- random pts 2*180 about random-axis""" state = StateToCoords(self.random_points, tolist=1) q = RandomArray.uniform(self.min, self.max, (4,)) q[3] = 180.0 for n in xrange(2): result = state.applyQuaternion(q) self.assertArrayEqual(self.random_points, result) def test_applyTranslation00(self): """applyTranslation00 -- random pts x (0., 0., 0.)""" state = StateToCoords(self.random_points, tolist=1) zzz = Numeric.zeros((3,), 'f') self.assertEqual(self.random_points, state.applyTranslation(zzz)) def test_applyTranslation01(self): """applyTranslation01 -- random pts x (random translation)""" state = StateToCoords(self.random_points, tolist=0) trn = RandomArray.uniform(self.min, self.max, (3,)) expected = (Numeric.array(self.random_points) + trn) self.assertArrayEqual(expected, state.applyTranslation(trn)) def test_applyTranslation02(self): """applyTranslation02 -- known pts x (1., 1., 1.)""" state = StateToCoords(self.known_points, tolist=1) ones = Numeric.ones((3,), 'f') expected = (Numeric.array(self.known_points) + ones).tolist() self.assertEqual(expected, state.applyTranslation(ones)) def test_applyTranslation03(self): """applyTranslation03 -- random pts x (random there and back)""" state = StateToCoords(self.random_points, tolist=1) trn = RandomArray.uniform(self.min, self.max, (3,)) state.applyTranslation(trn) trn = -1*trn self.assertArrayEqual(self.random_points, state.applyTranslation(trn)) if __name__ == '__main__': unittest.main() # for example: # py mglutil/math/statetest.py -v # or, to redirect output to a file: # py statetest.py -v > & ! /tmp/st.out mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/julie12019854k.rot0000644000175000017500002257600410026206141024173 0ustar debiandebian 1.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 -1.000000 0.000000 0.752355 0.544656 -0.370555 0.488654 -0.838659 -0.240556 -0.441790 -0.000090 -0.897119 0.691128 0.620509 -0.370555 0.573861 -0.782826 -0.240556 -0.439347 -0.046392 -0.897119 0.622977 0.688904 -0.370555 0.652027 -0.719022 -0.240556 -0.432157 -0.091751 -0.897119 0.547344 0.750402 -0.370555 0.723795 -0.646725 -0.240556 -0.420161 -0.136539 -0.897119 0.465682 0.803635 -0.370555 0.787590 -0.567305 -0.240556 -0.403537 -0.179823 -0.897119 0.379738 0.847637 -0.370555 0.842228 -0.482477 -0.240556 -0.382688 -0.220744 -0.897119 0.288809 0.882767 -0.370555 0.888157 -0.391549 -0.240556 -0.357445 -0.259636 -0.897119 0.194698 0.908175 -0.370555 0.924302 -0.296307 -0.240556 -0.328265 -0.295669 -0.897119 0.098442 0.923579 -0.370555 0.950267 -0.197802 -0.240556 -0.295469 -0.328445 -0.897119 0.002031 0.928808 -0.370555 0.965667 -0.098083 -0.240556 -0.259775 -0.357344 -0.897119 -0.095326 0.923906 -0.370555 0.970628 0.003666 -0.240556 -0.220892 -0.382602 -0.897119 -0.191633 0.908827 -0.370555 0.964899 0.105374 -0.240556 -0.179576 -0.403646 -0.897119 -0.284945 0.884022 -0.370555 0.948746 0.204974 -0.240556 -0.136703 -0.420108 -0.897119 -0.376028 0.849289 -0.370555 0.922038 0.303280 -0.240556 -0.091919 -0.432121 -0.897119 -0.462968 0.805201 -0.370555 0.885174 0.398246 -0.240556 -0.046124 -0.439375 -0.897119 -0.544196 0.752688 -0.370555 0.838958 0.488142 -0.240556 -0.000180 -0.441790 -0.897119 -0.620086 0.691507 -0.370555 0.783177 0.573382 -0.240556 0.046124 -0.439375 -0.897119 -0.689146 0.622709 -0.370555 0.718769 0.652307 -0.240556 0.091919 -0.432121 -0.897119 -0.750615 0.547052 -0.370555 0.646444 0.724047 -0.240556 0.136703 -0.420108 -0.897119 -0.803350 0.466173 -0.370555 0.567786 0.787243 -0.240556 0.179576 -0.403646 -0.897119 -0.847784 0.379409 -0.370555 0.482150 0.842416 -0.240556 0.220892 -0.382602 -0.897119 -0.882880 0.288465 -0.370555 0.391203 0.888309 -0.240556 0.259775 -0.357344 -0.897119 -0.908056 0.195253 -0.370555 0.296872 0.924121 -0.240556 0.295469 -0.328445 -0.897119 -0.923519 0.099006 -0.370555 0.198382 0.950146 -0.240556 0.328265 -0.295669 -0.897119 -0.928809 0.001670 -0.370555 0.097708 0.965705 -0.240556 0.357445 -0.259636 -0.897119 -0.923869 -0.095685 -0.370555 -0.004043 0.970627 -0.240556 0.382688 -0.220744 -0.897119 -0.908944 -0.191077 -0.370555 -0.104785 0.964963 -0.240556 0.403537 -0.179823 -0.897119 -0.883911 -0.285289 -0.370555 -0.205343 0.948666 -0.240556 0.420161 -0.136539 -0.897119 -0.849143 -0.376358 -0.370555 -0.303639 0.921920 -0.240556 0.432157 -0.091751 -0.897119 -0.805484 -0.462476 -0.370555 -0.397705 0.885417 -0.240556 0.439347 -0.046392 -0.897119 -0.752577 -0.544350 -0.370555 -0.488313 0.838858 -0.240556 0.441790 -0.000090 -0.897119 -0.691381 -0.620227 -0.370555 -0.573542 0.783060 -0.240556 0.439366 0.046213 -0.897119 -0.622569 -0.689273 -0.370555 -0.652453 0.718636 -0.240556 0.432103 0.092007 -0.897119 -0.547650 -0.750179 -0.370555 -0.723532 0.647020 -0.240556 0.420217 0.136368 -0.897119 -0.466009 -0.803445 -0.370555 -0.787359 0.567625 -0.240556 0.403610 0.179659 -0.897119 -0.379236 -0.847861 -0.370555 -0.842514 0.481978 -0.240556 0.382557 0.220970 -0.897119 -0.288285 -0.882939 -0.370555 -0.888389 0.391022 -0.240556 0.357291 0.259848 -0.897119 -0.195068 -0.908096 -0.370555 -0.924182 0.296684 -0.240556 0.328385 0.295536 -0.897119 -0.098818 -0.923539 -0.370555 -0.950186 0.198189 -0.240556 0.295602 0.328325 -0.897119 -0.001481 -0.928809 -0.370555 -0.965725 0.097511 -0.240556 0.259564 0.357498 -0.897119 0.094949 -0.923945 -0.370555 -0.970630 -0.003270 -0.240556 0.221048 0.382512 -0.897119 0.191263 -0.908905 -0.370555 -0.964941 -0.104981 -0.240556 0.179741 0.403573 -0.897119 0.285469 -0.883853 -0.370555 -0.948624 -0.205536 -0.240556 0.136454 0.420189 -0.897119 0.376531 -0.849066 -0.370555 -0.921858 -0.303827 -0.240556 0.091663 0.432176 -0.897119 0.462640 -0.805390 -0.370555 -0.885336 -0.397885 -0.240556 0.046303 0.439357 -0.897119 0.544503 -0.752466 -0.370555 -0.838759 -0.488484 -0.240556 0.000000 0.441790 -0.897119 0.620368 -0.691254 -0.370555 -0.782943 -0.573701 -0.240556 -0.046303 0.439357 -0.897119 0.688777 -0.623117 -0.370555 -0.719155 -0.651881 -0.240556 -0.091663 0.432176 -0.897119 0.750291 -0.547497 -0.370555 -0.646873 -0.723663 -0.240556 -0.136454 0.420189 -0.897119 0.803540 -0.465846 -0.370555 -0.567465 -0.787475 -0.240556 -0.179741 0.403573 -0.897119 0.847939 -0.379063 -0.370555 -0.481807 -0.842612 -0.240556 -0.221048 0.382512 -0.897119 0.882709 -0.288988 -0.370555 -0.391730 -0.888077 -0.240556 -0.259564 0.357498 -0.897119 0.908135 -0.194883 -0.370555 -0.296495 -0.924242 -0.240556 -0.295602 0.328325 -0.897119 0.923559 -0.098630 -0.370555 -0.197995 -0.950227 -0.240556 -0.328385 0.295536 -0.897119 0.928808 -0.002220 -0.370555 -0.098280 -0.965647 -0.240556 -0.357291 0.259848 -0.897119 0.923925 0.095138 -0.370555 0.003468 -0.970629 -0.240556 -0.382557 0.220970 -0.897119 0.908866 0.191448 -0.370555 0.105178 -0.964920 -0.240556 -0.403610 0.179659 -0.897119 0.883795 0.285649 -0.370555 0.205729 -0.948582 -0.240556 -0.420217 0.136368 -0.897119 0.849366 0.375855 -0.370555 0.303092 -0.922100 -0.240556 -0.432103 0.092007 -0.897119 0.805296 0.462804 -0.370555 0.398066 -0.885255 -0.240556 -0.439366 0.046213 -0.897119 0.250935 0.788816 0.561072 -0.322326 0.614630 -0.719956 -0.912764 -0.000186 0.408487 0.166879 0.810771 0.561072 -0.384968 0.577463 -0.719956 -0.907717 -0.095849 0.408487 0.081809 0.823714 0.561072 -0.442836 0.534378 -0.719956 -0.892863 -0.189564 0.408487 -0.004972 0.827752 0.561072 -0.496404 0.485023 -0.719956 -0.868078 -0.282098 0.408487 -0.091699 0.822672 0.561072 -0.544504 0.430325 -0.719956 -0.833731 -0.371525 0.408487 -0.176608 0.808708 0.561072 -0.586235 0.371473 -0.719956 -0.790657 -0.456070 0.408487 -0.260393 0.785744 0.561072 -0.621939 0.307986 -0.719956 -0.738503 -0.536424 0.408487 -0.341311 0.754125 0.561072 -0.650793 0.241106 -0.719956 -0.678215 -0.610870 0.408487 -0.418469 0.714200 0.561072 -0.672478 0.171570 -0.719956 -0.610456 -0.678588 0.408487 -0.490351 0.666899 0.561072 -0.686656 0.100832 -0.719956 -0.536712 -0.738294 0.408487 -0.557546 0.611834 0.561072 -0.693442 0.028310 -0.719956 -0.456377 -0.790480 0.408487 -0.618600 0.550029 0.561072 -0.692590 -0.044524 -0.719956 -0.371016 -0.833958 0.408487 -0.672358 0.482839 0.561072 -0.684226 -0.116183 -0.719956 -0.282436 -0.867968 0.408487 -0.719260 0.409712 0.561072 -0.668281 -0.187255 -0.719956 -0.189911 -0.892789 0.408487 -0.758239 0.332072 0.561072 -0.644975 -0.256264 -0.719956 -0.095294 -0.907776 0.408487 -0.788662 0.251417 0.561072 -0.614827 -0.321950 -0.719956 -0.000372 -0.912764 0.408487 -0.810669 0.167375 0.561072 -0.577698 -0.384615 -0.719956 0.095294 -0.907776 0.408487 -0.823746 0.081489 0.561072 -0.534206 -0.443044 -0.719956 0.189911 -0.892789 0.408487 -0.827750 -0.005294 0.561072 -0.484830 -0.496592 -0.719956 0.282436 -0.867968 0.408487 -0.822728 -0.091197 0.561072 -0.430658 -0.544241 -0.719956 0.371016 -0.833958 0.408487 -0.808639 -0.176922 0.561072 -0.371245 -0.586379 -0.719956 0.456377 -0.790480 0.408487 -0.785643 -0.260699 0.561072 -0.307744 -0.622059 -0.719956 0.536712 -0.738294 0.408487 -0.754334 -0.340850 0.561072 -0.241504 -0.650646 -0.719956 0.610456 -0.678588 0.408487 -0.714456 -0.418032 0.561072 -0.171981 -0.672374 -0.719956 0.678215 -0.610870 0.408487 -0.666708 -0.490610 0.561072 -0.100564 -0.686695 -0.719956 0.738503 -0.536424 0.408487 -0.611617 -0.557784 0.561072 -0.028040 -0.693453 -0.719956 0.790657 -0.456070 0.408487 -0.550407 -0.618264 0.561072 0.044101 -0.692617 -0.719956 0.833731 -0.371525 0.408487 -0.482577 -0.672545 0.561072 0.116449 -0.684181 -0.719956 0.868078 -0.282098 0.408487 -0.409432 -0.719419 0.561072 0.187515 -0.668208 -0.719956 0.892863 -0.189564 0.408487 -0.332535 -0.758036 0.561072 0.255870 -0.645131 -0.719956 0.907717 -0.095849 0.408487 -0.251256 -0.788713 0.561072 0.322075 -0.614761 -0.719956 0.912764 -0.000186 0.408487 -0.167209 -0.810703 0.561072 0.384733 -0.577620 -0.719956 0.907756 0.095479 0.408487 -0.081321 -0.823763 0.561072 0.443153 -0.534116 -0.719956 0.892750 0.190093 0.408487 0.004635 -0.827754 0.561072 0.496206 -0.485225 -0.719956 0.868192 0.281745 0.408487 0.091364 -0.822709 0.561072 0.544328 -0.430547 -0.719956 0.833882 0.371186 0.408487 0.177087 -0.808603 0.561072 0.586455 -0.371126 -0.719956 0.790387 0.456538 0.408487 0.260859 -0.785589 0.561072 0.622122 -0.307617 -0.719956 0.738185 0.536862 0.408487 0.341004 -0.754264 0.561072 0.650695 -0.241371 -0.719956 0.678464 0.610594 0.408487 0.418178 -0.714371 0.561072 0.672409 -0.171844 -0.719956 0.610732 0.678339 0.408487 0.490746 -0.666608 0.561072 0.686716 -0.100425 -0.719956 0.536274 0.738612 0.408487 0.557297 -0.612061 0.561072 0.693431 -0.028592 -0.719956 0.456699 0.790294 0.408487 0.618376 -0.550281 0.561072 0.692608 0.044242 -0.719956 0.371355 0.833806 0.408487 0.672644 -0.482440 0.561072 0.684157 0.116588 -0.719956 0.281921 0.868135 0.408487 0.719502 -0.409286 0.561072 0.668170 0.187651 -0.719956 0.189382 0.892901 0.408487 0.758104 -0.332381 0.561072 0.645079 0.256001 -0.719956 0.095664 0.907737 0.408487 0.788764 -0.251095 0.561072 0.614696 0.322200 -0.719956 0.000000 0.912764 0.408487 0.810737 -0.167044 0.561072 0.577541 0.384850 -0.719956 -0.095664 0.907737 0.408487 0.823698 -0.081977 0.561072 0.534468 0.442727 -0.719956 -0.189382 0.892901 0.408487 0.827753 0.004804 0.561072 0.485124 0.496305 -0.719956 -0.281921 0.868135 0.408487 0.822691 0.091532 0.561072 0.430436 0.544416 -0.719956 -0.371355 0.833806 0.408487 0.808567 0.177252 0.561072 0.371007 0.586530 -0.719956 -0.456699 0.790294 0.408487 0.785797 0.260233 0.561072 0.308113 0.621876 -0.719956 -0.536274 0.738612 0.408487 0.754195 0.341157 0.561072 0.241239 0.650744 -0.719956 -0.610732 0.678339 0.408487 0.714285 0.418323 0.561072 0.171707 0.672444 -0.719956 -0.678464 0.610594 0.408487 0.666999 0.490215 0.561072 0.100972 0.686636 -0.719956 -0.738185 0.536862 0.408487 0.611947 0.557421 0.561072 0.028451 0.693437 -0.719956 -0.790387 0.456538 0.408487 0.550155 0.618488 0.561072 -0.044383 0.692599 -0.719956 -0.833882 0.371186 0.408487 0.482303 0.672742 0.561072 -0.116728 0.684133 -0.719956 -0.868192 0.281745 0.408487 0.409858 0.719176 0.561072 -0.187119 0.668319 -0.719956 -0.892750 0.190093 0.408487 0.332226 0.758171 0.561072 -0.256133 0.645027 -0.719956 -0.907756 0.095479 0.408487 0.595225 0.722887 -0.350915 0.622799 -0.690966 -0.366998 -0.507769 -0.000103 -0.861493 0.516183 0.781290 -0.350915 0.691787 -0.621887 -0.366998 -0.504961 -0.053321 -0.861493 0.432286 0.830655 -0.350915 0.752609 -0.546710 -0.366998 -0.496698 -0.105454 -0.861493 0.342847 0.871387 -0.350915 0.805763 -0.464821 -0.366998 -0.482910 -0.156931 -0.861493 0.249631 0.902520 -0.350915 0.850042 -0.377811 -0.366998 -0.463803 -0.206679 -0.861493 0.154589 0.923559 -0.350915 0.884671 -0.287524 -0.366998 -0.439841 -0.253711 -0.861493 0.056942 0.934674 -0.350915 0.909933 -0.193221 -0.366998 -0.410828 -0.298412 -0.861493 -0.041332 0.935495 -0.350915 0.925173 -0.096790 -0.366998 -0.377289 -0.339826 -0.861493 -0.139151 0.926011 -0.350915 0.930221 0.000708 -0.366998 -0.339595 -0.377497 -0.861493 -0.234531 0.906562 -0.350915 0.925122 0.097273 -0.366998 -0.298571 -0.410712 -0.861493 -0.328253 0.876988 -0.350915 0.909832 0.193697 -0.366998 -0.253882 -0.439742 -0.861493 -0.418360 0.837755 -0.350915 0.884520 0.287987 -0.366998 -0.206395 -0.463929 -0.861493 -0.503069 0.789798 -0.350915 0.849844 0.378255 -0.366998 -0.157118 -0.482849 -0.861493 -0.583075 0.732723 -0.350915 0.805520 0.465242 -0.366998 -0.105647 -0.496656 -0.861493 -0.656658 0.667577 -0.350915 0.752323 0.547104 -0.366998 -0.053012 -0.504994 -0.861493 -0.722523 0.595666 -0.350915 0.691346 0.622377 -0.366998 -0.000207 -0.507769 -0.861493 -0.780974 0.516660 -0.350915 0.622309 0.691407 -0.366998 0.053012 -0.504994 -0.861493 -0.830823 0.431963 -0.350915 0.546418 0.752822 -0.366998 0.105647 -0.496656 -0.861493 -0.871520 0.342508 -0.350915 0.464507 0.805944 -0.366998 0.157118 -0.482849 -0.861493 -0.902368 0.250182 -0.350915 0.378330 0.849811 -0.366998 0.206395 -0.463929 -0.861493 -0.923619 0.154230 -0.350915 0.287180 0.884782 -0.366998 0.253882 -0.439742 -0.861493 -0.934696 0.056579 -0.350915 0.192867 0.910008 -0.366998 0.298571 -0.410712 -0.861493 -0.935520 -0.040760 -0.350915 0.097355 0.925113 -0.366998 0.339595 -0.377497 -0.861493 -0.926095 -0.138585 -0.350915 -0.000140 0.930222 -0.366998 0.377289 -0.339826 -0.861493 -0.906470 -0.234883 -0.350915 -0.097633 0.925084 -0.366998 0.410828 -0.298412 -0.861493 -0.876861 -0.328594 -0.350915 -0.194051 0.909756 -0.366998 0.439841 -0.253711 -0.861493 -0.838010 -0.417848 -0.350915 -0.287447 0.884696 -0.366998 0.463803 -0.206679 -0.861493 -0.789602 -0.503376 -0.350915 -0.378586 0.849697 -0.366998 0.482910 -0.156931 -0.861493 -0.732496 -0.583360 -0.350915 -0.465555 0.805339 -0.366998 0.496698 -0.105454 -0.861493 -0.667978 -0.656250 -0.350915 -0.546644 0.752657 -0.366998 0.504961 -0.053321 -0.861493 -0.595519 -0.722645 -0.350915 -0.622517 0.691220 -0.366998 0.507769 -0.000103 -0.861493 -0.516501 -0.781079 -0.350915 -0.691534 0.622168 -0.366998 0.504983 0.053115 -0.861493 -0.431794 -0.830911 -0.350915 -0.752933 0.546264 -0.366998 0.496635 0.105748 -0.861493 -0.343202 -0.871247 -0.350915 -0.805574 0.465149 -0.366998 0.482974 0.156734 -0.861493 -0.249999 -0.902419 -0.350915 -0.849888 0.378157 -0.366998 0.463887 0.206490 -0.861493 -0.154042 -0.923650 -0.350915 -0.884841 0.287000 -0.366998 0.439690 0.253971 -0.861493 -0.056388 -0.934708 -0.350915 -0.910047 0.192682 -0.366998 0.410651 0.298655 -0.861493 0.040951 -0.935511 -0.350915 -0.925133 0.097166 -0.366998 0.377428 0.339672 -0.861493 0.138774 -0.926067 -0.350915 -0.930222 -0.000329 -0.366998 0.339749 0.377359 -0.861493 0.235068 -0.906422 -0.350915 -0.925064 -0.097822 -0.366998 0.298328 0.410888 -0.861493 0.327896 -0.877122 -0.350915 -0.909911 -0.193326 -0.366998 0.254061 0.439639 -0.861493 0.418019 -0.837925 -0.350915 -0.884637 -0.287627 -0.366998 0.206584 0.463845 -0.861493 0.503537 -0.789499 -0.350915 -0.849620 -0.378759 -0.366998 0.156832 0.482942 -0.861493 0.583509 -0.732377 -0.350915 -0.805244 -0.465719 -0.366998 0.105353 0.496719 -0.861493 0.656386 -0.667844 -0.350915 -0.752546 -0.546797 -0.366998 0.053218 0.504972 -0.861493 0.722766 -0.595372 -0.350915 -0.691093 -0.622658 -0.366998 0.000000 0.507769 -0.861493 0.781185 -0.516342 -0.350915 -0.622028 -0.691660 -0.366998 -0.053218 0.504972 -0.861493 0.830567 -0.432455 -0.350915 -0.546864 -0.752498 -0.366998 -0.105353 0.496719 -0.861493 0.871317 -0.343024 -0.350915 -0.464985 -0.805669 -0.366998 -0.156832 0.482942 -0.861493 0.902469 -0.249815 -0.350915 -0.377984 -0.849965 -0.366998 -0.206584 0.463845 -0.861493 0.923681 -0.153854 -0.350915 -0.286820 -0.884899 -0.366998 -0.254061 0.439639 -0.861493 0.934663 -0.057133 -0.350915 -0.193406 -0.909894 -0.366998 -0.298328 0.410888 -0.861493 0.935503 0.041141 -0.350915 -0.096978 -0.925153 -0.366998 -0.339749 0.377359 -0.861493 0.926039 0.138962 -0.350915 0.000519 -0.930222 -0.366998 -0.377428 0.339672 -0.861493 0.906609 0.234346 -0.350915 0.097085 -0.925142 -0.366998 -0.410651 0.298655 -0.861493 0.877055 0.328074 -0.350915 0.193512 -0.909871 -0.366998 -0.439690 0.253971 -0.861493 0.837840 0.418189 -0.350915 0.287807 -0.884579 -0.366998 -0.463887 0.206490 -0.861493 0.789397 0.503698 -0.350915 0.378932 -0.849543 -0.366998 -0.482974 0.156734 -0.861493 0.732841 0.582925 -0.350915 0.465078 -0.805615 -0.366998 -0.496635 0.105748 -0.861493 0.667710 0.656522 -0.350915 0.546951 -0.752434 -0.366998 -0.504983 0.053115 -0.861493 -0.627117 0.217903 -0.747825 -0.139893 -0.975970 -0.167068 -0.766260 -0.000156 0.642531 -0.646501 0.150977 -0.747825 -0.036834 -0.985257 -0.167068 -0.762024 -0.080465 0.642531 -0.658681 0.083046 -0.747825 0.065647 -0.983757 -0.167068 -0.749553 -0.159138 0.642531 -0.663757 0.013554 -0.747825 0.168391 -0.971459 -0.167068 -0.728746 -0.236820 0.642531 -0.661522 -0.056087 -0.747825 0.269279 -0.948460 -0.167068 -0.699912 -0.311893 0.642531 -0.652125 -0.124458 -0.747825 0.366287 -0.915381 -0.167068 -0.663752 -0.382868 0.642531 -0.635490 -0.192120 -0.747825 0.460208 -0.871950 -0.167068 -0.619969 -0.450325 0.642531 -0.611854 -0.257666 -0.747825 0.549060 -0.818915 -0.167068 -0.569357 -0.512822 0.642531 -0.581479 -0.320374 -0.747825 0.631864 -0.756859 -0.167068 -0.512474 -0.569671 0.642531 -0.545079 -0.379008 -0.747825 0.707021 -0.687174 -0.167068 -0.450566 -0.619794 0.642531 -0.502354 -0.434048 -0.747825 0.775148 -0.609289 -0.167068 -0.383126 -0.663603 0.642531 -0.454096 -0.484308 -0.747825 0.834737 -0.524692 -0.167068 -0.311466 -0.700103 0.642531 -0.401365 -0.528832 -0.747825 0.884697 -0.435201 -0.167068 -0.237103 -0.728654 0.642531 -0.343729 -0.567986 -0.747825 0.925436 -0.340082 -0.167068 -0.159429 -0.749491 0.642531 -0.282307 -0.600883 -0.747825 0.955983 -0.241216 -0.167068 -0.079999 -0.762073 0.642531 -0.218286 -0.626984 -0.747825 0.975885 -0.140489 -0.167068 -0.000312 -0.766260 0.642531 -0.151372 -0.646409 -0.747825 0.985234 -0.037436 -0.167068 0.079999 -0.762073 0.642531 -0.082790 -0.658713 -0.747825 0.983732 0.066030 -0.167068 0.159429 -0.749491 0.642531 -0.013296 -0.663763 -0.747825 0.971393 0.168769 -0.167068 0.237103 -0.728654 0.642531 0.055683 -0.661556 -0.747825 0.948625 0.268700 -0.167068 0.311466 -0.700103 0.642531 0.124712 -0.652077 -0.747825 0.915238 0.366642 -0.167068 0.383126 -0.663603 0.642531 0.192367 -0.635415 -0.747825 0.871771 0.460547 -0.167068 0.450566 -0.619794 0.642531 0.257292 -0.612012 -0.747825 0.819250 0.548559 -0.167068 0.512474 -0.569671 0.642531 0.320018 -0.581675 -0.747825 0.757245 0.631401 -0.167068 0.569357 -0.512822 0.642531 0.379220 -0.544931 -0.747825 0.686899 0.707289 -0.167068 0.619969 -0.450325 0.642531 0.434244 -0.502185 -0.747825 0.608988 0.775385 -0.167068 0.663752 -0.382868 0.642531 0.484031 -0.454392 -0.747825 0.525202 0.834416 -0.167068 0.699912 -0.311893 0.642531 0.528988 -0.401159 -0.747825 0.434857 0.884866 -0.167068 0.728746 -0.236820 0.642531 0.568119 -0.343508 -0.747825 0.339722 0.925569 -0.167068 0.749553 -0.159138 0.642531 0.600710 -0.282674 -0.747825 0.241800 0.955835 -0.167068 0.762024 -0.080465 0.642531 0.627028 -0.218159 -0.747825 0.140290 0.975913 -0.167068 0.766260 -0.000156 0.642531 0.646439 -0.151240 -0.747825 0.037235 0.985242 -0.167068 0.762056 0.080154 0.642531 0.658730 -0.082656 -0.747825 -0.066231 0.983718 -0.167068 0.749458 0.159582 0.642531 0.663752 -0.013825 -0.747825 -0.167995 0.971528 -0.167068 0.728842 0.236523 0.642531 0.661545 0.055818 -0.747825 -0.268893 0.948570 -0.167068 0.700039 0.311608 0.642531 0.652052 0.124845 -0.747825 -0.366829 0.915164 -0.167068 0.663525 0.383261 0.642531 0.635376 0.192497 -0.747825 -0.460724 0.871677 -0.167068 0.619702 0.450692 0.642531 0.611959 0.257417 -0.747825 -0.548726 0.819138 -0.167068 0.569566 0.512590 0.642531 0.581610 0.320137 -0.747825 -0.631556 0.757117 -0.167068 0.512706 0.569462 0.642531 0.544854 0.379331 -0.747825 -0.707429 0.686755 -0.167068 0.450199 0.620061 0.642531 0.502531 0.433844 -0.747825 -0.774900 0.609605 -0.167068 0.383396 0.663447 0.642531 0.454293 0.484123 -0.747825 -0.834523 0.525032 -0.167068 0.311751 0.699976 0.642531 0.401052 0.529070 -0.747825 -0.884954 0.434677 -0.167068 0.236671 0.728794 0.642531 0.343392 0.568189 -0.747825 -0.925638 0.339533 -0.167068 0.158985 0.749585 0.642531 0.282552 0.600768 -0.747825 -0.955884 0.241606 -0.167068 0.080310 0.762040 0.642531 0.218031 0.627073 -0.747825 -0.975942 0.140092 -0.167068 0.000000 0.766260 0.642531 0.151108 0.646470 -0.747825 -0.985250 0.037034 -0.167068 -0.080310 0.762040 0.642531 0.083180 0.658664 -0.747825 -0.983771 -0.065447 -0.167068 -0.158985 0.749585 0.642531 0.013689 0.663755 -0.747825 -0.971493 -0.168193 -0.167068 -0.236671 0.728794 0.642531 -0.055952 0.661534 -0.747825 -0.948515 -0.269086 -0.167068 -0.311751 0.699976 0.642531 -0.124978 0.652026 -0.747825 -0.915089 -0.367015 -0.167068 -0.383396 0.663447 0.642531 -0.191991 0.635529 -0.747825 -0.872044 -0.460030 -0.167068 -0.450199 0.620061 0.642531 -0.257541 0.611907 -0.747825 -0.819027 -0.548893 -0.167068 -0.512706 0.569462 0.642531 -0.320255 0.581545 -0.747825 -0.756988 -0.631710 -0.167068 -0.569566 0.512590 0.642531 -0.378897 0.545156 -0.747825 -0.687319 -0.706881 -0.167068 -0.619702 0.450692 0.642531 -0.433946 0.502442 -0.747825 -0.609447 -0.775024 -0.167068 -0.663525 0.383261 0.642531 -0.484216 0.454195 -0.747825 -0.524862 -0.834630 -0.167068 -0.700039 0.311608 0.642531 -0.529152 0.400944 -0.747825 -0.434496 -0.885043 -0.167068 -0.728842 0.236523 0.642531 -0.567916 0.343845 -0.747825 -0.340270 -0.925367 -0.167068 -0.749458 0.159582 0.642531 -0.600825 0.282429 -0.747825 -0.241411 -0.955934 -0.167068 -0.762056 0.080154 0.642531 0.451635 0.303051 0.839158 -0.143788 0.952974 -0.266768 -0.880540 -0.000179 0.473972 0.417386 0.348717 0.839158 -0.242875 0.932656 -0.266768 -0.875672 -0.092465 0.473972 0.378930 0.390163 0.839158 -0.338384 0.902403 -0.266768 -0.861341 -0.182871 0.473972 0.335951 0.427728 0.839158 -0.431099 0.861968 -0.266768 -0.837431 -0.272139 0.473972 0.289272 0.460583 0.839158 -0.519065 0.812039 -0.266768 -0.804297 -0.358409 0.473972 0.239894 0.488124 0.839158 -0.600560 0.753765 -0.266768 -0.762744 -0.439969 0.473972 0.187414 0.510579 0.839158 -0.676253 0.686671 -0.266768 -0.712431 -0.517486 0.473972 0.132870 0.527409 0.839158 -0.744496 0.612013 -0.266768 -0.654271 -0.589304 0.473972 0.076862 0.538430 0.839158 -0.804539 0.530614 -0.266768 -0.588905 -0.654631 0.473972 0.020551 0.543500 0.839158 -0.855277 0.444226 -0.266768 -0.517764 -0.712230 0.473972 -0.036525 0.542661 0.839158 -0.897125 0.352140 -0.266768 -0.440265 -0.762573 0.473972 -0.093199 0.535844 0.839158 -0.929090 0.256175 -0.266768 -0.357917 -0.804516 0.473972 -0.148322 0.523273 0.839158 -0.950665 0.158340 -0.266768 -0.272465 -0.837325 0.473972 -0.202348 0.504846 0.839158 -0.962024 0.057832 -0.266768 -0.183206 -0.861270 0.473972 -0.254146 0.480858 0.839158 -0.962787 -0.043314 -0.266768 -0.091930 -0.875728 0.473972 -0.302775 0.451820 0.839158 -0.953062 -0.143206 -0.266768 -0.000359 -0.880540 0.473972 -0.348462 0.417599 0.839158 -0.932804 -0.242305 -0.266768 0.091930 -0.875728 0.473972 -0.390310 0.378778 0.839158 -0.902271 -0.338735 -0.266768 0.183206 -0.861270 0.473972 -0.427859 0.335784 0.839158 -0.861800 -0.431434 -0.266768 0.272465 -0.837325 0.473972 -0.460406 0.289553 0.839158 -0.812356 -0.518569 -0.266768 0.357917 -0.804516 0.473972 -0.488217 0.239705 0.839158 -0.753532 -0.600853 -0.266768 0.440265 -0.762573 0.473972 -0.510651 0.187216 0.839158 -0.686408 -0.676520 -0.266768 0.517764 -0.712230 0.473972 -0.527328 0.133192 0.839158 -0.612468 -0.744122 -0.266768 0.588905 -0.654631 0.473972 -0.538383 0.077191 0.839158 -0.531105 -0.804215 -0.266768 0.654271 -0.589304 0.473972 -0.543508 0.020339 0.839158 -0.443893 -0.855450 -0.266768 0.712431 -0.517486 0.473972 -0.542646 -0.036736 0.839158 -0.351791 -0.897261 -0.266768 0.762744 -0.439969 0.473972 -0.535901 -0.092871 0.839158 -0.256743 -0.928934 -0.266768 0.804297 -0.358409 0.473972 -0.523216 -0.148526 0.839158 -0.157970 -0.950726 -0.266768 0.837431 -0.272139 0.473972 -0.504767 -0.202545 0.839158 -0.057457 -0.962047 -0.266768 0.861341 -0.182871 0.473972 -0.481013 -0.253852 0.839158 0.042726 -0.962813 -0.266768 0.875672 -0.092465 0.473972 -0.451759 -0.302867 0.839158 0.143400 -0.953033 -0.266768 0.880540 -0.000179 0.473972 -0.417528 -0.348547 0.839158 0.242495 -0.932755 -0.266768 0.875709 0.092109 0.473972 -0.378698 -0.390387 0.839158 0.338919 -0.902202 -0.266768 0.861233 0.183382 0.473972 -0.336125 -0.427592 0.839158 0.430748 -0.862144 -0.266768 0.837542 0.271798 0.473972 -0.289459 -0.460465 0.839158 0.518734 -0.812250 -0.266768 0.804443 0.358081 0.473972 -0.239605 -0.488266 0.839158 0.601007 -0.753409 -0.266768 0.762483 0.440421 0.473972 -0.187112 -0.510689 0.839158 0.676660 -0.686270 -0.266768 0.712124 0.517909 0.473972 -0.133085 -0.527355 0.839158 0.744247 -0.612316 -0.266768 0.654511 0.589038 0.473972 -0.077081 -0.538399 0.839158 0.804323 -0.530942 -0.266768 0.589171 0.654391 0.473972 -0.020229 -0.543512 0.839158 0.855540 -0.443719 -0.266768 0.517341 0.712537 0.473972 0.036304 -0.542675 0.839158 0.896981 -0.352505 -0.266768 0.440576 0.762393 0.473972 0.092980 -0.535882 0.839158 0.928986 -0.256554 -0.266768 0.358245 0.804370 0.473972 0.148633 -0.523185 0.839158 0.950758 -0.157777 -0.266768 0.271968 0.837487 0.473972 0.202648 -0.504726 0.839158 0.962058 -0.057261 -0.266768 0.182696 0.861378 0.473972 0.253950 -0.480962 0.839158 0.962805 0.042922 -0.266768 0.092287 0.875690 0.473972 0.302959 -0.451697 0.839158 0.953004 0.143594 -0.266768 0.000000 0.880540 0.473972 0.348632 -0.417457 0.839158 0.932705 0.242685 -0.266768 -0.092287 0.875690 0.473972 0.390085 -0.379009 0.839158 0.902472 0.338200 -0.266768 -0.182696 0.861378 0.473972 0.427660 -0.336038 0.839158 0.862056 0.430923 -0.266768 -0.271968 0.837487 0.473972 0.460524 -0.289365 0.839158 0.812144 0.518900 -0.266768 -0.358245 0.804370 0.473972 0.488315 -0.239506 0.839158 0.753287 0.601160 -0.266768 -0.440576 0.762393 0.473972 0.510540 -0.187518 0.839158 0.686809 0.676113 -0.266768 -0.517341 0.712537 0.473972 0.527382 -0.132977 0.839158 0.612165 0.744372 -0.266768 -0.589171 0.654391 0.473972 0.538414 -0.076971 0.839158 0.530778 0.804431 -0.266768 -0.654511 0.589038 0.473972 0.543496 -0.020661 0.839158 0.444400 0.855186 -0.266768 -0.712124 0.517909 0.473972 0.542668 0.036415 0.839158 0.352323 0.897053 -0.266768 -0.762483 0.440421 0.473972 0.535863 0.093090 0.839158 0.256365 0.929038 -0.266768 -0.804443 0.358081 0.473972 0.523155 0.148739 0.839158 0.157583 0.950791 -0.266768 -0.837542 0.271798 0.473972 0.504887 0.202246 0.839158 0.058028 0.962012 -0.266768 -0.861233 0.183382 0.473972 0.480910 0.254048 0.839158 -0.043118 0.962796 -0.266768 -0.875709 0.092109 0.473972 -0.299439 0.025733 0.953768 0.007522 0.999669 -0.024609 -0.954086 -0.000194 -0.299534 -0.300487 -0.005793 0.953768 -0.097291 0.994952 -0.024609 -0.948811 -0.100188 -0.299534 -0.298262 -0.036956 0.953768 -0.200054 0.979476 -0.024609 -0.933284 -0.198145 -0.299534 -0.292746 -0.068012 0.953768 -0.301609 0.953114 -0.024609 -0.907376 -0.294869 -0.299534 -0.284006 -0.098319 0.953768 -0.399841 0.916254 -0.024609 -0.871475 -0.388345 -0.299534 -0.272264 -0.127272 0.953768 -0.492799 0.869795 -0.024609 -0.826451 -0.476716 -0.299534 -0.257426 -0.155106 0.953768 -0.581246 0.813356 -0.024609 -0.771936 -0.560709 -0.299534 -0.239752 -0.181232 0.953768 -0.663290 0.747958 -0.024609 -0.708918 -0.638525 -0.299534 -0.219437 -0.205361 0.953768 -0.738028 0.674321 -0.024609 -0.638092 -0.709308 -0.299534 -0.196932 -0.227032 0.953768 -0.804044 0.594061 -0.024609 -0.561009 -0.771718 -0.299534 -0.172053 -0.246422 0.953768 -0.861877 0.506519 -0.024609 -0.477038 -0.826265 -0.299534 -0.145279 -0.263097 0.953768 -0.910218 0.413399 -0.024609 -0.387812 -0.871712 -0.299534 -0.117181 -0.276757 0.953768 -0.948215 0.316673 -0.024609 -0.295222 -0.907262 -0.299534 -0.087530 -0.287514 0.953768 -0.976183 0.215549 -0.024609 -0.198509 -0.933206 -0.299534 -0.056914 -0.295105 0.953768 -0.993398 0.112051 -0.024609 -0.099609 -0.948872 -0.299534 -0.025915 -0.299423 0.953768 -0.999664 0.008133 -0.024609 -0.000389 -0.954086 -0.299534 0.005609 -0.300490 0.953768 -0.995011 -0.096684 -0.024609 0.099609 -0.948872 -0.299534 0.037072 -0.298248 0.953768 -0.979398 -0.200435 -0.024609 0.198509 -0.933206 -0.299534 0.068126 -0.292720 0.953768 -0.952997 -0.301979 -0.024609 0.295222 -0.907262 -0.299534 0.098146 -0.284066 0.953768 -0.916498 -0.399281 -0.024609 0.387812 -0.871712 -0.299534 0.127377 -0.272215 0.953768 -0.869603 -0.493137 -0.024609 0.477038 -0.826265 -0.299534 0.155206 -0.257366 0.953768 -0.813130 -0.581562 -0.024609 0.561009 -0.771718 -0.299534 0.181085 -0.239863 0.953768 -0.748363 -0.662833 -0.024609 0.638092 -0.709308 -0.299534 0.205227 -0.219563 0.953768 -0.674771 -0.737616 -0.024609 0.708918 -0.638525 -0.299534 0.227109 -0.196844 0.953768 -0.593748 -0.804275 -0.024609 0.771936 -0.560709 -0.299534 0.246489 -0.171957 0.953768 -0.506184 -0.862074 -0.024609 0.826451 -0.476716 -0.299534 0.263008 -0.145440 0.953768 -0.413955 -0.909965 -0.024609 0.871475 -0.388345 -0.299534 0.276803 -0.117074 0.953768 -0.316304 -0.948339 -0.024609 0.907376 -0.294869 -0.299534 0.287548 -0.087418 0.953768 -0.215169 -0.976267 -0.024609 0.933284 -0.198145 -0.299534 0.295070 -0.057094 0.953768 -0.112658 -0.993329 -0.024609 0.948811 -0.100188 -0.299534 0.299429 -0.025854 0.953768 -0.007930 -0.999666 -0.024609 0.954086 -0.000194 -0.299534 0.300489 0.005670 0.953768 0.096886 -0.994991 -0.024609 0.948852 0.099802 -0.299534 0.298240 0.037132 0.953768 0.200635 -0.979357 -0.024609 0.933166 0.198699 -0.299534 0.292774 0.067893 0.953768 0.301220 -0.953237 -0.024609 0.907496 0.294499 -0.299534 0.284046 0.098204 0.953768 0.399467 -0.916417 -0.024609 0.871633 0.387990 -0.299534 0.272189 0.127433 0.953768 0.493314 -0.869503 -0.024609 0.826168 0.477206 -0.299534 0.257334 0.155258 0.953768 0.581728 -0.813011 -0.024609 0.771604 0.561166 -0.299534 0.239826 0.181134 0.953768 0.662985 -0.748228 -0.024609 0.709178 0.638236 -0.299534 0.219521 0.205272 0.953768 0.737754 -0.674621 -0.024609 0.638381 0.709048 -0.299534 0.196798 0.227149 0.953768 0.804396 -0.593584 -0.024609 0.560552 0.772050 -0.299534 0.172154 0.246352 0.953768 0.861671 -0.506870 -0.024609 0.477374 0.826071 -0.299534 0.145386 0.263038 0.953768 0.910049 -0.413769 -0.024609 0.388167 0.871554 -0.299534 0.117017 0.276827 0.953768 0.948403 -0.316111 -0.024609 0.294684 0.907436 -0.299534 0.087359 0.287566 0.953768 0.976310 -0.214971 -0.024609 0.197955 0.933324 -0.299534 0.057034 0.295081 0.953768 0.993352 -0.112456 -0.024609 0.099995 0.948831 -0.299534 0.025794 0.299434 0.953768 0.999667 -0.007726 -0.024609 0.000000 0.954086 -0.299534 -0.005731 0.300488 0.953768 0.994971 0.097089 -0.024609 -0.099995 0.948831 -0.299534 -0.036895 0.298270 0.953768 0.979516 0.199855 -0.024609 -0.197955 0.933324 -0.299534 -0.067952 0.292760 0.953768 0.953176 0.301415 -0.024609 -0.294684 0.907436 -0.299534 -0.098262 0.284026 0.953768 0.916336 0.399654 -0.024609 -0.388167 0.871554 -0.299534 -0.127488 0.272163 0.953768 0.869402 0.493492 -0.024609 -0.477374 0.826071 -0.299534 -0.155053 0.257458 0.953768 0.813474 0.581080 -0.024609 -0.560552 0.772050 -0.299534 -0.181183 0.239789 0.953768 0.748093 0.663138 -0.024609 -0.638381 0.709048 -0.299534 -0.205317 0.219479 0.953768 0.674471 0.737891 -0.024609 -0.709178 0.638236 -0.299534 -0.226992 0.196979 0.953768 0.594224 0.803923 -0.024609 -0.771604 0.561166 -0.299534 -0.246387 0.172103 0.953768 0.506695 0.861774 -0.024609 -0.826168 0.477206 -0.299534 -0.263067 0.145333 0.953768 0.413584 0.910133 -0.024609 -0.871633 0.387990 -0.299534 -0.276850 0.116961 0.953768 0.315918 0.948467 -0.024609 -0.907496 0.294499 -0.299534 -0.287496 0.087588 0.953768 0.215748 0.976139 -0.024609 -0.933166 0.198699 -0.299534 -0.295093 0.056974 0.953768 0.112253 0.993375 -0.024609 -0.948852 0.099802 -0.299534 0.152413 0.678588 -0.718532 0.141073 -0.734519 -0.663762 -0.978197 -0.000199 -0.207681 0.080453 0.690825 -0.718532 0.217279 -0.715688 -0.663762 -0.972788 -0.102720 -0.207681 0.008302 0.695444 -0.718532 0.290402 -0.689265 -0.663762 -0.956869 -0.203153 -0.207681 -0.064631 0.692484 -0.718532 0.361043 -0.655033 -0.663762 -0.930307 -0.302321 -0.207681 -0.136853 0.681897 -0.718532 0.427707 -0.613585 -0.663762 -0.893498 -0.398159 -0.207681 -0.206903 0.664005 -0.718532 0.489094 -0.565869 -0.663762 -0.847336 -0.488764 -0.207681 -0.275356 0.638663 -0.718532 0.545707 -0.511492 -0.663762 -0.791444 -0.574879 -0.207681 -0.340776 0.606287 -0.718532 0.596309 -0.451481 -0.663762 -0.726834 -0.654661 -0.207681 -0.402442 0.567232 -0.718532 0.640344 -0.386497 -0.663762 -0.654217 -0.727233 -0.207681 -0.459153 0.522389 -0.718532 0.677007 -0.317933 -0.663762 -0.575186 -0.791220 -0.207681 -0.511375 0.471389 -0.718532 0.706600 -0.245226 -0.663762 -0.489093 -0.847146 -0.207681 -0.557963 0.415197 -0.718532 0.728410 -0.169819 -0.663762 -0.397612 -0.893741 -0.207681 -0.598051 0.355030 -0.718532 0.742104 -0.093283 -0.663762 -0.302683 -0.930189 -0.207681 -0.631967 0.290395 -0.718532 0.747793 -0.014992 -0.663762 -0.203525 -0.956789 -0.207681 -0.658922 0.222561 -0.718532 0.745246 0.063465 -0.663762 -0.102126 -0.972851 -0.207681 -0.678495 0.152828 -0.718532 0.734605 0.140624 -0.663762 -0.000398 -0.978197 -0.207681 -0.690775 0.080875 -0.718532 0.715821 0.216842 -0.663762 0.102126 -0.972851 -0.207681 -0.695447 0.008031 -0.718532 0.689152 0.290671 -0.663762 0.203525 -0.956789 -0.207681 -0.692459 -0.064901 -0.718532 0.654892 0.361298 -0.663762 0.302683 -0.930189 -0.207681 -0.681980 -0.136436 -0.718532 0.613846 0.427332 -0.663762 0.397612 -0.893741 -0.207681 -0.663925 -0.207161 -0.718532 0.565678 0.489314 -0.663762 0.489093 -0.847146 -0.207681 -0.638556 -0.275604 -0.718532 0.511279 0.545906 -0.663762 0.575186 -0.791220 -0.207681 -0.606495 -0.340405 -0.718532 0.451845 0.596034 -0.663762 0.654217 -0.727233 -0.207681 -0.567478 -0.402095 -0.718532 0.386888 0.640108 -0.663762 0.726834 -0.654661 -0.207681 -0.522210 -0.459357 -0.718532 0.317669 0.677131 -0.663762 0.791444 -0.574879 -0.207681 -0.471190 -0.511558 -0.718532 0.244952 0.706696 -0.663762 0.847336 -0.488764 -0.207681 -0.415538 -0.557709 -0.718532 0.170264 0.728306 -0.663762 0.893498 -0.398159 -0.207681 -0.354797 -0.598189 -0.718532 0.092995 0.742140 -0.663762 0.930307 -0.302321 -0.207681 -0.290149 -0.632080 -0.718532 0.014701 0.747799 -0.663762 0.956869 -0.203153 -0.207681 -0.222963 -0.658786 -0.718532 -0.063010 0.745285 -0.663762 0.972788 -0.102720 -0.207681 -0.152690 -0.678526 -0.718532 -0.140774 0.734576 -0.663762 0.978197 -0.000199 -0.207681 -0.080734 -0.690792 -0.718532 -0.216987 0.715777 -0.663762 0.972830 0.102324 -0.207681 -0.007890 -0.695449 -0.718532 -0.290811 0.689093 -0.663762 0.956748 0.203720 -0.207681 0.064349 -0.692510 -0.718532 -0.360776 0.655180 -0.663762 0.930430 0.301942 -0.207681 0.136575 -0.681952 -0.718532 -0.427457 0.613759 -0.663762 0.893660 0.397795 -0.207681 0.207296 -0.663882 -0.718532 -0.489429 0.565579 -0.663762 0.847046 0.489266 -0.207681 0.275734 -0.638500 -0.718532 -0.546010 0.511168 -0.663762 0.791103 0.575348 -0.207681 0.340529 -0.606425 -0.718532 -0.596126 0.451723 -0.663762 0.727100 0.654365 -0.207681 0.402211 -0.567396 -0.718532 -0.640186 0.386757 -0.663762 0.654513 0.726967 -0.207681 0.459463 -0.522116 -0.718532 -0.677195 0.317531 -0.663762 0.574717 0.791561 -0.207681 0.511183 -0.471597 -0.718532 -0.706500 0.245514 -0.663762 0.489438 0.846947 -0.207681 0.557794 -0.415424 -0.718532 -0.728341 0.170116 -0.663762 0.397977 0.893579 -0.207681 0.598261 -0.354676 -0.718532 -0.742159 0.092843 -0.663762 0.302131 0.930368 -0.207681 0.632139 -0.290020 -0.718532 -0.747802 0.014549 -0.663762 0.202958 0.956910 -0.207681 0.658831 -0.222829 -0.718532 -0.745272 -0.063161 -0.663762 0.102522 0.972809 -0.207681 0.678557 -0.152552 -0.718532 -0.734548 -0.140923 -0.663762 0.000000 0.978197 -0.207681 0.690808 -0.080594 -0.718532 -0.715733 -0.217133 -0.663762 -0.102522 0.972809 -0.207681 0.695442 -0.008444 -0.718532 -0.689324 -0.290262 -0.663762 -0.202958 0.956910 -0.207681 0.692497 0.064490 -0.718532 -0.655106 -0.360910 -0.663762 -0.302131 0.930368 -0.207681 0.681924 0.136714 -0.718532 -0.613672 -0.427582 -0.663762 -0.397977 0.893579 -0.207681 0.663840 0.207431 -0.718532 -0.565479 -0.489544 -0.663762 -0.489438 0.846947 -0.207681 0.638719 0.275226 -0.718532 -0.511603 -0.545603 -0.663762 -0.574717 0.791561 -0.207681 0.606356 0.340652 -0.718532 -0.451602 -0.596218 -0.663762 -0.654513 0.726967 -0.207681 0.567314 0.402326 -0.718532 -0.386627 -0.640265 -0.663762 -0.727100 0.654365 -0.207681 0.522482 0.459047 -0.718532 -0.318070 -0.676942 -0.663762 -0.791103 0.575348 -0.207681 0.471493 0.511279 -0.718532 -0.245370 -0.706550 -0.663762 -0.847046 0.489266 -0.207681 0.415311 0.557879 -0.718532 -0.169967 -0.728376 -0.663762 -0.893660 0.397795 -0.207681 0.354554 0.598334 -0.718532 -0.092692 -0.742178 -0.663762 -0.930430 0.301942 -0.207681 0.290523 0.631908 -0.718532 -0.015144 -0.747790 -0.663762 -0.956748 0.203720 -0.207681 0.222695 0.658877 -0.718532 0.063313 -0.745259 -0.663762 -0.972830 0.102324 -0.207681 -0.279546 0.936192 0.213070 0.744357 0.351490 -0.567791 -0.606453 -0.000124 -0.795119 -0.376126 0.901737 0.213070 0.703419 0.427568 -0.567791 -0.603101 -0.063684 -0.795119 -0.467706 0.857818 0.213070 0.655232 0.498282 -0.567791 -0.593231 -0.125949 -0.795119 -0.555035 0.804075 0.213070 0.599400 0.564210 -0.567791 -0.576763 -0.187430 -0.795119 -0.636251 0.741475 0.213070 0.536965 0.623924 -0.567791 -0.553943 -0.246847 -0.795119 -0.709788 0.671418 0.213070 0.469293 0.676297 -0.567791 -0.525324 -0.303019 -0.795119 -0.776248 0.593329 0.213070 0.395827 0.721757 -0.567791 -0.490672 -0.356408 -0.795119 -0.834158 0.508705 0.213070 0.318002 0.759268 -0.567791 -0.450616 -0.405871 -0.795119 -0.882880 0.418478 0.213070 0.236674 0.788415 -0.567791 -0.405596 -0.450864 -0.795119 -0.921553 0.324562 0.213070 0.153548 0.808725 -0.567791 -0.356599 -0.490533 -0.795119 -0.950494 0.226189 0.213070 0.067942 0.820364 -0.567791 -0.303224 -0.525206 -0.795119 -0.968966 0.125325 0.213070 -0.018413 0.822967 -0.567791 -0.246508 -0.554093 -0.795119 -0.976741 0.024057 0.213070 -0.103747 0.816609 -0.567791 -0.187654 -0.576690 -0.795119 -0.973883 -0.078445 0.213070 -0.188762 0.801238 -0.567791 -0.126180 -0.593182 -0.795119 -0.960298 -0.180083 0.213070 -0.271698 0.777041 -0.567791 -0.063315 -0.603139 -0.795119 -0.936362 -0.278974 0.213070 -0.351035 0.744572 -0.567791 -0.000247 -0.606453 -0.795119 -0.901967 -0.375575 0.213070 -0.427138 0.703680 -0.567791 0.063315 -0.603139 -0.795119 -0.857636 -0.468039 0.213070 -0.498536 0.655038 -0.567791 0.126180 -0.593182 -0.795119 -0.803859 -0.555348 0.213070 -0.564443 0.599180 -0.567791 0.187654 -0.576690 -0.795119 -0.741864 -0.635798 0.213070 -0.623596 0.537346 -0.567791 0.246508 -0.554093 -0.795119 -0.671142 -0.710049 0.213070 -0.676479 0.469030 -0.567791 0.303224 -0.525206 -0.795119 -0.593027 -0.776479 0.213070 -0.721911 0.395546 -0.567791 0.356599 -0.490533 -0.795119 -0.509215 -0.833848 0.213070 -0.759074 0.318466 -0.567791 0.405596 -0.450864 -0.795119 -0.419017 -0.882625 0.213070 -0.788270 0.237155 -0.567791 0.450616 -0.405871 -0.795119 -0.324204 -0.921679 0.213070 -0.808785 0.153233 -0.567791 0.490672 -0.356408 -0.795119 -0.225820 -0.950582 0.213070 -0.820390 0.067623 -0.567791 0.525324 -0.303019 -0.795119 -0.125917 -0.968889 0.213070 -0.822978 -0.017910 -0.567791 0.553943 -0.246847 -0.795119 -0.023677 -0.976750 0.213070 -0.816568 -0.104065 -0.567791 0.576763 -0.187430 -0.795119 0.078824 -0.973852 0.213070 -0.801164 -0.189074 -0.567791 0.593231 -0.125949 -0.795119 0.179496 -0.960407 0.213070 -0.777207 -0.271223 -0.567791 0.603101 -0.063684 -0.795119 0.279165 -0.936306 0.213070 -0.744501 -0.351187 -0.567791 0.606453 -0.000124 -0.795119 0.375759 -0.901890 0.213070 -0.703593 -0.427281 -0.567791 0.603126 0.063438 -0.795119 0.468214 -0.857541 0.213070 -0.654936 -0.498670 -0.567791 0.593156 0.126300 -0.795119 0.554708 -0.804301 0.213070 -0.599629 -0.563966 -0.567791 0.576840 0.187195 -0.795119 0.635949 -0.741734 0.213070 -0.537219 -0.623706 -0.567791 0.554043 0.246621 -0.795119 0.710186 -0.670997 0.213070 -0.468892 -0.676575 -0.567791 0.525144 0.303330 -0.795119 0.776600 -0.592869 0.213070 -0.395399 -0.721992 -0.567791 0.490461 0.356699 -0.795119 0.833951 -0.509045 0.213070 -0.318311 -0.759138 -0.567791 0.450781 0.405688 -0.795119 0.882710 -0.418837 0.213070 -0.236995 -0.788319 -0.567791 0.405779 0.450698 -0.795119 0.921745 -0.324016 0.213070 -0.153068 -0.808816 -0.567791 0.356308 0.490745 -0.795119 0.950402 -0.226577 0.213070 -0.068276 -0.820336 -0.567791 0.303437 0.525082 -0.795119 0.968915 -0.125720 0.213070 0.018077 -0.822974 -0.567791 0.246734 0.553993 -0.795119 0.976755 -0.023478 0.213070 0.104231 -0.816547 -0.567791 0.187313 0.576801 -0.795119 0.973836 0.079022 0.213070 0.189237 -0.801126 -0.567791 0.125828 0.593256 -0.795119 0.960371 0.179692 0.213070 0.271382 -0.777152 -0.567791 0.063561 0.603114 -0.795119 0.936249 0.279356 0.213070 0.351338 -0.744429 -0.567791 0.000000 0.606454 -0.795119 0.901814 0.375943 0.213070 0.427425 -0.703506 -0.567791 -0.063561 0.603114 -0.795119 0.857914 0.467531 0.213070 0.498148 -0.655333 -0.567791 -0.125828 0.593256 -0.795119 0.804188 0.554872 0.213070 0.564088 -0.599514 -0.567791 -0.187313 0.576801 -0.795119 0.741605 0.636100 0.213070 0.623815 -0.537092 -0.567791 -0.246734 0.553993 -0.795119 0.670852 0.710323 0.213070 0.676670 -0.468754 -0.567791 -0.303437 0.525082 -0.795119 0.593487 0.776128 0.213070 0.721677 -0.395974 -0.567791 -0.356308 0.490745 -0.795119 0.508875 0.834055 0.213070 0.759203 -0.318157 -0.567791 -0.405779 0.450698 -0.795119 0.418657 0.882795 0.213070 0.788367 -0.236834 -0.567791 -0.450781 0.405688 -0.795119 0.324750 0.921487 0.213070 0.808694 -0.153712 -0.567791 -0.490461 0.356699 -0.795119 0.226383 0.950448 0.213070 0.820350 -0.068109 -0.567791 -0.525144 0.303330 -0.795119 0.125522 0.968940 0.213070 0.822970 0.018245 -0.567791 -0.554043 0.246621 -0.795119 0.023279 0.976759 0.213070 0.816526 0.104398 -0.567791 -0.576840 0.187195 -0.795119 -0.078246 0.973899 0.213070 0.801276 0.188599 -0.567791 -0.593156 0.126300 -0.795119 -0.179887 0.960334 0.213070 0.777097 0.271540 -0.567791 -0.603126 0.063438 -0.795119 0.050555 0.810973 0.582895 -0.070419 0.585083 -0.807910 -0.996236 -0.000203 0.086687 -0.034719 0.811806 0.582895 -0.131353 0.574480 -0.807910 -0.990728 -0.104614 0.086687 -0.118807 0.803815 0.582895 -0.190281 0.557740 -0.807910 -0.974514 -0.206899 0.086687 -0.202398 0.786936 0.582895 -0.247688 0.534726 -0.807910 -0.947463 -0.307896 0.086687 -0.283760 0.761389 0.582895 -0.302367 0.505821 -0.807910 -0.909975 -0.405501 0.086687 -0.361269 0.727818 0.582895 -0.353244 0.471699 -0.807910 -0.862962 -0.497777 0.086687 -0.435559 0.685946 0.582895 -0.400736 0.432078 -0.807910 -0.806039 -0.585480 0.086687 -0.505053 0.636518 0.582895 -0.443814 0.387699 -0.807910 -0.740237 -0.666734 0.086687 -0.568983 0.580079 0.582895 -0.482003 0.339048 -0.807910 -0.666282 -0.740644 0.086687 -0.626128 0.517878 0.582895 -0.514596 0.287178 -0.807910 -0.585793 -0.805811 0.086687 -0.676957 0.449403 0.582895 -0.541861 0.231663 -0.807910 -0.498112 -0.862768 0.086687 -0.720329 0.375978 0.582895 -0.563156 0.173597 -0.807910 -0.404945 -0.910222 0.086687 -0.755469 0.299167 0.582895 -0.578135 0.114196 -0.807910 -0.308264 -0.947343 0.086687 -0.782663 0.218341 0.582895 -0.586920 0.052974 -0.807910 -0.207278 -0.974434 0.086687 -0.801236 0.135110 0.582895 -0.589239 -0.008831 -0.807910 -0.104009 -0.990791 0.086687 -0.810942 0.051051 0.582895 -0.585126 -0.070062 -0.807910 -0.000406 -0.996235 0.086687 -0.811827 -0.034223 0.582895 -0.574560 -0.131002 -0.807910 0.104009 -0.990791 0.086687 -0.803769 -0.119120 0.582895 -0.557666 -0.190498 -0.807910 0.207278 -0.974434 0.086687 -0.786857 -0.202704 0.582895 -0.534629 -0.247896 -0.807910 0.308264 -0.947343 0.086687 -0.761563 -0.283295 0.582895 -0.506006 -0.302058 -0.807910 0.404945 -0.910222 0.086687 -0.727677 -0.361552 0.582895 -0.471561 -0.353428 -0.807910 0.498112 -0.862768 0.086687 -0.685776 -0.435826 0.582895 -0.431922 -0.400904 -0.807910 0.585793 -0.805811 0.086687 -0.636827 -0.504664 0.582895 -0.387970 -0.443577 -0.807910 0.666282 -0.740644 0.086687 -0.580427 -0.568628 0.582895 -0.339343 -0.481796 -0.807910 0.740237 -0.666734 0.086687 -0.517634 -0.626330 0.582895 -0.286978 -0.514708 -0.807910 0.806039 -0.585480 0.086687 -0.449139 -0.677132 0.582895 -0.231453 -0.541951 -0.807910 0.862962 -0.497777 0.086687 -0.376418 -0.720100 0.582895 -0.173941 -0.563050 -0.807910 0.909975 -0.405501 0.086687 -0.298873 -0.755585 0.582895 -0.113971 -0.578179 -0.807910 0.947463 -0.307896 0.086687 -0.218036 -0.782748 0.582895 -0.052746 -0.586940 -0.807910 0.974514 -0.206899 0.086687 -0.135599 -0.801153 0.582895 0.008471 -0.589245 -0.807910 0.990728 -0.104614 0.086687 -0.050886 -0.810953 0.582895 0.070181 -0.585112 -0.807910 0.996236 -0.000203 0.086687 0.034388 -0.811820 0.582895 0.131119 -0.574534 -0.807910 0.990770 0.104211 0.086687 0.119283 -0.803744 0.582895 0.190612 -0.557627 -0.807910 0.974391 0.207477 0.086687 0.202078 -0.787019 0.582895 0.247470 -0.534826 -0.807910 0.947588 0.307510 0.086687 0.283450 -0.761505 0.582895 0.302161 -0.505944 -0.807910 0.910140 0.405130 0.086687 0.361700 -0.727604 0.582895 0.353524 -0.471489 -0.807910 0.862667 0.498288 0.086687 0.435966 -0.685688 0.582895 0.400992 -0.431841 -0.807910 0.805692 0.585958 0.086687 0.504793 -0.636724 0.582895 0.443656 -0.387879 -0.807910 0.740509 0.666433 0.086687 0.568747 -0.580311 0.582895 0.481865 -0.339245 -0.807910 0.666583 0.740373 0.086687 0.626435 -0.517506 0.582895 0.514767 -0.286873 -0.807910 0.585316 0.806158 0.086687 0.676774 -0.449678 0.582895 0.541766 -0.231884 -0.807910 0.498464 0.862565 0.086687 0.720176 -0.376271 0.582895 0.563086 -0.173826 -0.807910 0.405316 0.910057 0.086687 0.755646 -0.298719 0.582895 0.578203 -0.113853 -0.807910 0.307703 0.947525 0.086687 0.782792 -0.217877 0.582895 0.586951 -0.052627 -0.807910 0.206701 0.974556 0.086687 0.801181 -0.135436 0.582895 0.589243 0.008591 -0.807910 0.104413 0.990749 0.086687 0.810963 -0.050721 0.582895 0.585097 0.070300 -0.807910 0.000000 0.996236 0.086687 0.811813 0.034554 0.582895 0.574507 0.131236 -0.807910 -0.104413 0.990749 0.086687 0.803839 0.118643 0.582895 0.557779 0.190168 -0.807910 -0.206701 0.974556 0.086687 0.786977 0.202238 0.582895 0.534776 0.247579 -0.807910 -0.307703 0.947525 0.086687 0.761447 0.283605 0.582895 0.505883 0.302264 -0.807910 -0.405316 0.910057 0.086687 0.727530 0.361848 0.582895 0.471417 0.353620 -0.807910 -0.498464 0.862565 0.086687 0.686034 0.435420 0.582895 0.432160 0.400648 -0.807910 -0.585316 0.806158 0.086687 0.636621 0.504923 0.582895 0.387789 0.443735 -0.807910 -0.666583 0.740373 0.086687 0.580195 0.568865 0.582895 0.339147 0.481934 -0.807910 -0.740509 0.666433 0.086687 0.518005 0.626023 0.582895 0.287283 0.514538 -0.807910 -0.805692 0.585958 0.086687 0.449541 0.676866 0.582895 0.231774 0.541813 -0.807910 -0.862667 0.498288 0.086687 0.376124 0.720253 0.582895 0.173711 0.563121 -0.807910 -0.910140 0.405130 0.086687 0.298565 0.755707 0.582895 0.113736 0.578226 -0.807910 -0.947588 0.307510 0.086687 0.218500 0.782618 0.582895 0.053094 0.586909 -0.807910 -0.974391 0.207477 0.086687 0.135273 0.801208 0.582895 -0.008711 0.589241 -0.807910 -0.990770 0.104211 0.086687 -0.407760 -0.059252 -0.911165 0.024373 -0.998243 0.054007 -0.912764 -0.000186 0.408487 -0.399304 -0.101662 -0.911165 0.128862 -0.990191 0.054007 -0.907717 -0.095849 0.408487 -0.386593 -0.142565 -0.911165 0.230960 -0.971463 0.054007 -0.892863 -0.189564 0.408487 -0.369522 -0.182298 -0.911165 0.331504 -0.941907 0.054007 -0.868078 -0.282098 0.408487 -0.348380 -0.220022 -0.911165 0.428397 -0.901975 0.054007 -0.833731 -0.371525 0.408487 -0.323657 -0.255000 -0.911165 0.519719 -0.852629 0.054007 -0.790657 -0.456070 0.408487 -0.295149 -0.287517 -0.911165 0.606218 -0.793463 0.054007 -0.738503 -0.536424 0.408487 -0.263389 -0.316867 -0.911165 0.686040 -0.725557 0.054007 -0.678215 -0.610870 0.408487 -0.228729 -0.342727 -0.911165 0.758305 -0.649659 0.054007 -0.610456 -0.678588 0.408487 -0.191913 -0.364620 -0.911165 0.821651 -0.567427 0.054007 -0.536712 -0.738294 0.408487 -0.152642 -0.382726 -0.911165 0.876596 -0.478187 0.054007 -0.456377 -0.790480 0.408487 -0.111688 -0.396616 -0.911165 0.921886 -0.383680 0.054007 -0.371016 -0.833958 0.408487 -0.069911 -0.406068 -0.911165 0.956735 -0.285903 0.054007 -0.282436 -0.867968 0.408487 -0.026967 -0.411159 -0.911165 0.981431 -0.184056 0.054007 -0.189911 -0.892789 0.408487 0.016274 -0.411721 -0.911165 0.995316 -0.080181 0.054007 -0.095294 -0.907776 0.408487 0.059003 -0.407796 -0.911165 0.998258 0.023763 0.054007 -0.000372 -0.912764 0.408487 0.101418 -0.399366 -0.911165 0.990269 0.128257 0.054007 0.095294 -0.907776 0.408487 0.142716 -0.386537 -0.911165 0.971373 0.231338 0.054007 0.189911 -0.892789 0.408487 0.182442 -0.369451 -0.911165 0.941778 0.331871 0.054007 0.282436 -0.867968 0.408487 0.219810 -0.348515 -0.911165 0.902237 0.427846 0.054007 0.371016 -0.833958 0.408487 0.255126 -0.323558 -0.911165 0.852426 0.520050 0.054007 0.456377 -0.790480 0.408487 0.287632 -0.295037 -0.911165 0.793227 0.606527 0.054007 0.536712 -0.738294 0.408487 0.316706 -0.263583 -0.911165 0.725976 0.685597 0.054007 0.610456 -0.678588 0.408487 0.342588 -0.228938 -0.911165 0.650122 0.757908 0.054007 0.678215 -0.610870 0.408487 0.364695 -0.191772 -0.911165 0.567107 0.821871 0.054007 0.738503 -0.536424 0.408487 0.382786 -0.152493 -0.911165 0.477846 0.876782 0.054007 0.790657 -0.456070 0.408487 0.396548 -0.111931 -0.911165 0.384243 0.921651 0.054007 0.833731 -0.371525 0.408487 0.406095 -0.069753 -0.911165 0.285531 0.956846 0.054007 0.868078 -0.282098 0.408487 0.411169 -0.026807 -0.911165 0.183674 0.981502 0.054007 0.892863 -0.189564 0.408487 0.411731 0.016022 -0.911165 0.080790 0.995267 0.054007 0.907717 -0.095849 0.408487 0.407784 0.059086 -0.911165 -0.023967 0.998253 0.054007 0.912764 -0.000186 0.408487 0.399345 0.101499 -0.911165 -0.128459 0.990243 0.054007 0.907756 0.095479 0.408487 0.386508 0.142795 -0.911165 -0.231536 0.971326 0.054007 0.892750 0.190093 0.408487 0.369596 0.182147 -0.911165 -0.331121 0.942042 0.054007 0.868192 0.281745 0.408487 0.348470 0.219881 -0.911165 -0.428030 0.902149 0.054007 0.833882 0.371186 0.408487 0.323506 0.255192 -0.911165 -0.520224 0.852320 0.054007 0.790387 0.456538 0.408487 0.294978 0.287692 -0.911165 -0.606688 0.793103 0.054007 0.738185 0.536862 0.408487 0.263518 0.316760 -0.911165 -0.685744 0.725836 0.054007 0.678464 0.610594 0.408487 0.228868 0.342634 -0.911165 -0.758040 0.649968 0.054007 0.610732 0.678339 0.408487 0.191697 0.364734 -0.911165 -0.821987 0.566940 0.054007 0.536274 0.738612 0.408487 0.152798 0.382664 -0.911165 -0.876401 0.478544 0.054007 0.456699 0.790294 0.408487 0.111850 0.396571 -0.911165 -0.921729 0.384055 0.054007 0.371355 0.833806 0.408487 0.069671 0.406109 -0.911165 -0.956905 0.285336 0.054007 0.281921 0.868135 0.408487 0.026724 0.411175 -0.911165 -0.981540 0.183474 0.054007 0.189382 0.892901 0.408487 -0.016106 0.411727 -0.911165 -0.995283 0.080587 0.054007 0.095664 0.907737 0.408487 -0.059169 0.407772 -0.911165 -0.998248 -0.024170 0.054007 0.000000 0.912764 0.408487 -0.101581 0.399325 -0.911165 -0.990217 -0.128660 0.054007 -0.095664 0.907737 0.408487 -0.142487 0.386622 -0.911165 -0.971510 -0.230762 0.054007 -0.189382 0.892901 0.408487 -0.182223 0.369559 -0.911165 -0.941974 -0.331312 0.054007 -0.281921 0.868135 0.408487 -0.219952 0.348425 -0.911165 -0.902062 -0.428213 0.054007 -0.371355 0.833806 0.408487 -0.255258 0.323454 -0.911165 -0.852214 -0.520398 0.054007 -0.456699 0.790294 0.408487 -0.287457 0.295207 -0.911165 -0.793586 -0.606057 0.054007 -0.536274 0.738612 0.408487 -0.316814 0.263454 -0.911165 -0.725696 -0.685892 0.054007 -0.610732 0.678339 0.408487 -0.342681 0.228798 -0.911165 -0.649813 -0.758173 0.054007 -0.678464 0.610594 0.408487 -0.364581 0.191988 -0.911165 -0.567594 -0.821535 0.054007 -0.738185 0.536862 0.408487 -0.382695 0.152720 -0.911165 -0.478365 -0.876499 0.054007 -0.790387 0.456538 0.408487 -0.396594 0.111769 -0.911165 -0.383868 -0.921807 0.054007 -0.833882 0.371186 0.408487 -0.406124 0.069588 -0.911165 -0.285141 -0.956963 0.054007 -0.868192 0.281745 0.408487 -0.411153 0.027051 -0.911165 -0.184256 -0.981393 0.054007 -0.892750 0.190093 0.408487 -0.411724 -0.016190 -0.911165 -0.080384 -0.995300 0.054007 -0.907756 0.095479 0.408487 0.550794 -0.553923 0.624336 0.366316 0.832568 0.415504 -0.749959 -0.000153 0.661484 0.605816 -0.493145 0.624336 0.277040 0.866375 0.415504 -0.745813 -0.078753 0.661484 0.653737 -0.427589 0.624336 0.185602 0.890454 0.415504 -0.733607 -0.155752 0.661484 0.694951 -0.356718 0.624336 0.091254 0.905002 0.415504 -0.713243 -0.231782 0.661484 0.728510 -0.281918 0.624336 -0.004099 0.909582 0.415504 -0.685023 -0.305258 0.661484 0.753841 -0.204766 0.624336 -0.098504 0.904242 0.415504 -0.649632 -0.374723 0.661484 0.771150 -0.124630 0.624336 -0.192732 0.888938 0.415504 -0.606780 -0.440745 0.661484 0.779965 -0.043122 0.624336 -0.284838 0.863843 0.415504 -0.557245 -0.501913 0.661484 0.780189 0.038862 0.624336 -0.373806 0.829232 0.415504 -0.501572 -0.557552 0.661484 0.771939 0.119645 0.624336 -0.457871 0.785946 0.415504 -0.440981 -0.606609 0.661484 0.755148 0.199891 0.624336 -0.537722 0.733629 0.415504 -0.374975 -0.649486 0.661484 0.730039 0.277935 0.624336 -0.611650 0.673232 0.415504 -0.304840 -0.685209 0.661484 0.697241 0.352220 0.624336 -0.678235 0.606097 0.415504 -0.232059 -0.713153 0.661484 0.656486 0.423357 0.624336 -0.738023 0.531675 0.415504 -0.156038 -0.733547 0.661484 0.608500 0.489829 0.624336 -0.789682 0.451397 0.415504 -0.078297 -0.745861 0.661484 0.554260 0.550456 0.624336 -0.832344 0.366825 0.415504 -0.000305 -0.749959 0.661484 0.493515 0.605514 0.624336 -0.866206 0.277569 0.415504 0.078297 -0.745861 0.661484 0.427335 0.653903 0.624336 -0.890526 0.185256 0.415504 0.156038 -0.733547 0.661484 0.356448 0.695090 0.624336 -0.905038 0.090902 0.415504 0.232059 -0.713153 0.661484 0.282363 0.728338 0.624336 -0.909585 -0.003544 0.415504 0.304840 -0.685209 0.661484 0.204473 0.753920 0.624336 -0.904204 -0.098855 0.415504 0.374975 -0.649486 0.661484 0.124330 0.771198 0.624336 -0.888863 -0.193078 0.415504 0.440981 -0.606609 0.661484 0.043598 0.779939 0.624336 -0.864017 -0.284310 0.415504 0.501572 -0.557552 0.661484 -0.038385 0.780212 0.624336 -0.829460 -0.373299 0.415504 0.557245 -0.501913 0.661484 -0.119945 0.771892 0.624336 -0.785768 -0.458177 0.415504 0.606780 -0.440745 0.661484 -0.200185 0.755070 0.624336 -0.733420 -0.538007 0.415504 0.649632 -0.374723 0.661484 -0.277489 0.730209 0.624336 -0.673605 -0.611239 0.415504 0.685023 -0.305258 0.661484 -0.352492 0.697104 0.624336 -0.605833 -0.678471 0.415504 0.713243 -0.231782 0.661484 -0.423612 0.656321 0.624336 -0.531388 -0.738230 0.415504 0.733607 -0.155752 0.661484 -0.489458 0.608799 0.624336 -0.451879 -0.789406 0.415504 0.745813 -0.078753 0.661484 -0.550568 0.554147 0.624336 -0.366655 -0.832419 0.415504 0.749959 -0.000153 0.661484 -0.605615 0.493392 0.624336 -0.277392 -0.866262 0.415504 0.745845 0.078449 0.661484 -0.653990 0.427202 0.624336 -0.185074 -0.890564 0.415504 0.733515 0.156187 0.661484 -0.694806 0.357001 0.624336 -0.091622 -0.904965 0.415504 0.713337 0.231491 0.661484 -0.728395 0.282214 0.624336 0.003729 -0.909584 0.415504 0.685147 0.304979 0.661484 -0.753962 0.204319 0.624336 0.099039 -0.904184 0.415504 0.649409 0.375108 0.661484 -0.771224 0.124173 0.624336 0.193259 -0.888824 0.415504 0.606519 0.441105 0.661484 -0.779947 0.043439 0.624336 0.284486 -0.863959 0.415504 0.557450 0.501686 0.661484 -0.780205 -0.038544 0.624336 0.373468 -0.829384 0.415504 0.501799 0.557347 0.661484 -0.771868 -0.120103 0.624336 0.458337 -0.785674 0.415504 0.440622 0.606870 0.661484 -0.755229 -0.199583 0.624336 0.537423 -0.733848 0.415504 0.375240 0.649333 0.661484 -0.730152 -0.277638 0.624336 0.611376 -0.673481 0.415504 0.305119 0.685085 0.661484 -0.697033 -0.352634 0.624336 0.678594 -0.605695 0.415504 0.231636 0.713290 0.661484 -0.656235 -0.423746 0.624336 0.738338 -0.531238 0.415504 0.155603 0.733639 0.661484 -0.608699 -0.489582 0.624336 0.789498 -0.451719 0.415504 0.078601 0.745829 0.661484 -0.554035 -0.550681 0.624336 0.832493 -0.366486 0.415504 0.000000 0.749959 0.661484 -0.493269 -0.605715 0.624336 0.866319 -0.277216 0.415504 -0.078601 0.745829 0.661484 -0.427723 -0.653650 0.624336 0.890416 -0.185783 0.415504 -0.155603 0.733639 0.661484 -0.356860 -0.694878 0.624336 0.904984 -0.091438 0.415504 -0.231636 0.713290 0.661484 -0.282066 -0.728453 0.624336 0.909583 0.003914 0.415504 -0.305119 0.685085 0.661484 -0.204165 -0.754004 0.624336 0.904163 0.099223 0.415504 -0.375240 0.649333 0.661484 -0.124787 -0.771125 0.624336 0.888977 0.192551 0.415504 -0.440622 0.606870 0.661484 -0.043281 -0.779956 0.624336 0.863901 0.284662 0.415504 -0.501799 0.557347 0.661484 0.038703 -0.780197 0.624336 0.829308 0.373637 0.415504 -0.557450 0.501686 0.661484 0.119488 -0.771963 0.624336 0.786039 0.457711 0.415504 -0.606519 0.441105 0.661484 0.199737 -0.755189 0.624336 0.733739 0.537573 0.415504 -0.649409 0.375108 0.661484 0.277786 -0.730096 0.624336 0.673356 0.611513 0.415504 -0.685147 0.304979 0.661484 0.352776 -0.696961 0.624336 0.605557 0.678718 0.415504 -0.713337 0.231491 0.661484 0.423223 -0.656572 0.624336 0.531826 0.737915 0.415504 -0.733515 0.156187 0.661484 0.489706 -0.608600 0.624336 0.451558 0.789590 0.415504 -0.745845 0.078449 0.661484 0.295336 0.380985 -0.876143 0.121894 -0.924581 -0.360959 -0.947586 -0.000193 -0.319502 0.253779 0.409840 -0.876143 0.218126 -0.906714 -0.360959 -0.942347 -0.099506 -0.319502 0.209861 0.433971 -0.876143 0.311076 -0.879170 -0.360959 -0.926925 -0.196796 -0.319502 0.163222 0.453576 -0.876143 0.401506 -0.841725 -0.360959 -0.901195 -0.292860 -0.319502 0.114785 0.468185 -0.876143 0.487513 -0.795009 -0.360959 -0.865537 -0.385699 -0.319502 0.065562 0.477571 -0.876143 0.567411 -0.740103 -0.360959 -0.820820 -0.473469 -0.319502 0.015148 0.481813 -0.876143 0.641854 -0.676559 -0.360959 -0.766677 -0.556889 -0.319502 -0.035433 0.480747 -0.876143 0.709228 -0.605562 -0.360959 -0.704089 -0.634175 -0.319502 -0.085624 0.474385 -0.876143 0.768789 -0.527894 -0.360959 -0.633745 -0.704476 -0.319502 -0.134408 0.462933 -0.876143 0.819437 -0.445232 -0.360959 -0.557187 -0.766460 -0.319502 -0.182187 0.446297 -0.876143 0.861588 -0.356897 -0.360959 -0.473788 -0.820636 -0.319502 -0.227958 0.424744 -0.876143 0.894248 -0.264631 -0.360959 -0.385170 -0.865773 -0.319502 -0.270820 0.398784 -0.876143 0.916888 -0.170367 -0.360959 -0.293211 -0.901080 -0.319502 -0.311124 0.368204 -0.876143 0.929694 -0.073332 -0.360959 -0.197156 -0.926848 -0.319502 -0.348001 0.333568 -0.876143 0.932260 0.024510 -0.360959 -0.098930 -0.942407 -0.319502 -0.380805 0.295568 -0.876143 0.924655 0.121330 -0.360959 -0.000386 -0.947586 -0.319502 -0.409685 0.254030 -0.876143 0.906847 0.217572 -0.360959 0.098930 -0.942407 -0.319502 -0.434053 0.209693 -0.876143 0.879049 0.311418 -0.360959 0.197156 -0.926848 -0.319502 -0.453640 0.163046 -0.876143 0.841569 0.401833 -0.360959 0.293211 -0.901080 -0.319502 -0.468115 0.115071 -0.876143 0.795307 0.487027 -0.360959 0.385170 -0.865773 -0.319502 -0.477597 0.065376 -0.876143 0.739883 0.567699 -0.360959 0.473788 -0.820636 -0.319502 -0.481818 0.014960 -0.876143 0.676309 0.642118 -0.360959 0.557187 -0.766460 -0.319502 -0.480768 -0.035139 -0.876143 0.605995 0.708858 -0.360959 0.633745 -0.704476 -0.319502 -0.474437 -0.085334 -0.876143 0.528364 0.768466 -0.360959 0.704089 -0.634175 -0.319502 -0.462881 -0.134588 -0.876143 0.444913 0.819610 -0.360959 0.766677 -0.556889 -0.319502 -0.446226 -0.182360 -0.876143 0.356562 0.861726 -0.360959 0.820820 -0.473469 -0.319502 -0.424884 -0.227699 -0.876143 0.265177 0.894086 -0.360959 0.865537 -0.385699 -0.319502 -0.398679 -0.270976 -0.876143 0.170010 0.916954 -0.360959 0.901195 -0.292860 -0.319502 -0.368083 -0.311268 -0.876143 0.072970 0.929722 -0.360959 0.926925 -0.196796 -0.319502 -0.333781 -0.347798 -0.876143 -0.023941 0.932274 -0.360959 0.942347 -0.099506 -0.319502 -0.295491 -0.380865 -0.876143 -0.121518 0.924631 -0.360959 0.947586 -0.000193 -0.319502 -0.253946 -0.409737 -0.876143 -0.217757 0.906802 -0.360959 0.942387 0.099122 -0.319502 -0.209604 -0.434095 -0.876143 -0.311597 0.878986 -0.360959 0.926808 0.197345 -0.319502 -0.163407 -0.453510 -0.876143 -0.401163 0.841889 -0.360959 0.901314 0.292493 -0.319502 -0.114976 -0.468138 -0.876143 -0.487190 0.795208 -0.360959 0.865694 0.385346 -0.319502 -0.065279 -0.477610 -0.876143 -0.567850 0.739767 -0.360959 0.820540 0.473955 -0.319502 -0.014862 -0.481821 -0.876143 -0.642255 0.676178 -0.360959 0.766347 0.557343 -0.319502 0.035237 -0.480761 -0.876143 -0.708981 0.605850 -0.360959 0.704347 0.633888 -0.319502 0.085430 -0.474420 -0.876143 -0.768574 0.528207 -0.360959 0.634032 0.704218 -0.319502 0.134683 -0.462854 -0.876143 -0.819701 0.444746 -0.360959 0.556733 0.766790 -0.319502 0.182005 -0.446371 -0.876143 -0.861442 0.357248 -0.360959 0.474122 0.820443 -0.319502 0.227785 -0.424837 -0.876143 -0.894140 0.264995 -0.360959 0.385523 0.865616 -0.319502 0.271057 -0.398624 -0.876143 -0.916989 0.169823 -0.360959 0.292677 0.901254 -0.319502 0.311343 -0.368020 -0.876143 -0.929737 0.072781 -0.360959 0.196607 0.926965 -0.319502 0.347866 -0.333710 -0.876143 -0.932269 -0.024131 -0.360959 0.099314 0.942367 -0.319502 0.380925 -0.295413 -0.876143 -0.924606 -0.121706 -0.360959 0.000000 0.947586 -0.319502 0.409788 -0.253863 -0.876143 -0.906758 -0.217941 -0.360959 -0.099314 0.942367 -0.319502 0.433928 -0.209950 -0.876143 -0.879234 -0.310897 -0.360959 -0.196607 0.926965 -0.319502 0.453543 -0.163315 -0.876143 -0.841807 -0.401334 -0.360959 -0.292677 0.901254 -0.319502 0.468161 -0.114881 -0.876143 -0.795108 -0.487351 -0.360959 -0.385523 0.865616 -0.319502 0.477623 -0.065181 -0.876143 -0.739651 -0.568000 -0.360959 -0.474122 0.820443 -0.319502 0.481809 -0.015246 -0.876143 -0.676689 -0.641717 -0.360959 -0.556733 0.766790 -0.319502 0.480754 0.035335 -0.876143 -0.605706 -0.709104 -0.360959 -0.634032 0.704218 -0.319502 0.474403 0.085527 -0.876143 -0.528051 -0.768681 -0.360959 -0.704347 0.633888 -0.319502 0.462961 0.134314 -0.876143 -0.445399 -0.819346 -0.360959 -0.766347 0.557343 -0.319502 0.446334 0.182096 -0.876143 -0.357073 -0.861515 -0.360959 -0.820540 0.473955 -0.319502 0.424791 0.227872 -0.876143 -0.264813 -0.894194 -0.360959 -0.865694 0.385346 -0.319502 0.398569 0.271138 -0.876143 -0.169637 -0.917023 -0.360959 -0.901314 0.292493 -0.319502 0.368268 0.311049 -0.876143 -0.073522 -0.929679 -0.360959 -0.926808 0.197345 -0.319502 0.333639 0.347933 -0.876143 0.024320 -0.932265 -0.360959 -0.942387 0.099122 -0.319502 0.278541 0.793105 -0.541664 0.362959 -0.609085 -0.705178 -0.889200 -0.000181 -0.457520 0.193884 0.817930 -0.541664 0.424797 -0.567690 -0.705178 -0.884283 -0.093375 -0.457520 0.107925 0.833638 -0.541664 0.481435 -0.520524 -0.705178 -0.869812 -0.184670 -0.457520 0.019959 0.840358 -0.541664 0.533338 -0.467199 -0.705178 -0.845667 -0.274815 -0.457520 -0.068226 0.837822 -0.541664 0.579366 -0.408728 -0.705178 -0.812207 -0.361934 -0.457520 -0.154834 0.826212 -0.541664 0.618667 -0.346374 -0.705178 -0.770245 -0.444296 -0.457520 -0.240574 0.805434 -0.541664 0.651562 -0.279626 -0.705178 -0.719438 -0.522576 -0.457520 -0.323665 0.775784 -0.541664 0.677281 -0.209798 -0.705178 -0.660706 -0.595100 -0.457520 -0.403190 0.737589 -0.541664 0.695539 -0.137658 -0.705178 -0.594696 -0.661069 -0.457520 -0.477583 0.691748 -0.541664 0.706071 -0.064709 -0.705178 -0.522856 -0.719234 -0.457520 -0.547452 0.637884 -0.541664 0.708965 0.009649 -0.705178 -0.444595 -0.770072 -0.457520 -0.611292 0.576994 -0.541664 0.704049 0.083901 -0.705178 -0.361437 -0.812428 -0.457520 -0.667888 0.510416 -0.541664 0.691535 0.156536 -0.705178 -0.275144 -0.845560 -0.457520 -0.717705 0.437606 -0.541664 0.671320 0.228152 -0.705178 -0.185008 -0.869740 -0.457520 -0.759617 0.359975 -0.541664 0.643711 0.297255 -0.705178 -0.092834 -0.884340 -0.457520 -0.792934 0.279025 -0.541664 0.609307 0.362587 -0.705178 -0.000362 -0.889199 -0.457520 -0.817811 0.194383 -0.541664 0.567950 0.424450 -0.705178 0.092834 -0.884340 -0.457520 -0.833680 0.107600 -0.541664 0.520336 0.481637 -0.705178 0.185008 -0.869740 -0.457520 -0.840366 0.019632 -0.541664 0.466991 0.533520 -0.705178 0.275144 -0.845560 -0.457520 -0.837863 -0.067714 -0.541664 0.409082 0.579116 -0.705178 0.361437 -0.812428 -0.457520 -0.826152 -0.155156 -0.541664 0.346134 0.618802 -0.705178 0.444595 -0.770072 -0.457520 -0.805340 -0.240888 -0.541664 0.279373 0.651671 -0.705178 0.522856 -0.719234 -0.457520 -0.775982 -0.323191 -0.541664 0.210211 0.677152 -0.705178 0.594696 -0.661069 -0.457520 -0.737835 -0.402739 -0.541664 0.138083 0.695455 -0.705178 0.660706 -0.595100 -0.457520 -0.691562 -0.477852 -0.541664 0.064434 0.706097 -0.705178 0.719438 -0.522576 -0.457520 -0.637671 -0.547700 -0.541664 -0.009925 0.708961 -0.705178 0.770245 -0.444296 -0.457520 -0.577367 -0.610940 -0.541664 -0.083470 0.704100 -0.705178 0.812207 -0.361934 -0.457520 -0.510157 -0.668087 -0.541664 -0.156805 0.691474 -0.705178 0.845667 -0.274815 -0.457520 -0.437327 -0.717876 -0.541664 -0.228413 0.671231 -0.705178 0.869812 -0.184670 -0.457520 -0.360439 -0.759397 -0.541664 -0.296861 0.643892 -0.705178 0.884283 -0.093375 -0.457520 -0.278864 -0.792991 -0.541664 -0.362711 0.609233 -0.705178 0.889200 -0.000181 -0.457520 -0.194217 -0.817851 -0.541664 -0.424565 0.567863 -0.705178 0.884321 0.093014 -0.457520 -0.107430 -0.833702 -0.541664 -0.481743 0.520238 -0.705178 0.869702 0.185185 -0.457520 -0.020301 -0.840350 -0.541664 -0.533148 0.467416 -0.705178 0.845779 0.274471 -0.457520 0.067885 -0.837849 -0.541664 -0.579200 0.408964 -0.705178 0.812354 0.361603 -0.457520 0.155324 -0.826120 -0.541664 -0.618872 0.346008 -0.705178 0.769982 0.444752 -0.457520 0.241052 -0.805291 -0.541664 -0.651728 0.279240 -0.705178 0.719128 0.523002 -0.457520 0.323349 -0.775916 -0.541664 -0.677195 0.210073 -0.705178 0.660948 0.594831 -0.457520 0.402890 -0.737753 -0.541664 -0.695483 0.137942 -0.705178 0.594965 0.660827 -0.457520 0.477992 -0.691465 -0.541664 -0.706110 0.064290 -0.705178 0.522429 0.719544 -0.457520 0.547193 -0.638107 -0.541664 -0.708969 -0.009360 -0.705178 0.444909 0.769891 -0.457520 0.611057 -0.577243 -0.541664 -0.704083 -0.083614 -0.705178 0.361768 0.812280 -0.457520 0.668191 -0.510020 -0.541664 -0.691442 -0.156946 -0.705178 0.274643 0.845723 -0.457520 0.717965 -0.437180 -0.541664 -0.671185 -0.228550 -0.705178 0.184493 0.869850 -0.457520 0.759470 -0.360284 -0.541664 -0.643832 -0.296992 -0.705178 0.093194 0.884302 -0.457520 0.793048 -0.278702 -0.541664 -0.609159 -0.362835 -0.705178 0.000000 0.889200 -0.457520 0.817890 -0.194050 -0.541664 -0.567777 -0.424681 -0.705178 -0.093194 0.884302 -0.457520 0.833616 -0.108094 -0.541664 -0.520622 -0.481329 -0.705178 -0.184493 0.869850 -0.457520 0.840354 -0.020130 -0.541664 -0.467308 -0.533243 -0.705178 -0.274643 0.845723 -0.457520 0.837836 0.068056 -0.541664 -0.408846 -0.579283 -0.705178 -0.361768 0.812280 -0.457520 0.826088 0.155492 -0.541664 -0.345882 -0.618943 -0.705178 -0.444909 0.769891 -0.457520 0.805483 0.240410 -0.541664 -0.279759 -0.651505 -0.705178 -0.522429 0.719544 -0.457520 0.775850 0.323507 -0.541664 -0.209935 -0.677238 -0.705178 -0.594965 0.660827 -0.457520 0.737671 0.403040 -0.541664 -0.137800 -0.695511 -0.705178 -0.660948 0.594831 -0.457520 0.691845 0.477442 -0.541664 -0.064853 -0.706058 -0.705178 -0.719128 0.523002 -0.457520 0.637995 0.547323 -0.541664 0.009505 -0.708967 -0.705178 -0.769982 0.444752 -0.457520 0.577118 0.611175 -0.541664 0.083757 -0.704066 -0.705178 -0.812354 0.361603 -0.457520 0.509884 0.668295 -0.541664 0.157087 -0.691410 -0.705178 -0.845779 0.274471 -0.457520 0.437752 0.717616 -0.541664 0.228015 -0.671367 -0.705178 -0.869702 0.185185 -0.457520 0.360130 0.759544 -0.541664 0.297124 -0.643772 -0.705178 -0.884321 0.093014 -0.457520 0.391299 -0.832198 -0.392850 -0.587103 -0.554479 0.589799 -0.708657 -0.000144 -0.705553 0.476365 -0.786604 -0.392850 -0.525757 -0.612958 0.589799 -0.704739 -0.074416 -0.705553 0.555450 -0.732901 -0.392850 -0.459283 -0.664226 0.589799 -0.693206 -0.147175 -0.705553 0.629204 -0.670649 -0.392850 -0.387138 -0.708704 0.589799 -0.673963 -0.219017 -0.705553 0.696028 -0.601011 -0.392850 -0.310729 -0.745376 0.589799 -0.647297 -0.288447 -0.705553 0.754660 -0.525507 -0.392850 -0.231670 -0.773606 0.589799 -0.613855 -0.354086 -0.705553 0.805580 -0.443519 -0.392850 -0.149315 -0.793626 0.589799 -0.573363 -0.416472 -0.705553 0.847628 -0.356646 -0.392850 -0.065315 -0.804904 0.589799 -0.526556 -0.474271 -0.705553 0.880338 -0.265844 -0.392850 0.019404 -0.807317 0.589799 -0.473949 -0.526846 -0.705553 0.903180 -0.173017 -0.392850 0.103109 -0.800940 0.589799 -0.416695 -0.573201 -0.705553 0.916339 -0.077405 -0.392850 0.186486 -0.785723 0.589799 -0.354325 -0.613717 -0.705553 0.919405 0.019061 -0.392850 0.267808 -0.761850 0.589799 -0.288051 -0.647473 -0.705553 0.912458 0.114403 -0.392850 0.345451 -0.729932 0.589799 -0.219279 -0.673878 -0.705553 0.895443 0.209405 -0.392850 0.420050 -0.689706 0.589799 -0.147444 -0.693148 -0.705553 0.868564 0.302101 -0.392850 0.490023 -0.641883 0.589799 -0.073985 -0.704784 -0.705553 0.832437 0.390791 -0.392850 0.554120 -0.587442 0.589799 -0.000289 -0.708657 -0.705553 0.786895 0.475884 -0.392850 0.612636 -0.526131 0.589799 0.073985 -0.704784 -0.705553 0.732685 0.555735 -0.392850 0.664405 -0.459025 0.589799 0.147444 -0.693148 -0.705553 0.670404 0.629465 -0.392850 0.708854 -0.386862 0.589799 0.219279 -0.673878 -0.705553 0.601436 0.695661 -0.392850 0.745186 -0.311184 0.589799 0.288051 -0.647473 -0.705553 0.525213 0.754864 -0.392850 0.773696 -0.231369 0.589799 0.354325 -0.613717 -0.705553 0.443205 0.805753 -0.392850 0.793684 -0.149006 0.589799 0.416695 -0.573201 -0.705553 0.357163 0.847410 -0.392850 0.804864 -0.065807 0.589799 0.473949 -0.526846 -0.705553 0.266382 0.880176 -0.392850 0.807329 0.018911 0.589799 0.526556 -0.474271 -0.705553 0.172666 0.903247 -0.392850 0.800900 0.103421 0.589799 0.573363 -0.416472 -0.705553 0.077048 0.916369 -0.392850 0.785650 0.186791 0.589799 0.613855 -0.354086 -0.705553 -0.018499 0.919416 -0.392850 0.762014 0.267343 0.589799 0.647297 -0.288447 -0.705553 -0.114758 0.912414 -0.392850 0.729798 0.345735 0.589799 0.673963 -0.219017 -0.705553 -0.209754 0.895361 -0.392850 0.689543 0.420319 0.589799 0.693206 -0.147175 -0.705553 -0.301570 0.868749 -0.392850 0.642183 0.489631 0.589799 0.704739 -0.074416 -0.705553 -0.390960 0.832357 -0.392850 0.587329 0.554240 0.589799 0.708657 -0.000144 -0.705553 -0.476044 0.786798 -0.392850 0.526006 0.612743 0.589799 0.704769 0.074129 -0.705553 -0.555885 0.732571 -0.392850 0.458889 0.664498 0.589799 0.693118 0.147585 -0.705553 -0.628931 0.670905 -0.392850 0.387427 0.708546 0.589799 0.674052 0.218742 -0.705553 -0.695783 0.601294 -0.392850 0.311032 0.745249 0.589799 0.647414 0.288183 -0.705553 -0.754971 0.525059 -0.392850 0.231212 0.773743 0.589799 0.613645 0.354450 -0.705553 -0.805843 0.443041 -0.392850 0.148845 0.793714 0.589799 0.573116 0.416812 -0.705553 -0.847482 0.356991 -0.392850 0.065643 0.804878 0.589799 0.526749 0.474056 -0.705553 -0.880230 0.266202 -0.392850 -0.019076 0.807325 0.589799 0.474164 0.526653 -0.705553 -0.903282 0.172482 -0.392850 -0.103584 0.800879 0.589799 0.416355 0.573448 -0.705553 -0.916307 0.077778 -0.392850 -0.186166 0.785799 0.589799 0.354575 0.613573 -0.705553 -0.919413 -0.018686 -0.392850 -0.267498 0.761959 0.589799 0.288315 0.647355 -0.705553 -0.912391 -0.114944 -0.392850 -0.345883 0.729727 0.589799 0.218880 0.674007 -0.705553 -0.895319 -0.209936 -0.392850 -0.420459 0.689457 0.589799 0.147033 0.693236 -0.705553 -0.868687 -0.301747 -0.392850 -0.489762 0.642083 0.589799 0.074272 0.704754 -0.705553 -0.832278 -0.391130 -0.392850 -0.554359 0.587216 0.589799 0.000000 0.708657 -0.705553 -0.786701 -0.476205 -0.392850 -0.612850 0.525881 0.589799 -0.074272 0.704754 -0.705553 -0.733014 -0.555301 -0.392850 -0.664132 0.459418 0.589799 -0.147033 0.693236 -0.705553 -0.670777 -0.629068 -0.392850 -0.708625 0.387282 0.589799 -0.218880 0.674007 -0.705553 -0.601152 -0.695906 -0.392850 -0.745312 0.310880 0.589799 -0.288315 0.647355 -0.705553 -0.524906 -0.755078 -0.392850 -0.773790 0.231054 0.589799 -0.354575 0.613573 -0.705553 -0.443683 -0.805490 -0.392850 -0.793595 0.149477 0.589799 -0.416355 0.573448 -0.705553 -0.356818 -0.847555 -0.392850 -0.804891 0.065479 0.589799 -0.474164 0.526653 -0.705553 -0.266023 -0.880284 -0.392850 -0.807321 -0.019240 0.589799 -0.526749 0.474056 -0.705553 -0.173201 -0.903144 -0.392850 -0.800961 -0.102946 0.589799 -0.573116 0.416812 -0.705553 -0.077591 -0.916323 -0.392850 -0.785761 -0.186326 0.589799 -0.613645 0.354450 -0.705553 0.018873 -0.919409 -0.392850 -0.761905 -0.267653 0.589799 -0.647414 0.288183 -0.705553 0.115130 -0.912367 -0.392850 -0.729657 -0.346032 0.589799 -0.674052 0.218742 -0.705553 0.209223 -0.895486 -0.392850 -0.689792 -0.419910 0.589799 -0.693118 0.147585 -0.705553 0.301924 -0.868626 -0.392850 -0.641983 -0.489892 0.589799 -0.704769 0.074129 -0.705553 0.210649 -0.294716 -0.932078 -0.064764 -0.955585 0.287512 -0.975414 -0.000199 -0.220380 0.240377 -0.271016 -0.932078 0.035744 -0.957110 0.287512 -0.970021 -0.102428 -0.220380 0.267213 -0.244597 -0.932078 0.134911 -0.948228 0.287512 -0.954147 -0.202575 -0.220380 0.291377 -0.215244 -0.932078 0.233549 -0.928866 0.287512 -0.927661 -0.301461 -0.220380 0.312331 -0.183521 -0.932078 0.329615 -0.899272 0.287512 -0.890956 -0.397026 -0.220380 0.329695 -0.150105 -0.932078 0.421190 -0.860195 0.287512 -0.844926 -0.487373 -0.220380 0.343612 -0.114724 -0.932078 0.509025 -0.811314 0.287512 -0.789193 -0.573243 -0.220380 0.353743 -0.078079 -0.932078 0.591253 -0.753496 0.287512 -0.724766 -0.652799 -0.220380 0.359978 -0.040574 -0.932078 0.666968 -0.687379 0.287512 -0.652356 -0.725165 -0.220380 0.362245 -0.002985 -0.932078 0.734723 -0.614425 0.287512 -0.573550 -0.788969 -0.220380 0.360563 0.034998 -0.932078 0.795073 -0.534037 0.287512 -0.487702 -0.844736 -0.220380 0.354909 0.072594 -0.932078 0.846665 -0.447766 0.287512 -0.396481 -0.891199 -0.220380 0.345456 0.109046 -0.932078 0.888574 -0.357453 0.287512 -0.301822 -0.927543 -0.220380 0.332124 0.144652 -0.932078 0.921144 -0.262355 0.287512 -0.202946 -0.954068 -0.220380 0.315134 0.178664 -0.932078 0.943568 -0.164368 0.287512 -0.101835 -0.970084 -0.220380 0.294845 0.210468 -0.932078 0.955545 -0.065348 0.287512 -0.000397 -0.975414 -0.220380 0.271163 0.240211 -0.932078 0.957131 0.035160 0.287512 0.101835 -0.970084 -0.220380 0.244493 0.267308 -0.932078 0.948175 0.135280 0.287512 0.202946 -0.954068 -0.220380 0.215131 0.291461 -0.932078 0.928775 0.233911 0.287512 0.301822 -0.927543 -0.220380 0.183711 0.312219 -0.932078 0.899473 0.329065 0.287512 0.396481 -0.891199 -0.220380 0.149977 0.329754 -0.932078 0.860031 0.421524 0.287512 0.487702 -0.844736 -0.220380 0.114590 0.343656 -0.932078 0.811116 0.509340 0.287512 0.573550 -0.788969 -0.220380 0.078295 0.353695 -0.932078 0.753857 0.590792 0.287512 0.652356 -0.725165 -0.220380 0.040794 0.359953 -0.932078 0.687786 0.666548 0.287512 0.724766 -0.652799 -0.220380 0.002844 0.362246 -0.932078 0.614139 0.734962 0.287512 0.789193 -0.573243 -0.220380 -0.035138 0.360549 -0.932078 0.533728 0.795281 0.287512 0.844926 -0.487373 -0.220380 -0.072378 0.354954 -0.932078 0.448284 0.846391 0.287512 0.890956 -0.397026 -0.220380 -0.109181 0.345413 -0.932078 0.357107 0.888713 0.287512 0.927661 -0.301461 -0.220380 -0.144781 0.332068 -0.932078 0.261997 0.921246 0.287512 0.954147 -0.202575 -0.220380 -0.178472 0.315244 -0.932078 0.164944 0.943467 0.287512 0.970021 -0.102428 -0.220380 -0.210528 0.294802 -0.932078 0.065154 0.955558 0.287512 0.975414 -0.000199 -0.220380 -0.240266 0.271114 -0.932078 -0.035355 0.957124 0.287512 0.970063 0.102033 -0.220380 -0.267358 0.244439 -0.932078 -0.135473 0.948147 0.287512 0.954027 0.203140 -0.220380 -0.291289 0.215363 -0.932078 -0.233171 0.928961 0.287512 0.927783 0.301083 -0.220380 -0.312256 0.183648 -0.932078 -0.329249 0.899406 0.287512 0.891118 0.396663 -0.220380 -0.329784 0.149910 -0.932078 -0.421699 0.859945 0.287512 0.844637 0.487874 -0.220380 -0.343680 0.114520 -0.932078 -0.509506 0.811012 0.287512 0.788853 0.573711 -0.220380 -0.353711 0.078223 -0.932078 -0.590946 0.753737 0.287512 0.725032 0.652504 -0.220380 -0.359962 0.040721 -0.932078 -0.666688 0.687651 0.287512 0.652652 0.724899 -0.220380 -0.362247 0.002770 -0.932078 -0.735087 0.613990 0.287512 0.573083 0.789309 -0.220380 -0.360577 -0.034851 -0.932078 -0.794855 0.534361 0.287512 0.488046 0.844538 -0.220380 -0.354939 -0.072450 -0.932078 -0.846483 0.448111 0.287512 0.396844 0.891037 -0.220380 -0.345391 -0.109251 -0.932078 -0.888786 0.356926 0.287512 0.301272 0.927722 -0.220380 -0.332038 -0.144849 -0.932078 -0.921299 0.261809 0.287512 0.202381 0.954188 -0.220380 -0.315207 -0.178536 -0.932078 -0.943501 0.164752 0.287512 0.102230 0.970042 -0.220380 -0.294759 -0.210588 -0.932078 -0.955572 0.064959 0.287512 0.000000 0.975414 -0.220380 -0.271065 -0.240322 -0.932078 -0.957117 -0.035550 0.287512 -0.102230 0.970042 -0.220380 -0.244652 -0.267163 -0.932078 -0.948255 -0.134718 0.287512 -0.202381 0.954188 -0.220380 -0.215304 -0.291333 -0.932078 -0.928913 -0.233360 0.287512 -0.301272 0.927722 -0.220380 -0.183584 -0.312294 -0.932078 -0.899339 -0.329432 0.287512 -0.396844 0.891037 -0.220380 -0.149843 -0.329815 -0.932078 -0.859859 -0.421875 0.287512 -0.488046 0.844538 -0.220380 -0.114794 -0.343588 -0.932078 -0.811418 -0.508860 0.287512 -0.573083 0.789309 -0.220380 -0.078151 -0.353727 -0.932078 -0.753617 -0.591099 0.287512 -0.652652 0.724899 -0.220380 -0.040648 -0.359970 -0.932078 -0.687515 -0.666828 0.287512 -0.725032 0.652504 -0.220380 -0.003059 -0.362245 -0.932078 -0.614575 -0.734598 0.287512 -0.788853 0.573711 -0.220380 0.034924 -0.360570 -0.932078 -0.534199 -0.794964 0.287512 -0.844637 0.487874 -0.220380 0.072522 -0.354924 -0.932078 -0.447939 -0.846574 0.287512 -0.891118 0.396663 -0.220380 0.109321 -0.345369 -0.932078 -0.356745 -0.888859 0.287512 -0.927783 0.301083 -0.220380 0.144584 -0.332154 -0.932078 -0.262543 -0.921091 0.287512 -0.954027 0.203140 -0.220380 0.178600 -0.315171 -0.932078 -0.164560 -0.943534 0.287512 -0.970063 0.102033 -0.220380 0.042789 0.996313 -0.074360 0.498691 -0.085792 -0.862523 -0.865723 -0.000176 -0.500524 -0.061867 0.995310 -0.074360 0.504937 -0.033054 -0.862523 -0.860936 -0.090909 -0.500524 -0.164859 0.983510 -0.074360 0.505640 0.019544 -0.862523 -0.846847 -0.179794 -0.500524 -0.267030 0.960815 -0.074360 0.500807 0.072431 -0.862523 -0.823339 -0.267560 -0.500524 -0.366259 0.927537 -0.074360 0.490457 0.124520 -0.862523 -0.790763 -0.352378 -0.500524 -0.460571 0.884503 -0.074360 0.474880 0.174763 -0.862523 -0.749909 -0.432565 -0.500524 -0.550736 0.831360 -0.074360 0.453949 0.223571 -0.862523 -0.700443 -0.508779 -0.500524 -0.634836 0.769061 -0.074360 0.428017 0.269917 -0.862523 -0.643262 -0.579388 -0.500524 -0.711942 0.698290 -0.074360 0.397370 0.313290 -0.862523 -0.578995 -0.643615 -0.500524 -0.780587 0.620608 -0.074360 0.362700 0.352849 -0.862523 -0.509051 -0.700245 -0.500524 -0.841332 0.535379 -0.074360 0.323721 0.388919 -0.862523 -0.432857 -0.749741 -0.500524 -0.892810 0.444253 -0.074360 0.281177 0.420706 -0.862523 -0.351895 -0.790978 -0.500524 -0.934105 0.349168 -0.074360 0.235983 0.447622 -0.862523 -0.267880 -0.823235 -0.500524 -0.965556 0.249344 -0.074360 0.187769 0.469890 -0.862523 -0.180124 -0.846777 -0.500524 -0.986371 0.146773 -0.074360 0.137487 0.486981 -0.862523 -0.090383 -0.860992 -0.500524 -0.996287 0.043398 -0.074360 0.086097 0.498639 -0.862523 -0.000353 -0.865723 -0.500524 -0.995348 -0.061259 -0.074360 0.033362 0.504916 -0.862523 0.090383 -0.860992 -0.500524 -0.983446 -0.165241 -0.074360 -0.019741 0.505632 -0.862523 0.180124 -0.846777 -0.500524 -0.960711 -0.267404 -0.074360 -0.072626 0.500778 -0.862523 0.267880 -0.823235 -0.500524 -0.927760 -0.365693 -0.074360 -0.124220 0.490533 -0.862523 0.351895 -0.790978 -0.500524 -0.884324 -0.460915 -0.074360 -0.174948 0.474812 -0.862523 0.432857 -0.749741 -0.500524 -0.831146 -0.551060 -0.074360 -0.223748 0.453862 -0.862523 0.509051 -0.700245 -0.500524 -0.769448 -0.634366 -0.074360 -0.269656 0.428181 -0.862523 0.578995 -0.643615 -0.500524 -0.698725 -0.711516 -0.074360 -0.313047 0.397561 -0.862523 0.643262 -0.579388 -0.500524 -0.620304 -0.780828 -0.074360 -0.352990 0.362562 -0.862523 0.700443 -0.508779 -0.500524 -0.535052 -0.841540 -0.074360 -0.389045 0.323570 -0.862523 0.749909 -0.432565 -0.500524 -0.444798 -0.892538 -0.074360 -0.420534 0.281434 -0.862523 0.790763 -0.352378 -0.500524 -0.348804 -0.934241 -0.074360 -0.447714 0.235809 -0.862523 0.823339 -0.267560 -0.500524 -0.248968 -0.965653 -0.074360 -0.469963 0.187586 -0.862523 0.846847 -0.179794 -0.500524 -0.147376 -0.986281 -0.074360 -0.486897 0.137785 -0.862523 0.860936 -0.090909 -0.500524 -0.043195 -0.996296 -0.074360 -0.498656 0.085996 -0.862523 0.865723 -0.000176 -0.500524 0.061462 -0.995336 -0.074360 -0.504923 0.033259 -0.862523 0.860973 0.090559 -0.500524 0.165442 -0.983412 -0.074360 -0.505628 -0.019844 -0.862523 0.846740 0.180296 -0.500524 0.266638 -0.960924 -0.074360 -0.500836 -0.072227 -0.862523 0.823448 0.267224 -0.500524 0.365882 -0.927686 -0.074360 -0.490508 -0.124320 -0.862523 0.790906 0.352056 -0.500524 0.461095 -0.884230 -0.074360 -0.474777 -0.175044 -0.862523 0.749652 0.433009 -0.500524 0.551229 -0.831034 -0.074360 -0.453816 -0.223840 -0.862523 0.700141 0.509194 -0.500524 0.634522 -0.769319 -0.074360 -0.428127 -0.269743 -0.862523 0.643498 0.579126 -0.500524 0.711658 -0.698580 -0.074360 -0.397498 -0.313128 -0.862523 0.579257 0.643380 -0.500524 0.780955 -0.620145 -0.074360 -0.362491 -0.353064 -0.862523 0.508636 0.700547 -0.500524 0.841114 -0.535722 -0.074360 -0.323879 -0.388787 -0.862523 0.433162 0.749564 -0.500524 0.892629 -0.444617 -0.074360 -0.281348 -0.420591 -0.862523 0.352217 0.790834 -0.500524 0.934312 -0.348614 -0.074360 -0.235718 -0.447762 -0.862523 0.267392 0.823394 -0.500524 0.965704 -0.248771 -0.074360 -0.187491 -0.470001 -0.862523 0.179622 0.846884 -0.500524 0.986311 -0.147175 -0.074360 -0.137686 -0.486925 -0.862523 0.090734 0.860955 -0.500524 0.996304 -0.042992 -0.074360 -0.085894 -0.498674 -0.862523 0.000000 0.865723 -0.500524 0.995323 0.061665 -0.074360 -0.033156 -0.504930 -0.862523 -0.090734 0.860955 -0.500524 0.983544 0.164659 -0.074360 0.019441 -0.505644 -0.862523 -0.179622 0.846884 -0.500524 0.960869 0.266834 -0.074360 0.072329 -0.500821 -0.862523 -0.267392 0.823394 -0.500524 0.927611 0.366071 -0.074360 0.124420 -0.490483 -0.862523 -0.352217 0.790834 -0.500524 0.884136 0.461275 -0.074360 0.175141 -0.474741 -0.862523 -0.433162 0.749564 -0.500524 0.831473 0.550567 -0.074360 0.223479 -0.453994 -0.862523 -0.508636 0.700547 -0.500524 0.769190 0.634679 -0.074360 0.269830 -0.428072 -0.862523 -0.579257 0.643380 -0.500524 0.698435 0.711800 -0.074360 0.313209 -0.397434 -0.862523 -0.643498 0.579126 -0.500524 0.620767 0.780460 -0.074360 0.352775 -0.362772 -0.862523 -0.700141 0.509194 -0.500524 0.535550 0.841223 -0.074360 0.388853 -0.323800 -0.862523 -0.749652 0.433009 -0.500524 0.444435 0.892720 -0.074360 0.420648 -0.281262 -0.862523 -0.790906 0.352056 -0.500524 0.348424 0.934383 -0.074360 0.447810 -0.235626 -0.862523 -0.823448 0.267224 -0.500524 0.249540 0.965505 -0.074360 0.469851 -0.187865 -0.862523 -0.846740 0.180296 -0.500524 0.146974 0.986341 -0.074360 0.486953 -0.137586 -0.862523 -0.860973 0.090559 -0.500524 0.577503 0.711031 0.401155 -0.584061 0.703160 -0.405509 -0.570406 -0.000116 0.821363 0.499801 0.767642 0.401155 -0.654541 0.638074 -0.405509 -0.567252 -0.059898 0.821363 0.417410 0.815380 0.401155 -0.717244 0.566677 -0.405509 -0.557969 -0.118462 0.821363 0.329653 0.854637 0.401155 -0.772686 0.488384 -0.405509 -0.542480 -0.176289 0.821363 0.238266 0.884480 0.401155 -0.819617 0.404711 -0.405509 -0.521016 -0.232174 0.821363 0.145158 0.904436 0.401155 -0.857202 0.317437 -0.405509 -0.494099 -0.285008 0.821363 0.049567 0.914668 0.401155 -0.885751 0.225848 -0.405509 -0.461507 -0.335223 0.821363 -0.046569 0.914826 0.401155 -0.904543 0.131772 -0.405509 -0.423831 -0.381746 0.821363 -0.142193 0.904907 0.401155 -0.913372 0.036243 -0.405509 -0.381487 -0.424064 0.821363 -0.235366 0.885256 0.401155 -0.912200 -0.058772 -0.405509 -0.335403 -0.461376 0.821363 -0.326851 0.855712 0.401155 -0.901016 -0.154054 -0.405509 -0.285200 -0.493988 0.821363 -0.414735 0.816743 0.401155 -0.879908 -0.247638 -0.405509 -0.231856 -0.521158 0.821363 -0.497283 0.769276 0.401155 -0.849446 -0.337646 -0.405509 -0.176500 -0.542412 0.821363 -0.575169 0.712920 0.401155 -0.809380 -0.424814 -0.405509 -0.118680 -0.557923 0.821363 -0.646721 0.648712 0.401155 -0.760398 -0.507303 -0.405509 -0.059552 -0.567289 0.821363 -0.710678 0.577937 0.401155 -0.703517 -0.583632 -0.405509 -0.000232 -0.570406 0.821363 -0.767336 0.500270 0.401155 -0.638474 -0.654151 -0.405509 0.059552 -0.567289 0.821363 -0.815542 0.417092 0.401155 -0.566398 -0.717465 -0.405509 0.118680 -0.557923 0.821363 -0.854765 0.329321 0.401155 -0.488083 -0.772876 -0.405509 0.176500 -0.542412 0.821363 -0.884334 0.238806 0.401155 -0.405212 -0.819369 -0.405509 0.231856 -0.521158 0.821363 -0.904492 0.144806 0.401155 -0.317104 -0.857326 -0.405509 0.285200 -0.493988 0.821363 -0.914687 0.049212 0.401155 -0.225504 -0.885839 -0.405509 0.335403 -0.461376 0.821363 -0.914854 -0.046011 0.401155 -0.132324 -0.904463 -0.405509 0.381487 -0.424064 0.821363 -0.904993 -0.141640 0.401155 -0.036801 -0.913350 -0.405509 0.423831 -0.381746 0.821363 -0.885164 -0.235710 0.401155 0.059127 -0.912177 -0.405509 0.461507 -0.335223 0.821363 -0.855585 -0.327183 0.401155 0.154404 -0.900956 -0.405509 0.494099 -0.285008 0.821363 -0.816997 -0.414236 0.401155 0.247100 -0.880059 -0.405509 0.521016 -0.232174 0.821363 -0.769082 -0.497582 0.401155 0.337976 -0.849314 -0.405509 0.542480 -0.176289 0.821363 -0.712696 -0.575447 0.401155 0.425129 -0.809214 -0.405509 0.557969 -0.118462 0.821363 -0.649107 -0.646324 0.401155 0.506839 -0.760708 -0.405509 0.567252 -0.059898 0.821363 -0.577792 -0.710796 0.401155 0.583775 -0.703398 -0.405509 0.570406 -0.000116 0.821363 -0.500114 -0.767438 0.401155 0.654281 -0.638341 -0.405509 0.567277 0.059667 0.821363 -0.416926 -0.815627 0.401155 0.717580 -0.566252 -0.405509 0.557899 0.118793 0.821363 -0.330001 -0.854502 0.401155 0.772487 -0.488698 -0.405509 0.542552 0.176068 0.821363 -0.238626 -0.884383 0.401155 0.819452 -0.405045 -0.405509 0.521111 0.231962 0.821363 -0.144622 -0.904522 0.401155 0.857390 -0.316929 -0.405509 0.493930 0.285301 0.821363 -0.049025 -0.914697 0.401155 0.885885 -0.225323 -0.405509 0.461308 0.335497 0.821363 0.046197 -0.914845 0.401155 0.904490 -0.132140 -0.405509 0.423987 0.381573 0.821363 0.141825 -0.904964 0.401155 0.913357 -0.036615 -0.405509 0.381660 0.423909 0.821363 0.235890 -0.885116 0.401155 0.912165 0.059313 -0.405509 0.335129 0.461575 0.821363 0.326502 -0.855845 0.401155 0.901079 0.153687 -0.405509 0.285401 0.493872 0.821363 0.414403 -0.816912 0.401155 0.880008 0.247280 -0.405509 0.232068 0.521064 0.821363 0.497739 -0.768981 0.401155 0.849245 0.338149 -0.405509 0.176179 0.542516 0.821363 0.575592 -0.712579 0.401155 0.809128 0.425294 -0.405509 0.118349 0.557993 0.821363 0.646457 -0.648975 0.401155 0.760605 0.506993 -0.405509 0.059783 0.567264 0.821363 0.710914 -0.577648 0.401155 0.703279 0.583918 -0.405509 0.000000 0.570406 0.821363 0.767540 -0.499957 0.401155 0.638207 0.654411 -0.405509 -0.059783 0.567264 0.821363 0.815295 -0.417576 0.401155 0.566823 0.717129 -0.405509 -0.118349 0.557993 0.821363 0.854569 -0.329827 0.401155 0.488541 0.772587 -0.405509 -0.176179 0.542516 0.821363 0.884431 -0.238446 0.401155 0.404878 0.819534 -0.405509 -0.232068 0.521064 0.821363 0.904551 -0.144438 0.401155 0.316755 0.857455 -0.405509 -0.285401 0.493872 0.821363 0.914658 -0.049754 0.401155 0.226029 0.885705 -0.405509 -0.335129 0.461575 0.821363 0.914835 0.046383 0.401155 0.131956 0.904516 -0.405509 -0.381660 0.423909 0.821363 0.904936 0.142009 0.401155 0.036429 0.913365 -0.405509 -0.423987 0.381573 0.821363 0.885304 0.235185 0.401155 -0.058586 0.912211 -0.405509 -0.461308 0.335497 0.821363 0.855779 0.326676 0.401155 -0.153870 0.901047 -0.405509 -0.493930 0.285301 0.821363 0.816828 0.414569 0.401155 -0.247459 0.879958 -0.405509 -0.521111 0.231962 0.821363 0.768879 0.497895 0.401155 -0.338322 0.849176 -0.405509 -0.542552 0.176068 0.821363 0.713037 0.575024 0.401155 -0.424649 0.809466 -0.405509 -0.557899 0.118793 0.821363 0.648843 0.646589 0.401155 -0.507148 0.760502 -0.405509 -0.567277 0.059667 0.821363 -0.186591 0.925251 -0.330295 -0.454690 -0.379356 -0.805820 -0.870885 -0.000177 0.491487 -0.282537 0.900599 -0.330295 -0.412427 -0.424921 -0.805820 -0.866070 -0.091451 0.491487 -0.374504 0.866402 -0.330295 -0.366086 -0.465441 -0.805820 -0.851897 -0.180866 0.491487 -0.463246 0.822380 -0.330295 -0.315288 -0.501246 -0.805820 -0.828249 -0.269155 0.491487 -0.546886 0.769299 -0.330295 -0.261018 -0.531530 -0.805820 -0.795478 -0.354479 0.491487 -0.623794 0.708369 -0.330295 -0.204428 -0.555755 -0.805820 -0.754380 -0.435145 0.491487 -0.694601 0.639089 -0.330295 -0.145055 -0.574119 -0.805820 -0.704620 -0.511812 0.491487 -0.757756 0.562770 -0.330295 -0.084084 -0.586160 -0.805820 -0.647097 -0.582843 0.491487 -0.812566 0.480253 -0.330295 -0.022188 -0.591745 -0.805820 -0.582447 -0.647453 0.491487 -0.858032 0.393303 -0.330295 0.039363 -0.590851 -0.805820 -0.512086 -0.704420 0.491487 -0.894527 0.301209 -0.330295 0.101072 -0.583471 -0.805820 -0.435438 -0.754211 0.491487 -0.921169 0.205797 -0.330295 0.161667 -0.569665 -0.805820 -0.353993 -0.795694 0.491487 -0.937556 0.109057 -0.330295 0.219932 -0.549804 -0.805820 -0.269477 -0.828144 0.491487 -0.943823 0.010193 -0.330295 0.276344 -0.523725 -0.805820 -0.181198 -0.851826 0.491487 -0.939693 -0.088782 -0.330295 0.329712 -0.491878 -0.805820 -0.090922 -0.866126 0.491487 -0.925365 -0.186026 -0.330295 0.379078 -0.454922 -0.805820 -0.000355 -0.870885 0.491487 -0.900771 -0.281986 -0.330295 0.424669 -0.412686 -0.805820 0.090922 -0.866126 0.491487 -0.866256 -0.374841 -0.330295 0.465583 -0.365905 -0.805820 0.181198 -0.851826 0.491487 -0.822199 -0.463566 -0.330295 0.501368 -0.315093 -0.805820 0.269477 -0.828144 0.491487 -0.769633 -0.546416 -0.330295 0.531370 -0.261343 -0.805820 0.353993 -0.795694 0.491487 -0.708126 -0.624070 -0.330295 0.555834 -0.204212 -0.805820 0.435438 -0.754211 0.491487 -0.638819 -0.694849 -0.330295 0.574176 -0.144832 -0.805820 0.512086 -0.704420 0.491487 -0.563233 -0.757413 -0.330295 0.586109 -0.084442 -0.805820 0.582447 -0.647453 0.491487 -0.480749 -0.812272 -0.330295 0.591731 -0.022549 -0.805820 0.647097 -0.582843 0.491487 -0.392969 -0.858184 -0.330295 0.590835 0.039593 -0.805820 0.704620 -0.511812 0.491487 -0.300861 -0.894644 -0.330295 0.583432 0.101298 -0.805820 0.754380 -0.435145 0.491487 -0.206360 -0.921043 -0.330295 0.569763 0.161319 -0.805820 0.795478 -0.354479 0.491487 -0.108692 -0.937599 -0.330295 0.549718 0.220146 -0.805820 0.828249 -0.269155 0.491487 -0.009826 -0.943827 -0.330295 0.523618 0.276548 -0.805820 0.851897 -0.180866 0.491487 0.088208 -0.939747 -0.330295 0.492079 0.329411 -0.805820 0.866070 -0.091451 0.491487 0.186215 -0.925327 -0.330295 0.454845 0.379171 -0.805820 0.870885 -0.000177 0.491487 0.282170 -0.900714 -0.330295 0.412600 0.424753 -0.805820 0.866107 0.091099 0.491487 0.375017 -0.866180 -0.330295 0.365810 0.465658 -0.805820 0.851789 0.181371 0.491487 0.462911 -0.822568 -0.330295 0.315493 0.501117 -0.805820 0.828358 0.268818 0.491487 0.546573 -0.769522 -0.330295 0.261234 0.531423 -0.805820 0.795622 0.354155 0.491487 0.624214 -0.707999 -0.330295 0.204099 0.555876 -0.805820 0.754122 0.435591 0.491487 0.694979 -0.638677 -0.330295 0.144715 0.574205 -0.805820 0.704316 0.512230 0.491487 0.757527 -0.563079 -0.330295 0.084323 0.586126 -0.805820 0.647335 0.582579 0.491487 0.812370 -0.480584 -0.330295 0.022428 0.591736 -0.805820 0.582711 0.647216 0.491487 0.858264 -0.392795 -0.330295 -0.039713 0.590827 -0.805820 0.511669 0.704724 0.491487 0.894404 -0.301574 -0.330295 -0.100834 0.583512 -0.805820 0.435745 0.754034 0.491487 0.921085 -0.206173 -0.330295 -0.161435 0.569730 -0.805820 0.354317 0.795550 0.491487 0.937621 -0.108501 -0.330295 -0.220258 0.549673 -0.805820 0.268986 0.828304 0.491487 0.943829 -0.009634 -0.330295 -0.276654 0.523561 -0.805820 0.180693 0.851934 0.491487 0.939729 0.088399 -0.330295 -0.329512 0.492012 -0.805820 0.091275 0.866089 0.491487 0.925289 0.186403 -0.330295 -0.379263 0.454767 -0.805820 0.000000 0.870885 0.491487 0.900656 0.282353 -0.330295 -0.424837 0.412513 -0.805820 -0.091275 0.866089 0.491487 0.866478 0.374327 -0.330295 -0.465366 0.366181 -0.805820 -0.180693 0.851934 0.491487 0.822474 0.463079 -0.330295 -0.501181 0.315390 -0.805820 -0.268986 0.828304 0.491487 0.769410 0.546730 -0.330295 -0.531476 0.261126 -0.805820 -0.354317 0.795550 0.491487 0.707872 0.624358 -0.330295 -0.555917 0.203985 -0.805820 -0.435745 0.754034 0.491487 0.639231 0.694471 -0.330295 -0.574090 0.145172 -0.805820 -0.511669 0.704724 0.491487 0.562925 0.757642 -0.330295 -0.586143 0.084204 -0.805820 -0.582711 0.647216 0.491487 0.480418 0.812468 -0.330295 -0.591740 0.022308 -0.805820 -0.647335 0.582579 0.491487 0.393478 0.857951 -0.330295 -0.590859 -0.039243 -0.805820 -0.704316 0.512230 0.491487 0.301391 0.894466 -0.330295 -0.583492 -0.100953 -0.805820 -0.754122 0.435591 0.491487 0.205985 0.921127 -0.330295 -0.569698 -0.161551 -0.805820 -0.795622 0.354155 0.491487 0.108310 0.937643 -0.330295 -0.549628 -0.220369 -0.805820 -0.828358 0.268818 0.491487 0.010386 0.943821 -0.330295 -0.523781 -0.276237 -0.805820 -0.851789 0.181371 0.491487 -0.088591 0.939711 -0.330295 -0.491945 -0.329612 -0.805820 -0.866107 0.091099 0.491487 -0.685624 -0.115089 -0.718801 0.079543 -0.993355 0.083177 -0.723597 -0.000147 0.690222 -0.669786 -0.186313 -0.718801 0.183215 -0.979548 0.083177 -0.719597 -0.075985 0.690222 -0.646825 -0.254839 -0.718801 0.283915 -0.955235 0.083177 -0.707820 -0.150277 0.690222 -0.616554 -0.321227 -0.718801 0.382467 -0.920218 0.083177 -0.688172 -0.223634 0.690222 -0.579491 -0.384077 -0.718801 0.476806 -0.875065 0.083177 -0.660943 -0.294528 0.690222 -0.536488 -0.442160 -0.718801 0.565072 -0.820838 0.083177 -0.626797 -0.361551 0.690222 -0.487192 -0.495953 -0.718801 0.647990 -0.757094 0.083177 -0.585451 -0.425253 0.690222 -0.432529 -0.544283 -0.718801 0.723770 -0.685010 0.083177 -0.537658 -0.484270 0.690222 -0.373102 -0.586617 -0.718801 0.791578 -0.605381 0.083177 -0.483941 -0.537953 0.690222 -0.310188 -0.622181 -0.718801 0.850147 -0.519934 0.083177 -0.425480 -0.585286 0.690222 -0.243271 -0.651264 -0.718801 0.899958 -0.427969 0.083177 -0.361795 -0.626656 0.690222 -0.173674 -0.673174 -0.718801 0.939856 -0.331290 0.083177 -0.294124 -0.661123 0.690222 -0.102852 -0.687566 -0.718801 0.969169 -0.231932 0.083177 -0.223902 -0.688085 0.690222 -0.030223 -0.694559 -0.718801 0.988140 -0.129078 0.083177 -0.150553 -0.707762 0.690222 0.042738 -0.693901 -0.718801 0.996226 -0.024803 0.083177 -0.075545 -0.719643 0.690222 0.114670 -0.685694 -0.718801 0.993404 0.078936 0.083177 -0.000295 -0.723597 0.690222 0.185904 -0.669899 -0.718801 0.979659 0.182617 0.083177 0.075545 -0.719643 0.690222 0.255090 -0.646726 -0.718801 0.955124 0.284286 0.083177 0.150553 -0.707762 0.690222 0.321467 -0.616429 -0.718801 0.920069 0.382825 0.083177 0.223902 -0.688085 0.690222 0.383723 -0.579726 -0.718801 0.875356 0.476271 0.083177 0.294124 -0.661123 0.690222 0.442369 -0.536316 -0.718801 0.820618 0.565391 0.083177 0.361795 -0.626656 0.690222 0.496143 -0.486999 -0.718801 0.756842 0.648284 0.083177 0.425480 -0.585286 0.690222 0.544018 -0.432862 -0.718801 0.685452 0.723351 0.083177 0.483941 -0.537953 0.690222 0.586389 -0.373461 -0.718801 0.605865 0.791208 0.083177 0.537658 -0.484270 0.690222 0.622301 -0.309946 -0.718801 0.519604 0.850349 0.083177 0.585451 -0.425253 0.690222 0.651358 -0.243018 -0.718801 0.427619 0.900124 0.083177 0.626797 -0.361551 0.690222 0.673067 -0.174085 -0.718801 0.331865 0.939653 0.083177 0.660943 -0.294528 0.690222 0.687606 -0.102584 -0.718801 0.231554 0.969260 0.083177 0.688172 -0.223634 0.690222 0.694570 -0.029953 -0.718801 0.128694 0.988190 0.083177 0.707820 -0.150277 0.690222 0.693927 0.042314 -0.718801 0.025412 0.996211 0.083177 0.719597 -0.075985 0.690222 0.685671 0.114809 -0.718801 -0.079138 0.993388 0.083177 0.723597 -0.000147 0.690222 0.669861 0.186040 -0.718801 -0.182816 0.979622 0.083177 0.719628 0.075692 0.690222 0.646674 0.255222 -0.718801 -0.284481 0.955067 0.083177 0.707731 0.150697 0.690222 0.616684 0.320976 -0.718801 -0.382092 0.920374 0.083177 0.688263 0.223354 0.690222 0.579648 0.383841 -0.718801 -0.476449 0.875259 0.083177 0.661063 0.294259 0.690222 0.536226 0.442478 -0.718801 -0.565559 0.820503 0.083177 0.626582 0.361922 0.690222 0.486898 0.496242 -0.718801 -0.648438 0.756709 0.083177 0.585199 0.425600 0.690222 0.432751 0.544107 -0.718801 -0.723491 0.685305 0.083177 0.537855 0.484051 0.690222 0.373341 0.586465 -0.718801 -0.791331 0.605704 0.083177 0.484161 0.537756 0.690222 0.309819 0.622364 -0.718801 -0.850455 0.519431 0.083177 0.425133 0.585538 0.690222 0.243536 0.651165 -0.718801 -0.899783 0.428336 0.083177 0.362050 0.626508 0.690222 0.173948 0.673103 -0.718801 -0.939720 0.331673 0.083177 0.294394 0.661003 0.690222 0.102444 0.687627 -0.718801 -0.969307 0.231357 0.083177 0.223494 0.688218 0.690222 0.029812 0.694577 -0.718801 -0.988216 0.128493 0.083177 0.150133 0.707851 0.690222 -0.042455 0.693918 -0.718801 -0.996216 0.025209 0.083177 0.075838 0.719612 0.690222 -0.114949 0.685647 -0.718801 -0.993371 -0.079340 0.083177 0.000000 0.723597 0.690222 -0.186177 0.669824 -0.718801 -0.979585 -0.183016 0.083177 -0.075838 0.719612 0.690222 -0.254707 0.646877 -0.718801 -0.955293 -0.283720 0.083177 -0.150133 0.707851 0.690222 -0.321101 0.616619 -0.718801 -0.920296 -0.382279 0.083177 -0.223494 0.688218 0.690222 -0.383959 0.579569 -0.718801 -0.875162 -0.476627 0.083177 -0.294394 0.661003 0.690222 -0.442587 0.536136 -0.718801 -0.820388 -0.565726 0.083177 -0.362050 0.626508 0.690222 -0.495854 0.487293 -0.718801 -0.757226 -0.647836 0.083177 -0.425133 0.585538 0.690222 -0.544195 0.432640 -0.718801 -0.685157 -0.723630 0.083177 -0.484161 0.537756 0.690222 -0.586541 0.373222 -0.718801 -0.605542 -0.791454 0.083177 -0.537855 0.484051 0.690222 -0.622117 0.310315 -0.718801 -0.520108 -0.850041 0.083177 -0.585199 0.425600 0.690222 -0.651214 0.243403 -0.718801 -0.428153 -0.899871 0.083177 -0.626582 0.361922 0.690222 -0.673138 0.173811 -0.718801 -0.331482 -0.939788 0.083177 -0.661063 0.294259 0.690222 -0.687648 0.102304 -0.718801 -0.231160 -0.969354 0.083177 -0.688263 0.223354 0.690222 -0.694553 0.030365 -0.718801 -0.129280 -0.988114 0.083177 -0.707731 0.150697 0.690222 -0.693910 -0.042596 -0.718801 -0.025006 -0.996221 0.083177 -0.719628 0.075692 0.690222 -0.021743 0.078710 -0.996660 -0.001513 -0.996898 -0.078696 -0.999762 -0.000204 0.021795 -0.029873 0.075998 -0.996660 0.102978 -0.991566 -0.078696 -0.994235 -0.104985 0.021795 -0.037601 0.072486 -0.996660 0.205358 -0.975518 -0.078696 -0.977964 -0.207632 0.021795 -0.044991 0.068146 -0.996660 0.306469 -0.948622 -0.078696 -0.950817 -0.308986 0.021795 -0.051885 0.063056 -0.996660 0.404203 -0.911277 -0.078696 -0.913196 -0.406937 0.021795 -0.058151 0.057329 -0.996660 0.496621 -0.864392 -0.078696 -0.866017 -0.499539 0.021795 -0.063839 0.050918 -0.996660 0.584481 -0.807582 -0.078696 -0.808892 -0.587553 0.021795 -0.068824 0.043947 -0.996660 0.665902 -0.741877 -0.078696 -0.742858 -0.669094 0.021795 -0.073051 0.036492 -0.996660 0.739989 -0.668000 -0.078696 -0.668641 -0.743266 0.021795 -0.076445 0.028711 -0.996660 0.805337 -0.587570 -0.078696 -0.587867 -0.808664 0.021795 -0.079033 0.020541 -0.996660 0.862484 -0.499929 -0.078696 -0.499876 -0.865823 0.021795 -0.080750 0.012145 -0.996660 0.910130 -0.406781 -0.078696 -0.406378 -0.913445 0.021795 -0.081575 0.003696 -0.996660 0.947441 -0.310100 -0.078696 -0.309356 -0.950697 0.021795 -0.081513 -0.004874 -0.996660 0.974724 -0.209094 -0.078696 -0.208012 -0.977883 0.021795 -0.080553 -0.013390 -0.996660 0.991270 -0.105784 -0.078696 -0.104377 -0.994299 0.021795 -0.078724 -0.021695 -0.996660 0.996896 -0.002122 -0.078696 -0.000407 -0.999762 0.021795 -0.076016 -0.029826 -0.996660 0.991628 0.102372 -0.078696 0.104377 -0.994299 0.021795 -0.072472 -0.037629 -0.996660 0.975438 0.205738 -0.078696 0.208012 -0.977883 0.021795 -0.068129 -0.045017 -0.996660 0.948503 0.306838 -0.078696 0.309356 -0.950697 0.021795 -0.063087 -0.051847 -0.996660 0.911524 0.403646 -0.078696 0.406378 -0.913445 0.021795 -0.057306 -0.058173 -0.996660 0.864199 0.496958 -0.078696 0.499876 -0.865823 0.021795 -0.050893 -0.063859 -0.996660 0.807355 0.584795 -0.078696 0.587867 -0.808664 0.021795 -0.043989 -0.068797 -0.996660 0.742283 0.665449 -0.078696 0.668641 -0.743266 0.021795 -0.036536 -0.073029 -0.996660 0.668452 0.739581 -0.078696 0.742858 -0.669094 0.021795 -0.028681 -0.076456 -0.996660 0.587257 0.805566 -0.078696 0.808892 -0.587553 0.021795 -0.020510 -0.079041 -0.996660 0.499594 0.862678 -0.078696 0.866017 -0.499539 0.021795 -0.012194 -0.080743 -0.996660 0.407337 0.909881 -0.078696 0.913196 -0.406937 0.021795 -0.003664 -0.081576 -0.996660 0.309732 0.947562 -0.078696 0.950817 -0.308986 0.021795 0.004906 -0.081511 -0.996660 0.208715 0.974805 -0.078696 0.977964 -0.207632 0.021795 0.013341 -0.080561 -0.996660 0.106390 0.991205 -0.078696 0.994235 -0.104985 0.021795 0.021711 -0.078719 -0.996660 0.001919 0.996897 -0.078696 0.999762 -0.000204 0.021795 0.029842 -0.076010 -0.996660 -0.102574 0.991608 -0.078696 0.994278 0.104580 0.021795 0.037644 -0.072464 -0.996660 -0.205937 0.975396 -0.078696 0.977841 0.208211 0.021795 0.044963 -0.068165 -0.996660 -0.306082 0.948747 -0.078696 0.950943 0.308599 0.021795 0.051860 -0.063077 -0.996660 -0.403832 0.911442 -0.078696 0.913362 0.406565 0.021795 0.058185 -0.057294 -0.996660 -0.497134 0.864098 -0.078696 0.865721 0.500052 0.021795 0.063869 -0.050880 -0.996660 -0.584959 0.807236 -0.078696 0.808544 0.588032 0.021795 0.068806 -0.043975 -0.996660 -0.665600 0.742148 -0.078696 0.743130 0.668792 0.021795 0.073036 -0.036521 -0.996660 -0.739717 0.668301 -0.078696 0.668943 0.742994 0.021795 0.076462 -0.028666 -0.996660 -0.805685 0.587093 -0.078696 0.587388 0.809012 0.021795 0.079024 -0.020573 -0.996660 -0.862280 0.500280 -0.078696 0.500229 0.865619 0.021795 0.080745 -0.012177 -0.996660 -0.909964 0.407152 -0.078696 0.406751 0.913279 0.021795 0.081577 -0.003648 -0.996660 -0.947625 0.309539 -0.078696 0.308792 0.950880 0.021795 0.081510 0.004922 -0.996660 -0.974848 0.208516 -0.078696 0.207432 0.978007 0.021795 0.080558 0.013357 -0.996660 -0.991227 0.106188 -0.078696 0.104782 0.994256 0.021795 0.078715 0.021727 -0.996660 -0.996897 0.001716 -0.078696 0.000000 0.999762 0.021795 0.076004 0.029857 -0.996660 -0.991587 -0.102776 -0.078696 -0.104782 0.994256 0.021795 0.072494 0.037586 -0.996660 -0.975560 -0.205160 -0.078696 -0.207432 0.978007 0.021795 0.068155 0.044977 -0.996660 -0.948684 -0.306275 -0.078696 -0.308792 0.950880 0.021795 0.063066 0.051872 -0.996660 -0.911360 -0.404018 -0.078696 -0.406751 0.913279 0.021795 0.057282 0.058196 -0.996660 -0.863997 -0.497310 -0.078696 -0.500229 0.865619 0.021795 0.050931 0.063829 -0.996660 -0.807701 -0.584316 -0.078696 -0.587388 0.809012 0.021795 0.043961 0.068815 -0.996660 -0.742012 -0.665751 -0.078696 -0.668943 0.742994 0.021795 0.036507 0.073044 -0.996660 -0.668150 -0.739853 -0.078696 -0.743130 0.668792 0.021795 0.028726 0.076439 -0.996660 -0.587734 -0.805218 -0.078696 -0.808544 0.588032 0.021795 0.020557 0.079028 -0.996660 -0.500105 -0.862382 -0.078696 -0.865721 0.500052 0.021795 0.012161 0.080748 -0.996660 -0.406967 -0.910047 -0.078696 -0.913362 0.406565 0.021795 0.003631 0.081578 -0.996660 -0.309346 -0.947688 -0.078696 -0.950943 0.308599 0.021795 -0.004857 0.081514 -0.996660 -0.209293 -0.974681 -0.078696 -0.977841 0.208211 0.021795 -0.013374 0.080556 -0.996660 -0.105986 -0.991249 -0.078696 -0.994278 0.104580 0.021795 -0.288438 -0.440602 0.850102 -0.141772 0.897703 0.417170 -0.946945 -0.000193 -0.321396 -0.240671 -0.468406 0.850102 -0.235077 0.877900 0.417170 -0.941709 -0.099438 -0.321396 -0.190744 -0.490860 0.850102 -0.324944 0.848752 0.417170 -0.926298 -0.196662 -0.321396 -0.138248 -0.508148 0.850102 -0.412109 0.810022 0.417170 -0.900585 -0.292662 -0.321396 -0.084229 -0.519838 0.850102 -0.494736 0.762369 0.417170 -0.864952 -0.385438 -0.321396 -0.029808 -0.525774 0.850102 -0.571206 0.706889 0.417170 -0.820265 -0.473148 -0.321396 0.025461 -0.526002 0.850102 -0.642147 0.643130 0.417170 -0.766158 -0.556512 -0.321396 0.080449 -0.520437 0.850102 -0.706015 0.572286 0.417170 -0.703612 -0.633746 -0.321396 0.134552 -0.509139 0.850102 -0.762107 0.495139 0.417170 -0.633316 -0.703999 -0.321396 0.186680 -0.492420 0.850102 -0.809391 0.413347 0.417170 -0.556810 -0.765942 -0.321396 0.237261 -0.470142 0.850102 -0.848255 0.326241 0.417170 -0.473467 -0.820081 -0.321396 0.285228 -0.442686 0.850102 -0.877775 0.235541 0.417170 -0.384909 -0.865187 -0.321396 0.329644 -0.410684 0.850102 -0.897485 0.143144 0.417170 -0.293012 -0.900471 -0.321396 0.370871 -0.373873 0.850102 -0.907544 0.048293 0.417170 -0.197023 -0.926222 -0.321396 0.408013 -0.332944 0.850102 -0.907608 -0.047090 0.417170 -0.098863 -0.941770 -0.321396 0.440426 -0.288707 0.850102 -0.897789 -0.141223 0.417170 -0.000386 -0.946945 -0.321396 0.468259 -0.240957 0.850102 -0.878043 -0.234540 0.417170 0.098863 -0.941770 -0.321396 0.490934 -0.190553 0.850102 -0.848626 -0.325274 0.417170 0.197023 -0.926222 -0.321396 0.508201 -0.138050 0.850102 -0.809861 -0.412424 0.417170 0.293012 -0.900471 -0.321396 0.519787 -0.084547 0.850102 -0.762671 -0.494270 0.417170 0.384909 -0.865187 -0.321396 0.525785 -0.029604 0.850102 -0.706667 -0.571481 0.417170 0.473467 -0.820081 -0.321396 0.525992 0.025665 0.850102 -0.642880 -0.642397 0.417170 0.556810 -0.765942 -0.321396 0.520486 0.080131 0.850102 -0.572717 -0.705666 0.417170 0.633316 -0.703999 -0.321396 0.509221 0.134241 0.850102 -0.495604 -0.761804 0.417170 0.703612 -0.633746 -0.321396 0.492347 0.186871 0.850102 -0.413032 -0.809551 0.417170 0.766158 -0.556512 -0.321396 0.470050 0.237443 0.850102 -0.325911 -0.848382 0.417170 0.820265 -0.473148 -0.321396 0.442861 0.284958 0.850102 -0.236077 -0.877631 0.417170 0.864952 -0.385438 -0.321396 0.410556 0.329803 0.850102 -0.142795 -0.897540 0.417170 0.900585 -0.292662 -0.321396 0.373729 0.371016 0.850102 -0.047940 -0.907563 0.417170 0.926298 -0.196662 -0.321396 0.333194 0.407809 0.850102 0.046536 -0.907636 0.417170 0.941709 -0.099438 -0.321396 0.288617 0.440484 0.850102 0.141406 -0.897760 0.417170 0.946945 -0.000193 -0.321396 0.240862 0.468308 0.850102 0.234719 -0.877995 0.417170 0.941750 0.099055 -0.321396 0.190453 0.490972 0.850102 0.325447 -0.848560 0.417170 0.926181 0.197211 -0.321396 0.138455 0.508091 0.850102 0.411779 -0.810189 0.417170 0.900704 0.292295 -0.321396 0.084441 0.519804 0.850102 0.494425 -0.762570 0.417170 0.865109 0.385086 -0.321396 0.029497 0.525791 0.850102 0.571625 -0.706551 0.417170 0.819985 0.473634 -0.321396 -0.025772 0.525987 0.850102 0.642528 -0.642749 0.417170 0.765828 0.556966 -0.321396 -0.080237 0.520469 0.850102 0.705782 -0.572574 0.417170 0.703870 0.633459 -0.321396 -0.134344 0.509194 0.850102 0.761905 -0.495449 0.417170 0.633603 0.703741 -0.321396 -0.186971 0.492309 0.850102 0.809635 -0.412868 0.417170 0.556356 0.766272 -0.321396 -0.237069 0.470239 0.850102 0.848122 -0.326586 0.417170 0.473801 0.819888 -0.321396 -0.285048 0.442803 0.850102 0.877679 -0.235899 0.417170 0.385262 0.865030 -0.321396 -0.329887 0.410489 0.850102 0.897569 -0.142612 0.417170 0.292479 0.900645 -0.321396 -0.371092 0.373654 0.850102 0.907573 -0.047755 0.417170 0.196474 0.926338 -0.321396 -0.407877 0.333111 0.850102 0.907627 0.046720 0.417170 0.099247 0.941730 -0.321396 -0.440543 0.288528 0.850102 0.897731 0.141589 0.417170 0.000000 0.946945 -0.321396 -0.468357 0.240766 0.850102 0.877948 0.234898 0.417170 -0.099247 0.941730 -0.321396 -0.490821 0.190844 0.850102 0.848819 0.324771 0.417170 -0.196474 0.926338 -0.321396 -0.508119 0.138352 0.850102 0.810106 0.411944 0.417170 -0.292479 0.900645 -0.321396 -0.519821 0.084335 0.850102 0.762469 0.494580 0.417170 -0.385262 0.865030 -0.321396 -0.525797 0.029390 0.850102 0.706434 0.571769 0.417170 -0.473801 0.819888 -0.321396 -0.526007 -0.025354 0.850102 0.643261 0.642016 0.417170 -0.556356 0.766272 -0.321396 -0.520453 -0.080343 0.850102 0.572430 0.705899 0.417170 -0.633603 0.703741 -0.321396 -0.509166 -0.134448 0.850102 0.495294 0.762006 0.417170 -0.703870 0.633459 -0.321396 -0.492458 -0.186579 0.850102 0.413512 0.809306 0.417170 -0.765828 0.556966 -0.321396 -0.470191 -0.237165 0.850102 0.326414 0.848188 0.417170 -0.819985 0.473634 -0.321396 -0.442745 -0.285138 0.850102 0.235720 0.877727 0.417170 -0.865109 0.385086 -0.321396 -0.410422 -0.329970 0.850102 0.142429 0.897598 0.417170 -0.900704 0.292295 -0.321396 -0.373949 -0.370795 0.850102 0.048478 0.907535 0.417170 -0.926181 0.197211 -0.321396 -0.333028 -0.407945 0.850102 -0.046905 0.907617 0.417170 -0.941750 0.099055 -0.321396 0.002075 -0.999766 0.021510 0.086663 0.021609 0.996003 -0.996236 -0.000203 0.086687 0.106847 -0.994043 0.021510 0.083921 0.030573 0.996003 -0.990728 -0.104614 0.086687 0.209463 -0.977580 0.021510 0.080294 0.039119 0.996003 -0.974514 -0.206899 0.086687 0.310767 -0.950243 0.021510 0.075751 0.047319 0.996003 -0.947463 -0.307896 0.086687 0.408648 -0.912439 0.021510 0.070375 0.054998 0.996003 -0.909975 -0.405501 0.086687 0.501163 -0.865086 0.021510 0.064285 0.062007 0.996003 -0.862962 -0.497777 0.086687 0.589070 -0.807796 0.021510 0.057432 0.068403 0.996003 -0.806039 -0.585480 0.086687 0.670488 -0.741608 0.021510 0.049947 0.074045 0.996003 -0.740237 -0.666734 0.086687 0.744521 -0.667252 0.021510 0.041911 0.078872 0.996003 -0.666282 -0.740644 0.086687 0.809768 -0.586356 0.021510 0.033497 0.082797 0.996003 -0.585793 -0.805811 0.086687 0.866762 -0.498257 0.021510 0.024635 0.085852 0.996003 -0.498112 -0.862768 0.086687 0.914210 -0.404670 0.021510 0.015501 0.087961 0.996003 -0.404945 -0.910222 0.086687 0.951280 -0.307577 0.021510 0.006286 0.089095 0.996003 -0.308264 -0.947343 0.086687 0.978277 -0.206182 0.021510 -0.003086 0.089263 0.996003 -0.207278 -0.974434 0.086687 0.994499 -0.102516 0.021510 -0.012425 0.088448 0.996003 -0.104009 -0.990791 0.086687 0.999768 0.001464 0.021510 -0.021556 0.086676 0.996003 -0.000406 -0.996235 0.086687 0.994108 0.106239 0.021510 -0.030521 0.083939 0.996003 0.104009 -0.990791 0.086687 0.977498 0.209844 0.021510 -0.039151 0.080278 0.996003 0.207278 -0.974434 0.086687 0.950122 0.311137 0.021510 -0.047349 0.075733 0.996003 0.308264 -0.947343 0.086687 0.912688 0.408090 0.021510 -0.054955 0.070408 0.996003 0.404945 -0.910222 0.086687 0.864891 0.501499 0.021510 -0.062032 0.064261 0.996003 0.498112 -0.862768 0.086687 0.807567 0.589384 0.021510 -0.068425 0.057406 0.996003 0.585793 -0.805811 0.086687 0.742018 0.670035 0.021510 -0.074015 0.049992 0.996003 0.666282 -0.740644 0.086687 0.667707 0.744114 0.021510 -0.078847 0.041959 0.996003 0.740237 -0.666734 0.086687 0.586041 0.809996 0.021510 -0.082810 0.033465 0.996003 0.806039 -0.585480 0.086687 0.497920 0.866956 0.021510 -0.085861 0.024601 0.996003 0.862962 -0.497777 0.086687 0.405229 0.913962 0.021510 -0.087951 0.015555 0.996003 0.909975 -0.405501 0.086687 0.307207 0.951400 0.021510 -0.089097 0.006251 0.996003 0.947463 -0.307896 0.086687 0.205802 0.978357 0.021510 -0.089262 -0.003121 0.996003 0.974514 -0.206899 0.086687 0.103124 0.994436 0.021510 -0.088455 -0.012371 0.996003 0.990728 -0.104614 0.086687 -0.001668 0.999767 0.021510 -0.086672 -0.021573 0.996003 0.996236 -0.000203 0.086687 -0.106442 0.994086 0.021510 -0.083933 -0.030538 0.996003 0.990770 0.104211 0.086687 -0.210043 0.977456 0.021510 -0.080270 -0.039167 0.996003 0.974391 0.207477 0.086687 -0.310380 0.950369 0.021510 -0.075771 -0.047288 0.996003 0.947588 0.307510 0.086687 -0.408276 0.912605 0.021510 -0.070397 -0.054969 0.996003 0.910140 0.405130 0.086687 -0.501675 0.864789 0.021510 -0.064248 -0.062045 0.996003 0.862667 0.498288 0.086687 -0.589548 0.807447 0.021510 -0.057392 -0.068437 0.996003 0.805692 0.585958 0.086687 -0.670186 0.741881 0.021510 -0.049977 -0.074025 0.996003 0.740509 0.666433 0.086687 -0.744250 0.667555 0.021510 -0.041943 -0.078855 0.996003 0.666583 0.740373 0.086687 -0.810115 0.585876 0.021510 -0.033448 -0.082817 0.996003 0.585316 0.806158 0.086687 -0.866559 0.498610 0.021510 -0.024670 -0.085842 0.996003 0.498464 0.862565 0.086687 -0.914045 0.405043 0.021510 -0.015537 -0.087954 0.996003 0.405316 0.910057 0.086687 -0.951462 0.307013 0.021510 -0.006233 -0.089098 0.996003 0.307703 0.947525 0.086687 -0.978399 0.205602 0.021510 0.003139 -0.089261 0.996003 0.206701 0.974556 0.086687 -0.994457 0.102921 0.021510 0.012389 -0.088453 0.996003 0.104413 0.990749 0.086687 -0.999767 -0.001872 0.021510 0.021591 -0.086667 0.996003 0.000000 0.996236 0.086687 -0.994065 -0.106644 0.021510 0.030556 -0.083927 0.996003 -0.104413 0.990749 0.086687 -0.977623 -0.209264 0.021510 0.039103 -0.080301 0.996003 -0.206701 0.974556 0.086687 -0.950306 -0.310574 0.021510 0.047304 -0.075761 0.996003 -0.307703 0.947525 0.086687 -0.912522 -0.408462 0.021510 0.054984 -0.070386 0.996003 -0.405316 0.910057 0.086687 -0.864686 -0.501851 0.021510 0.062058 -0.064236 0.996003 -0.498464 0.862565 0.086687 -0.807916 -0.588905 0.021510 0.068391 -0.057446 0.996003 -0.585316 0.806158 0.086687 -0.741745 -0.670337 0.021510 0.074035 -0.049962 0.996003 -0.666583 0.740373 0.086687 -0.667404 -0.744385 0.021510 0.078864 -0.041927 0.996003 -0.740509 0.666433 0.086687 -0.586521 -0.809648 0.021510 0.082790 -0.033514 0.996003 -0.805692 0.585958 0.086687 -0.498434 -0.866661 0.021510 0.085847 -0.024652 0.996003 -0.862667 0.498288 0.086687 -0.404856 -0.914127 0.021510 0.087958 -0.015519 0.996003 -0.910140 0.405130 0.086687 -0.306820 -0.951525 0.021510 0.089100 -0.006215 0.996003 -0.947588 0.307510 0.086687 -0.206382 -0.978235 0.021510 0.089263 0.003068 0.996003 -0.974391 0.207477 0.086687 -0.102719 -0.994478 0.021510 0.088450 0.012407 0.996003 -0.990770 0.104211 0.086687 -0.799382 -0.279596 -0.531803 0.232853 -0.960118 0.154768 -0.553866 -0.000113 0.832606 -0.765676 -0.361837 -0.531803 0.332198 -0.930425 0.154768 -0.550803 -0.058161 0.832606 -0.723976 -0.439369 -0.531803 0.426993 -0.890912 0.154768 -0.541790 -0.115027 0.832606 -0.673940 -0.512827 -0.531803 0.518015 -0.841253 0.154768 -0.526750 -0.171177 0.832606 -0.616480 -0.580636 -0.531803 0.603332 -0.782328 0.154768 -0.505908 -0.225442 0.832606 -0.552872 -0.641497 -0.531803 0.681287 -0.715468 0.154768 -0.479771 -0.276743 0.832606 -0.482593 -0.695909 -0.531803 0.752521 -0.640124 0.154768 -0.448124 -0.325503 0.832606 -0.406999 -0.742656 -0.531803 0.815466 -0.557729 0.154768 -0.411541 -0.370677 0.832606 -0.326922 -0.781222 -0.531803 0.869429 -0.469190 0.154768 -0.370425 -0.411768 0.832606 -0.244055 -0.810940 -0.531803 0.913440 -0.376397 0.154768 -0.325677 -0.447998 0.832606 -0.157718 -0.832052 -0.531803 0.947858 -0.278589 0.154768 -0.276930 -0.479663 0.832606 -0.069645 -0.844000 -0.531803 0.971836 -0.177713 0.154768 -0.225133 -0.506046 0.832606 0.018349 -0.846670 -0.531803 0.985034 -0.075864 0.154768 -0.171382 -0.526683 0.832606 0.106985 -0.840083 -0.531803 0.987560 0.027793 0.154768 -0.115238 -0.541745 0.832606 0.194443 -0.824244 -0.531803 0.979208 0.131143 0.154768 -0.057825 -0.550839 0.832606 0.279107 -0.799553 -0.531803 0.960260 0.232267 0.154768 -0.000226 -0.553866 0.832606 0.361369 -0.765897 -0.531803 0.930628 0.331630 0.154768 0.057825 -0.550839 0.832606 0.439651 -0.723805 -0.531803 0.890746 0.427340 0.154768 0.115238 -0.541745 0.832606 0.513089 -0.673740 -0.531803 0.841052 0.518343 0.154768 0.171382 -0.526683 0.832606 0.580259 -0.616835 -0.531803 0.782697 0.602854 0.154768 0.225133 -0.506046 0.832606 0.641712 -0.552622 -0.531803 0.715203 0.681566 0.154768 0.276930 -0.479663 0.832606 0.696097 -0.482323 -0.531803 0.639831 0.752770 0.154768 0.325677 -0.447998 0.832606 0.742407 -0.407453 -0.531803 0.558227 0.815126 0.154768 0.370425 -0.411768 0.832606 0.781022 -0.327399 -0.531803 0.469721 0.869143 0.154768 0.411541 -0.370677 0.832606 0.811035 -0.243739 -0.531803 0.376042 0.913586 0.154768 0.448124 -0.325503 0.832606 0.832114 -0.157395 -0.531803 0.278221 0.947966 0.154768 0.479771 -0.276743 0.832606 0.843957 -0.070160 -0.531803 0.178306 0.971727 0.154768 0.505908 -0.225442 0.832606 0.846662 0.018679 -0.531803 0.075480 0.985063 0.154768 0.526750 -0.171177 0.832606 0.840042 0.107312 -0.531803 -0.028177 0.987549 0.154768 0.541790 -0.115027 0.832606 0.824363 0.193939 -0.531803 -0.130545 0.979288 0.154768 0.550803 -0.058161 0.832606 0.799496 0.279270 -0.531803 -0.232462 0.960213 0.154768 0.553866 -0.000113 0.832606 0.765823 0.361525 -0.531803 -0.331819 0.930561 0.154768 0.550827 0.057937 0.832606 0.723715 0.439798 -0.531803 -0.427521 0.890658 0.154768 0.541721 0.115348 0.832606 0.674148 0.512552 -0.531803 -0.517673 0.841464 0.154768 0.526820 0.170963 0.832606 0.616716 0.580385 -0.531803 -0.603013 0.782574 0.154768 0.506000 0.225236 0.832606 0.552491 0.641825 -0.531803 -0.681711 0.715064 0.154768 0.479607 0.277028 0.832606 0.482181 0.696195 -0.531803 -0.752901 0.639678 0.154768 0.447931 0.325768 0.832606 0.407302 0.742490 -0.531803 -0.815239 0.558061 0.154768 0.411692 0.370509 0.832606 0.327240 0.781089 -0.531803 -0.869238 0.469544 0.154768 0.370593 0.411617 0.832606 0.243574 0.811084 -0.531803 -0.913662 0.375856 0.154768 0.325411 0.448190 0.832606 0.158057 0.831988 -0.531803 -0.947744 0.278975 0.154768 0.277125 0.479551 0.832606 0.069989 0.843971 -0.531803 -0.971763 0.178109 0.154768 0.225339 0.505954 0.832606 -0.018851 0.846659 -0.531803 -0.985079 0.075280 0.154768 0.171070 0.526785 0.832606 -0.107483 0.840020 -0.531803 -0.987543 -0.028378 0.154768 0.114917 0.541813 0.832606 -0.194107 0.824323 -0.531803 -0.979261 -0.130744 0.154768 0.058049 0.550815 0.832606 -0.279433 0.799439 -0.531803 -0.960165 -0.232658 0.154768 0.000000 0.553866 0.832606 -0.361681 0.765750 -0.531803 -0.930493 -0.332009 0.154768 -0.058049 0.550815 0.832606 -0.439221 0.724065 -0.531803 -0.890999 -0.426812 0.154768 -0.114917 0.541813 0.832606 -0.512690 0.674044 -0.531803 -0.841359 -0.517844 0.154768 -0.171070 0.526785 0.832606 -0.580511 0.616598 -0.531803 -0.782451 -0.603172 0.154768 -0.225339 0.505954 0.832606 -0.641937 0.552361 -0.531803 -0.714925 -0.681857 0.154768 -0.277125 0.479551 0.832606 -0.695811 0.482735 -0.531803 -0.640277 -0.752391 0.154768 -0.325411 0.448190 0.832606 -0.742573 0.407150 -0.531803 -0.557895 -0.815353 0.154768 -0.370593 0.411617 0.832606 -0.781156 0.327081 -0.531803 -0.469367 -0.869334 0.154768 -0.411692 0.370509 0.832606 -0.810890 0.244220 -0.531803 -0.376583 -0.913363 0.154768 -0.447931 0.325768 0.832606 -0.832020 0.157888 -0.531803 -0.278782 -0.947801 0.154768 -0.479607 0.277028 0.832606 -0.843986 0.069817 -0.531803 -0.177911 -0.971800 0.154768 -0.506000 0.225236 0.832606 -0.846655 -0.019024 -0.531803 -0.075079 -0.985094 0.154768 -0.526820 0.170963 0.832606 -0.840105 -0.106814 -0.531803 0.027592 -0.987565 0.154768 -0.541721 0.115348 0.832606 -0.824283 -0.194275 -0.531803 0.130944 -0.979235 0.154768 -0.550827 0.057937 0.832606 0.181557 0.166061 -0.969258 0.030774 -0.986115 -0.163185 -0.982899 -0.000200 -0.184147 0.163153 0.184175 -0.969258 0.133956 -0.977459 -0.163185 -0.977464 -0.103214 -0.184147 0.143152 0.200117 -0.969258 0.234705 -0.958272 -0.163185 -0.961468 -0.204129 -0.184147 0.121390 0.214018 -0.969258 0.333846 -0.928395 -0.163185 -0.934779 -0.303774 -0.184147 0.098291 0.225562 -0.969258 0.429310 -0.888293 -0.163185 -0.897793 -0.400072 -0.184147 0.074343 0.234547 -0.969258 0.519206 -0.838925 -0.163185 -0.851409 -0.491113 -0.184147 0.049352 0.241047 -0.969258 0.604272 -0.779889 -0.163185 -0.795248 -0.577642 -0.184147 0.023816 0.244892 -0.969258 0.682682 -0.712261 -0.163185 -0.730327 -0.657808 -0.184147 -0.001981 0.246039 -0.969258 0.753572 -0.636789 -0.163185 -0.657362 -0.730729 -0.184147 -0.027513 0.244504 -0.969258 0.815607 -0.555117 -0.163185 -0.577951 -0.795023 -0.184147 -0.052987 0.240274 -0.969258 0.869296 -0.466579 -0.163185 -0.491444 -0.851218 -0.184147 -0.077878 0.233397 -0.969258 0.913409 -0.372901 -0.163185 -0.399524 -0.898037 -0.184147 -0.101686 0.224052 -0.969258 0.947185 -0.276063 -0.163185 -0.304138 -0.934660 -0.184147 -0.124609 0.212160 -0.969258 0.970902 -0.175270 -0.163185 -0.204503 -0.961389 -0.184147 -0.146158 0.197932 -0.969258 0.983925 -0.072547 -0.163185 -0.102617 -0.977527 -0.184147 -0.165950 0.181659 -0.969258 0.986134 0.030171 -0.163185 -0.000400 -0.982899 -0.184147 -0.184075 0.163266 -0.969258 0.977541 0.133359 -0.163185 0.102617 -0.977527 -0.184147 -0.200173 0.143074 -0.969258 0.958180 0.235078 -0.163185 0.204503 -0.961389 -0.184147 -0.214066 0.121306 -0.969258 0.928265 0.334207 -0.163185 0.304138 -0.934660 -0.184147 -0.225502 0.098428 -0.969258 0.888555 0.428767 -0.163185 0.399524 -0.898037 -0.184147 -0.234576 0.074252 -0.969258 0.838723 0.519533 -0.163185 0.491444 -0.851218 -0.184147 -0.241066 0.049258 -0.969258 0.779653 0.604575 -0.163185 0.577951 -0.795023 -0.184147 -0.244877 0.023966 -0.969258 0.712678 0.682247 -0.163185 0.657362 -0.730729 -0.184147 -0.246041 -0.001831 -0.969258 0.637249 0.753183 -0.163185 0.730327 -0.657808 -0.184147 -0.244494 -0.027608 -0.969258 0.554800 0.815823 -0.163185 0.795248 -0.577642 -0.184147 -0.240254 -0.053080 -0.969258 0.466241 0.869477 -0.163185 0.851409 -0.491113 -0.184147 -0.233445 -0.077735 -0.969258 0.373459 0.913181 -0.163185 0.897793 -0.400072 -0.184147 -0.224012 -0.101773 -0.969258 0.275694 0.947293 -0.163185 0.934779 -0.303774 -0.184147 -0.212112 -0.124691 -0.969258 0.174893 0.970970 -0.163185 0.961468 -0.204129 -0.184147 -0.198021 -0.146037 -0.969258 0.073149 0.983880 -0.163185 0.977464 -0.103214 -0.184147 -0.181625 -0.165987 -0.969258 -0.030372 0.986128 -0.163185 0.982899 -0.000200 -0.184147 -0.163228 -0.184108 -0.969258 -0.133558 0.977514 -0.163185 0.977506 0.102816 -0.184147 -0.143033 -0.200202 -0.969258 -0.235273 0.958132 -0.163185 0.961347 0.204699 -0.184147 -0.121477 -0.213969 -0.969258 -0.333468 0.928531 -0.163185 0.934902 0.303393 -0.184147 -0.098382 -0.225522 -0.969258 -0.428948 0.888467 -0.163185 0.897956 0.399707 -0.184147 -0.074204 -0.234591 -0.969258 -0.519703 0.838617 -0.163185 0.851118 0.491617 -0.184147 -0.049209 -0.241076 -0.969258 -0.604734 0.779530 -0.163185 0.794906 0.578113 -0.184147 -0.023916 -0.244882 -0.969258 -0.682392 0.712539 -0.163185 0.730595 0.657511 -0.184147 0.001881 -0.246040 -0.969258 -0.753313 0.637095 -0.163185 0.657660 0.730461 -0.184147 0.027657 -0.244488 -0.969258 -0.815936 0.554634 -0.163185 0.577480 0.795366 -0.184147 0.052889 -0.240296 -0.969258 -0.869106 0.466933 -0.163185 0.491791 0.851018 -0.184147 0.077782 -0.233429 -0.969258 -0.913257 0.373273 -0.163185 0.399890 0.897874 -0.184147 0.101819 -0.223991 -0.969258 -0.947349 0.275501 -0.163185 0.303584 0.934841 -0.184147 0.124734 -0.212086 -0.969258 -0.971006 0.174695 -0.163185 0.203934 0.961510 -0.184147 0.146078 -0.197992 -0.969258 -0.983895 0.072948 -0.163185 0.103015 0.977485 -0.184147 0.166024 -0.181591 -0.969258 -0.986122 -0.030573 -0.163185 0.000000 0.982899 -0.184147 0.184142 -0.163191 -0.969258 -0.977486 -0.133757 -0.163185 -0.103015 0.977485 -0.184147 0.200088 -0.143193 -0.969258 -0.958319 -0.234510 -0.163185 -0.203934 0.961510 -0.184147 0.213994 -0.121433 -0.969258 -0.928463 -0.333657 -0.163185 -0.303584 0.934841 -0.184147 0.225542 -0.098336 -0.969258 -0.888380 -0.429129 -0.163185 -0.399890 0.897874 -0.184147 0.234606 -0.074156 -0.969258 -0.838512 -0.519874 -0.163185 -0.491791 0.851018 -0.184147 0.241037 -0.049401 -0.969258 -0.780011 -0.604113 -0.163185 -0.577480 0.795366 -0.184147 0.244887 -0.023866 -0.969258 -0.712400 -0.682537 -0.163185 -0.657660 0.730461 -0.184147 0.246040 0.001931 -0.969258 -0.636942 -0.753443 -0.163185 -0.730595 0.657511 -0.184147 0.244510 0.027463 -0.969258 -0.555284 -0.815494 -0.163185 -0.794906 0.578113 -0.184147 0.240285 0.052938 -0.969258 -0.466756 -0.869201 -0.163185 -0.851118 0.491617 -0.184147 0.233413 0.077830 -0.969258 -0.373087 -0.913333 -0.163185 -0.897956 0.399707 -0.184147 0.223971 0.101865 -0.969258 -0.275308 -0.947405 -0.163185 -0.934902 0.303393 -0.184147 0.212186 0.124565 -0.969258 -0.175468 -0.970867 -0.163185 -0.961347 0.204699 -0.184147 0.197962 0.146118 -0.969258 -0.072748 -0.983910 -0.163185 -0.977506 0.102816 -0.184147 0.099957 -0.278453 -0.955234 -0.028770 -0.960450 0.276962 -0.994576 -0.000203 -0.104015 0.128591 -0.266443 -0.955234 0.072051 -0.958176 0.276962 -0.989077 -0.104440 -0.104015 0.155556 -0.251654 -0.955234 0.171132 -0.945519 0.276962 -0.972891 -0.206554 -0.104015 0.181074 -0.233964 -0.955234 0.269287 -0.922375 0.276962 -0.945884 -0.307383 -0.104015 0.204598 -0.213698 -0.955234 0.364475 -0.889072 0.276962 -0.908459 -0.404825 -0.104015 0.225677 -0.191303 -0.955234 0.454803 -0.846431 0.276962 -0.861524 -0.496948 -0.104015 0.244484 -0.166597 -0.955234 0.541010 -0.794103 0.276962 -0.804696 -0.584504 -0.104015 0.260599 -0.140056 -0.955234 0.621258 -0.733028 0.276962 -0.739004 -0.665623 -0.104015 0.273842 -0.111972 -0.955234 0.694663 -0.663879 0.276962 -0.665172 -0.739410 -0.104015 0.283987 -0.082939 -0.955234 0.759829 -0.588177 0.276962 -0.584817 -0.804468 -0.104015 0.291115 -0.052718 -0.955234 0.817289 -0.505302 0.276962 -0.497283 -0.861331 -0.104015 0.295037 -0.021917 -0.955234 0.865748 -0.416861 0.276962 -0.404270 -0.908706 -0.104015 0.295718 0.008830 -0.955234 0.904345 -0.324733 0.276962 -0.307751 -0.945764 -0.104015 0.293164 0.039775 -0.955234 0.933399 -0.228163 0.276962 -0.206933 -0.972810 -0.104015 0.287381 0.070282 -0.955234 0.952171 -0.129080 0.276962 -0.103836 -0.989141 -0.104015 0.278514 0.099787 -0.955234 0.960432 -0.029357 0.276962 -0.000405 -0.994576 -0.104015 0.266521 0.128428 -0.955234 0.958219 0.071465 0.276962 0.103836 -0.989141 -0.104015 0.251593 0.155654 -0.955234 0.945452 0.171500 0.276962 0.206933 -0.972810 -0.104015 0.233894 0.181166 -0.955234 0.922271 0.269646 0.276962 0.307751 -0.945764 -0.104015 0.213823 0.204468 -0.955234 0.889295 0.363932 0.276962 0.404270 -0.908706 -0.104015 0.191216 0.225752 -0.955234 0.846254 0.455132 0.276962 0.497283 -0.861331 -0.104015 0.166502 0.244549 -0.955234 0.793893 0.541319 0.276962 0.584817 -0.804468 -0.104015 0.140215 0.260513 -0.955234 0.733407 0.620810 0.276962 0.665172 -0.739410 -0.104015 0.112139 0.273774 -0.955234 0.664303 0.694258 0.276962 0.739004 -0.665623 -0.104015 0.082828 0.284019 -0.955234 0.587881 0.760058 0.276962 0.804696 -0.584504 -0.104015 0.052605 0.291136 -0.955234 0.504984 0.817486 0.276962 0.861524 -0.496948 -0.104015 0.022097 0.295024 -0.955234 0.417390 0.865493 0.276962 0.908459 -0.404825 -0.104015 -0.008945 0.295715 -0.955234 0.324381 0.904471 0.276962 0.945884 -0.307383 -0.104015 -0.039889 0.293149 -0.955234 0.227800 0.933488 0.276962 0.972891 -0.206554 -0.104015 -0.070106 0.287424 -0.955234 0.129661 0.952092 0.276962 0.989077 -0.104440 -0.104015 -0.099844 0.278493 -0.955234 0.029161 0.960438 0.276962 0.994576 -0.000203 -0.104015 -0.128482 0.266495 -0.955234 -0.071660 0.958205 0.276962 0.989119 0.104037 -0.104015 -0.155705 0.251561 -0.955234 -0.171693 0.945417 0.276962 0.972768 0.207131 -0.104015 -0.180979 0.234038 -0.955234 -0.268911 0.922485 0.276962 0.946009 0.306998 -0.104015 -0.204511 0.213781 -0.955234 -0.364113 0.889221 0.276962 0.908624 0.404455 -0.104015 -0.225791 0.191170 -0.955234 -0.455304 0.846162 0.276962 0.861230 0.497458 -0.104015 -0.244583 0.166452 -0.955234 -0.541481 0.793782 0.276962 0.804349 0.584981 -0.104015 -0.260542 0.140162 -0.955234 -0.620960 0.733281 0.276962 0.739275 0.665322 -0.104015 -0.273797 0.112084 -0.955234 -0.694393 0.664161 0.276962 0.665473 0.739139 -0.104015 -0.284036 0.082770 -0.955234 -0.760177 0.587726 0.276962 0.584341 0.804815 -0.104015 -0.291094 0.052837 -0.955234 -0.817083 0.505635 0.276962 0.497633 0.861128 -0.104015 -0.295028 0.022037 -0.955234 -0.865578 0.417214 0.276962 0.404640 0.908541 -0.104015 -0.295713 -0.009005 -0.955234 -0.904537 0.324197 0.276962 0.307190 0.945947 -0.104015 -0.293141 -0.039949 -0.955234 -0.933534 0.227610 0.276962 0.206356 0.972933 -0.104015 -0.287410 -0.070165 -0.955234 -0.952119 0.129467 0.276962 0.104239 0.989098 -0.104015 -0.278473 -0.099901 -0.955234 -0.960444 0.028965 0.276962 0.000000 0.994576 -0.104015 -0.266469 -0.128536 -0.955234 -0.958190 -0.071856 0.276962 -0.104239 0.989098 -0.104015 -0.251685 -0.155505 -0.955234 -0.945554 -0.170940 0.276962 -0.206356 0.972933 -0.104015 -0.234001 -0.181027 -0.955234 -0.922430 -0.269099 0.276962 -0.307190 0.945947 -0.104015 -0.213740 -0.204555 -0.955234 -0.889147 -0.364294 0.276962 -0.404640 0.908541 -0.104015 -0.191124 -0.225830 -0.955234 -0.846069 -0.455477 0.276962 -0.497633 0.861128 -0.104015 -0.166647 -0.244451 -0.955234 -0.794213 -0.540848 0.276962 -0.584341 0.804815 -0.104015 -0.140109 -0.260570 -0.955234 -0.733154 -0.621109 0.276962 -0.665473 0.739139 -0.104015 -0.112028 -0.273819 -0.955234 -0.664020 -0.694528 0.276962 -0.739275 0.665322 -0.104015 -0.082997 -0.283970 -0.955234 -0.588331 -0.759709 0.276962 -0.804349 0.584981 -0.104015 -0.052777 -0.291105 -0.955234 -0.505468 -0.817186 0.276962 -0.861230 0.497458 -0.104015 -0.021977 -0.295033 -0.955234 -0.417037 -0.865663 0.276962 -0.908624 0.404455 -0.104015 0.009066 -0.295711 -0.955234 -0.324013 -0.904603 0.276962 -0.946009 0.306998 -0.104015 0.039715 -0.293172 -0.955234 -0.228353 -0.933352 0.276962 -0.972768 0.207131 -0.104015 0.070223 -0.287395 -0.955234 -0.129273 -0.952145 0.276962 -0.989119 0.104037 -0.104015 -0.188148 -0.623532 0.758820 -0.150305 0.781798 0.605145 -0.970571 -0.000198 -0.240813 -0.121761 -0.639817 0.758820 -0.231415 0.761739 0.605145 -0.965205 -0.101919 -0.240813 -0.054682 -0.649001 0.758820 -0.309243 0.733599 0.605145 -0.949410 -0.201569 -0.240813 0.013639 -0.651157 0.758820 -0.384426 0.697148 0.605145 -0.923055 -0.299964 -0.240813 0.081810 -0.646142 0.758820 -0.455375 0.653018 0.605145 -0.886533 -0.395055 -0.240813 0.148446 -0.634158 0.758820 -0.520706 0.602216 0.605145 -0.840731 -0.484954 -0.240813 0.214092 -0.615107 0.758820 -0.580955 0.544326 0.605145 -0.785274 -0.570397 -0.240813 0.277381 -0.589281 0.758820 -0.634805 0.480440 0.605145 -0.721168 -0.649558 -0.240813 0.337614 -0.556964 0.758820 -0.681662 0.411262 0.605145 -0.649118 -0.721564 -0.240813 0.393610 -0.518906 0.758820 -0.720673 0.338274 0.605145 -0.570703 -0.785052 -0.240813 0.445827 -0.474795 0.758820 -0.752158 0.260880 0.605145 -0.485281 -0.840543 -0.240813 0.493134 -0.425454 0.758820 -0.775357 0.180611 0.605145 -0.394513 -0.886774 -0.240813 0.534637 -0.371962 0.758820 -0.789917 0.099144 0.605145 -0.300323 -0.922938 -0.240813 0.570676 -0.313879 0.758820 -0.795958 0.015809 0.605145 -0.201939 -0.949331 -0.240813 0.600430 -0.252340 0.758820 -0.793231 -0.067701 0.605145 -0.101330 -0.965267 -0.240813 0.623417 -0.188529 0.758820 -0.781889 -0.149827 0.605145 -0.000395 -0.970571 -0.240813 0.639743 -0.122152 0.758820 -0.761880 -0.230950 0.605145 0.101330 -0.965267 -0.240813 0.649022 -0.054429 0.758820 -0.733479 -0.309528 0.605145 0.201939 -0.949331 -0.240813 0.651152 0.013893 0.758820 -0.696999 -0.384697 0.605145 0.300323 -0.922938 -0.240813 0.646192 0.081415 0.758820 -0.653296 -0.454976 0.605145 0.394513 -0.886774 -0.240813 0.634100 0.148692 0.758820 -0.602014 -0.520940 0.605145 0.485281 -0.840543 -0.240813 0.615023 0.214332 0.758820 -0.544100 -0.581167 0.605145 0.570703 -0.785052 -0.240813 0.589450 0.277021 0.758820 -0.480827 -0.634511 0.605145 0.649118 -0.721564 -0.240813 0.557170 0.337274 0.758820 -0.411678 -0.681411 0.605145 0.721168 -0.649558 -0.240813 0.518753 0.393812 0.758820 -0.337994 -0.720805 0.605145 0.785274 -0.570397 -0.240813 0.474621 0.446012 0.758820 -0.260587 -0.752259 0.605145 0.840731 -0.484954 -0.240813 0.425755 0.492874 0.758820 -0.181085 -0.775247 0.605145 0.886533 -0.395055 -0.240813 0.371754 0.534781 0.758820 -0.098836 -0.789956 0.605145 0.923055 -0.299964 -0.240813 0.313657 0.570799 0.758820 -0.015499 -0.795964 0.605145 0.949410 -0.201569 -0.240813 0.252707 0.600276 0.758820 0.067216 -0.793272 0.605145 0.965205 -0.101919 -0.240813 0.188402 0.623456 0.758820 0.149986 -0.781859 0.605145 0.970571 -0.000198 -0.240813 0.122021 0.639768 0.758820 0.231105 -0.761833 0.605145 0.965247 0.101526 -0.240813 0.054297 0.649033 0.758820 0.309678 -0.733416 0.605145 0.949290 0.202132 -0.240813 -0.013374 0.651163 0.758820 0.384142 -0.697305 0.605145 0.923177 0.299588 -0.240813 -0.081547 0.646175 0.758820 0.455109 -0.653204 0.605145 0.886694 0.394694 -0.240813 -0.148822 0.634069 0.758820 0.521063 -0.601907 0.605145 0.840444 0.485452 -0.240813 -0.214457 0.614980 0.758820 0.581277 -0.543981 0.605145 0.784936 0.570863 -0.240813 -0.277141 0.589394 0.758820 0.634609 -0.480698 0.605145 0.721432 0.649265 -0.240813 -0.337387 0.557101 0.758820 0.681494 -0.411539 0.605145 0.649411 0.721300 -0.240813 -0.393917 0.518672 0.758820 0.720873 -0.337847 0.605145 0.570237 0.785390 -0.240813 -0.445634 0.474976 0.758820 0.752051 -0.261186 0.605145 0.485623 0.840345 -0.240813 -0.492960 0.425655 0.758820 0.775283 -0.180927 0.605145 0.394874 0.886613 -0.240813 -0.534857 0.371645 0.758820 0.789976 -0.098675 0.605145 0.299776 0.923116 -0.240813 -0.570862 0.313541 0.758820 0.795967 -0.015337 0.605145 0.201376 0.949451 -0.240813 -0.600327 0.252584 0.758820 0.793259 0.067377 0.605145 0.101723 0.965226 -0.240813 -0.623494 0.188275 0.758820 0.781828 0.150146 0.605145 0.000000 0.970571 -0.240813 -0.639793 0.121891 0.758820 0.761786 0.231260 0.605145 -0.101723 0.965226 -0.240813 -0.648989 0.054814 0.758820 0.733662 0.309093 0.605145 -0.201376 0.949451 -0.240813 -0.651160 -0.013507 0.758820 0.697227 0.384284 0.605145 -0.299776 0.923116 -0.240813 -0.646158 -0.081679 0.758820 0.653111 0.455242 0.605145 -0.394874 0.886613 -0.240813 -0.634039 -0.148951 0.758820 0.601801 0.521186 0.605145 -0.485623 0.840345 -0.240813 -0.615150 -0.213967 0.758820 0.544444 0.580844 0.605145 -0.570237 0.785390 -0.240813 -0.589337 -0.277261 0.758820 0.480569 0.634707 0.605145 -0.649411 0.721300 -0.240813 -0.557032 -0.337501 0.758820 0.411400 0.681578 0.605145 -0.721432 0.649265 -0.240813 -0.518986 -0.393504 0.758820 0.338421 0.720604 0.605145 -0.784936 0.570863 -0.240813 -0.474886 -0.445730 0.758820 0.261033 0.752104 0.605145 -0.840444 0.485452 -0.240813 -0.425554 -0.493047 0.758820 0.180769 0.775320 0.605145 -0.886694 0.394694 -0.240813 -0.371536 -0.534933 0.758820 0.098515 0.789996 0.605145 -0.923177 0.299588 -0.240813 -0.313996 -0.570613 0.758820 0.015971 0.795955 0.605145 -0.949290 0.202132 -0.240813 -0.252462 -0.600379 0.758820 -0.067539 0.793245 0.605145 -0.965247 0.101526 -0.240813 -0.026889 -0.973537 -0.226944 0.115427 -0.228531 0.966670 -0.992952 -0.000202 0.118517 0.075292 -0.970993 -0.226944 0.138743 -0.215175 0.966670 -0.987462 -0.104270 0.118517 0.175687 -0.957930 -0.226944 0.160331 -0.199609 0.966670 -0.971302 -0.206217 0.118517 0.275117 -0.934241 -0.226944 0.180368 -0.181706 0.966670 -0.944340 -0.306881 0.118517 0.371517 -0.900262 -0.226944 0.198419 -0.161801 0.966670 -0.906976 -0.404164 0.118517 0.462969 -0.856829 -0.226944 0.214144 -0.140329 0.966670 -0.860118 -0.496136 0.118517 0.550220 -0.803588 -0.226944 0.227672 -0.117112 0.966670 -0.803382 -0.583550 0.118517 0.631412 -0.741495 -0.226944 0.238692 -0.092605 0.966670 -0.737797 -0.664537 0.118517 0.705649 -0.671235 -0.226944 0.247083 -0.067079 0.966670 -0.664086 -0.738203 0.118517 0.771519 -0.594353 -0.226944 0.252712 -0.041066 0.966670 -0.583863 -0.803155 0.118517 0.829562 -0.510219 -0.226944 0.255624 -0.014354 0.966670 -0.496471 -0.859925 0.118517 0.878468 -0.420465 -0.226944 0.255721 0.012517 0.966670 -0.403610 -0.907222 0.118517 0.917371 -0.326997 -0.226944 0.253040 0.038996 0.966670 -0.307248 -0.944220 0.118517 0.946590 -0.229049 -0.226944 0.247559 0.065302 0.966670 -0.206595 -0.971222 0.118517 0.965383 -0.128578 -0.226944 0.239351 0.090888 0.966670 -0.103666 -0.987526 0.118517 0.973520 -0.027484 -0.226944 0.228602 0.115287 0.966670 -0.000404 -0.992952 0.118517 0.971039 0.074699 -0.226944 0.215260 0.138611 0.966670 0.103666 -0.987526 0.118517 0.957862 0.176060 -0.226944 0.199547 0.160408 0.966670 0.206595 -0.971222 0.118517 0.934134 0.275481 -0.226944 0.181636 0.180439 0.966670 0.307248 -0.944220 0.118517 0.900489 0.370967 -0.226944 0.161922 0.198320 0.966670 0.403610 -0.907222 0.118517 0.856649 0.463302 -0.226944 0.140245 0.214198 0.966670 0.496471 -0.859925 0.118517 0.803374 0.550533 -0.226944 0.117023 0.227717 0.966670 0.583863 -0.803155 0.118517 0.741881 0.630959 -0.226944 0.092751 0.238636 0.966670 0.664086 -0.738203 0.118517 0.671666 0.705238 -0.226944 0.067230 0.247042 0.966670 0.737797 -0.664537 0.118517 0.594053 0.771750 -0.226944 0.040967 0.252728 0.966670 0.803382 -0.583550 0.118517 0.509896 0.829760 -0.226944 0.014254 0.255630 0.966670 0.860118 -0.496136 0.118517 0.421002 0.878211 -0.226944 -0.012360 0.255728 0.966670 0.906976 -0.404164 0.118517 0.326640 0.917498 -0.226944 -0.039095 0.253024 0.966670 0.944340 -0.306881 0.118517 0.228681 0.946679 -0.226944 -0.065398 0.247534 0.966670 0.971302 -0.206217 0.118517 0.129168 0.965304 -0.226944 -0.090742 0.239407 0.966670 0.987462 -0.104270 0.118517 0.027286 0.973526 -0.226944 -0.115334 0.228578 0.966670 0.992952 -0.000202 0.118517 -0.074897 0.971024 -0.226944 -0.138655 0.215231 0.966670 0.987505 0.103867 0.118517 -0.176255 0.957826 -0.226944 -0.160449 0.199514 0.966670 0.971180 0.206793 0.118517 -0.274737 0.934353 -0.226944 -0.180294 0.181779 0.966670 0.944465 0.306496 0.118517 -0.371151 0.900413 -0.226944 -0.198353 0.161882 0.966670 0.907140 0.403795 0.118517 -0.463476 0.856555 -0.226944 -0.214227 0.140202 0.966670 0.859824 0.496646 0.118517 -0.550697 0.803262 -0.226944 -0.227741 0.116977 0.966670 0.803036 0.584026 0.118517 -0.631110 0.741753 -0.226944 -0.238654 0.092703 0.966670 0.738068 0.664236 0.118517 -0.705375 0.671522 -0.226944 -0.247056 0.067179 0.966670 0.664386 0.737933 0.118517 -0.771871 0.593896 -0.226944 -0.252736 0.040916 0.966670 0.583387 0.803501 0.118517 -0.829354 0.510557 -0.226944 -0.255618 0.014458 0.966670 0.496821 0.859722 0.118517 -0.878296 0.420823 -0.226944 -0.255726 -0.012413 0.966670 0.403980 0.907058 0.118517 -0.917565 0.326453 -0.226944 -0.253016 -0.039146 0.966670 0.306689 0.944402 0.118517 -0.946726 0.228488 -0.226944 -0.247520 -0.065448 0.966670 0.206019 0.971344 0.118517 -0.965330 0.128971 -0.226944 -0.239388 -0.090790 0.966670 0.104068 0.987483 0.118517 -0.973531 0.027088 -0.226944 -0.228555 -0.115380 0.966670 0.000000 0.992952 0.118517 -0.971008 -0.075095 -0.226944 -0.215203 -0.138699 0.966670 -0.104068 0.987483 0.118517 -0.957966 -0.175492 -0.226944 -0.199642 -0.160290 0.966670 -0.206019 0.971344 0.118517 -0.934297 -0.274927 -0.226944 -0.181743 -0.180331 0.966670 -0.306689 0.944402 0.118517 -0.900338 -0.371334 -0.226944 -0.161842 -0.198386 0.966670 -0.403980 0.907058 0.118517 -0.856461 -0.463651 -0.226944 -0.140158 -0.214256 0.966670 -0.496821 0.859722 0.118517 -0.803700 -0.550057 -0.226944 -0.117158 -0.227648 0.966670 -0.583387 0.803501 0.118517 -0.741624 -0.631261 -0.226944 -0.092654 -0.238673 0.966670 -0.664386 0.737933 0.118517 -0.671379 -0.705512 -0.226944 -0.067129 -0.247070 0.966670 -0.738068 0.664236 0.118517 -0.594510 -0.771398 -0.226944 -0.041117 -0.252704 0.966670 -0.803036 0.584026 0.118517 -0.510388 -0.829458 -0.226944 -0.014406 -0.255621 0.966670 -0.859824 0.496646 0.118517 -0.420644 -0.878382 -0.226944 0.012465 -0.255723 0.966670 -0.907140 0.403795 0.118517 -0.326267 -0.917631 -0.226944 0.039198 -0.253008 0.966670 -0.944465 0.306496 0.118517 -0.229242 -0.946544 -0.226944 0.065251 -0.247572 0.966670 -0.971180 0.206793 0.118517 -0.128775 -0.965357 -0.226944 0.090839 -0.239370 0.966670 -0.987505 0.103867 0.118517 -0.340920 -0.863587 -0.371471 0.584143 -0.504200 0.636050 -0.736580 -0.000150 0.676350 -0.248532 -0.894562 -0.371471 0.633770 -0.440200 0.636050 -0.732508 -0.077348 0.676350 -0.154323 -0.915529 -0.371471 0.676044 -0.372029 0.636050 -0.720520 -0.152974 0.676350 -0.057519 -0.926661 -0.371471 0.711312 -0.299126 0.636050 -0.700519 -0.227647 0.676350 0.039919 -0.927586 -0.371471 0.738745 -0.222928 0.636050 -0.672802 -0.299813 0.676350 0.135998 -0.918430 -0.371471 0.757896 -0.145032 0.636050 -0.638043 -0.368038 0.676350 0.231507 -0.899118 -0.371471 0.768922 -0.064800 0.636050 -0.595956 -0.432882 0.676350 0.324466 -0.869903 -0.371471 0.771479 0.016145 0.636050 -0.547304 -0.492959 0.676350 0.413851 -0.831106 -0.371471 0.765538 0.096913 0.636050 -0.492624 -0.547605 0.676350 0.497894 -0.783652 -0.371471 0.751341 0.175862 0.636050 -0.433114 -0.595787 0.676350 0.577285 -0.727153 -0.371471 0.728771 0.253639 0.636050 -0.368286 -0.637899 0.676350 0.650316 -0.662645 -0.371471 0.698175 0.328623 0.636050 -0.299401 -0.672985 0.676350 0.715593 -0.591554 -0.371471 0.660287 0.399326 0.636050 -0.227919 -0.700431 0.676350 0.773651 -0.513296 -0.371471 0.614798 0.466330 0.636050 -0.153254 -0.720461 0.676350 0.823188 -0.429385 -0.371471 0.562538 0.528197 0.636050 -0.076901 -0.732555 0.676350 0.863379 -0.341448 -0.371471 0.504556 0.583835 0.636050 -0.000300 -0.736580 0.676350 0.894410 -0.249079 -0.371471 0.440588 0.633501 0.636050 0.076901 -0.732555 0.676350 0.915589 -0.153967 -0.371471 0.371766 0.676188 0.636050 0.153254 -0.720461 0.676350 0.926683 -0.057158 -0.371471 0.298849 0.711428 0.636050 0.227919 -0.700431 0.676350 0.927610 0.039352 -0.371471 0.223379 0.738608 0.636050 0.299401 -0.672985 0.676350 0.918377 0.136355 -0.371471 0.144737 0.757952 0.636050 0.368286 -0.637899 0.676350 0.899028 0.231857 -0.371471 0.064501 0.768947 0.636050 0.433114 -0.595787 0.676350 0.870101 0.323935 -0.371471 -0.015674 0.771489 0.636050 0.492624 -0.547605 0.676350 0.831358 0.413343 -0.371471 -0.096445 0.765597 0.636050 0.547304 -0.492959 0.676350 0.783458 0.498199 -0.371471 -0.176154 0.751272 0.636050 0.595956 -0.432882 0.676350 0.726929 0.577567 -0.371471 -0.253922 0.728673 0.636050 0.638043 -0.368038 0.676350 0.663042 0.649911 -0.371471 -0.328196 0.698375 0.636050 0.672802 -0.299813 0.676350 0.591275 0.715823 -0.371471 -0.399583 0.660132 0.636050 0.700519 -0.227647 0.676350 0.512995 0.773851 -0.371471 -0.466569 0.614617 0.636050 0.720520 -0.152974 0.676350 0.429888 0.822925 -0.371471 -0.527853 0.562860 0.636050 0.732508 -0.077348 0.676350 0.341272 0.863448 -0.371471 -0.583938 0.504438 0.636050 0.736580 -0.000150 0.676350 0.248897 0.894460 -0.371471 -0.633590 0.440459 0.636050 0.732539 0.077050 0.676350 0.153780 0.915621 -0.371471 -0.676264 0.371628 0.636050 0.720429 0.153401 0.676350 0.057896 0.926638 -0.371471 -0.711190 0.299415 0.636050 0.700612 0.227362 0.676350 -0.039541 0.927602 -0.371471 -0.738654 0.223228 0.636050 0.672924 0.299539 0.676350 -0.136542 0.918349 -0.371471 -0.757982 0.144583 0.636050 0.637824 0.368416 0.676350 -0.232040 0.898981 -0.371471 -0.768960 0.064345 0.636050 0.595699 0.433236 0.676350 -0.324112 0.870035 -0.371471 -0.771486 -0.015831 0.636050 0.547505 0.492736 0.676350 -0.413513 0.831274 -0.371471 -0.765577 -0.096601 0.636050 0.492847 0.547405 0.676350 -0.498359 0.783357 -0.371471 -0.751237 -0.176307 0.636050 0.432761 0.596044 0.676350 -0.576988 0.727388 -0.371471 -0.728875 -0.253342 0.636050 0.368546 0.637749 0.676350 -0.650046 0.662910 -0.371471 -0.698308 -0.328338 0.636050 0.299676 0.672863 0.676350 -0.715944 0.591129 -0.371471 -0.660050 -0.399718 0.636050 0.227504 0.700566 0.676350 -0.773955 0.512838 -0.371471 -0.614522 -0.466694 0.636050 0.152827 0.720551 0.676350 -0.823013 0.429720 -0.371471 -0.562753 -0.527968 0.636050 0.077199 0.732524 0.676350 -0.863518 0.341096 -0.371471 -0.504319 -0.584040 0.636050 0.000000 0.736580 0.676350 -0.894511 0.248715 -0.371471 -0.440330 -0.633680 0.636050 -0.077199 0.732524 0.676350 -0.915498 0.154509 -0.371471 -0.372166 -0.675968 0.636050 -0.152827 0.720551 0.676350 -0.926649 0.057708 -0.371471 -0.299270 -0.711251 0.636050 -0.227504 0.700566 0.676350 -0.927594 -0.039730 -0.371471 -0.223078 -0.738699 0.636050 -0.299676 0.672863 0.676350 -0.918321 -0.136729 -0.371471 -0.144428 -0.758011 0.636050 -0.368546 0.637749 0.676350 -0.899165 -0.231324 -0.371471 -0.064957 -0.768909 0.636050 -0.432761 0.596044 0.676350 -0.869969 -0.324289 -0.371471 0.015988 -0.771482 0.636050 -0.492847 0.547405 0.676350 -0.831190 -0.413682 -0.371471 0.096757 -0.765558 0.636050 -0.547505 0.492736 0.676350 -0.783753 -0.497735 -0.371471 0.175709 -0.751377 0.636050 -0.595699 0.433236 0.676350 -0.727271 -0.577137 -0.371471 0.253491 -0.728823 0.636050 -0.637824 0.368416 0.676350 -0.662777 -0.650181 -0.371471 0.328480 -0.698241 0.636050 -0.672924 0.299539 0.676350 -0.590983 -0.716064 -0.371471 0.399852 -0.659969 0.636050 -0.700612 0.227362 0.676350 -0.513454 -0.773547 -0.371471 0.466205 -0.614893 0.636050 -0.720429 0.153401 0.676350 -0.429553 -0.823100 -0.371471 0.528082 -0.562645 0.636050 -0.732539 0.077050 0.676350 0.431406 -0.496969 -0.752934 -0.246889 -0.867768 0.431305 -0.867718 -0.000177 -0.497057 0.481116 -0.449018 -0.752934 -0.154581 -0.888865 0.431305 -0.862920 -0.091119 -0.497057 0.525131 -0.396646 -0.752934 -0.061470 -0.900110 0.431305 -0.848799 -0.180209 -0.497057 0.563810 -0.339424 -0.752934 0.033206 -0.901595 0.431305 -0.825237 -0.268176 -0.497057 0.596279 -0.278463 -0.752934 0.127517 -0.893149 0.431305 -0.792585 -0.353190 -0.497057 0.621965 -0.215057 -0.752934 0.219548 -0.875085 0.431305 -0.751637 -0.433562 -0.497057 0.641079 -0.148686 -0.752934 0.310054 -0.847256 0.431305 -0.702057 -0.509951 -0.497057 0.653132 -0.080678 -0.752934 0.397145 -0.810094 0.431305 -0.644744 -0.580723 -0.497057 0.657990 -0.011781 -0.752934 0.479861 -0.764008 0.431305 -0.580329 -0.645099 -0.497057 0.655658 0.056591 -0.752934 0.556582 -0.710065 0.431305 -0.510224 -0.701859 -0.497057 0.646116 0.124997 -0.752934 0.627937 -0.647820 0.431305 -0.433854 -0.751468 -0.497057 0.629457 0.192026 -0.752934 0.692375 -0.578440 0.431305 -0.352706 -0.792801 -0.497057 0.606121 0.256334 -0.752934 0.748683 -0.503438 0.431305 -0.268497 -0.825132 -0.497057 0.575917 0.318448 -0.752934 0.797324 -0.422198 0.431305 -0.180539 -0.848729 -0.497057 0.539370 0.377054 -0.752934 0.837182 -0.336307 0.431305 -0.090592 -0.862976 -0.497057 0.497233 0.431103 -0.752934 0.867617 -0.247419 0.431305 -0.000353 -0.867718 -0.497057 0.449311 0.480842 -0.752934 0.888770 -0.155124 0.431305 0.090592 -0.862976 -0.497057 0.396441 0.525285 -0.752934 0.900133 -0.061120 0.431305 0.180539 -0.848729 -0.497057 0.339204 0.563942 -0.752934 0.901582 0.033557 0.431305 0.268497 -0.825132 -0.497057 0.278827 0.596108 -0.752934 0.893227 0.126971 0.431305 0.352706 -0.792801 -0.497057 0.214815 0.622048 -0.752934 0.875000 0.219888 0.431305 0.433854 -0.751468 -0.497057 0.148437 0.641137 -0.752934 0.847135 0.310384 0.431305 0.510224 -0.701859 -0.497057 0.081077 0.653082 -0.752934 0.810336 0.396650 0.431305 0.580329 -0.645099 -0.497057 0.012183 0.657983 -0.752934 0.764301 0.479395 0.431305 0.644744 -0.580723 -0.497057 -0.056846 0.655636 -0.752934 0.709848 0.556859 0.431305 0.702057 -0.509951 -0.497057 -0.125248 0.646067 -0.752934 0.647576 0.628189 0.431305 0.751637 -0.433562 -0.497057 -0.191641 0.629574 -0.752934 0.578863 0.692021 0.431305 0.792585 -0.353190 -0.497057 -0.256570 0.606021 -0.752934 0.503146 0.748879 0.431305 0.825237 -0.268176 -0.497057 -0.318672 0.575793 -0.752934 0.421887 0.797488 0.431305 0.848799 -0.180209 -0.497057 -0.376725 0.539600 -0.752934 0.336818 0.836976 0.431305 0.862920 -0.091119 -0.497057 -0.431204 0.497145 -0.752934 0.247242 0.867668 0.431305 0.867718 -0.000177 -0.497057 -0.480933 0.449214 -0.752934 0.154943 0.888802 0.431305 0.862958 0.090767 -0.497057 -0.525366 0.396334 -0.752934 0.060937 0.900146 0.431305 0.848692 0.180712 -0.497057 -0.563671 0.339653 -0.752934 -0.032839 0.901608 0.431305 0.825346 0.267840 -0.497057 -0.596165 0.278706 -0.752934 -0.127153 0.893201 0.431305 0.792729 0.352867 -0.497057 -0.622092 0.214688 -0.752934 -0.220067 0.874955 0.431305 0.751380 0.434007 -0.497057 -0.641167 0.148306 -0.752934 -0.310556 0.847072 0.431305 0.701755 0.510367 -0.497057 -0.653099 0.080944 -0.752934 -0.396815 0.810255 0.431305 0.644981 0.580461 -0.497057 -0.657985 0.012049 -0.752934 -0.479550 0.764204 0.431305 0.580592 0.644862 -0.497057 -0.655624 -0.056979 -0.752934 -0.557003 0.709735 0.431305 0.509808 0.702161 -0.497057 -0.646167 -0.124734 -0.752934 -0.627673 0.648076 0.431305 0.434160 0.751292 -0.497057 -0.629535 -0.191769 -0.752934 -0.692139 0.578722 0.431305 0.353029 0.792657 -0.497057 -0.605969 -0.256693 -0.752934 -0.748981 0.502994 0.431305 0.268008 0.825291 -0.497057 -0.575728 -0.318789 -0.752934 -0.797574 0.421725 0.431305 0.180036 0.848835 -0.497057 -0.539523 -0.376835 -0.752934 -0.837045 0.336648 0.431305 0.090943 0.862939 -0.497057 -0.497057 -0.431305 -0.752934 -0.867718 0.247066 0.431305 0.000000 0.867718 -0.497057 -0.449116 -0.481025 -0.752934 -0.888833 0.154762 0.431305 -0.090943 0.862939 -0.497057 -0.396752 -0.525050 -0.752934 -0.900097 0.061654 0.431305 -0.180036 0.848835 -0.497057 -0.339538 -0.563741 -0.752934 -0.901602 -0.033023 0.431305 -0.268008 0.825291 -0.497057 -0.278584 -0.596222 -0.752934 -0.893175 -0.127335 0.431305 -0.353029 0.792657 -0.497057 -0.214562 -0.622136 -0.752934 -0.874910 -0.220245 0.431305 -0.434160 0.751292 -0.497057 -0.148817 -0.641049 -0.752934 -0.847319 -0.309882 0.431305 -0.509808 0.702161 -0.497057 -0.080811 -0.653115 -0.752934 -0.810174 -0.396980 0.431305 -0.580592 0.644862 -0.497057 -0.011915 -0.657988 -0.752934 -0.764106 -0.479706 0.431305 -0.644981 0.580461 -0.497057 0.056457 -0.655669 -0.752934 -0.710178 -0.556438 0.431305 -0.701755 0.510367 -0.497057 0.124865 -0.646141 -0.752934 -0.647948 -0.627805 0.431305 -0.751380 0.434007 -0.497057 0.191898 -0.629496 -0.752934 -0.578581 -0.692257 0.431305 -0.792729 0.352867 -0.497057 0.256817 -0.605917 -0.752934 -0.502841 -0.749084 0.431305 -0.825346 0.267840 -0.497057 0.318331 -0.575982 -0.752934 -0.422360 -0.797238 0.431305 -0.848692 0.180712 -0.497057 0.376945 -0.539447 -0.752934 -0.336478 -0.837113 0.431305 -0.862958 0.090767 -0.497057 0.453049 -0.191912 0.870584 0.088429 0.981412 0.170325 -0.887089 -0.000181 0.461599 0.470668 -0.143372 0.870584 -0.014917 0.985275 0.170325 -0.882184 -0.093153 0.461599 0.483009 -0.093736 0.870584 -0.117121 0.978403 0.170325 -0.867747 -0.184231 0.461599 0.490173 -0.042597 0.870584 -0.219019 0.960739 0.170325 -0.843660 -0.274163 0.461599 0.491937 0.009011 0.870584 -0.318505 0.932493 0.170325 -0.810279 -0.361075 0.461599 0.488344 0.060032 0.870584 -0.413589 0.894390 0.170325 -0.768417 -0.443241 0.461599 0.479363 0.110883 0.870584 -0.505050 0.846117 0.170325 -0.717730 -0.521335 0.461599 0.465101 0.160513 0.870584 -0.590947 0.788525 0.170325 -0.659137 -0.593687 0.461599 0.445717 0.208375 0.870584 -0.670336 0.722246 0.170325 -0.593285 -0.659500 0.461599 0.421677 0.253520 0.870584 -0.741692 0.648755 0.170325 -0.521614 -0.717527 0.461599 0.392784 0.296319 0.870584 -0.805601 0.567447 0.170325 -0.443540 -0.768244 0.461599 0.359564 0.335853 0.870584 -0.860637 0.479889 0.170325 -0.360579 -0.810499 0.461599 0.322755 0.371366 0.870584 -0.905805 0.387951 0.170325 -0.274491 -0.843553 0.461599 0.282056 0.403148 0.870584 -0.941477 0.290880 0.170325 -0.184569 -0.867676 0.461599 0.238250 0.430489 0.870584 -0.966778 0.190604 0.170325 -0.092614 -0.882241 0.461599 0.192189 0.452932 0.870584 -0.981358 0.089028 0.170325 -0.000361 -0.887089 0.461599 0.143660 0.470580 0.870584 -0.985284 -0.014315 0.170325 0.092614 -0.882241 0.461599 0.093548 0.483045 0.870584 -0.978357 -0.117501 0.170325 0.184569 -0.867676 0.461599 0.042406 0.490189 0.870584 -0.960654 -0.219393 0.170325 0.274491 -0.843553 0.461599 -0.008711 0.491943 0.870584 -0.932688 -0.317935 0.170325 0.360579 -0.810499 0.461599 -0.060222 0.488321 0.870584 -0.894229 -0.413937 0.170325 0.443540 -0.768244 0.461599 -0.111070 0.479320 0.870584 -0.845921 -0.505379 0.170325 0.521614 -0.717527 0.461599 -0.160229 0.465199 0.870584 -0.788885 -0.590465 0.170325 0.593285 -0.659500 0.461599 -0.208103 0.445844 0.870584 -0.722656 -0.669894 0.170325 0.659137 -0.593687 0.461599 -0.253684 0.421578 0.870584 -0.648466 -0.741944 0.170325 0.717730 -0.521335 0.461599 -0.296471 0.392668 0.870584 -0.567134 -0.805822 0.170325 0.768417 -0.443241 0.461599 -0.335633 0.359769 0.870584 -0.480415 -0.860344 0.170325 0.810279 -0.361075 0.461599 -0.371491 0.322611 0.870584 -0.387599 -0.905956 0.170325 0.843660 -0.274163 0.461599 -0.403257 0.281899 0.870584 -0.290513 -0.941590 0.170325 0.867747 -0.184231 0.461599 -0.430343 0.238513 0.870584 -0.191195 -0.966661 0.170325 0.882184 -0.093153 0.461599 -0.452971 0.192096 0.870584 -0.088829 -0.981376 0.170325 0.887089 -0.000181 0.461599 -0.470609 0.143564 0.870584 0.014516 -0.985281 0.170325 0.882222 0.092794 0.461599 -0.483064 0.093450 0.870584 0.117700 -0.978333 0.170325 0.867638 0.184746 0.461599 -0.490155 0.042797 0.870584 0.218628 -0.960828 0.170325 0.843771 0.273819 0.461599 -0.491941 -0.008811 0.870584 0.318125 -0.932623 0.170325 0.810426 0.360745 0.461599 -0.488308 -0.060321 0.870584 0.414119 -0.894145 0.170325 0.768154 0.443696 0.461599 -0.479297 -0.111167 0.870584 0.505551 -0.845818 0.170325 0.717421 0.521761 0.461599 -0.465167 -0.160324 0.870584 0.590626 -0.788765 0.170325 0.659379 0.593419 0.461599 -0.445802 -0.208193 0.870584 0.670041 -0.722519 0.170325 0.593553 0.659258 0.461599 -0.421526 -0.253770 0.870584 0.742076 -0.648315 0.170325 0.521189 0.717836 0.461599 -0.392904 -0.296159 0.870584 0.805370 -0.567775 0.170325 0.443853 0.768064 0.461599 -0.359701 -0.335707 0.870584 0.860442 -0.480239 0.170325 0.360910 0.810352 0.461599 -0.322535 -0.371557 0.870584 0.906035 -0.387414 0.170325 0.273991 0.843715 0.461599 -0.281817 -0.403315 0.870584 0.941649 -0.290321 0.170325 0.184055 0.867785 0.461599 -0.238425 -0.430392 0.870584 0.966700 -0.190998 0.170325 0.092973 0.882203 0.461599 -0.192004 -0.453010 0.870584 0.981394 -0.088629 0.170325 0.000000 0.887089 0.461599 -0.143468 -0.470639 0.870584 0.985278 0.014716 0.170325 -0.092973 0.882203 0.461599 -0.093834 -0.482989 0.870584 0.978427 0.116921 0.170325 -0.184055 0.867785 0.461599 -0.042697 -0.490164 0.870584 0.960784 0.218823 0.170325 -0.273991 0.843715 0.461599 0.008911 -0.491939 0.870584 0.932558 0.318315 0.170325 -0.360910 0.810352 0.461599 0.060421 -0.488296 0.870584 0.894060 0.414301 0.170325 -0.443853 0.768064 0.461599 0.110785 -0.479385 0.870584 0.846220 0.504877 0.170325 -0.521189 0.717836 0.461599 0.160418 -0.465134 0.870584 0.788645 0.590787 0.170325 -0.593553 0.659258 0.461599 0.208284 -0.445759 0.870584 0.722383 0.670189 0.170325 -0.659379 0.593419 0.461599 0.253434 -0.421728 0.870584 0.648906 0.741560 0.170325 -0.717421 0.521761 0.461599 0.296239 -0.392844 0.870584 0.567611 0.805486 0.170325 -0.768154 0.443696 0.461599 0.335780 -0.359632 0.870584 0.480064 0.860539 0.170325 -0.810426 0.360745 0.461599 0.371623 -0.322460 0.870584 0.387230 0.906114 0.170325 -0.843771 0.273819 0.461599 0.403090 -0.282138 0.870584 0.291071 0.941418 0.170325 -0.867638 0.184746 0.461599 0.430440 -0.238338 0.870584 0.190801 0.966739 0.170325 -0.882222 0.092794 0.461599 0.838052 -0.277342 0.469841 0.241866 0.960771 0.135717 -0.489050 -0.000100 0.872256 0.862504 -0.187980 0.469841 0.139838 0.980829 0.135717 -0.486346 -0.051355 0.872256 0.877358 -0.097426 0.469841 0.037260 0.990047 0.135717 -0.478387 -0.101566 0.872256 0.882737 -0.004936 0.469841 -0.066709 0.988499 0.135717 -0.465107 -0.151145 0.872256 0.878393 0.087609 0.469841 -0.169943 0.976064 0.135717 -0.446705 -0.199059 0.872256 0.864552 0.178324 0.469841 -0.270353 0.953147 0.135717 -0.423626 -0.244358 0.872256 0.841101 0.267953 0.469841 -0.368761 0.919563 0.135717 -0.395683 -0.287411 0.872256 0.808385 0.354630 0.469841 -0.463106 0.875850 0.135717 -0.363381 -0.327298 0.872256 0.766765 0.437402 0.469841 -0.552351 0.822489 0.135717 -0.327076 -0.363581 0.872256 0.717215 0.514638 0.469841 -0.634752 0.760704 0.135717 -0.287565 -0.395571 0.872256 0.659327 0.586973 0.469841 -0.710983 0.689988 0.135717 -0.244522 -0.423531 0.872256 0.594177 0.652843 0.469841 -0.779383 0.611672 0.135717 -0.198786 -0.446826 0.872256 0.523193 0.710998 0.469841 -0.838671 0.527457 0.135717 -0.151326 -0.465048 0.872256 0.445794 0.761917 0.469841 -0.889334 0.436654 0.135717 -0.101752 -0.478347 0.872256 0.363484 0.804443 0.469841 -0.930200 0.341040 0.135717 -0.051058 -0.486377 0.872256 0.277854 0.837882 0.469841 -0.960623 0.242453 0.135717 -0.000199 -0.489050 0.872256 0.188507 0.862389 0.469841 -0.980744 0.140437 0.135717 0.051058 -0.486377 0.872256 0.097084 0.877396 0.469841 -0.990061 0.036875 0.135717 0.101752 -0.478347 0.872256 0.004592 0.882739 0.469841 -0.988473 -0.067094 0.135717 0.151326 -0.465048 0.872256 -0.087072 0.878446 0.469841 -0.976167 -0.169347 0.135717 0.198786 -0.446826 0.872256 -0.178660 0.864483 0.469841 -0.953042 -0.270724 0.135717 0.244522 -0.423531 0.872256 -0.268280 0.840997 0.469841 -0.919420 -0.369118 0.135717 0.287565 -0.395571 0.872256 -0.354136 0.808602 0.469841 -0.876133 -0.462571 0.135717 0.327076 -0.363581 0.872256 -0.436933 0.767032 0.469841 -0.822827 -0.551849 0.135717 0.363381 -0.327298 0.872256 -0.514917 0.717014 0.469841 -0.760457 -0.635048 0.135717 0.395683 -0.287411 0.872256 -0.587230 0.659099 0.469841 -0.689712 -0.711251 0.135717 0.423626 -0.244358 0.872256 -0.652480 0.594575 0.469841 -0.612148 -0.779009 0.135717 0.446705 -0.199059 0.872256 -0.711202 0.522916 0.469841 -0.527131 -0.838876 0.135717 0.465107 -0.151145 0.872256 -0.762090 0.445497 0.469841 -0.436308 -0.889503 0.135717 0.478387 -0.101566 0.872256 -0.804221 0.363976 0.469841 -0.341609 -0.929992 0.135717 0.486346 -0.051355 0.872256 -0.837939 0.277683 0.469841 -0.242257 -0.960673 0.135717 0.489050 -0.000100 0.872256 -0.862427 0.188332 0.469841 -0.140238 -0.980772 0.135717 0.486367 0.051157 0.872256 -0.877416 0.096906 0.469841 -0.036673 -0.990069 0.135717 0.478326 0.101850 0.872256 -0.882735 0.005295 0.469841 0.066306 -0.988526 0.135717 0.465169 0.150956 0.872256 -0.878429 -0.087251 0.469841 0.169546 -0.976133 0.135717 0.446786 0.198878 0.872256 -0.864446 -0.178836 0.469841 0.270918 -0.952987 0.135717 0.423481 0.244609 0.872256 -0.840942 -0.268451 0.469841 0.369306 -0.919344 0.135717 0.395512 0.287645 0.872256 -0.808530 -0.354301 0.469841 0.462750 -0.876039 0.135717 0.363514 0.327150 0.872256 -0.766944 -0.437089 0.469841 0.552016 -0.822714 0.135717 0.327224 0.363447 0.872256 -0.716910 -0.515063 0.469841 0.635202 -0.760328 0.135717 0.287330 0.395741 0.872256 -0.659566 -0.586705 0.469841 0.710702 -0.690278 0.135717 0.244695 0.423431 0.872256 -0.594442 -0.652601 0.469841 0.779134 -0.611989 0.135717 0.198968 0.446745 0.872256 -0.522771 -0.711308 0.469841 0.838984 -0.526960 0.135717 0.151051 0.465138 0.872256 -0.445342 -0.762181 0.469841 0.889592 -0.436126 0.135717 0.101469 0.478407 0.872256 -0.363812 -0.804295 0.469841 0.930061 -0.341419 0.135717 0.051256 0.486356 0.872256 -0.277512 -0.837996 0.469841 0.960722 -0.242062 0.135717 0.000000 0.489050 0.872256 -0.188156 -0.862466 0.469841 0.980801 -0.140038 0.135717 -0.051256 0.486356 0.872256 -0.097604 -0.877339 0.469841 0.990039 -0.037462 0.135717 -0.101469 0.478407 0.872256 -0.005116 -0.882736 0.469841 0.988513 0.066508 0.135717 -0.151051 0.465138 0.872256 0.087430 -0.878411 0.469841 0.976098 0.169745 0.135717 -0.198968 0.446745 0.872256 0.179012 -0.864410 0.469841 0.952932 0.271112 0.135717 -0.244695 0.423431 0.872256 0.267781 -0.841156 0.469841 0.919638 0.368573 0.135717 -0.287330 0.395741 0.872256 0.354466 -0.808458 0.469841 0.875944 0.462928 0.135717 -0.327224 0.363447 0.872256 0.437246 -0.766854 0.469841 0.822602 0.552184 0.135717 -0.363514 0.327150 0.872256 0.514492 -0.717319 0.469841 0.760834 0.634597 0.135717 -0.395512 0.287645 0.872256 0.586839 -0.659446 0.469841 0.690133 0.710843 0.135717 -0.423481 0.244609 0.872256 0.652722 -0.594310 0.469841 0.611831 0.779258 0.135717 -0.446786 0.198878 0.872256 0.711415 -0.522627 0.469841 0.526789 0.839091 0.135717 -0.465169 0.150956 0.872256 0.761826 -0.445949 0.469841 0.436835 0.889245 0.135717 -0.478326 0.101850 0.872256 0.804369 -0.363648 0.469841 0.341230 0.930131 0.135717 -0.486367 0.051157 0.872256 0.703848 -0.654117 0.277001 0.608640 0.756394 0.239637 -0.366273 -0.000075 0.930508 0.768528 -0.576746 0.277001 0.526012 0.816018 0.239637 -0.364247 -0.038462 0.930508 0.824249 -0.493847 0.277001 0.438457 0.866215 0.239637 -0.358287 -0.076068 0.930508 0.871468 -0.404740 0.277001 0.345257 0.907398 0.239637 -0.348341 -0.113200 0.930508 0.909088 -0.311174 0.277001 0.248253 0.938586 0.239637 -0.334558 -0.149085 0.930508 0.936480 -0.215118 0.277001 0.149475 0.959287 0.239637 -0.317274 -0.183011 0.930508 0.953868 -0.115784 0.277001 0.048112 0.969670 0.239637 -0.296345 -0.215256 0.930508 0.960750 -0.015174 0.277001 -0.053781 0.969372 0.239637 -0.272153 -0.245129 0.930508 0.957049 0.085603 0.277001 -0.155082 0.958396 0.239637 -0.244963 -0.272303 0.930508 0.942991 0.184494 0.277001 -0.253738 0.937118 0.239637 -0.215371 -0.296262 0.930508 0.918461 0.282311 0.277001 -0.350558 0.905364 0.239637 -0.183134 -0.317202 0.930508 0.883815 0.377017 0.277001 -0.443515 0.863636 0.239637 -0.148881 -0.334649 0.930508 0.839900 0.466731 0.277001 -0.530775 0.812928 0.239637 -0.113335 -0.348297 0.930508 0.786358 0.552188 0.277001 -0.613053 0.752822 0.239637 -0.076207 -0.358257 0.930508 0.724154 0.631563 0.277001 -0.688578 0.684423 0.239637 -0.038240 -0.364271 0.930508 0.654546 0.703448 0.277001 -0.756022 0.609102 0.239637 -0.000149 -0.366273 0.930508 0.577215 0.768175 0.277001 -0.815696 0.526511 0.239637 0.038240 -0.364271 0.930508 0.493526 0.824441 0.277001 -0.866386 0.438120 0.239637 0.076207 -0.358257 0.930508 0.404401 0.871625 0.277001 -0.907533 0.344904 0.239637 0.113335 -0.348297 0.930508 0.311730 0.908898 0.277001 -0.938434 0.248827 0.239637 0.148881 -0.334649 0.930508 0.214754 0.936563 0.277001 -0.959345 0.149102 0.239637 0.183134 -0.317202 0.930508 0.115413 0.953913 0.277001 -0.969688 0.047735 0.239637 0.215371 -0.296262 0.930508 0.015761 0.960740 0.277001 -0.969404 -0.053189 0.239637 0.244963 -0.272303 0.930508 -0.085018 0.957101 0.277001 -0.958491 -0.154497 0.239637 0.272153 -0.245129 0.930508 -0.184861 0.942919 0.277001 -0.937020 -0.254103 0.239637 0.296345 -0.215256 0.930508 -0.282668 0.918352 0.277001 -0.905227 -0.350910 0.239637 0.317274 -0.183011 0.930508 -0.376477 0.884045 0.277001 -0.863907 -0.442988 0.239637 0.334558 -0.149085 0.930508 -0.467058 0.839719 0.277001 -0.812721 -0.531092 0.239637 0.348341 -0.113200 0.930508 -0.552494 0.786143 0.277001 -0.752583 -0.613346 0.239637 0.358287 -0.076068 0.930508 -0.631120 0.724540 0.277001 -0.684844 -0.688159 0.239637 0.364247 -0.038462 0.930508 -0.703582 0.654403 0.277001 -0.608948 -0.756146 0.239637 0.366273 -0.000075 0.930508 -0.768293 0.577059 0.277001 -0.526345 -0.815803 0.239637 0.364263 0.038314 0.930508 -0.824541 0.493358 0.277001 -0.437944 -0.866475 0.239637 0.358241 0.076280 0.930508 -0.871303 0.405095 0.277001 -0.345626 -0.907258 0.239637 0.348387 0.113058 0.930508 -0.908961 0.311545 0.277001 -0.248636 -0.938485 0.239637 0.334619 0.148949 0.930508 -0.936607 0.214563 0.277001 -0.148907 -0.959375 0.239637 0.317165 0.183199 0.930508 -0.953937 0.115218 0.277001 -0.047537 -0.969698 0.239637 0.296218 0.215431 0.930508 -0.960744 0.015565 0.277001 0.053387 -0.969393 0.239637 0.272253 0.245018 0.930508 -0.957084 -0.085213 0.277001 0.154692 -0.958459 0.239637 0.245074 0.272203 0.930508 -0.942882 -0.185053 0.277001 0.254294 -0.936968 0.239637 0.215195 0.296389 0.930508 -0.918576 -0.281936 0.277001 0.350189 -0.905506 0.239637 0.183264 0.317128 0.930508 -0.883968 -0.376657 0.277001 0.443164 -0.863817 0.239637 0.149017 0.334589 0.930508 -0.839624 -0.467229 0.277001 0.531257 -0.812613 0.239637 0.113129 0.348364 0.930508 -0.786030 -0.552654 0.277001 0.613499 -0.752458 0.239637 0.075995 0.358302 0.930508 -0.724411 -0.631268 0.277001 0.688299 -0.684703 0.239637 0.038388 0.364255 0.930508 -0.654260 -0.703715 0.277001 0.756270 -0.608794 0.239637 0.000000 0.366273 0.930508 -0.576902 -0.768410 0.277001 0.815911 -0.526178 0.239637 -0.038388 0.364255 0.930508 -0.494015 -0.824148 0.277001 0.866126 -0.438634 0.239637 -0.075995 0.358302 0.930508 -0.404917 -0.871386 0.277001 0.907328 -0.345442 0.239637 -0.113129 0.348364 0.930508 -0.311360 -0.909025 0.277001 0.938536 -0.248445 0.239637 -0.149017 0.334589 0.930508 -0.214373 -0.936651 0.277001 0.959405 -0.148711 0.239637 -0.183264 0.317128 0.930508 -0.115978 -0.953845 0.277001 0.969660 -0.048309 0.239637 -0.215195 0.296389 0.930508 -0.015370 -0.960747 0.277001 0.969383 0.053584 0.239637 -0.245074 0.272203 0.930508 0.085408 -0.957066 0.277001 0.958428 0.154887 0.239637 -0.272253 0.245018 0.930508 0.184302 -0.943029 0.277001 0.937170 0.253547 0.239637 -0.296218 0.215431 0.930508 0.282124 -0.918519 0.277001 0.905435 0.350373 0.239637 -0.317165 0.183199 0.930508 0.376837 -0.883892 0.277001 0.863727 0.443339 0.239637 -0.334619 0.148949 0.930508 0.467400 -0.839528 0.277001 0.812505 0.531423 0.239637 -0.348387 0.113058 0.930508 0.552028 -0.786470 0.277001 0.752946 0.612899 0.239637 -0.358241 0.076280 0.930508 0.631415 -0.724282 0.277001 0.684563 0.688438 0.239637 -0.364263 0.038314 0.930508 0.110947 0.662257 0.741018 -0.098327 0.749277 -0.654916 -0.988950 -0.000201 0.148248 0.040927 0.670237 0.741018 -0.176315 0.734845 -0.654916 -0.983483 -0.103849 0.148248 -0.028874 0.670865 0.741018 -0.251649 0.712571 -0.654916 -0.967388 -0.205386 0.148248 -0.099026 0.664144 0.741018 -0.324946 0.682272 -0.654916 -0.940534 -0.305644 0.148248 -0.168088 0.650107 0.741018 -0.394663 0.644458 -0.654916 -0.903320 -0.402536 0.148248 -0.234669 0.629145 0.741018 -0.459433 0.600004 -0.654916 -0.856651 -0.494137 0.148248 -0.299315 0.601085 0.741018 -0.519788 0.548548 -0.654916 -0.800144 -0.581198 0.148248 -0.360665 0.566404 0.741018 -0.574417 0.491050 -0.654916 -0.734824 -0.661858 0.148248 -0.418042 0.525485 0.741018 -0.622719 0.428142 -0.654916 -0.661409 -0.735228 0.148248 -0.470335 0.479247 0.741018 -0.663801 0.361183 -0.654916 -0.581510 -0.799918 0.148248 -0.517973 0.427313 0.741018 -0.697999 0.289622 -0.654916 -0.494470 -0.856459 0.148248 -0.559906 0.370673 0.741018 -0.724510 0.214872 -0.654916 -0.401984 -0.903566 0.148248 -0.595361 0.310545 0.741018 -0.742902 0.138498 -0.654916 -0.306010 -0.940415 0.148248 -0.624630 0.246436 0.741018 -0.753326 0.059874 -0.654916 -0.205763 -0.967308 0.148248 -0.647018 0.179613 0.741018 -0.755452 -0.019410 -0.654916 -0.103248 -0.983546 0.148248 -0.662189 0.111351 0.741018 -0.749337 -0.097870 -0.654916 -0.000403 -0.988950 0.148248 -0.670212 0.041336 0.741018 -0.734953 -0.175866 -0.654916 0.103248 -0.983546 0.148248 -0.670853 -0.029135 0.741018 -0.712473 -0.251926 -0.654916 0.205763 -0.967308 0.148248 -0.664105 -0.099285 0.741018 -0.682145 -0.325211 -0.654916 0.306010 -0.940415 0.148248 -0.650210 -0.167690 0.741018 -0.644699 -0.394269 -0.654916 0.401984 -0.903566 0.148248 -0.629054 -0.234914 0.741018 -0.599826 -0.459667 -0.654916 0.494470 -0.856459 0.148248 -0.600969 -0.299549 0.741018 -0.548346 -0.520001 -0.654916 0.581510 -0.799918 0.148248 -0.566625 -0.360319 0.741018 -0.491400 -0.574117 -0.654916 0.661409 -0.735228 0.148248 -0.525740 -0.417721 0.741018 -0.428522 -0.622457 -0.654916 0.734824 -0.661858 0.148248 -0.479064 -0.470521 0.741018 -0.360924 -0.663941 -0.654916 0.800144 -0.581198 0.148248 -0.427112 -0.518139 0.741018 -0.289351 -0.698112 -0.654916 0.856651 -0.494137 0.148248 -0.371015 -0.559679 0.741018 -0.215315 -0.724378 -0.654916 0.903320 -0.402536 0.148248 -0.310313 -0.595482 0.741018 -0.138209 -0.742955 -0.654916 0.940534 -0.305644 0.148248 -0.246193 -0.624726 0.741018 -0.059581 -0.753349 -0.654916 0.967388 -0.205386 0.148248 -0.180009 -0.646908 0.741018 0.018948 -0.755464 -0.654916 0.983483 -0.103849 0.148248 -0.111217 -0.662211 0.741018 0.098022 -0.749317 -0.654916 0.988950 -0.000201 0.148248 -0.041199 -0.670221 0.741018 0.176016 -0.734917 -0.654916 0.983525 0.103449 0.148248 0.029271 -0.670847 0.741018 0.252071 -0.712422 -0.654916 0.967266 0.205960 0.148248 0.098756 -0.664184 0.741018 0.324668 -0.682404 -0.654916 0.940658 0.305261 0.148248 0.167823 -0.650176 0.741018 0.394400 -0.644618 -0.654916 0.903484 0.402168 0.148248 0.235042 -0.629006 0.741018 0.459789 -0.599732 -0.654916 0.856358 0.494644 0.148248 0.299672 -0.600908 0.741018 0.520113 -0.548240 -0.654916 0.799800 0.581673 0.148248 0.360434 -0.566551 0.741018 0.574217 -0.491283 -0.654916 0.735093 0.661559 0.148248 0.417828 -0.525655 0.741018 0.622544 -0.428396 -0.654916 0.661709 0.734959 0.148248 0.470619 -0.478968 0.741018 0.664015 -0.360789 -0.654916 0.581035 0.800263 0.148248 0.517799 -0.427524 0.741018 0.697881 -0.289907 -0.654916 0.494819 0.856258 0.148248 0.559755 -0.370901 0.741018 0.724422 -0.215167 -0.654916 0.402352 0.903402 0.148248 0.595545 -0.310192 0.741018 0.742984 -0.138057 -0.654916 0.305453 0.940596 0.148248 0.624776 -0.246066 0.741018 0.753361 -0.059427 -0.654916 0.205189 0.967430 0.148248 0.646945 -0.179877 0.741018 0.755460 0.019102 -0.654916 0.103649 0.983504 0.148248 0.662234 -0.111082 0.741018 0.749297 0.098175 -0.654916 0.000000 0.988950 0.148248 0.670229 -0.041063 0.741018 0.734881 0.176166 -0.654916 -0.103649 0.983504 0.148248 0.670870 0.028737 0.741018 0.712622 0.251504 -0.654916 -0.205189 0.967430 0.148248 0.664164 0.098891 0.741018 0.682338 0.324807 -0.654916 -0.305453 0.940596 0.148248 0.650142 0.167955 0.741018 0.644538 0.394532 -0.654916 -0.402352 0.903402 0.148248 0.628958 0.235170 0.741018 0.599638 0.459911 -0.654916 -0.494819 0.856258 0.148248 0.601146 0.299193 0.741018 0.548654 0.519676 -0.654916 -0.581035 0.800263 0.148248 0.566478 0.360550 0.741018 0.491167 0.574317 -0.654916 -0.661709 0.734959 0.148248 0.525570 0.417935 0.741018 0.428269 0.622632 -0.654916 -0.735093 0.661559 0.148248 0.479343 0.470237 0.741018 0.361318 0.663727 -0.654916 -0.799800 0.581673 0.148248 0.427419 0.517886 0.741018 0.289765 0.697940 -0.654916 -0.856358 0.494644 0.148248 0.370787 0.559831 0.741018 0.215020 0.724466 -0.654916 -0.903484 0.402168 0.148248 0.310070 0.595608 0.741018 0.137906 0.743012 -0.654916 -0.940658 0.305261 0.148248 0.246563 0.624579 0.741018 0.060027 0.753313 -0.654916 -0.967266 0.205960 0.148248 0.179745 0.646981 0.741018 -0.019256 0.755456 -0.654916 -0.983525 0.103449 0.148248 -0.916856 -0.204932 0.342605 -0.191993 0.978776 0.071665 -0.350020 -0.000071 -0.936742 -0.890328 -0.299897 0.342605 -0.293518 0.953263 0.071665 -0.348085 -0.036756 -0.936742 -0.854384 -0.390703 0.342605 -0.390893 0.917642 0.071665 -0.342389 -0.072693 -0.936742 -0.808730 -0.478097 0.342605 -0.484916 0.871620 0.071665 -0.332884 -0.108177 -0.936742 -0.754168 -0.560225 0.342605 -0.573597 0.815997 0.071665 -0.319713 -0.142470 -0.936742 -0.691935 -0.635490 0.342605 -0.655209 0.752041 0.071665 -0.303196 -0.174890 -0.936742 -0.621520 -0.704510 0.342605 -0.730419 0.679229 0.071665 -0.283196 -0.205704 -0.936742 -0.544260 -0.765770 0.342605 -0.797585 0.598935 0.071665 -0.260077 -0.234252 -0.936742 -0.461004 -0.818595 0.342605 -0.855965 0.512043 0.071665 -0.234093 -0.260220 -0.936742 -0.373533 -0.862030 0.342605 -0.904496 0.420417 0.071665 -0.205814 -0.283116 -0.936742 -0.281128 -0.896431 0.342605 -0.943578 0.323304 0.071665 -0.175008 -0.303128 -0.936742 -0.185628 -0.920958 0.342605 -0.972266 0.222629 0.071665 -0.142274 -0.319800 -0.936742 -0.089018 -0.935253 0.342605 -0.990124 0.120493 0.071665 -0.108307 -0.332842 -0.936742 0.009494 -0.939431 0.342605 -0.997299 0.016057 0.071665 -0.072826 -0.342360 -0.936742 0.107900 -0.933263 0.342605 -0.993490 -0.088555 0.071665 -0.036543 -0.348107 -0.936742 0.204372 -0.916981 0.342605 -0.978893 -0.191395 0.071665 -0.000143 -0.350020 -0.936742 0.299353 -0.890511 0.342605 -0.953443 -0.292936 0.071665 0.036543 -0.348107 -0.936742 0.391036 -0.854232 0.342605 -0.917490 -0.391250 0.071665 0.072826 -0.342360 -0.936742 0.478412 -0.808544 0.342605 -0.871431 -0.485255 0.071665 0.108307 -0.332842 -0.936742 0.559764 -0.754510 0.342605 -0.816347 -0.573098 0.071665 0.142274 -0.319800 -0.936742 0.635759 -0.691688 0.342605 -0.751786 -0.655501 0.071665 0.175008 -0.303128 -0.936742 0.704752 -0.621246 0.342605 -0.678944 -0.730684 0.071665 0.205814 -0.283116 -0.936742 0.765437 -0.544727 0.342605 -0.599422 -0.797219 0.071665 0.234093 -0.260220 -0.936742 0.818313 -0.461504 0.342605 -0.512566 -0.855652 0.071665 0.260077 -0.234252 -0.936742 0.862175 -0.373197 0.342605 -0.420065 -0.904660 0.071665 0.283196 -0.205704 -0.936742 0.896540 -0.280780 0.342605 -0.322937 -0.943703 0.071665 0.303196 -0.174890 -0.936742 0.920845 -0.186191 0.342605 -0.223223 -0.972129 0.071665 0.319713 -0.142470 -0.936742 0.935287 -0.088654 0.342605 -0.120108 -0.990171 0.071665 0.332884 -0.108177 -0.936742 0.939428 0.009859 0.342605 -0.015669 -0.997306 0.071665 0.342389 -0.072693 -0.936742 0.933328 0.107330 0.342605 0.087948 -0.993544 0.071665 0.348085 -0.036756 -0.936742 0.916939 0.204559 0.342605 0.191594 -0.978854 0.071665 0.350020 -0.000071 -0.936742 0.890450 0.299534 0.342605 0.293130 -0.953383 0.071665 0.348100 0.036614 -0.936742 0.854153 0.391210 0.342605 0.391437 -0.917410 0.071665 0.342345 0.072895 -0.936742 0.808925 0.477768 0.342605 0.484561 -0.871817 0.071665 0.332928 0.108041 -0.936742 0.754396 0.559918 0.342605 0.573265 -0.816230 0.071665 0.319771 0.142340 -0.936742 0.691558 0.635900 0.342605 0.655654 -0.751653 0.071665 0.303092 0.175070 -0.936742 0.621103 0.704878 0.342605 0.730822 -0.678796 0.071665 0.283074 0.205872 -0.936742 0.544571 0.765548 0.342605 0.797341 -0.599259 0.071665 0.260172 0.234146 -0.936742 0.461337 0.818407 0.342605 0.855756 -0.512392 0.071665 0.234199 0.260125 -0.936742 0.373022 0.862251 0.342605 0.904745 -0.419881 0.071665 0.205647 0.283238 -0.936742 0.281494 0.896316 0.342605 0.943446 -0.323688 0.071665 0.175132 0.303056 -0.936742 0.186003 0.920883 0.342605 0.972175 -0.223025 0.071665 0.142405 0.319742 -0.936742 0.088463 0.935305 0.342605 0.990195 -0.119906 0.071665 0.108109 0.332906 -0.936742 -0.010050 0.939426 0.342605 0.997309 -0.015466 0.071665 0.072623 0.342403 -0.936742 -0.107520 0.933307 0.342605 0.993526 0.088151 0.071665 0.036685 0.348093 -0.936742 -0.204745 0.916897 0.342605 0.978815 0.191794 0.071665 0.000000 0.350020 -0.936742 -0.299715 0.890389 0.342605 0.953323 0.293324 0.071665 -0.036685 0.348093 -0.936742 -0.390529 0.854464 0.342605 0.917721 0.390706 0.071665 -0.072623 0.342403 -0.936742 -0.477933 0.808828 0.342605 0.871718 0.484738 0.071665 -0.108109 0.332906 -0.936742 -0.560071 0.754282 0.342605 0.816113 0.573431 0.071665 -0.142405 0.319742 -0.936742 -0.636041 0.691429 0.342605 0.751519 0.655807 0.071665 -0.175132 0.303056 -0.936742 -0.704383 0.621664 0.342605 0.679377 0.730281 0.071665 -0.205647 0.283238 -0.936742 -0.765659 0.544416 0.342605 0.599097 0.797463 0.071665 -0.234199 0.260125 -0.936742 -0.818501 0.461171 0.342605 0.512218 0.855860 0.071665 -0.260172 0.234146 -0.936742 -0.861954 0.373708 0.342605 0.420601 0.904411 0.071665 -0.283074 0.205872 -0.936742 -0.896374 0.281311 0.342605 0.323496 0.943512 0.071665 -0.303092 0.175070 -0.936742 -0.920920 0.185815 0.342605 0.222827 0.972220 0.071665 -0.319771 0.142340 -0.936742 -0.935323 0.088273 0.342605 0.119705 0.990220 0.071665 -0.332928 0.108041 -0.936742 -0.939433 -0.009302 0.342605 0.016261 0.997296 0.071665 -0.342345 0.072895 -0.936742 -0.933285 -0.107710 0.342605 -0.088353 0.993508 0.071665 -0.348100 0.036614 -0.936742 0.000801 -0.998284 -0.058556 -0.010174 -0.058561 0.998232 -0.999948 -0.000204 -0.010203 0.105424 -0.992702 -0.058556 -0.003980 -0.059305 0.998232 -0.994419 -0.105004 -0.010203 0.207909 -0.976394 -0.058556 0.002198 -0.059398 0.998232 -0.978146 -0.207670 -0.010203 0.309097 -0.949226 -0.058556 0.008411 -0.058840 0.998232 -0.950993 -0.309043 -0.010203 0.406880 -0.911603 -0.058556 0.014532 -0.057635 0.998232 -0.913366 -0.407012 -0.010203 0.499318 -0.864438 -0.058556 0.020436 -0.055815 0.998232 -0.866178 -0.499632 -0.010203 0.587167 -0.807345 -0.058556 0.026173 -0.053366 0.998232 -0.809042 -0.587662 -0.010203 0.668549 -0.741359 -0.058556 0.031622 -0.050328 0.998232 -0.742996 -0.669219 -0.010203 0.742567 -0.667208 -0.058556 0.036723 -0.046737 0.998232 -0.668765 -0.743404 -0.010203 0.807819 -0.586515 -0.058556 0.041377 -0.042672 0.998232 -0.587976 -0.808814 -0.010203 0.864841 -0.498619 -0.058556 0.045621 -0.038101 0.998232 -0.499969 -0.865983 -0.010203 0.912337 -0.405232 -0.058556 0.049363 -0.033109 0.998232 -0.406454 -0.913614 -0.010203 0.949476 -0.308330 -0.058556 0.052533 -0.027806 0.998232 -0.309413 -0.950873 -0.010203 0.976562 -0.207120 -0.058556 0.055158 -0.022147 0.998232 -0.208051 -0.978065 -0.010203 0.992891 -0.103629 -0.058556 0.057176 -0.016244 0.998232 -0.104397 -0.994483 -0.010203 0.998284 0.000191 -0.058556 0.058555 -0.010210 0.998232 -0.000407 -0.999948 -0.010203 0.992766 0.104817 -0.058556 0.059303 -0.004017 0.998232 0.104397 -0.994483 -0.010203 0.976313 0.208289 -0.058556 0.059397 0.002221 0.998232 0.208051 -0.978065 -0.010203 0.949106 0.309466 -0.058556 0.058837 0.008434 0.998232 0.309413 -0.950873 -0.010203 0.911851 0.406323 -0.058556 0.057644 0.014496 0.998232 0.406454 -0.913614 -0.010203 0.864244 0.499654 -0.058556 0.055807 0.020458 0.998232 0.499969 -0.865983 -0.010203 0.807116 0.587481 -0.058556 0.053355 0.026194 0.998232 0.587976 -0.808814 -0.010203 0.741767 0.668096 -0.058556 0.050348 0.031592 0.998232 0.668765 -0.743404 -0.010203 0.667661 0.742159 -0.058556 0.046759 0.036694 0.998232 0.742996 -0.669219 -0.010203 0.586200 0.808047 -0.058556 0.042656 0.041393 0.998232 0.809042 -0.587662 -0.010203 0.498283 0.865035 -0.058556 0.038083 0.045636 0.998232 0.866178 -0.499632 -0.010203 0.405789 0.912089 -0.058556 0.033140 0.049343 0.998232 0.913366 -0.407012 -0.010203 0.307961 0.949595 -0.058556 0.027786 0.052544 0.998232 0.950993 -0.309043 -0.010203 0.206740 0.976642 -0.058556 0.022125 0.055167 0.998232 0.978146 -0.207670 -0.010203 0.104235 0.992827 -0.058556 0.016279 0.057166 0.998232 0.994419 -0.105004 -0.010203 -0.000394 0.998284 -0.058556 0.010198 0.058557 0.998232 0.999948 -0.000204 -0.010203 -0.105019 0.992745 -0.058556 0.004005 0.059303 0.998232 0.994462 0.104599 -0.010203 -0.208488 0.976270 -0.058556 -0.002233 0.059397 0.998232 0.978022 0.208250 -0.010203 -0.308710 0.949352 -0.058556 -0.008387 0.058844 0.998232 0.951119 0.308656 -0.010203 -0.406509 0.911768 -0.058556 -0.014508 0.057641 0.998232 0.913531 0.406640 -0.010203 -0.499830 0.864142 -0.058556 -0.020469 0.055803 0.998232 0.865882 0.500145 -0.010203 -0.587646 0.806997 -0.058556 -0.026205 0.053350 0.998232 0.808694 0.588141 -0.010203 -0.668247 0.741631 -0.058556 -0.031602 0.050341 0.998232 0.743268 0.668916 -0.010203 -0.742295 0.667510 -0.058556 -0.036704 0.046752 0.998232 0.669067 0.743132 -0.010203 -0.808167 0.586036 -0.058556 -0.041402 0.042648 0.998232 0.587497 0.809162 -0.010203 -0.864638 0.498971 -0.058556 -0.045605 0.038119 0.998232 0.500321 0.865780 -0.010203 -0.912172 0.405603 -0.058556 -0.049349 0.033129 0.998232 0.406826 0.913449 -0.010203 -0.949658 0.307767 -0.058556 -0.052550 0.027775 0.998232 0.308849 0.951056 -0.010203 -0.976684 0.206541 -0.058556 -0.055171 0.022114 0.998232 0.207471 0.978188 -0.010203 -0.992849 0.104033 -0.058556 -0.057169 0.016267 0.998232 0.104802 0.994441 -0.010203 -0.998284 -0.000598 -0.058556 -0.058559 0.010186 0.998232 0.000000 0.999948 -0.010203 -0.992723 -0.105222 -0.058556 -0.059304 0.003992 0.998232 -0.104802 0.994441 -0.010203 -0.976436 -0.207710 -0.058556 -0.059398 -0.002186 0.998232 -0.207471 0.978188 -0.010203 -0.949289 -0.308904 -0.058556 -0.058842 -0.008399 0.998232 -0.308849 0.951056 -0.010203 -0.911686 -0.406695 -0.058556 -0.057638 -0.014520 0.998232 -0.406826 0.913449 -0.010203 -0.864040 -0.500006 -0.058556 -0.055799 -0.020481 0.998232 -0.500321 0.865780 -0.010203 -0.807464 -0.587003 -0.058556 -0.053371 -0.026163 0.998232 -0.587497 0.809162 -0.010203 -0.741495 -0.668398 -0.058556 -0.050335 -0.031612 0.998232 -0.669067 0.743132 -0.010203 -0.667359 -0.742431 -0.058556 -0.046745 -0.036714 0.998232 -0.743268 0.668916 -0.010203 -0.586679 -0.807700 -0.058556 -0.042681 -0.041368 0.998232 -0.808694 0.588141 -0.010203 -0.498795 -0.864740 -0.058556 -0.038110 -0.045613 0.998232 -0.865882 0.500145 -0.010203 -0.405417 -0.912254 -0.058556 -0.033119 -0.049356 0.998232 -0.913531 0.406640 -0.010203 -0.307574 -0.949721 -0.058556 -0.027764 -0.052556 0.998232 -0.951119 0.308656 -0.010203 -0.207319 -0.976519 -0.058556 -0.022158 -0.055154 0.998232 -0.978022 0.208250 -0.010203 -0.103831 -0.992870 -0.058556 -0.016256 -0.057172 0.998232 -0.994462 0.104599 -0.010203 0.788307 -0.206542 0.579579 0.166334 0.978438 0.122445 -0.592372 -0.000121 0.805664 0.805613 -0.122784 0.579579 0.062870 0.990482 0.122445 -0.589097 -0.062205 0.805664 0.814007 -0.038488 0.579579 -0.040294 0.991657 0.122445 -0.579456 -0.123024 0.805664 0.813557 0.047037 0.579579 -0.144005 0.981972 0.122445 -0.563371 -0.183078 0.805664 0.804147 0.132045 0.579579 -0.246129 0.961472 0.122445 -0.541081 -0.241115 0.805664 0.786094 0.214812 0.579579 -0.344612 0.930725 0.122445 -0.513126 -0.295983 0.805664 0.759251 0.296017 0.579579 -0.440261 0.889482 0.122445 -0.479279 -0.348133 0.805664 0.724045 0.373962 0.579579 -0.531060 0.838440 0.122445 -0.440153 -0.396447 0.805664 0.680863 0.447787 0.579579 -0.616010 0.778164 0.122445 -0.396178 -0.440395 0.805664 0.630698 0.516050 0.579579 -0.693465 0.710010 0.122445 -0.348319 -0.479144 0.805664 0.573139 0.579310 0.579579 -0.764060 0.633419 0.122445 -0.296183 -0.513011 0.805664 0.509266 0.636188 0.579579 -0.826239 0.549852 0.122445 -0.240784 -0.541228 0.805664 0.440471 0.685619 0.579579 -0.878856 0.461107 0.122445 -0.183297 -0.563300 0.805664 0.366187 0.728008 0.579579 -0.922343 0.366457 0.122445 -0.123250 -0.579409 0.805664 0.287870 0.762377 0.579579 -0.955671 0.267770 0.122445 -0.061845 -0.589135 0.805664 0.207024 0.788181 0.579579 -0.978336 0.166932 0.122445 -0.000241 -0.592372 0.805664 0.123277 0.805538 0.579579 -0.990443 0.063476 0.122445 0.061845 -0.589135 0.805664 0.038172 0.814021 0.579579 -0.991641 -0.040680 0.122445 0.123250 -0.579409 0.805664 -0.047354 0.813539 0.579579 -0.981916 -0.144387 0.122445 0.183297 -0.563300 0.805664 -0.131554 0.804227 0.579579 -0.961622 -0.245542 0.122445 0.240784 -0.541228 0.805664 -0.215118 0.786010 0.579579 -0.930591 -0.344974 0.122445 0.296183 -0.513011 0.805664 -0.296313 0.759136 0.579579 -0.889310 -0.440607 0.122445 0.348319 -0.479144 0.805664 -0.373520 0.724273 0.579579 -0.838765 -0.530548 0.122445 0.396178 -0.440395 0.805664 -0.447371 0.681136 0.579579 -0.778540 -0.615535 0.122445 0.440153 -0.396447 0.805664 -0.516296 0.630497 0.579579 -0.709740 -0.693741 0.122445 0.479279 -0.348133 0.805664 -0.579533 0.572914 0.579579 -0.633122 -0.764306 0.122445 0.513126 -0.295983 0.805664 -0.635877 0.509655 0.579579 -0.550356 -0.825903 0.122445 0.541081 -0.241115 0.805664 -0.685791 0.440204 0.579579 -0.460765 -0.879035 0.122445 0.563371 -0.183078 0.805664 -0.728150 0.365904 0.579579 -0.366098 -0.922486 0.122445 0.579456 -0.123024 0.805664 -0.762201 0.288335 0.579579 -0.268354 -0.955507 0.122445 0.589097 -0.062205 0.805664 -0.788223 0.206863 0.579579 -0.166732 -0.978370 0.122445 0.592372 -0.000121 0.805664 -0.805563 0.123113 0.579579 -0.063274 -0.990456 0.122445 0.589122 0.061965 0.805664 -0.814029 0.038006 0.579579 0.040882 -0.991633 0.122445 0.579383 0.123368 0.805664 -0.813576 -0.046706 0.579579 0.143605 -0.982031 0.122445 0.563446 0.182849 0.805664 -0.804201 -0.131718 0.579579 0.245738 -0.961572 0.122445 0.541179 0.240895 0.805664 -0.785967 -0.215278 0.579579 0.345164 -0.930521 0.122445 0.512951 0.296287 0.805664 -0.759075 -0.296467 0.579579 0.440788 -0.889220 0.122445 0.479073 0.348417 0.805664 -0.724197 -0.373667 0.579579 0.530719 -0.838657 0.122445 0.440314 0.396268 0.805664 -0.681045 -0.447510 0.579579 0.615693 -0.778414 0.122445 0.396357 0.440233 0.805664 -0.630392 -0.516424 0.579579 0.693886 -0.709598 0.122445 0.348035 0.479350 0.805664 -0.573375 -0.579076 0.579579 0.763802 -0.633730 0.122445 0.296392 0.512890 0.805664 -0.509526 -0.635981 0.579579 0.826015 -0.550188 0.122445 0.241005 0.541130 0.805664 -0.440064 -0.685880 0.579579 0.879129 -0.460586 0.122445 0.182963 0.563409 0.805664 -0.365755 -0.728225 0.579579 0.922560 -0.365910 0.122445 0.122906 0.579481 0.805664 -0.288180 -0.762260 0.579579 0.955561 -0.268160 0.122445 0.062085 0.589110 0.805664 -0.206703 -0.788265 0.579579 0.978404 -0.166533 0.122445 0.000000 0.592372 0.805664 -0.122949 -0.805588 0.579579 0.990469 -0.063072 0.122445 -0.062085 0.589110 0.805664 -0.038654 -0.813999 0.579579 0.991665 0.040092 0.122445 -0.122906 0.579481 0.805664 0.046872 -0.813567 0.579579 0.982002 0.143805 0.122445 -0.182963 0.563409 0.805664 0.131881 -0.804174 0.579579 0.961522 0.245933 0.122445 -0.241005 0.541130 0.805664 0.215438 -0.785923 0.579579 0.930451 0.345353 0.122445 -0.296392 0.512890 0.805664 0.295863 -0.759311 0.579579 0.889571 0.440080 0.122445 -0.348035 0.479350 0.805664 0.373815 -0.724121 0.579579 0.838548 0.530890 0.122445 -0.396357 0.440233 0.805664 0.447649 -0.680954 0.579579 0.778289 0.615852 0.122445 -0.440314 0.396268 0.805664 0.515922 -0.630803 0.579579 0.710151 0.693320 0.122445 -0.479073 0.348417 0.805664 0.579193 -0.573257 0.579579 0.633575 0.763931 0.122445 -0.512951 0.296287 0.805664 0.636085 -0.509396 0.579579 0.550020 0.826127 0.122445 -0.541179 0.240895 0.805664 0.685970 -0.439924 0.579579 0.460407 0.879223 0.122445 -0.563446 0.182849 0.805664 0.727933 -0.366335 0.579579 0.366645 0.922268 0.122445 -0.579383 0.123368 0.805664 0.762319 -0.288025 0.579579 0.267965 0.955616 0.122445 -0.589122 0.061965 0.805664 0.021111 0.993284 -0.113761 0.182933 -0.115703 -0.976293 -0.982899 -0.000200 -0.184147 -0.083109 0.990026 -0.113761 0.194052 -0.095893 -0.976293 -0.977464 -0.103214 -0.184147 -0.185437 0.976049 -0.113761 0.202958 -0.075230 -0.976293 -0.961468 -0.204129 -0.184147 -0.286712 0.951238 -0.113761 0.209725 -0.053544 -0.976293 -0.934779 -0.303774 -0.184147 -0.384830 0.915950 -0.113761 0.214182 -0.031268 -0.976293 -0.897793 -0.400072 -0.184147 -0.477838 0.871051 -0.113761 0.216271 -0.008865 -0.976293 -0.851409 -0.491113 -0.184147 -0.566499 0.816173 -0.113761 0.216009 0.013851 -0.976293 -0.795248 -0.577642 -0.184147 -0.648919 0.752305 -0.113761 0.213367 0.036414 -0.976293 -0.730327 -0.657808 -0.184147 -0.724192 0.680150 -0.113761 0.208376 0.058576 -0.976293 -0.657362 -0.730729 -0.184147 -0.790888 0.601295 -0.113761 0.201169 0.079891 -0.976293 -0.577951 -0.795023 -0.184147 -0.849552 0.515092 -0.113761 0.191688 0.100535 -0.976293 -0.491444 -0.851218 -0.184147 -0.898858 0.423216 -0.113761 0.180095 0.120072 -0.976293 -0.399524 -0.898037 -0.184147 -0.937937 0.327617 -0.113761 0.166657 0.138119 -0.976293 -0.304138 -0.934660 -0.184147 -0.967108 0.227510 -0.113761 0.151264 0.154825 -0.976293 -0.204503 -0.961389 -0.184147 -0.985626 0.124897 -0.113761 0.134204 0.169826 -0.976293 -0.102617 -0.977527 -0.184147 -0.993271 0.021718 -0.113761 0.115815 0.182862 -0.976293 -0.000400 -0.982899 -0.184147 -0.990077 -0.082504 -0.113761 0.096011 0.193993 -0.976293 0.102617 -0.977527 -0.184147 -0.975977 -0.185817 -0.113761 0.075151 0.202987 -0.976293 0.204503 -0.961389 -0.184147 -0.951127 -0.287083 -0.113761 0.053462 0.209746 -0.976293 0.304138 -0.934660 -0.184147 -0.916185 -0.384270 -0.113761 0.031399 0.214163 -0.976293 0.399524 -0.898037 -0.184147 -0.870865 -0.478177 -0.113761 0.008781 0.216274 -0.976293 0.491444 -0.851218 -0.184147 -0.815952 -0.566816 -0.113761 -0.013935 0.216003 -0.976293 0.577951 -0.795023 -0.184147 -0.752701 -0.648460 -0.113761 -0.036283 0.213389 -0.976293 0.657362 -0.730729 -0.184147 -0.680592 -0.723777 -0.113761 -0.058448 0.208411 -0.976293 0.730327 -0.657808 -0.184147 -0.600987 -0.791122 -0.113761 -0.079970 0.201138 -0.976293 0.795248 -0.577642 -0.184147 -0.514762 -0.849752 -0.113761 -0.100610 0.191649 -0.976293 0.851409 -0.491113 -0.184147 -0.423765 -0.898600 -0.113761 -0.119962 0.180169 -0.976293 0.897793 -0.400072 -0.184147 -0.327252 -0.938064 -0.113761 -0.138184 0.166603 -0.976293 0.934779 -0.303774 -0.184147 -0.227134 -0.967196 -0.113761 -0.154884 0.151203 -0.976293 0.961468 -0.204129 -0.184147 -0.125499 -0.985550 -0.113761 -0.169744 0.134307 -0.976293 0.977464 -0.103214 -0.184147 -0.021515 -0.993275 -0.113761 -0.182886 0.115777 -0.976293 0.982899 -0.000200 -0.184147 0.082705 -0.990060 -0.113761 -0.194013 0.095972 -0.976293 0.977506 0.102816 -0.184147 0.186015 -0.975939 -0.113761 -0.203003 0.075109 -0.976293 0.961347 0.204699 -0.184147 0.286325 -0.951355 -0.113761 -0.209703 0.053629 -0.976293 0.934902 0.303393 -0.184147 0.384457 -0.916107 -0.113761 -0.214169 0.031356 -0.976293 0.897956 0.399707 -0.184147 0.478354 -0.870767 -0.113761 -0.216276 0.008736 -0.976293 0.851118 0.491617 -0.184147 0.566982 -0.815837 -0.113761 -0.216000 -0.013979 -0.976293 0.794906 0.578113 -0.184147 0.648613 -0.752569 -0.113761 -0.213382 -0.036327 -0.976293 0.730595 0.657511 -0.184147 0.723915 -0.680445 -0.113761 -0.208400 -0.058491 -0.976293 0.657660 0.730461 -0.184147 0.791244 -0.600826 -0.113761 -0.201122 -0.080010 -0.976293 0.577480 0.795366 -0.184147 0.849342 -0.515438 -0.113761 -0.191729 -0.100457 -0.976293 0.491791 0.851018 -0.184147 0.898686 -0.423582 -0.113761 -0.180144 -0.119998 -0.976293 0.399890 0.897874 -0.184147 0.938131 -0.327061 -0.113761 -0.166575 -0.138218 -0.976293 0.303584 0.934841 -0.184147 0.967243 -0.226937 -0.113761 -0.151172 -0.154915 -0.976293 0.203934 0.961510 -0.184147 0.985575 -0.125299 -0.113761 -0.134273 -0.169771 -0.976293 0.103015 0.977485 -0.184147 0.993280 -0.021313 -0.113761 -0.115740 -0.182909 -0.976293 0.000000 0.982899 -0.184147 0.990043 0.082907 -0.113761 -0.095932 -0.194032 -0.976293 -0.103015 0.977485 -0.184147 0.976087 0.185238 -0.113761 -0.075271 -0.202943 -0.976293 -0.203934 0.961510 -0.184147 0.951297 0.286519 -0.113761 -0.053587 -0.209714 -0.976293 -0.303584 0.934841 -0.184147 0.916028 0.384643 -0.113761 -0.031312 -0.214175 -0.976293 -0.399890 0.897874 -0.184147 0.870670 0.478531 -0.113761 -0.008692 -0.216278 -0.976293 -0.491791 0.851018 -0.184147 0.816288 0.566332 -0.113761 0.013807 -0.216011 -0.976293 -0.577480 0.795366 -0.184147 0.752437 0.648766 -0.113761 0.036370 -0.213375 -0.976293 -0.657660 0.730461 -0.184147 0.680297 0.724054 -0.113761 0.058533 -0.208388 -0.976293 -0.730595 0.657511 -0.184147 0.601456 0.790765 -0.113761 0.079850 -0.201185 -0.976293 -0.794906 0.578113 -0.184147 0.515265 0.849447 -0.113761 0.100496 -0.191708 -0.976293 -0.851118 0.491617 -0.184147 0.423399 0.898772 -0.113761 0.120035 -0.180120 -0.976293 -0.897956 0.399707 -0.184147 0.326870 0.938198 -0.113761 0.138252 -0.166547 -0.976293 -0.934902 0.303393 -0.184147 0.227707 0.967062 -0.113761 0.154795 -0.151295 -0.976293 -0.961347 0.204699 -0.184147 0.125098 0.985601 -0.113761 0.169799 -0.134238 -0.976293 -0.977506 0.102816 -0.184147 -0.283235 0.527562 -0.800909 -0.175680 -0.849516 -0.497452 -0.942823 -0.000192 0.333295 -0.336968 0.494972 -0.800909 -0.085677 -0.863250 -0.497452 -0.937610 -0.099006 0.333295 -0.386531 0.457316 -0.800909 0.004402 -0.867480 -0.497452 -0.922266 -0.195806 0.333295 -0.432332 0.414286 -0.800909 0.095296 -0.862241 -0.497452 -0.896665 -0.291388 0.333295 -0.473371 0.366693 -0.800909 0.185140 -0.847505 -0.497452 -0.861187 -0.383760 0.333295 -0.508881 0.315569 -0.800909 0.272122 -0.823706 -0.497452 -0.816694 -0.471089 0.333295 -0.539152 0.260497 -0.800909 0.356953 -0.790649 -0.497452 -0.762823 -0.554089 0.333295 -0.563485 0.202555 -0.800909 0.437853 -0.748883 -0.497452 -0.700549 -0.630987 0.333295 -0.581611 0.142383 -0.800909 0.513930 -0.698869 -0.497452 -0.630559 -0.700935 0.333295 -0.593250 0.081235 -0.800909 0.583704 -0.641740 -0.497452 -0.554386 -0.762608 0.333295 -0.598496 0.018610 -0.800909 0.647749 -0.577030 -0.497452 -0.471406 -0.816511 0.333295 -0.597151 -0.044219 -0.800909 0.704658 -0.505963 -0.497452 -0.383234 -0.861421 0.333295 -0.589334 -0.105971 -0.800909 0.753376 -0.430077 -0.497452 -0.291737 -0.896551 0.333295 -0.574981 -0.167154 -0.800909 0.794302 -0.348749 -0.497452 -0.196165 -0.922190 0.333295 -0.554296 -0.226496 -0.800909 0.826479 -0.263580 -0.497452 -0.098433 -0.937670 0.333295 -0.527735 -0.282913 -0.800909 0.849409 -0.176199 -0.497452 -0.000384 -0.942822 0.333295 -0.495177 -0.336665 -0.800909 0.863198 -0.086205 -0.497452 0.098433 -0.937670 0.333295 -0.457165 -0.386709 -0.800909 0.867479 0.004740 -0.497452 0.196165 -0.922190 0.333295 -0.414118 -0.432494 -0.800909 0.862204 0.095631 -0.497452 0.291737 -0.896551 0.333295 -0.366982 -0.473147 -0.800909 0.847618 0.184622 -0.497452 0.383234 -0.861421 0.333295 -0.315372 -0.509004 -0.800909 0.823600 0.272442 -0.497452 0.471406 -0.816511 0.333295 -0.260287 -0.539254 -0.800909 0.790510 0.357261 -0.497452 0.554386 -0.762608 0.333295 -0.202900 -0.563361 -0.800909 0.749151 0.437395 -0.497452 0.630559 -0.700935 0.333295 -0.142738 -0.581524 -0.800909 0.699183 0.513503 -0.497452 0.700549 -0.630987 0.333295 -0.081004 -0.593281 -0.800909 0.641513 0.583954 -0.497452 0.762823 -0.554089 0.333295 -0.018378 -0.598503 -0.800909 0.576778 0.647973 -0.497452 0.816694 -0.471089 0.333295 0.043854 -0.597178 -0.800909 0.506393 0.704349 -0.497452 0.861187 -0.383760 0.333295 0.106201 -0.589292 -0.800909 0.429784 0.753543 -0.497452 0.896665 -0.291388 0.333295 0.167378 -0.574916 -0.800909 0.348440 0.794438 -0.497452 0.922266 -0.195806 0.333295 0.226157 -0.554434 -0.800909 0.264085 0.826318 -0.497452 0.937610 -0.099006 0.333295 0.283020 -0.527678 -0.800909 0.176026 0.849445 -0.497452 0.942823 -0.000192 0.333295 0.336766 -0.495109 -0.800909 0.086029 0.863215 -0.497452 0.937650 0.098624 0.333295 0.386802 -0.457087 -0.800909 -0.004916 0.867478 -0.497452 0.922150 0.196353 0.333295 0.432164 -0.414462 -0.800909 -0.094945 0.862280 -0.497452 0.896783 0.291023 0.333295 0.473222 -0.366885 -0.800909 -0.184795 0.847580 -0.497452 0.861343 0.383409 0.333295 0.509068 -0.315268 -0.800909 -0.272610 0.823545 -0.497452 0.816415 0.471573 0.333295 0.539307 -0.260178 -0.800909 -0.357422 0.790437 -0.497452 0.762495 0.554542 0.333295 0.563403 -0.202785 -0.800909 -0.437548 0.749062 -0.497452 0.700806 0.630702 0.333295 0.581553 -0.142619 -0.800909 -0.513645 0.699078 -0.497452 0.630845 0.700678 0.333295 0.593298 -0.080883 -0.800909 -0.584085 0.641394 -0.497452 0.553934 0.762936 0.333295 0.598489 -0.018854 -0.800909 -0.647514 0.577293 -0.497452 0.471739 0.816319 0.333295 0.597169 0.043975 -0.800909 -0.704452 0.506250 -0.497452 0.383585 0.861265 0.333295 0.589271 0.106321 -0.800909 -0.753631 0.429630 -0.497452 0.291205 0.896724 0.333295 0.574882 0.167495 -0.800909 -0.794509 0.348278 -0.497452 0.195618 0.922306 0.333295 0.554388 0.226270 -0.800909 -0.826371 0.263916 -0.497452 0.098815 0.937630 0.333295 0.527620 0.283128 -0.800909 -0.849481 0.175853 -0.497452 0.000000 0.942823 0.333295 0.495040 0.336867 -0.800909 -0.863233 0.085853 -0.497452 -0.098815 0.937630 0.333295 0.457395 0.386438 -0.800909 -0.867481 -0.004225 -0.497452 -0.195618 0.922306 0.333295 0.414374 0.432248 -0.800909 -0.862261 -0.095120 -0.497452 -0.291205 0.896724 0.333295 0.366789 0.473297 -0.800909 -0.847543 -0.184968 -0.497452 -0.383585 0.861265 0.333295 0.315164 0.509132 -0.800909 -0.823489 -0.272777 -0.497452 -0.471739 0.816319 0.333295 0.260607 0.539099 -0.800909 -0.790722 -0.356792 -0.497452 -0.553934 0.762936 0.333295 0.202670 0.563444 -0.800909 -0.748973 -0.437700 -0.497452 -0.630845 0.700678 0.333295 0.142501 0.581582 -0.800909 -0.698973 -0.513788 -0.497452 -0.700806 0.630702 0.333295 0.081356 0.593233 -0.800909 -0.641859 -0.583574 -0.497452 -0.762495 0.554542 0.333295 0.018732 0.598492 -0.800909 -0.577161 -0.647631 -0.497452 -0.816415 0.471573 0.333295 -0.044097 0.597160 -0.800909 -0.506106 -0.704555 -0.497452 -0.861343 0.383409 0.333295 -0.106441 0.589249 -0.800909 -0.429477 -0.753718 -0.497452 -0.896783 0.291023 0.333295 -0.167037 0.575015 -0.800909 -0.348911 -0.794231 -0.497452 -0.922150 0.196353 0.333295 -0.226383 0.554342 -0.800909 -0.263748 -0.826425 -0.497452 -0.937650 0.098624 0.333295 0.325150 0.493294 -0.806808 0.184592 -0.869863 -0.457455 -0.927472 -0.000189 -0.373894 0.271658 0.524655 -0.806808 0.274743 -0.845725 -0.457455 -0.922344 -0.097394 -0.373894 0.215725 0.550022 -0.806808 0.361056 -0.812634 -0.457455 -0.907250 -0.192618 -0.373894 0.156890 0.569602 -0.806808 0.444237 -0.770317 -0.457455 -0.882065 -0.286644 -0.373894 0.096328 0.582908 -0.806808 0.522525 -0.719516 -0.457455 -0.847165 -0.377512 -0.373894 0.035294 0.589759 -0.806808 0.594397 -0.661383 -0.457455 -0.803397 -0.463418 -0.373894 -0.026711 0.590210 -0.806808 0.660441 -0.595444 -0.457455 -0.750403 -0.545068 -0.373894 -0.088422 0.584160 -0.806808 0.719210 -0.522945 -0.457455 -0.689143 -0.620714 -0.373894 -0.149160 0.571675 -0.806808 0.770058 -0.444687 -0.457455 -0.620292 -0.689522 -0.373894 -0.207701 0.553102 -0.806808 0.812061 -0.362342 -0.457455 -0.545360 -0.750191 -0.373894 -0.264526 0.528287 -0.806808 0.845565 -0.275237 -0.457455 -0.463731 -0.803217 -0.373894 -0.318437 0.497653 -0.806808 0.869755 -0.185100 -0.457455 -0.376994 -0.847395 -0.373894 -0.368379 0.461907 -0.806808 0.884271 -0.093808 -0.457455 -0.286987 -0.881954 -0.373894 -0.414762 0.420754 -0.806808 0.889233 -0.000614 -0.457455 -0.192971 -0.907175 -0.373894 -0.456576 0.374967 -0.806808 0.884400 0.092588 -0.457455 -0.096830 -0.922403 -0.373894 -0.493095 0.325451 -0.806808 0.869975 0.184060 -0.457455 -0.000378 -0.927471 -0.373894 -0.524489 0.271979 -0.806808 0.845893 0.274226 -0.457455 0.096830 -0.922403 -0.373894 -0.550106 0.215511 -0.806808 0.812493 0.361372 -0.457455 0.192971 -0.907175 -0.373894 -0.569663 0.156669 -0.806808 0.770144 0.444537 -0.457455 0.286987 -0.881954 -0.373894 -0.582850 0.096684 -0.806808 0.719835 0.522085 -0.457455 0.376994 -0.847395 -0.373894 -0.589773 0.035065 -0.806808 0.661152 0.594654 -0.457455 0.463731 -0.803217 -0.373894 -0.590200 -0.026941 -0.806808 0.595187 0.660672 -0.457455 0.545360 -0.750191 -0.373894 -0.584214 -0.088066 -0.806808 0.523385 0.718891 -0.457455 0.620292 -0.689522 -0.373894 -0.571766 -0.148810 -0.806808 0.445157 0.769786 -0.457455 0.689143 -0.620714 -0.373894 -0.553021 -0.207916 -0.806808 0.362026 0.812202 -0.457455 0.750403 -0.545068 -0.373894 -0.528184 -0.264731 -0.806808 0.274908 0.845672 -0.457455 0.803397 -0.463418 -0.373894 -0.497848 -0.318133 -0.806808 0.185631 0.869641 -0.457455 0.847165 -0.377512 -0.373894 -0.461763 -0.368559 -0.806808 0.093464 0.884307 -0.457455 0.882065 -0.286644 -0.373894 -0.420593 -0.414925 -0.806808 0.000268 0.889233 -0.457455 0.907250 -0.192618 -0.373894 -0.375246 -0.456346 -0.806808 -0.092047 0.884456 -0.457455 0.922344 -0.097394 -0.373894 -0.325351 -0.493162 -0.806808 -0.184238 0.869938 -0.457455 0.927472 -0.000189 -0.373894 -0.271872 -0.524545 -0.806808 -0.274399 0.845837 -0.457455 0.922383 0.097018 -0.373894 -0.215399 -0.550150 -0.806808 -0.361537 0.812420 -0.457455 0.907135 0.193156 -0.373894 -0.157122 -0.569538 -0.806808 -0.443923 0.770498 -0.457455 0.882182 0.286284 -0.373894 -0.096565 -0.582869 -0.806808 -0.522232 0.719728 -0.457455 0.847319 0.377167 -0.373894 -0.034945 -0.589780 -0.806808 -0.594789 0.661031 -0.457455 0.803122 0.463894 -0.373894 0.027061 -0.590194 -0.806808 -0.660794 0.595052 -0.457455 0.750080 0.545513 -0.373894 0.088184 -0.584196 -0.806808 -0.718997 0.523238 -0.457455 0.689396 0.620433 -0.373894 0.148927 -0.571736 -0.806808 -0.769876 0.445000 -0.457455 0.620573 0.689269 -0.373894 0.208029 -0.552979 -0.806808 -0.812276 0.361861 -0.457455 0.544915 0.750514 -0.373894 0.264311 -0.528395 -0.806808 -0.845453 0.275581 -0.457455 0.464058 0.803028 -0.373894 0.318235 -0.497783 -0.806808 -0.869679 0.185454 -0.457455 0.377339 0.847242 -0.373894 0.368653 -0.461688 -0.806808 -0.884326 0.093284 -0.457455 0.286464 0.882124 -0.373894 0.415011 -0.420508 -0.806808 -0.889233 0.000087 -0.457455 0.192433 0.907289 -0.373894 0.456423 -0.375153 -0.806808 -0.884437 -0.092227 -0.457455 0.097206 0.922364 -0.373894 0.493228 -0.325250 -0.806808 -0.869900 -0.184415 -0.457455 0.000000 0.927472 -0.373894 0.524600 -0.271765 -0.806808 -0.845781 -0.274571 -0.457455 -0.097206 0.922364 -0.373894 0.549978 -0.215837 -0.806808 -0.812707 -0.360890 -0.457455 -0.192433 0.907289 -0.373894 0.569570 -0.157006 -0.806808 -0.770408 -0.444080 -0.457455 -0.286464 0.882124 -0.373894 0.582889 -0.096447 -0.806808 -0.719622 -0.522379 -0.457455 -0.377339 0.847242 -0.373894 0.589787 -0.034824 -0.806808 -0.660910 -0.594923 -0.457455 -0.464058 0.803028 -0.373894 0.590215 0.026591 -0.806808 -0.595578 -0.660320 -0.457455 -0.544915 0.750514 -0.373894 0.584178 0.088303 -0.806808 -0.523092 -0.719104 -0.457455 -0.620573 0.689269 -0.373894 0.571706 0.149043 -0.806808 -0.444844 -0.769967 -0.457455 -0.689396 0.620433 -0.373894 0.553144 0.207588 -0.806808 -0.362508 -0.811987 -0.457455 -0.750080 0.545513 -0.373894 0.528341 0.264418 -0.806808 -0.275409 -0.845509 -0.457455 -0.803122 0.463894 -0.373894 0.497718 0.318336 -0.806808 -0.185277 -0.869717 -0.457455 -0.847319 0.377167 -0.373894 0.461613 0.368747 -0.806808 -0.093104 -0.884345 -0.457455 -0.882182 0.286284 -0.373894 0.420839 0.414676 -0.806808 -0.000795 -0.889233 -0.457455 -0.907135 0.193156 -0.373894 0.375060 0.456499 -0.806808 0.092407 -0.884418 -0.457455 -0.922383 0.097018 -0.373894 0.252520 -0.792025 -0.555814 -0.327334 -0.610488 0.721219 -0.910542 -0.000185 -0.413417 0.334139 -0.761197 -0.555814 -0.261547 -0.641433 0.721219 -0.905508 -0.095616 -0.413417 0.411356 -0.722397 -0.555814 -0.193545 -0.665119 0.721219 -0.890689 -0.189102 -0.413417 0.484803 -0.675305 -0.555814 -0.122770 -0.681741 0.721219 -0.865964 -0.281411 -0.413417 0.552909 -0.620775 -0.555814 -0.050643 -0.690854 0.721219 -0.831701 -0.370621 -0.413417 0.614366 -0.560022 -0.555814 0.021350 -0.692378 0.721219 -0.788732 -0.454959 -0.413417 0.669677 -0.492548 -0.555814 0.093799 -0.686327 0.721219 -0.736705 -0.535118 -0.413417 0.717611 -0.419648 -0.555814 0.165214 -0.672717 0.721219 -0.676564 -0.609383 -0.413417 0.757641 -0.342126 -0.555814 0.234810 -0.651696 0.721219 -0.608970 -0.676936 -0.413417 0.789065 -0.261625 -0.555814 0.301195 -0.623798 0.721219 -0.535405 -0.736497 -0.413417 0.812139 -0.177484 -0.555814 0.364915 -0.588795 0.721219 -0.455266 -0.788555 -0.413417 0.826268 -0.091389 -0.555814 0.424615 -0.547307 0.721219 -0.370112 -0.831927 -0.413417 0.831291 -0.005118 -0.555814 0.479139 -0.500269 0.721219 -0.281748 -0.865855 -0.413417 0.827249 0.082035 -0.555814 0.528932 -0.447297 0.721219 -0.189449 -0.890615 -0.413417 0.814095 0.168285 -0.555814 0.572898 -0.389398 0.721219 -0.095062 -0.905566 -0.413417 0.792179 0.252036 -0.555814 0.610288 -0.327707 0.721219 -0.000371 -0.910542 -0.413417 0.761401 0.333674 -0.555814 0.641273 -0.261939 0.721219 0.095062 -0.905566 -0.413417 0.722237 0.411637 -0.555814 0.665194 -0.193287 0.721219 0.189449 -0.890615 -0.413417 0.675116 0.485065 -0.555814 0.681789 -0.122505 0.721219 0.281748 -0.865855 -0.413417 0.621113 0.552530 -0.555814 0.690822 -0.051065 0.721219 0.370112 -0.831927 -0.413417 0.559783 0.614584 -0.555814 0.692370 0.021620 0.721219 0.455266 -0.788555 -0.413417 0.492287 0.669868 -0.555814 0.686291 0.094066 0.721219 0.535405 -0.736497 -0.413417 0.420086 0.717355 -0.555814 0.672817 0.164803 0.721219 0.608970 -0.676936 -0.413417 0.342589 0.757432 -0.555814 0.651839 0.234412 0.721219 0.676564 -0.609383 -0.413417 0.261318 0.789166 -0.555814 0.623681 0.301438 0.721219 0.736705 -0.535118 -0.413417 0.177168 0.812208 -0.555814 0.588654 0.365144 0.721219 0.788732 -0.454959 -0.413417 0.091894 0.826212 -0.555814 0.547566 0.424281 0.721219 0.831701 -0.370621 -0.413417 0.004795 0.831293 -0.555814 0.500083 0.479333 0.721219 0.865964 -0.281411 -0.413417 -0.082357 0.827217 -0.555814 0.447091 0.529106 0.721219 0.890689 -0.189102 -0.413417 -0.167788 0.814198 -0.555814 0.389748 0.572660 0.721219 0.905508 -0.095616 -0.413417 -0.252197 0.792128 -0.555814 0.327582 0.610355 0.721219 0.910542 -0.000185 -0.413417 -0.333829 0.761333 -0.555814 0.261809 0.641326 0.721219 0.905546 0.095247 -0.413417 -0.411784 0.722153 -0.555814 0.193151 0.665234 0.721219 0.890577 0.189630 -0.413417 -0.484527 0.675502 -0.555814 0.123048 0.681691 0.721219 0.866079 0.281059 -0.413417 -0.552656 0.621000 -0.555814 0.050924 0.690833 0.721219 0.831852 0.370282 -0.413417 -0.614698 0.559658 -0.555814 -0.021761 0.692365 0.721219 0.788462 0.455427 -0.413417 -0.669969 0.492151 -0.555814 -0.094206 0.686271 0.721219 0.736388 0.535555 -0.413417 -0.717440 0.419940 -0.555814 -0.164940 0.672784 0.721219 0.676812 0.609108 -0.413417 -0.757502 0.342435 -0.555814 -0.234544 0.651792 0.721219 0.609245 0.676688 -0.413417 -0.789219 0.261157 -0.555814 -0.301565 0.623620 0.721219 0.534968 0.736814 -0.413417 -0.812067 0.177815 -0.555814 -0.364675 0.588944 0.721219 0.455587 0.788370 -0.413417 -0.826230 0.091725 -0.555814 -0.424392 0.547480 0.721219 0.370451 0.831776 -0.413417 -0.831294 0.004625 -0.555814 -0.479435 0.499985 0.721219 0.281235 0.866022 -0.413417 -0.827200 -0.082526 -0.555814 -0.529197 0.446984 0.721219 0.188921 0.890727 -0.413417 -0.814163 -0.167954 -0.555814 -0.572740 0.389631 0.721219 0.095431 0.905527 -0.413417 -0.792077 -0.252359 -0.555814 -0.610422 0.327458 0.721219 0.000000 0.910542 -0.413417 -0.761265 -0.333984 -0.555814 -0.641380 0.261678 0.721219 -0.095431 0.905527 -0.413417 -0.722480 -0.411209 -0.555814 -0.665080 0.193681 0.721219 -0.188921 0.890727 -0.413417 -0.675404 -0.484665 -0.555814 -0.681716 0.122909 0.721219 -0.281235 0.866022 -0.413417 -0.620888 -0.552783 -0.555814 -0.690843 0.050783 0.721219 -0.370451 0.831776 -0.413417 -0.559533 -0.614812 -0.555814 -0.692361 -0.021902 0.721219 -0.455587 0.788370 -0.413417 -0.492684 -0.669577 -0.555814 -0.686346 -0.093659 0.721219 -0.534968 0.736814 -0.413417 -0.419794 -0.717526 -0.555814 -0.672750 -0.165077 0.721219 -0.609245 0.676688 -0.413417 -0.342280 -0.757571 -0.555814 -0.651744 -0.234677 0.721219 -0.676812 0.609108 -0.413417 -0.261786 -0.789011 -0.555814 -0.623860 -0.301068 0.721219 -0.736388 0.535555 -0.413417 -0.177650 -0.812103 -0.555814 -0.588870 -0.364795 0.721219 -0.788462 0.455427 -0.413417 -0.091557 -0.826249 -0.555814 -0.547394 -0.424504 0.721219 -0.831852 0.370282 -0.413417 -0.004456 -0.831294 -0.555814 -0.499888 -0.479537 0.721219 -0.866079 0.281059 -0.413417 0.081867 -0.827266 -0.555814 -0.447405 -0.528840 0.721219 -0.890577 0.189630 -0.413417 0.168119 -0.814129 -0.555814 -0.389514 -0.572819 0.721219 -0.905546 0.095247 -0.413417 0.384439 0.841439 0.379720 -0.598836 0.540352 -0.591113 -0.702568 -0.000143 0.711616 0.294132 0.877097 0.379720 -0.652171 0.474613 -0.591113 -0.698684 -0.073776 0.711616 0.201490 0.902893 0.379720 -0.697918 0.404345 -0.591113 -0.687250 -0.145910 0.711616 0.105750 0.919038 0.379720 -0.736453 0.328972 -0.591113 -0.668172 -0.217135 0.711616 0.008846 0.925059 0.379720 -0.766875 0.249974 -0.591113 -0.641735 -0.285969 0.711616 -0.087235 0.920979 0.379720 -0.788682 0.169012 -0.591113 -0.608581 -0.351044 0.711616 -0.183279 0.906764 0.379720 -0.802052 0.085422 -0.591113 -0.568437 -0.412894 0.711616 -0.277305 0.882562 0.379720 -0.806588 0.000891 -0.591113 -0.522032 -0.470196 0.711616 -0.368277 0.848637 0.379720 -0.802239 -0.083650 -0.591113 -0.469877 -0.522319 0.711616 -0.454386 0.805820 0.379720 -0.789221 -0.166481 -0.591113 -0.413115 -0.568276 0.711616 -0.536340 0.753759 0.379720 -0.767426 -0.248280 -0.591113 -0.351280 -0.608444 0.711616 -0.612385 0.693396 0.379720 -0.737177 -0.327344 -0.591113 -0.285576 -0.641910 0.711616 -0.681059 0.626076 0.379720 -0.699212 -0.402104 -0.591113 -0.217395 -0.668088 0.711616 -0.742926 0.551248 0.379720 -0.653218 -0.473172 -0.591113 -0.146177 -0.687193 0.711616 -0.796609 0.470348 0.379720 -0.600028 -0.539028 -0.591113 -0.073350 -0.698729 0.711616 -0.841204 0.384953 0.379720 -0.540717 -0.598506 -0.591113 -0.000286 -0.702568 0.711616 -0.876917 0.294668 0.379720 -0.475012 -0.651881 -0.591113 0.073350 -0.698729 0.711616 -0.902971 0.201138 0.379720 -0.404074 -0.698075 -0.591113 0.146177 -0.687193 0.711616 -0.919079 0.105393 0.379720 -0.328685 -0.736581 -0.591113 0.217395 -0.668088 0.711616 -0.925054 0.009411 0.379720 -0.250443 -0.766722 -0.591113 0.285576 -0.641910 0.711616 -0.920945 -0.087593 0.379720 -0.168706 -0.788748 -0.591113 0.351280 -0.608444 0.711616 -0.906693 -0.183632 0.379720 -0.085110 -0.802086 -0.591113 0.413115 -0.568276 0.711616 -0.882731 -0.276766 0.379720 -0.001383 -0.806587 -0.591113 0.469877 -0.522319 0.711616 -0.848862 -0.367758 0.379720 0.083160 -0.802290 -0.591113 0.522032 -0.470196 0.711616 -0.805643 -0.454700 0.379720 0.166788 -0.789156 -0.591113 0.568437 -0.412894 0.711616 -0.753551 -0.536633 0.379720 0.248578 -0.767329 -0.591113 0.608581 -0.351044 0.711616 -0.693770 -0.611961 0.379720 0.326894 -0.737377 -0.591113 0.641735 -0.285969 0.711616 -0.625811 -0.681303 0.379720 0.402376 -0.699055 -0.591113 0.668172 -0.217135 0.711616 -0.550959 -0.743140 0.379720 0.473426 -0.653034 -0.591113 0.687250 -0.145910 0.711616 -0.470835 -0.796321 0.379720 0.538661 -0.600358 -0.591113 0.698684 -0.073776 0.711616 -0.384781 -0.841283 0.379720 0.598616 -0.540596 -0.591113 0.702568 -0.000143 0.711616 -0.294490 -0.876977 0.379720 0.651978 -0.474879 -0.591113 0.698714 0.073492 0.711616 -0.200954 -0.903012 0.379720 0.698158 -0.403932 -0.591113 0.687163 0.146317 0.711616 -0.106124 -0.918994 0.379720 0.736319 -0.329272 -0.591113 0.668261 0.216863 0.711616 -0.009223 -0.925056 0.379720 0.766773 -0.250287 -0.591113 0.641852 0.285707 0.711616 0.087780 -0.920928 0.379720 0.788782 -0.168545 -0.591113 0.608372 0.351404 0.711616 0.183817 -0.906656 0.379720 0.802103 -0.084947 -0.591113 0.568192 0.413231 0.711616 0.276946 -0.882674 0.379720 0.806588 -0.001219 -0.591113 0.522224 0.469984 0.711616 0.367931 -0.848787 0.379720 0.802273 0.083324 -0.591113 0.470090 0.522128 0.711616 0.454864 -0.805551 0.379720 0.789122 0.166949 -0.591113 0.412778 0.568521 0.711616 0.536032 -0.753978 0.379720 0.767527 0.247967 -0.591113 0.351528 0.608301 0.711616 0.612103 -0.693645 0.379720 0.737311 0.327044 -0.591113 0.285838 0.641793 0.711616 0.681430 -0.625672 0.379720 0.698973 0.402518 -0.591113 0.216999 0.668217 0.711616 0.743252 -0.550807 0.379720 0.652937 0.473559 -0.591113 0.145770 0.687279 0.711616 0.796417 -0.470672 0.379720 0.600248 0.538783 -0.591113 0.073634 0.698699 0.711616 0.841361 -0.384610 0.379720 0.540474 0.598726 -0.591113 0.000000 0.702568 0.711616 0.877037 -0.294311 0.379720 0.474746 0.652074 -0.591113 -0.073634 0.698699 0.711616 0.902852 -0.201673 0.379720 0.404488 0.697836 -0.591113 -0.145770 0.687279 0.711616 0.919016 -0.105937 0.379720 0.329122 0.736386 -0.591113 -0.216999 0.668217 0.711616 0.925058 -0.009034 0.379720 0.250131 0.766824 -0.591113 -0.285838 0.641793 0.711616 0.920910 0.087968 0.379720 0.168384 0.788817 -0.591113 -0.351528 0.608301 0.711616 0.906802 0.183095 0.379720 0.085585 0.802035 -0.591113 -0.412778 0.568521 0.711616 0.882618 0.277126 0.379720 0.001055 0.806588 -0.591113 -0.470090 0.522128 0.711616 0.848712 0.368104 0.379720 -0.083487 0.802256 -0.591113 -0.522224 0.469984 0.711616 0.805913 0.454222 0.379720 -0.166320 0.789254 -0.591113 -0.568192 0.413231 0.711616 0.753868 0.536186 0.379720 -0.248124 0.767476 -0.591113 -0.608372 0.351404 0.711616 0.693520 0.612244 0.379720 -0.327194 0.737244 -0.591113 -0.641852 0.285707 0.711616 0.625533 0.681558 0.379720 -0.402661 0.698892 -0.591113 -0.668261 0.216863 0.711616 0.551399 0.742814 0.379720 -0.473039 0.653314 -0.591113 -0.687163 0.146317 0.711616 0.470510 0.796513 0.379720 -0.538906 0.600138 -0.591113 -0.698714 0.073492 0.711616 0.363742 0.635682 0.680882 -0.299737 0.771951 -0.560580 -0.881958 -0.000180 0.471328 0.295114 0.670304 0.680882 -0.378993 0.736284 -0.560580 -0.877082 -0.092614 0.471328 0.223934 0.697319 0.680882 -0.453380 0.692962 -0.560580 -0.862728 -0.183166 0.471328 0.149616 0.716948 0.680882 -0.523511 0.641628 -0.560580 -0.838780 -0.272577 0.471328 0.073651 0.728681 0.680882 -0.587875 0.583227 -0.560580 -0.805592 -0.358986 0.471328 -0.002393 0.732389 0.680882 -0.645245 0.519046 -0.560580 -0.763972 -0.440677 0.471328 -0.079140 0.728105 0.680882 -0.696091 0.448562 -0.560580 -0.713578 -0.518320 0.471328 -0.155015 0.715801 0.680882 -0.739270 0.373136 -0.560580 -0.655325 -0.590253 0.471328 -0.229182 0.695612 0.680882 -0.774306 0.293600 -0.560580 -0.589853 -0.655685 0.471328 -0.300157 0.668061 0.680882 -0.800601 0.211631 -0.560580 -0.518597 -0.713377 0.471328 -0.368521 0.632923 0.680882 -0.818373 0.126557 -0.560580 -0.440974 -0.763801 0.471328 -0.432827 0.590814 0.680882 -0.827130 0.040088 -0.560580 -0.358494 -0.805811 0.471328 -0.491822 0.542689 0.680882 -0.826822 -0.045995 -0.560580 -0.272904 -0.838674 0.471328 -0.545991 0.488154 0.680882 -0.817448 -0.132398 -0.560580 -0.183502 -0.862657 0.471328 -0.594146 0.428241 0.680882 -0.799070 -0.217343 -0.560580 -0.092078 -0.877138 0.471328 -0.635460 0.364130 0.680882 -0.772134 -0.299266 -0.560580 -0.000359 -0.881958 0.471328 -0.670124 0.295524 0.680882 -0.736516 -0.378543 -0.560580 0.092078 -0.877138 0.471328 -0.697406 0.223662 0.680882 -0.692786 -0.453650 -0.560580 0.183502 -0.862657 0.471328 -0.717007 0.149337 0.680882 -0.641424 -0.523761 -0.560580 0.272904 -0.838674 0.471328 -0.728636 0.074096 0.680882 -0.583586 -0.587518 -0.560580 0.358494 -0.805811 0.471328 -0.732388 -0.002678 0.680882 -0.518796 -0.645447 -0.560580 0.440974 -0.763801 0.471328 -0.728074 -0.079423 0.680882 -0.448291 -0.696265 -0.560580 0.518597 -0.713377 0.471328 -0.715895 -0.154577 0.680882 -0.373587 -0.739042 -0.560580 0.589853 -0.655685 0.471328 -0.695752 -0.228757 0.680882 -0.294073 -0.774126 -0.560580 0.655325 -0.590253 0.471328 -0.667944 -0.300417 0.680882 -0.211320 -0.800684 -0.560580 0.713578 -0.518320 0.471328 -0.632780 -0.368767 0.680882 -0.126238 -0.818422 -0.560580 0.763972 -0.440677 0.471328 -0.591078 -0.432466 0.680882 -0.040594 -0.827105 -0.560580 0.805592 -0.358986 0.471328 -0.542497 -0.492033 0.680882 0.046316 -0.826804 -0.560580 0.838780 -0.272577 0.471328 -0.487941 -0.546181 0.680882 0.132716 -0.817396 -0.560580 0.862728 -0.183166 0.471328 -0.428604 -0.593884 0.680882 0.216855 -0.799202 -0.560580 0.877082 -0.092614 0.471328 -0.364000 -0.635534 0.680882 0.299423 -0.772073 -0.560580 0.881958 -0.000180 0.471328 -0.295387 -0.670184 0.680882 0.378693 -0.736439 -0.560580 0.877119 0.092257 0.471328 -0.223520 -0.697452 0.680882 0.453791 -0.692693 -0.560580 0.862619 0.183677 0.471328 -0.149908 -0.716887 0.680882 0.523250 -0.641841 -0.560580 0.838891 0.272236 0.471328 -0.073948 -0.728651 0.680882 0.587637 -0.583466 -0.560580 0.805738 0.358658 0.471328 0.002827 -0.732388 0.680882 0.645552 -0.518664 -0.560580 0.763711 0.441130 0.471328 0.079571 -0.728058 0.680882 0.696357 -0.448149 -0.560580 0.713271 0.518743 0.471328 0.154723 -0.715864 0.680882 0.739118 -0.373437 -0.560580 0.655565 0.589986 0.471328 0.228899 -0.695705 0.680882 0.774186 -0.293915 -0.560580 0.590120 0.655445 0.471328 0.300553 -0.667883 0.680882 0.800727 -0.211157 -0.560580 0.518175 0.713684 0.471328 0.368264 -0.633074 0.680882 0.818321 -0.126890 -0.560580 0.441285 0.763621 0.471328 0.432586 -0.590990 0.680882 0.827113 -0.040425 -0.560580 0.358822 0.805665 0.471328 0.492144 -0.542397 0.680882 0.826795 0.046485 -0.560580 0.272406 0.838835 0.471328 0.546280 -0.487830 0.680882 0.817369 0.132883 -0.560580 0.182990 0.862765 0.471328 0.593971 -0.428483 0.680882 0.799158 0.217018 -0.560580 0.092436 0.877101 0.471328 0.635608 -0.363871 0.680882 0.772012 0.299580 -0.560580 0.000000 0.881958 0.471328 0.670244 -0.295251 0.680882 0.736362 0.378843 -0.560580 -0.092436 0.877101 0.471328 0.697273 -0.224076 0.680882 0.693054 0.453239 -0.560580 -0.182990 0.862765 0.471328 0.716918 -0.149762 0.680882 0.641735 0.523380 -0.560580 -0.272406 0.838835 0.471328 0.728666 -0.073799 0.680882 0.583346 0.587756 -0.560580 -0.358822 0.805665 0.471328 0.732387 0.002977 0.680882 0.518533 0.645658 -0.560580 -0.441285 0.763621 0.471328 0.728121 0.078992 0.680882 0.448703 0.696000 -0.560580 -0.518175 0.713684 0.471328 0.715832 0.154869 0.680882 0.373286 0.739194 -0.560580 -0.590120 0.655445 0.471328 0.695658 0.229040 0.680882 0.293758 0.774246 -0.560580 -0.655565 0.589986 0.471328 0.668122 0.300021 0.680882 0.211794 0.800558 -0.560580 -0.713271 0.518743 0.471328 0.632998 0.368392 0.680882 0.126723 0.818347 -0.560580 -0.763711 0.441130 0.471328 0.590902 0.432706 0.680882 0.040257 0.827121 -0.560580 -0.805738 0.358658 0.471328 0.542297 0.492254 0.680882 -0.046653 0.826785 -0.560580 -0.838891 0.272236 0.471328 0.488265 0.545892 0.680882 -0.132232 0.817475 -0.560580 -0.862619 0.183677 0.471328 0.428362 0.594059 0.680882 -0.217181 0.799114 -0.560580 -0.877119 0.092257 0.471328 -0.015993 -0.148654 0.988760 -0.002610 0.988889 0.148631 -0.999869 -0.000204 -0.016203 -0.000325 -0.149511 0.988760 -0.106238 0.983169 0.148631 -0.994341 -0.104996 -0.016203 0.015198 -0.148737 0.988760 -0.207730 0.966828 0.148631 -0.978068 -0.207654 -0.016203 0.030703 -0.146325 0.988760 -0.307916 0.939732 0.148631 -0.950918 -0.309019 -0.016203 0.045870 -0.142301 0.988760 -0.404711 0.902285 0.148631 -0.913293 -0.406980 -0.016203 0.060395 -0.136771 0.988760 -0.496193 0.855395 0.148631 -0.866109 -0.499592 -0.016203 0.074397 -0.129688 0.988760 -0.583112 0.798680 0.148631 -0.808978 -0.587615 -0.016203 0.087579 -0.121176 0.988760 -0.663608 0.733167 0.148631 -0.742937 -0.669166 -0.016203 0.099797 -0.111330 0.988760 -0.736794 0.659578 0.148631 -0.668712 -0.743345 -0.016203 0.110815 -0.100368 0.988760 -0.801286 0.579526 0.148631 -0.587930 -0.808750 -0.016203 0.120724 -0.088201 0.988760 -0.857611 0.492354 0.148631 -0.499929 -0.865915 -0.016203 0.129304 -0.075062 0.988760 -0.904490 0.399758 0.148631 -0.406422 -0.913542 -0.016203 0.136397 -0.061233 0.988760 -0.941103 0.303701 0.148631 -0.309389 -0.950798 -0.016203 0.142064 -0.046601 0.988760 -0.967750 0.203394 0.148631 -0.208034 -0.977987 -0.016203 0.146166 -0.031455 0.988760 -0.983737 0.100847 0.148631 -0.104388 -0.994405 -0.016203 0.148644 -0.016084 0.988760 -0.988891 -0.002006 0.148631 -0.000407 -0.999869 -0.016203 0.149511 -0.000416 0.988760 -0.983234 -0.105638 0.148631 0.104388 -0.994405 -0.016203 0.148731 0.015256 0.988760 -0.966748 -0.208106 0.148631 0.208034 -0.977987 -0.016203 0.146313 0.030760 0.988760 -0.939612 -0.308282 0.148631 0.309389 -0.950798 -0.016203 0.142329 0.045783 0.988760 -0.902532 -0.404160 0.148631 0.406422 -0.913542 -0.016203 0.136747 0.060448 0.988760 -0.855202 -0.496526 0.148631 0.499929 -0.865915 -0.016203 0.129659 0.074447 0.988760 -0.798453 -0.583422 0.148631 0.587930 -0.808750 -0.016203 0.121229 0.087505 0.988760 -0.733572 -0.663160 0.148631 0.668712 -0.743345 -0.016203 0.111391 0.099729 0.988760 -0.660028 -0.736391 0.148631 0.742937 -0.669166 -0.016203 0.100325 0.110854 0.988760 -0.579214 -0.801511 0.148631 0.808978 -0.587615 -0.016203 0.088154 0.120759 0.988760 -0.492020 -0.857802 0.148631 0.866109 -0.499592 -0.016203 0.075141 0.129258 0.988760 -0.400311 -0.904245 0.148631 0.913293 -0.406980 -0.016203 0.061180 0.136421 0.988760 -0.303335 -0.941221 0.148631 0.950918 -0.309019 -0.016203 0.046546 0.142082 0.988760 -0.203018 -0.967829 0.148631 0.978068 -0.207654 -0.016203 0.031544 0.146146 0.988760 -0.101448 -0.983675 0.148631 0.994341 -0.104996 -0.016203 0.016053 0.148647 0.988760 0.002207 -0.988890 0.148631 0.999869 -0.000204 -0.016203 0.000385 0.149511 0.988760 0.105838 -0.983213 0.148631 0.994383 0.104591 -0.016203 -0.015286 0.148728 0.988760 0.208303 -0.966705 0.148631 0.977945 0.208233 -0.016203 -0.030644 0.146338 0.988760 0.307533 -0.939857 0.148631 0.951044 0.308631 -0.016203 -0.045812 0.142320 0.988760 0.404343 -0.902449 0.148631 0.913459 0.406608 -0.016203 -0.060476 0.136735 0.988760 0.496700 -0.855101 0.148631 0.865813 0.500105 -0.016203 -0.074474 0.129643 0.988760 0.583585 -0.798334 0.148631 0.808630 0.588095 -0.016203 -0.087530 0.121212 0.988760 0.663309 -0.733437 0.148631 0.743209 0.668863 -0.016203 -0.099752 0.111370 0.988760 0.736525 -0.659878 0.148631 0.669014 0.743073 -0.016203 -0.110875 0.100302 0.988760 0.801629 -0.579051 0.148631 0.587450 0.809098 -0.016203 -0.120688 0.088250 0.988760 0.857410 -0.492703 0.148631 0.500282 0.865711 -0.016203 -0.129273 0.075115 0.988760 0.904327 -0.400127 0.148631 0.406794 0.913376 -0.016203 -0.136434 0.061153 0.988760 0.941283 -0.303143 0.148631 0.308825 0.950981 -0.016203 -0.142091 0.046517 0.988760 0.967870 -0.202820 0.148631 0.207455 0.978110 -0.016203 -0.146153 0.031514 0.988760 0.983696 -0.101247 0.148631 0.104793 0.994362 -0.016203 -0.148651 0.016023 0.988760 0.988890 0.002409 0.148631 0.000000 0.999869 -0.016203 -0.149511 0.000355 0.988760 0.983191 0.106038 0.148631 -0.104793 0.994362 -0.016203 -0.148740 -0.015168 0.988760 0.966871 0.207533 0.148631 -0.207455 0.978110 -0.016203 -0.146332 -0.030674 0.988760 0.939795 0.307725 0.148631 -0.308825 0.950981 -0.016203 -0.142311 -0.045841 0.988760 0.902367 0.404527 0.148631 -0.406794 0.913376 -0.016203 -0.136723 -0.060504 0.988760 0.855000 0.496874 0.148631 -0.500282 0.865711 -0.016203 -0.129703 -0.074371 0.988760 0.798799 0.582949 0.148631 -0.587450 0.809098 -0.016203 -0.121194 -0.087555 0.988760 0.733302 0.663458 0.148631 -0.669014 0.743073 -0.016203 -0.111350 -0.099775 0.988760 0.659728 0.736660 0.148631 -0.743209 0.668863 -0.016203 -0.100391 -0.110795 0.988760 0.579689 0.801167 0.148631 -0.808630 0.588095 -0.016203 -0.088225 -0.120706 0.988760 0.492528 0.857511 0.148631 -0.865813 0.500105 -0.016203 -0.075089 -0.129288 0.988760 0.399943 0.904408 0.148631 -0.913459 0.406608 -0.016203 -0.061125 -0.136446 0.988760 0.302951 0.941344 0.148631 -0.951044 0.308631 -0.016203 -0.046630 -0.142054 0.988760 0.203591 0.967708 0.148631 -0.977945 0.208233 -0.016203 -0.031485 -0.146159 0.988760 0.101047 0.983717 0.148631 -0.994383 0.104591 -0.016203 0.169823 -0.954830 0.243844 0.545224 0.297152 0.783856 -0.820908 -0.000167 0.571060 0.268961 -0.931773 0.243844 0.511078 0.352659 0.783856 -0.816370 -0.086203 0.571060 0.364237 -0.898817 0.243844 0.471706 0.403810 0.783856 -0.803010 -0.170487 0.571060 0.456434 -0.855692 0.243844 0.426786 0.451024 0.783856 -0.780719 -0.253709 0.571060 0.543602 -0.803142 0.243844 0.377165 0.493271 0.783856 -0.749829 -0.334137 0.571060 0.624042 -0.742369 0.243844 0.323919 0.529760 0.783856 -0.711090 -0.410173 0.571060 0.698410 -0.672877 0.243844 0.266613 0.560791 0.783856 -0.664184 -0.482442 0.571060 0.765086 -0.595973 0.243844 0.206369 0.585646 0.783856 -0.609963 -0.549396 0.571060 0.823335 -0.512504 0.243844 0.143853 0.604049 0.783856 -0.549023 -0.610299 0.571060 0.872091 -0.424262 0.243844 0.080368 0.615719 0.783856 -0.482700 -0.663997 0.571060 0.911753 -0.330524 0.243844 0.015393 0.620751 0.783856 -0.410450 -0.710930 0.571060 0.941373 -0.233146 0.243844 -0.049751 0.618946 0.783856 -0.333679 -0.750033 0.571060 0.960490 -0.134160 0.243844 -0.113736 0.610437 0.783856 -0.254013 -0.780620 0.571060 0.969261 -0.032754 0.243844 -0.177088 0.595155 0.783856 -0.170799 -0.802943 0.571060 0.967356 0.069012 0.243844 -0.238489 0.573317 0.783856 -0.085705 -0.816422 0.571060 0.954934 0.169239 0.243844 -0.296819 0.545406 0.783856 -0.000334 -0.820908 0.571060 0.931937 0.268391 0.243844 -0.352347 0.511293 0.783856 0.085705 -0.816422 0.571060 0.898675 0.364587 0.243844 -0.403994 0.471549 0.783856 0.170799 -0.802943 0.571060 0.855514 0.456767 0.243844 -0.451190 0.426610 0.783856 0.254013 -0.780620 0.571060 0.803474 0.543112 0.243844 -0.493040 0.377466 0.783856 0.333679 -0.750033 0.571060 0.742127 0.624330 0.243844 -0.529886 0.323713 0.783856 0.410450 -0.710930 0.571060 0.672605 0.698672 0.243844 -0.560895 0.266394 0.783856 0.482700 -0.663997 0.571060 0.596440 0.764722 0.243844 -0.585519 0.206727 0.783856 0.549023 -0.610299 0.571060 0.513007 0.823021 0.243844 -0.603961 0.144222 0.783856 0.609963 -0.549396 0.571060 0.423923 0.872256 0.243844 -0.615750 0.080128 0.783856 0.664184 -0.482442 0.571060 0.330170 0.911882 0.243844 -0.620757 0.015152 0.783856 0.711090 -0.410173 0.571060 0.233721 0.941230 0.243844 -0.618976 -0.049373 0.783856 0.749829 -0.334137 0.571060 0.133786 0.960542 0.243844 -0.610393 -0.113974 0.783856 0.780719 -0.253709 0.571060 0.032377 0.969274 0.243844 -0.595086 -0.177320 0.783856 0.803010 -0.170487 0.571060 -0.068421 0.967398 0.243844 -0.573462 -0.238139 0.783856 0.816370 -0.086203 0.571060 -0.169434 0.954899 0.243844 -0.545345 -0.296930 0.783856 0.820908 -0.000167 0.571060 -0.268581 0.931882 0.243844 -0.511221 -0.352451 0.783856 0.816405 0.085871 0.571060 -0.364770 0.898601 0.243844 -0.471466 -0.404090 0.783856 0.802909 0.170963 0.571060 -0.456085 0.855878 0.243844 -0.426969 -0.450851 0.783856 0.780822 0.253391 0.571060 -0.543275 0.803363 0.243844 -0.377366 -0.493117 0.783856 0.749965 0.333832 0.571060 -0.624481 0.741999 0.243844 -0.323605 -0.529952 0.783856 0.710846 0.410595 0.571060 -0.698809 0.672463 0.243844 -0.266280 -0.560949 0.783856 0.663898 0.482835 0.571060 -0.764843 0.596284 0.243844 -0.206608 -0.585562 0.783856 0.610187 0.549147 0.571060 -0.823126 0.512839 0.243844 -0.144099 -0.603991 0.783856 0.549272 0.610075 0.571060 -0.872342 0.423745 0.243844 -0.080003 -0.615767 0.783856 0.482306 0.664283 0.571060 -0.911619 0.330896 0.243844 -0.015646 -0.620745 0.783856 0.410739 0.710763 0.571060 -0.941278 0.233529 0.243844 0.049499 -0.618966 0.783856 0.333984 0.749897 0.571060 -0.960570 0.133590 0.243844 0.114098 -0.610369 0.783856 0.253550 0.780771 0.571060 -0.969280 0.032180 0.243844 0.177441 -0.595050 0.783856 0.170324 0.803045 0.571060 -0.967384 -0.068618 0.243844 0.238256 -0.573414 0.783856 0.086037 0.816387 0.571060 -0.954865 -0.169628 0.243844 0.297041 -0.545285 0.783856 0.000000 0.820908 0.571060 -0.931827 -0.268771 0.243844 0.352555 -0.511150 0.783856 -0.086037 0.816387 0.571060 -0.898891 -0.364054 0.243844 0.403714 -0.471788 0.783856 -0.170324 0.803045 0.571060 -0.855785 -0.456259 0.243844 0.450937 -0.426878 0.783856 -0.253550 0.780771 0.571060 -0.803252 -0.543439 0.243844 0.493194 -0.377265 0.783856 -0.333984 0.749897 0.571060 -0.741872 -0.624633 0.243844 0.530018 -0.323497 0.783856 -0.410739 0.710763 0.571060 -0.673019 -0.698273 0.243844 0.560737 -0.266727 0.783856 -0.482306 0.664283 0.571060 -0.596128 -0.764965 0.243844 0.585604 -0.206489 0.783856 -0.549272 0.610075 0.571060 -0.512671 -0.823230 0.243844 0.604020 -0.143976 0.783856 -0.610187 0.549147 0.571060 -0.424440 -0.872004 0.243844 0.615703 -0.080493 0.783856 -0.663898 0.482835 0.571060 -0.330710 -0.911686 0.243844 0.620748 -0.015520 0.783856 -0.710846 0.410595 0.571060 -0.233337 -0.941326 0.243844 0.618956 0.049625 0.783856 -0.749965 0.333832 0.571060 -0.133395 -0.960597 0.243844 0.610346 0.114222 0.783856 -0.780822 0.253391 0.571060 -0.032952 -0.969255 0.243844 0.595191 0.176967 0.783856 -0.802909 0.170963 0.571060 0.068815 -0.967370 0.243844 0.573365 0.238373 0.783856 -0.816405 0.085871 0.571060 -0.241992 -0.522057 -0.817861 0.148340 -0.852910 0.500539 -0.958872 -0.000195 0.283840 -0.185944 -0.544545 -0.817861 0.236915 -0.832666 0.500539 -0.953570 -0.100691 0.283840 -0.128409 -0.560906 -0.817861 0.322076 -0.803572 0.500539 -0.937965 -0.199139 0.283840 -0.068915 -0.571275 -0.817861 0.404522 -0.765391 0.500539 -0.911928 -0.296348 0.283840 -0.008661 -0.575351 -0.817861 0.482513 -0.718778 0.500539 -0.875846 -0.390293 0.283840 0.051114 -0.573142 -0.817861 0.554524 -0.664804 0.500539 -0.830597 -0.479108 0.283840 0.110902 -0.564628 -0.817861 0.621146 -0.603025 0.500539 -0.775808 -0.563521 0.283840 0.169468 -0.549895 -0.817861 0.680926 -0.534603 0.500539 -0.712474 -0.641728 0.283840 0.226168 -0.529105 -0.817861 0.733206 -0.460293 0.500539 -0.641293 -0.712866 0.283840 0.279874 -0.502767 -0.817861 0.777029 -0.381689 0.500539 -0.563823 -0.775589 0.283840 0.331026 -0.470665 -0.817861 0.812753 -0.298149 0.500539 -0.479431 -0.830410 0.283840 0.378532 -0.433379 -0.817861 0.839525 -0.211325 0.500539 -0.389757 -0.876085 0.283840 0.421477 -0.391742 -0.817861 0.856927 -0.123030 0.500539 -0.296703 -0.911813 0.283840 0.460213 -0.345410 -0.817861 0.865102 -0.032540 0.500539 -0.199504 -0.937887 0.283840 0.493880 -0.295274 -0.817861 0.863748 0.058308 0.500539 -0.100108 -0.953632 0.283840 0.521909 -0.242311 -0.817861 0.853001 0.147819 0.500539 -0.000391 -0.958872 0.283840 0.544431 -0.186277 -0.817861 0.832810 0.236406 0.500539 0.100108 -0.953632 0.283840 0.560956 -0.128191 -0.817861 0.803447 0.322388 0.500539 0.199504 -0.937887 0.283840 0.571302 -0.068692 -0.817861 0.765233 0.404820 0.500539 0.296703 -0.911813 0.283840 0.575346 -0.009013 -0.817861 0.719073 0.482073 0.500539 0.389757 -0.876085 0.283840 0.573122 0.051337 -0.817861 0.664588 0.554782 0.500539 0.479431 -0.830410 0.283840 0.564585 0.111122 -0.817861 0.602783 0.621381 0.500539 0.563823 -0.775589 0.283840 0.549999 0.169132 -0.817861 0.535019 0.680600 0.500539 0.641293 -0.712866 0.283840 0.529243 0.225845 -0.817861 0.460740 0.732925 0.500539 0.712474 -0.641728 0.283840 0.502658 0.280069 -0.817861 0.381387 0.777177 0.500539 0.775808 -0.563521 0.283840 0.470537 0.331209 -0.817861 0.297833 0.812869 0.500539 0.830597 -0.479108 0.283840 0.433611 0.378267 -0.817861 0.211838 0.839396 0.500539 0.875846 -0.390293 0.283840 0.391577 0.421629 -0.817861 0.122696 0.856975 0.500539 0.911928 -0.296348 0.283840 0.345231 0.460347 -0.817861 0.032203 0.865115 0.500539 0.937965 -0.199139 0.283840 0.295576 0.493699 -0.817861 -0.057780 0.863784 0.500539 0.953570 -0.100691 0.283840 0.242205 0.521959 -0.817861 -0.147993 0.852971 0.500539 0.958872 -0.000195 0.283840 0.186166 0.544469 -0.817861 -0.236575 0.832762 0.500539 0.953611 0.100302 0.283840 0.128076 0.560982 -0.817861 -0.322552 0.803381 0.500539 0.937847 0.199695 0.283840 0.069147 0.571247 -0.817861 -0.404210 0.765555 0.500539 0.912049 0.295977 0.283840 0.008896 0.575348 -0.817861 -0.482220 0.718975 0.500539 0.876005 0.389936 0.283840 -0.051454 0.573111 -0.817861 -0.554918 0.664475 0.500539 0.830313 0.479600 0.283840 -0.111237 0.564562 -0.817861 -0.621503 0.602656 0.500539 0.775474 0.563981 0.283840 -0.169244 0.549964 -0.817861 -0.680709 0.534880 0.500539 0.712736 0.641438 0.283840 -0.225952 0.529197 -0.817861 -0.733019 0.460591 0.500539 0.641583 0.712605 0.283840 -0.280172 0.502601 -0.817861 -0.777255 0.381229 0.500539 0.563364 0.775923 0.283840 -0.330834 0.470800 -0.817861 -0.812632 0.298480 0.500539 0.479769 0.830215 0.283840 -0.378355 0.433534 -0.817861 -0.839439 0.211667 0.500539 0.390114 0.875926 0.283840 -0.421709 0.391492 -0.817861 -0.857000 0.122522 0.500539 0.296162 0.911988 0.283840 -0.460418 0.345137 -0.817861 -0.865121 0.032027 0.500539 0.198948 0.938006 0.283840 -0.493759 0.295475 -0.817861 -0.863772 -0.057956 0.500539 0.100497 0.953591 0.283840 -0.522008 0.242099 -0.817861 -0.852941 -0.148167 0.500539 0.000000 0.958872 0.283840 -0.544507 0.186055 -0.817861 -0.832714 -0.236745 0.500539 -0.100497 0.953591 0.283840 -0.560880 0.128523 -0.817861 -0.803638 -0.321912 0.500539 -0.198948 0.938006 0.283840 -0.571261 0.069031 -0.817861 -0.765473 -0.404366 0.500539 -0.296162 0.911988 0.283840 -0.575350 0.008779 -0.817861 -0.718877 -0.482366 0.500539 -0.390114 0.875926 0.283840 -0.573101 -0.051570 -0.817861 -0.664362 -0.555053 0.500539 -0.479769 0.830215 0.283840 -0.564651 -0.110787 -0.817861 -0.603151 -0.621023 0.500539 -0.563364 0.775923 0.283840 -0.549930 -0.169356 -0.817861 -0.534742 -0.680817 0.500539 -0.641583 0.712605 0.283840 -0.529151 -0.226060 -0.817861 -0.460442 -0.733113 0.500539 -0.712736 0.641438 0.283840 -0.502824 -0.279771 -0.817861 -0.381848 -0.776951 0.500539 -0.775474 0.563981 0.283840 -0.470733 -0.330930 -0.817861 -0.298315 -0.812693 0.500539 -0.830313 0.479600 0.283840 -0.433457 -0.378444 -0.817861 -0.211496 -0.839482 0.500539 -0.876005 0.389936 0.283840 -0.391406 -0.421789 -0.817861 -0.122347 -0.857025 0.500539 -0.912049 0.295977 0.283840 -0.345504 -0.460143 -0.817861 -0.032716 -0.865096 0.500539 -0.937847 0.199695 0.283840 -0.295375 -0.493820 -0.817861 0.058132 -0.863760 0.500539 -0.953611 0.100302 0.283840 -0.263206 0.731635 0.628834 0.282234 0.681696 -0.675007 -0.922533 -0.000188 -0.385919 -0.338437 0.700020 0.628834 0.209233 0.707522 -0.675007 -0.917432 -0.096875 -0.385919 -0.409280 0.661104 0.628834 0.134652 0.725420 -0.675007 -0.902418 -0.191592 -0.385919 -0.476314 0.614567 0.628834 0.057882 0.735537 -0.675007 -0.877368 -0.285117 -0.385919 -0.538102 0.561261 0.628834 -0.019527 0.737553 -0.675007 -0.842654 -0.375501 -0.385919 -0.593460 0.502367 0.628834 -0.095989 0.731541 -0.675007 -0.799119 -0.460951 -0.385919 -0.642843 0.437401 0.628834 -0.172131 0.717452 -0.675007 -0.746407 -0.542165 -0.385919 -0.685146 0.367618 0.628834 -0.246377 0.695460 -0.675007 -0.685473 -0.617408 -0.385919 -0.719901 0.293785 0.628834 -0.317909 0.665807 -0.675007 -0.616989 -0.685850 -0.385919 -0.746510 0.217463 0.628834 -0.385310 0.629207 -0.675007 -0.542456 -0.746196 -0.385919 -0.765191 0.138025 0.628834 -0.449134 0.585358 -0.675007 -0.461261 -0.798940 -0.385919 -0.775442 0.057068 0.628834 -0.508010 0.535062 -0.675007 -0.374986 -0.842883 -0.385919 -0.777177 -0.023741 0.628834 -0.560811 0.479433 -0.675007 -0.285459 -0.877257 -0.385919 -0.770409 -0.105064 0.628834 -0.607971 0.418016 -0.675007 -0.191944 -0.902344 -0.385919 -0.755154 -0.185230 0.628834 -0.648433 0.351994 -0.675007 -0.096314 -0.917491 -0.385919 -0.731796 -0.262759 0.628834 -0.681524 0.282650 -0.675007 -0.000376 -0.922533 -0.385919 -0.700227 -0.338010 0.628834 -0.707394 0.209665 -0.675007 0.096314 -0.917491 -0.385919 -0.660944 -0.409537 0.628834 -0.725472 0.134370 -0.675007 0.191944 -0.902344 -0.385919 -0.614382 -0.476553 0.628834 -0.735560 0.057595 -0.675007 0.285459 -0.877257 -0.385919 -0.561590 -0.537759 0.628834 -0.737565 -0.019076 -0.675007 0.374986 -0.842883 -0.385919 -0.502136 -0.593656 0.628834 -0.731503 -0.096273 -0.675007 0.461261 -0.798940 -0.385919 -0.437151 -0.643014 0.628834 -0.717385 -0.172410 -0.675007 0.542456 -0.746196 -0.385919 -0.368036 -0.684921 0.628834 -0.695610 -0.245952 -0.675007 0.616989 -0.685850 -0.385919 -0.294225 -0.719722 0.628834 -0.666002 -0.317502 -0.675007 0.685473 -0.617408 -0.385919 -0.217172 -0.746595 0.628834 -0.629057 -0.385555 -0.675007 0.746407 -0.542165 -0.385919 -0.137728 -0.765244 0.628834 -0.585184 -0.449361 -0.675007 0.799119 -0.460951 -0.385919 -0.057542 -0.775407 0.628834 -0.535372 -0.507683 -0.675007 0.842654 -0.375501 -0.385919 0.024044 -0.777168 0.628834 -0.479215 -0.560998 -0.675007 0.877368 -0.285117 -0.385919 0.105364 -0.770368 0.628834 -0.417779 -0.608133 -0.675007 0.902418 -0.191592 -0.385919 0.184768 -0.755267 0.628834 -0.352390 -0.648218 -0.675007 0.917432 -0.096875 -0.385919 0.262908 -0.731742 0.628834 -0.282511 -0.681581 -0.675007 0.922533 -0.000188 -0.385919 0.338152 -0.700158 0.628834 -0.209521 -0.707437 -0.675007 0.917472 0.096501 -0.385919 0.409671 -0.660861 0.628834 -0.134222 -0.725500 -0.675007 0.902305 0.192127 -0.385919 0.476064 -0.614761 0.628834 -0.058181 -0.735514 -0.675007 0.877484 0.284760 -0.385919 0.537873 -0.561480 0.628834 0.019226 -0.737561 -0.675007 0.842807 0.375158 -0.385919 0.593758 -0.502015 0.628834 0.096422 -0.731484 -0.675007 0.798846 0.461424 -0.385919 0.643103 -0.437020 0.628834 0.172556 -0.717349 -0.675007 0.746085 0.542608 -0.385919 0.684996 -0.367897 0.628834 0.246093 -0.695560 -0.675007 0.685725 0.617129 -0.385919 0.719782 -0.294078 0.628834 0.317638 -0.665937 -0.675007 0.617269 0.685599 -0.385919 0.746639 -0.217020 0.628834 0.385683 -0.628979 -0.675007 0.542013 0.746517 -0.385919 0.765134 -0.138337 0.628834 0.448895 -0.585541 -0.675007 0.461587 0.798752 -0.385919 0.775419 -0.057384 0.628834 0.507792 -0.535269 -0.675007 0.375330 0.842730 -0.385919 0.777163 0.024202 0.628834 0.561095 -0.479101 -0.675007 0.284939 0.877426 -0.385919 0.770346 0.105521 0.628834 0.608218 -0.417655 -0.675007 0.191409 0.902457 -0.385919 0.755229 0.184922 0.628834 0.648290 -0.352258 -0.675007 0.096688 0.917452 -0.385919 0.731689 0.263057 0.628834 0.681639 -0.282373 -0.675007 0.000000 0.922533 -0.385919 0.700089 0.338295 0.628834 0.707479 -0.209377 -0.675007 -0.096688 0.917452 -0.385919 0.661187 0.409145 0.628834 0.725393 -0.134800 -0.675007 -0.191409 0.902457 -0.385919 0.614664 0.476189 0.628834 0.735526 -0.058031 -0.675007 -0.284939 0.877426 -0.385919 0.561371 0.537987 0.628834 0.737557 0.019377 -0.675007 -0.375330 0.842730 -0.385919 0.501894 0.593860 0.628834 0.731464 0.096571 -0.675007 -0.461587 0.798752 -0.385919 0.437532 0.642754 0.628834 0.717487 0.171984 -0.675007 -0.542013 0.746517 -0.385919 0.367757 0.685071 0.628834 0.695510 0.246235 -0.675007 -0.617269 0.685599 -0.385919 0.293932 0.719842 0.628834 0.665872 0.317773 -0.675007 -0.685725 0.617129 -0.385919 0.217615 0.746466 0.628834 0.629286 0.385182 -0.675007 -0.746085 0.542608 -0.385919 0.138181 0.765163 0.628834 0.585450 0.449015 -0.675007 -0.798846 0.461424 -0.385919 0.057226 0.775431 0.628834 0.535166 0.507901 -0.675007 -0.842807 0.375158 -0.385919 -0.024360 0.777158 0.628834 0.478987 0.561193 -0.675007 -0.877484 0.284760 -0.385919 -0.104907 0.770430 0.628834 0.418140 0.607886 -0.675007 -0.902305 0.192127 -0.385919 -0.185076 0.755192 0.628834 0.352126 0.648362 -0.675007 -0.917472 0.096501 -0.385919 -0.150301 0.980234 0.128649 0.744254 0.197841 -0.637923 -0.650766 -0.000133 -0.759279 -0.252209 0.959083 0.128649 0.719420 0.274754 -0.637923 -0.647168 -0.068337 -0.759279 -0.350411 0.927719 0.128649 0.687010 0.347955 -0.637923 -0.636577 -0.135152 -0.759279 -0.445712 0.885884 0.128649 0.646758 0.418042 -0.637923 -0.618906 -0.201125 -0.759279 -0.536105 0.834291 0.128649 0.599382 0.483524 -0.637923 -0.594418 -0.264883 -0.759279 -0.619818 0.774128 0.128649 0.545947 0.543135 -0.637923 -0.563708 -0.325160 -0.759279 -0.697538 0.704904 0.128649 0.486016 0.597363 -0.637923 -0.526525 -0.382450 -0.759279 -0.767576 0.627915 0.128649 0.420732 0.645011 -0.637923 -0.483541 -0.435527 -0.759279 -0.829158 0.544009 0.128649 0.350813 0.685554 -0.637923 -0.435232 -0.483807 -0.759279 -0.881153 0.454992 0.128649 0.277748 0.718269 -0.637923 -0.382655 -0.526376 -0.759279 -0.923987 0.360135 0.128649 0.200939 0.743423 -0.637923 -0.325379 -0.563582 -0.759279 -0.956643 0.261311 0.128649 0.121916 0.760389 -0.637923 -0.264520 -0.594580 -0.759279 -0.978601 0.160588 0.128649 0.042319 0.768937 -0.637923 -0.201366 -0.618828 -0.759279 -0.990043 0.057139 0.128649 -0.038504 0.769137 -0.637923 -0.135399 -0.636524 -0.759279 -0.990579 -0.046939 0.128649 -0.118903 0.760866 -0.637923 -0.067941 -0.647209 -0.759279 -0.980326 -0.149702 0.128649 -0.197386 0.744374 -0.637923 -0.000265 -0.650766 -0.759279 -0.959237 -0.251623 0.128649 -0.274315 0.719587 -0.637923 0.067941 -0.647209 -0.759279 -0.927582 -0.350772 0.128649 -0.348222 0.686874 -0.637923 0.135399 -0.636524 -0.759279 -0.885710 -0.446057 0.128649 -0.418293 0.646595 -0.637923 0.201366 -0.618828 -0.759279 -0.834618 -0.535595 0.128649 -0.483158 0.599677 -0.637923 0.264520 -0.594580 -0.759279 -0.773887 -0.620119 0.128649 -0.543347 0.545736 -0.637923 0.325379 -0.563582 -0.759279 -0.704632 -0.697813 0.128649 -0.597552 0.485784 -0.637923 0.382655 -0.526376 -0.759279 -0.628383 -0.767192 0.128649 -0.644754 0.421126 -0.637923 0.435232 -0.483807 -0.759279 -0.544515 -0.828826 0.128649 -0.685340 0.351231 -0.637923 0.483541 -0.435527 -0.759279 -0.454649 -0.881330 0.128649 -0.718377 0.277469 -0.637923 0.526525 -0.382450 -0.759279 -0.359776 -0.924127 0.128649 -0.743501 0.200649 -0.637923 0.563708 -0.325160 -0.759279 -0.261896 -0.956483 0.128649 -0.760314 0.122380 -0.637923 0.594418 -0.264883 -0.759279 -0.160207 -0.978664 0.128649 -0.768953 0.042020 -0.637923 0.618906 -0.201125 -0.759279 -0.056754 -0.990065 0.128649 -0.769122 -0.038803 -0.637923 0.636577 -0.135152 -0.759279 0.046334 -0.990607 0.128649 -0.760938 -0.118438 -0.637923 0.647168 -0.068337 -0.759279 0.149902 -0.980295 0.128649 -0.744334 -0.197538 -0.637923 0.650766 -0.000133 -0.759279 0.251818 -0.959186 0.128649 -0.719531 -0.274461 -0.637923 0.647196 0.068073 -0.759279 0.350961 -0.927511 0.128649 -0.686803 -0.348362 -0.637923 0.636497 0.135529 -0.759279 0.445352 -0.886065 0.128649 -0.646928 -0.417778 -0.637923 0.618988 0.200873 -0.759279 0.535765 -0.834509 0.128649 -0.599579 -0.483280 -0.637923 0.594526 0.264641 -0.759279 0.620277 -0.773761 0.128649 -0.545626 -0.543459 -0.637923 0.563515 0.325494 -0.759279 0.697956 -0.704490 0.128649 -0.485662 -0.597651 -0.637923 0.526298 0.382762 -0.759279 0.767320 -0.628227 0.128649 -0.420994 -0.644840 -0.637923 0.483719 0.435330 -0.759279 0.828937 -0.544347 0.128649 -0.351092 -0.685412 -0.637923 0.435429 0.483630 -0.759279 0.881423 -0.454470 0.128649 -0.277322 -0.718434 -0.637923 0.382343 0.526602 -0.759279 0.923840 -0.360512 0.128649 -0.201241 -0.743341 -0.637923 0.325609 0.563449 -0.759279 0.956536 -0.261701 0.128649 -0.122226 -0.760339 -0.637923 0.264762 0.594472 -0.759279 0.978696 -0.160008 0.128649 -0.041863 -0.768962 -0.637923 0.200999 0.618947 -0.759279 0.990076 -0.056552 0.128649 0.038960 -0.769114 -0.637923 0.135022 0.636604 -0.759279 0.990598 0.046536 0.128649 0.118593 -0.760914 -0.637923 0.068205 0.647182 -0.759279 0.980265 0.150101 0.128649 0.197689 -0.744294 -0.637923 0.000000 0.650766 -0.759279 0.959134 0.252013 0.128649 0.274608 -0.719476 -0.637923 -0.068205 0.647182 -0.759279 0.927790 0.350222 0.128649 0.347815 -0.687080 -0.637923 -0.135022 0.636604 -0.759279 0.885974 0.445532 0.128649 0.417910 -0.646843 -0.637923 -0.200999 0.618947 -0.759279 0.834400 0.535935 0.128649 0.483402 -0.599481 -0.637923 -0.264762 0.594472 -0.759279 0.773635 0.620434 0.128649 0.543570 -0.545515 -0.637923 -0.325609 0.563449 -0.759279 0.705046 0.697395 0.128649 0.597264 -0.486138 -0.637923 -0.382343 0.526602 -0.759279 0.628071 0.767448 0.128649 0.644925 -0.420863 -0.637923 -0.435429 0.483630 -0.759279 0.544178 0.829048 0.128649 0.685483 -0.350952 -0.637923 -0.483719 0.435330 -0.759279 0.455172 0.881061 0.128649 0.718213 -0.277894 -0.637923 -0.526298 0.382762 -0.759279 0.360323 0.923914 0.128649 0.743382 -0.201090 -0.637923 -0.563515 0.325494 -0.759279 0.261506 0.956590 0.128649 0.760364 -0.122071 -0.637923 -0.594526 0.264641 -0.759279 0.159809 0.978729 0.128649 0.768970 -0.041707 -0.637923 -0.618988 0.200873 -0.759279 0.057341 0.990031 0.128649 0.769145 0.038347 -0.637923 -0.636497 0.135529 -0.759279 -0.046737 0.990588 0.128649 0.760890 0.118748 -0.637923 -0.647196 0.068073 -0.759279 -0.400649 -0.849670 0.342844 -0.645734 0.527315 0.552238 -0.650006 -0.000132 -0.759929 -0.309391 -0.886981 0.342844 -0.697444 0.456734 0.552238 -0.646412 -0.068257 -0.759929 -0.215640 -0.914307 0.342844 -0.741090 0.381862 0.552238 -0.635834 -0.134994 -0.759929 -0.118626 -0.931872 0.342844 -0.777031 0.302088 0.552238 -0.618184 -0.200890 -0.759929 -0.020306 -0.939173 0.342844 -0.804412 0.218986 0.552238 -0.593724 -0.264574 -0.759929 0.077302 -0.936206 0.342844 -0.822799 0.134294 0.552238 -0.563050 -0.324781 -0.759929 0.174997 -0.922949 0.342844 -0.832343 0.047320 0.552238 -0.525910 -0.382004 -0.759929 0.270765 -0.899525 0.342844 -0.832718 -0.040177 0.552238 -0.482977 -0.435019 -0.759929 0.363551 -0.866192 0.342844 -0.823921 -0.127230 0.552238 -0.434724 -0.483243 -0.759929 0.451508 -0.823771 0.342844 -0.806261 -0.212076 0.552238 -0.382208 -0.525761 -0.759929 0.535358 -0.771913 0.342844 -0.779594 -0.295410 0.552238 -0.325000 -0.562924 -0.759929 0.613312 -0.711552 0.342844 -0.744339 -0.375490 0.552238 -0.264211 -0.593886 -0.759929 0.683866 -0.644038 0.342844 -0.701337 -0.450733 0.552238 -0.201131 -0.618106 -0.759929 0.747600 -0.568817 0.342844 -0.650234 -0.521756 0.552238 -0.135241 -0.635781 -0.759929 0.803098 -0.487331 0.342844 -0.591969 -0.587032 0.552238 -0.067862 -0.646454 -0.759929 0.849425 -0.401168 0.342844 -0.527710 -0.645412 0.552238 -0.000265 -0.650006 -0.759929 0.886792 -0.309933 0.342844 -0.457160 -0.697165 0.552238 0.067862 -0.646454 -0.759929 0.914391 -0.215284 0.342844 -0.381574 -0.741239 0.552238 0.135241 -0.635781 -0.759929 0.931918 -0.118263 0.342844 -0.301785 -0.777148 0.552238 0.201131 -0.618106 -0.759929 0.939160 -0.020880 0.342844 -0.219477 -0.804278 0.552238 0.264211 -0.593886 -0.759929 0.936176 0.077666 0.342844 -0.133974 -0.822852 0.552238 0.325000 -0.562924 -0.759929 0.922880 0.175356 0.342844 -0.046996 -0.832361 0.552238 0.382208 -0.525761 -0.759929 0.899690 0.270216 0.342844 0.039668 -0.832743 0.552238 0.434724 -0.483243 -0.759929 0.866414 0.363021 0.342844 0.126727 -0.823999 0.552238 0.482977 -0.435019 -0.759929 0.823595 0.451828 0.342844 0.212390 -0.806179 0.552238 0.525910 -0.382004 -0.759929 0.771705 0.535659 0.342844 0.295713 -0.779479 0.552238 0.563050 -0.324781 -0.759929 0.711927 0.612877 0.342844 0.375035 -0.744568 0.552238 0.593724 -0.264574 -0.759929 0.643772 0.684117 0.342844 0.451006 -0.701161 0.552238 0.618184 -0.200890 -0.759929 0.568526 0.747821 0.342844 0.522009 -0.650031 0.552238 0.635834 -0.134994 -0.759929 0.487821 0.802801 0.342844 0.586670 -0.592328 0.552238 0.646412 -0.068257 -0.759929 0.400995 0.849506 0.342844 0.645519 -0.527578 0.552238 0.650006 -0.000132 -0.759929 0.309752 0.886855 0.342844 0.697258 -0.457018 0.552238 0.646440 0.067994 -0.759929 0.215098 0.914435 0.342844 0.741316 -0.381423 0.552238 0.635754 0.135371 -0.759929 0.119006 0.931824 0.342844 0.776908 -0.302404 0.552238 0.618266 0.200639 -0.759929 0.020688 0.939165 0.342844 0.804323 -0.219313 0.552238 0.593832 0.264332 -0.759929 -0.077857 0.936161 0.342844 0.822879 -0.133807 0.552238 0.562858 0.325114 -0.759929 -0.175544 0.922845 0.342844 0.832371 -0.046826 0.552238 0.525683 0.382315 -0.759929 -0.270399 0.899635 0.342844 0.832735 0.039837 0.552238 0.483154 0.434822 -0.759929 -0.363198 0.866340 0.342844 0.823973 0.126895 0.552238 0.434921 0.483065 -0.759929 -0.451996 0.823503 0.342844 0.806136 0.212554 0.552238 0.381897 0.525988 -0.759929 -0.535044 0.772131 0.342844 0.779714 0.295093 0.552238 0.325229 0.562791 -0.759929 -0.613022 0.711802 0.342844 0.744492 0.375187 0.552238 0.264453 0.593778 -0.759929 -0.684248 0.643633 0.342844 0.701070 0.451149 0.552238 0.200765 0.618225 -0.759929 -0.747937 0.568374 0.342844 0.649925 0.522141 0.552238 0.134864 0.635861 -0.759929 -0.802900 0.487658 0.342844 0.592208 0.586791 0.552238 0.068125 0.646426 -0.759929 -0.849588 0.400822 0.342844 0.527447 0.645626 0.552238 0.000000 0.650006 -0.759929 -0.886918 0.309572 0.342844 0.456876 0.697351 0.552238 -0.068125 0.646426 -0.759929 -0.914263 0.215826 0.342844 0.382013 0.741013 0.552238 -0.134864 0.635861 -0.759929 -0.931848 0.118816 0.342844 0.302246 0.776969 0.552238 -0.200765 0.618225 -0.759929 -0.939169 0.020497 0.342844 0.219150 0.804368 0.552238 -0.264453 0.593778 -0.759929 -0.936145 -0.078047 0.342844 0.133639 0.822906 0.552238 -0.325229 0.562791 -0.759929 -0.922984 -0.174809 0.342844 0.047489 0.832333 0.552238 -0.381897 0.525988 -0.759929 -0.899580 -0.270582 0.342844 -0.040007 0.832726 0.552238 -0.434921 0.483065 -0.759929 -0.866266 -0.363374 0.342844 -0.127062 0.823947 0.552238 -0.483154 0.434822 -0.759929 -0.823863 -0.451340 0.342844 -0.211912 0.806305 0.552238 -0.525683 0.382315 -0.759929 -0.772022 -0.535201 0.342844 -0.295251 0.779654 0.552238 -0.562858 0.325114 -0.759929 -0.711677 -0.613167 0.342844 -0.375339 0.744416 0.552238 -0.593832 0.264332 -0.759929 -0.643493 -0.684379 0.342844 -0.451292 0.700978 0.552238 -0.618266 0.200639 -0.759929 -0.568969 -0.747484 0.342844 -0.521623 0.650340 0.552238 -0.635754 0.135371 -0.759929 -0.487494 -0.802999 0.342844 -0.586911 0.592089 0.552238 -0.646440 0.067994 -0.759929 0.324683 -0.937026 -0.128701 -0.871007 -0.349261 0.345491 -0.368684 -0.000075 -0.929555 0.421102 -0.897836 -0.128701 -0.829605 -0.438625 0.345491 -0.366645 -0.038715 -0.929555 0.512033 -0.849269 -0.128701 -0.779588 -0.522378 0.345491 -0.360645 -0.076569 -0.929555 0.598223 -0.790927 -0.128701 -0.720545 -0.601208 0.345491 -0.350634 -0.113945 -0.929555 0.677823 -0.723873 -0.128701 -0.653566 -0.673415 0.345491 -0.336761 -0.150067 -0.929555 0.749308 -0.649595 -0.128701 -0.580126 -0.737625 0.345491 -0.319362 -0.184216 -0.929555 0.813263 -0.567485 -0.128701 -0.499622 -0.794364 0.345491 -0.298296 -0.216673 -0.929555 0.868261 -0.479124 -0.128701 -0.413616 -0.842353 0.345491 -0.273945 -0.246743 -0.929555 0.913694 -0.385485 -0.128701 -0.323053 -0.881064 0.345491 -0.246576 -0.274095 -0.929555 0.948776 -0.288549 -0.128701 -0.229842 -0.909840 0.345491 -0.216789 -0.298212 -0.929555 0.973792 -0.187522 -0.128701 -0.133218 -0.928918 0.345491 -0.184340 -0.319291 -0.929555 0.988083 -0.084428 -0.128701 -0.035127 -0.937765 0.345491 -0.149861 -0.336852 -0.929555 0.991509 0.018603 -0.128701 0.062414 -0.936344 0.345491 -0.114082 -0.350590 -0.929555 0.984098 0.122418 -0.128701 0.160206 -0.924646 0.345491 -0.076709 -0.360615 -0.929555 0.965848 0.224884 -0.128701 0.256233 -0.902763 0.345491 -0.038491 -0.366669 -0.929555 0.937224 0.324110 -0.128701 0.348728 -0.871220 0.345491 -0.000150 -0.368684 -0.929555 0.898093 0.420553 -0.128701 0.438118 -0.829873 0.345491 0.038491 -0.366669 -0.929555 0.849070 0.512363 -0.128701 0.522682 -0.779384 0.345491 0.076709 -0.360615 -0.929555 0.790694 0.598530 -0.128701 0.601488 -0.720311 0.345491 0.114082 -0.350590 -0.929555 0.724287 0.677380 -0.128701 0.673015 -0.653977 0.345491 0.149861 -0.336852 -0.929555 0.649304 0.749560 -0.128701 0.737850 -0.579839 0.345491 0.184340 -0.319291 -0.929555 0.567169 0.813484 -0.128701 0.794558 -0.499313 0.345491 0.216789 -0.298212 -0.929555 0.479654 0.867968 -0.128701 0.842100 -0.414130 0.345491 0.246576 -0.274095 -0.929555 0.386043 0.913459 -0.128701 0.880866 -0.323591 0.345491 0.273945 -0.246743 -0.929555 0.288180 0.948888 -0.128701 0.909929 -0.229488 0.345491 0.298296 -0.216673 -0.929555 0.187143 0.973865 -0.128701 0.928970 -0.132857 0.345491 0.319362 -0.184216 -0.929555 0.085032 0.988031 -0.128701 0.937743 -0.035701 0.345491 0.336761 -0.150067 -0.929555 -0.018989 0.991502 -0.128701 0.936320 0.062778 0.345491 0.350634 -0.113945 -0.929555 -0.122801 0.984051 -0.128701 0.924584 0.160566 0.345491 0.360645 -0.076569 -0.929555 -0.224294 0.965986 -0.128701 0.902919 0.255682 0.345491 0.366645 -0.038715 -0.929555 -0.324301 0.937158 -0.128701 0.871149 0.348906 0.345491 0.368684 -0.000075 -0.929555 -0.420736 0.898007 -0.128701 0.829784 0.438287 0.345491 0.366661 0.038566 -0.929555 -0.512536 0.848966 -0.128701 0.779278 0.522840 0.345491 0.360600 0.076782 -0.929555 -0.597900 0.791171 -0.128701 0.720790 0.600914 0.345491 0.350681 0.113802 -0.929555 -0.677528 0.724149 -0.128701 0.653840 0.673149 0.345491 0.336822 0.149929 -0.929555 -0.749692 0.649151 -0.128701 0.579688 0.737969 0.345491 0.319253 0.184405 -0.929555 -0.813599 0.567003 -0.128701 0.499151 0.794660 0.345491 0.298168 0.216849 -0.929555 -0.868065 0.479477 -0.128701 0.413959 0.842184 0.345491 0.274045 0.246631 -0.929555 -0.913537 0.385857 -0.128701 0.323412 0.880932 0.345491 0.246687 0.273995 -0.929555 -0.948947 0.287987 -0.128701 0.229303 0.909976 0.345491 0.216612 0.298340 -0.929555 -0.973716 0.187918 -0.128701 0.133597 0.928864 0.345491 0.184470 0.319216 -0.929555 -0.988048 0.084831 -0.128701 0.035510 0.937750 0.345491 0.149998 0.336791 -0.929555 -0.991498 -0.019191 -0.128701 -0.062969 0.936307 0.345491 0.113874 0.350657 -0.929555 -0.984026 -0.123001 -0.128701 -0.160754 0.924551 0.345491 0.076495 0.360661 -0.929555 -0.965940 -0.224491 -0.128701 -0.255865 0.902867 0.345491 0.038641 0.366653 -0.929555 -0.937092 -0.324492 -0.128701 -0.349083 0.871078 0.345491 0.000000 0.368684 -0.929555 -0.897922 -0.420919 -0.128701 -0.438456 0.829694 0.345491 -0.038641 0.366653 -0.929555 -0.849373 -0.511860 -0.128701 -0.522220 0.779694 0.345491 -0.076495 0.360661 -0.929555 -0.791049 -0.598062 -0.128701 -0.601061 0.720668 0.345491 -0.113874 0.350657 -0.929555 -0.724011 -0.677675 -0.128701 -0.673282 0.653703 0.345491 -0.149998 0.336791 -0.929555 -0.648998 -0.749825 -0.128701 -0.738087 0.579538 0.345491 -0.184470 0.319216 -0.929555 -0.567651 -0.813147 -0.128701 -0.794262 0.499784 0.345491 -0.216612 0.298340 -0.929555 -0.479301 -0.868163 -0.128701 -0.842269 0.413787 0.345491 -0.246687 0.273995 -0.929555 -0.385671 -0.913616 -0.128701 -0.880998 0.323233 0.345491 -0.274045 0.246631 -0.929555 -0.288743 -0.948717 -0.128701 -0.909793 0.230027 0.345491 -0.298168 0.216849 -0.929555 -0.187720 -0.973754 -0.128701 -0.928891 0.133408 0.345491 -0.319253 0.184405 -0.929555 -0.084630 -0.988066 -0.128701 -0.937757 0.035319 0.345491 -0.336822 0.149929 -0.929555 0.019393 -0.991494 -0.128701 -0.936294 -0.063160 0.345491 -0.350681 0.113802 -0.929555 0.122218 -0.984123 -0.128701 -0.924679 -0.160018 0.345491 -0.360600 0.076782 -0.929555 0.224688 -0.965894 -0.128701 -0.902815 -0.256049 0.345491 -0.366661 0.038566 -0.929555 0.018229 -0.998561 -0.050443 -0.336012 -0.053635 0.940329 -0.941681 -0.000192 -0.336506 0.122785 -0.991151 -0.050443 -0.328540 -0.088556 0.940329 -0.936475 -0.098886 -0.336506 0.225015 -0.973049 -0.050443 -0.317571 -0.122184 0.940329 -0.921150 -0.195569 -0.336506 0.325759 -0.944106 -0.050443 -0.303016 -0.154795 0.940329 -0.895579 -0.291035 -0.336506 0.422914 -0.904765 -0.050443 -0.285124 -0.185701 0.940329 -0.860144 -0.383296 -0.336506 0.514555 -0.855973 -0.050443 -0.264305 -0.214297 0.940329 -0.815706 -0.470519 -0.336506 0.601433 -0.797329 -0.050443 -0.240390 -0.240818 0.940329 -0.761900 -0.553419 -0.336506 0.681686 -0.729904 -0.050443 -0.213826 -0.264686 0.940329 -0.699702 -0.630224 -0.336506 0.754431 -0.654438 -0.050443 -0.184908 -0.285639 0.940329 -0.629796 -0.700086 -0.336506 0.818294 -0.572583 -0.050443 -0.154256 -0.303292 0.940329 -0.553715 -0.761685 -0.336506 0.873798 -0.483666 -0.050443 -0.121619 -0.317788 0.940329 -0.470836 -0.815523 -0.336506 0.919677 -0.389422 -0.050443 -0.087643 -0.328785 0.940329 -0.382770 -0.860378 -0.336506 0.955135 -0.291844 -0.050443 -0.053037 -0.336107 0.940329 -0.291384 -0.895466 -0.336506 0.980462 -0.190132 -0.050443 -0.017519 -0.339814 0.940329 -0.195928 -0.921073 -0.336506 0.994989 -0.086325 -0.050443 0.018193 -0.339779 0.940329 -0.098314 -0.936535 -0.336506 0.998572 0.017619 -0.050443 0.053430 -0.336044 0.940329 -0.000384 -0.941681 -0.336506 0.991225 0.122179 -0.050443 0.088356 -0.328594 0.940329 0.098314 -0.936535 -0.336506 0.972961 0.225394 -0.050443 0.122308 -0.317524 0.940329 0.195928 -0.921073 -0.336506 0.943980 0.326126 -0.050443 0.154913 -0.302956 0.940329 0.291384 -0.895466 -0.336506 0.905023 0.422361 -0.050443 0.185527 -0.285237 0.940329 0.382770 -0.860378 -0.336506 0.855772 0.514887 -0.050443 0.214400 -0.264222 0.940329 0.470836 -0.815523 -0.336506 0.797095 0.601743 -0.050443 0.240912 -0.240296 0.940329 0.553715 -0.761685 -0.336506 0.730320 0.681240 -0.050443 0.264556 -0.213988 0.940329 0.629796 -0.700086 -0.336506 0.654899 0.754031 -0.050443 0.285526 -0.185082 0.940329 0.699702 -0.630224 -0.336506 0.572264 0.818516 -0.050443 0.303352 -0.154138 0.940329 0.761900 -0.553419 -0.336506 0.483326 0.873986 -0.050443 0.317836 -0.121495 0.940329 0.815706 -0.470519 -0.336506 0.389984 0.919439 -0.050443 0.328731 -0.087844 0.940329 0.860144 -0.383296 -0.336506 0.291472 0.955248 -0.050443 0.336127 -0.052906 0.940329 0.895579 -0.291035 -0.336506 0.189750 0.980536 -0.050443 0.339821 -0.017386 0.940329 0.921150 -0.195569 -0.336506 0.086933 0.994936 -0.050443 0.339790 0.017985 0.940329 0.936475 -0.098886 -0.336506 -0.017822 0.998568 -0.050443 0.336033 0.053499 0.940329 0.941681 -0.000192 -0.336506 -0.122381 0.991200 -0.050443 0.328576 0.088423 0.940329 0.936515 0.098504 -0.336506 -0.225592 0.972915 -0.050443 0.317499 0.122373 0.940329 0.921034 0.196115 -0.336506 -0.325374 0.944239 -0.050443 0.303079 0.154672 0.940329 0.895698 0.290671 -0.336506 -0.422545 0.904937 -0.050443 0.285200 0.185585 0.940329 0.860300 0.382945 -0.336506 -0.515062 0.855668 -0.050443 0.264178 0.214454 0.940329 0.815427 0.471002 -0.336506 -0.601905 0.796973 -0.050443 0.240247 0.240960 0.940329 0.761572 0.553870 -0.336506 -0.681389 0.730181 -0.050443 0.213934 0.264599 0.940329 0.699958 0.629939 -0.336506 -0.754164 0.654745 -0.050443 0.185024 0.285564 0.940329 0.630081 0.699830 -0.336506 -0.818633 0.572098 -0.050443 0.154076 0.303383 0.940329 0.553264 0.762013 -0.336506 -0.873601 0.484022 -0.050443 0.121748 0.317739 0.940329 0.471168 0.815331 -0.336506 -0.919518 0.389797 -0.050443 0.087777 0.328749 0.940329 0.383120 0.860222 -0.336506 -0.955308 0.291278 -0.050443 0.052838 0.336138 0.940329 0.290853 0.895639 -0.336506 -0.980574 0.189551 -0.050443 0.017317 0.339824 0.940329 0.195382 0.921189 -0.336506 -0.994954 0.086730 -0.050443 -0.018054 0.339786 0.940329 0.098695 0.936495 -0.336506 -0.998564 -0.018026 -0.050443 -0.053567 0.336023 0.940329 0.000000 0.941681 -0.336506 -0.991176 -0.122583 -0.050443 -0.088489 0.328558 0.940329 -0.098695 0.936495 -0.336506 -0.973094 -0.224817 -0.050443 -0.122120 0.317596 0.940329 -0.195382 0.921189 -0.336506 -0.944173 -0.325566 -0.050443 -0.154734 0.303048 0.940329 -0.290853 0.895639 -0.336506 -0.904851 -0.422729 -0.050443 -0.185643 0.285162 0.940329 -0.383120 0.860222 -0.336506 -0.855563 -0.515236 -0.050443 -0.214508 0.264135 0.940329 -0.471168 0.815331 -0.336506 -0.797452 -0.601270 -0.050443 -0.240769 0.240439 0.940329 -0.553264 0.762013 -0.336506 -0.730043 -0.681538 -0.050443 -0.264643 0.213880 0.940329 -0.630081 0.699830 -0.336506 -0.654592 -0.754298 -0.050443 -0.285601 0.184966 0.940329 -0.699958 0.629939 -0.336506 -0.572749 -0.818177 -0.050443 -0.303260 0.154317 0.940329 -0.761572 0.553870 -0.336506 -0.483844 -0.873699 -0.050443 -0.317764 0.121684 0.940329 -0.815427 0.471002 -0.336506 -0.389609 -0.919598 -0.050443 -0.328767 0.087710 0.940329 -0.860300 0.382945 -0.336506 -0.291083 -0.955367 -0.050443 -0.336149 0.052770 0.940329 -0.895698 0.290671 -0.336506 -0.190331 -0.980423 -0.050443 -0.339811 0.017588 0.940329 -0.921034 0.196115 -0.336506 -0.086528 -0.994972 -0.050443 -0.339782 -0.018124 0.940329 -0.936515 0.098504 -0.336506 0.234685 0.868859 -0.435898 0.412205 -0.495060 -0.764855 -0.880347 -0.000179 -0.474331 0.142330 0.888671 -0.435898 0.461820 -0.449131 -0.764855 -0.875479 -0.092445 -0.474331 0.049305 0.898645 -0.435898 0.505951 -0.398762 -0.764855 -0.861152 -0.182831 -0.474331 -0.045150 0.898863 -0.435898 0.544957 -0.343538 -0.764855 -0.837247 -0.272079 -0.474331 -0.139109 0.889180 -0.435898 0.577961 -0.284531 -0.764855 -0.804120 -0.358330 -0.474331 -0.230666 0.869935 -0.435898 0.604376 -0.222994 -0.764855 -0.762576 -0.439872 -0.474331 -0.320571 0.840968 -0.435898 0.624419 -0.158423 -0.764855 -0.712275 -0.517373 -0.474331 -0.406945 0.802739 -0.435898 0.637584 -0.092107 -0.764855 -0.654128 -0.589175 -0.474331 -0.488836 0.755667 -0.435898 0.643726 -0.024776 -0.764855 -0.588775 -0.654487 -0.474331 -0.564643 0.700836 -0.435898 0.642820 0.042185 -0.764855 -0.517650 -0.712074 -0.474331 -0.634986 0.637798 -0.435898 0.634858 0.109325 -0.764855 -0.440169 -0.762405 -0.474331 -0.698334 0.567734 -0.435898 0.619904 0.175260 -0.764855 -0.357839 -0.804339 -0.474331 -0.753499 0.492171 -0.435898 0.598360 0.238667 -0.764855 -0.272405 -0.837141 -0.474331 -0.800932 0.410488 -0.435898 0.570051 0.300065 -0.764855 -0.183166 -0.861081 -0.474331 -0.839543 0.324284 -0.435898 0.535462 0.358158 -0.764855 -0.091910 -0.875536 -0.474331 -0.868715 0.235216 -0.435898 0.495311 0.411902 -0.764855 -0.000359 -0.880347 -0.474331 -0.888583 0.142873 -0.435898 0.449413 0.461546 -0.764855 0.091910 -0.875536 -0.474331 -0.898664 0.048956 -0.435898 0.398565 0.506106 -0.764855 0.183166 -0.861081 -0.474331 -0.898845 -0.045500 -0.435898 0.343326 0.545091 -0.764855 0.272405 -0.837141 -0.474331 -0.889265 -0.138566 -0.435898 0.284884 0.577787 -0.764855 0.357839 -0.804339 -0.474331 -0.869845 -0.231004 -0.435898 0.222759 0.604463 -0.764855 0.440169 -0.762405 -0.474331 -0.840843 -0.320898 -0.435898 0.158180 0.624480 -0.764855 0.517650 -0.712074 -0.474331 -0.802987 -0.406454 -0.435898 0.092496 0.637527 -0.764855 0.588775 -0.654487 -0.474331 -0.755965 -0.488374 -0.435898 0.025169 0.643711 -0.764855 0.654128 -0.589175 -0.474331 -0.700617 -0.564915 -0.435898 -0.042435 0.642803 -0.764855 0.712275 -0.517373 -0.474331 -0.637551 -0.635234 -0.435898 -0.109571 0.634816 -0.764855 0.762576 -0.439872 -0.474331 -0.568161 -0.697987 -0.435898 -0.174881 0.620011 -0.764855 0.804120 -0.358330 -0.474331 -0.491878 -0.753690 -0.435898 -0.238900 0.598267 -0.764855 0.837247 -0.272079 -0.474331 -0.410177 -0.801092 -0.435898 -0.300287 0.569934 -0.764855 0.861152 -0.182831 -0.474331 -0.324797 -0.839345 -0.435898 -0.357831 0.535681 -0.764855 0.875479 -0.092445 -0.474331 -0.235039 -0.868763 -0.435898 -0.412003 0.495227 -0.764855 0.880347 -0.000179 -0.474331 -0.142692 -0.888612 -0.435898 -0.461637 0.449319 -0.764855 0.875517 0.092088 -0.474331 -0.048773 -0.898674 -0.435898 -0.506187 0.398462 -0.764855 0.861044 0.183342 -0.474331 0.044784 -0.898881 -0.435898 -0.544817 0.343760 -0.764855 0.837358 0.271738 -0.474331 0.138747 -0.889237 -0.435898 -0.577845 0.284766 -0.764855 0.804266 0.358003 -0.474331 0.231181 -0.869798 -0.435898 -0.604508 0.222636 -0.764855 0.762316 0.440324 -0.474331 0.321069 -0.840778 -0.435898 -0.624513 0.158053 -0.764855 0.711968 0.517795 -0.474331 0.406618 -0.802904 -0.435898 -0.637546 0.092366 -0.764855 0.654368 0.588909 -0.474331 0.488528 -0.755866 -0.435898 -0.643716 0.025038 -0.764855 0.589042 0.654248 -0.474331 0.565058 -0.700502 -0.435898 -0.642795 -0.042566 -0.764855 0.517228 0.712380 -0.474331 0.634726 -0.638057 -0.435898 -0.634903 -0.109066 -0.764855 0.440479 0.762226 -0.474331 0.698103 -0.568019 -0.435898 -0.619975 -0.175008 -0.764855 0.358167 0.804193 -0.474331 0.753791 -0.491724 -0.435898 -0.598219 -0.239022 -0.764855 0.271909 0.837303 -0.474331 0.801175 -0.410013 -0.435898 -0.569873 -0.300403 -0.764855 0.182656 0.861189 -0.474331 0.839411 -0.324626 -0.435898 -0.535608 -0.357940 -0.764855 0.092267 0.875498 -0.474331 0.868811 -0.234862 -0.435898 -0.495144 -0.412104 -0.764855 0.000000 0.880347 -0.474331 0.888641 -0.142511 -0.435898 -0.449225 -0.461729 -0.764855 -0.092267 0.875498 -0.474331 0.898634 -0.049488 -0.435898 -0.398865 -0.505869 -0.764855 -0.182656 0.861189 -0.474331 0.898872 0.044967 -0.435898 -0.343649 -0.544887 -0.764855 -0.271909 0.837303 -0.474331 0.889209 0.138928 -0.435898 -0.284648 -0.577903 -0.764855 -0.358167 0.804193 -0.474331 0.869751 0.231358 -0.435898 -0.222512 -0.604554 -0.764855 -0.440479 0.762226 -0.474331 0.841033 0.320399 -0.435898 -0.158550 -0.624387 -0.764855 -0.517228 0.712380 -0.474331 0.802821 0.406781 -0.435898 -0.092236 -0.637565 -0.764855 -0.589042 0.654248 -0.474331 0.755766 0.488682 -0.435898 -0.024907 -0.643721 -0.764855 -0.654368 0.588909 -0.474331 0.700951 0.564500 -0.435898 0.042054 -0.642828 -0.764855 -0.711968 0.517795 -0.474331 0.637927 0.634856 -0.435898 0.109195 -0.634880 -0.764855 -0.762316 0.440324 -0.474331 0.567877 0.698219 -0.435898 0.175134 -0.619939 -0.764855 -0.804266 0.358003 -0.474331 0.491571 0.753891 -0.435898 0.239143 -0.598170 -0.764855 -0.837358 0.271738 -0.474331 0.410651 0.800849 -0.435898 0.299949 -0.570112 -0.764855 -0.861044 0.183342 -0.474331 0.324455 0.839477 -0.435898 0.358049 -0.535535 -0.764855 -0.875517 0.092088 -0.474331 0.465994 -0.773949 0.428780 0.569386 0.633248 0.524211 -0.677236 -0.000138 0.735766 0.544543 -0.720847 0.428780 0.499881 0.689436 0.524211 -0.673492 -0.071116 0.735766 0.616434 -0.660422 0.428780 0.425608 0.737605 0.524211 -0.662470 -0.140649 0.735766 0.682256 -0.592178 0.428780 0.345958 0.778149 0.524211 -0.644081 -0.209306 0.735766 0.740563 -0.517411 0.428780 0.262497 0.810122 0.524211 -0.618597 -0.275658 0.735766 0.790275 -0.437736 0.428780 0.176978 0.832996 0.524211 -0.586638 -0.338387 0.735766 0.831801 -0.352499 0.428780 0.088699 0.846957 0.524211 -0.547942 -0.398007 0.735766 0.864164 -0.263379 0.428780 -0.000557 0.851588 0.524211 -0.503210 -0.453243 0.735766 0.887009 -0.171357 0.428780 -0.089806 0.846840 0.524211 -0.452935 -0.503487 0.735766 0.900005 -0.078349 0.428780 -0.177234 0.832941 0.524211 -0.398220 -0.547787 0.735766 0.903260 0.016410 0.428780 -0.263556 0.809779 0.524211 -0.338615 -0.586506 0.735766 0.896565 0.110988 0.428780 -0.346975 0.777696 0.524211 -0.275280 -0.618765 0.735766 0.880199 0.203463 0.428780 -0.425835 0.737474 0.524211 -0.209557 -0.643999 0.735766 0.854027 0.294593 0.428780 -0.500782 0.688782 0.524211 -0.140907 -0.662416 0.735766 0.818448 0.382479 0.428780 -0.570213 0.632503 0.524211 -0.070705 -0.673535 0.735766 0.774234 0.465521 0.428780 -0.632900 0.569773 0.524211 -0.000276 -0.677236 0.735766 0.721180 0.544103 0.428780 -0.689130 0.500302 0.524211 0.070705 -0.673535 0.735766 0.660182 0.616691 0.428780 -0.737770 0.425321 0.524211 0.140907 -0.662416 0.735766 0.591912 0.682486 0.428780 -0.778284 0.345655 0.524211 0.209557 -0.643999 0.735766 0.517864 0.740247 0.428780 -0.809962 0.262992 0.524211 0.275280 -0.618765 0.735766 0.437428 0.790446 0.428780 -0.833065 0.176654 0.524211 0.338615 -0.586506 0.735766 0.352175 0.831938 0.428780 -0.846991 0.088370 0.524211 0.398220 -0.547787 0.735766 0.263906 0.864003 0.428780 -0.851589 -0.000036 0.524211 0.452935 -0.503487 0.735766 0.171899 0.886904 0.428780 -0.846895 -0.089289 0.524211 0.503210 -0.453243 0.735766 0.077999 0.900036 0.428780 -0.832872 -0.177558 0.524211 0.547942 -0.398007 0.735766 -0.016761 0.903253 0.428780 -0.809676 -0.263871 0.524211 0.586638 -0.338387 0.735766 -0.110440 0.896633 0.428780 -0.777908 -0.346500 0.524211 0.618597 -0.275658 0.735766 -0.203805 0.880120 0.428780 -0.737308 -0.426122 0.524211 0.644081 -0.209306 0.735766 -0.294926 0.853913 0.428780 -0.688587 -0.501050 0.524211 0.662470 -0.140649 0.735766 -0.381979 0.818682 0.428780 -0.632851 -0.569827 0.524211 0.673492 -0.071116 0.735766 -0.465679 0.774139 0.428780 -0.569644 -0.633016 0.524211 0.677236 -0.000138 0.735766 -0.544249 0.721069 0.428780 -0.500162 -0.689232 0.524211 0.673521 0.070842 0.735766 -0.616825 0.660056 0.428780 -0.425171 -0.737857 0.524211 0.662387 0.141042 0.735766 -0.682015 0.592456 0.428780 -0.346275 -0.778008 0.524211 0.644166 0.209044 0.735766 -0.740352 0.517713 0.428780 -0.262827 -0.810015 0.524211 0.618709 0.275406 0.735766 -0.790535 0.437267 0.428780 -0.176484 -0.833100 0.524211 0.586437 0.338734 0.735766 -0.832010 0.352005 0.428780 -0.088197 -0.847009 0.524211 0.547705 0.398331 0.735766 -0.864057 0.263730 0.428780 0.000210 -0.851589 0.524211 0.503394 0.453038 0.735766 -0.886939 0.171719 0.428780 0.089461 -0.846876 0.524211 0.453140 0.503302 0.735766 -0.900051 0.077815 0.428780 0.177727 -0.832836 0.524211 0.397895 0.548023 0.735766 -0.903267 -0.016042 0.428780 0.263226 -0.809886 0.524211 0.338853 0.586368 0.735766 -0.896611 -0.110622 0.428780 0.346658 -0.777838 0.524211 0.275532 0.618653 0.735766 -0.880079 -0.203984 0.428780 0.426272 -0.737221 0.524211 0.209175 0.644123 0.735766 -0.853853 -0.295099 0.428780 0.501190 -0.688485 0.524211 0.140514 0.662499 0.735766 -0.818604 -0.382146 0.428780 0.569956 -0.632735 0.524211 0.070979 0.673507 0.735766 -0.774044 -0.465837 0.428780 0.633132 -0.569515 0.524211 0.000000 0.677236 0.735766 -0.720958 -0.544396 0.428780 0.689334 -0.500022 0.524211 -0.070979 0.673507 0.735766 -0.660547 -0.616299 0.428780 0.737518 -0.425758 0.524211 -0.140514 0.662499 0.735766 -0.592317 -0.682135 0.428780 0.778079 -0.346116 0.524211 -0.209175 0.644123 0.735766 -0.517562 -0.740458 0.428780 0.810069 -0.262662 0.524211 -0.275532 0.618653 0.735766 -0.437106 -0.790624 0.428780 0.833136 -0.176314 0.524211 -0.338853 0.586368 0.735766 -0.352668 -0.831729 0.428780 0.846939 -0.088871 0.524211 -0.397895 0.548023 0.735766 -0.263554 -0.864110 0.428780 0.851588 0.000383 0.524211 -0.453140 0.503302 0.735766 -0.171538 -0.886974 0.428780 0.846858 0.089634 0.524211 -0.503394 0.453038 0.735766 -0.078532 -0.899989 0.428780 0.832977 0.177064 0.524211 -0.547705 0.398331 0.735766 0.016226 -0.903263 0.428780 0.809832 0.263391 0.524211 -0.586437 0.338734 0.735766 0.110805 -0.896588 0.428780 0.777767 0.346816 0.524211 -0.618709 0.275406 0.735766 0.204163 -0.880037 0.428780 0.737135 0.426422 0.524211 -0.644166 0.209044 0.735766 0.294419 -0.854087 0.428780 0.688884 0.500642 0.524211 -0.662387 0.141042 0.735766 0.382312 -0.818526 0.428780 0.632619 0.570084 0.524211 -0.673521 0.070842 0.735766 0.054991 0.931976 0.358324 -0.141921 0.362519 -0.921107 -0.988349 -0.000201 0.152202 -0.042990 0.932607 0.358324 -0.179134 0.345648 -0.921107 -0.982885 -0.103786 0.152202 -0.139574 0.923105 0.358324 -0.214049 0.325184 -0.921107 -0.966800 -0.205261 0.152202 -0.235553 0.903393 0.358324 -0.246952 0.300959 -0.921107 -0.939963 -0.305458 0.152202 -0.328938 0.873730 0.358324 -0.277134 0.273419 -0.921107 -0.902771 -0.402291 0.152202 -0.417865 0.834861 0.358324 -0.304021 0.243172 -0.921107 -0.856131 -0.493837 0.152202 -0.503063 0.786468 0.358324 -0.327833 0.209969 -0.921107 -0.799658 -0.580845 0.152202 -0.582720 0.729412 0.358324 -0.348034 0.174453 -0.921107 -0.734377 -0.661456 0.152202 -0.655958 0.664321 0.358324 -0.364401 0.137016 -0.921107 -0.661007 -0.734781 0.152202 -0.721379 0.592635 0.358324 -0.376656 0.098446 -0.921107 -0.581156 -0.799432 0.152202 -0.779518 0.513766 0.358324 -0.384899 0.058428 -0.921107 -0.494169 -0.855939 0.152202 -0.829072 0.429237 0.358324 -0.388903 0.017766 -0.921107 -0.401739 -0.903017 0.152202 -0.869152 0.340850 0.358324 -0.388646 -0.022703 -0.921107 -0.305824 -0.939844 0.152202 -0.900089 0.247879 0.358324 -0.384126 -0.063311 -0.921107 -0.205637 -0.966720 0.152202 -0.921111 0.152178 0.358324 -0.375375 -0.103222 -0.921107 -0.103186 -0.982948 0.152202 -0.931943 0.055560 0.358324 -0.362605 -0.141700 -0.921107 -0.000403 -0.988349 0.152202 -0.932633 -0.042420 0.358324 -0.345757 -0.178923 -0.921107 0.103186 -0.982948 0.152202 -0.923051 -0.139933 0.358324 -0.325100 -0.214175 -0.921107 0.205637 -0.966720 0.152202 -0.903301 -0.235905 0.358324 -0.300863 -0.247069 -0.921107 0.305824 -0.939844 0.152202 -0.873931 -0.328404 0.358324 -0.273588 -0.276967 -0.921107 0.401739 -0.903017 0.152202 -0.834698 -0.418190 0.358324 -0.243054 -0.304116 -0.921107 0.494169 -0.855939 0.152202 -0.786272 -0.503369 0.358324 -0.209841 -0.327915 -0.921107 0.581156 -0.799432 0.152202 -0.729768 -0.582274 0.358324 -0.174666 -0.347927 -0.921107 0.661007 -0.734781 0.152202 -0.664722 -0.655552 0.358324 -0.137239 -0.364317 -0.921107 0.734377 -0.661456 0.152202 -0.592355 -0.721609 0.358324 -0.098300 -0.376694 -0.921107 0.799658 -0.580845 0.152202 -0.513463 -0.779718 0.358324 -0.058278 -0.384922 -0.921107 0.856131 -0.493837 0.152202 -0.429744 -0.828809 0.358324 -0.018004 -0.388892 -0.921107 0.902771 -0.402291 0.152202 -0.340512 -0.869285 0.358324 0.022854 -0.388638 -0.921107 0.939963 -0.305458 0.152202 -0.247529 -0.900185 0.358324 0.063460 -0.384102 -0.921107 0.966800 -0.205261 0.152202 -0.152741 -0.921018 0.358324 0.102992 -0.375438 -0.921107 0.982885 -0.103786 0.152202 -0.055370 -0.931954 0.358324 0.141774 -0.362576 -0.921107 0.988349 -0.000201 0.152202 0.042610 -0.932625 0.358324 0.178993 -0.345721 -0.921107 0.982927 0.103386 0.152202 0.140121 -0.923022 0.358324 0.214242 -0.325057 -0.921107 0.966678 0.205834 0.152202 0.235185 -0.903489 0.358324 0.246829 -0.301060 -0.921107 0.940087 0.305076 0.152202 0.328582 -0.873864 0.358324 0.277023 -0.273532 -0.921107 0.902935 0.401923 0.152202 0.418360 -0.834613 0.358324 0.304165 -0.242992 -0.921107 0.855838 0.494344 0.152202 0.503529 -0.786170 0.358324 0.327957 -0.209775 -0.921107 0.799314 0.581319 0.152202 0.582423 -0.729649 0.358324 0.347963 -0.174595 -0.921107 0.734647 0.661157 0.152202 0.655688 -0.664589 0.358324 0.364345 -0.137165 -0.921107 0.661307 0.734512 0.152202 0.721730 -0.592208 0.358324 0.376714 -0.098223 -0.921107 0.580682 0.799776 0.152202 0.779309 -0.514083 0.358324 0.384876 -0.058585 -0.921107 0.494518 0.855737 0.152202 0.828897 -0.429575 0.358324 0.388896 -0.017924 -0.921107 0.402107 0.902853 0.152202 0.869354 -0.340335 0.358324 0.388633 0.022933 -0.921107 0.305267 0.940025 0.152202 0.900236 -0.247346 0.358324 0.384089 0.063539 -0.921107 0.205064 0.966842 0.152202 0.921049 -0.152553 0.358324 0.375418 0.103069 -0.921107 0.103586 0.982906 0.152202 0.931965 -0.055181 0.358324 0.362548 0.141847 -0.921107 0.000000 0.988349 0.152202 0.932616 0.042800 0.358324 0.345684 0.179064 -0.921107 -0.103586 0.982906 0.152202 0.923134 0.139386 0.358324 0.325227 0.213983 -0.921107 -0.205064 0.966842 0.152202 0.903441 0.235369 0.358324 0.301009 0.246890 -0.921107 -0.305267 0.940025 0.152202 0.873797 0.328760 0.358324 0.273476 0.277079 -0.921107 -0.402107 0.902853 0.152202 0.834528 0.418530 0.358324 0.242930 0.304215 -0.921107 -0.494518 0.855737 0.152202 0.786570 0.502903 0.358324 0.210036 0.327790 -0.921107 -0.580682 0.799776 0.152202 0.729531 0.582571 0.358324 0.174524 0.347998 -0.921107 -0.661307 0.734512 0.152202 0.664455 0.655823 0.358324 0.137090 0.364373 -0.921107 -0.734647 0.661157 0.152202 0.592782 0.721258 0.358324 0.098523 0.376636 -0.921107 -0.799314 0.581319 0.152202 0.513924 0.779414 0.358324 0.058506 0.384888 -0.921107 -0.855838 0.494344 0.152202 0.429406 0.828984 0.358324 0.017845 0.388900 -0.921107 -0.902935 0.401923 0.152202 0.340158 0.869423 0.358324 -0.023013 0.388628 -0.921107 -0.940087 0.305076 0.152202 0.248063 0.900038 0.358324 -0.063233 0.384139 -0.921107 -0.966678 0.205834 0.152202 0.152366 0.921080 0.358324 -0.103145 0.375396 -0.921107 -0.982927 0.103386 0.152202 0.248843 -0.953618 0.169381 0.788111 0.301019 0.536907 -0.562991 -0.000115 0.826463 0.347418 -0.922286 0.169381 0.752222 0.381961 0.536907 -0.559878 -0.059119 0.826463 0.441286 -0.881236 0.169381 0.708505 0.457987 0.536907 -0.550716 -0.116922 0.826463 0.531215 -0.830133 0.169381 0.656602 0.529721 0.536907 -0.535428 -0.173997 0.826463 0.615294 -0.769886 0.169381 0.597468 0.595620 0.536907 -0.514243 -0.229156 0.826463 0.691893 -0.701851 0.169381 0.532407 0.654427 0.536907 -0.487675 -0.281303 0.826463 0.761641 -0.625470 0.169381 0.460886 0.706623 0.536907 -0.455507 -0.330865 0.826463 0.823000 -0.542200 0.169381 0.384288 0.751035 0.536907 -0.418321 -0.376783 0.826463 0.875294 -0.452957 0.169381 0.303458 0.787175 0.536907 -0.376528 -0.418551 0.826463 0.917588 -0.359643 0.169381 0.220100 0.814425 0.536907 -0.331042 -0.455378 0.826463 0.950227 -0.261493 0.169381 0.133530 0.833007 0.536907 -0.281492 -0.487566 0.826463 0.972400 -0.160462 0.169381 0.045489 0.842414 0.536907 -0.228842 -0.514383 0.826463 0.983804 -0.058648 0.169381 -0.042210 0.842585 0.536907 -0.174206 -0.535360 0.826463 0.984533 0.044785 0.169381 -0.130286 0.833521 0.536907 -0.117137 -0.550670 0.826463 0.974417 0.147725 0.169381 -0.216927 0.815275 0.536907 -0.058777 -0.559914 0.826463 0.953770 0.248260 0.169381 -0.300537 0.788295 0.536907 -0.000229 -0.562991 0.826463 0.922498 0.346855 0.169381 -0.381501 0.752455 0.536907 0.058777 -0.559914 0.826463 0.881064 0.441629 0.169381 -0.458263 0.708327 0.536907 0.117137 -0.550670 0.826463 0.829926 0.531538 0.169381 -0.529977 0.656396 0.536907 0.174206 -0.535360 0.826463 0.770261 0.614823 0.169381 -0.595255 0.597831 0.536907 0.228842 -0.514383 0.826463 0.701581 0.692166 0.169381 -0.654634 0.532152 0.536907 0.281492 -0.487566 0.826463 0.625174 0.761885 0.169381 -0.706802 0.460611 0.536907 0.331042 -0.455378 0.826463 0.542702 0.822669 0.169381 -0.750800 0.384747 0.536907 0.376528 -0.418551 0.826463 0.453492 0.875017 0.169381 -0.786990 0.303939 0.536907 0.418321 -0.376783 0.826463 0.359286 0.917727 0.169381 -0.814510 0.219783 0.536907 0.455507 -0.330865 0.826463 0.261123 0.950329 0.169381 -0.833059 0.133206 0.536907 0.487675 -0.281303 0.826463 0.161056 0.972302 0.169381 -0.842386 0.046004 0.536907 0.514243 -0.229156 0.826463 0.058265 0.983827 0.169381 -0.842569 -0.042537 0.536907 0.535428 -0.173997 0.826463 -0.045168 0.984515 0.169381 -0.833470 -0.130610 0.536907 0.550716 -0.116922 0.826463 -0.147129 0.974507 0.169381 -0.815408 -0.216429 0.536907 0.559878 -0.059119 0.826463 -0.248454 0.953719 0.169381 -0.788233 -0.300698 0.536907 0.562991 -0.000115 0.826463 -0.347043 0.922427 0.169381 -0.752377 -0.381654 0.536907 0.559902 0.058891 0.826463 -0.441808 0.880974 0.169381 -0.708233 -0.458407 0.536907 0.550646 0.117249 0.826463 -0.530877 0.830349 0.169381 -0.656818 -0.529454 0.536907 0.535499 0.173779 0.826463 -0.614980 0.770136 0.169381 -0.597710 -0.595377 0.536907 0.514336 0.228946 0.826463 -0.692309 0.701440 0.169381 -0.532019 -0.654742 0.536907 0.487509 0.281592 0.826463 -0.762012 0.625018 0.169381 -0.460467 -0.706896 0.536907 0.455311 0.331135 0.826463 -0.822780 0.542535 0.169381 -0.384594 -0.750879 0.536907 0.418475 0.376613 0.826463 -0.875110 0.453314 0.169381 -0.303779 -0.787051 0.536907 0.376698 0.418398 0.826463 -0.917801 0.359099 0.169381 -0.219617 -0.814555 0.536907 0.330773 0.455574 0.826463 -0.950121 0.261880 0.169381 -0.133869 -0.832953 0.536907 0.281691 0.487451 0.826463 -0.972335 0.160858 0.169381 -0.045833 -0.842396 0.536907 0.229051 0.514290 0.826463 -0.983839 0.058064 0.169381 0.042709 -0.842560 0.536907 0.173888 0.535464 0.826463 -0.984506 -0.045369 0.169381 0.130780 -0.833443 0.536907 0.116810 0.550739 0.826463 -0.974477 -0.147328 0.169381 0.216595 -0.815364 0.536907 0.059005 0.559890 0.826463 -0.953669 -0.248648 0.169381 0.300858 -0.788172 0.536907 0.000000 0.562991 0.826463 -0.922356 -0.347230 0.169381 0.381808 -0.752299 0.536907 -0.059005 0.559890 0.826463 -0.881326 -0.441106 0.169381 0.457843 -0.708598 0.536907 -0.116810 0.550739 0.826463 -0.830241 -0.531046 0.169381 0.529587 -0.656710 0.536907 -0.173888 0.535464 0.826463 -0.770011 -0.615137 0.169381 0.595499 -0.597589 0.536907 -0.229051 0.514290 0.826463 -0.701299 -0.692452 0.169381 0.654851 -0.531885 0.536907 -0.281691 0.487451 0.826463 -0.625625 -0.761514 0.169381 0.706529 -0.461030 0.536907 -0.330773 0.455574 0.826463 -0.542367 -0.822890 0.169381 0.750957 -0.384441 0.536907 -0.376698 0.418398 0.826463 -0.453135 -0.875202 0.169381 0.787113 -0.303618 0.536907 -0.418475 0.376613 0.826463 -0.359830 -0.917514 0.169381 0.814380 -0.220266 0.536907 -0.455311 0.331135 0.826463 -0.261686 -0.950174 0.169381 0.832980 -0.133700 0.536907 -0.487509 0.281592 0.826463 -0.160660 -0.972368 0.169381 0.842405 -0.045661 0.536907 -0.514336 0.228946 0.826463 -0.057864 -0.983851 0.169381 0.842551 0.042881 0.536907 -0.535499 0.173779 0.826463 0.044585 -0.984542 0.169381 0.833547 0.130116 0.536907 -0.550646 0.117249 0.826463 0.147526 -0.974447 0.169381 0.815319 0.216761 0.536907 -0.559902 0.058891 0.826463 -0.183336 0.749125 0.636553 0.207047 0.662429 -0.719944 -0.960999 -0.000196 -0.276551 -0.260840 0.725784 0.636553 0.136479 0.680480 -0.719944 -0.955686 -0.100914 -0.276551 -0.334777 0.694784 0.636553 0.065099 0.690972 -0.719944 -0.940046 -0.199581 -0.276551 -0.405751 0.655871 0.636553 -0.007678 0.693989 -0.719944 -0.913951 -0.297006 -0.276551 -0.472257 0.609733 0.636553 -0.080371 0.689363 -0.719944 -0.877789 -0.391159 -0.276551 -0.533003 0.557412 0.636553 -0.151501 0.677294 -0.719944 -0.832439 -0.480171 -0.276551 -0.588488 0.498480 0.636553 -0.221652 0.657686 -0.719944 -0.777530 -0.564772 -0.276551 -0.637491 0.434057 0.636553 -0.289361 0.630833 -0.719944 -0.714055 -0.643152 -0.276551 -0.679473 0.364852 0.636553 -0.353884 0.597032 -0.719944 -0.642716 -0.714448 -0.276551 -0.713678 0.292343 0.636553 -0.413951 0.557068 -0.719944 -0.565074 -0.777310 -0.276551 -0.740387 0.215935 0.636553 -0.470056 0.510615 -0.719944 -0.480494 -0.832253 -0.276551 -0.758941 0.137148 0.636553 -0.520983 0.458538 -0.719944 -0.390622 -0.878028 -0.276551 -0.769078 0.057619 0.636553 -0.565770 0.401976 -0.719944 -0.297361 -0.913836 -0.276551 -0.770881 -0.023303 0.636553 -0.604784 0.340465 -0.719944 -0.199947 -0.939968 -0.276551 -0.764193 -0.103969 0.636553 -0.637137 0.275204 -0.719944 -0.100330 -0.955747 -0.276551 -0.749237 -0.182879 0.636553 -0.662302 0.207452 -0.719944 -0.000391 -0.960999 -0.276551 -0.725943 -0.260397 0.636553 -0.680397 0.136895 -0.719944 0.100330 -0.955747 -0.276551 -0.694654 -0.335047 0.636553 -0.690997 0.064831 -0.719944 0.199947 -0.939968 -0.276551 -0.655713 -0.406006 0.636553 -0.693986 -0.007948 -0.719944 0.297361 -0.913836 -0.276551 -0.610021 -0.471884 0.636553 -0.689412 -0.079949 -0.719944 0.390622 -0.878028 -0.276551 -0.557205 -0.533220 0.636553 -0.677235 -0.151764 -0.719944 0.480494 -0.832253 -0.276551 -0.498251 -0.588682 0.636553 -0.657600 -0.221908 -0.719944 0.565074 -0.777310 -0.276551 -0.434446 -0.637226 0.636553 -0.631010 -0.288976 -0.719944 0.642716 -0.714448 -0.276551 -0.365267 -0.679250 0.636553 -0.597248 -0.353519 -0.719944 0.714055 -0.643152 -0.276551 -0.292066 -0.713791 0.636553 -0.556907 -0.414168 -0.719944 0.777530 -0.564772 -0.276551 -0.215647 -0.740471 0.636553 -0.510432 -0.470254 -0.719944 0.832439 -0.480171 -0.276551 -0.137611 -0.758857 0.636553 -0.458856 -0.520703 -0.719944 0.877789 -0.391159 -0.276551 -0.057320 -0.769100 0.636553 -0.401755 -0.565927 -0.719944 0.913951 -0.297006 -0.276551 0.023603 -0.770872 0.636553 -0.340230 -0.604917 -0.719944 0.940046 -0.199581 -0.276551 0.103502 -0.764256 0.636553 -0.275593 -0.636968 -0.719944 0.955686 -0.100914 -0.276551 0.183031 -0.749200 0.636553 -0.207317 -0.662344 -0.719944 0.960999 -0.000196 -0.276551 0.260545 -0.725890 0.636553 -0.136756 -0.680425 -0.719944 0.955727 0.100525 -0.276551 0.335188 -0.694586 0.636553 -0.064690 -0.691011 -0.719944 0.939928 0.200138 -0.276551 0.405484 -0.656036 0.636553 0.007395 -0.693992 -0.719944 0.914072 0.296633 -0.276551 0.472008 -0.609925 0.636553 0.080090 -0.689395 -0.719944 0.877949 0.390801 -0.276551 0.533333 -0.557096 0.636553 0.151902 -0.677205 -0.719944 0.832155 0.480664 -0.276551 0.588783 -0.498131 0.636553 0.222042 -0.657554 -0.719944 0.777195 0.565233 -0.276551 0.637314 -0.434316 0.636553 0.289104 -0.630951 -0.719944 0.714317 0.642861 -0.276551 0.679324 -0.365129 0.636553 0.353640 -0.597176 -0.719944 0.643007 0.714186 -0.276551 0.713851 -0.291920 0.636553 0.414281 -0.556823 -0.719944 0.564613 0.777645 -0.276551 0.740299 -0.216236 0.636553 0.469848 -0.510807 -0.719944 0.480833 0.832057 -0.276551 0.758885 -0.137457 0.636553 0.520796 -0.458750 -0.719944 0.390980 0.877869 -0.276551 0.769112 -0.057163 0.636553 0.566008 -0.401640 -0.719944 0.296820 0.914012 -0.276551 0.770867 0.023760 0.636553 0.604986 -0.340106 -0.719944 0.199390 0.940087 -0.276551 0.764235 0.103657 0.636553 0.637024 -0.275464 -0.719944 0.100720 0.955706 -0.276551 0.749162 0.183184 0.636553 0.662387 -0.207182 -0.719944 0.000000 0.960999 -0.276551 0.725837 0.260693 0.636553 0.680453 -0.136618 -0.719944 -0.100720 0.955706 -0.276551 0.694852 0.334635 0.636553 0.690959 -0.065240 -0.719944 -0.199390 0.940087 -0.276551 0.655953 0.405618 0.636553 0.693991 0.007537 -0.719944 -0.296820 0.914012 -0.276551 0.609829 0.472132 0.636553 0.689379 0.080230 -0.719944 -0.390980 0.877869 -0.276551 0.556988 0.533447 0.636553 0.677174 0.152040 -0.719944 -0.480833 0.832057 -0.276551 0.498600 0.588387 0.636553 0.657731 0.221518 -0.719944 -0.564613 0.777645 -0.276551 0.434186 0.637403 0.636553 0.630892 0.289233 -0.719944 -0.643007 0.714186 -0.276551 0.364991 0.679398 0.636553 0.597104 0.353762 -0.719944 -0.714317 0.642861 -0.276551 0.292489 0.713618 0.636553 0.557153 0.413837 -0.719944 -0.777195 0.565233 -0.276551 0.216085 0.740343 0.636553 0.510711 0.469952 -0.719944 -0.832155 0.480664 -0.276551 0.137302 0.758913 0.636553 0.458644 0.520890 -0.719944 -0.877949 0.390801 -0.276551 0.057006 0.769123 0.636553 0.401525 0.566090 -0.719944 -0.914072 0.296633 -0.276551 -0.023146 0.770886 0.636553 0.340588 0.604715 -0.719944 -0.939928 0.200138 -0.276551 -0.103813 0.764214 0.636553 0.275334 0.637080 -0.719944 -0.955727 0.100525 -0.276551 -0.051352 0.997326 0.051994 0.699406 0.073078 -0.710979 -0.712877 -0.000145 -0.701289 -0.155596 0.986452 0.051994 0.687895 0.145978 -0.710979 -0.708936 -0.074859 -0.701289 -0.257161 0.964969 0.051994 0.669024 0.216601 -0.710979 -0.697334 -0.148051 -0.701289 -0.356881 0.932702 0.051994 0.642638 0.285527 -0.710979 -0.677977 -0.220321 -0.701289 -0.452669 0.890161 0.051994 0.609173 0.351308 -0.710979 -0.651152 -0.290165 -0.701289 -0.542633 0.838359 0.051994 0.569412 0.412649 -0.710979 -0.617511 -0.356195 -0.701289 -0.627511 0.776870 0.051994 0.523027 0.470055 -0.710979 -0.576778 -0.418952 -0.701289 -0.705476 0.706824 0.051994 0.470882 0.522283 -0.710979 -0.529692 -0.477096 -0.701289 -0.775671 0.628992 0.051994 0.413549 0.568759 -0.710979 -0.476772 -0.529984 -0.701289 -0.836777 0.545069 0.051994 0.352270 0.608617 -0.710979 -0.419177 -0.576615 -0.701289 -0.889296 0.454367 0.051994 0.286543 0.642186 -0.710979 -0.356435 -0.617372 -0.701289 -0.932019 0.358660 0.051994 0.217659 0.668681 -0.710979 -0.289767 -0.651329 -0.701289 -0.964217 0.259967 0.051994 0.147066 0.687663 -0.710979 -0.220585 -0.677891 -0.701289 -0.986153 0.157478 0.051994 0.074184 0.699290 -0.710979 -0.148322 -0.697277 -0.701289 -0.997226 0.053255 0.051994 0.000484 0.703213 -0.710979 -0.074426 -0.708982 -0.701289 -0.997357 -0.050742 0.051994 -0.072650 0.699451 -0.710979 -0.000290 -0.712877 -0.701289 -0.986546 -0.154993 0.051994 -0.145558 0.687984 -0.710979 0.074426 -0.708982 -0.701289 -0.964869 -0.257537 0.051994 -0.216862 0.668940 -0.710979 0.148322 -0.697277 -0.701289 -0.932563 -0.357244 0.051994 -0.285777 0.642527 -0.710979 0.220585 -0.677891 -0.701289 -0.890438 -0.452125 0.051994 -0.350935 0.609388 -0.710979 0.289767 -0.651329 -0.701289 -0.838148 -0.542959 0.051994 -0.412871 0.569251 -0.710979 0.356435 -0.617372 -0.701289 -0.776626 -0.627813 0.051994 -0.470258 0.522844 -0.710979 0.419177 -0.576615 -0.701289 -0.707255 -0.705044 0.051994 -0.521995 0.471201 -0.710979 0.476772 -0.529984 -0.701289 -0.629466 -0.775287 0.051994 -0.568506 0.413897 -0.710979 0.529692 -0.477096 -0.701289 -0.544743 -0.836989 0.051994 -0.608754 0.352034 -0.710979 0.576778 -0.418952 -0.701289 -0.454021 -0.889473 0.051994 -0.642297 0.286293 -0.710979 0.617511 -0.356195 -0.701289 -0.359229 -0.931800 0.051994 -0.668548 0.218068 -0.710979 0.651152 -0.290165 -0.701289 -0.259592 -0.964318 0.051994 -0.687721 0.146798 -0.710979 0.677977 -0.220321 -0.701289 -0.157094 -0.986214 0.051994 -0.699319 0.073911 -0.710979 0.697334 -0.148051 -0.701289 -0.053864 -0.997194 0.051994 -0.703213 0.000914 -0.710979 0.708936 -0.074859 -0.701289 0.050946 -0.997347 0.051994 -0.699436 -0.072793 -0.710979 0.712877 -0.000145 -0.701289 0.155194 -0.986515 0.051994 -0.687955 -0.145698 -0.710979 0.708966 0.074570 -0.701289 0.257733 -0.964816 0.051994 -0.668895 -0.216998 -0.710979 0.697246 0.148464 -0.701289 0.356501 -0.932847 0.051994 -0.642754 -0.285265 -0.710979 0.678066 0.220045 -0.701289 0.452306 -0.890346 0.051994 -0.609316 -0.351059 -0.710979 0.651270 0.289899 -0.701289 0.543130 -0.838037 0.051994 -0.569167 -0.412987 -0.710979 0.617299 0.356561 -0.701289 0.627971 -0.776498 0.051994 -0.522749 -0.470365 -0.710979 0.576530 0.419294 -0.701289 0.705188 -0.707111 0.051994 -0.471094 -0.522091 -0.710979 0.529886 0.476880 -0.701289 0.775415 -0.629308 0.051994 -0.413781 -0.568590 -0.710979 0.476988 0.529789 -0.701289 0.837100 -0.544573 0.051994 -0.351910 -0.608826 -0.710979 0.418835 0.576863 -0.701289 0.889111 -0.454729 0.051994 -0.286804 -0.642069 -0.710979 0.356686 0.617227 -0.701289 0.931873 -0.359040 0.051994 -0.217931 -0.668592 -0.710979 0.290032 0.651211 -0.701289 0.964371 -0.259395 0.051994 -0.146658 -0.687750 -0.710979 0.220183 0.678022 -0.701289 0.986246 -0.156894 0.051994 -0.073769 -0.699334 -0.710979 0.147909 0.697364 -0.701289 0.997205 -0.053661 0.051994 -0.000771 -0.703213 -0.710979 0.074715 0.708951 -0.701289 0.997337 0.051149 0.051994 0.072935 -0.699421 -0.710979 0.000000 0.712877 -0.701289 0.986483 0.155395 0.051994 0.145838 -0.687925 -0.710979 -0.074715 0.708951 -0.701289 0.965021 0.256965 0.051994 0.216465 -0.669068 -0.710979 -0.147909 0.697364 -0.701289 0.932775 0.356691 0.051994 0.285396 -0.642696 -0.710979 -0.220183 0.678022 -0.701289 0.890254 0.452488 0.051994 0.351183 -0.609245 -0.710979 -0.290032 0.651211 -0.701289 0.837927 0.543301 0.051994 0.413103 -0.569083 -0.710979 -0.356686 0.617227 -0.701289 0.776998 0.627352 0.051994 0.469949 -0.523123 -0.710979 -0.418835 0.576863 -0.701289 0.706968 0.705332 0.051994 0.522187 -0.470988 -0.710979 -0.476988 0.529789 -0.701289 0.629150 0.775543 0.051994 0.568674 -0.413665 -0.710979 -0.529886 0.476880 -0.701289 0.545240 0.836666 0.051994 0.608545 -0.352394 -0.710979 -0.576530 0.419294 -0.701289 0.454548 0.889203 0.051994 0.642127 -0.286674 -0.710979 -0.617299 0.356561 -0.701289 0.358850 0.931946 0.051994 0.668636 -0.217795 -0.710979 -0.651270 0.289899 -0.701289 0.259199 0.964423 0.051994 0.687780 -0.146518 -0.710979 -0.678066 0.220045 -0.701289 0.157679 0.986121 0.051994 0.699275 -0.074326 -0.710979 -0.697246 0.148464 -0.701289 0.053458 0.997216 0.051994 0.703213 -0.000628 -0.710979 -0.708966 0.074570 -0.701289 -0.195985 0.978406 0.065663 0.927622 0.206692 -0.311121 -0.317975 -0.000065 -0.948099 -0.297450 0.952477 0.065663 0.900850 0.302775 -0.311121 -0.316217 -0.033390 -0.948099 -0.394722 0.916451 0.065663 0.864551 0.394659 -0.311121 -0.311042 -0.066037 -0.948099 -0.488598 0.870035 0.065663 0.818426 0.483097 -0.311121 -0.302408 -0.098273 -0.948099 -0.577093 0.814034 0.065663 0.763287 0.566213 -0.311121 -0.290442 -0.129426 -0.948099 -0.658482 0.749726 0.065663 0.700382 0.642392 -0.311121 -0.275437 -0.158879 -0.948099 -0.733432 0.676584 0.065663 0.629198 0.712260 -0.311121 -0.257268 -0.186871 -0.948099 -0.800304 0.595989 0.065663 0.551083 0.774281 -0.311121 -0.236266 -0.212806 -0.948099 -0.858360 0.508829 0.065663 0.466897 0.827774 -0.311121 -0.212661 -0.236396 -0.948099 -0.906545 0.416971 0.065663 0.378441 0.871772 -0.311121 -0.186971 -0.257196 -0.948099 -0.945254 0.319662 0.065663 0.284989 0.906634 -0.311121 -0.158986 -0.275375 -0.948099 -0.973551 0.218832 0.065663 0.188398 0.931509 -0.311121 -0.129249 -0.290521 -0.948099 -0.991008 0.116583 0.065663 0.090678 0.946034 -0.311121 -0.098391 -0.302369 -0.948099 -0.997769 0.012076 0.065663 -0.008973 0.950328 -0.311121 -0.066158 -0.311016 -0.948099 -0.993539 -0.092564 0.065663 -0.108525 0.944154 -0.311121 -0.033197 -0.316237 -0.948099 -0.978526 -0.195387 0.065663 -0.206126 0.927748 -0.311121 -0.000130 -0.317975 -0.948099 -0.952658 -0.296868 0.065663 -0.302225 0.901035 -0.311121 0.033197 -0.316237 -0.948099 -0.916298 -0.395078 0.065663 -0.394995 0.864397 -0.311121 0.066158 -0.311016 -0.948099 -0.869844 -0.488937 0.065663 -0.483415 0.818238 -0.311121 0.098391 -0.302369 -0.948099 -0.814387 -0.576596 0.065663 -0.565746 0.763633 -0.311121 0.129249 -0.290521 -0.948099 -0.749470 -0.658774 0.065663 -0.642665 0.700133 -0.311121 0.158986 -0.275375 -0.948099 -0.676298 -0.733695 0.065663 -0.712504 0.628921 -0.311121 0.186971 -0.257196 -0.948099 -0.596477 -0.799940 0.065663 -0.773944 0.551556 -0.311121 0.212661 -0.236396 -0.948099 -0.509353 -0.858049 0.065663 -0.827489 0.467403 -0.311121 0.236266 -0.212806 -0.948099 -0.416618 -0.906707 0.065663 -0.871919 0.378102 -0.311121 0.257268 -0.186871 -0.948099 -0.319294 -0.945378 0.065663 -0.906745 0.284637 -0.311121 0.275437 -0.158879 -0.948099 -0.219427 -0.973417 0.065663 -0.931394 0.188967 -0.311121 0.290442 -0.129426 -0.948099 -0.116197 -0.991053 0.065663 -0.946070 0.090309 -0.311121 0.302408 -0.098273 -0.948099 -0.011688 -0.997773 0.065663 -0.950324 -0.009343 -0.311121 0.311042 -0.066037 -0.948099 0.091957 -0.993596 0.065663 -0.944220 -0.107948 -0.311121 0.316217 -0.033390 -0.948099 0.195586 -0.978486 0.065663 -0.927706 -0.206315 -0.311121 0.317975 -0.000065 -0.948099 0.297062 -0.952598 0.065663 -0.900973 -0.302408 -0.311121 0.316230 0.033262 -0.948099 0.395265 -0.916217 0.065663 -0.864317 -0.395171 -0.311121 0.311003 0.066222 -0.948099 0.488244 -0.870233 0.065663 -0.818623 -0.482763 -0.311121 0.302448 0.098150 -0.948099 0.576762 -0.814269 0.065663 -0.763517 -0.565902 -0.311121 0.290495 0.129308 -0.948099 0.658926 -0.749336 0.065663 -0.700002 -0.642807 -0.311121 0.275343 0.159042 -0.948099 0.733833 -0.676149 0.065663 -0.628776 -0.712632 -0.311121 0.257158 0.187024 -0.948099 0.800061 -0.596314 0.065663 -0.551398 -0.774057 -0.311121 0.236353 0.212709 -0.948099 0.858153 -0.509178 0.065663 -0.467235 -0.827584 -0.311121 0.212758 0.236309 -0.948099 0.906792 -0.416433 0.065663 -0.377925 -0.871996 -0.311121 0.186819 0.257306 -0.948099 0.945123 -0.320047 0.065663 -0.285358 -0.906518 -0.311121 0.159098 0.275310 -0.948099 0.973462 -0.219228 0.065663 -0.188777 -0.931433 -0.311121 0.129367 0.290469 -0.948099 0.991077 -0.115995 0.065663 -0.090117 -0.946088 -0.311121 0.098211 0.302428 -0.948099 0.997776 -0.011484 0.065663 0.009536 -0.950322 -0.311121 0.065974 0.311055 -0.948099 0.993577 0.092159 0.065663 0.108140 -0.944198 -0.311121 0.033326 0.316224 -0.948099 0.978446 0.195786 0.065663 0.206503 -0.927664 -0.311121 0.000000 0.317975 -0.948099 0.952537 0.297256 0.065663 0.302592 -0.900912 -0.311121 -0.033326 0.316224 -0.948099 0.916532 0.394535 0.065663 0.394483 -0.864631 -0.311121 -0.065974 0.311055 -0.948099 0.870134 0.488421 0.065663 0.482930 -0.818524 -0.311121 -0.098211 0.302428 -0.948099 0.814152 0.576927 0.065663 0.566057 -0.763402 -0.311121 -0.129367 0.290469 -0.948099 0.749202 0.659079 0.065663 0.642950 -0.699871 -0.311121 -0.159098 0.275310 -0.948099 0.676733 0.733295 0.065663 0.712131 -0.629343 -0.311121 -0.186819 0.257306 -0.948099 0.596151 0.800182 0.065663 0.774169 -0.551240 -0.311121 -0.212758 0.236309 -0.948099 0.509003 0.858256 0.065663 0.827679 -0.467066 -0.311121 -0.236353 0.212709 -0.948099 0.417155 0.906460 0.065663 0.871695 -0.378619 -0.311121 -0.257158 0.187024 -0.948099 0.319854 0.945189 0.065663 0.906576 -0.285174 -0.311121 -0.275343 0.159042 -0.948099 0.219030 0.973506 0.065663 0.931471 -0.188588 -0.311121 -0.290495 0.129308 -0.948099 0.115793 0.991101 0.065663 0.946106 -0.089924 -0.311121 -0.302448 0.098150 -0.948099 0.012279 0.997766 0.065663 0.950330 0.008780 -0.311121 -0.311003 0.066222 -0.948099 -0.092362 0.993558 0.065663 0.944176 0.108333 -0.311121 -0.316230 0.033262 -0.948099 -0.123715 0.597809 -0.792035 -0.092010 -0.801639 -0.590686 -0.988043 -0.000201 0.154179 -0.185688 0.581550 -0.792035 -0.007486 -0.806867 -0.590686 -0.982580 -0.103754 0.154179 -0.245057 0.559131 -0.792035 0.076318 -0.803285 -0.590686 -0.966500 -0.205198 0.154179 -0.302308 0.530368 -0.792035 0.160087 -0.790862 -0.590686 -0.939671 -0.305364 0.154179 -0.356230 0.495763 -0.792035 0.242094 -0.769728 -0.590686 -0.902492 -0.402166 0.154179 -0.405771 0.456103 -0.792035 0.320693 -0.740437 -0.590686 -0.855865 -0.493683 0.154179 -0.451339 0.411064 -0.792035 0.396530 -0.702748 -0.590686 -0.799410 -0.580665 0.154179 -0.491936 0.361496 -0.792035 0.467999 -0.657318 -0.590686 -0.734150 -0.661251 0.154179 -0.527114 0.307947 -0.792035 0.534313 -0.604649 -0.590686 -0.660803 -0.734554 0.154179 -0.556235 0.251562 -0.792035 0.594196 -0.545913 -0.590686 -0.580976 -0.799184 0.154179 -0.579537 0.191879 -0.792035 0.648140 -0.480630 -0.590686 -0.494016 -0.855673 0.154179 -0.596456 0.130082 -0.792035 0.694943 -0.410054 -0.590686 -0.401615 -0.902737 0.154179 -0.606737 0.067460 -0.792035 0.733757 -0.335694 -0.590686 -0.305729 -0.939552 0.154179 -0.610466 0.003498 -0.792035 0.764899 -0.256943 -0.590686 -0.205574 -0.966420 0.154179 -0.607470 -0.060502 -0.792035 0.787616 -0.175360 -0.590686 -0.103154 -0.982643 0.154179 -0.597884 -0.123349 -0.792035 0.801582 -0.092500 -0.590686 -0.000402 -0.988043 0.154179 -0.581664 -0.185333 -0.792035 0.806862 -0.007979 -0.590686 0.103154 -0.982643 0.154179 -0.559036 -0.245274 -0.792035 0.803255 0.076630 -0.590686 0.205574 -0.966420 0.154179 -0.530251 -0.302515 -0.792035 0.790800 0.160395 -0.590686 0.305729 -0.939552 0.154179 -0.495981 -0.355927 -0.792035 0.769876 0.241623 -0.590686 0.401615 -0.902737 0.154179 -0.455945 -0.405949 -0.792035 0.740312 0.320981 -0.590686 0.494016 -0.855673 0.154179 -0.410888 -0.451499 -0.792035 0.702594 0.396803 -0.590686 0.580976 -0.799184 0.154179 -0.361797 -0.491715 -0.792035 0.657604 0.467597 -0.590686 0.660803 -0.734554 0.154179 -0.308269 -0.526926 -0.792035 0.604975 0.533944 -0.590686 0.734150 -0.661251 0.154179 -0.251345 -0.556333 -0.792035 0.545682 0.594409 -0.590686 0.799410 -0.580665 0.154179 -0.191654 -0.579612 -0.792035 0.480378 0.648326 -0.590686 0.855865 -0.493683 0.154179 -0.130447 -0.596376 -0.792035 0.410478 0.694693 -0.590686 0.902492 -0.402166 0.154179 -0.067224 -0.606763 -0.792035 0.335409 0.733888 -0.590686 0.939671 -0.305364 0.154179 -0.003261 -0.610467 -0.792035 0.256645 0.764999 -0.590686 0.966500 -0.205198 0.154179 0.060131 -0.607507 -0.792035 0.175842 0.787509 -0.590686 0.982580 -0.103754 0.154179 0.123471 -0.597859 -0.792035 0.092337 0.801601 -0.590686 0.988043 -0.000201 0.154179 0.185451 -0.581626 -0.792035 0.007815 0.806864 -0.590686 0.982622 0.103354 0.154179 0.245388 -0.558986 -0.792035 -0.076794 0.803239 -0.590686 0.966378 0.205771 0.154179 0.302092 -0.530491 -0.792035 -0.159765 0.790927 -0.590686 0.939795 0.304981 0.154179 0.356028 -0.495908 -0.792035 -0.241780 0.769827 -0.590686 0.902655 0.401799 0.154179 0.406042 -0.455863 -0.792035 -0.321132 0.740247 -0.590686 0.855573 0.494190 0.154179 0.451583 -0.410796 -0.792035 -0.396946 0.702513 -0.590686 0.799066 0.581139 0.154179 0.491789 -0.361696 -0.792035 -0.467731 0.657509 -0.590686 0.734419 0.660952 0.154179 0.526989 -0.308161 -0.792035 -0.534067 0.604866 -0.590686 0.661102 0.734284 0.154179 0.556384 -0.251232 -0.792035 -0.594520 0.545561 -0.590686 0.580502 0.799528 0.154179 0.579459 -0.192115 -0.792035 -0.647944 0.480894 -0.590686 0.494365 0.855472 0.154179 0.596402 -0.130325 -0.792035 -0.694776 0.410337 -0.590686 0.401982 0.902574 0.154179 0.606777 -0.067100 -0.792035 -0.733956 0.335259 -0.590686 0.305172 0.939733 0.154179 0.610468 -0.003136 -0.792035 -0.765051 0.256489 -0.590686 0.205001 0.966542 0.154179 0.607495 0.060255 -0.792035 -0.787545 0.175681 -0.590686 0.103554 0.982601 0.154179 0.597834 0.123593 -0.792035 -0.801620 0.092173 -0.590686 0.000000 0.988043 0.154179 0.581588 0.185569 -0.792035 -0.806866 0.007650 -0.590686 -0.103554 0.982601 0.154179 0.559181 0.244943 -0.792035 -0.803300 -0.076154 -0.590686 -0.205001 0.966542 0.154179 0.530430 0.302200 -0.792035 -0.790895 -0.159926 -0.590686 -0.305172 0.939733 0.154179 0.495836 0.356129 -0.792035 -0.769777 -0.241937 -0.590686 -0.401982 0.902574 0.154179 0.455780 0.406134 -0.792035 -0.740181 -0.321283 -0.590686 -0.494365 0.855472 0.154179 0.411156 0.451256 -0.792035 -0.702829 -0.396387 -0.590686 -0.580502 0.799528 0.154179 0.361596 0.491863 -0.792035 -0.657414 -0.467865 -0.590686 -0.661102 0.734284 0.154179 0.308054 0.527052 -0.792035 -0.604757 -0.534190 -0.590686 -0.734419 0.660952 0.154179 0.251675 0.556184 -0.792035 -0.546034 -0.594085 -0.590686 -0.799066 0.581139 0.154179 0.191997 0.579498 -0.792035 -0.480762 -0.648042 -0.590686 -0.855573 0.494190 0.154179 0.130204 0.596429 -0.792035 -0.410195 -0.694860 -0.590686 -0.902655 0.401799 0.154179 0.066977 0.606791 -0.792035 -0.335110 -0.734024 -0.590686 -0.939795 0.304981 0.154179 0.003622 0.610465 -0.792035 -0.257098 -0.764847 -0.590686 -0.966378 0.205771 0.154179 -0.060379 0.607483 -0.792035 -0.175521 -0.787580 -0.590686 -0.982622 0.103354 0.154179 -0.022178 -0.947785 0.318137 -0.066548 0.318909 0.945446 -0.997537 -0.000203 -0.070146 0.077279 -0.944890 0.318137 -0.099606 0.310178 0.945446 -0.992022 -0.104751 -0.070146 0.174953 -0.931762 0.318137 -0.131268 0.298162 0.945446 -0.975787 -0.207169 -0.070146 0.271644 -0.908294 0.318137 -0.161794 0.282762 0.945446 -0.948700 -0.308298 -0.070146 0.365344 -0.874821 0.318137 -0.190539 0.264248 0.945446 -0.911163 -0.406031 -0.070146 0.454188 -0.832167 0.318137 -0.216941 0.243039 0.945446 -0.864089 -0.498427 -0.070146 0.538903 -0.779982 0.318137 -0.241219 0.218964 0.945446 -0.807092 -0.586245 -0.070146 0.617683 -0.719205 0.318137 -0.262839 0.192477 0.945446 -0.741204 -0.667605 -0.070146 0.689659 -0.650507 0.318137 -0.281565 0.163869 0.945446 -0.667152 -0.741612 -0.070146 0.753464 -0.575397 0.318137 -0.297055 0.133754 0.945446 -0.586559 -0.806863 -0.070146 0.809620 -0.493259 0.318137 -0.309437 0.101883 0.945446 -0.498763 -0.863895 -0.070146 0.856858 -0.405689 0.318137 -0.318411 0.068891 0.945446 -0.405474 -0.911411 -0.070146 0.894344 -0.314544 0.318137 -0.323843 0.035464 0.945446 -0.308667 -0.948580 -0.070146 0.922385 -0.219078 0.318137 -0.325776 0.001327 0.945446 -0.207549 -0.975706 -0.070146 0.940266 -0.121199 0.318137 -0.324121 -0.032824 0.945446 -0.104145 -0.992085 -0.070146 0.947771 -0.022757 0.318137 -0.318950 -0.066353 0.945446 -0.000406 -0.997537 -0.070146 0.944937 0.076701 0.318137 -0.310239 -0.099416 0.945446 0.104145 -0.992085 -0.070146 0.931694 0.175315 0.318137 -0.298111 -0.131384 0.945446 0.207549 -0.975706 -0.070146 0.908188 0.271998 0.318137 -0.282699 -0.161904 0.945446 0.308667 -0.948580 -0.070146 0.875044 0.364809 0.318137 -0.264364 -0.190377 0.945446 0.405474 -0.911411 -0.070146 0.831991 0.454511 0.318137 -0.242955 -0.217036 0.945446 0.498763 -0.863895 -0.070146 0.779772 0.539207 0.318137 -0.218870 -0.241304 0.945446 0.586559 -0.806863 -0.070146 0.719583 0.617243 0.318137 -0.192637 -0.262722 0.945446 0.667152 -0.741612 -0.070146 0.650928 0.689261 0.318137 -0.164041 -0.281465 0.945446 0.741204 -0.667605 -0.070146 0.575104 0.753687 0.318137 -0.133638 -0.297107 0.945446 0.807092 -0.586245 -0.070146 0.492945 0.809811 0.318137 -0.101763 -0.309477 0.945446 0.864089 -0.498427 -0.070146 0.406212 0.856610 0.318137 -0.069086 -0.318369 0.945446 0.911163 -0.406031 -0.070146 0.314196 0.894466 0.318137 -0.035338 -0.323856 0.945446 0.948700 -0.308298 -0.070146 0.218719 0.922470 0.318137 -0.001201 -0.325776 0.945446 0.975787 -0.207169 -0.070146 0.121774 0.940191 0.318137 0.032626 -0.324141 0.945446 0.992022 -0.104751 -0.070146 0.022564 0.947776 0.318137 0.066418 -0.318936 0.945446 0.997537 -0.000203 -0.070146 -0.076894 0.944921 0.318137 0.099479 -0.310219 0.945446 0.992064 0.104347 -0.070146 -0.175505 0.931658 0.318137 0.131444 -0.298084 0.945446 0.975664 0.207748 -0.070146 -0.271274 0.908405 0.318137 0.161679 -0.282828 0.945446 0.948826 0.307911 -0.070146 -0.364988 0.874970 0.318137 0.190431 -0.264325 0.945446 0.911329 0.405659 -0.070146 -0.454681 0.831898 0.318137 0.217085 -0.242911 0.945446 0.863794 0.498939 -0.070146 -0.539365 0.779662 0.318137 0.241349 -0.218821 0.945446 0.806744 0.586723 -0.070146 -0.617390 0.719457 0.318137 0.262761 -0.192584 0.945446 0.741476 0.667303 -0.070146 -0.689394 0.650788 0.318137 0.281498 -0.163984 0.945446 0.667454 0.741340 -0.070146 -0.753804 0.574950 0.318137 0.297134 -0.133578 0.945446 0.586080 0.807211 -0.070146 -0.809419 0.493589 0.318137 0.309396 -0.102010 0.945446 0.499115 0.863692 -0.070146 -0.856692 0.406038 0.318137 0.318383 -0.069021 0.945446 0.405845 0.911246 -0.070146 -0.894530 0.314014 0.318137 0.323864 -0.035272 0.945446 0.308105 0.948763 -0.070146 -0.922514 0.218532 0.318137 0.325777 -0.001134 0.945446 0.206971 0.975829 -0.070146 -0.940216 0.121582 0.318137 0.324134 0.032692 0.945446 0.104549 0.992043 -0.070146 -0.947781 0.022371 0.318137 0.318923 0.066483 0.945446 0.000000 0.997537 -0.070146 -0.944906 -0.077086 0.318137 0.310198 0.099542 0.945446 -0.104549 0.992043 -0.070146 -0.931798 -0.174763 0.318137 0.298189 0.131207 0.945446 -0.206971 0.975829 -0.070146 -0.908349 -0.271459 0.318137 0.282795 0.161737 0.945446 -0.308105 0.948763 -0.070146 -0.874896 -0.365166 0.318137 0.264286 0.190485 0.945446 -0.405845 0.911246 -0.070146 -0.831805 -0.454850 0.318137 0.242867 0.217135 0.945446 -0.499115 0.863692 -0.070146 -0.780092 -0.538744 0.318137 0.219013 0.241174 0.945446 -0.586080 0.807211 -0.070146 -0.719331 -0.617536 0.318137 0.192530 0.262800 0.945446 -0.667454 0.741340 -0.070146 -0.650647 -0.689526 0.318137 0.163926 0.281531 0.945446 -0.741476 0.667303 -0.070146 -0.575550 -0.753346 0.318137 0.133814 0.297028 0.945446 -0.806744 0.586723 -0.070146 -0.493424 -0.809519 0.318137 0.101946 0.309417 0.945446 -0.863794 0.498939 -0.070146 -0.405863 -0.856775 0.318137 0.068956 0.318397 0.945446 -0.911329 0.405659 -0.070146 -0.313832 -0.894594 0.318137 0.035206 0.323871 0.945446 -0.948826 0.307911 -0.070146 -0.219266 -0.922340 0.318137 0.001394 0.325776 0.945446 -0.975664 0.207748 -0.070146 -0.121391 -0.940241 0.318137 -0.032758 0.324128 0.945446 -0.992064 0.104347 -0.070146 -0.214231 0.812671 0.541914 0.298467 0.582723 -0.755878 -0.930066 -0.000189 -0.367392 -0.298225 0.785742 0.541914 0.235749 0.610795 -0.755878 -0.924924 -0.097666 -0.367392 -0.378183 0.750538 0.541914 0.171067 0.631968 -0.755878 -0.909787 -0.193157 -0.367392 -0.454762 0.706768 0.541914 0.103890 0.646417 -0.755878 -0.884533 -0.287445 -0.367392 -0.526332 0.655213 0.541914 0.035569 0.653745 -0.755878 -0.849535 -0.378568 -0.367392 -0.591508 0.597033 0.541914 -0.032490 0.653905 -0.755878 -0.805644 -0.464715 -0.367392 -0.650823 0.531750 0.541914 -0.100845 0.646899 -0.755878 -0.752502 -0.546593 -0.367392 -0.702970 0.460611 0.541914 -0.168089 0.632767 -0.755878 -0.691071 -0.622450 -0.367392 -0.747374 0.384398 0.541914 -0.233482 0.611665 -0.755878 -0.622028 -0.691451 -0.367392 -0.783241 0.304734 0.541914 -0.295719 0.584122 -0.755878 -0.546885 -0.752289 -0.367392 -0.810866 0.220966 0.541914 -0.355311 0.549911 -0.755878 -0.465028 -0.805464 -0.367392 -0.829559 0.134765 0.541914 -0.410988 0.509643 -0.755878 -0.378049 -0.849766 -0.367392 -0.839067 0.047918 0.541914 -0.461675 0.464224 -0.755878 -0.287790 -0.884421 -0.367392 -0.839468 -0.040286 0.541914 -0.507787 0.413280 -0.755878 -0.193511 -0.909712 -0.367392 -0.830622 -0.128046 0.541914 -0.548305 0.357785 -0.755878 -0.097101 -0.924983 -0.367392 -0.812802 -0.213734 0.541914 -0.582540 0.298822 -0.755878 -0.000379 -0.930066 -0.367392 -0.785925 -0.297745 0.541914 -0.610651 0.236122 -0.755878 0.097101 -0.924983 -0.367392 -0.750390 -0.378475 0.541914 -0.632035 0.170821 -0.755878 0.193511 -0.909712 -0.367392 -0.706591 -0.455037 0.541914 -0.646457 0.103639 -0.755878 0.287790 -0.884421 -0.367392 -0.655534 -0.525932 0.541914 -0.653723 0.035968 -0.755878 0.378049 -0.849766 -0.367392 -0.596803 -0.591740 0.541914 -0.653893 -0.032745 -0.755878 0.465028 -0.805464 -0.367392 -0.531497 -0.651030 0.541914 -0.646860 -0.101097 -0.755878 0.546885 -0.752289 -0.367392 -0.461040 -0.702689 0.541914 -0.632869 -0.167703 -0.755878 0.622028 -0.691451 -0.367392 -0.384854 -0.747139 0.541914 -0.611807 -0.233108 -0.755878 0.691071 -0.622450 -0.367392 -0.304429 -0.783360 0.541914 -0.584006 -0.295946 -0.755878 0.752502 -0.546593 -0.367392 -0.220651 -0.810952 0.541914 -0.549773 -0.355524 -0.755878 0.805644 -0.464715 -0.367392 -0.135272 -0.829476 0.541914 -0.509894 -0.410677 -0.755878 0.849535 -0.378568 -0.367392 -0.047592 -0.839085 0.541914 -0.464044 -0.461856 -0.755878 0.884533 -0.287445 -0.367392 0.040613 -0.839452 0.541914 -0.413083 -0.507947 -0.755878 0.909787 -0.193157 -0.367392 0.127539 -0.830700 0.541914 -0.358119 -0.548086 -0.755878 0.924924 -0.097666 -0.367392 0.213900 -0.812758 0.541914 -0.298704 -0.582601 -0.755878 0.930066 -0.000189 -0.367392 0.297905 -0.785864 0.541914 -0.235998 -0.610699 -0.755878 0.924964 0.097289 -0.367392 0.378628 -0.750313 0.541914 -0.170693 -0.632069 -0.755878 0.909673 0.193696 -0.367392 0.454474 -0.706953 0.541914 -0.104154 -0.646374 -0.755878 0.884650 0.287085 -0.367392 0.526065 -0.655427 0.541914 -0.035835 -0.653731 -0.755878 0.849689 0.378222 -0.367392 0.591861 -0.596682 0.541914 0.032878 -0.653886 -0.755878 0.805369 0.465192 -0.367392 0.651138 -0.531365 0.541914 0.101229 -0.646839 -0.755878 0.752178 0.547039 -0.367392 0.702782 -0.460897 0.541914 0.167832 -0.632835 -0.755878 0.691324 0.622168 -0.367392 0.747217 -0.384702 0.541914 0.233233 -0.611760 -0.755878 0.622309 0.691198 -0.367392 0.783422 -0.304270 0.541914 0.296065 -0.583946 -0.755878 0.546439 0.752613 -0.367392 0.810776 -0.221297 0.541914 0.355087 -0.550056 -0.755878 0.465356 0.805274 -0.367392 0.829504 -0.135103 0.541914 0.410781 -0.509811 -0.755878 0.378395 0.849612 -0.367392 0.839095 -0.047421 0.541914 0.461950 -0.463950 -0.755878 0.287265 0.884591 -0.367392 0.839444 0.040784 0.541914 0.508031 -0.412979 -0.755878 0.192972 0.909827 -0.367392 0.830674 0.127708 0.541914 0.548159 -0.358008 -0.755878 0.097478 0.924944 -0.367392 0.812715 0.214065 0.541914 0.582662 -0.298585 -0.755878 0.000000 0.930066 -0.367392 0.785803 0.298065 0.541914 0.610747 -0.235874 -0.755878 -0.097478 0.924944 -0.367392 0.750615 0.378031 0.541914 0.631933 -0.171196 -0.755878 -0.192972 0.909827 -0.367392 0.706860 0.454618 0.541914 0.646396 -0.104022 -0.755878 -0.287265 0.884591 -0.367392 0.655320 0.526199 0.541914 0.653738 -0.035702 -0.755878 -0.378395 0.849612 -0.367392 0.596561 0.591983 0.541914 0.653879 0.033011 -0.755878 -0.465356 0.805274 -0.367392 0.531883 0.650715 0.541914 0.646919 0.100713 -0.755878 -0.546439 0.752613 -0.367392 0.460754 0.702876 0.541914 0.632801 0.167961 -0.755878 -0.622309 0.691198 -0.367392 0.384550 0.747296 0.541914 0.611712 0.233358 -0.755878 -0.691324 0.622168 -0.367392 0.304893 0.783179 0.541914 0.584182 0.295600 -0.755878 -0.752178 0.547039 -0.367392 0.221131 0.810821 0.541914 0.549983 0.355199 -0.755878 -0.805369 0.465192 -0.367392 0.134934 0.829531 0.541914 0.509727 0.410885 -0.755878 -0.849689 0.378222 -0.367392 0.047250 0.839105 0.541914 0.463856 0.462045 -0.755878 -0.884650 0.287085 -0.367392 -0.040115 0.839476 0.541914 0.413384 0.507702 -0.755878 -0.909673 0.193696 -0.367392 -0.127877 0.830648 0.541914 0.357896 0.548232 -0.755878 -0.924964 0.097289 -0.367392 0.359044 -0.814042 -0.456534 -0.503010 -0.580806 0.640036 -0.786173 -0.000160 -0.618006 0.442384 -0.771928 -0.456534 -0.439367 -0.630326 0.640036 -0.781827 -0.082556 -0.618006 0.520130 -0.721832 -0.456534 -0.371557 -0.672532 0.640036 -0.769032 -0.163273 -0.618006 0.592918 -0.663344 -0.456534 -0.299024 -0.707770 0.640036 -0.747685 -0.242974 -0.618006 0.659176 -0.597548 -0.456534 -0.223198 -0.735212 0.640036 -0.718101 -0.319999 -0.618006 0.717647 -0.525889 -0.456534 -0.145668 -0.754411 0.640036 -0.681001 -0.392818 -0.618006 0.768812 -0.447778 -0.456534 -0.065798 -0.765523 0.640036 -0.636081 -0.462028 -0.618006 0.811508 -0.364735 -0.456534 0.014797 -0.768203 0.640036 -0.584154 -0.526149 -0.618006 0.845266 -0.277674 -0.456534 0.095228 -0.762421 0.640036 -0.525792 -0.584475 -0.618006 0.869525 -0.188425 -0.456534 0.173863 -0.748416 0.640036 -0.462276 -0.635901 -0.618006 0.884484 -0.096254 -0.456534 0.251345 -0.726072 0.640036 -0.393083 -0.680849 -0.618006 0.889701 -0.003024 -0.456534 0.326058 -0.695730 0.640036 -0.319560 -0.718297 -0.618006 0.885208 0.089354 -0.456534 0.396522 -0.658122 0.640036 -0.243265 -0.747590 -0.618006 0.870968 0.181638 -0.456534 0.463314 -0.612939 0.640036 -0.163572 -0.768969 -0.618006 0.847134 0.271922 -0.456534 0.525002 -0.561005 0.640036 -0.082078 -0.781877 -0.618006 0.814261 0.358547 -0.456534 0.580499 -0.503364 0.640036 -0.000320 -0.786173 -0.618006 0.772198 0.441912 -0.456534 0.630058 -0.439752 0.640036 0.082078 -0.781877 -0.618006 0.721630 0.520410 -0.456534 0.672677 -0.371295 0.640036 0.163572 -0.768969 -0.618006 0.663113 0.593176 -0.456534 0.707887 -0.298749 0.640036 0.243265 -0.747590 -0.618006 0.597951 0.658811 -0.456534 0.735076 -0.223647 0.640036 0.319560 -0.718297 -0.618006 0.525610 0.717852 -0.456534 0.754467 -0.145374 0.640036 0.393083 -0.680849 -0.618006 0.447479 0.768986 -0.456534 0.765548 -0.065500 0.640036 0.462276 -0.635901 -0.618006 0.365231 0.811285 -0.456534 0.768212 0.014327 0.640036 0.525792 -0.584475 -0.618006 0.278191 0.845096 -0.456534 0.762479 0.094763 0.640036 0.584154 -0.526149 -0.618006 0.188086 0.869598 -0.456534 0.748348 0.174154 0.640036 0.636081 -0.462028 -0.618006 0.095911 0.884521 -0.456534 0.725974 0.251627 0.640036 0.681001 -0.392818 -0.618006 0.003568 0.889699 -0.456534 0.695929 0.325633 0.640036 0.718101 -0.319999 -0.618006 -0.089699 0.885173 -0.456534 0.657968 0.396778 0.640036 0.747685 -0.242974 -0.618006 -0.181977 0.870897 -0.456534 0.612759 0.463552 0.640036 0.769032 -0.163273 -0.618006 -0.271404 0.847300 -0.456534 0.561326 0.524660 0.640036 0.781827 -0.082556 -0.618006 -0.358712 0.814188 -0.456534 0.503246 0.580601 0.640036 0.786173 -0.000160 -0.618006 -0.442070 0.772108 -0.456534 0.439623 0.630147 0.640036 0.781860 0.082237 -0.618006 -0.520557 0.721524 -0.456534 0.371158 0.672752 0.640036 0.768935 0.163729 -0.618006 -0.592648 0.663585 -0.456534 0.299313 0.707648 0.640036 0.747784 0.242670 -0.618006 -0.658933 0.597817 -0.456534 0.223498 0.735121 0.640036 0.718232 0.319706 -0.618006 -0.717959 0.525464 -0.456534 0.145221 0.754497 0.640036 0.680769 0.393221 -0.618006 -0.769077 0.447322 -0.456534 0.065344 0.765562 0.640036 0.635807 0.462405 -0.618006 -0.811360 0.365065 -0.456534 -0.014484 0.768209 0.640036 0.584368 0.525911 -0.618006 -0.845152 0.278019 -0.456534 -0.094918 0.762460 0.640036 0.526030 0.584261 -0.618006 -0.869636 0.187909 -0.456534 -0.174306 0.748313 0.640036 0.461899 0.636175 -0.618006 -0.884445 0.096615 -0.456534 -0.251049 0.726174 0.640036 0.393360 0.680688 -0.618006 -0.889700 0.003387 -0.456534 -0.325774 0.695863 0.640036 0.319852 0.718167 -0.618006 -0.885155 -0.089879 -0.456534 -0.396912 0.657887 0.640036 0.242822 0.747734 -0.618006 -0.870860 -0.182155 -0.456534 -0.463677 0.612665 0.640036 0.163117 0.769065 -0.618006 -0.847244 -0.271577 -0.456534 -0.524774 0.561219 0.640036 0.082397 0.781844 -0.618006 -0.814115 -0.358878 -0.456534 -0.580703 0.503128 0.640036 0.000000 0.786173 -0.618006 -0.772018 -0.442227 -0.456534 -0.630237 0.439495 0.640036 -0.082397 0.781844 -0.618006 -0.721938 -0.519983 -0.456534 -0.672457 0.371694 0.640036 -0.163117 0.769065 -0.618006 -0.663464 -0.592783 -0.456534 -0.707709 0.299169 0.640036 -0.242822 0.747734 -0.618006 -0.597683 -0.659054 -0.456534 -0.735167 0.223348 0.640036 -0.319852 0.718167 -0.618006 -0.525317 -0.718066 -0.456534 -0.754526 0.145067 0.640036 -0.393360 0.680688 -0.618006 -0.447935 -0.768721 -0.456534 -0.765509 0.065954 0.640036 -0.461899 0.636175 -0.618006 -0.364900 -0.811434 -0.456534 -0.768206 -0.014640 0.640036 -0.526030 0.584261 -0.618006 -0.277846 -0.845209 -0.456534 -0.762440 -0.095073 0.640036 -0.584368 0.525911 -0.618006 -0.188602 -0.869486 -0.456534 -0.748451 -0.173710 0.640036 -0.635807 0.462405 -0.618006 -0.096435 -0.884464 -0.456534 -0.726123 -0.251197 0.640036 -0.680769 0.393221 -0.618006 -0.003205 -0.889700 -0.456534 -0.695797 -0.325916 0.640036 -0.718232 0.319706 -0.618006 0.090059 -0.885136 -0.456534 -0.657806 -0.397046 0.640036 -0.747784 0.242670 -0.618006 0.181461 -0.871005 -0.456534 -0.613034 -0.463189 0.640036 -0.768935 0.163729 -0.618006 0.271749 -0.847189 -0.456534 -0.561112 -0.524888 0.640036 -0.781860 0.082237 -0.618006 -0.758944 0.013641 -0.651013 -0.010268 -0.999907 -0.008982 -0.651075 -0.000133 0.759013 -0.756194 -0.065977 -0.651013 0.094586 -0.995476 -0.008982 -0.647475 -0.068369 0.759013 -0.745259 -0.144123 -0.651013 0.197418 -0.980278 -0.008982 -0.636879 -0.135216 0.759013 -0.726049 -0.221437 -0.651013 0.299071 -0.954189 -0.008982 -0.619200 -0.201221 0.759013 -0.698842 -0.296313 -0.651013 0.397430 -0.917589 -0.008982 -0.594701 -0.265009 0.759013 -0.664305 -0.367261 -0.651013 0.490540 -0.871372 -0.008982 -0.563976 -0.325315 0.759013 -0.622155 -0.434862 -0.651013 0.579164 -0.815161 -0.008982 -0.526775 -0.382632 0.759013 -0.573152 -0.497673 -0.651013 0.661409 -0.749971 -0.008982 -0.483771 -0.435734 0.759013 -0.517836 -0.555003 -0.651013 0.736369 -0.676521 -0.008982 -0.435439 -0.484037 0.759013 -0.457422 -0.605762 -0.651013 0.802622 -0.596421 -0.008982 -0.382837 -0.526626 0.759013 -0.391414 -0.650367 -0.651013 0.860711 -0.509016 -0.008982 -0.325534 -0.563850 0.759013 -0.321095 -0.687808 -0.651013 0.909319 -0.416003 -0.008982 -0.264646 -0.594863 0.759013 -0.247957 -0.717425 -0.651013 0.947592 -0.319357 -0.008982 -0.201462 -0.619122 0.759013 -0.171400 -0.739462 -0.651013 0.975844 -0.218284 -0.008982 -0.135464 -0.636827 0.759013 -0.092956 -0.753353 -0.651013 0.993347 -0.114806 -0.008982 -0.067974 -0.647517 0.759013 -0.014105 -0.758935 -0.651013 0.999900 -0.010878 -0.008982 -0.000265 -0.651075 0.759013 0.065515 -0.756234 -0.651013 0.995534 0.093978 -0.008982 0.067974 -0.647517 0.759013 0.144413 -0.745203 -0.651013 0.980201 0.197800 -0.008982 0.135464 -0.636827 0.759013 0.221720 -0.725963 -0.651013 0.954072 0.299442 -0.008982 0.201462 -0.619122 0.759013 0.295886 -0.699023 -0.651013 0.917831 0.396869 -0.008982 0.264646 -0.594863 0.759013 0.367519 -0.664162 -0.651013 0.871182 0.490879 -0.008982 0.325534 -0.563850 0.759013 0.435104 -0.621986 -0.651013 0.814936 0.579481 -0.008982 0.382837 -0.526626 0.759013 0.497323 -0.573456 -0.651013 0.750375 0.660951 -0.008982 0.435439 -0.484037 0.759013 0.554686 -0.518175 -0.651013 0.676970 0.735956 -0.008982 0.483771 -0.435734 0.759013 0.605940 -0.457186 -0.651013 0.596108 0.802854 -0.008982 0.526775 -0.382632 0.759013 0.650519 -0.391161 -0.651013 0.508681 0.860908 -0.008982 0.563976 -0.325315 0.759013 0.687612 -0.321516 -0.651013 0.416559 0.909064 -0.008982 0.594701 -0.265009 0.759013 0.717522 -0.247678 -0.651013 0.318988 0.947716 -0.008982 0.619200 -0.201221 0.759013 0.739528 -0.171113 -0.651013 0.217904 0.975929 -0.008982 0.636879 -0.135216 0.759013 0.753296 -0.093416 -0.651013 0.115413 0.993277 -0.008982 0.647475 -0.068369 0.759013 0.758938 -0.013950 -0.651013 0.010675 0.999903 -0.008982 0.651075 -0.000133 0.759013 0.756221 0.065669 -0.651013 -0.094181 0.995515 -0.008982 0.647503 0.068105 0.759013 0.745173 0.144564 -0.651013 -0.197999 0.980161 -0.008982 0.636799 0.135593 0.759013 0.726139 0.221142 -0.651013 -0.298683 0.954310 -0.008982 0.619282 0.200969 0.759013 0.698963 0.296028 -0.651013 -0.397056 0.917750 -0.008982 0.594809 0.264767 0.759013 0.664088 0.367654 -0.651013 -0.491056 0.871082 -0.008982 0.563783 0.325649 0.759013 0.621897 0.435231 -0.651013 -0.579647 0.814818 -0.008982 0.526548 0.382944 0.759013 0.573355 0.497440 -0.651013 -0.661104 0.750241 -0.008982 0.483948 0.435537 0.759013 0.518062 0.554792 -0.651013 -0.736093 0.676820 -0.008982 0.435636 0.483860 0.759013 0.457062 0.606033 -0.651013 -0.802975 0.595945 -0.008982 0.382525 0.526853 0.759013 0.391679 0.650207 -0.651013 -0.860503 0.509366 -0.008982 0.325764 0.563717 0.759013 0.321375 0.687677 -0.651013 -0.909149 0.416374 -0.008982 0.264888 0.594755 0.759013 0.247532 0.717572 -0.651013 -0.947781 0.318795 -0.008982 0.201095 0.619241 0.759013 0.170962 0.739563 -0.651013 -0.975973 0.217705 -0.008982 0.135086 0.636907 0.759013 0.093262 0.753315 -0.651013 -0.993300 0.115211 -0.008982 0.068237 0.647489 0.759013 0.013796 0.758941 -0.651013 -0.999905 0.010471 -0.008982 0.000000 0.651075 0.759013 -0.065823 0.756207 -0.651013 -0.995495 -0.094384 -0.008982 -0.068237 0.647489 0.759013 -0.143971 0.745288 -0.651013 -0.980318 -0.197219 -0.008982 -0.135086 0.636907 0.759013 -0.221289 0.726094 -0.651013 -0.954249 -0.298877 -0.008982 -0.201095 0.619241 0.759013 -0.296171 0.698903 -0.651013 -0.917669 -0.397243 -0.008982 -0.264888 0.594755 0.759013 -0.367789 0.664013 -0.651013 -0.870982 -0.491234 -0.008982 -0.325764 0.563717 0.759013 -0.434735 0.622244 -0.651013 -0.815279 -0.578998 -0.008982 -0.382525 0.526853 0.759013 -0.497556 0.573253 -0.651013 -0.750106 -0.661257 -0.008982 -0.435636 0.483860 0.759013 -0.554897 0.517949 -0.651013 -0.676670 -0.736231 -0.008982 -0.483948 0.435537 0.759013 -0.605669 0.457545 -0.651013 -0.596584 -0.802500 -0.008982 -0.526548 0.382944 0.759013 -0.650287 0.391547 -0.651013 -0.509191 -0.860607 -0.008982 -0.563783 0.325649 0.759013 -0.687742 0.321235 -0.651013 -0.416189 -0.909234 -0.008982 -0.594809 0.264767 0.759013 -0.717623 0.247386 -0.651013 -0.318602 -0.947846 -0.008982 -0.619282 0.200969 0.759013 -0.739427 0.171551 -0.651013 -0.218483 -0.975800 -0.008982 -0.636799 0.135593 0.759013 -0.753334 0.093109 -0.651013 -0.115008 -0.993324 -0.008982 -0.647503 0.068105 0.759013 -0.116436 0.957358 0.264402 0.385250 0.288904 -0.876423 -0.915437 -0.000186 -0.402461 -0.216133 0.939882 0.264402 0.352849 0.327690 -0.876423 -0.910376 -0.096130 -0.402461 -0.312537 0.912366 0.264402 0.316924 0.362550 -0.876423 -0.895477 -0.190119 -0.402461 -0.406438 0.874586 0.264402 0.277181 0.393769 -0.876423 -0.870620 -0.282924 -0.402461 -0.495862 0.827171 0.264402 0.234385 0.420651 -0.876423 -0.836172 -0.372613 -0.402461 -0.579054 0.771225 0.264402 0.189449 0.442710 -0.876423 -0.792973 -0.457405 -0.402461 -0.656695 0.706289 0.264402 0.142007 0.460127 -0.876423 -0.740666 -0.537995 -0.402461 -0.727102 0.633573 0.264402 0.093000 0.472477 -0.876423 -0.680201 -0.612659 -0.402461 -0.789501 0.553878 0.264402 0.042969 0.479622 -0.876423 -0.612244 -0.680575 -0.402461 -0.842734 0.468925 0.264402 -0.007054 0.481491 -0.876423 -0.538283 -0.740457 -0.402461 -0.887240 0.378018 0.264402 -0.057479 0.478100 -0.876423 -0.457714 -0.792795 -0.402461 -0.921972 0.282947 0.264402 -0.107271 0.469442 -0.876423 -0.372102 -0.836400 -0.402461 -0.946364 0.185706 0.264402 -0.155425 0.455770 -0.876423 -0.283263 -0.870510 -0.402461 -0.960615 0.085497 0.264402 -0.202337 0.436970 -0.876423 -0.190467 -0.895403 -0.402461 -0.964286 -0.015653 0.264402 -0.247020 0.413357 -0.876423 -0.095574 -0.910434 -0.402461 -0.957429 -0.115851 0.264402 -0.288669 0.385426 -0.876423 -0.000373 -0.915437 -0.402461 -0.940014 -0.215559 0.264402 -0.327474 0.353049 -0.876423 0.095574 -0.910434 -0.402461 -0.912245 -0.312892 0.264402 -0.362673 0.316783 -0.876423 0.190467 -0.895403 -0.402461 -0.874427 -0.406778 0.264402 -0.393877 0.277028 -0.876423 0.283263 -0.870510 -0.402461 -0.827474 -0.495357 0.264402 -0.420507 0.234642 -0.876423 0.372102 -0.836400 -0.402461 -0.771000 -0.579354 0.264402 -0.442784 0.189277 -0.876423 0.457714 -0.792795 -0.402461 -0.706033 -0.656969 0.264402 -0.460183 0.141828 -0.876423 0.538283 -0.740457 -0.402461 -0.634017 -0.726715 0.264402 -0.472420 0.093289 -0.876423 0.612244 -0.680575 -0.402461 -0.554360 -0.789162 0.264402 -0.479595 0.043262 -0.876423 0.680201 -0.612659 -0.402461 -0.468597 -0.842917 0.264402 -0.481488 -0.007241 -0.876423 0.740666 -0.537995 -0.402461 -0.377673 -0.887387 0.264402 -0.478077 -0.057665 -0.876423 0.792973 -0.457405 -0.402461 -0.283510 -0.921799 0.264402 -0.469508 -0.106984 -0.876423 0.836172 -0.372613 -0.402461 -0.185337 -0.946436 0.264402 -0.455709 -0.155602 -0.876423 0.870620 -0.282924 -0.402461 -0.085123 -0.960649 0.264402 -0.436891 -0.202507 -0.876423 0.895477 -0.190119 -0.402461 0.015064 -0.964295 0.264402 -0.413508 -0.246768 -0.876423 0.910376 -0.096130 -0.402461 0.116046 -0.957405 0.264402 -0.385368 -0.288747 -0.876423 0.915437 -0.000186 -0.402461 0.215750 -0.939970 0.264402 -0.352983 -0.327546 -0.876423 0.910415 0.095759 -0.402461 0.313077 -0.912181 0.264402 -0.316709 -0.362737 -0.876423 0.895365 0.190650 -0.402461 0.406082 -0.874751 0.264402 -0.277341 -0.393656 -0.876423 0.870735 0.282570 -0.402461 0.495525 -0.827373 0.264402 -0.234556 -0.420555 -0.876423 0.836324 0.372273 -0.402461 0.579511 -0.770882 0.264402 -0.189187 -0.442822 -0.876423 0.792701 0.457875 -0.402461 0.657113 -0.705899 0.264402 -0.141734 -0.460212 -0.876423 0.740347 0.538434 -0.402461 0.726844 -0.633869 0.264402 -0.093193 -0.472439 -0.876423 0.680451 0.612382 -0.402461 0.789275 -0.554199 0.264402 -0.043164 -0.479604 -0.876423 0.612521 0.680326 -0.402461 0.843012 -0.468425 0.264402 0.007339 -0.481487 -0.876423 0.537844 0.740776 -0.402461 0.887086 -0.378379 0.264402 0.057284 -0.478123 -0.876423 0.458037 0.792608 -0.402461 0.921857 -0.283322 0.264402 0.107079 -0.469486 -0.876423 0.372443 0.836248 -0.402461 0.946474 -0.185145 0.264402 0.155695 -0.455678 -0.876423 0.282747 0.870677 -0.402461 0.960666 -0.084928 0.264402 0.202596 -0.436850 -0.876423 0.189937 0.895516 -0.402461 0.964292 0.015260 0.264402 0.246852 -0.413458 -0.876423 0.095944 0.910395 -0.402461 0.957382 0.116241 0.264402 0.288826 -0.385309 -0.876423 0.000000 0.915437 -0.402461 0.939926 0.215941 0.264402 0.327618 -0.352916 -0.876423 -0.095944 0.910395 -0.402461 0.912430 0.312351 0.264402 0.362485 -0.316998 -0.876423 -0.189937 0.895516 -0.402461 0.874668 0.406260 0.264402 0.393712 -0.277261 -0.876423 -0.282747 0.870677 -0.402461 0.827272 0.495694 0.264402 0.420603 -0.234470 -0.876423 -0.372443 0.836248 -0.402461 0.770764 0.579668 0.264402 0.442861 -0.189097 -0.876423 -0.458037 0.792608 -0.402461 0.706422 0.656551 0.264402 0.460099 -0.142101 -0.876423 -0.537844 0.740776 -0.402461 0.633721 0.726973 0.264402 0.472458 -0.093096 -0.876423 -0.612521 0.680326 -0.402461 0.554038 0.789388 0.264402 0.479613 -0.043067 -0.876423 -0.680451 0.612382 -0.402461 0.469097 0.842639 0.264402 0.481492 0.006956 -0.876423 -0.740347 0.538434 -0.402461 0.378198 0.887163 0.264402 0.478111 0.057382 -0.876423 -0.792701 0.457875 -0.402461 0.283135 0.921915 0.264402 0.469464 0.107175 -0.876423 -0.836324 0.372273 -0.402461 0.184952 0.946512 0.264402 0.455646 0.155788 -0.876423 -0.870735 0.282570 -0.402461 0.085693 0.960598 0.264402 0.437011 0.202248 -0.876423 -0.895365 0.190650 -0.402461 -0.015457 0.964289 0.264402 0.413408 0.246936 -0.876423 -0.910415 0.095759 -0.402461 0.023320 0.999320 -0.028548 0.635495 -0.036862 -0.771224 -0.771753 -0.000157 -0.635923 -0.081544 0.996261 -0.028548 0.635859 0.029945 -0.771224 -0.767486 -0.081042 -0.635923 -0.184528 0.982413 -0.028548 0.629314 0.095794 -0.771224 -0.754926 -0.160278 -0.635923 -0.286476 0.957662 -0.028548 0.615808 0.161223 -0.771224 -0.733970 -0.238517 -0.635923 -0.385268 0.922363 -0.028548 0.595520 0.224876 -0.771224 -0.704929 -0.314129 -0.635923 -0.478939 0.877384 -0.028548 0.568957 0.285483 -0.771224 -0.668510 -0.385612 -0.635923 -0.568257 0.822356 -0.028548 0.535903 0.343542 -0.771224 -0.624413 -0.453553 -0.635923 -0.651316 0.758269 -0.028548 0.496946 0.397816 -0.771224 -0.573439 -0.516498 -0.635923 -0.727201 0.685830 -0.028548 0.452515 0.447709 -0.771224 -0.516148 -0.573754 -0.635923 -0.794470 0.606632 -0.028548 0.403592 0.492267 -0.771224 -0.453796 -0.624237 -0.635923 -0.853674 0.520025 -0.028548 0.349776 0.531855 -0.771224 -0.385872 -0.668360 -0.635923 -0.903475 0.427690 -0.028548 0.292108 0.565585 -0.771224 -0.313698 -0.705121 -0.635923 -0.942993 0.331587 -0.028548 0.231815 0.592853 -0.771224 -0.238803 -0.733877 -0.635923 -0.972552 0.230928 -0.028548 0.168403 0.613884 -0.771224 -0.160572 -0.754863 -0.635923 -0.991399 0.127726 -0.028548 0.103136 0.628153 -0.771224 -0.080573 -0.767535 -0.635923 -0.999306 0.023931 -0.028548 0.037250 0.635472 -0.771224 -0.000314 -0.771753 -0.635923 -0.996310 -0.080935 -0.028548 -0.029557 0.635877 -0.771224 0.080573 -0.767535 -0.635923 -0.982341 -0.184910 -0.028548 -0.096039 0.629277 -0.771224 0.160572 -0.754863 -0.635923 -0.957551 -0.286848 -0.028548 -0.161462 0.615746 -0.771224 0.238803 -0.733877 -0.635923 -0.922598 -0.384704 -0.028548 -0.224512 0.595657 -0.771224 0.313698 -0.705121 -0.635923 -0.877198 -0.479280 -0.028548 -0.285705 0.568846 -0.771224 0.385872 -0.668360 -0.635923 -0.822134 -0.568577 -0.028548 -0.343750 0.535769 -0.771224 0.453796 -0.624237 -0.635923 -0.758667 -0.650853 -0.028548 -0.397513 0.497189 -0.771224 0.516148 -0.573754 -0.635923 -0.686274 -0.726782 -0.028548 -0.447432 0.452788 -0.771224 0.573439 -0.516498 -0.635923 -0.606323 -0.794706 -0.028548 -0.492424 0.403400 -0.771224 0.624413 -0.453553 -0.635923 -0.519693 -0.853876 -0.028548 -0.531991 0.349569 -0.771224 0.668510 -0.385612 -0.635923 -0.428242 -0.903213 -0.028548 -0.565406 0.292453 -0.771224 0.704929 -0.314129 -0.635923 -0.331220 -0.943122 -0.028548 -0.592943 0.231584 -0.771224 0.733970 -0.238517 -0.635923 -0.230550 -0.972642 -0.028548 -0.613949 0.168164 -0.771224 0.754926 -0.160278 -0.635923 -0.128332 -0.991320 -0.028548 -0.628090 0.103519 -0.771224 0.767486 -0.081042 -0.635923 -0.023727 -0.999311 -0.028548 -0.635480 0.037121 -0.771224 0.771753 -0.000157 -0.635923 0.081138 -0.996294 -0.028548 -0.635871 -0.029686 -0.771224 0.767519 0.080729 -0.635923 0.185110 -0.982303 -0.028548 -0.629257 -0.096167 -0.771224 0.754831 0.160726 -0.635923 0.286085 -0.957779 -0.028548 -0.615874 -0.160972 -0.771224 0.734067 0.238218 -0.635923 0.384892 -0.922520 -0.028548 -0.595611 -0.224633 -0.771224 0.705057 0.313842 -0.635923 0.479459 -0.877100 -0.028548 -0.568788 -0.285820 -0.771224 0.668281 0.386008 -0.635923 0.568745 -0.822019 -0.028548 -0.535699 -0.343859 -0.771224 0.624144 0.453923 -0.635923 0.651008 -0.758534 -0.028548 -0.497108 -0.397614 -0.771224 0.573649 0.516265 -0.635923 0.726922 -0.686126 -0.028548 -0.452697 -0.447524 -0.771224 0.516381 0.573544 -0.635923 0.794829 -0.606161 -0.028548 -0.403300 -0.492506 -0.771224 0.453426 0.624505 -0.635923 0.853462 -0.520372 -0.028548 -0.349993 -0.531712 -0.771224 0.386144 0.668203 -0.635923 0.903300 -0.428058 -0.028548 -0.292338 -0.565466 -0.771224 0.313985 0.704993 -0.635923 0.943189 -0.331028 -0.028548 -0.231463 -0.592990 -0.771224 0.238368 0.734018 -0.635923 0.972689 -0.230352 -0.028548 -0.168039 -0.613984 -0.771224 0.160125 0.754958 -0.635923 0.991346 -0.128130 -0.028548 -0.103391 -0.628111 -0.771224 0.080885 0.767502 -0.635923 0.999316 -0.023524 -0.028548 -0.036992 -0.635488 -0.771224 0.000000 0.771753 -0.635923 0.996277 0.081341 -0.028548 0.029816 -0.635865 -0.771224 -0.080885 0.767502 -0.635923 0.982450 0.184328 -0.028548 0.095666 -0.629334 -0.771224 -0.160125 0.754958 -0.635923 0.957720 0.286281 -0.028548 0.161097 -0.615841 -0.771224 -0.238368 0.734018 -0.635923 0.922442 0.385080 -0.028548 0.224755 -0.595565 -0.771224 -0.313985 0.704993 -0.635923 0.877002 0.479638 -0.028548 0.285936 -0.568729 -0.771224 -0.386144 0.668203 -0.635923 0.822471 0.568090 -0.028548 0.343433 -0.535973 -0.771224 -0.453426 0.624505 -0.635923 0.758402 0.651162 -0.028548 0.397715 -0.497027 -0.771224 -0.516381 0.573544 -0.635923 0.685978 0.727062 -0.028548 0.447617 -0.452606 -0.771224 -0.573649 0.516265 -0.635923 0.606794 0.794347 -0.028548 0.492184 -0.403692 -0.771224 -0.624144 0.453923 -0.635923 0.520199 0.853568 -0.028548 0.531784 -0.349884 -0.771224 -0.668281 0.386008 -0.635923 0.427874 0.903388 -0.028548 0.565525 -0.292223 -0.771224 -0.705057 0.313842 -0.635923 0.330836 0.943256 -0.028548 0.593038 -0.231342 -0.771224 -0.734067 0.238218 -0.635923 0.231126 0.972505 -0.028548 0.613850 -0.168528 -0.771224 -0.754831 0.160726 -0.635923 0.127928 0.991373 -0.028548 0.628132 -0.103264 -0.771224 -0.767519 0.080729 -0.635923 -0.001828 -0.999990 0.004119 -0.442334 0.004502 0.896839 -0.896848 -0.000183 -0.442338 0.102988 -0.994674 0.004119 -0.440370 -0.041882 0.896839 -0.891890 -0.094178 -0.442338 0.205692 -0.978608 0.004119 -0.433643 -0.087372 0.896839 -0.877294 -0.186258 -0.442338 0.307124 -0.951661 0.004119 -0.422097 -0.132339 0.896839 -0.852941 -0.277179 -0.442338 0.405173 -0.914231 0.004119 -0.405902 -0.175849 0.896839 -0.819193 -0.365047 -0.442338 0.497893 -0.867229 0.004119 -0.385454 -0.217037 0.896839 -0.776871 -0.448117 -0.442338 0.586042 -0.810270 0.004119 -0.360584 -0.256240 0.896839 -0.725626 -0.527071 -0.442338 0.667737 -0.744386 0.004119 -0.331742 -0.292621 0.896839 -0.666389 -0.600219 -0.442338 0.742076 -0.670303 0.004119 -0.299246 -0.325778 0.896839 -0.599812 -0.666756 -0.442338 0.807653 -0.589644 0.004119 -0.263810 -0.355083 0.896839 -0.527353 -0.725421 -0.442338 0.865004 -0.501749 0.004119 -0.225142 -0.380777 0.896839 -0.448419 -0.776696 -0.442338 0.912827 -0.408327 0.004119 -0.183993 -0.402276 0.896839 -0.364546 -0.819416 -0.442338 0.950284 -0.311358 0.004119 -0.141238 -0.419203 0.896839 -0.277511 -0.852833 -0.442338 0.977683 -0.210046 0.004119 -0.096525 -0.431697 0.896839 -0.186600 -0.877222 -0.442338 0.994313 -0.106421 0.004119 -0.050748 -0.439436 0.896839 -0.093633 -0.891947 -0.442338 0.999989 -0.002439 0.004119 -0.004773 -0.442331 0.896839 -0.000365 -0.896848 -0.442338 0.994737 0.102381 0.004119 0.041613 -0.440395 0.896839 0.093633 -0.891947 -0.442338 0.978528 0.206072 0.004119 0.087540 -0.433609 0.896839 0.186600 -0.877222 -0.442338 0.951541 0.307494 0.004119 0.132504 -0.422046 0.896839 0.277511 -0.852833 -0.442338 0.914478 0.404615 0.004119 0.175601 -0.406010 0.896839 0.364546 -0.819416 -0.442338 0.867035 0.498230 0.004119 0.217187 -0.385369 0.896839 0.448419 -0.776696 -0.442338 0.810042 0.586358 0.004119 0.256380 -0.360484 0.896839 0.527353 -0.725421 -0.442338 0.744794 0.667282 0.004119 0.292418 -0.331921 0.896839 0.599812 -0.666756 -0.442338 0.670756 0.741667 0.004119 0.325595 -0.299445 0.896839 0.666389 -0.600219 -0.442338 0.589330 0.807882 0.004119 0.355186 -0.263672 0.896839 0.725626 -0.527071 -0.442338 0.501412 0.865199 0.004119 0.380864 -0.224993 0.896839 0.776871 -0.448117 -0.442338 0.408884 0.912577 0.004119 0.402164 -0.184239 0.896839 0.819193 -0.365047 -0.442338 0.310988 0.950405 0.004119 0.419258 -0.141075 0.896839 0.852941 -0.277179 -0.442338 0.209666 0.977764 0.004119 0.431735 -0.096357 0.896839 0.877294 -0.186258 -0.442338 0.107029 0.994247 0.004119 0.439405 -0.051016 0.896839 0.891890 -0.094178 -0.442338 0.002235 0.999989 0.004119 0.442332 -0.004683 0.896839 0.896848 -0.000183 -0.442338 -0.102583 0.994716 0.004119 0.440387 0.041703 0.896839 0.891928 0.093815 -0.442338 -0.206272 0.978486 0.004119 0.433591 0.087629 0.896839 0.877184 0.186778 -0.442338 -0.306736 0.951786 0.004119 0.422151 0.132167 0.896839 0.853054 0.276832 -0.442338 -0.404801 0.914396 0.004119 0.405974 0.175684 0.896839 0.819342 0.364713 -0.442338 -0.498407 0.866934 0.004119 0.385325 0.217265 0.896839 0.776605 0.448578 -0.442338 -0.586523 0.809922 0.004119 0.360432 0.256454 0.896839 0.725314 0.527501 -0.442338 -0.667434 0.744658 0.004119 0.331861 0.292485 0.896839 0.666633 0.599948 -0.442338 -0.741803 0.670605 0.004119 0.299379 0.325656 0.896839 0.600083 0.666511 -0.442338 -0.808002 0.589165 0.004119 0.263599 0.355240 0.896839 0.526923 0.725734 -0.442338 -0.864799 0.502101 0.004119 0.225297 0.380685 0.896839 0.448736 0.776514 -0.442338 -0.912660 0.408699 0.004119 0.184157 0.402201 0.896839 0.364880 0.819268 -0.442338 -0.950468 0.310794 0.004119 0.140989 0.419287 0.896839 0.277006 0.852998 -0.442338 -0.977807 0.209467 0.004119 0.096269 0.431755 0.896839 0.186080 0.877332 -0.442338 -0.994269 0.106826 0.004119 0.050927 0.439416 0.896839 0.093996 0.891909 -0.442338 -0.999989 0.002031 0.004119 0.004593 0.442333 0.896839 0.000000 0.896848 -0.442338 -0.994695 -0.102786 0.004119 -0.041792 0.440378 0.896839 -0.093996 0.891909 -0.442338 -0.978650 -0.205492 0.004119 -0.087283 0.433660 0.896839 -0.186080 0.877332 -0.442338 -0.951723 -0.306930 0.004119 -0.132253 0.422124 0.896839 -0.277006 0.852998 -0.442338 -0.914313 -0.404987 0.004119 -0.175767 0.405938 0.896839 -0.364880 0.819268 -0.442338 -0.866832 -0.498583 0.004119 -0.217344 0.385281 0.896839 -0.448736 0.776514 -0.442338 -0.810389 -0.585877 0.004119 -0.256167 0.360636 0.896839 -0.526923 0.725734 -0.442338 -0.744522 -0.667585 0.004119 -0.292553 0.331802 0.896839 -0.600083 0.666511 -0.442338 -0.670454 -0.741940 0.004119 -0.325717 0.299313 0.896839 -0.666633 0.599948 -0.442338 -0.589808 -0.807533 0.004119 -0.355030 0.263882 0.896839 -0.725314 0.527501 -0.442338 -0.501925 -0.864901 0.004119 -0.380731 0.225219 0.896839 -0.776605 0.448578 -0.442338 -0.408513 -0.912743 0.004119 -0.402239 0.184075 0.896839 -0.819342 0.364713 -0.442338 -0.310601 -0.950532 0.004119 -0.419316 0.140904 0.896839 -0.853054 0.276832 -0.442338 -0.210245 -0.977640 0.004119 -0.431678 0.096612 0.896839 -0.877184 0.186778 -0.442338 -0.106624 -0.994291 0.004119 -0.439426 0.050837 0.896839 -0.891928 0.093815 -0.442338 -0.007738 -0.951541 -0.307424 0.024606 -0.307522 0.951223 -0.999667 -0.000204 0.025794 0.092033 -0.947112 -0.307424 0.056701 -0.303249 0.951223 -0.994140 -0.104975 0.025794 0.189857 -0.932440 -0.307424 0.087876 -0.295724 0.951223 -0.977871 -0.207612 0.025794 0.286538 -0.907406 -0.307424 0.118386 -0.284886 0.951223 -0.950726 -0.308956 0.025794 0.380063 -0.872378 -0.307424 0.147592 -0.270909 0.951223 -0.913109 -0.406898 0.025794 0.468573 -0.828209 -0.307424 0.174918 -0.254123 0.951223 -0.865935 -0.499492 0.025794 0.552795 -0.774538 -0.307424 0.200589 -0.234391 0.951223 -0.808815 -0.587497 0.025794 0.630927 -0.712335 -0.307424 0.224050 -0.212077 0.951223 -0.742787 -0.669031 0.025794 0.702110 -0.642286 -0.307424 0.245043 -0.187427 0.951223 -0.668577 -0.743196 0.025794 0.764994 -0.565928 -0.307424 0.263177 -0.160976 0.951223 -0.587811 -0.808587 0.025794 0.820094 -0.482634 -0.307424 0.278599 -0.132506 0.951223 -0.499828 -0.865740 0.025794 0.866161 -0.394024 -0.307424 0.290952 -0.102577 0.951223 -0.406340 -0.913358 0.025794 0.902386 -0.301977 -0.307424 0.300029 -0.071819 0.951223 -0.309326 -0.950606 0.025794 0.929065 -0.205737 -0.307424 0.305903 -0.039978 0.951223 -0.207992 -0.977790 0.025794 0.945511 -0.107232 -0.307424 0.308408 -0.007697 0.951223 -0.104367 -0.994204 0.025794 0.951536 -0.008320 -0.307424 0.307537 0.024418 0.951223 -0.000407 -0.999667 0.025794 0.947168 0.091454 -0.307424 0.303284 0.056516 0.951223 0.104367 -0.994204 0.025794 0.932366 0.190220 -0.307424 0.295690 0.087991 0.951223 0.207992 -0.977790 0.025794 0.907295 0.286891 -0.307424 0.284840 0.118497 0.951223 0.309326 -0.950606 0.025794 0.872610 0.379530 -0.307424 0.270999 0.147426 0.951223 0.406340 -0.913358 0.025794 0.828026 0.468895 -0.307424 0.254055 0.175017 0.951223 0.499828 -0.865740 0.025794 0.774322 0.553096 -0.307424 0.234313 0.200680 0.951223 0.587811 -0.808587 0.025794 0.712720 0.630492 -0.307424 0.212214 0.223920 0.951223 0.668577 -0.743196 0.025794 0.642715 0.701718 -0.307424 0.187577 0.244929 0.951223 0.742787 -0.669031 0.025794 0.565630 0.765214 -0.307424 0.160873 0.263239 0.951223 0.808815 -0.587497 0.025794 0.482315 0.820282 -0.307424 0.132398 0.278650 0.951223 0.865935 -0.499492 0.025794 0.394554 0.865920 -0.307424 0.102755 0.290889 0.951223 0.913109 -0.406898 0.025794 0.301626 0.902503 -0.307424 0.071702 0.300056 0.951223 0.950726 -0.308956 0.025794 0.205376 0.929145 -0.307424 0.039859 0.305919 0.951223 0.977871 -0.207612 0.025794 0.107809 0.945446 -0.307424 0.007885 0.308404 0.951223 0.994140 -0.104975 0.025794 0.008126 0.951538 -0.307424 -0.024481 0.307532 0.951223 0.999667 -0.000204 0.025794 -0.091647 0.947149 -0.307424 -0.056578 0.303272 0.951223 0.994183 0.104570 0.025794 -0.190410 0.932327 -0.307424 -0.088051 0.295672 0.951223 0.977748 0.208191 0.025794 -0.286169 0.907523 -0.307424 -0.118270 0.284934 0.951223 0.950852 0.308569 0.025794 -0.379707 0.872532 -0.307424 -0.147482 0.270969 0.951223 0.913275 0.406526 0.025794 -0.469064 0.827931 -0.307424 -0.175069 0.254020 0.951223 0.865639 0.500005 0.025794 -0.553254 0.774210 -0.307424 -0.200728 0.234272 0.951223 0.808467 0.587976 0.025794 -0.630637 0.712592 -0.307424 -0.223964 0.212168 0.951223 0.743059 0.668728 0.025794 -0.701849 0.642572 -0.307424 -0.244967 0.187527 0.951223 0.668880 0.742923 0.025794 -0.765329 0.565474 -0.307424 -0.263272 0.160820 0.951223 0.587332 0.808935 0.025794 -0.819898 0.482968 -0.307424 -0.278545 0.132620 0.951223 0.500181 0.865537 0.025794 -0.866001 0.394377 -0.307424 -0.290910 0.102696 0.951223 0.406712 0.913192 0.025794 -0.902565 0.301442 -0.307424 -0.300071 0.071641 0.951223 0.308763 0.950789 0.025794 -0.929187 0.205187 -0.307424 -0.305927 0.039797 0.951223 0.207413 0.977913 0.025794 -0.945468 0.107617 -0.307424 -0.308405 0.007823 0.951223 0.104772 0.994162 0.025794 -0.951539 0.007932 -0.307424 -0.307527 -0.024544 0.951223 0.000000 0.999667 0.025794 -0.947130 -0.091840 -0.307424 -0.303261 -0.056639 0.951223 -0.104772 0.994162 0.025794 -0.932479 -0.189668 -0.307424 -0.295742 -0.087816 0.951223 -0.207413 0.977913 0.025794 -0.907465 -0.286353 -0.307424 -0.284910 -0.118328 0.951223 -0.308763 0.950789 0.025794 -0.872455 -0.379885 -0.307424 -0.270939 -0.147537 0.951223 -0.406712 0.913192 0.025794 -0.827835 -0.469232 -0.307424 -0.253984 -0.175121 0.951223 -0.500181 0.865537 0.025794 -0.774650 -0.552637 -0.307424 -0.234432 -0.200541 0.951223 -0.587332 0.808935 0.025794 -0.712463 -0.630782 -0.307424 -0.212123 -0.224007 0.951223 -0.668880 0.742923 0.025794 -0.642429 -0.701979 -0.307424 -0.187477 -0.245005 0.951223 -0.743059 0.668728 0.025794 -0.566084 -0.764879 -0.307424 -0.161029 -0.263144 0.951223 -0.808467 0.587976 0.025794 -0.482801 -0.819996 -0.307424 -0.132563 -0.278572 0.951223 -0.865639 0.500005 0.025794 -0.394201 -0.866081 -0.307424 -0.102637 -0.290931 0.951223 -0.913275 0.406526 0.025794 -0.301258 -0.902626 -0.307424 -0.071580 -0.300086 0.951223 -0.950852 0.308569 0.025794 -0.205927 -0.929023 -0.307424 -0.040040 -0.305895 0.951223 -0.977748 0.208191 0.025794 -0.107424 -0.945489 -0.307424 -0.007760 -0.308407 0.951223 -0.994183 0.104570 0.025794 0.409348 -0.231012 -0.882648 -0.097021 -0.972951 0.209651 -0.907205 -0.000185 -0.420688 0.431305 -0.186837 -0.882648 0.005485 -0.977761 0.209651 -0.902190 -0.095265 -0.420688 0.448371 -0.141053 -0.882648 0.106960 -0.971908 0.209651 -0.887425 -0.188409 -0.420688 0.460685 -0.093284 -0.882648 0.208234 -0.955346 0.209651 -0.862791 -0.280380 -0.420688 0.467924 -0.044487 -0.882648 0.307214 -0.928260 0.209651 -0.828653 -0.369263 -0.420688 0.470014 0.004330 -0.882648 0.401919 -0.891351 0.209651 -0.785842 -0.453292 -0.420688 0.466972 0.053567 -0.882648 0.493125 -0.844318 0.209651 -0.734006 -0.533158 -0.420688 0.458786 0.102214 -0.882648 0.578900 -0.787985 0.209651 -0.674085 -0.607150 -0.420688 0.445546 0.149735 -0.882648 0.658298 -0.722973 0.209651 -0.606738 -0.674455 -0.420688 0.427595 0.195179 -0.882648 0.729795 -0.650727 0.209651 -0.533443 -0.733798 -0.420688 0.404784 0.238919 -0.882648 0.793977 -0.570655 0.209651 -0.453598 -0.785666 -0.420688 0.377514 0.280028 -0.882648 0.849413 -0.484298 0.209651 -0.368756 -0.828879 -0.420688 0.346404 0.317705 -0.882648 0.895100 -0.393501 0.209651 -0.280716 -0.862682 -0.420688 0.311198 0.352261 -0.882648 0.931412 -0.297521 0.209651 -0.188755 -0.887352 -0.420688 0.272565 0.382937 -0.882648 0.957464 -0.198264 0.209651 -0.094714 -0.902248 -0.420688 0.231262 0.409206 -0.882648 0.972891 -0.097615 0.209651 -0.000370 -0.907205 -0.420688 0.187101 0.431191 -0.882648 0.977764 0.004888 0.209651 0.094714 -0.902248 -0.420688 0.140879 0.448426 -0.882648 0.971867 0.107338 0.209651 0.188755 -0.887352 -0.420688 0.093104 0.460721 -0.882648 0.955264 0.208605 0.209651 0.280716 -0.862682 -0.420688 0.044773 0.467897 -0.882648 0.928447 0.306647 0.209651 0.368756 -0.828879 -0.420688 -0.004513 0.470013 -0.882648 0.891195 0.402266 0.209651 0.453598 -0.785666 -0.420688 -0.053749 0.466951 -0.882648 0.844127 0.493454 0.209651 0.533443 -0.733798 -0.420688 -0.101934 0.458848 -0.882648 0.788339 0.578419 0.209651 0.606738 -0.674455 -0.420688 -0.149463 0.445638 -0.882648 0.723375 0.657857 0.209651 0.674085 -0.607150 -0.420688 -0.195346 0.427519 -0.882648 0.650443 0.730048 0.209651 0.734006 -0.533158 -0.420688 -0.239077 0.404691 -0.882648 0.570346 0.794199 0.209651 0.785842 -0.453292 -0.420688 -0.279797 0.377685 -0.882648 0.484817 0.849117 0.209651 0.828653 -0.369263 -0.420688 -0.317840 0.346280 -0.882648 0.393153 0.895253 0.209651 0.862791 -0.280380 -0.420688 -0.352382 0.311061 -0.882648 0.297159 0.931527 0.209651 0.887425 -0.188409 -0.420688 -0.382770 0.272799 -0.882648 0.198849 0.957343 0.209651 0.902190 -0.095265 -0.420688 -0.409254 0.231179 -0.882648 0.097417 0.972911 0.209651 0.907205 -0.000185 -0.420688 -0.431229 0.187013 -0.882648 -0.005087 0.977763 0.209651 0.902228 0.094898 -0.420688 -0.448454 0.140787 -0.882648 -0.107536 0.971845 0.209651 0.887313 0.188935 -0.420688 -0.460647 0.093471 -0.882648 -0.207845 0.955430 0.209651 0.862905 0.280029 -0.420688 -0.467906 0.044678 -0.882648 -0.306836 0.928385 0.209651 0.828804 0.368925 -0.420688 -0.470012 -0.004608 -0.882648 -0.402447 0.891113 0.209651 0.785573 0.453758 -0.420688 -0.466940 -0.053844 -0.882648 -0.493626 0.844026 0.209651 0.733690 0.533593 -0.420688 -0.458828 -0.102027 -0.882648 -0.578579 0.788221 0.209651 0.674332 0.606876 -0.420688 -0.445607 -0.149554 -0.882648 -0.658004 0.723241 0.209651 0.607013 0.674208 -0.420688 -0.427479 -0.195433 -0.882648 -0.730181 0.650294 0.209651 0.533008 0.734114 -0.420688 -0.404881 -0.238754 -0.882648 -0.793744 0.570978 0.209651 0.453918 0.785481 -0.420688 -0.377628 -0.279874 -0.882648 -0.849215 0.484644 0.209651 0.369094 0.828729 -0.420688 -0.346215 -0.317911 -0.882648 -0.895333 0.392971 0.209651 0.280204 0.862848 -0.420688 -0.310989 -0.352446 -0.882648 -0.931588 0.296969 0.209651 0.188229 0.887464 -0.420688 -0.272721 -0.382826 -0.882648 -0.957383 0.198654 0.209651 0.095082 0.902209 -0.420688 -0.231096 -0.409301 -0.882648 -0.972931 0.097219 0.209651 0.000000 0.907205 -0.420688 -0.186925 -0.431267 -0.882648 -0.977762 -0.005286 0.209651 -0.095082 0.902209 -0.420688 -0.141144 -0.448342 -0.882648 -0.971930 -0.106762 0.209651 -0.188229 0.887464 -0.420688 -0.093378 -0.460666 -0.882648 -0.955388 -0.208039 0.209651 -0.280204 0.862848 -0.420688 -0.044582 -0.467915 -0.882648 -0.928322 -0.307025 0.209651 -0.369094 0.828729 -0.420688 0.004704 -0.470011 -0.882648 -0.891031 -0.402629 0.209651 -0.453918 0.785481 -0.420688 0.053472 -0.466983 -0.882648 -0.844419 -0.492954 0.209651 -0.533008 0.734114 -0.420688 0.102120 -0.458807 -0.882648 -0.788103 -0.578740 0.209651 -0.607013 0.674208 -0.420688 0.149644 -0.445577 -0.882648 -0.723107 -0.658151 0.209651 -0.674332 0.606876 -0.420688 0.195092 -0.427634 -0.882648 -0.650875 -0.729663 0.209651 -0.733690 0.533593 -0.420688 0.238837 -0.404832 -0.882648 -0.570817 -0.793861 0.209651 -0.785573 0.453758 -0.420688 0.279951 -0.377571 -0.882648 -0.484471 -0.849314 0.209651 -0.828804 0.368925 -0.420688 0.317981 -0.346151 -0.882648 -0.392788 -0.895413 0.209651 -0.862905 0.280029 -0.420688 0.352198 -0.311270 -0.882648 -0.297711 -0.931351 0.209651 -0.887313 0.188935 -0.420688 0.382881 -0.272643 -0.882648 -0.198459 -0.957424 0.209651 -0.902228 0.094898 -0.420688 0.024679 0.993168 0.114051 -0.211715 0.116690 -0.970340 -0.977020 -0.000199 0.213148 -0.079548 0.990285 0.114051 -0.222779 0.093858 -0.970340 -0.971618 -0.102597 0.213148 -0.181922 0.976676 0.114051 -0.231319 0.070224 -0.970340 -0.955718 -0.202908 0.213148 -0.283283 0.952231 0.114051 -0.237405 0.045593 -0.970340 -0.929188 -0.301957 0.213148 -0.381523 0.917296 0.114051 -0.240876 0.020460 -0.970340 -0.892423 -0.397680 0.213148 -0.474689 0.872733 0.114051 -0.241698 -0.004656 -0.970340 -0.846317 -0.488176 0.213148 -0.563543 0.818176 0.114051 -0.239879 -0.029962 -0.970340 -0.790492 -0.574187 0.213148 -0.646190 0.754606 0.114051 -0.235418 -0.054938 -0.970340 -0.725959 -0.653874 0.213148 -0.721719 0.682725 0.114051 -0.228363 -0.079309 -0.970340 -0.653430 -0.726358 0.213148 -0.788695 0.604113 0.114051 -0.218896 -0.102588 -0.970340 -0.574494 -0.790268 0.213148 -0.847667 0.518124 0.114051 -0.206939 -0.124965 -0.970340 -0.488505 -0.846127 0.213148 -0.897302 0.426429 0.114051 -0.192702 -0.145965 -0.970340 -0.397134 -0.892666 0.213148 -0.936722 0.330974 0.114051 -0.176508 -0.165181 -0.970340 -0.302318 -0.929070 0.213148 -0.966252 0.230976 0.114051 -0.158223 -0.182771 -0.970340 -0.203280 -0.955638 0.213148 -0.985138 0.128434 0.114051 -0.138196 -0.198347 -0.970340 -0.102003 -0.971681 0.213148 -0.993153 0.025286 0.114051 -0.116819 -0.211644 -0.970340 -0.000398 -0.977020 0.213148 -0.990333 -0.078943 0.114051 -0.093994 -0.222722 -0.970340 0.102003 -0.971681 0.213148 -0.976606 -0.182302 0.114051 -0.070134 -0.231346 -0.970340 0.203280 -0.955638 0.213148 -0.952120 -0.283653 0.114051 -0.045501 -0.237423 -0.970340 0.302318 -0.929070 0.213148 -0.917529 -0.380963 0.114051 -0.020608 -0.240863 -0.970340 0.397134 -0.892666 0.213148 -0.872548 -0.475028 0.114051 0.004750 -0.241697 -0.970340 0.488505 -0.846127 0.213148 -0.817956 -0.563861 0.114051 0.030056 -0.239868 -0.970340 0.574494 -0.790268 0.213148 -0.755001 -0.645729 0.114051 0.054794 -0.235451 -0.970340 0.653430 -0.726358 0.213148 -0.683166 -0.721302 0.114051 0.079170 -0.228412 -0.970340 0.725959 -0.653874 0.213148 -0.603806 -0.788930 0.114051 0.102673 -0.218856 -0.970340 0.790492 -0.574187 0.213148 -0.517795 -0.847869 0.114051 0.125045 -0.206890 -0.970340 0.846317 -0.488176 0.213148 -0.426978 -0.897041 0.114051 0.145847 -0.192791 -0.970340 0.892423 -0.397680 0.213148 -0.330610 -0.936851 0.114051 0.165250 -0.176443 -0.970340 0.929188 -0.301957 0.213148 -0.230600 -0.966342 0.114051 0.182832 -0.158152 -0.970340 0.955718 -0.202908 0.213148 -0.129036 -0.985059 0.114051 0.198263 -0.138317 -0.970340 0.971618 -0.102597 0.213148 -0.025084 -0.993158 0.114051 0.211667 -0.116776 -0.970340 0.977020 -0.000199 0.213148 0.079144 -0.990317 0.114051 0.222741 -0.093949 -0.970340 0.971660 0.102201 0.213148 0.182501 -0.976568 0.114051 0.231361 -0.070087 -0.970340 0.955597 0.203475 0.213148 0.282895 -0.952346 0.114051 0.237386 -0.045690 -0.970340 0.929311 0.301578 0.213148 0.381150 -0.917452 0.114051 0.240868 -0.020558 -0.970340 0.892585 0.397316 0.213148 0.475206 -0.872452 0.114051 0.241696 0.004799 -0.970340 0.846027 0.488677 0.213148 0.564028 -0.817842 0.114051 0.239862 0.030104 -0.970340 0.790151 0.574655 0.213148 0.645883 -0.754869 0.114051 0.235440 0.054842 -0.970340 0.726225 0.653578 0.213148 0.721441 -0.683019 0.114051 0.228396 0.079216 -0.970340 0.653726 0.726092 0.213148 0.789053 -0.603645 0.114051 0.218835 0.102717 -0.970340 0.574026 0.790609 0.213148 0.847456 -0.518470 0.114051 0.206990 0.124880 -0.970340 0.488849 0.845928 0.213148 0.897128 -0.426795 0.114051 0.192761 0.145887 -0.970340 0.397498 0.892504 0.213148 0.936918 -0.330419 0.114051 0.176410 0.165286 -0.970340 0.301768 0.929249 0.213148 0.966389 -0.230403 0.114051 0.158115 0.182865 -0.970340 0.202714 0.955759 0.213148 0.985086 -0.128835 0.114051 0.138277 0.198291 -0.970340 0.102399 0.971639 0.213148 0.993163 -0.024882 0.114051 0.116733 0.211691 -0.970340 0.000000 0.977020 0.213148 0.990301 0.079346 0.114051 0.093904 0.222760 -0.970340 -0.102399 0.971639 0.213148 0.976713 0.181723 0.114051 0.070271 0.231305 -0.970340 -0.202714 0.955759 0.213148 0.952288 0.283089 0.114051 0.045642 0.237396 -0.970340 -0.301768 0.929249 0.213148 0.917374 0.381337 0.114051 0.020509 0.240872 -0.970340 -0.397498 0.892504 0.213148 0.872355 0.475384 0.114051 -0.004849 0.241695 -0.970340 -0.488849 0.845928 0.213148 0.818290 0.563377 0.114051 -0.029913 0.239885 -0.970340 -0.574026 0.790609 0.213148 0.754738 0.646037 0.114051 -0.054890 0.235429 -0.970340 -0.653726 0.726092 0.213148 0.682872 0.721580 0.114051 -0.079263 0.228380 -0.970340 -0.726225 0.653578 0.213148 0.604273 0.788572 0.114051 -0.102543 0.218917 -0.970340 -0.790151 0.574655 0.213148 0.518297 0.847562 0.114051 -0.124923 0.206964 -0.970340 -0.846027 0.488677 0.213148 0.426612 0.897215 0.114051 -0.145926 0.192732 -0.970340 -0.892585 0.397316 0.213148 0.330228 0.936986 0.114051 -0.165322 0.176376 -0.970340 -0.929311 0.301578 0.213148 0.231173 0.966205 0.114051 -0.182739 0.158261 -0.970340 -0.955597 0.203475 0.213148 0.128635 0.985112 0.114051 -0.198319 0.138237 -0.970340 -0.971660 0.102201 0.213148 0.418304 -0.371024 -0.829073 -0.166955 -0.928623 0.331338 -0.892831 -0.000182 -0.450392 0.454886 -0.325140 -0.829073 -0.068710 -0.941007 0.331338 -0.887895 -0.093756 -0.450392 0.486182 -0.276160 -0.829073 0.029350 -0.943055 0.331338 -0.873364 -0.185424 -0.450392 0.512448 -0.223684 -0.829073 0.128027 -0.934786 0.331338 -0.849121 -0.275938 -0.450392 0.533070 -0.168744 -0.829073 0.225294 -0.916219 0.331338 -0.815524 -0.363412 -0.450392 0.547707 -0.112492 -0.829073 0.319192 -0.887880 0.331338 -0.773391 -0.446110 -0.450392 0.556481 -0.054469 -0.829073 0.410490 -0.849537 0.331338 -0.722376 -0.524710 -0.450392 0.559125 0.004154 -0.829073 0.497267 -0.801836 0.331338 -0.663404 -0.597530 -0.450392 0.555610 0.062731 -0.829073 0.578567 -0.745302 0.331338 -0.597125 -0.663769 -0.450392 0.546095 0.120072 -0.829073 0.652813 -0.681213 0.331338 -0.524991 -0.722172 -0.450392 0.530504 0.176645 -0.829073 0.720613 -0.609042 0.331338 -0.446411 -0.773217 -0.450392 0.509068 0.231273 -0.829073 0.780476 -0.530162 0.331338 -0.362914 -0.815746 -0.450392 0.482309 0.282871 -0.829073 0.831297 -0.446274 0.331338 -0.276268 -0.849013 -0.450392 0.450005 0.331862 -0.829073 0.873491 -0.356690 0.331338 -0.185764 -0.873292 -0.450392 0.412745 0.377198 -0.829073 0.906064 -0.263178 0.331338 -0.093213 -0.887952 -0.450392 0.371280 0.418077 -0.829073 0.928521 -0.167523 0.331338 -0.000364 -0.892831 -0.450392 0.325418 0.454688 -0.829073 0.940965 -0.069285 0.331338 0.093213 -0.887952 -0.450392 0.275971 0.486290 -0.829073 0.943044 0.029717 0.331338 0.185764 -0.873292 -0.450392 0.223484 0.512535 -0.829073 0.934736 0.128391 0.331338 0.276268 -0.849013 -0.450392 0.169069 0.532966 -0.829073 0.916357 0.224735 0.331338 0.362914 -0.815746 -0.450392 0.112279 0.547751 -0.829073 0.887756 0.319538 0.331338 0.446411 -0.773217 -0.450392 0.054253 0.556502 -0.829073 0.849377 0.410821 0.331338 0.524991 -0.722172 -0.450392 -0.003812 0.559127 -0.829073 0.802139 0.496777 0.331338 0.597125 -0.663769 -0.450392 -0.062392 0.555648 -0.829073 0.745656 0.578111 0.331338 0.663404 -0.597530 -0.450392 -0.120284 0.546049 -0.829073 0.680959 0.653077 0.331338 0.722376 -0.524710 -0.450392 -0.176851 0.530435 -0.829073 0.608761 0.720850 0.331338 0.773391 -0.446110 -0.450392 -0.230962 0.509209 -0.829073 0.530639 0.780152 0.331338 0.815524 -0.363412 -0.450392 -0.283058 0.482199 -0.829073 0.445951 0.831470 0.331338 0.849121 -0.275938 -0.450392 -0.332037 0.449876 -0.829073 0.356351 0.873630 0.331338 0.873364 -0.185424 -0.450392 -0.376946 0.412976 -0.829073 0.263731 0.905903 0.331338 0.887895 -0.093756 -0.450392 -0.418153 0.371195 -0.829073 0.167334 0.928555 0.331338 0.892831 -0.000182 -0.450392 -0.454754 0.325325 -0.829073 0.069093 0.940979 0.331338 0.887933 0.093394 -0.450392 -0.486346 0.275872 -0.829073 -0.029909 0.943038 0.331338 0.873254 0.185942 -0.450392 -0.512357 0.223892 -0.829073 -0.127647 0.934838 0.331338 0.849233 0.275592 -0.450392 -0.533001 0.168961 -0.829073 -0.224921 0.916311 0.331338 0.815672 0.363080 -0.450392 -0.547774 0.112168 -0.829073 -0.319718 0.887691 0.331338 0.773126 0.446568 -0.450392 -0.556513 0.054139 -0.829073 -0.410994 0.849293 0.331338 0.722065 0.525138 -0.450392 -0.559126 -0.003926 -0.829073 -0.496941 0.802038 0.331338 0.663647 0.597260 -0.450392 -0.555635 -0.062505 -0.829073 -0.578263 0.745538 0.331338 0.597395 0.663526 -0.450392 -0.546024 -0.120395 -0.829073 -0.653216 0.680826 0.331338 0.524563 0.722483 -0.450392 -0.530575 -0.176429 -0.829073 -0.720365 0.609335 0.331338 0.446726 0.773035 -0.450392 -0.509162 -0.231065 -0.829073 -0.780260 0.530480 0.331338 0.363246 0.815598 -0.450392 -0.482141 -0.283157 -0.829073 -0.831561 0.445781 0.331338 0.275765 0.849177 -0.450392 -0.449809 -0.332129 -0.829073 -0.873702 0.356173 0.331338 0.185246 0.873402 -0.450392 -0.412899 -0.377030 -0.829073 -0.905957 0.263547 0.331338 0.093575 0.887914 -0.450392 -0.371110 -0.418229 -0.829073 -0.928589 0.167145 0.331338 0.000000 0.892831 -0.450392 -0.325232 -0.454820 -0.829073 -0.940993 0.068901 0.331338 -0.093575 0.887914 -0.450392 -0.276259 -0.486126 -0.829073 -0.943061 -0.029158 0.331338 -0.185246 0.873402 -0.450392 -0.223788 -0.512403 -0.829073 -0.934812 -0.127837 0.331338 -0.275765 0.849177 -0.450392 -0.168852 -0.533035 -0.829073 -0.916265 -0.225108 0.331338 -0.363246 0.815598 -0.450392 -0.112056 -0.547796 -0.829073 -0.887626 -0.319899 0.331338 -0.446726 0.773035 -0.450392 -0.054583 -0.556469 -0.829073 -0.849620 -0.410318 0.331338 -0.524563 0.722483 -0.450392 0.004040 -0.559125 -0.829073 -0.801937 -0.497104 0.331338 -0.597395 0.663526 -0.450392 0.062618 -0.555623 -0.829073 -0.745420 -0.578415 0.331338 -0.663647 0.597260 -0.450392 0.119960 -0.546120 -0.829073 -0.681346 -0.652674 0.331338 -0.722065 0.525138 -0.450392 0.176537 -0.530540 -0.829073 -0.609188 -0.720489 0.331338 -0.773126 0.446568 -0.450392 0.231169 -0.509115 -0.829073 -0.530321 -0.780368 0.331338 -0.815672 0.363080 -0.450392 0.283255 -0.482083 -0.829073 -0.445612 -0.831652 0.331338 -0.849233 0.275592 -0.450392 0.331771 -0.450073 -0.829073 -0.356868 -0.873419 0.331338 -0.873254 0.185942 -0.450392 0.377114 -0.412822 -0.829073 -0.263362 -0.906011 0.331338 -0.887933 0.093394 -0.450392 0.141636 0.959126 0.244982 -0.480601 0.282978 -0.830028 -0.865426 -0.000176 0.501037 0.040333 0.968688 0.244982 -0.507612 0.231049 -0.830028 -0.860641 -0.090878 0.501037 -0.060447 0.967642 0.244982 -0.528855 0.177105 -0.830028 -0.846557 -0.179733 0.501037 -0.161530 0.955977 0.244982 -0.544504 0.120701 -0.830028 -0.823057 -0.267468 0.501037 -0.260834 0.933783 0.244982 -0.554156 0.062969 -0.830028 -0.790492 -0.352257 0.501037 -0.356363 0.901659 0.244982 -0.557699 0.005100 -0.830028 -0.749652 -0.432417 0.501037 -0.448900 0.859344 0.244982 -0.555162 -0.053379 -0.830028 -0.700203 -0.508604 0.501037 -0.536494 0.807563 0.244982 -0.546510 -0.111270 -0.830028 -0.643041 -0.579189 0.501037 -0.618177 0.746888 0.244982 -0.531838 -0.167935 -0.830028 -0.578796 -0.643395 0.501037 -0.692374 0.678677 0.244982 -0.511531 -0.222239 -0.830028 -0.508877 -0.700005 0.501037 -0.759691 0.602374 0.244982 -0.485421 -0.274627 -0.830028 -0.432708 -0.749484 0.501037 -0.818640 0.519435 0.244982 -0.453965 -0.323990 -0.830028 -0.351774 -0.790707 0.501037 -0.868140 0.431644 0.244982 -0.417878 -0.369367 -0.830028 -0.267788 -0.822953 0.501037 -0.908599 0.338279 0.244982 -0.376864 -0.411129 -0.830028 -0.180062 -0.846487 0.501037 -0.939049 0.241188 0.244982 -0.331699 -0.448363 -0.830028 -0.090352 -0.860697 0.501037 -0.959040 0.142222 0.244982 -0.283272 -0.480428 -0.830028 -0.000352 -0.865426 0.501037 -0.968664 0.040925 0.244982 -0.231360 -0.507471 -0.830028 0.090352 -0.860697 0.501037 -0.967618 -0.060824 0.244982 -0.176899 -0.528924 -0.830028 0.180062 -0.846487 0.501037 -0.955914 -0.161902 0.244982 -0.120489 -0.544551 -0.830028 0.267788 -0.822953 0.501037 -0.933942 -0.260263 0.244982 -0.063307 -0.554117 -0.830028 0.351774 -0.790707 0.501037 -0.901521 -0.356713 0.244982 -0.004883 -0.557701 -0.830028 0.432708 -0.749484 0.501037 -0.859170 -0.449235 0.244982 0.053595 -0.555141 -0.830028 0.508877 -0.700005 0.501037 -0.807891 -0.536000 0.244982 0.110936 -0.546578 -0.830028 0.578796 -0.643395 0.501037 -0.747265 -0.617721 0.244982 0.167610 -0.531940 -0.830028 0.643041 -0.579189 0.501037 -0.678408 -0.692638 0.244982 0.222438 -0.511444 -0.830028 0.700203 -0.508604 0.501037 -0.602078 -0.759925 0.244982 0.274816 -0.485314 -0.830028 0.749652 -0.432417 0.501037 -0.519935 -0.818322 0.244982 0.323713 -0.454163 -0.830028 0.790492 -0.352257 0.501037 -0.431306 -0.868308 0.244982 0.369530 -0.417734 -0.830028 0.823057 -0.267468 0.501037 -0.337925 -0.908730 0.244982 0.411276 -0.376704 -0.830028 0.846557 -0.179733 0.501037 -0.241762 -0.938901 0.244982 0.448160 -0.331973 -0.830028 0.860641 -0.090878 0.501037 -0.142027 -0.959069 0.244982 0.480485 -0.283174 -0.830028 0.865426 -0.000176 0.501037 -0.040727 -0.968672 0.244982 0.507518 -0.231256 -0.830028 0.860678 0.090528 0.501037 0.061021 -0.967606 0.244982 0.528960 -0.176791 -0.830028 0.846450 0.180234 0.501037 0.161141 -0.956043 0.244982 0.544455 -0.120923 -0.830028 0.823166 0.267133 0.501037 0.260453 -0.933889 0.244982 0.554130 -0.063194 -0.830028 0.790635 0.351935 0.501037 0.356897 -0.901448 0.244982 0.557702 -0.004770 -0.830028 0.749395 0.432861 0.501037 0.449410 -0.859078 0.244982 0.555130 0.053708 -0.830028 0.699901 0.509019 0.501037 0.536165 -0.807782 0.244982 0.546555 0.111047 -0.830028 0.643277 0.578927 0.501037 0.617873 -0.747139 0.244982 0.531906 0.167718 -0.830028 0.579058 0.643159 0.501037 0.692776 -0.678267 0.244982 0.511399 0.222542 -0.830028 0.508462 0.700306 0.501037 0.759445 -0.602683 0.244982 0.485533 0.274430 -0.830028 0.433014 0.749307 0.501037 0.818428 -0.519769 0.244982 0.454097 0.323806 -0.830028 0.352096 0.790563 0.501037 0.868396 -0.431129 0.244982 0.417659 0.369615 -0.830028 0.267300 0.823112 0.501037 0.908799 -0.337740 0.244982 0.376620 0.411353 -0.830028 0.179560 0.846593 0.501037 0.938950 -0.241571 0.244982 0.331882 0.448228 -0.830028 0.090703 0.860660 0.501037 0.959097 -0.141832 0.244982 0.283076 0.480543 -0.830028 0.000000 0.865426 0.501037 0.968680 -0.040530 0.244982 0.231153 0.507565 -0.830028 -0.090703 0.860660 0.501037 0.967654 0.060250 0.244982 0.177212 0.528819 -0.830028 -0.179560 0.846593 0.501037 0.956010 0.161335 0.244982 0.120812 0.544480 -0.830028 -0.267300 0.823112 0.501037 0.933836 0.260643 0.244982 0.063081 0.554143 -0.830028 -0.352096 0.790563 0.501037 0.901375 0.357081 0.244982 0.004656 0.557702 -0.830028 -0.433014 0.749307 0.501037 0.859436 0.448725 0.244982 -0.053266 0.555173 -0.830028 -0.508462 0.700306 0.501037 0.807673 0.536329 0.244982 -0.111159 0.546532 -0.830028 -0.579058 0.643159 0.501037 0.747013 0.618025 0.244982 -0.167827 0.531872 -0.830028 -0.643277 0.578927 0.501037 0.678818 0.692235 0.244982 -0.222135 0.511576 -0.830028 -0.699901 0.509019 0.501037 0.602529 0.759568 0.244982 -0.274529 0.485477 -0.830028 -0.749395 0.432861 0.501037 0.519602 0.818534 0.244982 -0.323898 0.454031 -0.830028 -0.790635 0.351935 0.501037 0.430952 0.868484 0.244982 -0.369700 0.417583 -0.830028 -0.823166 0.267133 0.501037 0.338464 0.908530 0.244982 -0.411053 0.376948 -0.830028 -0.846450 0.180234 0.501037 0.241380 0.938999 0.244982 -0.448296 0.331790 -0.830028 -0.860678 0.090528 0.501037 -0.451701 0.575065 -0.682104 -0.317337 -0.818108 -0.479580 -0.833825 -0.000170 0.552030 -0.509484 0.524557 -0.682104 -0.229846 -0.846861 -0.479580 -0.829215 -0.087560 0.552030 -0.561187 0.468831 -0.682104 -0.140689 -0.866146 -0.479580 -0.815644 -0.173169 0.552030 -0.607233 0.407433 -0.682104 -0.049136 -0.876121 -0.479580 -0.793003 -0.257701 0.552030 -0.646591 0.341547 -0.682104 0.042958 -0.876446 -0.479580 -0.761626 -0.339394 0.552030 -0.678554 0.272577 -0.682104 0.133713 -0.867251 -0.479580 -0.722278 -0.416627 0.552030 -0.703385 0.199959 -0.682104 0.223870 -0.848460 -0.479580 -0.674635 -0.490032 0.552030 -0.720468 0.125137 -0.682104 0.311562 -0.820324 -0.479580 -0.619560 -0.558040 0.552030 -0.729616 0.048938 -0.682104 0.395822 -0.783153 -0.479580 -0.557661 -0.619901 0.552030 -0.730754 -0.027070 -0.682104 0.474984 -0.737830 -0.479580 -0.490295 -0.674444 0.552030 -0.723892 -0.103509 -0.682104 0.549698 -0.683984 -0.479580 -0.416908 -0.722116 0.552030 -0.709057 -0.178808 -0.682104 0.618357 -0.622605 -0.479580 -0.338929 -0.761834 0.552030 -0.686663 -0.251451 -0.682104 0.679650 -0.555048 -0.479580 -0.258010 -0.792902 0.552030 -0.656528 -0.322033 -0.682104 0.734080 -0.480759 -0.479580 -0.173487 -0.815577 0.552030 -0.619160 -0.389068 -0.682104 0.780424 -0.401174 -0.479580 -0.087053 -0.829268 0.552030 -0.575341 -0.451350 -0.682104 0.817914 -0.317837 -0.479580 -0.000340 -0.833824 0.552030 -0.524868 -0.509164 -0.682104 0.846721 -0.230363 -0.479580 0.087053 -0.829268 0.552030 -0.468613 -0.561369 -0.682104 0.866201 -0.140352 -0.479580 0.173487 -0.815577 0.552030 -0.407197 -0.607392 -0.682104 0.876140 -0.048795 -0.479580 0.258010 -0.792902 0.552030 -0.341942 -0.646382 -0.682104 0.876472 0.042423 -0.479580 0.338929 -0.761834 0.552030 -0.272313 -0.678660 -0.682104 0.867199 0.134050 -0.479580 0.416908 -0.722116 0.552030 -0.199685 -0.703463 -0.682104 0.848373 0.224200 -0.479580 0.490295 -0.674444 0.552030 -0.125578 -0.720392 -0.682104 0.820515 0.311061 -0.479580 0.557661 -0.619901 0.552030 -0.049384 -0.729586 -0.682104 0.783394 0.395343 -0.479580 0.619560 -0.558040 0.552030 0.027354 -0.730743 -0.682104 0.737645 0.475271 -0.479580 0.674635 -0.490032 0.552030 0.103790 -0.723852 -0.682104 0.683771 0.549964 -0.479580 0.722278 -0.416627 0.552030 0.178375 -0.709166 -0.682104 0.622983 0.617977 -0.479580 0.761626 -0.339394 0.552030 0.251718 -0.686565 -0.682104 0.554783 0.679866 -0.479580 0.793003 -0.257701 0.552030 0.322289 -0.656402 -0.682104 0.480473 0.734267 -0.479580 0.815644 -0.173169 0.552030 0.388690 -0.619398 -0.682104 0.401651 0.780179 -0.479580 0.829215 -0.087560 0.552030 0.451467 -0.575249 -0.682104 0.317670 0.817978 -0.479580 0.833825 -0.000170 0.552030 0.509271 -0.524764 -0.682104 0.230191 0.846767 -0.479580 0.829250 0.087222 0.552030 0.561465 -0.468499 -0.682104 0.140176 0.866230 -0.479580 0.815542 0.173653 0.552030 0.607067 -0.407680 -0.682104 0.049493 0.876101 -0.479580 0.793108 0.257378 0.552030 0.646452 -0.341810 -0.682104 -0.042601 0.876463 -0.479580 0.761765 0.339084 0.552030 0.678715 -0.272175 -0.682104 -0.134226 0.867171 -0.479580 0.722031 0.417055 0.552030 0.703503 -0.199541 -0.682104 -0.224373 0.848328 -0.479580 0.674344 0.490432 0.552030 0.720417 -0.125431 -0.682104 -0.311228 0.820451 -0.479580 0.619787 0.557788 0.552030 0.729596 -0.049235 -0.682104 -0.395503 0.783314 -0.479580 0.557914 0.619674 0.552030 0.730738 0.027503 -0.682104 -0.475421 0.737548 -0.479580 0.489895 0.674734 0.552030 0.723934 0.103214 -0.682104 -0.549420 0.684208 -0.479580 0.417202 0.721946 0.552030 0.709130 0.178519 -0.682104 -0.618104 0.622857 -0.479580 0.339239 0.761696 0.552030 0.686514 0.251858 -0.682104 -0.679979 0.554645 -0.479580 0.257540 0.793055 0.552030 0.656337 0.322422 -0.682104 -0.734365 0.480324 -0.479580 0.173003 0.815680 0.552030 0.619319 0.388816 -0.682104 -0.780261 0.401492 -0.479580 0.087391 0.829232 0.552030 0.575157 0.451584 -0.682104 -0.818043 0.317504 -0.479580 0.000000 0.833825 0.552030 0.524660 0.509377 -0.682104 -0.846814 0.230018 -0.479580 -0.087391 0.829232 0.552030 0.468946 0.561092 -0.682104 -0.866118 0.140866 -0.479580 -0.173003 0.815680 0.552030 0.407557 0.607150 -0.682104 -0.876111 0.049314 -0.479580 -0.257540 0.793055 0.552030 0.341678 0.646521 -0.682104 -0.876455 -0.042780 -0.479580 -0.339239 0.761696 0.552030 0.272037 0.678771 -0.682104 -0.867144 -0.134403 -0.479580 -0.417202 0.721946 0.552030 0.200102 0.703344 -0.682104 -0.848506 -0.223697 -0.479580 -0.489895 0.674734 0.552030 0.125284 0.720443 -0.682104 -0.820388 -0.311395 -0.479580 -0.557914 0.619674 0.552030 0.049087 0.729606 -0.682104 -0.783233 -0.395662 -0.479580 -0.619787 0.557788 0.552030 -0.026921 0.730759 -0.682104 -0.737926 -0.474834 -0.479580 -0.674344 0.490432 0.552030 -0.103362 0.723913 -0.682104 -0.684096 -0.549559 -0.479580 -0.722031 0.417055 0.552030 -0.178663 0.709093 -0.682104 -0.622731 -0.618230 -0.479580 -0.761765 0.339084 0.552030 -0.251998 0.686463 -0.682104 -0.554506 -0.680092 -0.479580 -0.793108 0.257378 0.552030 -0.321899 0.656593 -0.682104 -0.480908 -0.733982 -0.479580 -0.815542 0.173653 0.552030 -0.388942 0.619240 -0.682104 -0.401333 -0.780343 -0.479580 -0.829250 0.087222 0.552030 0.675073 0.508082 0.534911 -0.398313 0.861309 -0.315426 -0.620986 -0.000126 0.783822 0.618104 0.576036 0.534911 -0.486391 0.814819 -0.315426 -0.617553 -0.065210 0.783822 0.554965 0.637090 0.534911 -0.568351 0.759923 -0.315426 -0.607446 -0.128967 0.783822 0.485137 0.691746 0.534911 -0.644866 0.696171 -0.315426 -0.590584 -0.191921 0.783822 0.409965 0.738782 0.534911 -0.714279 0.624750 -0.315426 -0.567217 -0.252762 0.783822 0.331055 0.777350 0.534911 -0.775276 0.547223 -0.315426 -0.537912 -0.310281 0.783822 0.247760 0.807765 0.534911 -0.828359 0.462955 -0.315426 -0.502430 -0.364949 0.783822 0.161736 0.829284 0.534911 -0.872318 0.373587 -0.315426 -0.461414 -0.415597 0.783822 0.073930 0.841668 0.534911 -0.906668 0.280105 -0.315426 -0.415315 -0.461668 0.783822 -0.013845 0.844795 0.534911 -0.930848 0.184467 -0.315426 -0.365144 -0.502288 0.783822 -0.102310 0.838691 0.534911 -0.945055 0.085892 -0.315426 -0.310490 -0.537792 0.783822 -0.189647 0.823349 0.534911 -0.948852 -0.013630 -0.315426 -0.252415 -0.567371 0.783822 -0.274096 0.799213 0.534911 -0.942311 -0.112059 -0.315426 -0.192151 -0.590510 0.783822 -0.356350 0.766084 0.534911 -0.925376 -0.210202 -0.315426 -0.129203 -0.607396 0.783822 -0.434678 0.724517 0.534911 -0.898249 -0.306031 -0.315426 -0.064832 -0.617592 0.783822 -0.507669 0.675383 0.534911 -0.861552 -0.397787 -0.315426 -0.000253 -0.620986 0.783822 -0.575658 0.618456 0.534911 -0.815116 -0.485893 -0.315426 0.064832 -0.617592 0.783822 -0.637306 0.554717 0.534911 -0.759702 -0.568647 -0.315426 0.129203 -0.607396 0.783822 -0.691935 0.484867 0.534911 -0.695920 -0.645137 -0.315426 0.192151 -0.590510 0.783822 -0.738531 0.410416 0.534911 -0.625186 -0.713897 -0.315426 0.252415 -0.567371 0.783822 -0.777479 0.330752 0.534911 -0.546922 -0.775489 -0.315426 0.310490 -0.537792 0.783822 -0.807862 0.247446 0.534911 -0.462633 -0.828539 -0.315426 0.365144 -0.502288 0.783822 -0.829185 0.162242 0.534911 -0.374120 -0.872090 -0.315426 0.415315 -0.461668 0.783822 -0.841622 0.074444 0.534911 -0.280658 -0.906497 -0.315426 0.461414 -0.415597 0.783822 -0.844789 -0.014174 0.534911 -0.184105 -0.930920 -0.315426 0.502430 -0.364949 0.783822 -0.838651 -0.102636 0.534911 -0.085524 -0.945088 -0.315426 0.537912 -0.310281 0.783822 -0.823465 -0.189144 0.534911 0.013050 -0.948860 -0.315426 0.567217 -0.252762 0.783822 -0.799106 -0.274407 0.534911 0.112425 -0.942267 -0.315426 0.590584 -0.191921 0.783822 -0.765945 -0.356648 0.534911 0.210562 -0.925294 -0.315426 0.607446 -0.128967 0.783822 -0.724782 -0.434236 0.534911 0.305482 -0.898436 -0.315426 0.617553 -0.065210 0.783822 -0.675280 -0.507807 0.534911 0.397962 -0.861471 -0.315426 0.620986 -0.000126 0.783822 -0.618339 -0.575784 0.534911 0.486059 -0.815017 -0.315426 0.617579 0.064958 0.783822 -0.554587 -0.637419 0.534911 0.568801 -0.759586 -0.315426 0.607370 0.129327 0.783822 -0.485418 -0.691548 0.534911 0.644583 -0.696433 -0.315426 0.590662 0.191681 0.783822 -0.410266 -0.738615 0.534911 0.714024 -0.625041 -0.315426 0.567320 0.252531 0.783822 -0.330594 -0.777546 0.534911 0.775600 -0.546764 -0.315426 0.537728 0.310599 0.783822 -0.247281 -0.807912 0.534911 0.828633 -0.462464 -0.315426 0.502214 0.365246 0.783822 -0.162073 -0.829218 0.534911 0.872166 -0.373943 -0.315426 0.461583 0.415409 0.783822 -0.074273 -0.841637 0.534911 0.906554 -0.280474 -0.315426 0.415503 0.461498 0.783822 0.014346 -0.844787 0.534911 0.930957 -0.183916 -0.315426 0.364846 0.502504 0.783822 0.101968 -0.838733 0.534911 0.945020 -0.086277 -0.315426 0.310709 0.537665 0.783822 0.189311 -0.823426 0.534911 0.948858 0.013243 -0.315426 0.252646 0.567268 0.783822 0.274570 -0.799050 0.534911 0.942244 0.112617 -0.315426 0.191801 0.590623 0.783822 0.356804 -0.765873 0.534911 0.925252 0.210751 -0.315426 0.128843 0.607473 0.783822 0.434383 -0.724694 0.534911 0.898374 0.305665 -0.315426 0.065084 0.617566 0.783822 0.507944 -0.675176 0.534911 0.861390 0.398138 -0.315426 0.000000 0.620986 0.783822 0.575910 -0.618222 0.534911 0.814918 0.486225 -0.315426 -0.065084 0.617566 0.783822 0.636977 -0.555094 0.534911 0.760039 0.568196 -0.315426 -0.128843 0.607473 0.783822 0.691647 -0.485278 0.534911 0.696302 0.644725 -0.315426 -0.191801 0.590623 0.783822 0.738698 -0.410115 0.534911 0.624895 0.714151 -0.315426 -0.252646 0.567268 0.783822 0.777613 -0.330436 0.534911 0.546606 0.775712 -0.315426 -0.310709 0.537665 0.783822 0.807715 -0.247924 0.534911 0.463124 0.828265 -0.315426 -0.364846 0.502504 0.783822 0.829251 -0.161905 0.534911 0.373765 0.872242 -0.315426 -0.415503 0.461498 0.783822 0.841653 -0.074101 0.534911 0.280289 0.906611 -0.315426 -0.461583 0.415409 0.783822 0.844798 0.013673 0.534911 0.184657 0.930810 -0.315426 -0.502214 0.365246 0.783822 0.838712 0.102139 0.534911 0.086084 0.945037 -0.315426 -0.537728 0.310599 0.783822 0.823388 0.189479 0.534911 -0.013436 0.948855 -0.315426 -0.567320 0.252531 0.783822 0.798994 0.274733 0.534911 -0.112809 0.942221 -0.315426 -0.590662 0.191681 0.783822 0.766157 0.356194 0.534911 -0.210014 0.925419 -0.315426 -0.607370 0.129327 0.783822 0.724605 0.434531 0.534911 -0.305848 0.898311 -0.315426 -0.617579 0.064958 0.783822 0.174254 -0.862977 0.474242 0.297278 0.505242 0.810158 -0.938755 -0.000191 0.344585 0.263740 -0.839962 0.474242 0.242688 0.533617 0.810158 -0.933565 -0.098578 0.344585 0.349514 -0.808044 0.474242 0.185980 0.555928 0.810158 -0.918287 -0.194962 0.344585 0.432278 -0.766962 0.474242 0.126691 0.572358 0.810158 -0.892796 -0.290131 0.344585 0.510280 -0.717432 0.474242 0.066006 0.582484 0.810158 -0.857472 -0.382105 0.344585 0.582002 -0.660582 0.474242 0.005180 0.586189 0.810158 -0.813171 -0.469056 0.344585 0.648030 -0.595946 0.474242 -0.056285 0.583503 0.810158 -0.759532 -0.551699 0.344585 0.706920 -0.524746 0.474242 -0.117130 0.574391 0.810158 -0.697527 -0.628265 0.344585 0.758024 -0.447766 0.474242 -0.176686 0.558951 0.810158 -0.627839 -0.697911 0.344585 0.800412 -0.366654 0.474242 -0.233757 0.537589 0.810158 -0.551995 -0.759318 0.344585 0.834432 -0.280745 0.474242 -0.288813 0.510129 0.810158 -0.469373 -0.812989 0.344585 0.859260 -0.191745 0.474242 -0.340687 0.477049 0.810158 -0.381581 -0.857705 0.344585 0.874523 -0.101507 0.474242 -0.388370 0.439104 0.810158 -0.290478 -0.892683 0.344585 0.880345 -0.009291 0.474242 -0.432253 0.395982 0.810158 -0.195319 -0.918211 0.344585 0.876471 0.083026 0.474242 -0.471374 0.348498 0.810158 -0.098008 -0.933625 0.344585 0.863084 0.173726 0.474242 -0.505061 0.297587 0.810158 -0.000382 -0.938755 0.344585 0.840123 0.263227 0.474242 -0.533468 0.243014 0.810158 0.098008 -0.933625 0.344585 0.807908 0.349828 0.474242 -0.556000 0.185764 0.810158 0.195319 -0.918211 0.344585 0.766794 0.432576 0.474242 -0.572407 0.126468 0.810158 0.290478 -0.892683 0.344585 0.717744 0.509842 0.474242 -0.582443 0.066362 0.810158 0.381581 -0.857705 0.344585 0.660356 0.582258 0.474242 -0.586191 0.004952 0.810158 0.469373 -0.812989 0.344585 0.595694 0.648262 0.474242 -0.583481 -0.056512 0.810158 0.551995 -0.759318 0.344585 0.525178 0.706600 0.474242 -0.574462 -0.116780 0.810158 0.627839 -0.697911 0.344585 0.448229 0.757750 0.474242 -0.559059 -0.176344 0.810158 0.697527 -0.628265 0.344585 0.366342 0.800555 0.474242 -0.537498 -0.233966 0.810158 0.759532 -0.551699 0.344585 0.280421 0.834541 0.474242 -0.510016 -0.289011 0.810158 0.813171 -0.469056 0.344585 0.192270 0.859143 0.474242 -0.477258 -0.340396 0.810158 0.857472 -0.382105 0.344585 0.101167 0.874563 0.474242 -0.438953 -0.388541 0.810158 0.892796 -0.290131 0.344585 0.008949 0.880349 0.474242 -0.395814 -0.432407 0.810158 0.918287 -0.194962 0.344585 -0.082491 0.876521 0.474242 -0.348786 -0.471161 0.810158 0.933565 -0.098578 0.344585 -0.173902 0.863048 0.474242 -0.297484 -0.505121 0.810158 0.938755 -0.000191 0.344585 -0.263398 0.840069 0.474242 -0.242905 -0.533518 0.810158 0.933605 0.098198 0.344585 -0.349993 0.807836 0.474242 -0.185651 -0.556038 0.810158 0.918171 0.195506 0.344585 -0.431965 0.767138 0.474242 -0.126924 -0.572306 0.810158 0.892914 0.289767 0.344585 -0.509988 0.717640 0.474242 -0.066243 -0.582457 0.810158 0.857627 0.381755 0.344585 -0.582393 0.660237 0.474242 -0.004833 -0.586192 0.810158 0.812893 0.469538 0.344585 -0.648383 0.595562 0.474242 0.056631 -0.583470 0.810158 0.759205 0.552149 0.344585 -0.706706 0.525034 0.474242 0.116896 -0.574438 0.810158 0.697783 0.627981 0.344585 -0.757842 0.448074 0.474242 0.176458 -0.559023 0.810158 0.628123 0.697655 0.344585 -0.800629 0.366179 0.474242 0.234076 -0.537450 0.810158 0.551545 0.759645 0.344585 -0.834317 0.281085 0.474242 0.288605 -0.510246 0.810158 0.469704 0.812797 0.344585 -0.859182 0.192095 0.474242 0.340493 -0.477188 0.810158 0.381930 0.857549 0.344585 -0.874583 0.100988 0.474242 0.388631 -0.438874 0.810158 0.289949 0.892855 0.344585 -0.880351 0.008770 0.474242 0.432487 -0.395726 0.810158 0.194775 0.918327 0.344585 -0.876505 -0.082669 0.474242 0.471232 -0.348690 0.810158 0.098388 0.933585 0.344585 -0.863013 -0.174078 0.474242 0.505182 -0.297381 0.810158 0.000000 0.938755 0.344585 -0.840015 -0.263569 0.474242 0.533567 -0.242797 0.810158 -0.098388 0.933585 0.344585 -0.808115 -0.349349 0.474242 0.555890 -0.186094 0.810158 -0.194775 0.918327 0.344585 -0.767050 -0.432121 0.474242 0.572332 -0.126808 0.810158 -0.289949 0.892855 0.344585 -0.717536 -0.510134 0.474242 0.582470 -0.066125 0.810158 -0.381930 0.857549 0.344585 -0.660118 -0.582527 0.474242 0.586193 -0.004713 0.810158 -0.469704 0.812797 0.344585 -0.596078 -0.647908 0.474242 0.583515 0.056166 0.810158 -0.551545 0.759645 0.344585 -0.524890 -0.706813 0.474242 0.574414 0.117013 0.810158 -0.628123 0.697655 0.344585 -0.447920 -0.757933 0.474242 0.558987 0.176572 0.810158 -0.697783 0.627981 0.344585 -0.366817 -0.800337 0.474242 0.537636 0.233648 0.810158 -0.759205 0.552149 0.344585 -0.280915 -0.834375 0.474242 0.510188 0.288709 0.810158 -0.812893 0.469538 0.344585 -0.191920 -0.859221 0.474242 0.477119 0.340590 0.810158 -0.857627 0.381755 0.344585 -0.100810 -0.874604 0.474242 0.438795 0.388720 0.810158 -0.892914 0.289767 0.344585 -0.009471 -0.880344 0.474242 0.396070 0.432172 0.810158 -0.918171 0.195506 0.344585 0.082848 -0.876488 0.474242 0.348594 0.471303 0.810158 -0.933605 0.098198 0.344585 0.406715 0.618555 -0.672289 0.320366 -0.785742 -0.529127 -0.855540 -0.000174 -0.517737 0.339646 0.657775 -0.672289 0.400953 -0.747838 -0.529127 -0.850810 -0.089840 -0.517737 0.269526 0.689480 -0.672289 0.476421 -0.702173 -0.529127 -0.836886 -0.177679 -0.517737 0.195779 0.713931 -0.672289 0.547390 -0.648374 -0.529127 -0.813655 -0.264412 -0.517737 0.119876 0.730518 -0.672289 0.612330 -0.587432 -0.529127 -0.781462 -0.348233 -0.517737 0.043391 0.739016 -0.672289 0.670004 -0.520691 -0.529127 -0.741088 -0.427477 -0.517737 -0.034302 0.739493 -0.672289 0.720886 -0.447602 -0.529127 -0.692204 -0.502794 -0.517737 -0.111617 0.731826 -0.672289 0.763828 -0.369583 -0.529127 -0.635695 -0.572573 -0.517737 -0.187703 0.716097 -0.672289 0.798356 -0.287493 -0.529127 -0.572185 -0.636045 -0.517737 -0.261029 0.692742 -0.672289 0.823888 -0.203060 -0.529127 -0.503063 -0.692008 -0.517737 -0.332196 0.661569 -0.672289 0.840632 -0.115592 -0.529127 -0.427765 -0.740922 -0.517737 -0.399703 0.623109 -0.672289 0.848118 -0.026851 -0.529127 -0.347756 -0.781674 -0.517737 -0.462230 0.578248 -0.672289 0.846323 0.061339 -0.529127 -0.264729 -0.813552 -0.517737 -0.520289 0.526618 -0.672289 0.835233 0.149702 -0.529127 -0.178005 -0.836817 -0.517737 -0.572617 0.469188 -0.672289 0.814943 0.236416 -0.529127 -0.089320 -0.850864 -0.517737 -0.618306 0.407093 -0.672289 0.785937 0.319886 -0.529127 -0.000348 -0.855540 -0.517737 -0.657567 0.340048 -0.672289 0.748083 0.400496 -0.529127 0.089320 -0.850864 -0.517737 -0.689585 0.269258 -0.672289 0.701988 0.476694 -0.529127 0.178005 -0.836817 -0.517737 -0.714007 0.195501 -0.672289 0.648161 0.547642 -0.529127 0.264729 -0.813552 -0.517737 -0.730445 0.120322 -0.672289 0.587806 0.611971 -0.529127 0.347756 -0.781674 -0.517737 -0.739033 0.043104 -0.672289 0.520430 0.670207 -0.529127 0.427765 -0.740922 -0.517737 -0.739480 -0.034590 -0.672289 0.447321 0.721060 -0.529127 0.503063 -0.692008 -0.517737 -0.731894 -0.111170 -0.672289 0.370049 0.763602 -0.529127 0.572185 -0.636045 -0.517737 -0.716211 -0.187266 -0.672289 0.287980 0.798180 -0.529127 0.635695 -0.572573 -0.517737 -0.692640 -0.261298 -0.672289 0.202739 0.823967 -0.529127 0.692204 -0.502794 -0.517737 -0.661440 -0.332453 -0.672289 0.115265 0.840677 -0.529127 0.741088 -0.427477 -0.517737 -0.623353 -0.399322 -0.672289 0.027369 0.848101 -0.529127 0.781462 -0.348233 -0.517737 -0.578068 -0.462455 -0.672289 -0.061668 0.846299 -0.529127 0.813655 -0.264412 -0.517737 -0.526416 -0.520494 -0.672289 -0.150027 0.835174 -0.529127 0.836886 -0.177679 -0.517737 -0.469538 -0.572330 -0.672289 -0.235918 0.815087 -0.529127 0.850810 -0.089840 -0.517737 -0.406967 -0.618389 -0.672289 -0.320046 0.785872 -0.529127 0.855540 -0.000174 -0.517737 -0.339914 -0.657636 -0.672289 -0.400648 0.748001 -0.529127 0.850846 0.089493 -0.517737 -0.269117 -0.689640 -0.672289 -0.476837 0.701891 -0.529127 0.836781 0.178175 -0.517737 -0.196070 -0.713851 -0.672289 -0.547126 0.648597 -0.529127 0.813763 0.264081 -0.517737 -0.120173 -0.730469 -0.672289 -0.612090 0.587682 -0.529127 0.781603 0.347915 -0.517737 -0.042953 -0.739041 -0.672289 -0.670313 0.520294 -0.529127 0.740835 0.427916 -0.517737 0.034740 -0.739473 -0.672289 -0.721151 0.447175 -0.529127 0.691906 0.503204 -0.517737 0.111319 -0.731871 -0.672289 -0.763677 0.369894 -0.529127 0.635929 0.572314 -0.517737 0.187411 -0.716173 -0.672289 -0.798239 0.287818 -0.529127 0.572444 0.635812 -0.517737 0.261439 -0.692587 -0.672289 -0.824008 0.202572 -0.529127 0.502653 0.692306 -0.517737 0.331926 -0.661704 -0.672289 -0.840585 0.115935 -0.529127 0.428067 0.740748 -0.517737 0.399449 -0.623272 -0.672289 -0.848107 0.027197 -0.529127 0.348074 0.781532 -0.517737 0.462573 -0.577974 -0.672289 -0.846286 -0.061841 -0.529127 0.264247 0.813709 -0.517737 0.520601 -0.526310 -0.672289 -0.835144 -0.150197 -0.529127 0.177509 0.836922 -0.517737 0.572426 -0.469421 -0.672289 -0.815039 -0.236084 -0.529127 0.089667 0.850828 -0.517737 0.618472 -0.406841 -0.672289 -0.785807 -0.320206 -0.529127 0.000000 0.855540 -0.517737 0.657705 -0.339780 -0.672289 -0.747919 -0.400800 -0.529127 -0.089667 0.850828 -0.517737 0.689425 -0.269666 -0.672289 -0.702270 -0.476278 -0.529127 -0.177509 0.836922 -0.517737 0.713891 -0.195925 -0.672289 -0.648485 -0.547258 -0.529127 -0.264247 0.813709 -0.517737 0.730494 -0.120025 -0.672289 -0.587557 -0.612210 -0.529127 -0.348074 0.781532 -0.517737 0.739050 -0.042803 -0.672289 -0.520157 -0.670419 -0.529127 -0.428067 0.740748 -0.517737 0.739500 0.034151 -0.672289 -0.447749 -0.720795 -0.529127 -0.502653 0.692306 -0.517737 0.731848 0.111468 -0.672289 -0.369738 -0.763753 -0.529127 -0.572444 0.635812 -0.517737 0.716135 0.187557 -0.672289 -0.287655 -0.798297 -0.529127 -0.635929 0.572314 -0.517737 0.692795 0.260888 -0.672289 -0.203228 -0.823846 -0.529127 -0.691906 0.503204 -0.517737 0.661636 0.332061 -0.672289 -0.115763 -0.840609 -0.529127 -0.740835 0.427916 -0.517737 0.623190 0.399576 -0.672289 -0.027024 -0.848112 -0.529127 -0.781603 0.347915 -0.517737 0.577880 0.462690 -0.672289 0.062013 -0.846273 -0.529127 -0.813763 0.264081 -0.517737 0.526724 0.520182 -0.672289 0.149532 -0.835263 -0.529127 -0.836781 0.178175 -0.517737 0.469304 0.572521 -0.672289 0.236250 -0.814991 -0.529127 -0.850846 0.089493 -0.517737 0.116660 -0.973735 -0.195525 -0.498261 -0.227682 0.836598 -0.859143 -0.000175 -0.511736 0.218072 -0.956146 -0.195525 -0.471654 -0.278650 0.836598 -0.854393 -0.090218 -0.511736 0.316153 -0.928341 -0.195525 -0.440178 -0.326108 0.836598 -0.840411 -0.178428 -0.511736 0.411709 -0.890093 -0.195525 -0.403576 -0.370446 0.836598 -0.817082 -0.265526 -0.511736 0.502730 -0.842041 -0.195525 -0.362527 -0.410703 0.836598 -0.784753 -0.349700 -0.511736 0.587428 -0.785302 -0.195525 -0.317932 -0.446119 0.836598 -0.744209 -0.429278 -0.511736 0.666498 -0.719410 -0.195525 -0.269425 -0.476984 0.836598 -0.695119 -0.504912 -0.511736 0.738226 -0.645594 -0.195525 -0.217950 -0.502594 0.836598 -0.638373 -0.574984 -0.511736 0.801824 -0.564667 -0.195525 -0.164074 -0.522669 0.836598 -0.574594 -0.638724 -0.511736 0.856111 -0.478377 -0.195525 -0.108928 -0.536878 0.836598 -0.505182 -0.694923 -0.511736 0.901533 -0.386016 -0.195525 -0.052059 -0.545337 0.836598 -0.429567 -0.744042 -0.511736 0.937025 -0.289403 -0.195525 0.005383 -0.547790 0.836598 -0.349220 -0.784966 -0.511736 0.962006 -0.190564 -0.195525 0.062221 -0.544272 0.836598 -0.265844 -0.816978 -0.511736 0.976680 -0.088689 -0.195525 0.118922 -0.534753 0.836598 -0.178755 -0.840341 -0.511736 0.980597 0.014162 -0.195525 0.174313 -0.519344 0.836598 -0.089696 -0.854448 -0.511736 0.973807 0.116065 -0.195525 0.227378 -0.498400 0.836598 -0.000350 -0.859143 -0.511736 0.956279 0.217487 -0.195525 0.278362 -0.471824 0.836598 0.089696 -0.854448 -0.511736 0.928218 0.316514 -0.195525 0.326279 -0.440051 0.836598 0.178755 -0.840341 -0.511736 0.889933 0.412055 -0.195525 0.370603 -0.403431 0.836598 0.265844 -0.816978 -0.511736 0.842348 0.502215 -0.195525 0.410481 -0.362778 0.836598 0.349220 -0.784966 -0.511736 0.785073 0.587733 -0.195525 0.446243 -0.317759 0.836598 0.429567 -0.744042 -0.511736 0.719151 0.666778 -0.195525 0.477088 -0.269240 0.836598 0.505182 -0.694923 -0.511736 0.646045 0.737832 -0.195525 0.502461 -0.218257 0.836598 0.574594 -0.638724 -0.511736 0.565157 0.801479 -0.195525 0.522569 -0.164393 0.836598 0.638373 -0.574984 -0.511736 0.478044 0.856297 -0.195525 0.536920 -0.108719 0.836598 0.695119 -0.504912 -0.511736 0.385665 0.901683 -0.195525 0.545358 -0.051847 0.836598 0.744209 -0.429278 -0.511736 0.289975 0.936848 -0.195525 0.547793 0.005048 0.836598 0.784753 -0.349700 -0.511736 0.190190 0.962080 -0.195525 0.544247 0.062433 0.836598 0.817082 -0.265526 -0.511736 0.088309 0.976715 -0.195525 0.534707 0.119130 0.836598 0.840411 -0.178428 -0.511736 -0.013563 0.980605 -0.195525 0.519450 0.173996 0.836598 0.854393 -0.090218 -0.511736 -0.116263 0.973783 -0.195525 0.498354 0.227479 0.836598 0.859143 -0.000175 -0.511736 -0.217682 0.956235 -0.195525 0.471767 0.278458 0.836598 0.854430 0.089870 -0.511736 -0.316703 0.928154 -0.195525 0.439985 0.326369 0.836598 0.840305 0.178926 -0.511736 -0.411346 0.890261 -0.195525 0.403726 0.370281 0.836598 0.817190 0.265193 -0.511736 -0.502387 0.842246 -0.195525 0.362695 0.410555 0.836598 0.784895 0.349380 -0.511736 -0.587893 0.784953 -0.195525 0.317668 0.446307 0.836598 0.743955 0.429718 -0.511736 -0.666924 0.719015 -0.195525 0.269142 0.477143 0.836598 0.694820 0.505324 -0.511736 -0.737963 0.645895 -0.195525 0.218155 0.502505 0.836598 0.638607 0.574724 -0.511736 -0.801594 0.564994 -0.195525 0.164287 0.522602 0.836598 0.574854 0.638490 -0.511736 -0.856394 0.477869 -0.195525 0.108610 0.536942 0.836598 0.504770 0.695222 -0.511736 -0.901376 0.386383 -0.195525 0.052282 0.545316 0.836598 0.429870 0.743867 -0.511736 -0.936907 0.289784 -0.195525 -0.005159 0.547792 0.836598 0.349540 0.784824 -0.511736 -0.962119 0.189994 -0.195525 -0.062544 0.544235 0.836598 0.265360 0.817136 -0.511736 -0.976733 0.088110 -0.195525 -0.119239 0.534682 0.836598 0.178257 0.840447 -0.511736 -0.980602 -0.013763 -0.195525 -0.174101 0.519415 0.836598 0.090044 0.854411 -0.511736 -0.973759 -0.116461 -0.195525 -0.227581 0.498307 0.836598 0.000000 0.859143 -0.511736 -0.956190 -0.217877 -0.195525 -0.278554 0.471711 0.836598 -0.090044 0.854411 -0.511736 -0.928405 -0.315964 -0.195525 -0.326018 0.440245 0.836598 -0.178257 0.840447 -0.511736 -0.890177 -0.411528 -0.195525 -0.370363 0.403651 0.836598 -0.265360 0.817136 -0.511736 -0.842143 -0.502558 -0.195525 -0.410629 0.362611 0.836598 -0.349540 0.784824 -0.511736 -0.784834 -0.588053 -0.195525 -0.446372 0.317577 0.836598 -0.429870 0.743867 -0.511736 -0.719546 -0.666351 -0.195525 -0.476929 0.269522 0.836598 -0.504770 0.695222 -0.511736 -0.645745 -0.738095 -0.195525 -0.502550 0.218052 0.836598 -0.574854 0.638490 -0.511736 -0.564830 -0.801709 -0.195525 -0.522636 0.164181 0.836598 -0.638607 0.574724 -0.511736 -0.478551 -0.856013 -0.195525 -0.536856 0.109037 0.836598 -0.694820 0.505324 -0.511736 -0.386199 -0.901455 -0.195525 -0.545327 0.052170 0.836598 -0.743955 0.429718 -0.511736 -0.289593 -0.936966 -0.195525 -0.547791 -0.005271 0.836598 -0.784895 0.349380 -0.511736 -0.189798 -0.962157 -0.195525 -0.544222 -0.062654 0.836598 -0.817190 0.265193 -0.511736 -0.088888 -0.976662 -0.195525 -0.534777 -0.118813 0.836598 -0.840305 0.178926 -0.511736 0.013963 -0.980599 -0.195525 -0.519379 -0.174207 0.836598 -0.854430 0.089870 -0.511736 0.233904 -0.905303 0.354565 0.498183 0.424767 0.755901 -0.834927 -0.000170 0.550361 0.327498 -0.875802 0.354565 0.450920 0.474641 0.755901 -0.830311 -0.087675 0.550361 0.416647 -0.837071 0.354565 0.399210 0.518888 0.755901 -0.816723 -0.173398 0.550361 0.502084 -0.788794 0.354565 0.342629 0.557870 0.755901 -0.794051 -0.258042 0.550361 0.581990 -0.731827 0.354565 0.282273 0.590707 0.755901 -0.762633 -0.339843 0.550361 0.654818 -0.667455 0.354565 0.219425 0.616819 0.755901 -0.723233 -0.417178 0.550361 0.721166 -0.595150 0.354565 0.153569 0.636419 0.755901 -0.675526 -0.490680 0.550361 0.779570 -0.516289 0.354565 0.086022 0.649010 0.755901 -0.620379 -0.558778 0.550361 0.829388 -0.431741 0.354565 0.017528 0.654451 0.755901 -0.558399 -0.620720 0.550361 0.869726 -0.343307 0.354565 -0.050507 0.652734 0.755901 -0.490943 -0.675336 0.550361 0.900918 -0.250263 0.354565 -0.118641 0.643846 0.755901 -0.417459 -0.723071 0.550361 0.922185 -0.154462 0.354565 -0.185467 0.627866 0.755901 -0.339377 -0.762841 0.550361 0.933237 -0.057893 0.354565 -0.249645 0.605219 0.755901 -0.258351 -0.793951 0.550361 0.934165 0.040236 0.354565 -0.311702 0.575722 0.755901 -0.173716 -0.816655 0.550361 0.924803 0.137922 0.354565 -0.370325 0.539882 0.755901 -0.087168 -0.830364 0.550361 0.905445 0.233351 0.354565 -0.424463 0.498442 0.755901 -0.000340 -0.834927 0.550361 0.876002 0.326963 0.354565 -0.474365 0.451210 0.755901 0.087168 -0.830364 0.550361 0.836909 0.416973 0.354565 -0.519043 0.399008 0.755901 0.173716 -0.816655 0.550361 0.788598 0.502391 0.354565 -0.558003 0.342412 0.755901 0.258351 -0.793951 0.550361 0.732183 0.581543 0.354565 -0.590535 0.282634 0.755901 0.339377 -0.762841 0.550361 0.667201 0.655078 0.354565 -0.616905 0.219185 0.755901 0.417459 -0.723071 0.550361 0.594869 0.721398 0.354565 -0.636479 0.153322 0.755901 0.490943 -0.675336 0.550361 0.516765 0.779255 0.354565 -0.648957 0.086419 0.755901 0.558399 -0.620720 0.550361 0.432247 0.829124 0.354565 -0.654440 0.017927 0.755901 0.620379 -0.558778 0.550361 0.342969 0.869860 0.354565 -0.652715 -0.050761 0.755901 0.675526 -0.490680 0.550361 0.249912 0.901015 0.354565 -0.643800 -0.118891 0.755901 0.723233 -0.417178 0.550361 0.155025 0.922091 0.354565 -0.627979 -0.185083 0.755901 0.762633 -0.339843 0.550361 0.057530 0.933260 0.354565 -0.605122 -0.249881 0.755901 0.794051 -0.258042 0.550361 -0.040599 0.934150 0.354565 -0.575600 -0.311925 0.755901 0.816723 -0.173398 0.550361 -0.137357 0.924888 0.354565 -0.540109 -0.369995 0.755901 0.830311 -0.087675 0.550361 -0.233535 0.905398 0.354565 -0.498356 -0.424564 0.755901 0.834927 -0.000170 0.550361 -0.327141 0.875935 0.354565 -0.451114 -0.474457 0.755901 0.830346 0.087337 0.550361 -0.417144 0.836824 0.354565 -0.398903 -0.519124 0.755901 0.816620 0.173883 0.550361 -0.501763 0.788998 0.354565 -0.342856 -0.557730 0.755901 0.794156 0.257718 0.550361 -0.581692 0.732064 0.354565 -0.282513 -0.590592 0.755901 0.762772 0.339532 0.550361 -0.655214 0.667067 0.354565 -0.219059 -0.616949 0.755901 0.722985 0.417606 0.550361 -0.721519 0.594722 0.354565 -0.153192 -0.636510 0.755901 0.675236 0.491080 0.550361 -0.779360 0.516606 0.354565 -0.086286 -0.648974 0.755901 0.620607 0.558525 0.550361 -0.829212 0.432078 0.354565 -0.017794 -0.654444 0.755901 0.558651 0.620493 0.550361 -0.869930 0.342792 0.354565 0.050894 -0.652704 0.755901 0.490543 0.675626 0.550361 -0.900815 0.250630 0.354565 0.118378 -0.643894 0.755901 0.417754 0.722900 0.550361 -0.922122 0.154837 0.354565 0.185211 -0.627941 0.755901 0.339688 0.762703 0.550361 -0.933272 0.057340 0.354565 0.250004 -0.605071 0.755901 0.257880 0.794104 0.550361 -0.934141 -0.040790 0.354565 0.312043 -0.575537 0.755901 0.173232 0.816758 0.550361 -0.924860 -0.137545 0.354565 0.370105 -0.540033 0.755901 0.087506 0.830329 0.550361 -0.905350 -0.233719 0.354565 0.424666 -0.498269 0.755901 0.000000 0.834927 0.550361 -0.875869 -0.327319 0.354565 0.474549 -0.451017 0.755901 -0.087506 0.830329 0.550361 -0.837156 -0.416477 0.354565 0.518806 -0.399316 0.755901 -0.173232 0.816758 0.550361 -0.788896 -0.501923 0.354565 0.557800 -0.342742 0.755901 -0.257880 0.794104 0.550361 -0.731946 -0.581841 0.354565 0.590650 -0.282393 0.755901 -0.339688 0.762703 0.550361 -0.666934 -0.655350 0.354565 0.616994 -0.218934 0.755901 -0.417754 0.722900 0.550361 -0.595297 -0.721045 0.354565 0.636388 -0.153699 0.755901 -0.490543 0.675626 0.550361 -0.516447 -0.779465 0.354565 0.648992 -0.086154 0.755901 -0.558651 0.620493 0.550361 -0.431910 -0.829300 0.354565 0.654447 -0.017661 0.755901 -0.620607 0.558525 0.550361 -0.343484 -0.869657 0.354565 0.652745 0.050375 0.755901 -0.675236 0.491080 0.550361 -0.250446 -0.900867 0.354565 0.643870 0.118509 0.755901 -0.722985 0.417606 0.550361 -0.154650 -0.922154 0.354565 0.627903 0.185339 0.755901 -0.762772 0.339532 0.550361 -0.057150 -0.933283 0.354565 0.605020 0.250127 0.755901 -0.794156 0.257718 0.550361 0.040046 -0.934174 0.354565 0.575785 0.311584 0.755901 -0.816620 0.173883 0.550361 0.137733 -0.924832 0.354565 0.539958 0.370215 0.755901 -0.830346 0.087337 0.550361 -0.094874 0.687303 -0.720148 -0.089495 -0.726371 -0.681452 -0.991458 -0.000202 0.130424 -0.166385 0.673574 -0.720148 -0.012873 -0.731750 -0.681452 -0.985977 -0.104113 0.130424 -0.235412 0.652662 -0.720148 0.063161 -0.729133 -0.681452 -0.969841 -0.205907 0.130424 -0.302519 0.624395 -0.720148 0.139231 -0.718497 -0.681452 -0.942919 -0.306419 0.130424 -0.366294 0.589250 -0.720148 0.213768 -0.699948 -0.681452 -0.905611 -0.403556 0.130424 -0.425486 0.548040 -0.720148 0.285277 -0.673974 -0.681452 -0.858824 -0.495390 0.130424 -0.480582 0.500428 -0.720148 0.354343 -0.640363 -0.681452 -0.802174 -0.582672 0.130424 -0.530383 0.447303 -0.720148 0.419506 -0.599699 -0.681452 -0.736687 -0.663537 0.130424 -0.574343 0.389252 -0.720148 0.480048 -0.552429 -0.681452 -0.663087 -0.737093 0.130424 -0.611649 0.327525 -0.720148 0.534804 -0.499609 -0.681452 -0.582984 -0.801947 0.130424 -0.642607 0.261616 -0.720148 0.584221 -0.440806 -0.681452 -0.495724 -0.858631 0.130424 -0.666487 0.192825 -0.720148 0.627203 -0.377148 -0.681452 -0.403003 -0.905858 0.130424 -0.682904 0.122593 -0.720148 0.662967 -0.309998 -0.681452 -0.306786 -0.942800 0.130424 -0.691991 0.050345 -0.720148 0.691805 -0.238807 -0.681452 -0.206284 -0.969761 0.130424 -0.693457 -0.022458 -0.720148 0.713024 -0.164986 -0.681452 -0.103510 -0.986040 0.130424 -0.687361 -0.094454 -0.720148 0.726316 -0.089939 -0.681452 -0.000404 -0.991458 0.130424 -0.673676 -0.165974 -0.720148 0.731742 -0.013320 -0.681452 0.103510 -0.986040 0.130424 -0.652570 -0.235666 -0.720148 0.729108 0.063445 -0.681452 0.206284 -0.969761 0.130424 -0.624277 -0.302762 -0.720148 0.718443 0.139511 -0.681452 0.306786 -0.942800 0.130424 -0.589474 -0.365934 -0.720148 0.700078 0.213341 -0.681452 0.403003 -0.905858 0.130424 -0.547875 -0.425700 -0.720148 0.673863 0.285539 -0.681452 0.495724 -0.858631 0.130424 -0.500241 -0.480776 -0.720148 0.640225 0.354592 -0.681452 0.582984 -0.801947 0.130424 -0.447627 -0.530110 -0.720148 0.599955 0.419140 -0.681452 0.663087 -0.737093 0.130424 -0.389603 -0.574105 -0.720148 0.552722 0.479711 -0.681452 0.736687 -0.663537 0.130424 -0.327287 -0.611776 -0.720148 0.499401 0.534998 -0.681452 0.802174 -0.582672 0.130424 -0.261366 -0.642709 -0.720148 0.440579 0.584392 -0.681452 0.858824 -0.495390 0.130424 -0.193232 -0.666369 -0.720148 0.377531 0.626972 -0.681452 0.905611 -0.403556 0.130424 -0.122328 -0.682951 -0.720148 0.309740 0.663087 -0.681452 0.942919 -0.306419 0.130424 -0.050076 -0.692011 -0.720148 0.238538 0.691898 -0.681452 0.969841 -0.205907 0.130424 0.022034 -0.693470 -0.720148 0.165422 0.712923 -0.681452 0.985977 -0.104113 0.130424 0.094594 -0.687342 -0.720148 0.089791 0.726334 -0.681452 0.991458 -0.000202 0.130424 0.166111 -0.673642 -0.720148 0.013171 0.731745 -0.681452 0.986019 0.103711 0.130424 0.235799 -0.652523 -0.720148 -0.063593 0.729095 -0.681452 0.969719 0.206482 0.130424 0.302265 -0.624518 -0.720148 -0.138939 0.718554 -0.681452 0.943044 0.306035 0.130424 0.366054 -0.589399 -0.720148 -0.213483 0.700035 -0.681452 0.905776 0.403188 0.130424 0.425811 -0.547788 -0.720148 -0.285676 0.673805 -0.681452 0.858530 0.495899 0.130424 0.480878 -0.500143 -0.720148 -0.354722 0.640153 -0.681452 0.801828 0.583148 0.130424 0.530201 -0.447519 -0.720148 -0.419262 0.599869 -0.681452 0.736958 0.663237 0.130424 0.574184 -0.389486 -0.720148 -0.479823 0.552624 -0.681452 0.663387 0.736823 0.130424 0.611843 -0.327162 -0.720148 -0.535100 0.499292 -0.681452 0.582509 0.802292 0.130424 0.642500 -0.261877 -0.720148 -0.584041 0.441044 -0.681452 0.496074 0.858429 0.130424 0.666409 -0.193096 -0.720148 -0.627049 0.377403 -0.681452 0.403372 0.905693 0.130424 0.682976 -0.122189 -0.720148 -0.663150 0.309605 -0.681452 0.306227 0.942982 0.130424 0.692021 -0.049935 -0.720148 -0.691947 0.238397 -0.681452 0.205710 0.969883 0.130424 0.693466 0.022175 -0.720148 -0.712957 0.165276 -0.681452 0.103912 0.985998 0.130424 0.687322 0.094734 -0.720148 -0.726352 0.089643 -0.681452 0.000000 0.991458 0.130424 0.673608 0.166248 -0.720148 -0.731747 0.013022 -0.681452 -0.103912 0.985998 0.130424 0.652710 0.235279 -0.720148 -0.729145 -0.063013 -0.681452 -0.205710 0.969883 0.130424 0.624456 0.302392 -0.720148 -0.718526 -0.139085 -0.681452 -0.306227 0.942982 0.130424 0.589324 0.366174 -0.720148 -0.699991 -0.213626 -0.681452 -0.403372 0.905693 0.130424 0.547701 0.425923 -0.720148 -0.673747 -0.285813 -0.681452 -0.496074 0.858429 0.130424 0.500526 0.480480 -0.720148 -0.640435 -0.354212 -0.681452 -0.582509 0.802292 0.130424 0.447411 0.530292 -0.720148 -0.599784 -0.419384 -0.681452 -0.663387 0.736823 0.130424 0.389369 0.574263 -0.720148 -0.552526 -0.479936 -0.681452 -0.736958 0.663237 0.130424 0.327649 0.611582 -0.720148 -0.499718 -0.534702 -0.681452 -0.801828 0.583148 0.130424 0.261746 0.642554 -0.720148 -0.440925 -0.584131 -0.681452 -0.858530 0.495899 0.130424 0.192961 0.666448 -0.720148 -0.377275 -0.627126 -0.681452 -0.905776 0.403188 0.130424 0.122050 0.683001 -0.720148 -0.309470 -0.663213 -0.681452 -0.943044 0.306035 0.130424 0.050486 0.691981 -0.720148 -0.238948 -0.691757 -0.681452 -0.969719 0.206482 0.130424 -0.022317 0.693461 -0.720148 -0.165131 -0.712990 -0.681452 -0.986019 0.103711 0.130424 0.099967 0.566969 0.817651 -0.069049 0.823739 -0.562748 -0.992592 -0.000202 0.121495 0.039994 0.574323 0.817651 -0.155003 0.811966 -0.562748 -0.987104 -0.104232 0.121495 -0.019844 0.575372 0.817651 -0.238458 0.791487 -0.562748 -0.970950 -0.206142 0.121495 -0.080038 0.570123 0.817651 -0.320098 0.762136 -0.562748 -0.943997 -0.306770 0.121495 -0.139350 0.558595 0.817651 -0.398212 0.724390 -0.562748 -0.906647 -0.404018 0.121495 -0.196587 0.541110 0.817651 -0.471262 0.679137 -0.562748 -0.859806 -0.495956 0.121495 -0.252216 0.517527 0.817651 -0.539845 0.626005 -0.562748 -0.803091 -0.583339 0.121495 -0.305067 0.488242 0.817651 -0.602481 0.565978 -0.562748 -0.737530 -0.664296 0.121495 -0.354559 0.453580 0.817651 -0.658482 0.499716 -0.562748 -0.663845 -0.737935 0.121495 -0.399730 0.414322 0.817651 -0.706801 0.428658 -0.562748 -0.583651 -0.802864 0.121495 -0.440953 0.370145 0.817651 -0.747834 0.352219 -0.562748 -0.496291 -0.859613 0.121495 -0.477318 0.321892 0.817651 -0.780631 0.271901 -0.562748 -0.403464 -0.906893 0.121495 -0.508155 0.270601 0.817651 -0.804640 0.189392 -0.562748 -0.307137 -0.943878 0.121495 -0.533718 0.215852 0.817651 -0.820058 0.104017 -0.562748 -0.206520 -0.970870 0.121495 -0.553401 0.158726 0.817651 -0.826443 0.017496 -0.562748 -0.103629 -0.987168 0.121495 -0.566907 0.100313 0.817651 -0.823781 -0.068546 -0.562748 -0.000404 -0.992592 0.121495 -0.574299 0.040345 0.817651 -0.812060 -0.154507 -0.562748 0.103629 -0.987168 0.121495 -0.575364 -0.020068 0.817651 -0.791395 -0.238766 -0.562748 0.206520 -0.970870 0.121495 -0.570092 -0.080260 0.817651 -0.762012 -0.320394 -0.562748 0.307137 -0.943878 0.121495 -0.558680 -0.139009 0.817651 -0.724634 -0.397770 -0.562748 0.403464 -0.906893 0.121495 -0.541034 -0.196797 0.817651 -0.678954 -0.471526 -0.562748 0.496291 -0.859613 0.121495 -0.517428 -0.252417 0.817651 -0.625795 -0.540088 -0.562748 0.583651 -0.802864 0.121495 -0.488429 -0.304769 0.817651 -0.566346 -0.602135 -0.562748 0.663845 -0.737935 0.121495 -0.453797 -0.354281 0.817651 -0.500118 -0.658176 -0.562748 0.737530 -0.664296 0.121495 -0.414166 -0.399891 0.817651 -0.428382 -0.706967 -0.562748 0.803091 -0.583339 0.121495 -0.369974 -0.441097 0.817651 -0.351928 -0.747971 -0.562748 0.859806 -0.495956 0.121495 -0.322183 -0.477121 0.817651 -0.272378 -0.780465 -0.562748 0.906647 -0.404018 0.121495 -0.270403 -0.508261 0.817651 -0.189079 -0.804713 -0.562748 0.943997 -0.306770 0.121495 -0.215644 -0.533802 0.817651 -0.103698 -0.820098 -0.562748 0.970950 -0.206142 0.121495 -0.159064 -0.553304 0.817651 -0.018001 -0.826432 -0.562748 0.987104 -0.104232 0.121495 -0.100198 -0.566928 0.817651 0.068714 -0.823767 -0.562748 0.992592 -0.000202 0.121495 -0.040228 -0.574307 0.817651 0.154672 -0.812029 -0.562748 0.987146 0.103830 0.121495 0.020185 -0.575360 0.817651 0.238927 -0.791346 -0.562748 0.970828 0.206718 0.121495 0.079806 -0.570156 0.817651 0.319788 -0.762267 -0.562748 0.944122 0.306385 0.121495 0.139123 -0.558652 0.817651 0.397917 -0.724552 -0.562748 0.906811 0.403649 0.121495 0.196907 -0.540994 0.817651 0.471664 -0.678858 -0.562748 0.859512 0.496466 0.121495 0.252523 -0.517377 0.817651 0.540216 -0.625685 -0.562748 0.802745 0.583815 0.121495 0.304869 -0.488366 0.817651 0.602251 -0.566223 -0.562748 0.737800 0.663995 0.121495 0.354374 -0.453724 0.817651 0.658278 -0.499984 -0.562748 0.664145 0.737665 0.121495 0.399976 -0.414085 0.817651 0.707055 -0.428239 -0.562748 0.583175 0.803210 0.121495 0.440802 -0.370325 0.817651 0.747691 -0.352524 -0.562748 0.496641 0.859411 0.121495 0.477187 -0.322086 0.817651 0.780520 -0.272219 -0.562748 0.403833 0.906729 0.121495 0.508316 -0.270300 0.817651 0.804752 -0.188915 -0.562748 0.306577 0.944060 0.121495 0.533845 -0.215536 0.817651 0.820119 -0.103531 -0.562748 0.205945 0.970992 0.121495 0.553336 -0.158951 0.817651 0.826436 -0.017833 -0.562748 0.104031 0.987125 0.121495 0.566948 -0.100082 0.817651 0.823753 0.068882 -0.562748 0.000000 0.992592 0.121495 0.574315 -0.040111 0.817651 0.811997 0.154838 -0.562748 -0.104031 0.987125 0.121495 0.575376 0.019727 0.817651 0.791536 0.238296 -0.562748 -0.205945 0.970992 0.121495 0.570140 0.079922 0.817651 0.762201 0.319943 -0.562748 -0.306577 0.944060 0.121495 0.558623 0.139236 0.817651 0.724471 0.398065 -0.562748 -0.403833 0.906729 0.121495 0.540954 0.197017 0.817651 0.678761 0.471802 -0.562748 -0.496641 0.859411 0.121495 0.517578 0.252111 0.817651 0.626115 0.539717 -0.562748 -0.583175 0.803210 0.121495 0.488304 0.304968 0.817651 0.566100 0.602366 -0.562748 -0.664145 0.737665 0.121495 0.453652 0.354466 0.817651 0.499850 0.658380 -0.562748 -0.737800 0.663995 0.121495 0.414403 0.399646 0.817651 0.428801 0.706713 -0.562748 -0.802745 0.583815 0.121495 0.370235 0.440877 0.817651 0.352371 0.747763 -0.562748 -0.859512 0.496466 0.121495 0.321989 0.477252 0.817651 0.272060 0.780575 -0.562748 -0.906811 0.403649 0.121495 0.270196 0.508371 0.817651 0.188751 0.804790 -0.562748 -0.944122 0.306385 0.121495 0.215961 0.533674 0.817651 0.104184 0.820037 -0.562748 -0.970828 0.206718 0.121495 0.158839 0.553369 0.817651 0.017665 0.826440 -0.562748 -0.987146 0.103830 0.121495 -0.036461 -0.999184 -0.017395 0.902734 -0.040398 0.428299 -0.428652 -0.000087 0.903470 0.068462 -0.997502 -0.017395 0.901996 0.054438 0.428299 -0.426282 -0.045013 0.903470 0.171645 -0.985005 -0.017395 0.891471 0.147782 0.428299 -0.419306 -0.089023 0.903470 0.273935 -0.961591 -0.017395 0.871073 0.240401 0.428299 -0.407666 -0.132479 0.903470 0.373208 -0.927584 -0.017395 0.841080 0.330372 0.428299 -0.391536 -0.174476 0.903470 0.467487 -0.883829 -0.017395 0.802238 0.415901 0.428299 -0.371308 -0.214179 0.903470 0.557544 -0.829965 -0.017395 0.754231 0.497691 0.428299 -0.346816 -0.251915 0.903470 0.641459 -0.766960 -0.017395 0.697915 0.573999 0.428299 -0.318503 -0.286877 0.903470 0.718310 -0.695506 -0.017395 0.633912 0.643984 0.428299 -0.286682 -0.318678 0.903470 0.786631 -0.617179 -0.017395 0.563633 0.706313 0.428299 -0.252050 -0.346718 0.903470 0.846983 -0.531335 -0.017395 0.486503 0.761496 0.428299 -0.214324 -0.371225 0.903470 0.898006 -0.439639 -0.017395 0.404013 0.808291 0.428299 -0.174236 -0.391643 0.903470 0.938794 -0.344039 -0.017395 0.317919 0.845865 0.428299 -0.132637 -0.407615 0.903470 0.969682 -0.243752 -0.017395 0.227516 0.874527 0.428299 -0.089186 -0.419271 0.903470 0.989888 -0.140780 -0.017395 0.134606 0.893556 0.428299 -0.044752 -0.426309 0.903470 0.999161 -0.037071 -0.017395 0.040949 0.902709 0.428299 -0.000175 -0.428652 0.903470 0.997544 0.067852 -0.017395 -0.053887 0.902029 0.428299 0.044752 -0.426309 0.903470 0.984938 0.172028 -0.017395 -0.148129 0.891414 0.428299 0.089186 -0.419271 0.903470 0.961484 0.274310 -0.017395 -0.240740 0.870979 0.428299 0.132637 -0.407615 0.903470 0.927812 0.372642 -0.017395 -0.329858 0.841281 0.428299 0.174236 -0.391643 0.903470 0.883647 0.467831 -0.017395 -0.416213 0.802077 0.428299 0.214324 -0.371225 0.903470 0.829748 0.557867 -0.017395 -0.497984 0.754037 0.428299 0.252050 -0.346718 0.903470 0.767351 0.640991 -0.017395 -0.573572 0.698266 0.428299 0.286682 -0.318678 0.903470 0.695945 0.717885 -0.017395 -0.643597 0.634306 0.428299 0.318503 -0.286877 0.903470 0.616872 0.786871 -0.017395 -0.706532 0.563359 0.428299 0.346816 -0.251915 0.903470 0.531006 0.847190 -0.017395 -0.761685 0.486207 0.428299 0.371308 -0.214179 0.903470 0.440187 0.897737 -0.017395 -0.808044 0.404507 0.428299 0.391536 -0.174476 0.903470 0.343674 0.938928 -0.017395 -0.845989 0.317590 0.428299 0.407666 -0.132479 0.903470 0.243375 0.969776 -0.017395 -0.874615 0.227176 0.428299 0.419306 -0.089023 0.903470 0.141385 0.989802 -0.017395 -0.893473 0.135152 0.428299 0.426282 -0.045013 0.903470 0.036868 0.999169 -0.017395 -0.902717 0.040765 0.428299 0.428652 -0.000087 0.903470 -0.068056 0.997530 -0.017395 -0.902018 -0.054070 0.428299 0.426300 0.044839 0.903470 -0.172229 0.984903 -0.017395 -0.891383 -0.148311 0.428299 0.419253 0.089271 0.903470 -0.273544 0.961702 -0.017395 -0.871171 -0.240046 0.428299 0.407720 0.132313 0.903470 -0.372831 0.927736 -0.017395 -0.841214 -0.330029 0.428299 0.391607 0.174316 0.903470 -0.468011 0.883552 -0.017395 -0.801992 -0.416377 0.428299 0.371181 0.214399 0.903470 -0.558036 0.829635 -0.017395 -0.753936 -0.498138 0.428299 0.346666 0.252121 0.903470 -0.641147 0.767221 -0.017395 -0.698149 -0.573714 0.428299 0.318620 0.286747 0.903470 -0.718026 0.695799 -0.017395 -0.634175 -0.643726 0.428299 0.286812 0.318561 0.903470 -0.786996 0.616712 -0.017395 -0.563215 -0.706647 0.428299 0.251845 0.346867 0.903470 -0.846767 0.531680 -0.017395 -0.486813 -0.761297 0.428299 0.214475 0.371137 0.903470 -0.897827 0.440005 -0.017395 -0.404342 -0.808126 0.428299 0.174396 0.391572 0.903470 -0.938998 0.343483 -0.017395 -0.317418 -0.846053 0.428299 0.132396 0.407693 0.903470 -0.969826 0.243177 -0.017395 -0.226997 -0.874661 0.428299 0.088937 0.419324 0.903470 -0.989831 0.141183 -0.017395 -0.134970 -0.893501 0.428299 0.044926 0.426291 0.903470 -0.999176 0.036664 -0.017395 -0.040581 -0.902726 0.428299 0.000000 0.428652 0.903470 -0.997516 -0.068259 -0.017395 0.054254 -0.902007 0.428299 -0.044926 0.426291 0.903470 -0.985040 -0.171445 -0.017395 0.147601 -0.891501 0.428299 -0.088937 0.419324 0.903470 -0.961646 -0.273740 -0.017395 0.240224 -0.871122 0.428299 -0.132396 0.407693 0.903470 -0.927660 -0.373019 -0.017395 0.330200 -0.841147 0.428299 -0.174396 0.391572 0.903470 -0.883456 -0.468191 -0.017395 0.416540 -0.801907 0.428299 -0.214475 0.371137 0.903470 -0.830079 -0.557375 -0.017395 0.497537 -0.754332 0.428299 -0.251845 0.346867 0.903470 -0.767090 -0.641303 -0.017395 0.573857 -0.698032 0.428299 -0.286812 0.318561 0.903470 -0.695652 -0.718168 -0.017395 0.643855 -0.634043 0.428299 -0.318620 0.286747 0.903470 -0.617339 -0.786505 -0.017395 0.706198 -0.563777 0.428299 -0.346666 0.252121 0.903470 -0.531507 -0.846875 -0.017395 0.761396 -0.486658 0.428299 -0.371181 0.214399 0.903470 -0.439822 -0.897917 -0.017395 0.808208 -0.404178 0.428299 -0.391607 0.174316 0.903470 -0.343291 -0.939068 -0.017395 0.846118 -0.317246 0.428299 -0.407720 0.132313 0.903470 -0.243949 -0.969632 -0.017395 0.874480 -0.227694 0.428299 -0.419253 0.089271 0.903470 -0.140981 -0.989859 -0.017395 0.893528 -0.134788 0.428299 -0.426300 0.044839 0.903470 -0.397666 -0.877379 0.268454 -0.727322 0.479797 0.490710 -0.559343 -0.000114 -0.828937 -0.303520 -0.914225 0.268454 -0.773603 0.400926 0.490710 -0.556250 -0.058736 -0.828937 -0.206972 -0.940795 0.268454 -0.811044 0.318450 0.490710 -0.547147 -0.116165 -0.828937 -0.107230 -0.957306 0.268454 -0.839953 0.231693 0.490710 -0.531959 -0.172870 -0.828937 -0.006307 -0.963272 0.268454 -0.859610 0.142384 0.490710 -0.510911 -0.227671 -0.828937 0.093727 -0.958722 0.268454 -0.869747 0.052376 0.490710 -0.484515 -0.279480 -0.828937 0.193692 -0.943619 0.268454 -0.870447 -0.039068 0.490710 -0.452555 -0.328721 -0.828937 0.291523 -0.918121 0.268454 -0.861558 -0.130082 0.490710 -0.415611 -0.374342 -0.828937 0.386143 -0.882511 0.268454 -0.843180 -0.219663 0.490710 -0.374088 -0.415839 -0.828937 0.475673 -0.837656 0.268454 -0.815820 -0.306009 0.490710 -0.328897 -0.452428 -0.828937 0.560845 -0.783189 0.268454 -0.779255 -0.389827 0.490710 -0.279668 -0.484407 -0.828937 0.639840 -0.720095 0.268454 -0.734107 -0.469352 0.490710 -0.227359 -0.511050 -0.828937 0.711138 -0.649781 0.268454 -0.681416 -0.543025 0.490710 -0.173077 -0.531891 -0.828937 0.775323 -0.571670 0.268454 -0.620750 -0.611452 0.490710 -0.116378 -0.547102 -0.828937 0.830968 -0.487262 0.268454 -0.553246 -0.673143 0.490710 -0.058397 -0.556286 -0.828937 0.877136 -0.398202 0.268454 -0.480242 -0.727029 0.490710 -0.000228 -0.559343 -0.828937 0.914040 -0.304078 0.268454 -0.401399 -0.773358 0.490710 0.058397 -0.556286 -0.828937 0.940875 -0.206606 0.268454 -0.318135 -0.811168 0.490710 0.116378 -0.547102 -0.828937 0.957347 -0.106857 0.268454 -0.231366 -0.840043 0.490710 0.173077 -0.531891 -0.828937 0.963268 -0.006895 0.268454 -0.142909 -0.859523 0.490710 0.227359 -0.511050 -0.828937 0.958685 0.094100 0.268454 -0.052038 -0.869767 0.490710 0.279668 -0.484407 -0.828937 0.943543 0.194059 0.268454 0.039406 -0.870431 0.490710 0.328897 -0.452428 -0.828937 0.918299 0.290962 0.268454 0.129555 -0.861637 0.490710 0.374088 -0.415839 -0.828937 0.882747 0.385604 0.268454 0.219148 -0.843314 0.490710 0.415611 -0.374342 -0.828937 0.837471 0.475998 0.268454 0.306326 -0.815701 0.490710 0.452555 -0.328721 -0.828937 0.782971 0.561150 0.268454 0.390130 -0.779103 0.490710 0.484515 -0.279480 -0.828937 0.720486 0.639400 0.268454 0.468903 -0.734393 0.490710 0.510911 -0.227671 -0.828937 0.649504 0.711391 0.268454 0.543290 -0.681204 0.490710 0.531959 -0.172870 -0.828937 0.571368 0.775545 0.268454 0.611693 -0.620512 0.490710 0.547147 -0.116165 -0.828937 0.487770 0.830670 0.268454 0.672805 -0.553658 0.490710 0.556250 -0.058736 -0.828937 0.398023 0.877217 0.268454 0.727127 -0.480094 0.490710 0.559343 -0.000114 -0.828937 0.303892 0.914102 0.268454 0.773440 -0.401241 0.490710 0.556274 0.058510 -0.828937 0.206414 0.940917 0.268454 0.811233 -0.317970 0.490710 0.547078 0.116489 -0.828937 0.107620 0.957262 0.268454 0.839859 -0.232035 0.490710 0.532029 0.172653 -0.828937 0.006699 0.963269 0.268454 0.859552 -0.142734 0.490710 0.511004 0.227463 -0.828937 -0.094295 0.958666 0.268454 0.869778 -0.051861 0.490710 0.484350 0.279767 -0.828937 -0.194251 0.943504 0.268454 0.870423 0.039584 0.490710 0.452361 0.328990 -0.828937 -0.291149 0.918240 0.268454 0.861611 0.129731 0.490710 0.415763 0.374173 -0.828937 -0.385784 0.882668 0.268454 0.843269 0.219319 0.490710 0.374257 0.415687 -0.828937 -0.476169 0.837374 0.268454 0.815638 0.306492 0.490710 0.328629 0.452622 -0.828937 -0.560526 0.783417 0.268454 0.779414 0.389510 0.490710 0.279866 0.484293 -0.828937 -0.639547 0.720356 0.268454 0.734298 0.469052 0.490710 0.227567 0.510957 -0.828937 -0.711523 0.649359 0.268454 0.681094 0.543429 0.490710 0.172762 0.531994 -0.828937 -0.775662 0.571210 0.268454 0.620387 0.611819 0.490710 0.116053 0.547171 -0.828937 -0.830770 0.487600 0.268454 0.553521 0.672918 0.490710 0.058623 0.556262 -0.828937 -0.877298 0.397844 0.268454 0.479946 0.727225 0.490710 0.000000 0.559343 -0.828937 -0.914164 0.303706 0.268454 0.401084 0.773521 0.490710 -0.058623 0.556262 -0.828937 -0.940753 0.207163 0.268454 0.318616 0.810979 0.490710 -0.116053 0.547171 -0.828937 -0.957284 0.107425 0.268454 0.231864 0.839906 0.490710 -0.172762 0.531994 -0.828937 -0.963271 0.006503 0.268454 0.142559 0.859581 0.490710 -0.227567 0.510957 -0.828937 -0.958647 -0.094490 0.268454 0.051684 0.869789 0.490710 -0.279866 0.484293 -0.828937 -0.943658 -0.193500 0.268454 -0.038891 0.870454 0.490710 -0.328629 0.452622 -0.828937 -0.918181 -0.291336 0.268454 -0.129906 0.861584 0.490710 -0.374257 0.415687 -0.828937 -0.882590 -0.385963 0.268454 -0.219491 0.843224 0.490710 -0.415763 0.374173 -0.828937 -0.837753 -0.475502 0.268454 -0.305842 0.815882 0.490710 -0.452361 0.328990 -0.828937 -0.783303 -0.560686 0.268454 -0.389668 0.779334 0.490710 -0.484350 0.279767 -0.828937 -0.720225 -0.639693 0.268454 -0.469202 0.734202 0.490710 -0.511004 0.227463 -0.828937 -0.649214 -0.711655 0.268454 -0.543568 0.680983 0.490710 -0.532029 0.172653 -0.828937 -0.571828 -0.775207 0.268454 -0.611325 0.620874 0.490710 -0.547078 0.116489 -0.828937 -0.487431 -0.830869 0.268454 -0.673030 0.553384 0.490710 -0.556274 0.058510 -0.828937 0.002112 0.999662 -0.025894 0.089061 -0.025979 -0.995687 -0.996024 -0.000203 -0.089085 -0.102671 0.994378 -0.025894 0.091293 -0.016502 -0.995687 -0.990517 -0.104592 -0.089085 -0.205345 0.978347 -0.025894 0.092513 -0.006935 -0.995687 -0.974307 -0.206855 -0.089085 -0.306752 0.951437 -0.025894 0.092730 0.002799 -0.995687 -0.947261 -0.307830 -0.089085 -0.404780 0.914047 -0.025894 0.091926 0.012502 -0.995687 -0.909782 -0.405415 -0.089085 -0.497483 0.867087 -0.025894 0.090131 0.021978 -0.995687 -0.862779 -0.497671 -0.089085 -0.585620 0.810172 -0.025894 0.087332 0.031303 -0.995687 -0.805868 -0.585356 -0.089085 -0.667306 0.744333 -0.025894 0.083570 0.040284 -0.995687 -0.740080 -0.666592 -0.089085 -0.741643 0.670295 -0.025894 0.078887 0.048821 -0.995687 -0.666140 -0.740487 -0.089085 -0.807221 0.589682 -0.025894 0.073393 0.056746 -0.995687 -0.585669 -0.805640 -0.089085 -0.864578 0.501831 -0.025894 0.067041 0.064126 -0.995687 -0.498007 -0.862585 -0.089085 -0.912412 0.408454 -0.025894 0.059951 0.070799 -0.995687 -0.404859 -0.910029 -0.089085 -0.949884 0.311527 -0.025894 0.052278 0.076640 -0.995687 -0.308199 -0.947142 -0.089085 -0.977303 0.210257 -0.025894 0.043957 0.081697 -0.995687 -0.207234 -0.974227 -0.089085 -0.993957 0.106670 -0.025894 0.035153 0.085854 -0.995687 -0.103987 -0.990581 -0.089085 -0.999661 0.002723 -0.025894 0.026033 0.089045 -0.995687 -0.000406 -0.996024 -0.089085 -0.994441 -0.102064 -0.025894 0.016557 0.091283 -0.995687 0.103987 -0.990581 -0.089085 -0.978267 -0.205726 -0.025894 0.006899 0.092515 -0.995687 0.207234 -0.974227 -0.089085 -0.951318 -0.307122 -0.025894 -0.002835 0.092729 -0.995687 0.308199 -0.947142 -0.089085 -0.914294 -0.404222 -0.025894 -0.012446 0.091934 -0.995687 0.404859 -0.910029 -0.089085 -0.866894 -0.497820 -0.025894 -0.022013 0.090123 -0.995687 0.498007 -0.862585 -0.089085 -0.809944 -0.585935 -0.025894 -0.031337 0.087319 -0.995687 0.585669 -0.805640 -0.089085 -0.744741 -0.666852 -0.025894 -0.040233 0.083594 -0.995687 0.666140 -0.740487 -0.089085 -0.670748 -0.741233 -0.025894 -0.048772 0.078917 -0.995687 0.740080 -0.666592 -0.089085 -0.589367 -0.807450 -0.025894 -0.056775 0.073371 -0.995687 0.805868 -0.585356 -0.089085 -0.501495 -0.864773 -0.025894 -0.064152 0.067016 -0.995687 0.862779 -0.497671 -0.089085 -0.409011 -0.912162 -0.025894 -0.070763 0.059995 -0.995687 0.909782 -0.405415 -0.089085 -0.311157 -0.950006 -0.025894 -0.076661 0.052248 -0.995687 0.947261 -0.307830 -0.089085 -0.209876 -0.977385 -0.025894 -0.081714 0.043925 -0.995687 0.974307 -0.206855 -0.089085 -0.107277 -0.993892 -0.025894 -0.085833 0.035205 -0.995687 0.990517 -0.104592 -0.089085 -0.002520 -0.999662 -0.025894 -0.089050 0.026015 -0.995687 0.996024 -0.000203 -0.089085 0.102266 -0.994420 -0.025894 -0.091286 0.016539 -0.995687 0.990560 0.104189 -0.089085 0.205925 -0.978225 -0.025894 -0.092517 0.006880 -0.995687 0.974185 0.207433 -0.089085 0.306365 -0.951562 -0.025894 -0.092731 -0.002761 -0.995687 0.947387 0.307445 -0.089085 0.404408 -0.914212 -0.025894 -0.091931 -0.012465 -0.995687 0.909947 0.405044 -0.089085 0.497997 -0.866792 -0.025894 -0.090118 -0.022031 -0.995687 0.862484 0.498182 -0.089085 0.586100 -0.809825 -0.025894 -0.087313 -0.031355 -0.995687 0.805520 0.585833 -0.089085 0.667003 -0.744605 -0.025894 -0.083586 -0.040250 -0.995687 0.740351 0.666291 -0.089085 0.741370 -0.670597 -0.025894 -0.078907 -0.048789 -0.995687 0.666442 0.740216 -0.089085 0.807570 -0.589203 -0.025894 -0.073359 -0.056790 -0.995687 0.585192 0.805987 -0.089085 0.864373 -0.502184 -0.025894 -0.067067 -0.064099 -0.995687 0.498358 0.862382 -0.089085 0.912245 -0.408825 -0.025894 -0.059980 -0.070775 -0.995687 0.405230 0.909864 -0.089085 0.950069 -0.310964 -0.025894 -0.052232 -0.076671 -0.995687 0.307637 0.947324 -0.089085 0.977428 -0.209677 -0.025894 -0.043909 -0.081723 -0.995687 0.206657 0.974349 -0.089085 0.993914 -0.107075 -0.025894 -0.035188 -0.085840 -0.995687 0.104390 0.990538 -0.089085 0.999662 -0.002316 -0.025894 -0.025997 -0.089055 -0.995687 0.000000 0.996024 -0.089085 0.994399 0.102469 -0.025894 -0.016520 -0.091289 -0.995687 -0.104390 0.990538 -0.089085 0.978389 0.205146 -0.025894 -0.006954 -0.092511 -0.995687 -0.206657 0.974349 -0.089085 0.951500 0.306558 -0.025894 0.002780 -0.092731 -0.995687 -0.307637 0.947324 -0.089085 0.914130 0.404594 -0.025894 0.012484 -0.091928 -0.995687 -0.405230 0.909864 -0.089085 0.866691 0.498173 -0.025894 0.022050 -0.090114 -0.995687 -0.498358 0.862382 -0.089085 0.810291 0.585455 -0.025894 0.031285 -0.087338 -0.995687 -0.585192 0.805987 -0.089085 0.744469 0.667155 -0.025894 0.040267 -0.083578 -0.995687 -0.666442 0.740216 -0.089085 0.670446 0.741506 -0.025894 0.048805 -0.078897 -0.995687 -0.740351 0.666291 -0.089085 0.589846 0.807101 -0.025894 0.056731 -0.073405 -0.995687 -0.805520 0.585833 -0.089085 0.502007 0.864476 -0.025894 0.064112 -0.067054 -0.995687 -0.862484 0.498182 -0.089085 0.408640 0.912328 -0.025894 0.070787 -0.059966 -0.995687 -0.909947 0.405044 -0.089085 0.310770 0.950132 -0.025894 0.076682 -0.052216 -0.995687 -0.947387 0.307445 -0.089085 0.210456 0.977260 -0.025894 0.081688 -0.043974 -0.995687 -0.974185 0.207433 -0.089085 0.106873 0.993936 -0.025894 0.085847 -0.035170 -0.995687 -0.990560 0.104189 -0.089085 -0.234775 0.135332 0.962583 0.031874 0.990800 -0.131525 -0.971527 -0.000198 -0.236929 -0.247666 0.109980 0.962583 -0.072145 0.988684 -0.131525 -0.966156 -0.102020 -0.236929 -0.257745 0.083675 0.962583 -0.174393 0.975853 -0.131525 -0.950344 -0.201768 -0.236929 -0.265095 0.056201 0.962583 -0.275709 0.952201 -0.131525 -0.923964 -0.300259 -0.236929 -0.269526 0.028107 0.962583 -0.373988 0.918060 -0.131525 -0.887406 -0.395444 -0.236929 -0.270987 -0.000025 0.962583 -0.467274 0.874275 -0.131525 -0.841559 -0.485431 -0.236929 -0.269492 -0.028426 0.962583 -0.556330 0.820486 -0.131525 -0.786047 -0.570959 -0.236929 -0.265029 -0.056514 0.962583 -0.639259 0.757660 -0.131525 -0.721878 -0.650198 -0.236929 -0.257646 -0.083980 0.962583 -0.715147 0.686489 -0.131525 -0.649757 -0.722275 -0.236929 -0.247536 -0.110273 0.962583 -0.782549 0.608538 -0.131525 -0.571265 -0.785825 -0.236929 -0.234615 -0.135609 0.962583 -0.842018 0.523170 -0.131525 -0.485758 -0.841370 -0.236929 -0.219110 -0.159452 0.962583 -0.892213 0.432039 -0.131525 -0.394901 -0.887647 -0.236929 -0.201373 -0.181337 0.962583 -0.932243 0.337082 -0.131525 -0.300619 -0.923847 -0.236929 -0.181259 -0.201443 0.962583 -0.962437 0.237519 -0.131525 -0.202137 -0.950266 -0.236929 -0.159148 -0.219331 0.962583 -0.982031 0.135341 -0.131525 -0.101429 -0.966218 -0.236929 -0.135475 -0.234693 0.962583 -0.990781 0.032479 -0.131525 -0.000396 -0.971527 -0.236929 -0.110131 -0.247599 0.962583 -0.988728 -0.071541 -0.131525 0.101429 -0.966218 -0.236929 -0.083575 -0.257778 0.962583 -0.975785 -0.174773 -0.131525 0.202137 -0.950266 -0.236929 -0.056097 -0.265117 0.962583 -0.952093 -0.276079 -0.131525 0.300619 -0.923847 -0.236929 -0.028272 -0.269508 0.962583 -0.918288 -0.373427 -0.131525 0.394901 -0.887647 -0.236929 0.000130 -0.270987 0.962583 -0.874093 -0.467614 -0.131525 0.485758 -0.841370 -0.236929 0.028531 -0.269481 0.962583 -0.820270 -0.556649 -0.131525 0.571265 -0.785825 -0.236929 0.056352 -0.265063 0.962583 -0.758051 -0.638796 -0.131525 0.649757 -0.722275 -0.236929 0.083823 -0.257697 0.962583 -0.686925 -0.714727 -0.131525 0.721878 -0.650198 -0.236929 0.110369 -0.247493 0.962583 -0.608233 -0.782786 -0.131525 0.786047 -0.570959 -0.236929 0.135701 -0.234562 0.962583 -0.522842 -0.842222 -0.131525 0.841559 -0.485431 -0.236929 0.159318 -0.219208 0.962583 -0.432584 -0.891949 -0.131525 0.887406 -0.395444 -0.236929 0.181415 -0.201303 0.962583 -0.336719 -0.932374 -0.131525 0.923964 -0.300259 -0.236929 0.201514 -0.181180 0.962583 -0.237145 -0.962530 -0.131525 0.950344 -0.201768 -0.236929 0.219234 -0.159282 0.962583 -0.135941 -0.981948 -0.131525 0.966156 -0.102020 -0.236929 0.234720 -0.135427 0.962583 -0.032277 -0.990787 -0.131525 0.971527 -0.000198 -0.236929 0.247621 -0.110081 0.962583 0.071742 -0.988713 -0.131525 0.966197 0.101626 -0.236929 0.257795 -0.083522 0.962583 0.174971 -0.975749 -0.131525 0.950225 0.202331 -0.236929 0.265073 -0.056309 0.962583 0.275321 -0.952313 -0.131525 0.924086 0.299883 -0.236929 0.269514 -0.028217 0.962583 0.373614 -0.918212 -0.131525 0.887567 0.395082 -0.236929 0.270987 0.000185 0.962583 0.467791 -0.873998 -0.131525 0.841271 0.485930 -0.236929 0.269475 0.028586 0.962583 0.556816 -0.820156 -0.131525 0.785709 0.571425 -0.236929 0.265052 0.056406 0.962583 0.638951 -0.757921 -0.131525 0.722143 0.649904 -0.236929 0.257680 0.083875 0.962583 0.714867 -0.686780 -0.131525 0.650051 0.722010 -0.236929 0.247470 0.110420 0.962583 0.782909 -0.608074 -0.131525 0.570799 0.786164 -0.236929 0.234670 0.135514 0.962583 0.841805 -0.523513 -0.131525 0.486101 0.841172 -0.236929 0.219175 0.159362 0.962583 0.892037 -0.432402 -0.131525 0.395263 0.887486 -0.236929 0.201266 0.181456 0.962583 0.932443 -0.336529 -0.131525 0.300071 0.924025 -0.236929 0.181139 0.201551 0.962583 0.962578 -0.236949 -0.131525 0.201574 0.950385 -0.236929 0.159237 0.219266 0.962583 0.981975 -0.135741 -0.131525 0.101823 0.966176 -0.236929 0.135379 0.234748 0.962583 0.990794 -0.032075 -0.131525 0.000000 0.971527 -0.236929 0.110031 0.247644 0.962583 0.988699 0.071944 -0.131525 -0.101823 0.966176 -0.236929 0.083728 0.257728 0.962583 0.975888 0.174194 -0.131525 -0.201574 0.950385 -0.236929 0.056255 0.265084 0.962583 0.952257 0.275515 -0.131525 -0.300071 0.924025 -0.236929 0.028162 0.269520 0.962583 0.918136 0.373801 -0.131525 -0.395263 0.887486 -0.236929 -0.000241 0.270987 0.962583 0.873903 0.467970 -0.131525 -0.486101 0.841172 -0.236929 -0.028371 0.269498 0.962583 0.820600 0.556163 -0.131525 -0.570799 0.786164 -0.236929 -0.056460 0.265040 0.962583 0.757790 0.639105 -0.131525 -0.650051 0.722010 -0.236929 -0.083927 0.257663 0.962583 0.686634 0.715007 -0.131525 -0.722143 0.649904 -0.236929 -0.110223 0.247558 0.962583 0.608697 0.782425 -0.131525 -0.785709 0.571425 -0.236929 -0.135561 0.234643 0.962583 0.523341 0.841912 -0.131525 -0.841271 0.485930 -0.236929 -0.159407 0.219143 0.962583 0.432221 0.892125 -0.131525 -0.887567 0.395082 -0.236929 -0.181497 0.201229 0.962583 0.336339 0.932511 -0.131525 -0.924086 0.299883 -0.236929 -0.201406 0.181300 0.962583 0.237715 0.962389 -0.131525 -0.950225 0.202331 -0.236929 -0.219299 0.159192 0.962583 0.135541 0.982003 -0.131525 -0.966197 0.101626 -0.236929 -0.598345 -0.783575 0.167313 -0.754652 0.621297 0.210929 -0.269229 -0.000055 -0.963076 -0.512925 -0.841971 0.167313 -0.815612 0.538782 0.210929 -0.267741 -0.028272 -0.963076 -0.422746 -0.890669 0.167313 -0.867138 0.451200 0.210929 -0.263359 -0.055914 -0.963076 -0.327069 -0.930071 0.167313 -0.909651 0.357833 0.210929 -0.256049 -0.083208 -0.963076 -0.227790 -0.959228 0.167313 -0.942144 0.260524 0.210929 -0.245918 -0.109585 -0.963076 -0.126979 -0.977693 0.167313 -0.964100 0.161310 0.210929 -0.233213 -0.134523 -0.963076 -0.023811 -0.985616 0.167313 -0.975696 0.059377 0.210929 -0.217829 -0.158224 -0.963076 0.079620 -0.982684 0.167313 -0.976546 -0.043210 0.210929 -0.200047 -0.180183 -0.963076 0.182174 -0.968927 0.167313 -0.966639 -0.145321 0.210929 -0.180060 -0.200157 -0.963076 0.281776 -0.944780 0.167313 -0.946330 -0.244885 0.210929 -0.158309 -0.217768 -0.963076 0.379244 -0.910044 0.167313 -0.915452 -0.342719 0.210929 -0.134613 -0.233160 -0.963076 0.472535 -0.865285 0.167313 -0.874491 -0.436777 0.210929 -0.109435 -0.245985 -0.963076 0.559809 -0.811554 0.167313 -0.824423 -0.525200 0.210929 -0.083307 -0.256016 -0.963076 0.641782 -0.748413 0.167313 -0.764838 -0.608713 0.210929 -0.056016 -0.263337 -0.963076 0.716687 -0.677028 0.167313 -0.696828 -0.685521 0.210929 -0.028108 -0.267758 -0.963076 0.783210 -0.598823 0.167313 -0.621758 -0.754272 0.210929 -0.000110 -0.269229 -0.963076 0.841657 -0.513439 0.167313 -0.539280 -0.815283 0.210929 0.028108 -0.267758 -0.963076 0.890834 -0.422400 0.167313 -0.450863 -0.867313 0.210929 0.056016 -0.263337 -0.963076 0.930198 -0.326708 0.167313 -0.357479 -0.909790 0.210929 0.083307 -0.256016 -0.963076 0.959089 -0.228376 0.167313 -0.261100 -0.941985 0.210929 0.109435 -0.245985 -0.963076 0.977742 -0.126599 0.167313 -0.160935 -0.964162 0.210929 0.134613 -0.233160 -0.963076 0.985626 -0.023427 0.167313 -0.058998 -0.975719 0.210929 0.158309 -0.217768 -0.963076 0.982732 0.079020 0.167313 0.042613 -0.976572 0.210929 0.180060 -0.200157 -0.963076 0.969038 0.181582 0.167313 0.144730 -0.966728 0.210929 0.200047 -0.180183 -0.963076 0.944670 0.282144 0.167313 0.245253 -0.946235 0.210929 0.217829 -0.158224 -0.963076 0.909897 0.379598 0.167313 0.343074 -0.915319 0.210929 0.233213 -0.134523 -0.963076 0.865573 0.472006 0.167313 0.436243 -0.874758 0.210929 0.245918 -0.109585 -0.963076 0.811337 0.560125 0.167313 0.525521 -0.824219 0.210929 0.256049 -0.083208 -0.963076 0.748163 0.642074 0.167313 0.609011 -0.764601 0.210929 0.263359 -0.055914 -0.963076 0.677465 0.716273 0.167313 0.685095 -0.697247 0.210929 0.267741 -0.028272 -0.963076 0.598664 0.783332 0.167313 0.754399 -0.621604 0.210929 0.269229 -0.000055 -0.963076 0.513268 0.841762 0.167313 0.815392 -0.539114 0.210929 0.267752 0.028163 -0.963076 0.422218 0.890920 0.167313 0.867405 -0.450686 0.210929 0.263326 0.056070 -0.963076 0.327448 0.929938 0.167313 0.909505 -0.358203 0.210929 0.256082 0.083104 -0.963076 0.228181 0.959135 0.167313 0.942038 -0.260908 0.210929 0.245962 0.109485 -0.963076 0.126400 0.977768 0.167313 0.964195 -0.160739 0.210929 0.233133 0.134661 -0.963076 0.023227 0.985630 0.167313 0.975731 -0.058799 0.210929 0.217735 0.158353 -0.963076 -0.079220 0.982716 0.167313 0.976564 0.042812 0.210929 0.200120 0.180101 -0.963076 -0.181779 0.969001 0.167313 0.966698 0.144927 0.210929 0.180142 0.200083 -0.963076 -0.282336 0.944613 0.167313 0.946185 0.245446 0.210929 0.158180 0.217861 -0.963076 -0.378873 0.910199 0.167313 0.915592 0.342346 0.210929 0.134708 0.233105 -0.963076 -0.472182 0.865477 0.167313 0.874669 0.436421 0.210929 0.109535 0.245940 -0.963076 -0.560290 0.811222 0.167313 0.824112 0.525689 0.210929 0.083156 0.256066 -0.963076 -0.642226 0.748032 0.167313 0.764477 0.609166 0.210929 0.055860 0.263371 -0.963076 -0.716411 0.677319 0.167313 0.697107 0.685237 0.210929 0.028217 0.267747 -0.963076 -0.783453 0.598504 0.167313 0.621450 0.754525 0.210929 0.000000 0.269229 -0.963076 -0.841866 0.513096 0.167313 0.538948 0.815502 0.210929 -0.028217 0.267747 -0.963076 -0.890583 0.422928 0.167313 0.451377 0.867046 0.210929 -0.055860 0.263371 -0.963076 -0.930004 0.327259 0.167313 0.358018 0.909578 0.210929 -0.083156 0.256066 -0.963076 -0.959181 0.227985 0.167313 0.260716 0.942091 0.210929 -0.109535 0.245940 -0.963076 -0.977793 0.126201 0.167313 0.160542 0.964228 0.210929 -0.134708 0.233105 -0.963076 -0.985611 0.024012 0.167313 0.059576 0.975684 0.210929 -0.158180 0.217861 -0.963076 -0.982700 -0.079420 0.167313 -0.043011 0.976555 0.210929 -0.180142 0.200083 -0.963076 -0.968964 -0.181976 0.167313 -0.145124 0.966669 0.210929 -0.200120 0.180101 -0.963076 -0.944837 -0.281584 0.167313 -0.244692 0.946380 0.210929 -0.217735 0.158353 -0.963076 -0.910121 -0.379059 0.167313 -0.342532 0.915522 0.210929 -0.233133 0.134661 -0.963076 -0.865381 -0.472358 0.167313 -0.436599 0.874580 0.210929 -0.245962 0.109485 -0.963076 -0.811108 -0.560455 0.167313 -0.525857 0.824005 0.210929 -0.256082 0.083104 -0.963076 -0.748544 -0.641630 0.167313 -0.608557 0.764962 0.210929 -0.263326 0.056070 -0.963076 -0.677173 -0.716549 0.167313 -0.685379 0.696968 0.210929 -0.267752 0.028163 -0.963076 -0.160632 0.076688 -0.984031 -0.012156 -0.997055 -0.075719 -0.986939 -0.000201 0.161091 -0.167785 0.059430 -0.984031 0.092409 -0.992838 -0.075719 -0.981483 -0.103638 0.161091 -0.173048 0.041691 -0.984031 0.194979 -0.977880 -0.075719 -0.965421 -0.204969 0.161091 -0.176464 0.023325 -0.984031 0.296394 -0.952059 -0.075719 -0.938622 -0.305023 0.161091 -0.177937 0.004702 -0.984031 0.394545 -0.915752 -0.075719 -0.901484 -0.401717 0.161091 -0.177464 -0.013796 -0.984031 0.487479 -0.869845 -0.075719 -0.854910 -0.493132 0.161091 -0.175041 -0.032319 -0.984031 0.575961 -0.813963 -0.075719 -0.798518 -0.580017 0.161091 -0.170689 -0.050487 -0.984031 0.658098 -0.749116 -0.075719 -0.733330 -0.660513 0.161091 -0.164458 -0.068098 -0.984031 0.732986 -0.676016 -0.075719 -0.660065 -0.733733 0.161091 -0.156500 -0.084803 -0.984031 0.799205 -0.596271 -0.075719 -0.580327 -0.798292 0.161091 -0.146750 -0.100738 -0.984031 0.857296 -0.509224 -0.075719 -0.493464 -0.854718 0.161091 -0.135384 -0.115564 -0.984031 0.905945 -0.416569 -0.075719 -0.401166 -0.901729 0.161091 -0.122655 -0.128994 -0.984031 0.944295 -0.320270 -0.075719 -0.305388 -0.938503 0.161091 -0.108460 -0.141139 -0.984031 0.972661 -0.219537 -0.075719 -0.205344 -0.965341 0.161091 -0.093070 -0.151729 -0.984031 0.990314 -0.116386 -0.075719 -0.103039 -0.981546 0.161091 -0.076786 -0.160585 -0.984031 0.997047 -0.012765 -0.075719 -0.000402 -0.986939 0.161091 -0.059533 -0.167749 -0.984031 0.992894 0.091803 -0.075719 0.103039 -0.981546 0.161091 -0.041624 -0.173064 -0.984031 0.977804 0.195360 -0.075719 0.205344 -0.965341 0.161091 -0.023256 -0.176474 -0.984031 0.951944 0.296765 -0.075719 0.305388 -0.938503 0.161091 -0.004810 -0.177934 -0.984031 0.915993 0.393985 -0.075719 0.401166 -0.901729 0.161091 0.013865 -0.177458 -0.984031 0.869655 0.487818 -0.075719 0.493464 -0.854718 0.161091 0.032387 -0.175028 -0.984031 0.813739 0.576277 -0.075719 0.580327 -0.798292 0.161091 0.050383 -0.170720 -0.984031 0.749517 0.657640 -0.075719 0.660065 -0.733733 0.161091 0.067998 -0.164499 -0.984031 0.676464 0.732573 -0.075719 0.733330 -0.660513 0.161091 0.084864 -0.156467 -0.984031 0.595960 0.799437 -0.075719 0.798518 -0.580017 0.161091 0.100795 -0.146711 -0.984031 0.508891 0.857494 -0.075719 0.854910 -0.493132 0.161091 0.115481 -0.135454 -0.984031 0.417122 0.905691 -0.075719 0.901484 -0.401717 0.161091 0.129042 -0.122605 -0.984031 0.319902 0.944420 -0.075719 0.938622 -0.305023 0.161091 0.141181 -0.108405 -0.984031 0.219158 0.972747 -0.075719 0.965421 -0.204969 0.161091 0.151672 -0.093163 -0.984031 0.116991 0.990242 -0.075719 0.981483 -0.103638 0.161091 0.160601 -0.076754 -0.984031 0.012562 0.997050 -0.075719 0.986939 -0.000201 0.161091 0.167761 -0.059499 -0.984031 -0.092005 0.992875 -0.075719 0.981525 0.103238 0.161091 0.173073 -0.041589 -0.984031 -0.195559 0.977764 -0.075719 0.965299 0.205541 0.161091 0.176455 -0.023397 -0.984031 -0.296007 0.952180 -0.075719 0.938746 0.304640 0.161091 0.177935 -0.004774 -0.984031 -0.394172 0.915912 -0.075719 0.901647 0.401350 0.161091 0.177456 0.013901 -0.984031 -0.487995 0.869556 -0.075719 0.854617 0.493639 0.161091 0.175021 0.032423 -0.984031 -0.576443 0.813622 -0.075719 0.798174 0.580490 0.161091 0.170710 0.050417 -0.984031 -0.657793 0.749384 -0.075719 0.733599 0.660214 0.161091 0.164486 0.068031 -0.984031 -0.732711 0.676315 -0.075719 0.660363 0.733464 0.161091 0.156449 0.084896 -0.984031 -0.799558 0.595797 -0.075719 0.579854 0.798636 0.161091 0.146791 0.100679 -0.984031 -0.857089 0.509573 -0.075719 0.493813 0.854517 0.161091 0.135431 0.115509 -0.984031 -0.905776 0.416938 -0.075719 0.401534 0.901566 0.161091 0.122579 0.129067 -0.984031 -0.944485 0.319710 -0.075719 0.304832 0.938684 0.161091 0.108376 0.141203 -0.984031 -0.972791 0.218960 -0.075719 0.204772 0.965463 0.161091 0.093132 0.151691 -0.984031 -0.990266 0.116789 -0.075719 0.103438 0.981504 0.161091 0.076721 0.160616 -0.984031 -0.997053 0.012359 -0.075719 0.000000 0.986939 0.161091 0.059465 0.167773 -0.984031 -0.992857 -0.092207 -0.075719 -0.103438 0.981504 0.161091 0.041726 0.173039 -0.984031 -0.977920 -0.194780 -0.075719 -0.204772 0.965463 0.161091 0.023361 0.176460 -0.984031 -0.952120 -0.296200 -0.075719 -0.304832 0.938684 0.161091 0.004738 0.177936 -0.984031 -0.915832 -0.394358 -0.075719 -0.401534 0.901566 0.161091 -0.013937 0.177453 -0.984031 -0.869457 -0.488172 -0.075719 -0.493813 0.854517 0.161091 -0.032284 0.175047 -0.984031 -0.814080 -0.575795 -0.075719 -0.579854 0.798636 0.161091 -0.050452 0.170700 -0.984031 -0.749250 -0.657945 -0.075719 -0.660363 0.733464 0.161091 -0.068065 0.164472 -0.984031 -0.676166 -0.732848 -0.075719 -0.733599 0.660214 0.161091 -0.084771 0.156517 -0.984031 -0.596433 -0.799083 -0.075719 -0.798174 0.580490 0.161091 -0.100709 0.146770 -0.984031 -0.509399 -0.857193 -0.075719 -0.854617 0.493639 0.161091 -0.115536 0.135407 -0.984031 -0.416754 -0.905860 -0.075719 -0.901647 0.401350 0.161091 -0.129092 0.122552 -0.984031 -0.319518 -0.944550 -0.075719 -0.938746 0.304640 0.161091 -0.141117 0.108489 -0.984031 -0.219735 -0.972617 -0.075719 -0.965299 0.205541 0.161091 -0.151710 0.093101 -0.984031 -0.116588 -0.990290 -0.075719 -0.981525 0.103238 0.161091 -0.262585 0.415723 -0.870760 -0.119821 -0.909491 -0.398081 -0.957440 -0.000195 0.288631 -0.304709 0.385913 -0.870760 -0.023839 -0.917040 -0.398081 -0.952147 -0.100541 0.288631 -0.343125 0.352195 -0.870760 0.071490 -0.914560 -0.398081 -0.936565 -0.198842 0.288631 -0.378148 0.314293 -0.870760 0.166948 -0.902031 -0.398081 -0.910567 -0.295906 0.288631 -0.409006 0.272930 -0.870760 0.260568 -0.879566 -0.398081 -0.874539 -0.389710 0.288631 -0.435129 0.228995 -0.870760 0.350470 -0.847763 -0.398081 -0.829357 -0.478393 0.288631 -0.456733 0.182129 -0.870760 0.437392 -0.806362 -0.398081 -0.774650 -0.562680 0.288631 -0.473306 0.133257 -0.870760 0.519495 -0.756079 -0.398081 -0.711411 -0.640770 0.288631 -0.484666 0.082917 -0.870760 0.595877 -0.697468 -0.398081 -0.640336 -0.711802 0.288631 -0.490655 0.032155 -0.870760 0.665063 -0.631840 -0.398081 -0.562982 -0.774431 0.288631 -0.491323 -0.019446 -0.870760 0.727622 -0.558657 -0.398081 -0.478715 -0.829171 0.288631 -0.486579 -0.070834 -0.870760 0.782166 -0.479320 -0.398081 -0.389176 -0.874777 0.288631 -0.476596 -0.120964 -0.870760 0.827699 -0.395532 -0.398081 -0.296260 -0.910452 0.288631 -0.461294 -0.170248 -0.870760 0.864595 -0.306605 -0.398081 -0.199207 -0.936488 0.288631 -0.440910 -0.217658 -0.870760 0.891968 -0.214300 -0.398081 -0.099959 -0.952208 0.288631 -0.415883 -0.262331 -0.870760 0.909418 -0.120376 -0.398081 -0.000390 -0.957440 0.288631 -0.386099 -0.304473 -0.870760 0.917026 -0.024400 -0.398081 0.099959 -0.952208 0.288631 -0.352061 -0.343262 -0.870760 0.914532 0.071846 -0.398081 0.199207 -0.936488 0.288631 -0.314146 -0.378271 -0.870760 0.901966 0.167299 -0.398081 0.296260 -0.910452 0.288631 -0.273179 -0.408839 -0.870760 0.879725 0.260031 -0.398081 0.389176 -0.874777 0.288631 -0.228826 -0.435219 -0.870760 0.847626 0.350800 -0.398081 0.478715 -0.829171 0.288631 -0.181951 -0.456804 -0.870760 0.806192 0.437705 -0.398081 0.562982 -0.774431 0.288631 -0.133546 -0.473225 -0.870760 0.756396 0.519033 -0.398081 0.640336 -0.711802 0.288631 -0.083213 -0.484615 -0.870760 0.697832 0.595451 -0.398081 0.711411 -0.640770 0.288631 -0.031964 -0.490668 -0.870760 0.631581 0.665309 -0.398081 0.774650 -0.562680 0.288631 0.019638 -0.491315 -0.870760 0.558374 0.727839 -0.398081 0.829357 -0.478393 0.288631 0.070536 -0.486622 -0.870760 0.479798 0.781873 -0.398081 0.874539 -0.389710 0.288631 0.121149 -0.476549 -0.870760 0.395210 0.827853 -0.398081 0.910567 -0.295906 0.288631 0.170428 -0.461227 -0.870760 0.306268 0.864714 -0.398081 0.936565 -0.198842 0.288631 0.217388 -0.441043 -0.870760 0.214845 0.891837 -0.398081 0.952147 -0.100541 0.288631 0.262415 -0.415830 -0.870760 0.120191 0.909442 -0.398081 0.957440 -0.000195 0.288631 0.304552 -0.386037 -0.870760 0.024213 0.917031 -0.398081 0.952188 0.100153 0.288631 0.343334 -0.351991 -0.870760 -0.072032 0.914518 -0.398081 0.936447 0.199397 0.288631 0.378020 -0.314447 -0.870760 -0.166581 0.902099 -0.398081 0.910687 0.295535 0.288631 0.408895 -0.273096 -0.870760 -0.260210 0.879672 -0.398081 0.874698 0.389354 0.288631 0.435265 -0.228737 -0.870760 -0.350973 0.847555 -0.398081 0.829073 0.478884 0.288631 0.456841 -0.181858 -0.870760 -0.437870 0.806103 -0.398081 0.774317 0.563139 0.288631 0.473252 -0.133450 -0.870760 -0.519187 0.756291 -0.398081 0.711672 0.640481 0.288631 0.484632 -0.083115 -0.870760 -0.595593 0.697711 -0.398081 0.640625 0.711541 0.288631 0.490674 -0.031864 -0.870760 -0.665438 0.631446 -0.398081 0.562523 0.774765 0.288631 0.491331 0.019246 -0.870760 -0.727394 0.558953 -0.398081 0.479053 0.828976 0.288631 0.486608 0.070635 -0.870760 -0.781971 0.479639 -0.398081 0.389532 0.874618 0.288631 0.476525 0.121246 -0.870760 -0.827933 0.395041 -0.398081 0.295720 0.910627 0.288631 0.461193 0.170522 -0.870760 -0.864777 0.306092 -0.398081 0.198651 0.936606 0.288631 0.440998 0.217478 -0.870760 -0.891881 0.214664 -0.398081 0.100347 0.952167 0.288631 0.415776 0.262500 -0.870760 -0.909467 0.120006 -0.398081 0.000000 0.957440 0.288631 0.385975 0.304631 -0.870760 -0.917036 0.024026 -0.398081 -0.100347 0.952167 0.288631 0.352265 0.343054 -0.870760 -0.914575 -0.071303 -0.398081 -0.198651 0.936606 0.288631 0.314370 0.378084 -0.870760 -0.902065 -0.166765 -0.398081 -0.295720 0.910627 0.288631 0.273013 0.408950 -0.870760 -0.879619 -0.260389 -0.398081 -0.389532 0.874618 0.288631 0.228648 0.435312 -0.870760 -0.847484 -0.351145 -0.398081 -0.479053 0.828976 0.288631 0.182222 0.456696 -0.870760 -0.806451 -0.437228 -0.398081 -0.562523 0.774765 0.288631 0.133353 0.473279 -0.870760 -0.756185 -0.519341 -0.398081 -0.640625 0.711541 0.288631 0.083016 0.484649 -0.870760 -0.697590 -0.595735 -0.398081 -0.711672 0.640481 0.288631 0.032255 0.490649 -0.870760 -0.631976 -0.664935 -0.398081 -0.774317 0.563139 0.288631 -0.019346 0.491327 -0.870760 -0.558805 -0.727508 -0.398081 -0.829073 0.478884 0.288631 -0.070734 0.486593 -0.870760 -0.479480 -0.782068 -0.398081 -0.874698 0.389354 0.288631 -0.121343 0.476500 -0.870760 -0.394873 -0.828014 -0.398081 -0.910687 0.295535 0.288631 -0.170154 0.461328 -0.870760 -0.306781 -0.864533 -0.398081 -0.936447 0.199397 0.288631 -0.217568 0.440954 -0.870760 -0.214482 -0.891924 -0.398081 -0.952188 0.100153 0.288631 0.008084 -0.999919 -0.009821 -0.625784 -0.012720 0.779892 -0.779954 -0.000159 -0.625837 0.112839 -0.993565 -0.009821 -0.621005 -0.078236 0.779892 -0.775642 -0.081903 -0.625837 0.215373 -0.976482 -0.009821 -0.609527 -0.142282 0.779892 -0.762949 -0.161982 -0.625837 0.316530 -0.948532 -0.009821 -0.591258 -0.205381 0.779892 -0.741770 -0.241052 -0.625837 0.414199 -0.910133 -0.009821 -0.566477 -0.266218 0.779892 -0.712421 -0.317467 -0.625837 0.506445 -0.862216 -0.009821 -0.535779 -0.323587 0.779892 -0.675614 -0.389710 -0.625837 0.594022 -0.804389 -0.009821 -0.498914 -0.377958 0.779892 -0.631049 -0.458373 -0.625837 0.675056 -0.737701 -0.009821 -0.456554 -0.428167 0.779892 -0.579533 -0.521987 -0.625837 0.748655 -0.662888 -0.009821 -0.409164 -0.473659 0.779892 -0.521633 -0.579851 -0.625837 0.813426 -0.581586 -0.009821 -0.357782 -0.513576 0.779892 -0.458619 -0.630871 -0.625837 0.869900 -0.493130 -0.009821 -0.301985 -0.548245 0.779892 -0.389973 -0.675463 -0.625837 0.916793 -0.399242 -0.009821 -0.242862 -0.576876 0.779892 -0.317032 -0.712614 -0.625837 0.953286 -0.301911 -0.009821 -0.181662 -0.598971 0.779892 -0.241341 -0.741676 -0.625837 0.979678 -0.200337 -0.009821 -0.117885 -0.614712 0.779892 -0.162278 -0.762886 -0.625837 0.995279 -0.096556 -0.009821 -0.052810 -0.623682 0.779892 -0.081429 -0.775692 -0.625837 0.999924 0.007473 -0.009821 0.012337 -0.625792 0.779892 -0.000318 -0.779954 -0.625837 0.993634 0.112232 -0.009821 0.077857 -0.621052 0.779892 0.081429 -0.775692 -0.625837 0.976398 0.215753 -0.009821 0.142519 -0.609472 0.779892 0.162278 -0.762886 -0.625837 0.948409 0.316899 -0.009821 0.205611 -0.591178 0.779892 0.241341 -0.741676 -0.625837 0.910386 0.413643 -0.009821 0.265872 -0.566639 0.779892 0.317032 -0.712614 -0.625837 0.862019 0.506780 -0.009821 0.323795 -0.535653 0.779892 0.389973 -0.675463 -0.625837 0.804158 0.594335 -0.009821 0.378153 -0.498767 0.779892 0.458619 -0.630871 -0.625837 0.738113 0.674605 -0.009821 0.427888 -0.456815 0.779892 0.521633 -0.579851 -0.625837 0.663345 0.748250 -0.009821 0.473409 -0.409453 0.779892 0.579533 -0.521987 -0.625837 0.581269 0.813652 -0.009821 0.513715 -0.357582 0.779892 0.631049 -0.458373 -0.625837 0.492792 0.870092 -0.009821 0.548363 -0.301772 0.779892 0.675614 -0.389710 -0.625837 0.399803 0.916549 -0.009821 0.576728 -0.243214 0.779892 0.712421 -0.317467 -0.625837 0.301540 0.953403 -0.009821 0.599042 -0.181429 0.779892 0.741770 -0.241052 -0.625837 0.199956 0.979756 -0.009821 0.614758 -0.117646 0.779892 0.762949 -0.161982 -0.625837 0.097164 0.995220 -0.009821 0.623649 -0.053191 0.779892 0.775642 -0.081903 -0.625837 -0.007677 0.999922 -0.009821 0.625790 0.012465 0.779892 0.779954 -0.000159 -0.625837 -0.112434 0.993611 -0.009821 0.621037 0.077984 0.779892 0.775675 0.081587 -0.625837 -0.215952 0.976355 -0.009821 0.609443 0.142643 0.779892 0.762852 0.162434 -0.625837 -0.316143 0.948661 -0.009821 0.591342 0.205140 0.779892 0.741868 0.240750 -0.625837 -0.413829 0.910302 -0.009821 0.566585 0.265987 0.779892 0.712550 0.317177 -0.625837 -0.506956 0.861916 -0.009821 0.535587 0.323905 0.779892 0.675383 0.390111 -0.625837 -0.594499 0.804037 -0.009821 0.498690 0.378254 0.779892 0.630777 0.458747 -0.625837 -0.674756 0.737976 -0.009821 0.456728 0.427981 0.779892 0.579745 0.521751 -0.625837 -0.748385 0.663192 -0.009821 0.409357 0.473492 0.779892 0.521869 0.579639 -0.625837 -0.813770 0.581104 -0.009821 0.357477 0.513788 0.779892 0.458245 0.631142 -0.625837 -0.869699 0.493484 -0.009821 0.302208 0.548122 0.779892 0.390248 0.675304 -0.625837 -0.916630 0.399616 -0.009821 0.243097 0.576777 0.779892 0.317322 0.712485 -0.625837 -0.953464 0.301346 -0.009821 0.181307 0.599079 0.779892 0.240901 0.741819 -0.625837 -0.979796 0.199756 -0.009821 0.117521 0.614782 0.779892 0.161826 0.762982 -0.625837 -0.995240 0.096961 -0.009821 0.053064 0.623660 0.779892 0.081745 0.775659 -0.625837 -0.999921 -0.007881 -0.009821 -0.012592 0.625787 0.779892 0.000000 0.779954 -0.625837 -0.993588 -0.112636 -0.009821 -0.078110 0.621021 0.779892 -0.081745 0.775659 -0.625837 -0.976526 -0.215175 -0.009821 -0.142158 0.609556 0.779892 -0.161826 0.762982 -0.625837 -0.948596 -0.316336 -0.009821 -0.205261 0.591300 0.779892 -0.240901 0.741819 -0.625837 -0.910218 -0.414014 -0.009821 -0.266103 0.566531 0.779892 -0.317322 0.712485 -0.625837 -0.861813 -0.507131 -0.009821 -0.324014 0.535521 0.779892 -0.390248 0.675304 -0.625837 -0.804510 -0.593858 -0.009821 -0.377857 0.498991 0.779892 -0.458245 0.631142 -0.625837 -0.737839 -0.674906 -0.009821 -0.428074 0.456641 0.779892 -0.521869 0.579639 -0.625837 -0.663040 -0.748520 -0.009821 -0.473575 0.409261 0.779892 -0.579745 0.521751 -0.625837 -0.581752 -0.813307 -0.009821 -0.513503 0.357886 0.779892 -0.630777 0.458747 -0.625837 -0.493307 -0.869800 -0.009821 -0.548184 0.302096 0.779892 -0.675383 0.390111 -0.625837 -0.399429 -0.916711 -0.009821 -0.576827 0.242979 0.779892 -0.712550 0.317177 -0.625837 -0.301151 -0.953526 -0.009821 -0.599116 0.181185 0.779892 -0.741868 0.240750 -0.625837 -0.200536 -0.979637 -0.009821 -0.614688 0.118011 0.779892 -0.762852 0.162434 -0.625837 -0.096759 -0.995259 -0.009821 -0.623671 0.052937 0.779892 -0.775675 0.081587 -0.625837 -0.039318 -0.998923 0.024645 -0.847620 0.046403 0.528571 -0.529145 -0.000108 -0.848531 0.065593 -0.997542 0.024645 -0.847815 -0.042689 0.528571 -0.526219 -0.055565 -0.848531 0.168796 -0.985343 0.024645 -0.838803 -0.130472 0.528571 -0.517608 -0.109893 -0.848531 0.271138 -0.962225 0.024645 -0.820509 -0.217666 0.528571 -0.503239 -0.163537 -0.848531 0.370492 -0.928508 0.024645 -0.793177 -0.302463 0.528571 -0.483328 -0.215380 -0.848531 0.464882 -0.885030 0.024645 -0.757492 -0.383170 0.528571 -0.458357 -0.264391 -0.848531 0.555079 -0.831433 0.024645 -0.713161 -0.460450 0.528571 -0.428123 -0.310974 -0.848531 0.639162 -0.768677 0.024645 -0.660975 -0.532659 0.528571 -0.393173 -0.354132 -0.848531 0.716204 -0.697455 0.024645 -0.601508 -0.599000 0.528571 -0.353892 -0.393389 -0.848531 0.784739 -0.619336 0.024645 -0.536074 -0.658208 0.528571 -0.311141 -0.428002 -0.848531 0.845328 -0.533678 0.024645 -0.464137 -0.710767 0.528571 -0.264570 -0.458255 -0.848531 0.896606 -0.442143 0.024645 -0.387087 -0.755498 0.528571 -0.215084 -0.483460 -0.848531 0.937662 -0.346675 0.024645 -0.306565 -0.791600 0.528571 -0.163733 -0.503176 -0.848531 0.968831 -0.246492 0.024645 -0.221912 -0.819371 0.528571 -0.110095 -0.517565 -0.848531 0.989330 -0.143594 0.024645 -0.134814 -0.838116 0.528571 -0.055244 -0.526253 -0.848531 0.998899 -0.039928 0.024645 -0.046921 -0.847592 0.528571 -0.000216 -0.529145 -0.848531 0.997582 0.064984 0.024645 0.042171 -0.847841 0.528571 0.055244 -0.526253 -0.848531 0.985277 0.169180 0.024645 0.130799 -0.838752 0.528571 0.110095 -0.517565 -0.848531 0.962119 0.271512 0.024645 0.217986 -0.820424 0.528571 0.163733 -0.503176 -0.848531 0.928735 0.369925 0.024645 0.301978 -0.793361 0.528571 0.215084 -0.483460 -0.848531 0.884849 0.465226 0.024645 0.383465 -0.757343 0.528571 0.264570 -0.458255 -0.848531 0.831217 0.555402 0.024645 0.460728 -0.712982 0.528571 0.311141 -0.428002 -0.848531 0.769068 0.638692 0.024645 0.532255 -0.661300 0.528571 0.353892 -0.393389 -0.848531 0.697893 0.715778 0.024645 0.598633 -0.601874 0.528571 0.393173 -0.354132 -0.848531 0.619030 0.784980 0.024645 0.658416 -0.535818 0.528571 0.428123 -0.310974 -0.848531 0.533350 0.845536 0.024645 0.710948 -0.463860 0.528571 0.458357 -0.264391 -0.848531 0.442690 0.896336 0.024645 0.755261 -0.387549 0.528571 0.483328 -0.215380 -0.848531 0.346310 0.937796 0.024645 0.791719 -0.306257 0.528571 0.503239 -0.163537 -0.848531 0.246115 0.968927 0.024645 0.819457 -0.221593 0.528571 0.517608 -0.109893 -0.848531 0.144198 0.989242 0.024645 0.838033 -0.135326 0.528571 0.526219 -0.055565 -0.848531 0.039724 0.998907 0.024645 0.847601 -0.046748 0.528571 0.529145 -0.000108 -0.848531 -0.065187 0.997569 0.024645 0.847833 0.042344 0.528571 0.526242 0.055351 -0.848531 -0.169380 0.985243 0.024645 0.838725 0.130970 0.528571 0.517543 0.110200 -0.848531 -0.270746 0.962335 0.024645 0.820597 0.217332 0.528571 0.503306 0.163332 -0.848531 -0.370114 0.928659 0.024645 0.793300 0.302140 0.528571 0.483416 0.215183 -0.848531 -0.465406 0.884754 0.024645 0.757264 0.383619 0.528571 0.458201 0.264663 -0.848531 -0.555571 0.831104 0.024645 0.712888 0.460873 0.528571 0.427939 0.311228 -0.848531 -0.638849 0.768938 0.024645 0.661192 0.532390 0.528571 0.393317 0.353972 -0.848531 -0.715920 0.697747 0.024645 0.601752 0.598755 0.528571 0.354052 0.393245 -0.848531 -0.785106 0.618870 0.024645 0.535684 0.658525 0.528571 0.310887 0.428186 -0.848531 -0.845111 0.534023 0.024645 0.464426 0.710578 0.528571 0.264756 0.458147 -0.848531 -0.896426 0.442508 0.024645 0.387395 0.755340 0.528571 0.215281 0.483372 -0.848531 -0.937867 0.346119 0.024645 0.306096 0.791782 0.528571 0.163435 0.503273 -0.848531 -0.968977 0.245918 0.024645 0.221426 0.819502 0.528571 0.109788 0.517630 -0.848531 -0.989271 0.143997 0.024645 0.135155 0.838061 0.528571 0.055458 0.526231 -0.848531 -0.998915 0.039521 0.024645 0.046576 0.847611 0.528571 0.000000 0.529145 -0.848531 -0.997555 -0.065390 0.024645 -0.042516 0.847824 0.528571 -0.055458 0.526231 -0.848531 -0.985377 -0.168596 0.024645 -0.130302 0.838829 0.528571 -0.109788 0.517630 -0.848531 -0.962280 -0.270942 0.024645 -0.217499 0.820553 0.528571 -0.163435 0.503273 -0.848531 -0.928584 -0.370303 0.024645 -0.302301 0.793238 0.528571 -0.215281 0.483372 -0.848531 -0.884659 -0.465586 0.024645 -0.383773 0.757186 0.528571 -0.264756 0.458147 -0.848531 -0.831546 -0.554909 0.024645 -0.460305 0.713255 0.528571 -0.310887 0.428186 -0.848531 -0.768808 -0.639005 0.024645 -0.532524 0.661083 0.528571 -0.354052 0.393245 -0.848531 -0.697601 -0.716062 0.024645 -0.598878 0.601630 0.528571 -0.393317 0.353972 -0.848531 -0.619496 -0.784613 0.024645 -0.658099 0.536208 0.528571 -0.427939 0.311228 -0.848531 -0.533850 -0.845220 0.024645 -0.710673 0.464281 0.528571 -0.458201 0.264663 -0.848531 -0.442325 -0.896516 0.024645 -0.755419 0.387241 0.528571 -0.483416 0.215183 -0.848531 -0.345928 -0.937937 0.024645 -0.791844 0.305935 0.528571 -0.503306 0.163332 -0.848531 -0.246689 -0.968781 0.024645 -0.819325 0.222079 0.528571 -0.517543 0.110200 -0.848531 -0.143795 -0.989300 0.024645 -0.838088 0.134984 0.528571 -0.526242 0.055351 -0.848531 0.762721 -0.509001 0.398968 0.450972 0.860766 0.236020 -0.463552 -0.000094 0.886070 0.811867 -0.426259 0.398968 0.358274 0.903291 0.236020 -0.460989 -0.048677 0.886070 0.851732 -0.339673 0.398968 0.262565 0.935603 0.236020 -0.453445 -0.096271 0.886070 0.882641 -0.248535 0.398968 0.163061 0.957969 0.236020 -0.440858 -0.143265 0.886070 0.903828 -0.154659 0.398968 0.061761 0.969783 0.236020 -0.423415 -0.188681 0.886070 0.915000 -0.059995 0.398968 -0.039248 0.970955 0.236020 -0.401540 -0.231618 0.886070 0.916249 0.036234 0.398968 -0.140795 0.961494 0.236020 -0.375053 -0.272426 0.886070 0.907405 0.132064 0.398968 -0.240791 0.941442 0.236020 -0.344435 -0.310234 0.886070 0.888566 0.226439 0.398968 -0.338135 0.911021 0.236020 -0.310023 -0.344625 0.886070 0.860258 0.317460 0.398968 -0.430884 0.870996 0.236020 -0.272572 -0.374947 0.886070 0.822248 0.405873 0.398968 -0.519797 0.821039 0.236020 -0.231774 -0.401449 0.886070 0.775181 0.489815 0.398968 -0.602985 0.762039 0.236020 -0.188422 -0.423530 0.886070 0.720144 0.567642 0.398968 -0.678836 0.695324 0.236020 -0.143437 -0.440802 0.886070 0.656685 0.639992 0.398968 -0.747973 0.620348 0.236020 -0.096447 -0.453408 0.886070 0.585992 0.705293 0.398968 -0.808870 0.538538 0.236020 -0.048396 -0.461019 0.886070 0.509466 0.762410 0.398968 -0.860491 0.451498 0.236020 -0.000189 -0.463552 0.886070 0.426755 0.811607 0.398968 -0.903072 0.358826 0.236020 0.048396 -0.461019 0.886070 0.339342 0.851864 0.398968 -0.935706 0.262201 0.236020 0.096447 -0.453408 0.886070 0.248192 0.882738 0.398968 -0.958033 0.162688 0.236020 0.143437 -0.440802 0.886070 0.155211 0.903734 0.398968 -0.969746 0.062354 0.236020 0.188422 -0.423530 0.886070 0.059639 0.915024 0.398968 -0.970940 -0.039626 0.236020 0.231774 -0.401449 0.886070 -0.036591 0.916235 0.398968 -0.961439 -0.141169 0.236020 0.272572 -0.374947 0.886070 -0.131510 0.907486 0.398968 -0.941589 -0.240216 0.236020 0.310023 -0.344625 0.886070 -0.225897 0.888704 0.398968 -0.911227 -0.337578 0.236020 0.344435 -0.310234 0.886070 -0.317795 0.860134 0.398968 -0.870828 -0.431222 0.236020 0.375053 -0.272426 0.886070 -0.406193 0.822090 0.398968 -0.820837 -0.520116 0.236020 0.401540 -0.231618 0.886070 -0.489342 0.775480 0.398968 -0.762407 -0.602519 0.236020 0.423415 -0.188681 0.886070 -0.567922 0.719923 0.398968 -0.695060 -0.679107 0.236020 0.440858 -0.143265 0.886070 -0.640248 0.656436 0.398968 -0.620057 -0.748214 0.236020 0.453445 -0.096271 0.886070 -0.704935 0.586423 0.398968 -0.539032 -0.808541 0.236020 0.460989 -0.048677 0.886070 -0.762514 0.509311 0.398968 -0.451323 -0.860582 0.236020 0.463552 -0.000094 0.886070 -0.811694 0.426589 0.398968 -0.358642 -0.903145 0.236020 0.461009 0.048490 0.886070 -0.851933 0.339168 0.398968 -0.262011 -0.935759 0.236020 0.453388 0.096540 0.886070 -0.882540 0.248895 0.398968 -0.163451 -0.957903 0.236020 0.440916 0.143086 0.886070 -0.903765 0.155027 0.398968 -0.062156 -0.969758 0.236020 0.423492 0.188509 0.886070 -0.915036 0.059452 0.398968 0.039824 -0.970932 0.236020 0.401402 0.231855 0.886070 -0.916227 -0.036777 0.398968 0.141365 -0.961411 0.236020 0.374891 0.272648 0.886070 -0.907459 -0.131695 0.398968 0.240408 -0.941540 0.236020 0.344561 0.310094 0.886070 -0.888658 -0.226077 0.398968 0.337764 -0.911159 0.236020 0.310164 0.344498 0.886070 -0.860070 -0.317970 0.398968 0.431400 -0.870740 0.236020 0.272350 0.375108 0.886070 -0.822413 -0.405538 0.398968 0.519463 -0.821251 0.236020 0.231937 0.401355 0.886070 -0.775381 -0.489500 0.398968 0.602675 -0.762284 0.236020 0.188595 0.423453 0.886070 -0.719807 -0.568069 0.398968 0.679248 -0.694922 0.236020 0.143175 0.440887 0.886070 -0.656305 -0.640381 0.398968 0.748340 -0.619904 0.236020 0.096179 0.453465 0.886070 -0.586279 -0.705054 0.398968 0.808651 -0.538868 0.236020 0.048584 0.460999 0.886070 -0.509156 -0.762617 0.398968 0.860674 -0.451147 0.236020 0.000000 0.463552 0.886070 -0.426424 -0.811780 0.398968 0.903218 -0.358458 0.236020 -0.048584 0.460999 0.886070 -0.339847 -0.851663 0.398968 0.935550 -0.262756 0.236020 -0.096179 0.453465 0.886070 -0.248715 -0.882590 0.398968 0.957936 -0.163256 0.236020 -0.143175 0.440887 0.886070 -0.154843 -0.903797 0.398968 0.969771 -0.061959 0.236020 -0.188595 0.423453 0.886070 -0.059266 -0.915048 0.398968 0.970924 0.040022 0.236020 -0.231937 0.401355 0.886070 0.036048 -0.916256 0.398968 0.961523 0.140599 0.236020 -0.272350 0.375108 0.886070 0.131879 -0.907432 0.398968 0.941491 0.240600 0.236020 -0.310164 0.344498 0.886070 0.226258 -0.888612 0.398968 0.911090 0.337950 0.236020 -0.344561 0.310094 0.886070 0.317285 -0.860323 0.398968 0.871084 0.430706 0.236020 -0.374891 0.272648 0.886070 0.405706 -0.822331 0.398968 0.821145 0.519630 0.236020 -0.401402 0.231855 0.886070 0.489657 -0.775281 0.398968 0.762162 0.602830 0.236020 -0.423492 0.188509 0.886070 0.568216 -0.719692 0.398968 0.694783 0.679390 0.236020 -0.440916 0.143086 0.886070 0.639859 -0.656815 0.398968 0.620500 0.747846 0.236020 -0.453388 0.096540 0.886070 0.705173 -0.586136 0.398968 0.538703 0.808760 0.236020 -0.461009 0.048490 0.886070 0.470693 0.259878 -0.843156 0.126836 -0.965641 -0.226824 -0.873133 -0.000178 -0.487482 0.440863 0.307778 -0.843156 0.227343 -0.947030 -0.226824 -0.868306 -0.091687 -0.487482 0.406530 0.351883 -0.843156 0.324429 -0.918312 -0.226824 -0.854096 -0.181333 -0.487482 0.367411 0.392552 -0.843156 0.418887 -0.879252 -0.226824 -0.830387 -0.269850 -0.487482 0.324245 0.428897 -0.843156 0.508732 -0.830507 -0.226824 -0.797531 -0.355394 -0.487482 0.277968 0.460241 -0.843156 0.592201 -0.773207 -0.226824 -0.756328 -0.436268 -0.487482 0.228201 0.486839 -0.843156 0.669977 -0.706882 -0.226824 -0.706438 -0.513133 -0.487482 0.175920 0.508075 -0.843156 0.740373 -0.632770 -0.226824 -0.648768 -0.584347 -0.487482 0.121701 0.523714 -0.843156 0.802615 -0.551689 -0.226824 -0.583951 -0.649125 -0.487482 0.066676 0.533519 -0.843156 0.855550 -0.465386 -0.226824 -0.513408 -0.706239 -0.487482 0.010392 0.537569 -0.843156 0.899614 -0.373156 -0.226824 -0.436562 -0.756158 -0.487482 -0.046007 0.535697 -0.843156 0.933769 -0.276814 -0.226824 -0.354907 -0.797748 -0.487482 -0.101370 0.528027 -0.843156 0.957461 -0.178382 -0.226824 -0.270173 -0.830282 -0.487482 -0.156153 0.514494 -0.843156 0.970883 -0.077051 -0.226824 -0.181665 -0.854025 -0.487482 -0.209215 0.495295 -0.843156 0.973611 0.025129 -0.226824 -0.091157 -0.868361 -0.487482 -0.259590 0.470851 -0.843156 0.965719 0.126246 -0.226824 -0.000356 -0.873133 -0.487482 -0.307509 0.441051 -0.843156 0.947169 0.226765 -0.226824 0.091157 -0.868361 -0.487482 -0.352041 0.406393 -0.843156 0.918186 0.324786 -0.226824 0.181665 -0.854025 -0.487482 -0.392695 0.367258 -0.843156 0.879089 0.419230 -0.226824 0.270173 -0.830282 -0.487482 -0.428699 0.324507 -0.843156 0.830818 0.508225 -0.226824 0.354907 -0.797748 -0.487482 -0.460349 0.277789 -0.843156 0.772977 0.592502 -0.226824 0.436562 -0.756158 -0.487482 -0.486928 0.228012 -0.843156 0.706621 0.670252 -0.226824 0.513408 -0.706239 -0.487482 -0.507967 0.176230 -0.843156 0.633222 0.739987 -0.226824 0.583951 -0.649125 -0.487482 -0.523640 0.122021 -0.843156 0.552179 0.802277 -0.226824 0.648768 -0.584347 -0.487482 -0.533545 0.066468 -0.843156 0.465053 0.855731 -0.226824 0.706438 -0.513133 -0.487482 -0.537573 0.010183 -0.843156 0.372806 0.899759 -0.226824 0.756328 -0.436268 -0.487482 -0.535725 -0.045679 -0.843156 0.277385 0.933600 -0.226824 0.797531 -0.355394 -0.487482 -0.527987 -0.101575 -0.843156 0.178009 0.957530 -0.226824 0.830387 -0.269850 -0.487482 -0.514433 -0.156353 -0.843156 0.076673 0.970913 -0.226824 0.854096 -0.181333 -0.487482 -0.495422 -0.208913 -0.843156 -0.024534 0.973627 -0.226824 0.868306 -0.091687 -0.487482 -0.470798 -0.259686 -0.843156 -0.126442 0.965693 -0.226824 0.873133 -0.000178 -0.487482 -0.440989 -0.307599 -0.843156 -0.226958 0.947123 -0.226824 0.868343 0.091334 -0.487482 -0.406321 -0.352124 -0.843156 -0.324973 0.918119 -0.226824 0.853988 0.181839 -0.487482 -0.367571 -0.392402 -0.843156 -0.418529 0.879423 -0.226824 0.830497 0.269512 -0.487482 -0.324420 -0.428765 -0.843156 -0.508394 0.830714 -0.226824 0.797676 0.355069 -0.487482 -0.277696 -0.460405 -0.843156 -0.592659 0.772856 -0.226824 0.756069 0.436716 -0.487482 -0.227912 -0.486974 -0.843156 -0.670396 0.706484 -0.226824 0.706134 0.513552 -0.487482 -0.176127 -0.508003 -0.843156 -0.740116 0.633072 -0.226824 0.649006 0.584083 -0.487482 -0.121915 -0.523665 -0.843156 -0.802390 0.552016 -0.226824 0.584215 0.648887 -0.487482 -0.066359 -0.533558 -0.843156 -0.855826 0.464879 -0.226824 0.512990 0.706543 -0.487482 -0.010611 -0.537564 -0.843156 -0.899462 0.373522 -0.226824 0.436870 0.755980 -0.487482 0.045788 -0.535716 -0.843156 -0.933656 0.277195 -0.226824 0.355232 0.797604 -0.487482 0.101683 -0.527966 -0.843156 -0.957566 0.177814 -0.226824 0.269681 0.830442 -0.487482 0.156458 -0.514402 -0.843156 -0.970929 0.076475 -0.226824 0.181159 0.854133 -0.487482 0.209014 -0.495380 -0.843156 -0.973622 -0.024733 -0.226824 0.091511 0.868324 -0.487482 0.259782 -0.470745 -0.843156 -0.965667 -0.126639 -0.226824 0.000000 0.873133 -0.487482 0.307689 -0.440926 -0.843156 -0.947076 -0.227150 -0.226824 -0.091511 0.868324 -0.487482 0.351800 -0.406602 -0.843156 -0.918378 -0.324242 -0.226824 -0.181159 0.854133 -0.487482 0.392477 -0.367491 -0.843156 -0.879337 -0.418708 -0.226824 -0.269681 0.830442 -0.487482 0.428831 -0.324333 -0.843156 -0.830611 -0.508563 -0.226824 -0.355232 0.797604 -0.487482 0.460462 -0.277602 -0.843156 -0.772735 -0.592816 -0.226824 -0.436870 0.755980 -0.487482 0.486793 -0.228300 -0.843156 -0.707018 -0.669833 -0.226824 -0.512990 0.706543 -0.487482 0.508039 -0.176023 -0.843156 -0.632921 -0.740244 -0.226824 -0.584215 0.648887 -0.487482 0.523690 -0.121808 -0.843156 -0.551852 -0.802502 -0.226824 -0.649006 0.584083 -0.487482 0.533505 -0.066784 -0.843156 -0.465561 -0.855455 -0.226824 -0.706134 0.513552 -0.487482 0.537566 -0.010501 -0.843156 -0.373339 -0.899538 -0.226824 -0.756069 0.436716 -0.487482 0.535706 0.045897 -0.843156 -0.277005 -0.933713 -0.226824 -0.797676 0.355069 -0.487482 0.527946 0.101791 -0.843156 -0.177619 -0.957602 -0.226824 -0.830497 0.269512 -0.487482 0.514526 0.156048 -0.843156 -0.077248 -0.970867 -0.226824 -0.853988 0.181839 -0.487482 0.495337 0.209115 -0.843156 0.024931 -0.973617 -0.226824 -0.868343 0.091334 -0.487482 0.409787 -0.716020 -0.565146 -0.420127 -0.698080 0.579809 -0.809672 -0.000165 -0.586883 0.482574 -0.669128 -0.565146 -0.344649 -0.738267 0.579809 -0.805195 -0.085023 -0.586883 0.549430 -0.615415 -0.565146 -0.266145 -0.770057 0.579809 -0.792018 -0.168153 -0.586883 0.610904 -0.554442 -0.565146 -0.183972 -0.793710 0.579809 -0.770033 -0.250237 -0.586883 0.665649 -0.487361 -0.565146 -0.099772 -0.808621 0.579809 -0.739565 -0.329563 -0.586883 0.712647 -0.415625 -0.565146 -0.015288 -0.814609 0.579809 -0.701356 -0.404559 -0.586883 0.752283 -0.338645 -0.565146 0.070173 -0.811725 0.579809 -0.655093 -0.475838 -0.586883 0.783632 -0.257936 -0.565146 0.154861 -0.799900 0.579809 -0.601614 -0.541876 -0.586883 0.806350 -0.174385 -0.565146 0.237843 -0.779264 0.579809 -0.541508 -0.601945 -0.586883 0.820096 -0.089733 -0.565146 0.317456 -0.750362 0.579809 -0.476093 -0.654908 -0.586883 0.824984 -0.003287 -0.565146 0.394351 -0.712958 0.579809 -0.404832 -0.701199 -0.586883 0.820785 0.083195 -0.565146 0.466902 -0.667701 0.579809 -0.329111 -0.739766 -0.586883 0.807714 0.167953 -0.565146 0.533695 -0.615623 0.579809 -0.250536 -0.769935 -0.586883 0.785663 0.251683 -0.565146 0.595277 -0.556297 0.579809 -0.168462 -0.791953 -0.586883 0.754957 0.332640 -0.565146 0.650303 -0.490844 0.579809 -0.084531 -0.805247 -0.586883 0.716270 0.409349 -0.565146 0.697823 -0.420553 0.579809 -0.000330 -0.809672 -0.586883 0.669423 0.482165 -0.565146 0.738057 -0.345100 0.579809 0.084531 -0.805247 -0.586883 0.615201 0.549670 -0.565146 0.770161 -0.265846 0.579809 0.168462 -0.791953 -0.586883 0.554204 0.611120 -0.565146 0.793782 -0.183663 0.579809 0.250536 -0.769935 -0.586883 0.487768 0.665351 -0.565146 0.808559 -0.100266 0.579809 0.329111 -0.739766 -0.586883 0.415348 0.712809 -0.565146 0.814615 -0.014971 0.579809 0.404832 -0.701199 -0.586883 0.338353 0.752414 -0.565146 0.811698 0.070489 0.579809 0.476093 -0.654908 -0.586883 0.258414 0.783474 -0.565146 0.799994 0.154372 0.579809 0.541508 -0.601945 -0.586883 0.174877 0.806243 -0.565146 0.779409 0.237367 0.579809 0.601614 -0.541876 -0.586883 0.089414 0.820131 -0.565146 0.750239 0.317748 0.579809 0.655093 -0.475838 -0.586883 0.002966 0.824985 -0.565146 0.712805 0.394628 0.579809 0.701356 -0.404559 -0.586883 -0.082694 0.820836 -0.565146 0.667986 0.466494 0.579809 0.739565 -0.329563 -0.586883 -0.168268 0.807648 -0.565146 0.615415 0.533934 0.579809 0.770033 -0.250237 -0.586883 -0.251988 0.785565 -0.565146 0.556066 0.595494 0.579809 0.792018 -0.168153 -0.586883 -0.332178 0.755160 -0.565146 0.491241 0.650003 0.579809 0.805195 -0.085023 -0.586883 -0.409495 0.716187 -0.565146 0.420411 0.697909 0.579809 0.809672 -0.000165 -0.586883 -0.482301 0.669324 -0.565146 0.344950 0.738127 0.579809 0.805230 0.084695 -0.586883 -0.549795 0.615090 -0.565146 0.265689 0.770215 0.579809 0.791918 0.168623 -0.586883 -0.610678 0.554690 -0.565146 0.184295 0.793635 0.579809 0.770134 0.249923 -0.586883 -0.665451 0.487632 -0.565146 0.100102 0.808580 0.579809 0.739699 0.329262 -0.586883 -0.712893 0.415202 -0.565146 0.014805 0.814618 0.579809 0.701116 0.404974 -0.586883 -0.752483 0.338199 -0.565146 -0.070654 0.811683 0.579809 0.654811 0.476226 -0.586883 -0.783527 0.258255 -0.565146 -0.154535 0.799963 0.579809 0.601834 0.541631 -0.586883 -0.806278 0.174713 -0.565146 -0.237526 0.779361 0.579809 0.541753 0.601724 -0.586883 -0.820149 0.089247 -0.565146 -0.317900 0.750174 0.579809 0.475704 0.655190 -0.586883 -0.824983 0.003623 -0.565146 -0.394060 0.713119 0.579809 0.405117 0.701034 -0.586883 -0.820819 -0.082861 -0.565146 -0.466630 0.667891 0.579809 0.329413 0.739632 -0.586883 -0.807614 -0.168432 -0.565146 -0.534060 0.615306 0.579809 0.250080 0.770083 -0.586883 -0.785513 -0.252148 -0.565146 -0.595607 0.555944 0.579809 0.167992 0.792052 -0.586883 -0.755093 -0.332332 -0.565146 -0.650103 0.491109 0.579809 0.084859 0.805213 -0.586883 -0.716103 -0.409641 -0.565146 -0.697994 0.420269 0.579809 0.000000 0.809672 -0.586883 -0.669226 -0.482438 -0.565146 -0.738197 0.344799 0.579809 -0.084859 0.805213 -0.586883 -0.615527 -0.549305 -0.565146 -0.770003 0.266302 0.579809 -0.167992 0.792052 -0.586883 -0.554566 -0.610791 -0.565146 -0.793673 0.184134 0.579809 -0.250080 0.770083 -0.586883 -0.487497 -0.665550 -0.565146 -0.808600 0.099937 0.579809 -0.329413 0.739632 -0.586883 -0.415057 -0.712978 -0.565146 -0.814621 0.014640 0.579809 -0.405117 0.701034 -0.586883 -0.338799 -0.752214 -0.565146 -0.811739 -0.070008 0.579809 -0.475704 0.655190 -0.586883 -0.258095 -0.783579 -0.565146 -0.799931 -0.154698 0.579809 -0.541753 0.601724 -0.586883 -0.174549 -0.806314 -0.565146 -0.779312 -0.237685 0.579809 -0.601834 0.541631 -0.586883 -0.089900 -0.820078 -0.565146 -0.750427 -0.317303 0.579809 -0.654811 0.476226 -0.586883 -0.003455 -0.824983 -0.565146 -0.713039 -0.394205 0.579809 -0.701116 0.404974 -0.586883 0.083028 -0.820802 -0.565146 -0.667796 -0.466766 0.579809 -0.739699 0.329262 -0.586883 0.168597 -0.807580 -0.565146 -0.615198 -0.534185 0.579809 -0.770134 0.249923 -0.586883 0.251523 -0.785714 -0.565146 -0.556419 -0.595164 0.579809 -0.791918 0.168623 -0.586883 0.332486 -0.755025 -0.565146 -0.490977 -0.650203 0.579809 -0.805230 0.084695 -0.586883 -0.061489 0.937286 -0.343095 -0.164778 -0.348561 -0.922688 -0.984412 -0.000200 0.175877 -0.159384 0.925679 -0.343095 -0.127339 -0.363912 -0.922688 -0.978970 -0.103373 0.175877 -0.254620 0.904132 -0.343095 -0.088872 -0.375165 -0.922688 -0.962949 -0.204444 0.175877 -0.347978 0.872466 -0.343095 -0.049063 -0.382413 -0.922688 -0.936218 -0.304242 0.175877 -0.437502 0.831191 -0.343095 -0.008713 -0.385449 -0.922688 -0.899175 -0.400688 0.175877 -0.521426 0.781281 -0.343095 0.031349 -0.384271 -0.922688 -0.852720 -0.491869 0.175877 -0.600438 0.722329 -0.343095 0.071450 -0.378869 -0.922688 -0.796473 -0.578531 0.175877 -0.672837 0.655421 -0.343095 0.110765 -0.369294 -0.922688 -0.731452 -0.658821 0.175877 -0.737824 0.581293 -0.343095 0.148860 -0.355651 -0.922688 -0.658374 -0.731854 0.175877 -0.794183 0.501557 -0.343095 0.184976 -0.338276 -0.922688 -0.578841 -0.796248 0.175877 -0.842376 0.415558 -0.343095 0.219411 -0.317026 -0.922688 -0.492201 -0.852529 0.175877 -0.881290 0.324983 -0.343095 0.251430 -0.292284 -0.922688 -0.400139 -0.899420 0.175877 -0.910266 0.231738 -0.343095 0.280414 -0.264603 -0.922688 -0.304606 -0.936100 0.175877 -0.929540 0.135059 -0.343095 0.306602 -0.233757 -0.922688 -0.204818 -0.962869 0.175877 -0.938576 0.036893 -0.343095 0.329413 -0.200335 -0.922688 -0.102775 -0.979033 0.175877 -0.937323 -0.060916 -0.343095 0.348461 -0.164991 -0.922688 -0.000401 -0.984412 0.175877 -0.925777 -0.158819 -0.343095 0.363834 -0.127561 -0.922688 0.102775 -0.979033 0.175877 -0.904033 -0.254972 -0.343095 0.375199 -0.088726 -0.922688 0.204818 -0.962869 0.175877 -0.872331 -0.348317 -0.343095 0.382432 -0.048914 -0.922688 0.304606 -0.936100 0.175877 -0.831458 -0.436994 -0.343095 0.385444 -0.008948 -0.922688 0.400139 -0.899420 0.175877 -0.781079 -0.521730 -0.343095 0.384259 0.031498 -0.922688 0.492201 -0.852529 0.175877 -0.722096 -0.600719 -0.343095 0.378841 0.071598 -0.922688 0.578841 -0.796248 0.175877 -0.655832 -0.672436 -0.343095 0.369361 0.110539 -0.922688 0.658374 -0.731854 0.175877 -0.581744 -0.737469 -0.343095 0.355742 0.148642 -0.922688 0.731452 -0.658821 0.175877 -0.501248 -0.794378 -0.343095 0.338204 0.185108 -0.922688 0.796473 -0.578531 0.175877 -0.415231 -0.842537 -0.343095 0.316941 0.219535 -0.922688 0.852720 -0.491869 0.175877 -0.325521 -0.881091 -0.343095 0.292438 0.251251 -0.922688 0.899175 -0.400688 0.175877 -0.231384 -0.910356 -0.343095 0.264494 0.280517 -0.922688 0.936218 -0.304242 0.175877 -0.134698 -0.929593 -0.343095 0.233637 0.306693 -0.922688 0.962949 -0.204444 0.175877 -0.037466 -0.938553 -0.343095 0.200536 0.329290 -0.922688 0.978970 -0.103373 0.175877 0.061107 -0.937311 -0.343095 0.164920 0.348494 -0.922688 0.984412 -0.000200 0.175877 0.159007 -0.925744 -0.343095 0.127487 0.363860 -0.922688 0.979012 0.102974 0.175877 0.255156 -0.903981 -0.343095 0.088650 0.375217 -0.922688 0.962827 0.205014 0.175877 0.347622 -0.872608 -0.343095 0.049218 0.382393 -0.922688 0.936342 0.303860 0.175877 0.437163 -0.831369 -0.343095 0.008870 0.385445 -0.922688 0.899338 0.400322 0.175877 0.521889 -0.780972 -0.343095 -0.031576 0.384252 -0.922688 0.852429 0.492374 0.175877 0.600866 -0.721973 -0.343095 -0.071675 0.378827 -0.922688 0.796130 0.579003 0.175877 0.672570 -0.655695 -0.343095 -0.110615 0.369339 -0.922688 0.731720 0.658523 0.175877 0.737587 -0.581594 -0.343095 -0.148715 0.355712 -0.922688 0.658672 0.731586 0.175877 0.794480 -0.501086 -0.343095 -0.185177 0.338166 -0.922688 0.578369 0.796590 0.175877 0.842206 -0.415902 -0.343095 -0.219282 0.317115 -0.922688 0.492548 0.852328 0.175877 0.881157 -0.325342 -0.343095 -0.251311 0.292386 -0.922688 0.400505 0.899257 0.175877 0.910403 -0.231198 -0.343095 -0.280571 0.264437 -0.922688 0.304051 0.936280 0.175877 0.929620 -0.134508 -0.343095 -0.306740 0.233575 -0.922688 0.204248 0.962990 0.175877 0.938561 -0.037275 -0.343095 -0.329331 0.200469 -0.922688 0.103173 0.978991 0.175877 0.937298 0.061298 -0.343095 -0.348528 0.164849 -0.922688 0.000000 0.984412 0.175877 0.925712 0.159196 -0.343095 -0.363886 0.127413 -0.922688 -0.103173 0.978991 0.175877 0.904184 0.254436 -0.343095 -0.375147 0.088948 -0.922688 -0.204248 0.962990 0.175877 0.872537 0.347800 -0.343095 -0.382403 0.049141 -0.922688 -0.304051 0.936280 0.175877 0.831280 0.437333 -0.343095 -0.385447 0.008791 -0.922688 -0.400505 0.899257 0.175877 0.780866 0.522048 -0.343095 -0.384246 -0.031655 -0.922688 -0.492548 0.852328 0.175877 0.722452 0.600291 -0.343095 -0.378883 -0.071373 -0.922688 -0.578369 0.796590 0.175877 0.655558 0.672703 -0.343095 -0.369316 -0.110690 -0.922688 -0.658672 0.731586 0.175877 0.581443 0.737706 -0.343095 -0.355681 -0.148787 -0.922688 -0.731720 0.658523 0.175877 0.501719 0.794081 -0.343095 -0.338314 -0.184908 -0.922688 -0.796130 0.579003 0.175877 0.415730 0.842291 -0.343095 -0.317071 -0.219347 -0.922688 -0.852429 0.492374 0.175877 0.325162 0.881224 -0.343095 -0.292335 -0.251370 -0.922688 -0.899338 0.400322 0.175877 0.231013 0.910450 -0.343095 -0.264380 -0.280625 -0.922688 -0.936342 0.303860 0.175877 0.135249 0.929513 -0.343095 -0.233819 -0.306554 -0.922688 -0.962827 0.205014 0.175877 0.037084 0.938568 -0.343095 -0.200402 -0.329372 -0.922688 -0.979012 0.102974 0.175877 -0.163667 0.236500 0.957748 0.039634 0.971631 -0.233155 -0.985719 -0.000201 -0.168397 -0.187553 0.218044 0.957748 -0.062419 0.970434 -0.233155 -0.980269 -0.103510 -0.168397 -0.209175 0.197396 0.957748 -0.162825 0.958711 -0.233155 -0.964227 -0.204715 -0.168397 -0.228711 0.174385 0.957748 -0.262408 0.936366 -0.233155 -0.937461 -0.304646 -0.168397 -0.245729 0.149454 0.957748 -0.359100 0.903707 -0.233155 -0.900369 -0.401220 -0.168397 -0.259916 0.123137 0.957748 -0.450976 0.861545 -0.233155 -0.853852 -0.492522 -0.168397 -0.271390 0.095218 0.957748 -0.538788 0.809534 -0.233155 -0.797530 -0.579300 -0.168397 -0.279875 0.066250 0.957748 -0.620666 0.748607 -0.233155 -0.732423 -0.659696 -0.168397 -0.285277 0.036552 0.957748 -0.695707 0.679434 -0.233155 -0.659248 -0.732826 -0.168397 -0.287530 0.006739 0.957748 -0.762482 0.603539 -0.233155 -0.579610 -0.797305 -0.168397 -0.286653 -0.023433 0.957748 -0.821538 0.520302 -0.233155 -0.492854 -0.853661 -0.168397 -0.282618 -0.053348 0.957748 -0.871545 0.431333 -0.233155 -0.400670 -0.900614 -0.168397 -0.275553 -0.082399 0.957748 -0.911613 0.338525 -0.233155 -0.305010 -0.937343 -0.168397 -0.265400 -0.110825 0.957748 -0.942073 0.241117 -0.233155 -0.205090 -0.964147 -0.168397 -0.252323 -0.138030 0.957748 -0.962155 0.141053 -0.233155 -0.102911 -0.980332 -0.168397 -0.236600 -0.163523 0.957748 -0.971607 0.040227 -0.233155 -0.000401 -0.985719 -0.168397 -0.218158 -0.187419 0.957748 -0.970472 -0.061826 -0.233155 0.102911 -0.980332 -0.168397 -0.197314 -0.209252 0.957748 -0.958648 -0.163198 -0.233155 0.205090 -0.964147 -0.168397 -0.174296 -0.228779 0.957748 -0.936264 -0.262772 -0.233155 0.305010 -0.937343 -0.168397 -0.149604 -0.245637 0.957748 -0.903926 -0.358548 -0.233155 0.400670 -0.900614 -0.168397 -0.123036 -0.259964 0.957748 -0.861369 -0.451311 -0.233155 0.492854 -0.853661 -0.168397 -0.095112 -0.271427 0.957748 -0.809325 -0.539103 -0.233155 0.579610 -0.797305 -0.168397 -0.066421 -0.279835 0.957748 -0.748986 -0.620209 -0.233155 0.659248 -0.732826 -0.168397 -0.036726 -0.285255 0.957748 -0.679859 -0.695292 -0.233155 0.732423 -0.659696 -0.168397 -0.006627 -0.287533 0.957748 -0.603243 -0.762717 -0.233155 0.797530 -0.579300 -0.168397 0.023545 -0.286644 0.957748 -0.519982 -0.821740 -0.233155 0.853852 -0.492522 -0.168397 0.053175 -0.282651 0.957748 -0.431866 -0.871281 -0.233155 0.900369 -0.401220 -0.168397 0.082506 -0.275521 0.957748 -0.338171 -0.911745 -0.233155 0.937461 -0.304646 -0.168397 0.110928 -0.265357 0.957748 -0.240751 -0.942166 -0.233155 0.964227 -0.204715 -0.168397 0.137876 -0.252407 0.957748 -0.141641 -0.962069 -0.233155 0.980269 -0.103510 -0.168397 0.163571 -0.236567 0.957748 -0.040029 -0.971615 -0.233155 0.985719 -0.000201 -0.168397 0.187464 -0.218120 0.957748 0.062023 -0.970460 -0.233155 0.980311 0.103111 -0.168397 0.209292 -0.197271 0.957748 0.163393 -0.958614 -0.233155 0.964106 0.205287 -0.168397 0.228640 -0.174478 0.957748 0.262026 -0.936473 -0.233155 0.937585 0.304264 -0.168397 0.245668 -0.149554 0.957748 0.358732 -0.903853 -0.233155 0.900532 0.400854 -0.168397 0.259989 -0.122983 0.957748 0.451487 -0.861277 -0.233155 0.853561 0.493028 -0.168397 0.271447 -0.095057 0.957748 0.539268 -0.809215 -0.233155 0.797187 0.579772 -0.168397 0.279848 -0.066364 0.957748 0.620361 -0.748860 -0.233155 0.732692 0.659398 -0.168397 0.285262 -0.036668 0.957748 0.695430 -0.679717 -0.233155 0.659547 0.732557 -0.168397 0.287534 -0.006569 0.957748 0.762840 -0.603087 -0.233155 0.579137 0.797648 -0.168397 0.286663 0.023316 0.957748 0.821326 -0.520636 -0.233155 0.493202 0.853460 -0.168397 0.282640 0.053232 0.957748 0.871369 -0.431688 -0.233155 0.401037 0.900451 -0.168397 0.275504 0.082562 0.957748 0.911814 -0.337985 -0.233155 0.304455 0.937523 -0.168397 0.265334 0.110982 0.957748 0.942215 -0.240559 -0.233155 0.204519 0.964269 -0.168397 0.252379 0.137927 0.957748 0.962098 -0.141445 -0.233155 0.103310 0.980290 -0.168397 0.236533 0.163619 0.957748 0.971623 -0.039832 -0.233155 0.000000 0.985719 -0.168397 0.218082 0.187508 0.957748 0.970447 0.062221 -0.233155 -0.103310 0.980290 -0.168397 0.197438 0.209135 0.957748 0.958744 0.162629 -0.233155 -0.204519 0.964269 -0.168397 0.174432 0.228676 0.957748 0.936419 0.262217 -0.233155 -0.304455 0.937523 -0.168397 0.149504 0.245698 0.957748 0.903780 0.358916 -0.233155 -0.401037 0.900451 -0.168397 0.122930 0.260014 0.957748 0.861185 0.451662 -0.233155 -0.493202 0.853460 -0.168397 0.095273 0.271371 0.957748 0.809644 0.538624 -0.233155 -0.579137 0.797648 -0.168397 0.066307 0.279862 0.957748 0.748733 0.620514 -0.233155 -0.659547 0.732557 -0.168397 0.036610 0.285270 0.957748 0.679575 0.695569 -0.233155 -0.732692 0.659398 -0.168397 0.006798 0.287529 0.957748 0.603695 0.762359 -0.233155 -0.797187 0.579772 -0.168397 -0.023375 0.286658 0.957748 0.520469 0.821432 -0.233155 -0.853561 0.493028 -0.168397 -0.053290 0.282629 0.957748 0.431511 0.871457 -0.233155 -0.900532 0.400854 -0.168397 -0.082618 0.275488 0.957748 0.337799 0.911883 -0.233155 -0.937585 0.304264 -0.168397 -0.110771 0.265422 0.957748 0.241309 0.942024 -0.233155 -0.964106 0.205287 -0.168397 -0.137979 0.252351 0.957748 0.141249 0.962126 -0.233155 -0.980311 0.103111 -0.168397 0.136627 -0.678094 0.722165 0.125786 0.734975 0.666325 -0.982604 -0.000200 0.185712 0.206944 -0.660040 0.722165 0.048062 0.744111 0.666325 -0.977172 -0.103183 0.185712 0.274346 -0.634990 0.722165 -0.029446 0.745080 0.666325 -0.961180 -0.204068 0.185712 0.339387 -0.602739 0.722165 -0.107373 0.737890 0.666325 -0.934499 -0.303683 0.185712 0.400689 -0.563850 0.722165 -0.184118 0.722573 0.666325 -0.897524 -0.399953 0.185712 0.457059 -0.519207 0.722165 -0.258135 0.699555 0.666325 -0.851154 -0.490966 0.185712 0.508958 -0.468444 0.722165 -0.330032 0.668648 0.666325 -0.795010 -0.577469 0.185712 0.555251 -0.412522 0.722165 -0.398293 0.630375 0.666325 -0.730109 -0.657611 0.185712 0.595428 -0.352056 0.722165 -0.462168 0.585160 0.666325 -0.657165 -0.730510 0.185712 0.628759 -0.288340 0.722165 -0.520418 0.534019 0.666325 -0.577778 -0.794785 0.185712 0.655516 -0.220854 0.722165 -0.573520 0.476535 0.666325 -0.491297 -0.850963 0.185712 0.675053 -0.150935 0.722165 -0.620306 0.413801 0.666325 -0.399404 -0.897768 0.185712 0.687075 -0.080040 0.722165 -0.659912 0.347170 0.666325 -0.304046 -0.934380 0.185712 0.691679 -0.007589 0.722165 -0.692664 0.276094 0.666325 -0.204442 -0.961101 0.185712 0.688665 0.064946 0.722165 -0.717786 0.201977 0.666325 -0.102586 -0.977234 0.185712 0.678177 0.136213 0.722165 -0.734898 0.126235 0.666325 -0.000400 -0.982604 0.185712 0.660166 0.206540 0.722165 -0.744081 0.048517 0.666325 0.102586 -0.977234 0.185712 0.634883 0.274593 0.722165 -0.745068 -0.029736 0.666325 0.204442 -0.961101 0.185712 0.602607 0.339621 0.722165 -0.737848 -0.107660 0.666325 0.304046 -0.934380 0.185712 0.564094 0.400344 0.722165 -0.722685 -0.183676 0.666325 0.399404 -0.897768 0.185712 0.519029 0.457260 0.722165 -0.699454 -0.258407 0.666325 0.491297 -0.850963 0.185712 0.468246 0.509140 0.722165 -0.668519 -0.330292 0.666325 0.577778 -0.794785 0.185712 0.412861 0.554999 0.722165 -0.630619 -0.397908 0.666325 0.657165 -0.730510 0.185712 0.352419 0.595213 0.722165 -0.585442 -0.461810 0.666325 0.730109 -0.657611 0.185712 0.288096 0.628871 0.722165 -0.533817 -0.520625 0.666325 0.795010 -0.577469 0.185712 0.220599 0.655602 0.722165 -0.476311 -0.573706 0.666325 0.851154 -0.490966 0.185712 0.151347 0.674961 0.722165 -0.414180 -0.620053 0.666325 0.897524 -0.399953 0.185712 0.079773 0.687106 0.722165 -0.346913 -0.660047 0.666325 0.934499 -0.303683 0.185712 0.007320 0.691682 0.722165 -0.275825 -0.692771 0.666325 0.961180 -0.204068 0.185712 -0.064525 0.688705 0.722165 -0.202416 -0.717662 0.666325 0.977172 -0.103183 0.185712 -0.136351 0.678149 0.722165 -0.126085 -0.734924 0.666325 0.982604 -0.000200 0.185712 -0.206675 0.660124 0.722165 -0.048365 -0.744091 0.666325 0.977214 0.102785 0.185712 -0.274722 0.634827 0.722165 0.029887 -0.745062 0.666325 0.961059 0.204638 0.185712 -0.339141 0.602878 0.722165 0.107073 -0.737934 0.666325 0.934622 0.303302 0.185712 -0.400459 0.564013 0.722165 0.183824 -0.722648 0.666325 0.897687 0.399587 0.185712 -0.457366 0.518936 0.722165 0.258550 -0.699402 0.666325 0.850863 0.491470 0.185712 -0.509235 0.468142 0.722165 0.330428 -0.668452 0.666325 0.794667 0.577940 0.185712 -0.555083 0.412748 0.722165 0.398037 -0.630538 0.666325 0.730376 0.657314 0.185712 -0.595285 0.352298 0.722165 0.461929 -0.585348 0.666325 0.657463 0.730242 0.185712 -0.628930 0.287968 0.722165 0.520734 -0.533711 0.666325 0.577307 0.795127 0.185712 -0.655426 0.221121 0.722165 0.573326 -0.476768 0.666325 0.491643 0.850763 0.185712 -0.674992 0.151210 0.722165 0.620138 -0.414054 0.666325 0.399770 0.897605 0.185712 -0.687122 0.079633 0.722165 0.660118 -0.346778 0.666325 0.303493 0.934560 0.185712 -0.691684 0.007179 0.722165 0.692827 -0.275683 0.666325 0.203872 0.961222 0.185712 -0.688692 -0.064665 0.722165 0.717703 -0.202270 0.666325 0.102984 0.977193 0.185712 -0.678122 -0.136489 0.722165 0.734950 -0.125935 0.666325 0.000000 0.982604 0.185712 -0.660082 -0.206809 0.722165 0.744101 -0.048214 0.666325 -0.102984 0.977193 0.185712 -0.635046 -0.274217 0.722165 0.745086 0.029294 0.666325 -0.203872 0.961222 0.185712 -0.602808 -0.339264 0.722165 0.737912 0.107223 0.666325 -0.303493 0.934560 0.185712 -0.563931 -0.400574 0.722165 0.722610 0.183971 0.666325 -0.399770 0.897605 0.185712 -0.518842 -0.457472 0.722165 0.699349 0.258692 0.666325 -0.491643 0.850763 0.185712 -0.468548 -0.508862 0.722165 0.668715 0.329896 0.666325 -0.577307 0.795127 0.185712 -0.412635 -0.555167 0.722165 0.630457 0.398165 0.666325 -0.657463 0.730242 0.185712 -0.352177 -0.595357 0.722165 0.585254 0.462049 0.666325 -0.730376 0.657314 0.185712 -0.288468 -0.628700 0.722165 0.534125 0.520309 0.666325 -0.794667 0.577940 0.185712 -0.220987 -0.655471 0.722165 0.476651 0.573423 0.666325 -0.850863 0.491470 0.185712 -0.151072 -0.675022 0.722165 0.413927 0.620222 0.666325 -0.897687 0.399587 0.185712 -0.079493 -0.687138 0.722165 0.346644 0.660188 0.666325 -0.934622 0.303302 0.185712 -0.007730 -0.691678 0.722165 0.276235 0.692607 0.666325 -0.961059 0.204638 0.185712 0.064806 -0.688679 0.722165 0.202124 0.717744 0.666325 -0.977214 0.102785 0.185712 -0.722904 0.545194 -0.424468 -0.470078 -0.838310 -0.276159 -0.506396 -0.000103 0.862301 -0.776063 0.466426 -0.424468 -0.379628 -0.882960 -0.276159 -0.503596 -0.053176 0.862301 -0.820291 0.383341 -0.424468 -0.285914 -0.917600 -0.276159 -0.495355 -0.105169 0.862301 -0.855950 0.295257 -0.424468 -0.188169 -0.942512 -0.276159 -0.481604 -0.156506 0.862301 -0.882181 0.203921 -0.424468 -0.088350 -0.957043 -0.276159 -0.462549 -0.206120 0.862301 -0.898584 0.111238 -0.424468 0.011480 -0.961043 -0.276159 -0.438652 -0.253025 0.862301 -0.905293 0.016448 -0.424468 0.112141 -0.954547 -0.276159 -0.409717 -0.297605 0.862301 -0.902031 -0.078524 -0.424468 0.211567 -0.937537 -0.276159 -0.376269 -0.338907 0.862301 -0.888834 -0.172631 -0.424468 0.308662 -0.910200 -0.276159 -0.338677 -0.376476 0.862301 -0.866110 -0.263971 -0.424468 0.401485 -0.873239 -0.276159 -0.297764 -0.409601 0.862301 -0.833674 -0.353291 -0.424468 0.490796 -0.826351 -0.276159 -0.253195 -0.438553 0.862301 -0.792055 -0.438721 -0.424468 0.574700 -0.770361 -0.276159 -0.205837 -0.462675 0.862301 -0.742231 -0.518575 -0.424468 0.651568 -0.706538 -0.276159 -0.156694 -0.481543 0.862301 -0.683792 -0.593511 -0.424468 0.722030 -0.634358 -0.276159 -0.105362 -0.495314 0.862301 -0.617822 -0.661908 -0.424468 0.784538 -0.555190 -0.276159 -0.052869 -0.503629 0.862301 -0.545636 -0.722571 -0.424468 0.838022 -0.470590 -0.276159 -0.000206 -0.506396 0.862301 -0.466900 -0.775778 -0.424468 0.882728 -0.380167 -0.276159 0.052869 -0.503629 0.862301 -0.383022 -0.820440 -0.424468 0.917711 -0.285557 -0.276159 0.105362 -0.495314 0.862301 -0.294924 -0.856065 -0.424468 0.942585 -0.187802 -0.276159 0.156694 -0.481543 0.862301 -0.204460 -0.882056 -0.424468 0.956989 -0.088935 -0.276159 0.205837 -0.462675 0.862301 -0.110889 -0.898627 -0.424468 0.961039 0.011854 -0.276159 0.253195 -0.438553 0.862301 -0.016095 -0.905300 -0.424468 0.954504 0.112513 -0.276159 0.297764 -0.409601 0.862301 0.077973 -0.902079 -0.424468 0.937666 0.210994 -0.276159 0.338677 -0.376476 0.862301 0.172088 -0.888939 -0.424468 0.910388 0.308106 -0.276159 0.376269 -0.338907 0.862301 0.264308 -0.866007 -0.424468 0.873083 0.401825 -0.276159 0.409717 -0.297605 0.862301 0.353616 -0.833536 -0.424468 0.826160 0.491117 -0.276159 0.438652 -0.253025 0.862301 0.438237 -0.792323 -0.424468 0.770712 0.574229 -0.276159 0.462549 -0.206120 0.862301 0.518864 -0.742029 -0.424468 0.706284 0.651843 -0.276159 0.481604 -0.156506 0.862301 0.593777 -0.683561 -0.424468 0.634077 0.722277 -0.276159 0.495355 -0.105169 0.862301 0.661531 -0.618227 -0.424468 0.555669 0.784199 -0.276159 0.503596 -0.053176 0.862301 0.722682 -0.545489 -0.424468 0.470419 0.838118 -0.276159 0.506396 -0.000103 0.862301 0.775873 -0.466742 -0.424468 0.379988 0.882806 -0.276159 0.503618 0.052971 0.862301 0.820518 -0.382854 -0.424468 0.285370 0.917769 -0.276159 0.495292 0.105462 0.862301 0.855829 -0.295606 -0.424468 0.188552 0.942435 -0.276159 0.481668 0.156310 0.862301 0.882098 -0.204281 -0.424468 0.088740 0.957007 -0.276159 0.462633 0.205932 0.862301 0.898650 -0.110706 -0.424468 -0.012050 0.961037 -0.276159 0.438502 0.253285 0.862301 0.905303 -0.015911 -0.424468 -0.112707 0.954481 -0.276159 0.409541 0.297848 0.862301 0.902063 0.078157 -0.424468 -0.211185 0.937623 -0.276159 0.376407 0.338754 0.862301 0.888904 0.172269 -0.424468 -0.308292 0.910326 -0.276159 0.338831 0.376338 0.862301 0.865953 0.264484 -0.424468 -0.402002 0.873001 -0.276159 0.297522 0.409778 0.862301 0.833818 0.352952 -0.424468 -0.490459 0.826551 -0.276159 0.253374 0.438450 0.862301 0.792234 0.438398 -0.424468 -0.574386 0.770595 -0.276159 0.206026 0.462591 0.862301 0.741923 0.519015 -0.424468 -0.651987 0.706151 -0.276159 0.156408 0.481636 0.862301 0.683440 0.593916 -0.424468 -0.722406 0.633929 -0.276159 0.105068 0.495376 0.862301 0.618092 0.661656 -0.424468 -0.784312 0.555509 -0.276159 0.053074 0.503607 0.862301 0.545341 0.722793 -0.424468 -0.838214 0.470248 -0.276159 0.000000 0.506396 0.862301 0.466584 0.775968 -0.424468 -0.882883 0.379808 -0.276159 -0.053074 0.503607 0.862301 0.383508 0.820212 -0.424468 -0.917542 0.286101 -0.276159 -0.105068 0.495376 0.862301 0.295431 0.855890 -0.424468 -0.942474 0.188361 -0.276159 -0.156408 0.481636 0.862301 0.204101 0.882139 -0.424468 -0.957025 0.088545 -0.276159 -0.206026 0.462591 0.862301 0.110522 0.898672 -0.424468 -0.961034 -0.012246 -0.276159 -0.253374 0.438450 0.862301 0.016632 0.905290 -0.424468 -0.954570 -0.111947 -0.276159 -0.297522 0.409778 0.862301 -0.078341 0.902047 -0.424468 -0.937580 -0.211376 -0.276159 -0.338831 0.376338 0.862301 -0.172450 0.888869 -0.424468 -0.910263 -0.308477 -0.276159 -0.376407 0.338754 0.862301 -0.263794 0.866164 -0.424468 -0.873321 -0.401307 -0.276159 -0.409541 0.297848 0.862301 -0.353122 0.833746 -0.424468 -0.826451 -0.490627 -0.276159 -0.438502 0.253285 0.862301 -0.438559 0.792144 -0.424468 -0.770478 -0.574543 -0.276159 -0.462633 0.205932 0.862301 -0.519166 0.741817 -0.424468 -0.706019 -0.652130 -0.276159 -0.481668 0.156310 0.862301 -0.593371 0.683913 -0.424468 -0.634505 -0.721901 -0.276159 -0.495292 0.105462 0.862301 -0.661782 0.617957 -0.424468 -0.555350 -0.784425 -0.276159 -0.503618 0.052971 0.862301 0.361308 0.265645 -0.893806 0.099738 -0.964071 -0.246210 -0.927097 -0.000189 -0.374821 0.331476 0.302049 -0.893806 0.200230 -0.948308 -0.246210 -0.921971 -0.097354 -0.374821 0.298329 0.334829 -0.893806 0.297595 -0.922398 -0.246210 -0.906883 -0.192540 -0.374821 0.261593 0.364252 -0.893806 0.392630 -0.886128 -0.246210 -0.881709 -0.286528 -0.374821 0.221976 0.389662 -0.893806 0.483340 -0.840097 -0.246210 -0.846823 -0.377359 -0.374821 0.180325 0.410601 -0.893806 0.567941 -0.785381 -0.246210 -0.803073 -0.463231 -0.374821 0.136298 0.427239 -0.893806 0.647127 -0.721532 -0.246210 -0.750100 -0.544848 -0.374821 0.090770 0.439171 -0.893806 0.719184 -0.649734 -0.246210 -0.688865 -0.620463 -0.374821 0.044242 0.446266 -0.893806 0.783320 -0.570780 -0.246210 -0.620042 -0.689244 -0.374821 -0.002326 0.448447 -0.893806 0.838342 -0.486378 -0.246210 -0.545140 -0.749888 -0.374821 -0.049313 0.445734 -0.893806 0.884701 -0.395835 -0.246210 -0.463544 -0.802893 -0.374821 -0.095758 0.438110 -0.893806 0.921315 -0.300932 -0.246210 -0.376842 -0.847053 -0.374821 -0.140722 0.425802 -0.893806 0.947577 -0.203662 -0.246210 -0.286871 -0.881598 -0.374821 -0.184574 0.408709 -0.893806 0.963704 -0.103227 -0.246210 -0.192893 -0.906808 -0.374821 -0.226393 0.387113 -0.893806 0.969215 -0.001656 -0.246210 -0.096791 -0.922031 -0.374821 -0.265424 0.361470 -0.893806 0.964132 0.099149 -0.246210 -0.000378 -0.927097 -0.374821 -0.301847 0.331661 -0.893806 0.948430 0.199651 -0.246210 0.096791 -0.922031 -0.374821 -0.334945 0.298198 -0.893806 0.922282 0.297954 -0.246210 0.192893 -0.906808 -0.374821 -0.364353 0.261451 -0.893806 0.885975 0.392974 -0.246210 0.286871 -0.881598 -0.374821 -0.389527 0.222214 -0.893806 0.840392 0.482826 -0.246210 0.376842 -0.847053 -0.374821 -0.410671 0.180165 -0.893806 0.785160 0.568246 -0.246210 0.463544 -0.802893 -0.374821 -0.427292 0.136132 -0.893806 0.721280 0.647407 -0.246210 0.545140 -0.749888 -0.374821 -0.439115 0.091038 -0.893806 0.650173 0.718787 -0.246210 0.620042 -0.689244 -0.374821 -0.446238 0.044514 -0.893806 0.571259 0.782971 -0.246210 0.688865 -0.620463 -0.374821 -0.448446 -0.002500 -0.893806 0.486051 0.838531 -0.246210 0.750100 -0.544848 -0.374821 -0.445714 -0.049487 -0.893806 0.395491 0.884855 -0.246210 0.803073 -0.463231 -0.374821 -0.438169 -0.095490 -0.893806 0.301495 0.921131 -0.246210 0.846823 -0.377359 -0.374821 -0.425748 -0.140887 -0.893806 0.203293 0.947656 -0.246210 0.881709 -0.286528 -0.374821 -0.408637 -0.184733 -0.893806 0.102852 0.963744 -0.246210 0.906883 -0.192540 -0.374821 -0.387251 -0.226156 -0.893806 0.002248 0.969214 -0.246210 0.921971 -0.097354 -0.374821 -0.361416 -0.265498 -0.893806 -0.099345 0.964112 -0.246210 0.927097 -0.000189 -0.374821 -0.331599 -0.301914 -0.893806 -0.199844 0.948390 -0.246210 0.922011 0.096979 -0.374821 -0.298130 -0.335005 -0.893806 -0.298141 0.922221 -0.246210 0.906769 0.193078 -0.374821 -0.261742 -0.364145 -0.893806 -0.392269 0.886288 -0.246210 0.881826 0.286169 -0.374821 -0.222135 -0.389572 -0.893806 -0.482998 0.840294 -0.246210 0.846977 0.377014 -0.374821 -0.180082 -0.410708 -0.893806 -0.568406 0.785044 -0.246210 0.802798 0.463707 -0.374821 -0.136045 -0.427320 -0.893806 -0.647554 0.721148 -0.246210 0.749777 0.545292 -0.374821 -0.090949 -0.439134 -0.893806 -0.718920 0.650027 -0.246210 0.689118 0.620182 -0.374821 -0.044423 -0.446248 -0.893806 -0.783088 0.571099 -0.246210 0.620323 0.688991 -0.374821 0.002591 -0.448446 -0.893806 -0.838630 0.485881 -0.246210 0.544695 0.750211 -0.374821 0.049132 -0.445754 -0.893806 -0.884539 0.396195 -0.246210 0.463871 0.802704 -0.374821 0.095579 -0.438149 -0.893806 -0.921192 0.301307 -0.246210 0.377187 0.846900 -0.374821 0.140974 -0.425719 -0.893806 -0.947698 0.203100 -0.246210 0.286348 0.881767 -0.374821 0.184816 -0.408599 -0.893806 -0.963765 0.102656 -0.246210 0.192356 0.906923 -0.374821 0.226235 -0.387205 -0.893806 -0.969214 0.002050 -0.246210 0.097166 0.921991 -0.374821 0.265571 -0.361362 -0.893806 -0.964091 -0.099542 -0.246210 0.000000 0.927097 -0.374821 0.301982 -0.331538 -0.893806 -0.948349 -0.200037 -0.246210 -0.097166 0.921991 -0.374821 0.334768 -0.298397 -0.893806 -0.922458 -0.297407 -0.246210 -0.192356 0.906923 -0.374821 0.364198 -0.261667 -0.893806 -0.886208 -0.392449 -0.246210 -0.286348 0.881767 -0.374821 0.389617 -0.222056 -0.893806 -0.840196 -0.483169 -0.246210 -0.377187 0.846900 -0.374821 0.410744 -0.179998 -0.893806 -0.784929 -0.568566 -0.246210 -0.463871 0.802704 -0.374821 0.427211 -0.136385 -0.893806 -0.721663 -0.646980 -0.246210 -0.544695 0.750211 -0.374821 0.439152 -0.090859 -0.893806 -0.649881 -0.719052 -0.246210 -0.620323 0.688991 -0.374821 0.446257 -0.044332 -0.893806 -0.570940 -0.783204 -0.246210 -0.689118 0.620182 -0.374821 0.448448 0.002234 -0.893806 -0.486548 -0.838243 -0.246210 -0.749777 0.545292 -0.374821 0.445744 0.049222 -0.893806 -0.396015 -0.884620 -0.246210 -0.802798 0.463707 -0.374821 0.438130 0.095668 -0.893806 -0.301119 -0.921253 -0.246210 -0.846977 0.377014 -0.374821 0.425690 0.141061 -0.893806 -0.202907 -0.947739 -0.246210 -0.881826 0.286169 -0.374821 0.408746 0.184491 -0.893806 -0.103423 -0.963683 -0.246210 -0.906769 0.193078 -0.374821 0.387159 0.226314 -0.893806 -0.001853 -0.969215 -0.246210 -0.922011 0.096979 -0.374821 -0.421276 0.874604 -0.239987 -0.759842 -0.484837 -0.433097 -0.495144 -0.000101 0.868811 -0.510620 0.825635 -0.239987 -0.704843 -0.561804 -0.433097 -0.492406 -0.051995 0.868811 -0.593573 0.768165 -0.239987 -0.642712 -0.631940 -0.433097 -0.484348 -0.102832 0.868811 -0.670813 0.701724 -0.239987 -0.572941 -0.695820 -0.433097 -0.470903 -0.153029 0.868811 -0.740664 0.627553 -0.239987 -0.496858 -0.752036 -0.433097 -0.452271 -0.201540 0.868811 -0.801810 0.547272 -0.239987 -0.416103 -0.799553 -0.433097 -0.428905 -0.247402 0.868811 -0.854752 0.460223 -0.239987 -0.330012 -0.838760 -0.433097 -0.400613 -0.290992 0.868811 -0.898279 0.368104 -0.239987 -0.240287 -0.868728 -0.433097 -0.367909 -0.331376 0.868811 -0.931912 0.271930 -0.239987 -0.147914 -0.889128 -0.433097 -0.331152 -0.368111 0.868811 -0.955107 0.173717 -0.239987 -0.054812 -0.899679 -0.433097 -0.291148 -0.400500 0.868811 -0.968053 0.072658 -0.239987 0.039782 -0.900469 -0.433097 -0.247569 -0.428808 0.868811 -0.970337 -0.029201 -0.239987 0.133939 -0.891340 -0.433097 -0.201263 -0.452394 0.868811 -0.962062 -0.129776 -0.239987 0.225747 -0.872620 -0.433097 -0.153212 -0.470843 0.868811 -0.943163 -0.229893 -0.239987 0.315961 -0.844154 -0.433097 -0.103020 -0.484308 0.868811 -0.913874 -0.327477 -0.239987 0.402694 -0.806390 -0.433097 -0.051694 -0.492438 0.868811 -0.874862 -0.420741 -0.239987 0.484373 -0.760138 -0.433097 -0.000202 -0.495143 0.868811 -0.825947 -0.510116 -0.239987 0.561373 -0.705186 -0.433097 0.051694 -0.492438 0.868811 -0.767934 -0.593871 -0.239987 0.632190 -0.642466 -0.433097 0.103020 -0.484308 0.868811 -0.701463 -0.671086 -0.239987 0.696043 -0.572670 -0.433097 0.153212 -0.470843 0.868811 -0.628006 -0.740280 -0.239987 0.751733 -0.497318 -0.433097 0.201263 -0.452394 0.868811 -0.546960 -0.802023 -0.239987 0.799715 -0.415792 -0.433097 0.247569 -0.428808 0.868811 -0.459890 -0.854931 -0.239987 0.838889 -0.329686 -0.433097 0.291148 -0.400500 0.868811 -0.368652 -0.898054 -0.239987 0.868582 -0.240817 -0.433097 0.331152 -0.368111 0.868811 -0.272500 -0.931746 -0.239987 0.889037 -0.148457 -0.433097 0.367909 -0.331376 0.868811 -0.173345 -0.955174 -0.239987 0.899700 -0.054462 -0.433097 0.400613 -0.290992 0.868811 -0.072282 -0.968081 -0.239987 0.900453 0.040133 -0.433097 0.428905 -0.247402 0.868811 0.028608 -0.970354 -0.239987 0.891422 0.133394 -0.433097 0.452271 -0.201540 0.868811 0.130151 -0.962012 -0.239987 0.872532 0.226087 -0.433097 0.470903 -0.153029 0.868811 0.230260 -0.943073 -0.239987 0.844031 0.316289 -0.433097 0.484348 -0.102832 0.868811 0.326918 -0.914074 -0.239987 0.806635 0.402201 -0.433097 0.492406 -0.051995 0.868811 0.420919 -0.874776 -0.239987 0.760039 0.484528 -0.433097 0.495144 -0.000101 0.868811 0.510284 -0.825843 -0.239987 0.705072 0.561517 -0.433097 0.492427 0.051794 0.868811 0.594028 -0.767813 -0.239987 0.642337 0.632321 -0.433097 0.484287 0.103119 0.868811 0.670527 -0.701997 -0.239987 0.573224 0.695587 -0.433097 0.470965 0.152837 0.868811 0.740408 -0.627855 -0.239987 0.497164 0.751834 -0.433097 0.452353 0.201356 0.868811 0.802134 -0.546797 -0.239987 0.415629 0.799800 -0.433097 0.428758 0.247656 0.868811 0.855025 -0.459716 -0.239987 0.329515 0.838956 -0.433097 0.400440 0.291229 0.868811 0.898129 -0.368470 -0.239987 0.240640 0.868631 -0.433097 0.368043 0.331227 0.868811 0.931801 -0.272310 -0.239987 0.148276 0.889067 -0.433097 0.331302 0.367976 0.868811 0.955209 -0.173151 -0.239987 0.054279 0.899711 -0.433097 0.290910 0.400672 0.868811 0.968023 -0.073052 -0.239987 -0.039416 0.900485 -0.433097 0.247744 0.428708 0.868811 0.970349 0.028806 -0.239987 -0.133576 0.891395 -0.433097 0.201448 0.452312 0.868811 0.961985 0.130347 -0.239987 -0.226265 0.872486 -0.433097 0.152933 0.470934 0.868811 0.943026 0.230452 -0.239987 -0.316461 0.843966 -0.433097 0.102733 0.484369 0.868811 0.914007 0.327104 -0.239987 -0.402366 0.806554 -0.433097 0.051895 0.492417 0.868811 0.874690 0.421097 -0.239987 -0.484682 0.759941 -0.433097 0.000000 0.495144 0.868811 0.825739 0.510452 -0.239987 -0.561660 0.704957 -0.433097 -0.051895 0.492417 0.868811 0.768286 0.593416 -0.239987 -0.631809 0.642841 -0.433097 -0.102733 0.484369 0.868811 0.701860 0.670670 -0.239987 -0.695704 0.573082 -0.433097 -0.152933 0.470934 0.868811 0.627704 0.740536 -0.239987 -0.751935 0.497011 -0.433097 -0.201448 0.452312 0.868811 0.546633 0.802246 -0.239987 -0.799884 0.415466 -0.433097 -0.247744 0.428708 0.868811 0.460397 0.854658 -0.239987 -0.838693 0.330183 -0.433097 -0.290910 0.400672 0.868811 0.368287 0.898204 -0.239987 -0.868680 0.240463 -0.433097 -0.331302 0.367976 0.868811 0.272120 0.931857 -0.239987 -0.889098 0.148095 -0.433097 -0.368043 0.331227 0.868811 0.173911 0.955071 -0.239987 -0.899668 0.054996 -0.433097 -0.400440 0.291229 0.868811 0.072855 0.968038 -0.239987 -0.900477 -0.039599 -0.433097 -0.428758 0.247656 0.868811 -0.029003 0.970343 -0.239987 -0.891367 -0.133757 -0.433097 -0.452353 0.201356 0.868811 -0.130542 0.961959 -0.239987 -0.872440 -0.226442 -0.433097 -0.470965 0.152837 0.868811 -0.229701 0.943209 -0.239987 -0.844218 -0.315789 -0.433097 -0.484287 0.103119 0.868811 -0.327291 0.913940 -0.239987 -0.806472 -0.402530 -0.433097 -0.492427 0.051794 0.868811 -0.453749 0.826933 -0.332104 -0.667169 -0.562300 -0.488573 -0.590760 -0.000120 0.806848 -0.537919 0.774823 -0.332104 -0.604562 -0.629127 -0.488573 -0.587493 -0.062036 0.806848 -0.615449 0.714794 -0.332104 -0.535984 -0.688489 -0.488573 -0.577879 -0.122690 0.806848 -0.686975 0.646354 -0.332104 -0.460873 -0.740872 -0.488573 -0.561838 -0.182580 0.806848 -0.750934 0.570794 -0.332104 -0.380687 -0.785095 -0.488573 -0.539608 -0.240459 0.806848 -0.806132 0.489754 -0.332104 -0.297127 -0.820373 -0.488573 -0.511729 -0.295178 0.806848 -0.853022 0.402568 -0.332104 -0.209510 -0.846996 -0.488573 -0.477975 -0.347185 0.806848 -0.890516 0.310948 -0.332104 -0.119585 -0.864289 -0.488573 -0.438955 -0.395368 0.806848 -0.918201 0.215903 -0.332104 -0.028342 -0.872062 -0.488573 -0.395100 -0.439196 0.806848 -0.935653 0.119416 -0.332104 0.062342 -0.870293 -0.488573 -0.347371 -0.477839 0.806848 -0.943016 0.020695 -0.332104 0.153212 -0.858966 -0.488573 -0.295377 -0.511615 0.806848 -0.939991 -0.078254 -0.332104 0.242394 -0.838177 -0.488573 -0.240129 -0.539755 0.806848 -0.926789 -0.175414 -0.332104 0.328097 -0.808485 -0.488573 -0.182798 -0.561767 0.806848 -0.903300 -0.271582 -0.332104 0.411025 -0.769645 -0.488573 -0.122914 -0.577831 0.806848 -0.869861 -0.364759 -0.332104 0.489426 -0.722328 -0.488573 -0.061677 -0.587531 0.806848 -0.827210 -0.453244 -0.332104 0.561892 -0.667513 -0.488573 -0.000241 -0.590760 0.806848 -0.775151 -0.537445 -0.332104 0.628758 -0.604946 -0.488573 0.061677 -0.587531 0.806848 -0.714554 -0.615727 -0.332104 0.688698 -0.535716 -0.488573 0.122914 -0.577831 0.806848 -0.646086 -0.687226 -0.332104 0.741051 -0.460585 -0.488573 0.182798 -0.561767 0.806848 -0.571253 -0.750585 -0.332104 0.784862 -0.381166 -0.488573 0.240129 -0.539755 0.806848 -0.489440 -0.806322 -0.332104 0.820488 -0.296808 -0.488573 0.295377 -0.511615 0.806848 -0.402236 -0.853178 -0.332104 0.847077 -0.209180 -0.488573 0.347371 -0.477839 0.806848 -0.311492 -0.890326 -0.332104 0.864216 -0.120112 -0.488573 0.395100 -0.439196 0.806848 -0.216464 -0.918069 -0.332104 0.872045 -0.028875 -0.488573 0.438955 -0.395368 0.806848 -0.119052 -0.935700 -0.332104 0.870268 0.062681 -0.488573 0.477975 -0.347185 0.806848 -0.020328 -0.943024 -0.332104 0.858906 0.153546 -0.488573 0.511729 -0.295178 0.806848 0.077680 -0.940039 -0.332104 0.838325 0.241881 -0.488573 0.539608 -0.240459 0.806848 0.175775 -0.926720 -0.332104 0.808357 0.328412 -0.488573 0.561838 -0.182580 0.806848 0.271933 -0.903194 -0.332104 0.769485 0.411325 -0.488573 0.577879 -0.122690 0.806848 0.364227 -0.870084 -0.332104 0.722627 0.488985 -0.488573 0.587493 -0.062036 0.806848 0.453412 -0.827118 -0.332104 0.667398 0.562028 -0.488573 0.590760 -0.000120 0.806848 0.537603 -0.775042 -0.332104 0.604818 0.628881 -0.488573 0.587519 0.061796 0.806848 0.615872 -0.714429 -0.332104 0.535576 0.688807 -0.488573 0.577806 0.123032 0.806848 0.686711 -0.646633 -0.332104 0.461175 0.740684 -0.488573 0.561912 0.182351 0.806848 0.750701 -0.571100 -0.332104 0.381006 0.784940 -0.488573 0.539706 0.240239 0.806848 0.806422 -0.489276 -0.332104 0.296641 0.820549 -0.488573 0.511555 0.295481 0.806848 0.853260 -0.402062 -0.332104 0.209008 0.847120 -0.488573 0.477769 0.347468 0.806848 0.890389 -0.311311 -0.332104 0.119937 0.864240 -0.488573 0.439116 0.395189 0.806848 0.918113 -0.216277 -0.332104 0.028697 0.872051 -0.488573 0.395279 0.439035 0.806848 0.935724 -0.118861 -0.332104 -0.062858 0.870256 -0.488573 0.347088 0.478045 0.806848 0.943007 -0.021079 -0.332104 -0.152862 0.859028 -0.488573 0.295585 0.511494 0.806848 0.940023 0.077871 -0.332104 -0.242052 0.838276 -0.488573 0.240349 0.539657 0.806848 0.926684 0.175963 -0.332104 -0.328576 0.808290 -0.488573 0.182465 0.561875 0.806848 0.903139 0.272117 -0.332104 -0.411481 0.769402 -0.488573 0.122572 0.577904 0.806848 0.870010 0.364404 -0.332104 -0.489132 0.722528 -0.488573 0.061916 0.587506 0.806848 0.827026 0.453581 -0.332104 -0.562164 0.667284 -0.488573 0.000000 0.590760 0.806848 0.774933 0.537761 -0.332104 -0.629004 0.604690 -0.488573 -0.061916 0.587506 0.806848 0.714919 0.615303 -0.332104 -0.688380 0.536124 -0.488573 -0.122572 0.577904 0.806848 0.646494 0.686843 -0.332104 -0.740778 0.461024 -0.488573 -0.182465 0.561875 0.806848 0.570947 0.750817 -0.332104 -0.785017 0.380846 -0.488573 -0.240349 0.539657 0.806848 0.489112 0.806522 -0.332104 -0.820609 0.296474 -0.488573 -0.295585 0.511494 0.806848 0.402742 0.852940 -0.332104 -0.846953 0.209682 -0.488573 -0.347088 0.478045 0.806848 0.311129 0.890452 -0.332104 -0.864265 0.119761 -0.488573 -0.395279 0.439035 0.806848 0.216090 0.918157 -0.332104 -0.872057 0.028520 -0.488573 -0.439116 0.395189 0.806848 0.119606 0.935629 -0.332104 -0.870305 -0.062165 -0.488573 -0.477769 0.347468 0.806848 0.020887 0.943012 -0.332104 -0.858997 -0.153037 -0.488573 -0.511555 0.295481 0.806848 -0.078062 0.940007 -0.332104 -0.838227 -0.242223 -0.488573 -0.539706 0.240239 0.806848 -0.176152 0.926649 -0.332104 -0.808224 -0.328741 -0.488573 -0.561912 0.182351 0.806848 -0.271398 0.903355 -0.332104 -0.769729 -0.410869 -0.488573 -0.577806 0.123032 0.806848 -0.364581 0.869935 -0.332104 -0.722428 -0.489279 -0.488573 -0.587519 0.061796 0.806848 -0.152602 0.423914 0.892754 0.071207 0.905703 -0.417890 -0.985719 -0.000201 -0.168397 -0.196191 0.405585 0.892754 -0.024110 0.908177 -0.417890 -0.980269 -0.103510 -0.168397 -0.237235 0.383027 0.892754 -0.118260 0.900768 -0.417890 -0.964227 -0.204715 -0.168397 -0.276073 0.356053 0.892754 -0.212015 0.883412 -0.417890 -0.937461 -0.304646 -0.168397 -0.311869 0.325158 0.892754 -0.303435 0.856326 -0.417890 -0.900369 -0.401220 -0.168397 -0.343940 0.291025 0.892754 -0.390694 0.820199 -0.417890 -0.853852 -0.492522 -0.168397 -0.372547 0.253375 0.892754 -0.474504 0.774734 -0.417890 -0.797530 -0.579300 -0.168397 -0.397051 0.212934 0.892754 -0.553089 0.720736 -0.417890 -0.732423 -0.659696 -0.168397 -0.417181 0.170147 0.892754 -0.625581 0.658799 -0.417890 -0.659248 -0.732826 -0.168397 -0.432590 0.125919 0.892754 -0.690593 0.590296 -0.417890 -0.579610 -0.797305 -0.168397 -0.443405 0.079887 0.892754 -0.748656 0.514666 -0.417890 -0.492854 -0.853661 -0.168397 -0.449336 0.032975 0.892754 -0.798474 0.433367 -0.417890 -0.400670 -0.900614 -0.168397 -0.450331 -0.013850 0.892754 -0.839149 0.348134 -0.417890 -0.305010 -0.937343 -0.168397 -0.446400 -0.060971 0.892754 -0.871014 0.258268 -0.417890 -0.205090 -0.964147 -0.168397 -0.437551 -0.107421 0.892754 -0.893285 0.165557 -0.417890 -0.102911 -0.980332 -0.168397 -0.424007 -0.152343 0.892754 -0.905659 0.071760 -0.417890 -0.000401 -0.985719 -0.168397 -0.405705 -0.195943 0.892754 -0.908192 -0.023555 -0.417890 0.102911 -0.980332 -0.168397 -0.382934 -0.237384 0.892754 -0.900722 -0.118610 -0.417890 0.205090 -0.964147 -0.168397 -0.355946 -0.276211 0.892754 -0.883330 -0.212359 -0.417890 0.305010 -0.937343 -0.168397 -0.325348 -0.311671 0.892754 -0.856511 -0.302912 -0.417890 0.400670 -0.900614 -0.168397 -0.290891 -0.344053 0.892754 -0.820047 -0.391012 -0.417890 0.492854 -0.853661 -0.168397 -0.253230 -0.372646 0.892754 -0.774550 -0.474806 -0.417890 0.579610 -0.797305 -0.168397 -0.213176 -0.396921 0.892754 -0.721074 -0.552648 -0.417890 0.659248 -0.732826 -0.168397 -0.170402 -0.417077 0.892754 -0.659181 -0.625178 -0.417890 0.732423 -0.659696 -0.168397 -0.125751 -0.432639 0.892754 -0.590027 -0.690822 -0.417890 0.797530 -0.579300 -0.168397 -0.079715 -0.443436 0.892754 -0.514375 -0.748857 -0.417890 0.853852 -0.492522 -0.168397 -0.033250 -0.449316 0.892754 -0.433855 -0.798209 -0.417890 0.900369 -0.401220 -0.168397 0.014025 -0.450326 0.892754 -0.347807 -0.839284 -0.417890 0.937461 -0.304646 -0.168397 0.061145 -0.446376 0.892754 -0.257929 -0.871114 -0.417890 0.964227 -0.204715 -0.168397 0.107154 -0.437616 0.892754 -0.166103 -0.893184 -0.417890 0.980269 -0.103510 -0.168397 0.152429 -0.423976 0.892754 -0.071576 -0.905674 -0.417890 0.985719 -0.000201 -0.168397 0.196025 -0.405665 0.892754 0.023740 -0.908187 -0.417890 0.980311 0.103111 -0.168397 0.237462 -0.382886 0.892754 0.118793 -0.900697 -0.417890 0.964106 0.205287 -0.168397 0.275928 -0.356166 0.892754 0.211655 -0.883499 -0.417890 0.937585 0.304264 -0.168397 0.311737 -0.325285 0.892754 0.303087 -0.856450 -0.417890 0.900532 0.400854 -0.168397 0.344112 -0.290821 0.892754 0.391179 -0.819967 -0.417890 0.853561 0.493028 -0.168397 0.372697 -0.253154 0.892754 0.474964 -0.774453 -0.417890 0.797187 0.579772 -0.168397 0.396964 -0.213095 0.892754 0.552795 -0.720961 -0.417890 0.732692 0.659398 -0.168397 0.417112 -0.170317 0.892754 0.625313 -0.659054 -0.417890 0.659547 0.732557 -0.168397 0.432665 -0.125663 0.892754 0.690942 -0.589887 -0.417890 0.579137 0.797648 -0.168397 0.443373 -0.080068 0.892754 0.748447 -0.514971 -0.417890 0.493202 0.853460 -0.168397 0.449322 -0.033158 0.892754 0.798297 -0.433692 -0.417890 0.401037 0.900451 -0.168397 0.450323 0.014117 0.892754 0.839355 -0.347636 -0.417890 0.304455 0.937523 -0.168397 0.446363 0.061236 0.892754 0.871167 -0.257751 -0.417890 0.204519 0.964269 -0.168397 0.437595 0.107243 0.892754 0.893218 -0.165921 -0.417890 0.103310 0.980290 -0.168397 0.423945 0.152516 0.892754 0.905688 -0.071391 -0.417890 0.000000 0.985719 -0.168397 0.405625 0.196108 0.892754 0.908182 0.023925 -0.417890 -0.103310 0.980290 -0.168397 0.383075 0.237157 0.892754 0.900792 0.118076 -0.417890 -0.204519 0.964269 -0.168397 0.356109 0.276000 0.892754 0.883455 0.211835 -0.417890 -0.304455 0.937523 -0.168397 0.325221 0.311803 0.892754 0.856388 0.303261 -0.417890 -0.401037 0.900451 -0.168397 0.290751 0.344171 0.892754 0.819888 0.391346 -0.417890 -0.493202 0.853460 -0.168397 0.253451 0.372495 0.892754 0.774831 0.474347 -0.417890 -0.579137 0.797648 -0.168397 0.213015 0.397007 0.892754 0.720849 0.552942 -0.417890 -0.659547 0.732557 -0.168397 0.170232 0.417146 0.892754 0.658926 0.625447 -0.417890 -0.732692 0.659398 -0.168397 0.126007 0.432565 0.892754 0.590437 0.690472 -0.417890 -0.797187 0.579772 -0.168397 0.079978 0.443389 0.892754 0.514818 0.748552 -0.417890 -0.853561 0.493028 -0.168397 0.033067 0.449329 0.892754 0.433530 0.798386 -0.417890 -0.900532 0.400854 -0.168397 -0.014208 0.450320 0.892754 0.347465 0.839426 -0.417890 -0.937585 0.304264 -0.168397 -0.060880 0.446412 0.892754 0.258445 0.870961 -0.417890 -0.964106 0.205287 -0.168397 -0.107332 0.437573 0.892754 0.165739 0.893252 -0.417890 -0.980311 0.103111 -0.168397 -0.373695 0.063677 -0.925364 -0.023669 -0.997971 -0.059115 -0.927250 -0.000189 0.374443 -0.378310 0.024160 -0.925364 0.081056 -0.994955 -0.059115 -0.922123 -0.097370 0.374443 -0.378774 -0.015243 -0.925364 0.183907 -0.981164 -0.059115 -0.907033 -0.192572 0.374443 -0.375091 -0.054858 -0.925364 0.285727 -0.956486 -0.059115 -0.881854 -0.286575 0.374443 -0.367275 -0.093868 -0.925364 0.384400 -0.921272 -0.059115 -0.846962 -0.377421 0.374443 -0.355546 -0.131489 -0.925364 0.477963 -0.876388 -0.059115 -0.803205 -0.463308 0.374443 -0.339807 -0.168028 -0.925364 0.567182 -0.821468 -0.059115 -0.750224 -0.544937 0.374443 -0.320325 -0.202717 -0.925364 0.650154 -0.757499 -0.059115 -0.688978 -0.620565 0.374443 -0.297315 -0.235173 -0.925364 0.725965 -0.685186 -0.059115 -0.620144 -0.689357 0.374443 -0.271294 -0.264767 -0.925364 0.793174 -0.606120 -0.059115 -0.545229 -0.750011 0.374443 -0.242051 -0.291743 -0.925364 0.852331 -0.519651 -0.059115 -0.463620 -0.803025 0.374443 -0.210141 -0.315505 -0.925364 0.902100 -0.427459 -0.059115 -0.376904 -0.847193 0.374443 -0.176252 -0.335615 -0.925364 0.941601 -0.331500 -0.059115 -0.286918 -0.881743 0.374443 -0.140107 -0.352239 -0.925364 0.971159 -0.230988 -0.059115 -0.192925 -0.906958 0.374443 -0.102418 -0.364983 -0.925364 0.990020 -0.127931 -0.059115 -0.096807 -0.922183 0.374443 -0.063905 -0.373656 -0.925364 0.997956 -0.024278 -0.059115 -0.000378 -0.927250 0.374443 -0.024392 -0.378295 -0.925364 0.995004 0.080448 -0.059115 0.096807 -0.922183 0.374443 0.015391 -0.378768 -0.925364 0.981093 0.184289 -0.059115 0.192925 -0.906958 0.374443 0.055004 -0.375069 -0.925364 0.956375 0.286099 -0.059115 0.286918 -0.881743 0.374443 0.093643 -0.367333 -0.925364 0.921507 0.383837 -0.059115 0.376904 -0.847193 0.374443 0.131627 -0.355495 -0.925364 0.876203 0.478304 -0.059115 0.463620 -0.803025 0.374443 0.168160 -0.339742 -0.925364 0.821247 0.567502 -0.059115 0.545229 -0.750011 0.374443 0.202521 -0.320449 -0.925364 0.757896 0.649691 -0.059115 0.620144 -0.689357 0.374443 0.234991 -0.297458 -0.925364 0.685630 0.725546 -0.059115 0.688978 -0.620565 0.374443 0.264873 -0.271191 -0.925364 0.605811 0.793409 -0.059115 0.750224 -0.544937 0.374443 0.291837 -0.241937 -0.925364 0.519320 0.852533 -0.059115 0.803205 -0.463308 0.374443 0.315376 -0.210334 -0.925364 0.428010 0.901839 -0.059115 0.846962 -0.377421 0.374443 0.335684 -0.176122 -0.925364 0.331134 0.941730 -0.059115 0.881854 -0.286575 0.374443 0.352294 -0.139970 -0.925364 0.230610 0.971249 -0.059115 0.907033 -0.192572 0.374443 0.364921 -0.102641 -0.925364 0.128536 0.989941 -0.059115 0.922123 -0.097370 0.374443 0.373669 -0.063829 -0.925364 0.024075 0.997961 -0.059115 0.927250 -0.000189 0.374443 0.378300 -0.024315 -0.925364 -0.080651 0.994988 -0.059115 0.922163 0.096995 0.374443 0.378765 0.015468 -0.925364 -0.184489 0.981055 -0.059115 0.906918 0.193110 0.374443 0.375113 0.054705 -0.925364 -0.285338 0.956602 -0.059115 0.881971 0.286216 0.374443 0.367314 0.093718 -0.925364 -0.384025 0.921428 -0.059115 0.847116 0.377076 0.374443 0.355468 0.131699 -0.925364 -0.478482 0.876105 -0.059115 0.802930 0.463784 0.374443 0.339707 0.168230 -0.925364 -0.567669 0.821132 -0.059115 0.749900 0.545382 0.374443 0.320408 0.202586 -0.925364 -0.649846 0.757764 -0.059115 0.689231 0.620284 0.374443 0.297411 0.235052 -0.925364 -0.725686 0.685482 -0.059115 0.620425 0.689105 0.374443 0.271137 0.264928 -0.925364 -0.793533 0.605650 -0.059115 0.544785 0.750334 0.374443 0.242170 0.291644 -0.925364 -0.852119 0.519998 -0.059115 0.463947 0.802836 0.374443 0.210269 0.315419 -0.925364 -0.901926 0.427826 -0.059115 0.377249 0.847039 0.374443 0.176053 0.335720 -0.925364 -0.941798 0.330942 -0.059115 0.286396 0.881913 0.374443 0.139898 0.352322 -0.925364 -0.971296 0.230412 -0.059115 0.192387 0.907072 0.374443 0.102566 0.364942 -0.925364 -0.989968 0.128334 -0.059115 0.097182 0.922143 0.374443 0.063753 0.373682 -0.925364 -0.997966 0.023872 -0.059115 0.000000 0.927250 0.374443 0.024237 0.378305 -0.925364 -0.994971 -0.080854 -0.059115 -0.097182 0.922143 0.374443 -0.015166 0.378777 -0.925364 -0.981202 -0.183707 -0.059115 -0.192387 0.907072 0.374443 -0.054781 0.375102 -0.925364 -0.956544 -0.285533 -0.059115 -0.286396 0.881913 0.374443 -0.093793 0.367294 -0.925364 -0.921350 -0.384213 -0.059115 -0.377249 0.847039 0.374443 -0.131772 0.355441 -0.925364 -0.876008 -0.478661 -0.059115 -0.463947 0.802836 0.374443 -0.167959 0.339841 -0.925364 -0.821583 -0.567015 -0.059115 -0.544785 0.750334 0.374443 -0.202652 0.320366 -0.925364 -0.757631 -0.650000 -0.059115 -0.620425 0.689105 0.374443 -0.235112 0.297363 -0.925364 -0.685334 -0.725825 -0.059115 -0.689231 0.620284 0.374443 -0.264712 0.271348 -0.925364 -0.606281 -0.793050 -0.059115 -0.749900 0.545382 0.374443 -0.291693 0.242110 -0.925364 -0.519825 -0.852225 -0.059115 -0.802930 0.463784 0.374443 -0.315462 0.210205 -0.925364 -0.427643 -0.902013 -0.059115 -0.847116 0.377076 0.374443 -0.335755 0.175985 -0.925364 -0.330750 -0.941865 -0.059115 -0.881971 0.286216 0.374443 -0.352211 0.140178 -0.925364 -0.231186 -0.971112 -0.059115 -0.906918 0.193110 0.374443 -0.364963 0.102492 -0.925364 -0.128133 -0.989994 -0.059115 -0.922163 0.096995 0.374443 -0.079821 0.989777 -0.118198 -0.552951 -0.142626 -0.820916 -0.829382 -0.000169 0.558682 -0.183117 0.975960 -0.118198 -0.534957 -0.199793 -0.820916 -0.824796 -0.087093 0.558682 -0.283445 0.951677 -0.118198 -0.511326 -0.254249 -0.820916 -0.811298 -0.172247 0.558682 -0.381626 0.916728 -0.118198 -0.481863 -0.306440 -0.820916 -0.788777 -0.256328 0.558682 -0.475604 0.871682 -0.118198 -0.447092 -0.355255 -0.820916 -0.757568 -0.337586 0.558682 -0.563526 0.817599 -0.118198 -0.407796 -0.399749 -0.820916 -0.718429 -0.414407 0.558682 -0.646113 0.754034 -0.118198 -0.363654 -0.440287 -0.820916 -0.671040 -0.487421 0.558682 -0.721582 0.682164 -0.118198 -0.315506 -0.475976 -0.820916 -0.616259 -0.555067 0.558682 -0.789104 0.602780 -0.118198 -0.263882 -0.506422 -0.820916 -0.554690 -0.616598 0.558682 -0.847417 0.517604 -0.118198 -0.209883 -0.531080 -0.820916 -0.487682 -0.670850 0.558682 -0.896998 0.425938 -0.118198 -0.153067 -0.550152 -0.820916 -0.414686 -0.718268 0.558682 -0.936699 0.329581 -0.118198 -0.094564 -0.563165 -0.820916 -0.337123 -0.757774 0.558682 -0.965853 0.230559 -0.118198 -0.035589 -0.569939 -0.820916 -0.256635 -0.788678 0.558682 -0.984698 0.128061 -0.118198 0.024340 -0.570530 -0.820916 -0.172562 -0.811231 0.558682 -0.992696 0.024152 -0.118198 0.084002 -0.564837 -0.820916 -0.086589 -0.824849 0.558682 -0.989825 -0.079216 -0.118198 0.142288 -0.553038 -0.820916 -0.000338 -0.829382 0.558682 -0.976071 -0.182521 -0.118198 0.199467 -0.535079 -0.820916 0.086589 -0.824849 0.558682 -0.951566 -0.283815 -0.118198 0.254448 -0.511227 -0.820916 0.172562 -0.811231 0.558682 -0.916580 -0.381983 -0.118198 0.306627 -0.481743 -0.820916 0.256635 -0.788678 0.558682 -0.871973 -0.475071 -0.118198 0.354981 -0.447309 -0.820916 0.337123 -0.757774 0.558682 -0.817379 -0.563844 -0.118198 0.399907 -0.407641 -0.820916 0.414686 -0.718268 0.558682 -0.753783 -0.646406 -0.118198 0.440429 -0.363482 -0.820916 0.487682 -0.670850 0.558682 -0.682605 -0.721166 -0.118198 0.475783 -0.315796 -0.820916 0.554690 -0.616598 0.558682 -0.603262 -0.788736 -0.118198 0.506260 -0.264192 -0.820916 0.616259 -0.555067 0.558682 -0.517275 -0.847618 -0.118198 0.531161 -0.209677 -0.820916 0.671040 -0.487421 0.558682 -0.425590 -0.897164 -0.118198 0.550212 -0.152853 -0.820916 0.718429 -0.414407 0.558682 -0.330153 -0.936498 -0.118198 0.563107 -0.094908 -0.820916 0.757568 -0.337586 0.558682 -0.230183 -0.965943 -0.118198 0.569953 -0.035367 -0.820916 0.788777 -0.256328 0.558682 -0.127678 -0.984748 -0.118198 0.570520 0.024562 -0.820916 0.811298 -0.172247 0.558682 -0.024758 -0.992681 -0.118198 0.564888 0.083657 -0.820916 0.824796 -0.087093 0.558682 0.079418 -0.989809 -0.118198 0.553009 0.142401 -0.820916 0.829382 -0.000169 0.558682 0.182720 -0.976034 -0.118198 0.535039 0.199576 -0.820916 0.824832 0.086757 0.558682 0.284009 -0.951508 -0.118198 0.511175 0.254552 -0.820916 0.811196 0.172728 0.558682 0.381253 -0.916884 -0.118198 0.481987 0.306243 -0.820916 0.788882 0.256007 0.558682 0.475249 -0.871876 -0.118198 0.447236 0.355072 -0.820916 0.757706 0.337277 0.558682 0.564010 -0.817265 -0.118198 0.407559 0.399990 -0.820916 0.718184 0.414833 0.558682 0.646559 -0.753651 -0.118198 0.363393 0.440503 -0.820916 0.670751 0.487819 0.558682 0.721305 -0.682458 -0.118198 0.315699 0.475847 -0.820916 0.616485 0.554816 0.558682 0.788858 -0.603102 -0.118198 0.264088 0.506314 -0.820916 0.554941 0.616372 0.558682 0.847723 -0.517102 -0.118198 0.209569 0.531204 -0.820916 0.487285 0.671139 0.558682 0.896825 -0.426304 -0.118198 0.153291 0.550090 -0.820916 0.414979 0.718099 0.558682 0.936565 -0.329962 -0.118198 0.094793 0.563126 -0.820916 0.337432 0.757637 0.558682 0.965989 -0.229986 -0.118198 0.035251 0.569960 -0.820916 0.256167 0.788830 0.558682 0.984774 -0.127477 -0.118198 -0.024679 0.570515 -0.820916 0.172082 0.811333 0.558682 0.992686 -0.024556 -0.118198 -0.083772 0.564871 -0.820916 0.086925 0.824814 0.558682 0.989793 0.079620 -0.118198 -0.142513 0.552980 -0.820916 0.000000 0.829382 0.558682 0.975997 0.182918 -0.118198 -0.199685 0.534998 -0.820916 -0.086925 0.824814 0.558682 0.951734 0.283251 -0.118198 -0.254145 0.511378 -0.820916 -0.172082 0.811333 0.558682 0.916806 0.381440 -0.118198 -0.306341 0.481925 -0.820916 -0.256167 0.788830 0.558682 0.871779 0.475427 -0.118198 -0.355164 0.447164 -0.820916 -0.337432 0.757637 0.558682 0.817150 0.564177 -0.118198 -0.400073 0.407478 -0.820916 -0.414979 0.718099 0.558682 0.754166 0.645959 -0.118198 -0.440213 0.363743 -0.820916 -0.487285 0.671139 0.558682 0.682311 0.721443 -0.118198 -0.475912 0.315602 -0.820916 -0.554941 0.616372 0.558682 0.602941 0.788981 -0.118198 -0.506368 0.263985 -0.820916 -0.616485 0.554816 0.558682 0.517777 0.847311 -0.118198 -0.531037 0.209992 -0.820916 -0.670751 0.487819 0.558682 0.426121 0.896911 -0.118198 -0.550121 0.153179 -0.820916 -0.718184 0.414833 0.558682 0.329772 0.936632 -0.118198 -0.563145 0.094678 -0.820916 -0.757706 0.337277 0.558682 0.229790 0.966036 -0.118198 -0.569967 0.035135 -0.820916 -0.788882 0.256007 0.558682 0.128261 0.984672 -0.118198 -0.570535 -0.024224 -0.820916 -0.811196 0.172728 0.558682 0.024354 0.992691 -0.118198 -0.564854 -0.083887 -0.820916 -0.824832 0.086757 0.558682 -0.189262 -0.975367 -0.113311 0.837094 -0.220589 0.500615 -0.513278 -0.000105 0.858222 -0.085994 -0.989831 -0.113311 0.855603 -0.131640 0.500615 -0.510440 -0.053899 0.858222 0.017228 -0.993410 -0.113311 0.864646 -0.042107 0.500615 -0.502087 -0.106598 0.858222 0.121249 -0.986134 -0.113311 0.864297 0.048746 0.500615 -0.488149 -0.158633 0.858222 0.223935 -0.967995 -0.113311 0.854428 0.139062 0.500615 -0.468835 -0.208921 0.858222 0.323216 -0.939517 -0.113311 0.835375 0.227011 0.500615 -0.444613 -0.256463 0.858222 0.419903 -0.900468 -0.113311 0.806982 0.313314 0.500615 -0.415285 -0.301649 0.858222 0.511966 -0.851499 -0.113311 0.769700 0.396166 0.500615 -0.381383 -0.343513 0.858222 0.598390 -0.793152 -0.113311 0.723939 0.474654 0.500615 -0.343280 -0.381593 0.858222 0.677496 -0.726746 -0.113311 0.670753 0.547244 0.500615 -0.301811 -0.415168 0.858222 0.749933 -0.651737 -0.113311 0.609704 0.614530 0.500615 -0.256636 -0.444513 0.858222 0.814109 -0.569549 -0.113311 0.541939 0.675046 0.500615 -0.208635 -0.468963 0.858222 0.868837 -0.481957 -0.113311 0.468932 0.727659 0.500615 -0.158823 -0.488088 0.858222 0.914565 -0.388243 -0.113311 0.390086 0.772799 0.500615 -0.106793 -0.502045 0.858222 0.950218 -0.290251 -0.113311 0.306942 0.809427 0.500615 -0.053587 -0.510473 0.858222 0.975251 -0.189858 -0.113311 0.221100 0.836959 0.500615 -0.000209 -0.513278 0.858222 0.989778 -0.086599 -0.113311 0.132163 0.855522 0.500615 0.053587 -0.510473 0.858222 0.993403 0.017614 -0.113311 0.041770 0.864662 0.500615 0.106793 -0.502045 0.858222 0.986086 0.121633 -0.113311 -0.049082 0.864278 0.500615 0.158823 -0.488088 0.858222 0.968131 0.223344 -0.113311 -0.138540 0.854513 0.500615 0.208635 -0.468963 0.858222 0.939391 0.323581 -0.113311 -0.227336 0.835286 0.500615 0.256636 -0.444513 0.858222 0.900304 0.420254 -0.113311 -0.313628 0.806860 0.500615 0.301811 -0.415168 0.858222 0.851812 0.511446 -0.113311 -0.395696 0.769941 0.500615 0.343280 -0.381593 0.858222 0.793517 0.597905 -0.113311 -0.474212 0.724229 0.500615 0.381383 -0.343513 0.858222 0.726482 0.677779 -0.113311 -0.547505 0.670540 0.500615 0.415285 -0.301649 0.858222 0.651445 0.750186 -0.113311 -0.614767 0.609465 0.500615 0.444613 -0.256463 0.858222 0.570047 0.813761 -0.113311 -0.674715 0.542351 0.500615 0.468835 -0.208921 0.858222 0.481619 0.869025 -0.113311 -0.727841 0.468649 0.500615 0.488149 -0.158633 0.858222 0.387887 0.914716 -0.113311 -0.772951 0.389785 0.500615 0.502087 -0.106598 0.858222 0.290832 0.950041 -0.113311 -0.809239 0.307437 0.500615 0.510440 -0.053899 0.858222 0.189659 0.975290 -0.113311 -0.837004 0.220930 0.500615 0.513278 -0.000105 0.858222 0.086397 0.989796 -0.113311 -0.855549 0.131989 0.500615 0.510462 0.053691 0.858222 -0.017816 0.993400 -0.113311 -0.864670 0.041594 0.500615 0.502024 0.106896 0.858222 -0.120848 0.986183 -0.113311 -0.864317 -0.048394 0.500615 0.488214 0.158434 0.858222 -0.223541 0.968086 -0.113311 -0.854484 -0.138714 0.500615 0.468920 0.208730 0.858222 -0.323772 0.939325 -0.113311 -0.835240 -0.227506 0.500615 0.444461 0.256727 0.858222 -0.420437 0.900218 -0.113311 -0.806796 -0.313792 0.500615 0.415106 0.301896 0.858222 -0.511619 0.851708 -0.113311 -0.769861 -0.395853 0.500615 0.381523 0.343358 0.858222 -0.598067 0.793396 -0.113311 -0.724133 -0.474359 0.500615 0.343435 0.381453 0.858222 -0.677927 0.726344 -0.113311 -0.670428 -0.547641 0.500615 0.301565 0.415347 0.858222 -0.749667 0.652043 -0.113311 -0.609954 -0.614281 0.500615 0.256817 0.444409 0.858222 -0.813877 0.569881 -0.113311 -0.542213 -0.674826 0.500615 0.208826 0.468878 0.858222 -0.869123 0.481442 -0.113311 -0.468501 -0.727937 0.500615 0.158534 0.488182 0.858222 -0.914795 0.387700 -0.113311 -0.389628 -0.773030 0.500615 0.106496 0.502109 0.858222 -0.950100 0.290638 -0.113311 -0.307272 -0.809301 0.500615 0.053795 0.510451 0.858222 -0.975328 0.189460 -0.113311 -0.220759 -0.837049 0.500615 0.000000 0.513278 0.858222 -0.989814 0.086196 -0.113311 -0.131815 -0.855576 0.500615 -0.053795 0.510451 0.858222 -0.993414 -0.017025 -0.113311 -0.042283 -0.864637 0.500615 -0.106496 0.502109 0.858222 -0.986158 -0.121048 -0.113311 0.048570 -0.864307 0.500615 -0.158534 0.488182 0.858222 -0.968040 -0.223738 -0.113311 0.138888 -0.854456 0.500615 -0.208826 0.468878 0.858222 -0.939259 -0.323963 -0.113311 0.227676 -0.835194 0.500615 -0.256817 0.444409 0.858222 -0.900553 -0.419720 -0.113311 0.313150 -0.807045 0.500615 -0.301565 0.415347 0.858222 -0.851604 -0.511793 -0.113311 0.396009 -0.769780 0.500615 -0.343435 0.381453 0.858222 -0.793274 -0.598228 -0.113311 0.474507 -0.724036 0.500615 -0.381523 0.343358 0.858222 -0.726884 -0.677348 -0.113311 0.547107 -0.670864 0.500615 -0.415106 0.301896 0.858222 -0.651890 -0.749800 -0.113311 0.614405 -0.609829 0.500615 -0.444461 0.256727 0.858222 -0.569715 -0.813993 -0.113311 0.674936 -0.542076 0.500615 -0.468920 0.208730 0.858222 -0.481265 -0.869221 -0.113311 0.728032 -0.468352 0.500615 -0.488214 0.158434 0.858222 -0.388429 -0.914486 -0.113311 0.772720 -0.390243 0.500615 -0.502024 0.106896 0.858222 -0.290445 -0.950159 -0.113311 0.809364 -0.307107 0.500615 -0.510462 0.053691 0.858222 0.497424 0.384721 -0.777534 0.207483 -0.923033 -0.323977 -0.842330 -0.000172 -0.538962 0.454362 0.434736 -0.777534 0.303081 -0.896203 -0.323977 -0.837673 -0.088453 -0.538962 0.406776 0.479556 -0.777534 0.394481 -0.859897 -0.323977 -0.823965 -0.174936 -0.538962 0.354275 0.519548 -0.777534 0.482432 -0.813817 -0.323977 -0.801092 -0.260330 -0.538962 0.297872 0.553817 -0.777534 0.565069 -0.758773 -0.323977 -0.769396 -0.342856 -0.538962 0.238769 0.581748 -0.777534 0.640786 -0.696012 -0.323977 -0.729646 -0.420877 -0.538962 0.176483 0.603568 -0.777534 0.710204 -0.625020 -0.323977 -0.681517 -0.495031 -0.538962 0.112253 0.618741 -0.777534 0.771799 -0.547143 -0.323977 -0.625880 -0.563733 -0.538962 0.046786 0.627098 -0.777534 0.824893 -0.463240 -0.323977 -0.563350 -0.626225 -0.538962 -0.018568 0.628567 -0.777534 0.868526 -0.375102 -0.323977 -0.495296 -0.681324 -0.538962 -0.084344 0.623159 -0.777534 0.903056 -0.282009 -0.323977 -0.421161 -0.729482 -0.538962 -0.149191 0.610887 -0.777534 0.927639 -0.185809 -0.323977 -0.342386 -0.769605 -0.538962 -0.211802 0.592098 -0.777534 0.941916 -0.088504 -0.323977 -0.260642 -0.800991 -0.538962 -0.272692 0.566639 -0.777534 0.946004 0.010703 -0.323977 -0.175257 -0.823897 -0.538962 -0.330578 0.534938 -0.777534 0.939673 0.109792 -0.323977 -0.087941 -0.837727 -0.538962 -0.384418 0.497658 -0.777534 0.923159 0.206919 -0.323977 -0.000343 -0.842330 -0.538962 -0.434459 0.454628 -0.777534 0.896388 0.302534 -0.323977 0.087941 -0.837727 -0.538962 -0.479714 0.406590 -0.777534 0.859744 0.394815 -0.323977 0.175257 -0.823897 -0.538962 -0.519686 0.354073 -0.777534 0.813629 0.482748 -0.323977 0.260642 -0.800991 -0.538962 -0.553635 0.298210 -0.777534 0.759118 0.564605 -0.323977 0.342386 -0.769605 -0.538962 -0.581840 0.238543 -0.777534 0.695763 0.641056 -0.323977 0.421161 -0.729482 -0.538962 -0.603637 0.176248 -0.777534 0.624743 0.710447 -0.323977 0.495296 -0.681324 -0.538962 -0.618672 0.112630 -0.777534 0.547614 0.771464 -0.323977 0.563350 -0.626225 -0.538962 -0.627069 0.047169 -0.777534 0.463743 0.824609 -0.323977 0.625880 -0.563733 -0.538962 -0.628559 -0.018812 -0.777534 0.374764 0.868672 -0.323977 0.681517 -0.495031 -0.538962 -0.623126 -0.084586 -0.777534 0.281658 0.903165 -0.323977 0.729646 -0.420877 -0.538962 -0.610978 -0.148817 -0.777534 0.186376 0.927525 -0.323977 0.769396 -0.342856 -0.538962 -0.592016 -0.212033 -0.777534 0.088138 0.941950 -0.323977 0.801092 -0.260330 -0.538962 -0.566533 -0.272913 -0.777534 -0.011071 0.946000 -0.323977 0.823965 -0.174936 -0.538962 -0.535140 -0.330251 -0.777534 -0.109218 0.939739 -0.323977 0.837673 -0.088453 -0.538962 -0.497580 -0.384519 -0.777534 -0.207107 0.923117 -0.323977 0.842330 -0.000172 -0.538962 -0.454539 -0.434551 -0.777534 -0.302716 0.896327 -0.323977 0.837709 0.088112 -0.538962 -0.406492 -0.479797 -0.777534 -0.394990 0.859663 -0.323977 0.823861 0.175424 -0.538962 -0.354487 -0.519403 -0.777534 -0.482100 0.814014 -0.323977 0.801198 0.260004 -0.538962 -0.298097 -0.553696 -0.777534 -0.564759 0.759003 -0.323977 0.769535 0.342543 -0.538962 -0.238424 -0.581889 -0.777534 -0.641198 0.695632 -0.323977 0.729396 0.421309 -0.538962 -0.176125 -0.603673 -0.777534 -0.710574 0.624599 -0.323977 0.681223 0.495435 -0.538962 -0.112505 -0.618695 -0.777534 -0.771576 0.547457 -0.323977 0.626110 0.563478 -0.538962 -0.047041 -0.627079 -0.777534 -0.824704 0.463576 -0.323977 0.563605 0.625995 -0.538962 0.018940 -0.628556 -0.777534 -0.868748 0.374588 -0.323977 0.494892 0.681617 -0.538962 0.084090 -0.623193 -0.777534 -0.902941 0.282377 -0.323977 0.421458 0.729310 -0.538962 0.148942 -0.610948 -0.777534 -0.927563 0.186187 -0.323977 0.342700 0.769466 -0.538962 0.212153 -0.591973 -0.777534 -0.941968 0.087946 -0.323977 0.260167 0.801145 -0.538962 0.273028 -0.566477 -0.777534 -0.945998 -0.011263 -0.323977 0.174768 0.824000 -0.538962 0.330360 -0.535073 -0.777534 -0.939717 -0.109409 -0.323977 0.088282 0.837691 -0.538962 0.384620 -0.497502 -0.777534 -0.923075 -0.207295 -0.323977 0.000000 0.842330 -0.538962 0.434644 -0.454451 -0.777534 -0.896265 -0.302899 -0.323977 -0.088282 0.837691 -0.538962 0.479473 -0.406874 -0.777534 -0.859978 -0.394306 -0.323977 -0.174768 0.824000 -0.538962 0.519476 -0.354381 -0.777534 -0.813915 -0.482266 -0.323977 -0.260167 0.801145 -0.538962 0.553756 -0.297984 -0.777534 -0.758888 -0.564914 -0.323977 -0.342700 0.769466 -0.538962 0.581937 -0.238306 -0.777534 -0.695501 -0.641340 -0.323977 -0.421458 0.729310 -0.538962 0.603532 -0.176606 -0.777534 -0.625164 -0.710076 -0.323977 -0.494892 0.681617 -0.538962 0.618718 -0.112379 -0.777534 -0.547300 -0.771687 -0.323977 -0.563605 0.625995 -0.538962 0.627088 -0.046914 -0.777534 -0.463408 -0.824798 -0.323977 -0.626110 0.563478 -0.538962 0.628570 0.018440 -0.777534 -0.375279 -0.868449 -0.323977 -0.681223 0.495435 -0.538962 0.623176 0.084217 -0.777534 -0.282193 -0.902998 -0.323977 -0.729396 0.421309 -0.538962 0.610917 0.149066 -0.777534 -0.185998 -0.927601 -0.323977 -0.769535 0.342543 -0.538962 0.591930 0.212274 -0.777534 -0.087754 -0.941986 -0.323977 -0.801198 0.260004 -0.538962 0.566695 0.272577 -0.777534 0.010510 -0.946006 -0.323977 -0.823861 0.175424 -0.538962 0.535006 0.330469 -0.777534 0.109600 -0.939695 -0.323977 -0.837709 0.088112 -0.538962 0.117226 0.896520 -0.427212 0.237661 -0.443003 -0.864445 -0.964248 -0.000196 -0.265000 0.022619 0.903868 -0.427212 0.282782 -0.415655 -0.864445 -0.958917 -0.101255 -0.265000 -0.071336 0.901333 -0.427212 0.324405 -0.384053 -0.864445 -0.943225 -0.200256 -0.265000 -0.165410 0.888892 -0.427212 0.362870 -0.347938 -0.864445 -0.917042 -0.298010 -0.265000 -0.257661 0.866661 -0.427212 0.397338 -0.307990 -0.864445 -0.880757 -0.392481 -0.265000 -0.346239 0.835229 -0.427212 0.427164 -0.265077 -0.864445 -0.835254 -0.481794 -0.265000 -0.431870 0.794341 -0.427212 0.452593 -0.218848 -0.864445 -0.780159 -0.566681 -0.265000 -0.512744 0.744703 -0.427212 0.473037 -0.170207 -0.864445 -0.716470 -0.645327 -0.265000 -0.587971 0.686863 -0.427212 0.488271 -0.119692 -0.864445 -0.644889 -0.716864 -0.265000 -0.656099 0.622113 -0.427212 0.498059 -0.068357 -0.864445 -0.566985 -0.779938 -0.265000 -0.717687 0.549922 -0.427212 0.502480 -0.015780 -0.864445 -0.482119 -0.835067 -0.265000 -0.771371 0.471675 -0.427212 0.501366 0.036970 -0.864445 -0.391943 -0.880997 -0.265000 -0.816169 0.389049 -0.427212 0.494819 0.088819 -0.864445 -0.298367 -0.916926 -0.265000 -0.852449 0.301366 -0.427212 0.482785 0.140190 -0.864445 -0.200623 -0.943147 -0.265000 -0.879339 0.210363 -0.427212 0.465434 0.190017 -0.864445 -0.100670 -0.958979 -0.265000 -0.896448 0.117774 -0.427212 0.443149 0.237391 -0.864445 -0.000393 -0.964248 -0.265000 -0.903854 0.023171 -0.427212 0.415828 0.282528 -0.864445 0.100670 -0.958979 -0.265000 -0.901305 -0.071687 -0.427212 0.383927 0.324554 -0.864445 0.200623 -0.943147 -0.265000 -0.888828 -0.165756 -0.427212 0.347796 0.363005 -0.864445 0.298367 -0.916926 -0.265000 -0.866818 -0.257131 -0.427212 0.308233 0.397149 -0.864445 0.391943 -0.880997 -0.265000 -0.835095 -0.346564 -0.427212 0.264911 0.427267 -0.864445 0.482119 -0.835067 -0.265000 -0.794173 -0.432179 -0.427212 0.218672 0.452678 -0.864445 0.566985 -0.779938 -0.265000 -0.745016 -0.512289 -0.427212 0.170496 0.472933 -0.864445 0.644889 -0.716864 -0.265000 -0.687222 -0.587551 -0.427212 0.119990 0.488198 -0.864445 0.716470 -0.645327 -0.265000 -0.621857 -0.656341 -0.427212 0.068163 0.498085 -0.864445 0.780159 -0.566681 -0.265000 -0.549643 -0.717901 -0.427212 0.015585 0.502486 -0.864445 0.835254 -0.481794 -0.265000 -0.472146 -0.771082 -0.427212 -0.036664 0.501389 -0.864445 0.880757 -0.392481 -0.265000 -0.388731 -0.816320 -0.427212 -0.089011 0.494785 -0.864445 0.917042 -0.298010 -0.265000 -0.301034 -0.852566 -0.427212 -0.140378 0.482731 -0.864445 0.943225 -0.200256 -0.265000 -0.210900 -0.879210 -0.427212 -0.189733 0.465550 -0.864445 0.958917 -0.101255 -0.265000 -0.117591 -0.896472 -0.427212 -0.237481 0.443100 -0.864445 0.964248 -0.000196 -0.265000 -0.022987 -0.903859 -0.427212 -0.282613 0.415770 -0.864445 0.958959 0.100865 -0.265000 0.071871 -0.901290 -0.427212 -0.324632 0.383860 -0.864445 0.943106 0.200815 -0.265000 0.165048 -0.888960 -0.427212 -0.362728 0.348085 -0.864445 0.917163 0.297636 -0.265000 0.257308 -0.866765 -0.427212 -0.397212 0.308152 -0.864445 0.880917 0.392122 -0.265000 0.346734 -0.835024 -0.427212 -0.427321 0.264824 -0.864445 0.834968 0.482289 -0.265000 0.432341 -0.794085 -0.427212 -0.452723 0.218579 -0.864445 0.779823 0.567144 -0.265000 0.512441 -0.744912 -0.427212 -0.472968 0.170400 -0.864445 0.716732 0.645035 -0.265000 0.587691 -0.687102 -0.427212 -0.488222 0.119891 -0.864445 0.645181 0.716601 -0.265000 0.656467 -0.621724 -0.427212 -0.498099 0.068062 -0.864445 0.566523 0.780274 -0.265000 0.717463 -0.550215 -0.427212 -0.502473 0.015985 -0.864445 0.482459 0.834870 -0.265000 0.771178 -0.471989 -0.427212 -0.501381 -0.036766 -0.864445 0.392302 0.880837 -0.265000 0.816399 -0.388565 -0.427212 -0.494767 -0.089112 -0.864445 0.297823 0.917102 -0.265000 0.852627 -0.300860 -0.427212 -0.482702 -0.140476 -0.864445 0.200064 0.943265 -0.265000 0.879253 -0.210721 -0.427212 -0.465511 -0.189828 -0.864445 0.101060 0.958938 -0.265000 0.896496 -0.117409 -0.427212 -0.443052 -0.237571 -0.864445 0.000000 0.964248 -0.265000 0.903864 -0.022803 -0.427212 -0.415713 -0.282698 -0.864445 -0.101060 0.958938 -0.265000 0.901347 0.071153 -0.427212 -0.384119 -0.324327 -0.864445 -0.200064 0.943265 -0.265000 0.888926 0.165229 -0.427212 -0.348012 -0.362799 -0.864445 -0.297823 0.917102 -0.265000 0.866713 0.257485 -0.427212 -0.308071 -0.397275 -0.864445 -0.392302 0.880837 -0.265000 0.834953 0.346904 -0.427212 -0.264737 -0.427375 -0.864445 -0.482459 0.834870 -0.265000 0.794429 0.431709 -0.427212 -0.218940 -0.452549 -0.864445 -0.566523 0.780274 -0.265000 0.744808 0.512593 -0.427212 -0.170304 -0.473003 -0.864445 -0.645181 0.716601 -0.265000 0.686982 0.587831 -0.427212 -0.119792 -0.488247 -0.864445 -0.716732 0.645035 -0.265000 0.622246 0.655972 -0.427212 -0.068458 -0.498045 -0.864445 -0.779823 0.567144 -0.265000 0.550069 0.717575 -0.427212 -0.015882 -0.502477 -0.864445 -0.834968 0.482289 -0.265000 0.471832 0.771274 -0.427212 0.036868 -0.501374 -0.864445 -0.880917 0.392122 -0.265000 0.388398 0.816478 -0.427212 0.089213 -0.494749 -0.864445 -0.917163 0.297636 -0.265000 0.301539 0.852387 -0.427212 0.140092 -0.482814 -0.864445 -0.943106 0.200815 -0.265000 0.210542 0.879296 -0.427212 0.189923 -0.465472 -0.864445 -0.958959 0.100865 -0.265000 0.116897 -0.579548 0.806510 0.082887 0.814938 0.573590 -0.989679 -0.000202 0.143301 0.176994 -0.564105 0.806510 -0.002980 0.819137 0.573590 -0.984207 -0.103926 0.143301 0.234599 -0.542683 0.806510 -0.088001 0.814402 0.573590 -0.968101 -0.205538 0.143301 0.290184 -0.515106 0.806510 -0.172871 0.800693 0.573590 -0.941227 -0.305869 0.143301 0.342573 -0.481856 0.806510 -0.255838 0.778165 0.573590 -0.903986 -0.402832 0.143301 0.390745 -0.443689 0.806510 -0.335239 0.747401 0.573590 -0.857283 -0.494501 0.143301 0.435094 -0.400293 0.806510 -0.411725 0.708150 0.573590 -0.800734 -0.581627 0.143301 0.474652 -0.352487 0.806510 -0.483677 0.661098 0.573590 -0.735365 -0.662346 0.143301 0.508981 -0.300799 0.806510 -0.550301 0.606764 0.573590 -0.661897 -0.735770 0.143301 0.537457 -0.246335 0.806510 -0.610318 0.546357 0.573590 -0.581938 -0.800508 0.143301 0.560315 -0.188649 0.806510 -0.664218 0.479383 0.573590 -0.494834 -0.857090 0.143301 0.577001 -0.128885 0.806510 -0.710803 0.407128 0.573590 -0.402280 -0.904232 0.143301 0.587263 -0.068289 0.806510 -0.749227 0.331138 0.573590 -0.306236 -0.941108 0.143301 0.591186 -0.006363 0.806510 -0.779807 0.250790 0.573590 -0.205914 -0.968021 0.143301 0.588597 0.055632 0.806510 -0.801797 0.167679 0.573590 -0.103325 -0.984271 0.143301 0.579620 0.116543 0.806510 -0.814887 0.083385 0.573590 -0.000403 -0.989679 0.143301 0.564213 0.176650 0.806510 -0.819138 -0.002480 0.573590 0.103325 -0.984271 0.143301 0.542591 0.234810 0.806510 -0.814367 -0.088318 0.573590 0.205914 -0.968021 0.143301 0.514993 0.290385 0.806510 -0.800626 -0.173183 0.573590 0.306236 -0.941108 0.143301 0.482065 0.342278 0.806510 -0.778321 -0.255362 0.573590 0.402280 -0.904232 0.143301 0.443537 0.390917 0.806510 -0.747271 -0.335530 0.573590 0.494834 -0.857090 0.143301 0.400123 0.435250 0.806510 -0.707990 -0.412001 0.573590 0.581938 -0.800508 0.143301 0.352777 0.474436 0.806510 -0.661393 -0.483273 0.573590 0.661897 -0.735770 0.143301 0.301110 0.508797 0.806510 -0.607100 -0.549930 0.573590 0.735365 -0.662346 0.143301 0.246126 0.537553 0.806510 -0.546120 -0.610530 0.573590 0.800734 -0.581627 0.143301 0.188431 0.560388 0.806510 -0.479124 -0.664405 0.573590 0.857283 -0.494501 0.143301 0.129237 0.576922 0.806510 -0.407562 -0.710554 0.573590 0.903986 -0.402832 0.143301 0.068060 0.587290 0.806510 -0.330846 -0.749356 0.573590 0.941227 -0.305869 0.143301 0.006133 0.591188 0.806510 -0.250486 -0.779904 0.573590 0.968101 -0.205538 0.143301 -0.055273 0.588631 0.806510 -0.168169 -0.801694 0.573590 0.984207 -0.103926 0.143301 -0.116661 0.579596 0.806510 -0.083219 -0.814904 0.573590 0.989679 -0.000202 0.143301 -0.176764 0.564177 0.806510 0.002647 -0.819138 0.573590 0.984250 0.103525 0.143301 -0.234921 0.542544 0.806510 0.088484 -0.814349 0.573590 0.967979 0.206111 0.143301 -0.289974 0.515224 0.806510 0.172545 -0.800763 0.573590 0.941352 0.305486 0.143301 -0.342376 0.481995 0.806510 0.255521 -0.778269 0.573590 0.904150 0.402464 0.143301 -0.391007 0.443457 0.806510 0.335682 -0.747203 0.573590 0.856990 0.495009 0.143301 -0.435331 0.400035 0.806510 0.412145 -0.707906 0.573590 0.800389 0.582101 0.143301 -0.474508 0.352680 0.806510 0.483408 -0.661295 0.573590 0.735635 0.662047 0.143301 -0.508858 0.301006 0.806510 0.550054 -0.606988 0.573590 0.662196 0.735500 0.143301 -0.537603 0.246016 0.806510 0.610641 -0.545996 0.573590 0.581464 0.800852 0.143301 -0.560238 0.188877 0.806510 0.664023 -0.479653 0.573590 0.495183 0.856889 0.143301 -0.576948 0.129120 0.806510 0.710637 -0.407417 0.573590 0.402648 0.904068 0.143301 -0.587303 0.067941 0.806510 0.749424 -0.330694 0.573590 0.305678 0.941289 0.143301 -0.591190 0.006013 0.806510 0.779955 -0.250327 0.573590 0.205340 0.968143 0.143301 -0.588619 -0.055393 0.806510 0.801728 -0.168006 0.573590 0.103725 0.984229 0.143301 -0.579572 -0.116779 0.806510 0.814921 -0.083053 0.573590 0.000000 0.989679 0.143301 -0.564141 -0.176879 0.806510 0.819137 0.002814 0.573590 -0.103725 0.984229 0.143301 -0.542730 -0.234489 0.806510 0.814419 0.087835 0.573590 -0.205340 0.968143 0.143301 -0.515165 -0.290079 0.806510 0.800728 0.172708 0.573590 -0.305678 0.941289 0.143301 -0.481926 -0.342475 0.806510 0.778217 0.255679 0.573590 -0.402648 0.904068 0.143301 -0.443378 -0.391098 0.806510 0.747134 0.335834 0.573590 -0.495183 0.856889 0.143301 -0.400381 -0.435013 0.806510 0.708234 0.411581 0.573590 -0.581464 0.800852 0.143301 -0.352584 -0.474580 0.806510 0.661196 0.483543 0.573590 -0.662196 0.735500 0.143301 -0.300902 -0.508919 0.806510 0.606876 0.550178 0.573590 -0.735635 0.662047 0.143301 -0.246444 -0.537407 0.806510 0.546482 0.610206 0.573590 -0.800389 0.582101 0.143301 -0.188763 -0.560277 0.806510 0.479518 0.664121 0.573590 -0.856990 0.495009 0.143301 -0.129002 -0.576975 0.806510 0.407273 0.710720 0.573590 -0.904150 0.402464 0.143301 -0.067821 -0.587317 0.806510 0.330541 0.749491 0.573590 -0.941352 0.305486 0.143301 -0.006484 -0.591185 0.806510 0.250948 0.779756 0.573590 -0.967979 0.206111 0.143301 0.055513 -0.588608 0.806510 0.167842 0.801762 0.573590 -0.984250 0.103525 0.143301 0.062204 -0.593329 -0.802553 -0.045599 -0.804960 0.591574 -0.997021 -0.000203 -0.077127 0.124047 -0.583542 -0.802553 0.039018 -0.805306 0.591574 -0.991509 -0.104697 -0.077127 0.183956 -0.567511 -0.802553 0.122408 -0.796904 0.591574 -0.975283 -0.207062 -0.077127 0.242422 -0.545106 -0.802553 0.205255 -0.779686 0.591574 -0.948210 -0.308139 -0.077127 0.298218 -0.516696 -0.802553 0.285841 -0.753880 0.591574 -0.910693 -0.405821 -0.077127 0.350246 -0.482946 -0.802553 0.362559 -0.720132 0.591574 -0.863643 -0.498170 -0.077127 0.398933 -0.443578 -0.802553 0.436037 -0.678168 0.591574 -0.806675 -0.585942 -0.077127 0.443226 -0.399324 -0.802553 0.504713 -0.628733 0.591574 -0.740821 -0.667260 -0.077127 0.482637 -0.350671 -0.802553 0.567829 -0.572373 0.591574 -0.666807 -0.741228 -0.077127 0.516433 -0.298672 -0.802553 0.624180 -0.510332 0.591574 -0.586255 -0.806446 -0.077127 0.544892 -0.242902 -0.802553 0.674229 -0.442103 0.591574 -0.498505 -0.863449 -0.077127 0.567349 -0.184455 -0.802553 0.716852 -0.369004 0.591574 -0.405264 -0.910940 -0.077127 0.583432 -0.124561 -0.802553 0.751285 -0.292592 0.591574 -0.308508 -0.948090 -0.077127 0.593274 -0.062727 -0.802553 0.777814 -0.212241 0.591574 -0.207442 -0.975202 -0.077127 0.596581 -0.000202 -0.802553 0.795774 -0.129551 0.591574 -0.104091 -0.991573 -0.077127 0.593367 0.061842 -0.802553 0.804932 -0.046091 0.591574 -0.000406 -0.997021 -0.077127 0.583617 0.123690 -0.802553 0.805330 0.038526 0.591574 0.104091 -0.991573 -0.077127 0.567439 0.184176 -0.802553 0.796857 0.122718 0.591574 0.207442 -0.975202 -0.077127 0.545011 0.242634 -0.802553 0.779606 0.205559 0.591574 0.308508 -0.948090 -0.077127 0.516878 0.297902 -0.802553 0.754054 0.285381 0.591574 0.405264 -0.910940 -0.077127 0.482809 0.350434 -0.802553 0.719991 0.362839 0.591574 0.498505 -0.863449 -0.077127 0.443422 0.399106 -0.802553 0.677998 0.436301 0.591574 0.586255 -0.806446 -0.077127 0.399594 0.442982 -0.802553 0.629041 0.504329 0.591574 0.666807 -0.741228 -0.077127 0.350966 0.482423 -0.802553 0.572719 0.567479 0.591574 0.740821 -0.667260 -0.077127 0.298471 0.516549 -0.802553 0.510089 0.624379 0.591574 0.806675 -0.585942 -0.077127 0.242690 0.544986 -0.802553 0.441841 0.674401 0.591574 0.863643 -0.498170 -0.077127 0.184802 0.567236 -0.802553 0.369442 0.716626 0.591574 0.910693 -0.405821 -0.077127 0.124334 0.583481 -0.802553 0.292300 0.751399 0.591574 0.948210 -0.308139 -0.077127 0.062496 0.593298 -0.802553 0.211938 0.777896 0.591574 0.975283 -0.207062 -0.077127 0.000566 0.596580 -0.802553 0.130037 0.795695 0.591574 0.991509 -0.104697 -0.077127 -0.061963 0.593354 -0.802553 0.045927 0.804941 0.591574 0.997021 -0.000203 -0.077127 -0.123809 0.583592 -0.802553 -0.038690 0.805322 0.591574 0.991552 0.104293 -0.077127 -0.184292 0.567402 -0.802553 -0.122880 0.796831 0.591574 0.975160 0.207640 -0.077127 -0.242200 0.545204 -0.802553 -0.204938 0.779770 0.591574 0.948335 0.307752 -0.077127 -0.298007 0.516818 -0.802553 -0.285534 0.753996 0.591574 0.910858 0.405450 -0.077127 -0.350532 0.482738 -0.802553 -0.362986 0.719917 0.591574 0.863347 0.498681 -0.077127 -0.399196 0.443341 -0.802553 -0.436439 0.677909 0.591574 0.806327 0.586420 -0.077127 -0.443063 0.399504 -0.802553 -0.504457 0.628938 0.591574 0.741093 0.666958 -0.077127 -0.482494 0.350868 -0.802553 -0.567596 0.572604 0.591574 0.667109 0.740957 -0.077127 -0.516610 0.298366 -0.802553 -0.624483 0.509962 0.591574 0.585777 0.806794 -0.077127 -0.544793 0.243124 -0.802553 -0.674049 0.442378 0.591574 0.498857 0.863246 -0.077127 -0.567274 0.184686 -0.802553 -0.716701 0.369296 0.591574 0.405635 0.910775 -0.077127 -0.583506 0.124215 -0.802553 -0.751459 0.292147 0.591574 0.307946 0.948273 -0.077127 -0.593311 0.062375 -0.802553 -0.777939 0.211779 0.591574 0.206864 0.975325 -0.077127 -0.596581 0.000445 -0.802553 -0.795721 0.129875 0.591574 0.104495 0.991530 -0.077127 -0.593342 -0.062083 -0.802553 -0.804951 0.045763 0.591574 0.000000 0.997021 -0.077127 -0.583567 -0.123928 -0.802553 -0.805314 -0.038854 0.591574 -0.104495 0.991530 -0.077127 -0.567549 -0.183840 -0.802553 -0.796929 -0.122246 0.591574 -0.206864 0.975325 -0.077127 -0.545155 -0.242311 -0.802553 -0.779728 -0.205096 0.591574 -0.307946 0.948273 -0.077127 -0.516757 -0.298112 -0.802553 -0.753938 -0.285688 0.591574 -0.405635 0.910775 -0.077127 -0.482666 -0.350630 -0.802553 -0.719844 -0.363133 0.591574 -0.498857 0.863246 -0.077127 -0.443659 -0.398843 -0.802553 -0.678256 -0.435899 0.591574 -0.585777 0.806794 -0.077127 -0.399414 -0.443145 -0.802553 -0.628836 -0.504585 0.591574 -0.667109 0.740957 -0.077127 -0.350769 -0.482566 -0.802553 -0.572488 -0.567712 0.591574 -0.741093 0.666958 -0.077127 -0.298778 -0.516372 -0.802553 -0.510459 -0.624076 0.591574 -0.806327 0.586420 -0.077127 -0.243013 -0.544843 -0.802553 -0.442240 -0.674139 0.591574 -0.863347 0.498681 -0.077127 -0.184571 -0.567311 -0.802553 -0.369150 -0.716776 0.591574 -0.910858 0.405450 -0.077127 -0.124096 -0.583531 -0.802553 -0.291994 -0.751518 0.591574 -0.948335 0.307752 -0.077127 -0.062848 -0.593261 -0.802553 -0.212399 -0.777770 0.591574 -0.975160 0.207640 -0.077127 -0.000323 -0.596581 -0.802553 -0.129713 -0.795748 0.591574 -0.991552 0.104293 -0.077127 -0.927106 0.050586 -0.371369 -0.046930 -0.998720 -0.018880 -0.371849 -0.000076 0.928293 -0.927302 -0.046860 -0.371369 0.058001 -0.998138 -0.018880 -0.369793 -0.039048 0.928293 -0.917427 -0.142873 -0.371369 0.161307 -0.986724 -0.018880 -0.363741 -0.077226 0.928293 -0.897400 -0.238239 -0.371369 0.263834 -0.964383 -0.018880 -0.353644 -0.114923 0.928293 -0.867489 -0.330981 -0.371369 0.363456 -0.931420 -0.018880 -0.339652 -0.151355 0.928293 -0.828442 -0.419249 -0.371369 0.458185 -0.888656 -0.018880 -0.322104 -0.185797 0.928293 -0.779939 -0.503766 -0.371369 0.548799 -0.835741 -0.018880 -0.300857 -0.218533 0.928293 -0.722845 -0.582735 -0.371369 0.633368 -0.773620 -0.018880 -0.276296 -0.248861 0.928293 -0.657789 -0.655285 -0.371369 0.710961 -0.702978 -0.018880 -0.248692 -0.276448 0.928293 -0.586208 -0.720031 -0.371369 0.780098 -0.625373 -0.018880 -0.218650 -0.300772 0.928293 -0.507515 -0.777504 -0.371369 0.841345 -0.540169 -0.018880 -0.185923 -0.322032 0.928293 -0.423232 -0.826414 -0.371369 0.893325 -0.449015 -0.018880 -0.151147 -0.339744 0.928293 -0.335153 -0.865885 -0.371369 0.935111 -0.353851 -0.018880 -0.115061 -0.353600 0.928293 -0.242556 -0.896243 -0.371369 0.967047 -0.253895 -0.018880 -0.077367 -0.363711 0.928293 -0.147288 -0.916728 -0.371369 0.988331 -0.151144 -0.018880 -0.038822 -0.369817 0.928293 -0.051152 -0.927075 -0.371369 0.998691 -0.047540 -0.018880 -0.000151 -0.371849 0.928293 0.046294 -0.927330 -0.371369 0.998173 0.057391 -0.018880 0.038822 -0.369817 0.928293 0.143230 -0.917371 -0.371369 0.986661 0.161691 -0.018880 0.077367 -0.363711 0.928293 0.238588 -0.897307 -0.371369 0.964280 0.264210 -0.018880 0.115061 -0.353600 0.928293 0.330451 -0.867691 -0.371369 0.931642 0.362886 -0.018880 0.151147 -0.339744 0.928293 0.419571 -0.828278 -0.371369 0.888478 0.458531 -0.018880 0.185923 -0.322032 0.928293 0.504070 -0.779743 -0.371369 0.835527 0.549124 -0.018880 0.218650 -0.300772 0.928293 0.582293 -0.723201 -0.371369 0.774007 0.632896 -0.018880 0.248692 -0.276448 0.928293 0.654883 -0.658189 -0.371369 0.703412 0.710531 -0.018880 0.276296 -0.248861 0.928293 0.720259 -0.585928 -0.371369 0.625069 0.780341 -0.018880 0.300857 -0.218533 0.928293 0.777702 -0.507213 -0.371369 0.539842 0.841555 -0.018880 0.322104 -0.185797 0.928293 0.826155 -0.423737 -0.371369 0.449561 0.893050 -0.018880 0.339652 -0.151355 0.928293 0.866016 -0.334816 -0.371369 0.353487 0.935249 -0.018880 0.353644 -0.114923 0.928293 0.896337 -0.242208 -0.371369 0.253519 0.967146 -0.018880 0.363741 -0.077226 0.928293 0.916638 -0.147848 -0.371369 0.151747 0.988239 -0.018880 0.369793 -0.039048 0.928293 0.927086 -0.050963 -0.371369 0.047337 0.998700 -0.018880 0.371849 -0.000076 0.928293 0.927321 0.046483 -0.371369 -0.057595 0.998161 -0.018880 0.369809 0.038897 0.928293 0.917342 0.143416 -0.371369 -0.161892 0.986628 -0.018880 0.363696 0.077442 0.928293 0.897497 0.237873 -0.371369 -0.263442 0.964491 -0.018880 0.353691 0.114779 0.928293 0.867623 0.330627 -0.371369 -0.363076 0.931568 -0.018880 0.339713 0.151217 0.928293 0.828193 0.419740 -0.371369 -0.458712 0.888385 -0.018880 0.321994 0.185988 0.928293 0.779640 0.504228 -0.371369 -0.549294 0.835416 -0.018880 0.300728 0.218711 0.928293 0.723082 0.582440 -0.371369 -0.633053 0.773878 -0.018880 0.276398 0.248749 0.928293 0.658056 0.655017 -0.371369 -0.710675 0.703267 -0.018880 0.248805 0.276347 0.928293 0.585781 0.720378 -0.371369 -0.780468 0.624910 -0.018880 0.218472 0.300902 0.928293 0.507832 0.777298 -0.371369 -0.841125 0.540511 -0.018880 0.186054 0.321956 0.928293 0.423569 0.826241 -0.371369 -0.893142 0.449379 -0.018880 0.151286 0.339683 0.928293 0.334640 0.866084 -0.371369 -0.935321 0.353296 -0.018880 0.114851 0.353668 0.928293 0.242025 0.896386 -0.371369 -0.967198 0.253322 -0.018880 0.077152 0.363757 0.928293 0.147661 0.916668 -0.371369 -0.988270 0.151546 -0.018880 0.038972 0.369801 0.928293 0.050775 0.927096 -0.371369 -0.998710 0.047134 -0.018880 0.000000 0.371849 0.928293 -0.046671 0.927311 -0.371369 -0.998150 -0.057798 -0.018880 -0.038972 0.369801 0.928293 -0.142686 0.917456 -0.371369 -0.986756 -0.161106 -0.018880 -0.077152 0.363757 0.928293 -0.238056 0.897449 -0.371369 -0.964437 -0.263638 -0.018880 -0.114851 0.353668 0.928293 -0.330804 0.867556 -0.371369 -0.931494 -0.363266 -0.018880 -0.151286 0.339683 0.928293 -0.419908 0.828107 -0.371369 -0.888291 -0.458893 -0.018880 -0.186054 0.321956 0.928293 -0.503607 0.780041 -0.371369 -0.835853 -0.548629 -0.018880 -0.218472 0.300902 0.928293 -0.582588 0.722964 -0.371369 -0.773749 -0.633211 -0.018880 -0.248805 0.276347 0.928293 -0.655151 0.657923 -0.371369 -0.703123 -0.710818 -0.018880 -0.276398 0.248749 0.928293 -0.719912 0.586355 -0.371369 -0.625532 -0.779970 -0.018880 -0.300728 0.218711 0.928293 -0.777401 0.507674 -0.371369 -0.540340 -0.841235 -0.018880 -0.321994 0.185988 0.928293 -0.826327 0.423400 -0.371369 -0.449197 -0.893233 -0.018880 -0.339713 0.151217 0.928293 -0.866152 0.334464 -0.371369 -0.353106 -0.935393 -0.018880 -0.353691 0.114779 0.928293 -0.896193 0.242739 -0.371369 -0.254092 -0.966996 -0.018880 -0.363696 0.077442 0.928293 -0.916698 0.147474 -0.371369 -0.151345 -0.988301 -0.018880 -0.369809 0.038897 0.928293 0.063127 -0.885317 0.460682 0.119761 0.464987 0.877180 -0.990794 -0.000202 0.135379 0.155567 -0.873825 0.460682 0.070367 0.474978 0.877180 -0.985316 -0.104043 0.135379 0.245440 -0.852954 0.460682 0.020678 0.479717 0.877180 -0.969191 -0.205769 0.135379 0.333484 -0.822533 0.460682 -0.029713 0.479242 0.877180 -0.942287 -0.306214 0.135379 0.417855 -0.783051 0.460682 -0.079778 0.473488 0.877180 -0.905004 -0.403286 0.135379 0.496888 -0.735442 0.460682 -0.128501 0.462648 0.877180 -0.858248 -0.495058 0.135379 0.571231 -0.679314 0.460682 -0.176282 0.446632 0.877180 -0.801636 -0.582282 0.135379 0.639282 -0.615704 0.460682 -0.222121 0.425697 0.877180 -0.736194 -0.663092 0.135379 0.700291 -0.545311 0.460682 -0.265514 0.400073 0.877180 -0.662642 -0.736599 0.135379 0.753117 -0.469666 0.460682 -0.305612 0.370347 0.877180 -0.582594 -0.801409 0.135379 0.798194 -0.388147 0.460682 -0.342744 0.336277 0.877180 -0.495392 -0.858056 0.135379 0.834479 -0.302353 0.460682 -0.376101 0.298503 0.877180 -0.402733 -0.905251 0.135379 0.861358 -0.214090 0.460682 -0.405057 0.257846 0.877180 -0.306581 -0.942168 0.135379 0.879052 -0.122634 0.460682 -0.429850 0.213973 0.877180 -0.206146 -0.969111 0.135379 0.887064 -0.029828 0.460682 -0.449909 0.167744 0.877180 -0.103441 -0.985379 0.135379 0.885356 0.062586 0.460682 -0.464914 0.120045 0.877180 -0.000404 -0.990794 0.135379 0.873920 0.155033 0.460682 -0.474935 0.070657 0.877180 0.103441 -0.985379 0.135379 0.852859 0.245772 0.460682 -0.479725 0.020492 0.877180 0.206146 -0.969111 0.135379 0.822403 0.333804 0.460682 -0.479230 -0.029900 0.877180 0.306581 -0.942168 0.135379 0.783306 0.417376 0.460682 -0.473537 -0.079488 0.877180 0.402733 -0.905251 0.135379 0.735248 0.497174 0.460682 -0.462598 -0.128681 0.877180 0.495392 -0.858056 0.135379 0.679092 0.571495 0.460682 -0.446564 -0.176456 0.877180 0.582594 -0.801409 0.135379 0.616094 0.638905 0.460682 -0.425833 -0.221861 0.877180 0.662642 -0.736599 0.135379 0.545739 0.699958 0.460682 -0.400235 -0.265270 0.877180 0.736194 -0.663092 0.135379 0.469373 0.753300 0.460682 -0.370228 -0.305756 0.877180 0.801636 -0.582282 0.135379 0.387837 0.798345 0.460682 -0.336144 -0.342875 0.877180 0.858248 -0.495058 0.135379 0.302863 0.834294 0.460682 -0.298733 -0.375918 0.877180 0.905004 -0.403286 0.135379 0.213755 0.861441 0.460682 -0.257689 -0.405157 0.877180 0.942287 -0.306214 0.135379 0.122292 0.879100 0.460682 -0.213806 -0.429933 0.877180 0.969191 -0.205769 0.135379 0.030370 0.887045 0.460682 -0.168018 -0.449806 0.877180 0.985316 -0.104043 0.135379 -0.062766 0.885343 0.460682 -0.119950 -0.464938 0.877180 0.990794 -0.000202 0.135379 -0.155211 0.873889 0.460682 -0.070561 -0.474949 0.877180 0.985358 0.103642 0.135379 -0.245946 0.852809 0.460682 -0.020394 -0.479729 0.877180 0.969069 0.206343 0.135379 -0.333149 0.822668 0.460682 0.029518 -0.479254 0.877180 0.942412 0.305830 0.135379 -0.417536 0.783221 0.460682 0.079585 -0.473521 0.877180 0.905169 0.402917 0.135379 -0.497323 0.735147 0.460682 0.128775 -0.462572 0.877180 0.857955 0.495566 0.135379 -0.571633 0.678975 0.460682 0.176547 -0.446528 0.877180 0.801291 0.582757 0.135379 -0.639031 0.615964 0.460682 0.221948 -0.425787 0.877180 0.736464 0.662792 0.135379 -0.700069 0.545596 0.460682 0.265351 -0.400181 0.877180 0.662942 0.736329 0.135379 -0.753396 0.469219 0.460682 0.305831 -0.370166 0.877180 0.582119 0.801754 0.135379 -0.798036 0.388472 0.460682 0.342607 -0.336417 0.877180 0.495741 0.857854 0.135379 -0.834355 0.302693 0.460682 0.375979 -0.298656 0.877180 0.403102 0.905086 0.135379 -0.861485 0.213579 0.460682 0.405210 -0.257606 0.877180 0.306022 0.942350 0.135379 -0.879125 0.122113 0.460682 0.429977 -0.213719 0.877180 0.205572 0.969233 0.135379 -0.887052 0.030189 0.460682 0.449840 -0.167927 0.877180 0.103842 0.985337 0.135379 -0.885330 -0.062946 0.460682 0.464963 -0.119855 0.877180 0.000000 0.990794 0.135379 -0.873857 -0.155389 0.460682 0.474964 -0.070464 0.877180 -0.103842 0.985337 0.135379 -0.853004 -0.245266 0.460682 0.479713 -0.020776 0.877180 -0.205572 0.969233 0.135379 -0.822601 -0.333317 0.460682 0.479248 0.029616 0.877180 -0.306022 0.942350 0.135379 -0.783136 -0.417695 0.460682 0.473505 0.079681 0.877180 -0.403102 0.905086 0.135379 -0.735046 -0.497473 0.460682 0.462546 0.128869 0.877180 -0.495741 0.857854 0.135379 -0.679430 -0.571092 0.460682 0.446668 0.176191 0.877180 -0.582119 0.801754 0.135379 -0.615834 -0.639156 0.460682 0.425742 0.222035 0.877180 -0.662942 0.736329 0.135379 -0.545454 -0.700180 0.460682 0.400127 0.265433 0.877180 -0.736464 0.662792 0.135379 -0.469819 -0.753022 0.460682 0.370409 0.305537 0.877180 -0.801291 0.582757 0.135379 -0.388310 -0.798115 0.460682 0.336347 0.342675 0.877180 -0.857955 0.495566 0.135379 -0.302523 -0.834417 0.460682 0.298580 0.376040 0.877180 -0.905169 0.402917 0.135379 -0.213404 -0.861528 0.460682 0.257524 0.405262 0.877180 -0.942412 0.305830 0.135379 -0.122813 -0.879027 0.460682 0.214061 0.429807 0.877180 -0.969069 0.206343 0.135379 -0.030009 -0.887058 0.460682 0.167835 0.449875 0.877180 -0.985358 0.103642 0.135379 -0.422501 0.001710 0.906361 0.000555 0.999999 -0.001628 -0.906362 -0.000185 -0.422502 -0.420354 -0.042580 0.906361 -0.104255 0.994549 -0.001628 -0.901351 -0.095177 -0.422502 -0.413662 -0.085988 0.906361 -0.206938 0.978353 -0.001628 -0.886600 -0.188234 -0.422502 -0.402372 -0.128869 0.906361 -0.308337 0.951276 -0.001628 -0.861989 -0.280120 -0.422502 -0.386649 -0.170331 0.906361 -0.406339 0.913721 -0.001628 -0.827883 -0.368919 -0.422502 -0.366878 -0.209550 0.906361 -0.499000 0.866601 -0.001628 -0.785112 -0.452871 -0.422502 -0.342895 -0.246847 0.906361 -0.587077 0.809529 -0.001628 -0.733324 -0.532662 -0.422502 -0.315135 -0.281425 0.906361 -0.668688 0.743541 -0.001628 -0.673458 -0.606586 -0.422502 -0.283904 -0.312904 0.906361 -0.742934 0.669363 -0.001628 -0.606174 -0.673828 -0.422502 -0.249886 -0.340686 0.906361 -0.808408 0.588620 -0.001628 -0.532947 -0.733116 -0.422502 -0.212804 -0.365000 0.906361 -0.865648 0.500651 -0.001628 -0.453176 -0.784935 -0.422502 -0.173377 -0.385293 0.906361 -0.913352 0.407168 -0.001628 -0.368414 -0.828109 -0.422502 -0.132442 -0.401210 0.906361 -0.950686 0.310150 -0.001628 -0.280455 -0.861880 -0.422502 -0.089663 -0.412881 0.906361 -0.977956 0.208804 -0.001628 -0.188579 -0.886527 -0.422502 -0.045896 -0.420005 0.906361 -0.994454 0.105157 -0.001628 -0.094626 -0.901409 -0.422502 -0.001968 -0.422500 0.906361 -0.999998 0.001166 -0.001628 -0.000369 -0.906362 -0.422502 0.042323 -0.420380 0.906361 -0.994613 -0.103647 -0.001628 0.094626 -0.901409 -0.422502 0.086149 -0.413629 0.906361 -0.978272 -0.207319 -0.001628 0.188579 -0.886527 -0.422502 0.129026 -0.402321 0.906361 -0.951156 -0.308707 -0.001628 0.280455 -0.861880 -0.422502 0.170095 -0.386753 0.906361 -0.913969 -0.405781 -0.001628 0.368414 -0.828109 -0.422502 0.209693 -0.366796 0.906361 -0.866407 -0.499337 -0.001628 0.453176 -0.784935 -0.422502 0.246981 -0.342799 0.906361 -0.809301 -0.587392 -0.001628 0.532947 -0.733116 -0.422502 0.281233 -0.315307 0.906361 -0.743949 -0.668234 -0.001628 0.606174 -0.673828 -0.422502 0.312730 -0.284095 0.906361 -0.669816 -0.742525 -0.001628 0.673458 -0.606586 -0.422502 0.340783 -0.249754 0.906361 -0.588305 -0.808637 -0.001628 0.733324 -0.532662 -0.422502 0.365082 -0.212662 0.906361 -0.500314 -0.865842 -0.001628 0.785112 -0.452871 -0.422502 0.385187 -0.173613 0.906361 -0.407726 -0.913103 -0.001628 0.827883 -0.368919 -0.422502 0.401261 -0.132286 0.906361 -0.309781 -0.950807 -0.001628 0.861989 -0.280120 -0.422502 0.412916 -0.089503 0.906361 -0.208423 -0.978037 -0.001628 0.886600 -0.188234 -0.422502 0.419976 -0.046153 0.906361 -0.105764 -0.994390 -0.001628 0.901351 -0.095177 -0.422502 0.422501 -0.001882 0.906361 -0.000963 -0.999998 -0.001628 0.906362 -0.000185 -0.422502 0.420371 0.042409 0.906361 0.103850 -0.994592 -0.001628 0.901390 0.094810 -0.422502 0.413611 0.086233 0.906361 0.207518 -0.978230 -0.001628 0.886489 0.188760 -0.422502 0.402424 0.128706 0.906361 0.307949 -0.951401 -0.001628 0.862103 0.279768 -0.422502 0.386719 0.170174 0.906361 0.405967 -0.913886 -0.001628 0.828034 0.368582 -0.422502 0.366753 0.209767 0.906361 0.499513 -0.866305 -0.001628 0.784843 0.453336 -0.422502 0.342748 0.247050 0.906361 0.587557 -0.809181 -0.001628 0.733008 0.533097 -0.422502 0.315249 0.281297 0.906361 0.668386 -0.743813 -0.001628 0.673705 0.606312 -0.422502 0.284031 0.312788 0.906361 0.742661 -0.669665 -0.001628 0.606449 0.673582 -0.422502 0.249685 0.340834 0.906361 0.808757 -0.588141 -0.001628 0.532513 0.733432 -0.422502 0.212953 0.364913 0.906361 0.865444 -0.501004 -0.001628 0.453496 0.784751 -0.422502 0.173534 0.385222 0.906361 0.913186 -0.407540 -0.001628 0.368751 0.827958 -0.422502 0.132204 0.401288 0.906361 0.950870 -0.309587 -0.001628 0.279944 0.862046 -0.422502 0.089418 0.412934 0.906361 0.978080 -0.208224 -0.001628 0.188054 0.886639 -0.422502 0.046068 0.419986 0.906361 0.994411 -0.105562 -0.001628 0.094993 0.901370 -0.422502 0.001796 0.422501 0.906361 0.999998 -0.000759 -0.001628 0.000000 0.906362 -0.422502 -0.042495 0.420362 0.906361 0.994570 0.104052 -0.001628 -0.094993 0.901370 -0.422502 -0.085904 0.413680 0.906361 0.978395 0.206739 -0.001628 -0.188054 0.886639 -0.422502 -0.128787 0.402398 0.906361 0.951339 0.308143 -0.001628 -0.279944 0.862046 -0.422502 -0.170252 0.386684 0.906361 0.913804 0.406153 -0.001628 -0.368751 0.827958 -0.422502 -0.209842 0.366711 0.906361 0.866203 0.499689 -0.001628 -0.453496 0.784751 -0.422502 -0.246777 0.342945 0.906361 0.809649 0.586912 -0.001628 -0.532513 0.733432 -0.422502 -0.281361 0.315192 0.906361 0.743677 0.668537 -0.001628 -0.606449 0.673582 -0.422502 -0.312846 0.283968 0.906361 0.669514 0.742798 -0.001628 -0.673705 0.606312 -0.422502 -0.340635 0.249956 0.906361 0.588785 0.808288 -0.001628 -0.733008 0.533097 -0.422502 -0.364956 0.212878 0.906361 0.500827 0.865546 -0.001628 -0.784843 0.453336 -0.422502 -0.385258 0.173456 0.906361 0.407354 0.913269 -0.001628 -0.828034 0.368582 -0.422502 -0.401315 0.132123 0.906361 0.309393 0.950933 -0.001628 -0.862103 0.279768 -0.422502 -0.412863 0.089747 0.906361 0.209003 0.977914 -0.001628 -0.886489 0.188760 -0.422502 -0.419995 0.045982 0.906361 0.105359 0.994433 -0.001628 -0.901390 0.094810 -0.422502 0.499552 0.514921 -0.696638 0.300225 -0.857238 -0.418340 -0.812596 -0.000165 -0.582827 0.442834 0.564441 -0.696638 0.388416 -0.821051 -0.418340 -0.808103 -0.085330 -0.582827 0.381845 0.607363 -0.696638 0.471553 -0.776292 -0.418340 -0.794879 -0.168761 -0.582827 0.316086 0.644038 -0.696638 0.550317 -0.722595 -0.418340 -0.772814 -0.251140 -0.582827 0.246845 0.673620 -0.696638 0.623019 -0.660938 -0.418340 -0.742236 -0.330754 -0.582827 0.175581 0.695606 -0.696638 0.688267 -0.592689 -0.418340 -0.703889 -0.406020 -0.582827 0.101710 0.710177 -0.696638 0.746594 -0.517290 -0.418340 -0.657459 -0.477556 -0.582827 0.026718 0.716925 -0.696638 0.796698 -0.436193 -0.418340 -0.603787 -0.543833 -0.582827 -0.048568 0.715777 -0.696638 0.838026 -0.350291 -0.418340 -0.543464 -0.604119 -0.582827 -0.122612 0.706868 -0.696638 0.869863 -0.261400 -0.418340 -0.477812 -0.657273 -0.582827 -0.196022 0.690124 -0.696638 0.892469 -0.168793 -0.418340 -0.406294 -0.703731 -0.582827 -0.267272 0.665779 -0.696638 0.905244 -0.074326 -0.418340 -0.330300 -0.742438 -0.582827 -0.334944 0.634435 -0.696638 0.908069 0.020051 -0.418340 -0.251441 -0.772716 -0.582827 -0.399593 0.595837 -0.696638 0.900967 0.115113 -0.418340 -0.169070 -0.794813 -0.582827 -0.459840 0.550675 -0.696638 0.883940 0.208907 -0.418340 -0.084837 -0.808155 -0.582827 -0.514615 0.499867 -0.696638 0.857421 0.299701 -0.418340 -0.000331 -0.812596 -0.582827 -0.564171 0.443179 -0.696638 0.821288 0.387915 -0.418340 0.084837 -0.808155 -0.582827 -0.607512 0.381609 -0.696638 0.776109 0.471855 -0.418340 0.169070 -0.794813 -0.582827 -0.644161 0.315835 -0.696638 0.722380 0.550598 -0.418340 0.251441 -0.772716 -0.582827 -0.673469 0.247257 -0.696638 0.661318 0.622615 -0.418340 0.330300 -0.742438 -0.582827 -0.695674 0.175311 -0.696638 0.592422 0.688497 -0.418340 0.406294 -0.703731 -0.582827 -0.710216 0.101434 -0.696638 0.516999 0.746795 -0.418340 0.477812 -0.657273 -0.582827 -0.716909 0.027156 -0.696638 0.436679 0.796431 -0.418340 0.543464 -0.604119 -0.582827 -0.715807 -0.048131 -0.696638 0.350802 0.837812 -0.418340 0.603787 -0.543833 -0.582827 -0.706820 -0.122887 -0.696638 0.261062 0.869965 -0.418340 0.657459 -0.477556 -0.582827 -0.690048 -0.196290 -0.696638 0.168446 0.892535 -0.418340 0.703889 -0.406020 -0.582827 -0.665942 -0.266865 -0.696638 0.074879 0.905199 -0.418340 0.742236 -0.330754 -0.582827 -0.634305 -0.335191 -0.696638 -0.020405 0.908061 -0.418340 0.772814 -0.251140 -0.582827 -0.595681 -0.399825 -0.696638 -0.115464 0.900922 -0.418340 0.794879 -0.168761 -0.582827 -0.550956 -0.459504 -0.696638 -0.208367 0.884067 -0.418340 0.808103 -0.085330 -0.582827 -0.499762 -0.514717 -0.696638 -0.299876 0.857360 -0.418340 0.812596 -0.000165 -0.582827 -0.443064 -0.564261 -0.696638 -0.388082 0.821209 -0.418340 0.808138 0.085001 -0.582827 -0.381485 -0.607590 -0.696638 -0.472013 0.776013 -0.418340 0.794779 0.169232 -0.582827 -0.316348 -0.643910 -0.696638 -0.550023 0.722819 -0.418340 0.772916 0.250825 -0.582827 -0.247120 -0.673519 -0.696638 -0.622750 0.661192 -0.418340 0.742371 0.330451 -0.582827 -0.175169 -0.695709 -0.696638 -0.688618 0.592281 -0.418340 0.703649 0.406437 -0.582827 -0.101289 -0.710237 -0.696638 -0.746901 0.516847 -0.418340 0.657176 0.477946 -0.582827 -0.027010 -0.716914 -0.696638 -0.796520 0.436517 -0.418340 0.604008 0.543587 -0.582827 0.048276 -0.715797 -0.696638 -0.837884 0.350632 -0.418340 0.543710 0.603897 -0.582827 0.123031 -0.706795 -0.696638 -0.870018 0.260885 -0.418340 0.477423 0.657556 -0.582827 0.195741 -0.690204 -0.696638 -0.892400 0.169156 -0.418340 0.406580 0.703566 -0.582827 0.267001 -0.665888 -0.696638 -0.905214 0.074695 -0.418340 0.330602 0.742303 -0.582827 0.335320 -0.634237 -0.696638 -0.908057 -0.020590 -0.418340 0.250983 0.772865 -0.582827 0.399946 -0.595600 -0.696638 -0.900898 -0.115647 -0.418340 0.168599 0.794913 -0.582827 0.459616 -0.550862 -0.696638 -0.884025 -0.208547 -0.418340 0.085166 0.808121 -0.582827 0.514819 -0.499657 -0.696638 -0.857299 -0.300050 -0.418340 0.000000 0.812596 -0.582827 0.564351 -0.442949 -0.696638 -0.821130 -0.388249 -0.418340 -0.085166 0.808121 -0.582827 0.607286 -0.381969 -0.696638 -0.776388 -0.471395 -0.418340 -0.168599 0.794913 -0.582827 0.643974 -0.316217 -0.696638 -0.722707 -0.550170 -0.418340 -0.250983 0.772865 -0.582827 0.673569 -0.246982 -0.696638 -0.661065 -0.622885 -0.418340 -0.330602 0.742303 -0.582827 0.695745 -0.175027 -0.696638 -0.592141 -0.688738 -0.418340 -0.406580 0.703566 -0.582827 0.710156 -0.101854 -0.696638 -0.517442 -0.746489 -0.418340 -0.477423 0.657556 -0.582827 0.716920 -0.026864 -0.696638 -0.436355 -0.796609 -0.418340 -0.543710 0.603897 -0.582827 0.715787 0.048422 -0.696638 -0.350461 -0.837955 -0.418340 -0.604008 0.543587 -0.582827 0.706893 0.122468 -0.696638 -0.261577 -0.869810 -0.418340 -0.657176 0.477946 -0.582827 0.690164 0.195881 -0.696638 -0.168974 -0.892435 -0.418340 -0.703649 0.406437 -0.582827 0.665833 0.267137 -0.696638 -0.074510 -0.905229 -0.418340 -0.742371 0.330451 -0.582827 0.634168 0.335449 -0.696638 0.020775 -0.908053 -0.418340 -0.772916 0.250825 -0.582827 0.595918 0.399472 -0.696638 0.114930 -0.900990 -0.418340 -0.794779 0.169232 -0.582827 0.550769 0.459728 -0.696638 0.208727 -0.883982 -0.418340 -0.808138 0.085001 -0.582827 -0.106799 -0.576330 0.810209 -0.075563 0.817217 0.571355 -0.991405 -0.000202 -0.130828 -0.045808 -0.584349 0.810209 -0.160797 0.804797 0.571355 -0.985924 -0.104107 -0.130828 0.015103 -0.585947 0.810209 -0.243477 0.783756 0.571355 -0.969789 -0.205896 -0.130828 0.076431 -0.581137 0.810209 -0.324279 0.753921 0.571355 -0.942869 -0.306403 -0.130828 0.136917 -0.569926 0.810209 -0.401509 0.715782 0.571355 -0.905563 -0.403535 -0.130828 0.195343 -0.552633 0.810209 -0.473647 0.670233 0.571355 -0.858778 -0.495363 -0.130828 0.252187 -0.529116 0.810209 -0.541284 0.616900 0.571355 -0.802131 -0.582641 -0.130828 0.306253 -0.499771 0.810209 -0.602958 0.556772 0.571355 -0.736648 -0.663501 -0.130828 0.356946 -0.464921 0.810209 -0.657991 0.490511 0.571355 -0.663051 -0.737053 -0.130828 0.403282 -0.425353 0.810209 -0.705357 0.419553 0.571355 -0.582953 -0.801904 -0.130828 0.445641 -0.380744 0.810209 -0.745445 0.343316 0.571355 -0.495697 -0.858585 -0.130828 0.483092 -0.331940 0.810209 -0.777321 0.263297 0.571355 -0.402981 -0.905809 -0.130828 0.514941 -0.279996 0.810209 -0.800455 0.181179 0.571355 -0.306770 -0.942749 -0.130828 0.541451 -0.224484 0.810209 -0.815035 0.096288 0.571355 -0.206273 -0.969709 -0.130828 0.561996 -0.166500 0.810209 -0.820638 0.010336 0.571355 -0.103505 -0.985987 -0.130828 0.576264 -0.107151 0.810209 -0.817263 -0.075064 0.571355 -0.000404 -0.991405 -0.130828 0.584321 -0.046165 0.810209 -0.804895 -0.160306 0.571355 0.103505 -0.985987 -0.130828 0.585941 0.015331 0.810209 -0.783661 -0.243782 0.571355 0.206273 -0.969709 -0.130828 0.581107 0.076657 0.810209 -0.753795 -0.324572 0.571355 0.306770 -0.942749 -0.130828 0.570009 0.136569 0.810209 -0.716027 -0.401072 0.571355 0.402981 -0.905809 -0.130828 0.552557 0.195558 0.810209 -0.670049 -0.473908 0.571355 0.495697 -0.858585 -0.130828 0.529018 0.252393 0.810209 -0.616690 -0.541524 0.571355 0.582953 -0.801904 -0.130828 0.499958 0.305948 0.810209 -0.557140 -0.602618 0.571355 0.663051 -0.737053 -0.130828 0.465139 0.356662 0.810209 -0.490913 -0.657692 0.571355 0.736648 -0.663501 -0.130828 0.425196 0.403448 0.810209 -0.419279 -0.705521 0.571355 0.802131 -0.582641 -0.130828 0.380570 0.445789 0.810209 -0.343026 -0.745578 0.571355 0.858778 -0.495363 -0.130828 0.332235 0.482889 0.810209 -0.263772 -0.777160 0.571355 0.905563 -0.403535 -0.130828 0.279795 0.515050 0.810209 -0.180868 -0.800525 0.571355 0.942869 -0.306403 -0.130828 0.224274 0.541538 0.810209 -0.095971 -0.815073 0.571355 0.969789 -0.205896 -0.130828 0.166843 0.561894 0.810209 -0.010837 -0.820632 0.571355 0.985924 -0.104107 -0.130828 0.107034 0.576286 0.810209 0.075231 -0.817248 0.571355 0.991405 -0.000202 -0.130828 0.046046 0.584330 0.810209 0.160470 -0.804862 0.571355 0.985966 0.103706 -0.130828 -0.015450 0.585938 0.810209 0.243941 -0.783611 0.571355 0.969667 0.206471 -0.130828 -0.076194 0.581168 0.810209 0.323972 -0.754053 0.571355 0.942993 0.306019 -0.130828 -0.136685 0.569982 0.810209 0.401218 -0.715946 0.571355 0.905727 0.403166 -0.130828 -0.195671 0.552517 0.810209 0.474044 -0.669952 0.571355 0.858484 0.495872 -0.130828 -0.252501 0.528966 0.810209 0.541649 -0.616579 0.571355 0.801785 0.583116 -0.130828 -0.306050 0.499895 0.810209 0.602732 -0.557018 0.571355 0.736918 0.663201 -0.130828 -0.356757 0.465066 0.810209 0.657791 -0.490779 0.571355 0.663351 0.736783 -0.130828 -0.403534 0.425114 0.810209 0.705606 -0.419135 0.571355 0.582478 0.802249 -0.130828 -0.445486 0.380925 0.810209 0.745305 -0.343620 0.571355 0.496047 0.858383 -0.130828 -0.482956 0.332137 0.810209 0.777214 -0.263614 0.571355 0.403350 0.905645 -0.130828 -0.515107 0.279691 0.810209 0.800562 -0.180705 0.571355 0.306211 0.942931 -0.130828 -0.541584 0.224163 0.810209 0.815092 -0.095805 0.571355 0.205698 0.969831 -0.130828 -0.561928 0.166729 0.810209 0.820634 -0.010670 0.571355 0.103906 0.985945 -0.130828 -0.576308 0.106917 0.810209 0.817233 0.075397 0.571355 0.000000 0.991405 -0.130828 -0.584339 0.045927 0.810209 0.804830 0.160634 0.571355 -0.103906 0.985945 -0.130828 -0.585950 -0.014983 0.810209 0.783805 0.243317 0.571355 -0.205698 0.969831 -0.130828 -0.581153 -0.076313 0.810209 0.753987 0.324125 0.571355 -0.306211 0.942931 -0.130828 -0.569954 -0.136801 0.810209 0.715864 0.401364 0.571355 -0.403350 0.905645 -0.130828 -0.552477 -0.195783 0.810209 0.669856 0.474181 0.571355 -0.496047 0.858383 -0.130828 -0.529167 -0.252079 0.810209 0.617010 0.541158 0.571355 -0.582478 0.802249 -0.130828 -0.499833 -0.306152 0.810209 0.556895 0.602845 0.571355 -0.663351 0.736783 -0.130828 -0.464993 -0.356852 0.810209 0.490645 0.657891 0.571355 -0.736918 0.663201 -0.130828 -0.425435 -0.403196 0.810209 0.419697 0.705272 0.571355 -0.801785 0.583116 -0.130828 -0.380834 -0.445564 0.810209 0.343468 0.745375 0.571355 -0.858484 0.495872 -0.130828 -0.332039 -0.483024 0.810209 0.263456 0.777268 0.571355 -0.905727 0.403166 -0.130828 -0.279586 -0.515164 0.810209 0.180541 0.800599 0.571355 -0.942993 0.306019 -0.130828 -0.224595 -0.541405 0.810209 0.096454 0.815016 0.571355 -0.969667 0.206471 -0.130828 -0.166615 -0.561962 0.810209 0.010503 0.820636 0.571355 -0.985966 0.103706 -0.130828 0.481879 0.059859 0.874191 -0.029053 0.998207 -0.052336 -0.875756 -0.000178 0.482754 0.472951 0.110033 0.874191 -0.133512 0.989664 -0.052336 -0.870914 -0.091963 0.482754 0.458973 0.158537 0.874191 -0.235530 0.970457 -0.052336 -0.856662 -0.181878 0.482754 0.439829 0.205768 0.874191 -0.335944 0.940427 -0.052336 -0.832882 -0.270661 0.482754 0.415841 0.250732 0.874191 -0.432657 0.900038 -0.052336 -0.799927 -0.356462 0.482754 0.387565 0.292547 0.874191 -0.523755 0.850260 -0.052336 -0.758600 -0.437578 0.482754 0.354770 0.331555 0.874191 -0.609984 0.790684 -0.052336 -0.708561 -0.514675 0.482754 0.318066 0.366911 0.874191 -0.689494 0.722398 -0.052336 -0.650717 -0.586103 0.482754 0.277860 0.398226 0.874191 -0.761409 0.646156 -0.052336 -0.585705 -0.651075 0.482754 0.235017 0.424920 0.874191 -0.824374 0.563621 -0.052336 -0.514951 -0.708360 0.482754 0.189188 0.447211 0.874191 -0.878905 0.474116 -0.052336 -0.437873 -0.758430 0.482754 0.141276 0.464577 0.874191 -0.923756 0.379390 -0.052336 -0.355973 -0.800145 0.482754 0.092283 0.476733 0.874191 -0.958150 0.281442 -0.052336 -0.270985 -0.832776 0.482754 0.041810 0.483779 0.874191 -0.982370 0.179471 -0.052336 -0.182211 -0.856591 0.482754 -0.009124 0.485497 0.874191 -0.995770 0.075524 -0.052336 -0.091431 -0.870970 0.482754 -0.059564 0.481915 0.874191 -0.998224 -0.028443 -0.052336 -0.000357 -0.875756 0.482754 -0.109745 0.473018 0.874191 -0.989746 -0.132908 -0.052336 0.091431 -0.870970 0.482754 -0.158716 0.458911 0.874191 -0.970365 -0.235908 -0.052336 0.182211 -0.856591 0.482754 -0.205939 0.439749 0.874191 -0.940296 -0.336310 -0.052336 0.270985 -0.832776 0.482754 -0.250478 0.415994 0.874191 -0.900302 -0.432107 -0.052336 0.355973 -0.800145 0.482754 -0.292697 0.387451 0.874191 -0.850056 -0.524086 -0.052336 0.437873 -0.758430 0.482754 -0.331693 0.354641 0.874191 -0.790446 -0.610291 -0.052336 0.514951 -0.708360 0.482754 -0.366717 0.318290 0.874191 -0.722820 -0.689052 -0.052336 0.585705 -0.651075 0.482754 -0.398056 0.278103 0.874191 -0.646621 -0.761014 -0.052336 0.650717 -0.586103 0.482754 -0.425011 0.234852 0.874191 -0.563300 -0.824593 -0.052336 0.708561 -0.514675 0.482754 -0.447285 0.189014 0.874191 -0.473775 -0.879090 -0.052336 0.758600 -0.437578 0.482754 -0.464490 0.141559 0.874191 -0.379954 -0.923524 -0.052336 0.799927 -0.356462 0.482754 -0.476768 0.092098 0.874191 -0.281070 -0.958259 -0.052336 0.832882 -0.270661 0.482754 -0.483795 0.041622 0.874191 -0.179089 -0.982440 -0.052336 0.856662 -0.181878 0.482754 -0.485502 -0.008827 0.874191 -0.076132 -0.995723 -0.052336 0.870914 -0.091963 0.482754 -0.481903 -0.059663 0.874191 0.028646 -0.998219 -0.052336 0.875756 -0.000178 0.482754 -0.472996 -0.109841 0.874191 0.133109 -0.989719 -0.052336 0.870952 0.091608 0.482754 -0.458879 -0.158809 0.874191 0.236106 -0.970317 -0.052336 0.856554 0.182386 0.482754 -0.439913 -0.205589 0.874191 0.335561 -0.940563 -0.052336 0.832992 0.270321 0.482754 -0.415943 -0.250562 0.874191 0.432291 -0.900214 -0.052336 0.800073 0.356136 0.482754 -0.387392 -0.292776 0.874191 0.524259 -0.849949 -0.052336 0.758341 0.438028 0.482754 -0.354573 -0.331765 0.874191 0.610452 -0.790322 -0.052336 0.708256 0.515095 0.482754 -0.318216 -0.366782 0.874191 0.689199 -0.722679 -0.052336 0.650955 0.585838 0.482754 -0.278022 -0.398113 0.874191 0.761146 -0.646466 -0.052336 0.585970 0.650836 0.482754 -0.234766 -0.425059 0.874191 0.824708 -0.563132 -0.052336 0.514531 0.708666 0.482754 -0.189371 -0.447134 0.874191 0.878712 -0.474474 -0.052336 0.438182 0.758251 0.482754 -0.141465 -0.464519 0.874191 0.923601 -0.379766 -0.052336 0.356299 0.800000 0.482754 -0.092001 -0.476787 0.874191 0.958317 -0.280874 -0.052336 0.270491 0.832937 0.482754 -0.041523 -0.483804 0.874191 0.982476 -0.178889 -0.052336 0.181703 0.856699 0.482754 0.008926 -0.485500 0.874191 0.995739 -0.075929 -0.052336 0.091786 0.870933 0.482754 0.059761 -0.481891 0.874191 0.998213 0.028850 -0.052336 0.000000 0.875756 0.482754 0.109937 -0.472973 0.874191 0.989691 0.133311 -0.052336 -0.091786 0.870933 0.482754 0.158444 -0.459005 0.874191 0.970505 0.235333 -0.052336 -0.181703 0.856699 0.482754 0.205678 -0.439871 0.874191 0.940495 0.335753 -0.052336 -0.270491 0.832937 0.482754 0.250647 -0.415892 0.874191 0.900126 0.432474 -0.052336 -0.356299 0.800000 0.482754 0.292855 -0.387332 0.874191 0.849842 0.524432 -0.052336 -0.438182 0.758251 0.482754 0.331483 -0.354837 0.874191 0.790808 0.609823 -0.052336 -0.514531 0.708666 0.482754 0.366847 -0.318141 0.874191 0.722539 0.689346 -0.052336 -0.585970 0.650836 0.482754 0.398170 -0.277941 0.874191 0.646311 0.761277 -0.052336 -0.650955 0.585838 0.482754 0.424872 -0.235104 0.874191 0.563789 0.824259 -0.052336 -0.708256 0.515095 0.482754 0.447173 -0.189279 0.874191 0.474295 0.878809 -0.052336 -0.758341 0.438028 0.482754 0.464548 -0.141370 0.874191 0.379578 0.923678 -0.052336 -0.800073 0.356136 0.482754 0.476806 -0.091904 0.874191 0.280679 0.958374 -0.052336 -0.832992 0.270321 0.482754 0.483770 -0.041909 0.874191 0.179671 0.982334 -0.052336 -0.856554 0.182386 0.482754 0.485498 0.009025 0.874191 0.075726 0.995754 -0.052336 -0.870952 0.091608 0.482754 -0.476065 -0.399810 0.783272 -0.207816 0.916598 0.341556 -0.854503 -0.000174 -0.519447 -0.431540 -0.447503 0.783272 -0.302738 0.889769 0.341556 -0.849778 -0.089731 -0.519447 -0.382752 -0.489884 0.783272 -0.393471 0.853534 0.341556 -0.835872 -0.177464 -0.519447 -0.329300 -0.527301 0.783272 -0.480761 0.807594 0.341556 -0.812669 -0.264092 -0.519447 -0.272222 -0.558910 0.783272 -0.562755 0.752759 0.341556 -0.780514 -0.347811 -0.519447 -0.212729 -0.584151 0.783272 -0.637860 0.690271 0.341556 -0.740190 -0.426959 -0.519447 -0.150334 -0.603229 0.783272 -0.706692 0.619617 0.341556 -0.691365 -0.502185 -0.519447 -0.086284 -0.615663 0.783272 -0.767741 0.542138 0.341556 -0.634925 -0.571879 -0.519447 -0.021283 -0.621315 0.783272 -0.820332 0.458688 0.341556 -0.571491 -0.635274 -0.519447 0.043333 -0.620168 0.783272 -0.863518 0.371048 0.341556 -0.502454 -0.691169 -0.519447 0.108092 -0.612211 0.783272 -0.897650 0.278502 0.341556 -0.427247 -0.740024 -0.519447 0.171661 -0.597510 0.783272 -0.921896 0.182888 0.341556 -0.347334 -0.780726 -0.519447 0.232762 -0.576461 0.783272 -0.935901 0.086196 0.341556 -0.264408 -0.812566 -0.519447 0.291898 -0.548891 0.783272 -0.939780 -0.012368 0.341556 -0.177789 -0.835802 -0.519447 0.347818 -0.515275 0.783272 -0.933308 -0.110796 0.341556 -0.089212 -0.849833 -0.519447 0.399519 -0.476309 0.783272 -0.916725 -0.207256 0.341556 -0.000348 -0.854503 -0.519447 0.447239 -0.431813 0.783272 -0.889954 -0.302194 0.341556 0.089212 -0.849833 -0.519447 0.490033 -0.382561 0.783272 -0.853381 -0.393804 0.341556 0.177789 -0.835802 -0.519447 0.527430 -0.329095 0.783272 -0.807407 -0.481075 0.341556 0.264408 -0.812566 -0.519447 0.558744 -0.272563 0.783272 -0.753103 -0.562295 0.341556 0.347334 -0.780726 -0.519447 0.584233 -0.212502 0.783272 -0.690023 -0.638129 0.341556 0.427247 -0.740024 -0.519447 0.603287 -0.150100 0.783272 -0.619342 -0.706933 0.341556 0.502454 -0.691169 -0.519447 0.615610 -0.086660 0.783272 -0.542607 -0.767409 0.341556 0.571491 -0.635274 -0.519447 0.621302 -0.021662 0.783272 -0.459189 -0.820052 0.341556 0.634925 -0.571879 -0.519447 0.620151 0.043574 0.783272 -0.370712 -0.863662 0.341556 0.691365 -0.502185 -0.519447 0.612168 0.108330 0.783272 -0.278153 -0.897759 0.341556 0.740190 -0.426959 -0.519447 0.597615 0.171296 0.783272 -0.183451 -0.921784 0.341556 0.780514 -0.347811 -0.519447 0.576370 0.232987 0.783272 -0.085831 -0.935934 0.341556 0.812669 -0.264092 -0.519447 0.548777 0.292111 0.783272 0.012734 -0.939775 0.341556 0.835872 -0.177464 -0.519447 0.515487 0.347503 0.783272 0.110226 -0.933376 0.341556 0.849778 -0.089731 -0.519447 0.476228 0.399616 0.783272 0.207443 -0.916683 0.341556 0.854503 -0.000174 -0.519447 0.431722 0.447327 0.783272 0.302375 -0.889893 0.341556 0.849815 0.089385 -0.519447 0.382461 0.490111 0.783272 0.393977 -0.853300 0.341556 0.835766 0.177959 -0.519447 0.329515 0.527167 0.783272 0.480432 -0.807790 0.341556 0.812776 0.263761 -0.519447 0.272449 0.558800 0.783272 0.562448 -0.752989 0.341556 0.780656 0.347493 -0.519447 0.212383 0.584277 0.783272 0.638269 -0.689893 0.341556 0.739937 0.427397 -0.519447 0.149977 0.603318 0.783272 0.707060 -0.619198 0.341556 0.691067 0.502594 -0.519447 0.086534 0.615628 0.783272 0.767520 -0.542451 0.341556 0.635158 0.571620 -0.519447 0.021536 0.621307 0.783272 0.820146 -0.459022 0.341556 0.571750 0.635041 -0.519447 -0.043700 0.620142 0.783272 0.863737 -0.370537 0.341556 0.502044 0.691467 -0.519447 -0.107843 0.612255 0.783272 0.897537 -0.278868 0.341556 0.427548 0.739850 -0.519447 -0.171418 0.597580 0.783272 0.921821 -0.183264 0.341556 0.347652 0.780585 -0.519447 -0.233104 0.576323 0.783272 0.935952 -0.085641 0.341556 0.263926 0.812722 -0.519447 -0.292223 0.548718 0.783272 0.939773 0.012925 0.341556 0.177294 0.835908 -0.519447 -0.347608 0.515417 0.783272 0.933353 0.110416 0.341556 0.089558 0.849796 -0.519447 -0.399713 0.476146 0.783272 0.916640 0.207630 0.341556 0.000000 0.854503 -0.519447 -0.447415 0.431631 0.783272 0.889831 0.302557 0.341556 -0.089558 0.849796 -0.519447 -0.489806 0.382852 0.783272 0.853614 0.393298 0.341556 -0.177294 0.835908 -0.519447 -0.527234 0.329408 0.783272 0.807692 0.480596 0.341556 -0.263926 0.812722 -0.519447 -0.558855 0.272336 0.783272 0.752874 0.562602 0.341556 -0.347652 0.780585 -0.519447 -0.584320 0.212264 0.783272 0.689763 0.638410 0.341556 -0.427548 0.739850 -0.519447 -0.603198 0.150457 0.783272 0.619761 0.706566 0.341556 -0.502044 0.691467 -0.519447 -0.615645 0.086409 0.783272 0.542295 0.767630 0.341556 -0.571750 0.635041 -0.519447 -0.621311 0.021409 0.783272 0.458855 0.820239 0.341556 -0.635158 0.571620 -0.519447 -0.620176 -0.043207 0.783272 0.371224 0.863442 0.341556 -0.691067 0.502594 -0.519447 -0.612233 -0.107968 0.783272 0.278685 0.897594 0.341556 -0.739937 0.427397 -0.519447 -0.597545 -0.171539 0.783272 0.183076 0.921858 0.341556 -0.780656 0.347493 -0.519447 -0.576275 -0.233221 0.783272 0.085450 0.935969 0.341556 -0.812776 0.263761 -0.519447 -0.548950 -0.291786 0.783272 -0.012177 0.939783 0.341556 -0.835766 0.177959 -0.519447 -0.515346 -0.347713 0.783272 -0.110606 0.933331 0.341556 -0.849815 0.089385 -0.519447 0.068922 0.883755 -0.462847 0.130590 -0.467950 -0.874053 -0.989038 -0.000201 -0.147662 -0.024081 0.886111 -0.462847 0.178915 -0.451686 -0.874053 -0.983570 -0.103859 -0.147662 -0.115941 0.878823 -0.462847 0.224839 -0.430672 -0.874053 -0.967474 -0.205404 -0.147662 -0.207409 0.861832 -0.462847 0.268739 -0.404735 -0.874053 -0.940617 -0.305671 -0.147662 -0.296593 0.835348 -0.462847 0.309678 -0.374341 -0.874053 -0.903400 -0.402571 -0.147662 -0.381710 0.800044 -0.462847 0.346866 -0.340169 -0.874053 -0.856727 -0.494181 -0.147662 -0.463458 0.755632 -0.462847 0.380608 -0.301942 -0.874053 -0.800215 -0.581250 -0.147662 -0.540101 0.702897 -0.462847 0.410157 -0.260389 -0.874053 -0.734889 -0.661917 -0.147662 -0.610795 0.642419 -0.462847 0.435189 -0.215967 -0.874053 -0.661468 -0.735293 -0.147662 -0.674186 0.575540 -0.462847 0.455258 -0.169622 -0.874053 -0.581561 -0.799989 -0.147662 -0.730794 0.501710 -0.462847 0.470528 -0.120974 -0.874053 -0.494514 -0.856535 -0.147662 -0.779352 0.422355 -0.462847 0.480615 -0.070993 -0.874053 -0.402019 -0.903646 -0.147662 -0.818987 0.339166 -0.462847 0.485388 -0.020715 -0.874053 -0.306037 -0.940498 -0.147662 -0.850023 0.251462 -0.462847 0.484886 0.030271 -0.874053 -0.205781 -0.967394 -0.147662 -0.871697 0.160989 -0.462847 0.479043 0.080924 -0.874053 -0.103258 -0.983633 -0.147662 -0.883713 0.069462 -0.462847 0.468030 0.130304 -0.874053 -0.000403 -0.989038 -0.147662 -0.886126 -0.023540 -0.462847 0.451795 0.178639 -0.874053 0.103258 -0.983633 -0.147662 -0.878778 -0.116282 -0.462847 0.430585 0.225007 -0.874053 0.205781 -0.967394 -0.147662 -0.861751 -0.207744 -0.462847 0.404631 0.268896 -0.874053 0.306037 -0.940498 -0.147662 -0.835529 -0.296082 -0.462847 0.374530 0.309449 -0.874053 0.402019 -0.903646 -0.147662 -0.799895 -0.382021 -0.462847 0.340035 0.346998 -0.874053 0.494514 -0.856535 -0.147662 -0.755452 -0.463752 -0.462847 0.301794 0.380725 -0.874053 0.581561 -0.799989 -0.147662 -0.703226 -0.539672 -0.462847 0.260639 0.409998 -0.874053 0.661468 -0.735293 -0.147662 -0.642792 -0.610403 -0.462847 0.216233 0.435057 -0.874053 0.734889 -0.661917 -0.147662 -0.575277 -0.674410 -0.462847 0.169445 0.455323 -0.874053 0.800215 -0.581250 -0.147662 -0.501426 -0.730989 -0.462847 0.120791 0.470575 -0.874053 0.856727 -0.494181 -0.147662 -0.422831 -0.779094 -0.462847 0.071287 0.480572 -0.874053 0.903400 -0.402571 -0.147662 -0.338847 -0.819119 -0.462847 0.020527 0.485397 -0.874053 0.940617 -0.305671 -0.147662 -0.251132 -0.850121 -0.462847 -0.030460 0.484875 -0.874053 0.967474 -0.205404 -0.147662 -0.161522 -0.871598 -0.462847 -0.080631 0.479093 -0.874053 0.983570 -0.103859 -0.147662 -0.069282 -0.883727 -0.462847 -0.130399 0.468003 -0.874053 0.989038 -0.000201 -0.147662 0.023720 -0.886121 -0.462847 -0.178731 0.451759 -0.874053 0.983612 0.103458 -0.147662 0.116461 -0.878755 -0.462847 -0.225095 0.430539 -0.874053 0.967352 0.205978 -0.147662 0.207058 -0.861916 -0.462847 -0.268574 0.404845 -0.874053 0.940742 0.305288 -0.147662 0.296253 -0.835468 -0.462847 -0.309525 0.374467 -0.874053 0.903564 0.402203 -0.147662 0.382184 -0.799818 -0.462847 -0.347067 0.339964 -0.874053 0.856434 0.494688 -0.147662 0.463906 -0.755357 -0.462847 -0.380786 0.301716 -0.874053 0.799871 0.581724 -0.147662 0.539815 -0.703116 -0.462847 -0.410051 0.260556 -0.874053 0.735159 0.661618 -0.147662 0.610534 -0.642668 -0.462847 -0.435101 0.216144 -0.874053 0.661767 0.735024 -0.147662 0.674527 -0.575140 -0.462847 -0.455358 0.169352 -0.874053 0.581087 0.800334 -0.147662 0.730589 -0.502008 -0.462847 -0.470479 0.121165 -0.874053 0.494863 0.856333 -0.147662 0.779180 -0.422672 -0.462847 -0.480586 0.071189 -0.874053 0.402387 0.903482 -0.147662 0.819188 -0.338681 -0.462847 -0.485401 0.020428 -0.874053 0.305480 0.940680 -0.147662 0.850172 -0.250959 -0.462847 -0.484868 -0.030558 -0.874053 0.205207 0.967515 -0.147662 0.871631 -0.161344 -0.462847 -0.479076 -0.080729 -0.874053 0.103658 0.983591 -0.147662 0.883741 -0.069102 -0.462847 -0.467977 -0.130495 -0.874053 0.000000 0.989038 -0.147662 0.886116 0.023901 -0.462847 -0.451723 -0.178823 -0.874053 -0.103658 0.983591 -0.147662 0.878847 0.115762 -0.462847 -0.430718 -0.224752 -0.874053 -0.205207 0.967515 -0.147662 0.861874 0.207234 -0.462847 -0.404790 -0.268656 -0.874053 -0.305480 0.940680 -0.147662 0.835408 0.296423 -0.462847 -0.374404 -0.309601 -0.874053 -0.402387 0.903482 -0.147662 0.799740 0.382347 -0.462847 -0.339893 -0.347136 -0.874053 -0.494863 0.856333 -0.147662 0.755726 0.463304 -0.462847 -0.302020 -0.380546 -0.874053 -0.581087 0.800334 -0.147662 0.703007 0.539958 -0.462847 -0.260472 -0.410104 -0.874053 -0.661767 0.735024 -0.147662 0.642543 0.610664 -0.462847 -0.216056 -0.435145 -0.874053 -0.735159 0.661618 -0.147662 0.575677 0.674069 -0.462847 -0.169715 -0.455223 -0.874053 -0.799871 0.581724 -0.147662 0.501859 0.730692 -0.462847 -0.121070 -0.470503 -0.874053 -0.856434 0.494688 -0.147662 0.422513 0.779266 -0.462847 -0.071091 -0.480601 -0.874053 -0.903564 0.402203 -0.147662 0.338514 0.819257 -0.462847 -0.020329 -0.485405 -0.874053 -0.940742 0.305288 -0.147662 0.251636 0.849972 -0.462847 0.030172 -0.484893 -0.874053 -0.967352 0.205978 -0.147662 0.161167 0.871664 -0.462847 0.080826 -0.479060 -0.874053 -0.983612 0.103458 -0.147662 -0.446001 -0.419871 -0.790437 0.206502 -0.907584 0.365581 -0.870885 -0.000177 0.491487 -0.399539 -0.464303 -0.790437 0.300486 -0.880942 0.365581 -0.866070 -0.091451 0.491487 -0.349179 -0.503272 -0.790437 0.390315 -0.844988 0.365581 -0.851897 -0.180866 0.491487 -0.294510 -0.537096 -0.790437 0.476726 -0.799427 0.365581 -0.828249 -0.269155 0.491487 -0.236596 -0.565005 -0.790437 0.557886 -0.745060 0.365581 -0.795478 -0.354479 0.491487 -0.176663 -0.586514 -0.790437 0.632218 -0.683118 0.365581 -0.754380 -0.435145 0.491487 -0.114220 -0.601799 -0.790437 0.700332 -0.613095 0.365581 -0.704620 -0.511812 0.491487 -0.050518 -0.610456 -0.790437 0.760732 -0.536319 0.365581 -0.647097 -0.582843 0.491487 0.013741 -0.612389 -0.790437 0.812752 -0.453635 0.365581 -0.582447 -0.647453 0.491487 0.077240 -0.607653 -0.790437 0.855454 -0.366810 0.365581 -0.512086 -0.704420 0.491487 0.140501 -0.596211 -0.790437 0.889187 -0.275132 0.365581 -0.435438 -0.754211 0.491487 0.202215 -0.578202 -0.790437 0.913126 -0.180423 0.365581 -0.353993 -0.795694 0.491487 0.261147 -0.554086 -0.790437 0.926922 -0.084655 0.365581 -0.269477 -0.828144 0.491487 0.317781 -0.523664 -0.790437 0.930689 0.012960 0.365581 -0.181198 -0.851826 0.491487 0.370914 -0.487474 -0.790437 0.924205 0.110431 0.365581 -0.090922 -0.866126 0.491487 0.419599 -0.446257 -0.790437 0.907710 0.205947 0.365581 -0.000355 -0.870885 0.491487 0.464059 -0.399822 -0.790437 0.881126 0.299947 0.365581 0.090922 -0.866126 0.491487 0.503407 -0.348984 -0.790437 0.844836 0.390644 0.365581 0.181198 -0.851826 0.491487 0.537211 -0.294301 -0.790437 0.799241 0.477037 0.365581 0.269477 -0.828144 0.491487 0.564860 -0.236942 -0.790437 0.745400 0.557431 0.365581 0.353993 -0.795694 0.491487 0.586583 -0.176435 -0.790437 0.682872 0.632484 0.365581 0.435438 -0.754211 0.491487 0.601844 -0.113985 -0.790437 0.612823 0.700571 0.365581 0.512086 -0.704420 0.491487 0.610425 -0.050890 -0.790437 0.536783 0.760404 0.365581 0.582447 -0.647453 0.491487 0.612397 0.013367 -0.790437 0.454131 0.812475 0.365581 0.647097 -0.582843 0.491487 0.607623 0.077477 -0.790437 0.366477 0.855597 0.365581 0.704620 -0.511812 0.491487 0.596157 0.140733 -0.790437 0.274786 0.889294 0.365581 0.754380 -0.435145 0.491487 0.578326 0.201861 -0.790437 0.180981 0.913015 0.365581 0.795478 -0.354479 0.491487 0.553984 0.261362 -0.790437 0.084294 0.926955 0.365581 0.828249 -0.269155 0.491487 0.523540 0.317984 -0.790437 -0.013322 0.930684 0.365581 0.851897 -0.180866 0.491487 0.487701 0.370616 -0.790437 -0.109866 0.924273 0.365581 0.866070 -0.091451 0.491487 0.446172 0.419690 -0.790437 -0.206132 0.907668 0.365581 0.870885 -0.000177 0.491487 0.399728 0.464140 -0.790437 -0.300127 0.881065 0.365581 0.866107 0.091099 0.491487 0.348881 0.503478 -0.790437 -0.390816 0.844757 0.365581 0.851789 0.181371 0.491487 0.294729 0.536976 -0.790437 -0.476400 0.799621 0.365581 0.828358 0.268818 0.491487 0.236826 0.564909 -0.790437 -0.557583 0.745287 0.365581 0.795622 0.354155 0.491487 0.176316 0.586619 -0.790437 -0.632623 0.682744 0.365581 0.754122 0.435591 0.491487 0.113863 0.601867 -0.790437 -0.700695 0.612680 0.365581 0.704316 0.512230 0.491487 0.050766 0.610435 -0.790437 -0.760513 0.536628 0.365581 0.647335 0.582579 0.491487 -0.013491 0.612394 -0.790437 -0.812567 0.453966 0.365581 0.582711 0.647216 0.491487 -0.077600 0.607607 -0.790437 -0.855671 0.366303 0.365581 0.511669 0.704724 0.491487 -0.140258 0.596269 -0.790437 -0.889075 0.275494 0.365581 0.435745 0.754034 0.491487 -0.201979 0.578285 -0.790437 -0.913052 0.180795 0.365581 0.354317 0.795550 0.491487 -0.261475 0.553931 -0.790437 -0.926972 0.084105 0.365581 0.268986 0.828304 0.491487 -0.318091 0.523476 -0.790437 -0.930682 -0.013511 0.365581 0.180693 0.851934 0.491487 -0.370716 0.487625 -0.790437 -0.924250 -0.110055 0.365581 0.091275 0.866089 0.491487 -0.419781 0.446086 -0.790437 -0.907626 -0.206317 0.365581 0.000000 0.870885 0.491487 -0.464222 0.399633 -0.790437 -0.881003 -0.300306 0.365581 -0.091275 0.866089 0.491487 -0.503200 0.349282 -0.790437 -0.845068 -0.390143 0.365581 -0.180693 0.851934 0.491487 -0.537036 0.294619 -0.790437 -0.799524 -0.476563 0.365581 -0.268986 0.828304 0.491487 -0.564957 0.236711 -0.790437 -0.745173 -0.557734 0.365581 -0.354317 0.795550 0.491487 -0.586654 0.176196 -0.790437 -0.682615 -0.632762 0.365581 -0.435745 0.754034 0.491487 -0.601776 0.114342 -0.790437 -0.613238 -0.700207 0.365581 -0.511669 0.704724 0.491487 -0.610446 0.050642 -0.790437 -0.536474 -0.760623 0.365581 -0.582711 0.647216 0.491487 -0.612391 -0.013616 -0.790437 -0.453800 -0.812660 0.365581 -0.647335 0.582579 0.491487 -0.607669 -0.077116 -0.790437 -0.366984 -0.855379 0.365581 -0.704316 0.512230 0.491487 -0.596240 -0.140380 -0.790437 -0.275313 -0.889131 0.365581 -0.754122 0.435591 0.491487 -0.578243 -0.202097 -0.790437 -0.180609 -0.913089 0.365581 -0.795622 0.354155 0.491487 -0.553878 -0.261588 -0.790437 -0.083916 -0.926989 0.365581 -0.828358 0.268818 0.491487 -0.523729 -0.317674 -0.790437 0.012770 -0.930692 0.365581 -0.851789 0.181371 0.491487 -0.487550 -0.370815 -0.790437 0.110243 -0.924228 0.365581 -0.866107 0.091099 0.491487 0.103804 0.061778 -0.992677 0.006627 -0.998090 -0.061422 -0.994576 -0.000203 -0.104015 0.096758 0.072317 -0.992677 0.111197 -0.991898 -0.061422 -0.989077 -0.104440 -0.104015 0.088727 0.081971 -0.992677 0.213568 -0.974995 -0.061422 -0.972891 -0.206554 -0.104015 0.079647 0.090819 -0.992677 0.314578 -0.947242 -0.061422 -0.945884 -0.307383 -0.104015 0.069690 0.098667 -0.992677 0.412124 -0.909055 -0.061422 -0.908459 -0.404825 -0.104015 0.059071 0.105368 -0.992677 0.504268 -0.861360 -0.061422 -0.861524 -0.496948 -0.104015 0.047702 0.110979 -0.992677 0.591768 -0.803765 -0.061422 -0.804696 -0.584504 -0.104015 0.035808 0.115367 -0.992677 0.672749 -0.737317 -0.061422 -0.739004 -0.665623 -0.104015 0.023520 0.118485 -0.992677 0.746320 -0.662747 -0.061422 -0.665172 -0.739410 -0.104015 0.011092 0.120286 -0.992677 0.811089 -0.581689 -0.061422 -0.584817 -0.804468 -0.104015 -0.001576 0.120786 -0.992677 0.867587 -0.493477 -0.061422 -0.497283 -0.861331 -0.104015 -0.014226 0.119956 -0.992677 0.914529 -0.399830 -0.061422 -0.404270 -0.908706 -0.104015 -0.026602 0.117831 -0.992677 0.951095 -0.302730 -0.061422 -0.307751 -0.945764 -0.104015 -0.038805 0.114394 -0.992677 0.977585 -0.201381 -0.061422 -0.206933 -0.972810 -0.104015 -0.050581 0.109697 -0.992677 0.993307 -0.097814 -0.061422 -0.103836 -0.989141 -0.104015 -0.061715 0.103842 -0.992677 0.998094 0.006017 -0.061422 -0.000405 -0.994576 -0.104015 -0.072258 0.096802 -0.992677 0.991966 0.110591 -0.061422 0.103836 -0.989141 -0.104015 -0.082006 0.088695 -0.992677 0.974912 0.213948 -0.061422 0.206933 -0.972810 -0.104015 -0.090850 0.079612 -0.992677 0.947120 0.314947 -0.061422 0.307751 -0.945764 -0.104015 -0.098624 0.069751 -0.992677 0.909307 0.411568 -0.061422 0.404270 -0.908706 -0.104015 -0.105391 0.059030 -0.992677 0.861164 0.504603 -0.061422 0.497283 -0.861331 -0.104015 -0.110997 0.047659 -0.992677 0.803535 0.592080 -0.061422 0.584817 -0.804468 -0.104015 -0.115345 0.035879 -0.992677 0.737728 0.672298 -0.061422 0.665172 -0.739410 -0.104015 -0.118470 0.023592 -0.992677 0.663203 0.745915 -0.061422 0.739004 -0.665623 -0.104015 -0.120291 0.011046 -0.992677 0.581373 0.811315 -0.061422 0.804696 -0.584504 -0.104015 -0.120786 -0.001623 -0.992677 0.493140 0.867779 -0.061422 0.861524 -0.496948 -0.104015 -0.119965 -0.014153 -0.992677 0.400389 0.914284 -0.061422 0.908459 -0.404825 -0.104015 -0.117821 -0.026648 -0.992677 0.302360 0.951213 -0.061422 0.945884 -0.307383 -0.104015 -0.114379 -0.038850 -0.992677 0.201001 0.977664 -0.061422 0.972891 -0.206554 -0.104015 -0.109728 -0.050514 -0.992677 0.098421 0.993248 -0.061422 0.989077 -0.104440 -0.104015 -0.103829 -0.061736 -0.992677 -0.006220 0.998092 -0.061422 0.994576 -0.000203 -0.104015 -0.096787 -0.072278 -0.992677 -0.110793 0.991944 -0.061422 0.989119 0.104037 -0.104015 -0.088679 -0.082024 -0.992677 -0.214146 0.974869 -0.061422 0.972768 0.207131 -0.104015 -0.079684 -0.090787 -0.992677 -0.314193 0.947370 -0.061422 0.946009 0.306998 -0.104015 -0.069730 -0.098638 -0.992677 -0.411753 0.909223 -0.061422 0.908624 0.404455 -0.104015 -0.059008 -0.105403 -0.992677 -0.504779 0.861061 -0.061422 0.861230 0.497458 -0.104015 -0.047636 -0.111007 -0.992677 -0.592244 0.803414 -0.061422 0.804349 0.584981 -0.104015 -0.035855 -0.115353 -0.992677 -0.672449 0.737591 -0.061422 0.739275 0.665322 -0.104015 -0.023568 -0.118475 -0.992677 -0.746050 0.663051 -0.061422 0.665473 0.739139 -0.104015 -0.011021 -0.120293 -0.992677 -0.811434 0.581208 -0.061422 0.584341 0.804815 -0.104015 0.001526 -0.120787 -0.992677 -0.867386 0.493831 -0.061422 0.497633 0.861128 -0.104015 0.014177 -0.119962 -0.992677 -0.914366 0.400203 -0.061422 0.404640 0.908541 -0.104015 0.026672 -0.117815 -0.992677 -0.951274 0.302166 -0.061422 0.307190 0.945947 -0.104015 0.038873 -0.114371 -0.992677 -0.977704 0.200802 -0.061422 0.206356 0.972933 -0.104015 0.050536 -0.109717 -0.992677 -0.993268 0.098219 -0.061422 0.104239 0.989098 -0.104015 0.061757 -0.103817 -0.992677 -0.998091 -0.006424 -0.061422 0.000000 0.994576 -0.104015 0.072298 -0.096772 -0.992677 -0.991921 -0.110995 -0.061422 -0.104239 0.989098 -0.104015 0.081953 -0.088744 -0.992677 -0.975039 -0.213370 -0.061422 -0.206356 0.972933 -0.104015 0.090803 -0.079666 -0.992677 -0.947306 -0.314386 -0.061422 -0.307190 0.945947 -0.104015 0.098652 -0.069710 -0.992677 -0.909139 -0.411939 -0.061422 -0.404640 0.908541 -0.104015 0.105415 -0.058987 -0.992677 -0.860958 -0.504954 -0.061422 -0.497633 0.861128 -0.104015 0.110969 -0.047725 -0.992677 -0.803885 -0.591604 -0.061422 -0.584341 0.804815 -0.104015 0.115360 -0.035832 -0.992677 -0.737454 -0.672599 -0.061422 -0.665473 0.739139 -0.104015 0.118480 -0.023544 -0.992677 -0.662899 -0.746185 -0.061422 -0.739275 0.665322 -0.104015 0.120284 -0.011117 -0.992677 -0.581854 -0.810971 -0.061422 -0.804349 0.584981 -0.104015 0.120787 0.001551 -0.992677 -0.493654 -0.867487 -0.061422 -0.861230 0.497458 -0.104015 0.119959 0.014202 -0.992677 -0.400016 -0.914447 -0.061422 -0.908624 0.404455 -0.104015 0.117810 0.026696 -0.992677 -0.301973 -0.951336 -0.061422 -0.946009 0.306998 -0.104015 0.114402 0.038782 -0.992677 -0.201580 -0.977544 -0.061422 -0.972768 0.207131 -0.104015 0.109707 0.050559 -0.992677 -0.098017 -0.993288 -0.061422 -0.989119 0.104037 -0.104015 -0.189554 -0.850680 0.490319 -0.307080 0.525684 0.793321 -0.932615 -0.000190 -0.360873 -0.099353 -0.865861 0.490319 -0.360485 0.490605 0.793321 -0.927459 -0.097934 -0.360873 -0.008929 -0.871497 0.490319 -0.409468 0.450531 0.793321 -0.912281 -0.193686 -0.360873 0.082459 -0.867633 0.490319 -0.454432 0.405135 0.793321 -0.886957 -0.288233 -0.360873 0.172939 -0.854213 0.490319 -0.494390 0.355276 0.793321 -0.851863 -0.379605 -0.360873 0.260683 -0.831644 0.490319 -0.528601 0.302032 0.793321 -0.807852 -0.465988 -0.360873 0.346409 -0.799742 0.490319 -0.557345 0.244968 0.793321 -0.754564 -0.548091 -0.360873 0.428320 -0.759031 0.490319 -0.579949 0.185205 0.793321 -0.692965 -0.624156 -0.360873 0.505513 -0.709960 0.490319 -0.596166 0.123402 0.793321 -0.623732 -0.693346 -0.360873 0.576485 -0.653645 0.490319 -0.605756 0.060845 0.793321 -0.548384 -0.754351 -0.360873 0.641817 -0.589626 0.490319 -0.608797 -0.002977 0.793321 -0.466303 -0.807671 -0.360873 0.700079 -0.519111 0.490319 -0.605132 -0.066767 0.793321 -0.379085 -0.852095 -0.360873 0.750187 -0.443630 0.490319 -0.594931 -0.129227 0.793321 -0.288578 -0.886845 -0.360873 0.792551 -0.362561 0.490319 -0.578110 -0.190868 0.793321 -0.194041 -0.912205 -0.360873 0.826185 -0.277500 0.490319 -0.554922 -0.250407 0.793321 -0.097367 -0.927518 -0.360873 0.850564 -0.190074 0.490319 -0.525872 -0.306759 0.793321 -0.000380 -0.932615 -0.360873 0.865801 -0.099882 0.490319 -0.490825 -0.360185 0.793321 0.097367 -0.927518 -0.360873 0.871501 -0.008590 0.490319 -0.450372 -0.409643 0.793321 0.194041 -0.912205 -0.360873 0.867601 0.082797 0.490319 -0.404958 -0.454589 0.793321 0.288578 -0.886845 -0.360873 0.854318 0.172417 0.490319 -0.355578 -0.494173 0.793321 0.379085 -0.852095 -0.360873 0.831542 0.261006 0.490319 -0.301826 -0.528718 0.793321 0.466303 -0.807671 -0.360873 0.799607 0.346721 0.490319 -0.244751 -0.557440 0.793321 0.548384 -0.754351 -0.360873 0.759293 0.427857 0.490319 -0.185559 -0.579836 0.793321 0.623732 -0.693346 -0.360873 0.710269 0.505080 0.490319 -0.123766 -0.596091 0.793321 0.692965 -0.624156 -0.360873 0.653421 0.576739 0.490319 -0.060610 -0.605779 0.793321 0.754564 -0.548091 -0.360873 0.589376 0.642046 0.490319 0.003214 -0.608795 0.793321 0.807852 -0.465988 -0.360873 0.519539 0.699762 0.490319 0.066397 -0.605172 0.793321 0.851863 -0.379605 -0.360873 0.443338 0.750359 0.490319 0.129458 -0.594881 0.793321 0.886957 -0.288233 -0.360873 0.362253 0.792692 0.490319 0.191093 -0.578036 0.793321 0.912281 -0.193686 -0.360873 0.278004 0.826015 0.490319 0.250068 -0.555075 0.793321 0.927459 -0.097934 -0.360873 0.189901 0.850603 0.490319 0.306866 -0.525809 0.793321 0.932615 -0.000190 -0.360873 0.099706 0.865821 0.490319 0.360285 -0.490751 0.793321 0.927499 0.097556 -0.360873 0.008412 0.871502 0.490319 0.409735 -0.450288 0.793321 0.912166 0.194227 -0.360873 -0.082106 0.867667 0.490319 0.454267 -0.405320 0.793321 0.887074 0.287872 -0.360873 -0.172591 0.854283 0.490319 0.494245 -0.355477 0.793321 0.852018 0.379258 -0.360873 -0.261176 0.831489 0.490319 0.528780 -0.301719 0.793321 0.807576 0.466467 -0.360873 -0.346883 0.799537 0.490319 0.557490 -0.244637 0.793321 0.754239 0.548538 -0.360873 -0.428011 0.759206 0.490319 0.579874 -0.185441 0.793321 0.693219 0.623874 -0.360873 -0.505224 0.710166 0.490319 0.596116 -0.123645 0.793321 0.624015 0.693092 -0.360873 -0.576872 0.653304 0.490319 0.605792 -0.060486 0.793321 0.547937 0.754676 -0.360873 -0.641576 0.589887 0.490319 0.608798 0.002729 0.793321 0.466632 0.807481 -0.360873 -0.699867 0.519397 0.490319 0.605159 0.066521 0.793321 0.379432 0.851940 -0.360873 -0.750449 0.443185 0.490319 0.594854 0.129579 0.793321 0.288053 0.887015 -0.360873 -0.792765 0.362092 0.490319 0.577997 0.191210 0.793321 0.193501 0.912320 -0.360873 -0.826072 0.277836 0.490319 0.555024 0.250181 0.793321 0.097745 0.927479 -0.360873 -0.850641 0.189728 0.490319 0.525747 0.306973 0.793321 0.000000 0.932615 -0.360873 -0.865841 0.099530 0.490319 0.490678 0.360385 0.793321 -0.097745 0.927479 -0.360873 -0.871495 0.009106 0.490319 0.450614 0.409376 0.793321 -0.193501 0.912320 -0.360873 -0.867650 -0.082283 0.490319 0.405227 0.454349 0.793321 -0.288053 0.887015 -0.360873 -0.854248 -0.172765 0.490319 0.355376 0.494318 0.793321 -0.379432 0.851940 -0.360873 -0.831436 -0.261345 0.490319 0.301611 0.528841 0.793321 -0.466632 0.807481 -0.360873 -0.799813 -0.346247 0.490319 0.245081 0.557295 0.793321 -0.547937 0.754676 -0.360873 -0.759119 -0.428166 0.490319 0.185323 0.579912 0.793321 -0.624015 0.693092 -0.360873 -0.710063 -0.505369 0.490319 0.123523 0.596141 0.793321 -0.693219 0.623874 -0.360873 -0.653763 -0.576352 0.490319 0.060969 0.605743 0.793321 -0.754239 0.548538 -0.360873 -0.589756 -0.641697 0.490319 -0.002853 0.608797 0.793321 -0.807576 0.466467 -0.360873 -0.519254 -0.699973 0.490319 -0.066644 0.605145 0.793321 -0.852018 0.379258 -0.360873 -0.443032 -0.750540 0.490319 -0.129700 0.594828 0.793321 -0.887074 0.287872 -0.360873 -0.362723 -0.792477 0.490319 -0.190750 0.578149 0.793321 -0.912166 0.194227 -0.360873 -0.277668 -0.826128 0.490319 -0.250294 0.554973 0.793321 -0.927499 0.097556 -0.360873 -0.288846 0.622334 -0.727508 -0.229425 -0.782752 -0.578502 -0.929480 -0.000189 0.368873 -0.352480 0.588634 -0.727508 -0.146123 -0.802486 -0.578502 -0.924341 -0.097604 0.368873 -0.411683 0.548861 -0.727508 -0.062025 -0.813320 -0.578502 -0.909214 -0.193035 0.368873 -0.466940 0.502691 -0.727508 0.023558 -0.815341 -0.578502 -0.883975 -0.287264 0.368873 -0.517054 0.450984 -0.727508 0.108882 -0.808381 -0.578502 -0.848999 -0.378329 0.368873 -0.561078 0.394870 -0.727508 0.192214 -0.792710 -0.578502 -0.805137 -0.464422 0.368873 -0.599373 0.333891 -0.727508 0.274237 -0.768199 -0.578502 -0.752028 -0.546248 0.368873 -0.631067 0.269233 -0.727508 0.353239 -0.735226 -0.578502 -0.690635 -0.622057 0.368873 -0.655809 0.201610 -0.727508 0.428351 -0.694155 -0.578502 -0.621636 -0.691015 0.368873 -0.673195 0.132440 -0.727508 0.498098 -0.645936 -0.578502 -0.546541 -0.751815 0.368873 -0.683368 0.061154 -0.727508 0.563054 -0.590175 -0.578502 -0.464735 -0.804956 0.368873 -0.686014 -0.010804 -0.727508 0.621808 -0.527912 -0.578502 -0.377810 -0.849230 0.368873 -0.681186 -0.081963 -0.727508 0.673252 -0.460508 -0.578502 -0.287608 -0.883863 0.368873 -0.668844 -0.152904 -0.727508 0.717808 -0.387411 -0.578502 -0.193389 -0.909139 0.368873 -0.649135 -0.222162 -0.727508 0.754458 -0.310045 -0.578502 -0.097040 -0.924400 0.368873 -0.622511 -0.288465 -0.727508 0.782611 -0.229903 -0.578502 -0.000379 -0.929480 0.368873 -0.588849 -0.352120 -0.727508 0.802397 -0.146613 -0.578502 0.097040 -0.924400 0.368873 -0.548701 -0.411896 -0.727508 0.813344 -0.061709 -0.578502 0.193389 -0.909139 0.368873 -0.502509 -0.467136 -0.727508 0.815332 0.023875 -0.578502 0.287608 -0.883863 0.368873 -0.451300 -0.516779 -0.727508 0.808448 0.108388 -0.578502 0.377810 -0.849230 0.368873 -0.394652 -0.561232 -0.727508 0.792636 0.192522 -0.578502 0.464735 -0.804956 0.368873 -0.333658 -0.599503 -0.727508 0.768092 0.274536 -0.578502 0.546541 -0.751815 0.368873 -0.269619 -0.630902 -0.727508 0.735442 0.352790 -0.578502 0.621636 -0.691015 0.368873 -0.202011 -0.655685 -0.727508 0.694417 0.427927 -0.578502 0.690635 -0.622057 0.368873 -0.132178 -0.673246 -0.727508 0.645743 0.498350 -0.578502 0.752028 -0.546248 0.368873 -0.060889 -0.683392 -0.727508 0.589956 0.563283 -0.578502 0.805137 -0.464422 0.368873 0.010385 -0.686020 -0.727508 0.528292 0.621485 -0.578502 0.848999 -0.378329 0.368873 0.082228 -0.681154 -0.727508 0.460246 0.673431 -0.578502 0.883975 -0.287264 0.368873 0.153165 -0.668784 -0.727508 0.387131 0.717959 -0.578502 0.909214 -0.193035 0.368873 0.221765 -0.649270 -0.727508 0.310506 0.754269 -0.578502 0.924341 -0.097604 0.368873 0.288592 -0.622452 -0.727508 0.229743 0.782658 -0.578502 0.929480 -0.000189 0.368873 0.352240 -0.588777 -0.727508 0.146450 0.802426 -0.578502 0.924381 0.097228 0.368873 0.412008 -0.548617 -0.727508 0.061543 0.813356 -0.578502 0.909099 0.193574 0.368873 0.466735 -0.502881 -0.727508 -0.023226 0.815350 -0.578502 0.884092 0.286904 0.368873 0.516870 -0.451194 -0.727508 -0.108552 0.808426 -0.578502 0.849153 0.377983 0.368873 0.561312 -0.394538 -0.727508 -0.192683 0.792596 -0.578502 0.804861 0.464899 0.368873 0.599571 -0.333535 -0.727508 -0.274692 0.768037 -0.578502 0.751704 0.546694 0.368873 0.630957 -0.269490 -0.727508 -0.352940 0.735370 -0.578502 0.690889 0.621776 0.368873 0.655726 -0.201877 -0.727508 -0.428068 0.694330 -0.578502 0.621917 0.690762 0.368873 0.673273 -0.132041 -0.727508 -0.498481 0.645641 -0.578502 0.546095 0.752139 0.368873 0.683343 -0.061433 -0.727508 -0.562813 0.590404 -0.578502 0.465063 0.804767 0.368873 0.686018 0.010525 -0.727508 -0.621592 0.528165 -0.578502 0.378156 0.849076 0.368873 0.681137 0.082366 -0.727508 -0.673524 0.460109 -0.578502 0.287084 0.884034 0.368873 0.668753 0.153301 -0.727508 -0.718038 0.386985 -0.578502 0.192850 0.909253 0.368873 0.649225 0.221897 -0.727508 -0.754332 0.310353 -0.578502 0.097416 0.924361 0.368873 0.622393 0.288719 -0.727508 -0.782705 0.229584 -0.578502 0.000000 0.929480 0.368873 0.588705 0.352360 -0.727508 -0.802456 0.146287 -0.578502 -0.097416 0.924361 0.368873 0.548945 0.411571 -0.727508 -0.813307 0.062191 -0.578502 -0.192850 0.909253 0.368873 0.502786 0.466838 -0.727508 -0.815346 -0.023392 -0.578502 -0.287084 0.884034 0.368873 0.451089 0.516962 -0.727508 -0.808404 -0.108717 -0.578502 -0.378156 0.849076 0.368873 0.394424 0.561393 -0.727508 -0.792557 -0.192845 -0.578502 -0.465063 0.804767 0.368873 0.334013 0.599306 -0.727508 -0.768255 -0.274080 -0.578502 -0.546095 0.752139 0.368873 0.269362 0.631012 -0.727508 -0.735298 -0.353089 -0.578502 -0.621917 0.690762 0.368873 0.201744 0.655768 -0.727508 -0.694242 -0.428209 -0.578502 -0.690889 0.621776 0.368873 0.132577 0.673168 -0.727508 -0.646038 -0.497967 -0.578502 -0.751704 0.546694 0.368873 0.061294 0.683355 -0.727508 -0.590289 -0.562934 -0.578502 -0.804861 0.464899 0.368873 -0.010664 0.686016 -0.727508 -0.528039 -0.621700 -0.578502 -0.849153 0.377983 0.368873 -0.082505 0.681120 -0.727508 -0.459972 -0.673618 -0.578502 -0.884092 0.286904 0.368873 -0.152768 0.668875 -0.727508 -0.387557 -0.717729 -0.578502 -0.909099 0.193574 0.368873 -0.222030 0.649180 -0.727508 -0.310199 -0.754395 -0.578502 -0.924381 0.097228 0.368873 -0.881699 -0.128032 0.454108 -0.113866 0.991770 0.058539 -0.457866 -0.000093 -0.889021 -0.863425 -0.219736 0.454108 -0.217183 0.974374 0.058539 -0.455334 -0.048080 -0.889021 -0.835948 -0.308183 0.454108 -0.317162 0.946563 0.058539 -0.447883 -0.095090 -0.889021 -0.799045 -0.394099 0.454108 -0.414622 0.908109 0.058539 -0.435450 -0.141508 -0.889021 -0.753339 -0.475674 0.454108 -0.507515 0.859652 0.058539 -0.418220 -0.186366 -0.889021 -0.699888 -0.551310 0.454108 -0.594015 0.802321 0.058539 -0.396614 -0.228776 -0.889021 -0.638252 -0.621627 0.454108 -0.674833 0.735645 0.058539 -0.370452 -0.269084 -0.889021 -0.569586 -0.685097 0.454108 -0.748217 0.660866 0.058539 -0.340210 -0.306428 -0.889021 -0.494646 -0.741020 0.454108 -0.813360 0.578808 0.058539 -0.306220 -0.340397 -0.889021 -0.415046 -0.788367 0.454108 -0.869053 0.491244 0.058539 -0.269228 -0.370347 -0.889021 -0.330134 -0.827525 0.454108 -0.915752 0.397455 0.058539 -0.228930 -0.396525 -0.889021 -0.241585 -0.857568 0.454108 -0.952365 0.299289 0.058539 -0.186111 -0.418334 -0.889021 -0.151254 -0.878014 0.454108 -0.978289 0.198804 0.058539 -0.141677 -0.435395 -0.889021 -0.058398 -0.889031 0.454108 -0.993738 0.095178 0.058539 -0.095264 -0.447845 -0.889021 0.035100 -0.890255 0.454108 -0.998240 -0.009497 0.058539 -0.047802 -0.455363 -0.889021 0.127494 -0.881777 0.454108 -0.991839 -0.113260 0.058539 -0.000186 -0.457865 -0.889021 0.219208 -0.863559 0.454108 -0.974506 -0.216588 0.058539 0.047802 -0.455363 -0.889021 0.308508 -0.835828 0.454108 -0.946439 -0.317530 0.058539 0.095264 -0.447845 -0.889021 0.394410 -0.798891 0.454108 -0.907947 -0.414975 0.058539 0.141677 -0.435395 -0.889021 0.475214 -0.753630 0.454108 -0.859962 -0.506989 0.058539 0.186111 -0.418334 -0.889021 0.551582 -0.699674 0.454108 -0.802090 -0.594327 0.058539 0.228930 -0.396525 -0.889021 0.621875 -0.638010 0.454108 -0.735383 -0.675119 0.058539 0.269228 -0.370347 -0.889021 0.684749 -0.570005 0.454108 -0.661323 -0.747813 0.058539 0.306220 -0.340397 -0.889021 0.740718 -0.495099 0.454108 -0.579305 -0.813006 0.058539 0.340210 -0.306428 -0.889021 0.788529 -0.414739 0.454108 -0.490905 -0.869244 0.058539 0.370452 -0.269084 -0.889021 0.827653 -0.329812 0.454108 -0.397099 -0.915907 0.058539 0.396614 -0.228776 -0.889021 0.857420 -0.242109 0.454108 -0.299871 -0.952182 0.058539 0.418220 -0.186366 -0.889021 0.878073 -0.150912 0.454108 -0.198424 -0.978367 0.058539 0.435450 -0.141508 -0.889021 0.889053 -0.058052 0.454108 -0.094791 -0.993775 0.058539 0.447883 -0.095090 -0.889021 0.890276 0.034556 0.454108 0.008888 -0.998246 0.058539 0.455334 -0.048080 -0.889021 0.881751 0.127673 0.454108 0.113462 -0.991816 0.058539 0.457866 -0.000093 -0.889021 0.863514 0.219384 0.454108 0.216786 -0.974462 0.058539 0.455354 0.047895 -0.889021 0.835765 0.308678 0.454108 0.317723 -0.946375 0.058539 0.447826 0.095355 -0.889021 0.799205 0.393773 0.454108 0.414252 -0.908278 0.058539 0.435507 0.141330 -0.889021 0.753533 0.475367 0.454108 0.507165 -0.859859 0.058539 0.418296 0.186196 -0.889021 0.699561 0.551725 0.454108 0.594491 -0.801969 0.058539 0.396478 0.229011 -0.889021 0.637884 0.622005 0.454108 0.675269 -0.735245 0.058539 0.370292 0.269304 -0.889021 0.569865 0.684865 0.454108 0.747948 -0.661171 0.058539 0.340335 0.306289 -0.889021 0.494948 0.740819 0.454108 0.813124 -0.579139 0.058539 0.306359 0.340272 -0.889021 0.414579 0.788613 0.454108 0.869344 -0.490729 0.058539 0.269009 0.370507 -0.889021 0.330471 0.827390 0.454108 0.915590 -0.397828 0.058539 0.229092 0.396431 -0.889021 0.241934 0.857469 0.454108 0.952243 -0.299677 0.058539 0.186281 0.418258 -0.889021 0.150733 0.878103 0.454108 0.978407 -0.198224 0.058539 0.141419 0.435479 -0.889021 0.057871 0.889065 0.454108 0.993794 -0.094589 0.058539 0.094999 0.447902 -0.889021 -0.034737 0.890269 0.454108 0.998244 0.009091 0.058539 0.047988 0.455344 -0.889021 -0.127853 0.881725 0.454108 0.991793 0.113664 0.058539 0.000000 0.457866 -0.889021 -0.219560 0.863469 0.454108 0.974418 0.216985 0.058539 -0.047988 0.455344 -0.889021 -0.308012 0.836011 0.454108 0.946627 0.316969 0.058539 -0.094999 0.447902 -0.889021 -0.393936 0.799125 0.454108 0.908193 0.414437 0.058539 -0.141419 0.435479 -0.889021 -0.475520 0.753436 0.454108 0.859756 0.507340 0.058539 -0.186281 0.418258 -0.889021 -0.551867 0.699449 0.454108 0.801848 0.594654 0.058539 -0.229092 0.396431 -0.889021 -0.621497 0.638379 0.454108 0.735783 0.674683 0.058539 -0.269009 0.370507 -0.889021 -0.684981 0.569726 0.454108 0.661019 0.748083 0.058539 -0.306359 0.340272 -0.889021 -0.740920 0.494797 0.454108 0.578974 0.813242 0.058539 -0.340335 0.306289 -0.889021 -0.788283 0.415207 0.454108 0.491421 0.868953 0.058539 -0.370292 0.269304 -0.889021 -0.827458 0.330302 0.454108 0.397642 0.915671 0.058539 -0.396478 0.229011 -0.889021 -0.857519 0.241760 0.454108 0.299483 0.952304 0.058539 -0.418296 0.186196 -0.889021 -0.878134 0.150554 0.454108 0.198025 0.978447 0.058539 -0.435507 0.141330 -0.889021 -0.889019 0.058579 0.454108 0.095380 0.993718 0.058539 -0.447826 0.095355 -0.889021 -0.890262 -0.034919 0.454108 -0.009294 0.998242 0.058539 -0.455354 0.047895 -0.889021 -0.269327 0.027738 -0.962649 -0.007285 -0.999615 -0.026765 -0.963021 -0.000196 0.269425 -0.270751 -0.000642 -0.962649 0.097522 -0.994873 -0.026765 -0.957697 -0.101127 0.269425 -0.269221 -0.028746 -0.962649 0.200276 -0.979374 -0.026765 -0.942024 -0.200001 0.269425 -0.264726 -0.056804 -0.962649 0.301818 -0.952990 -0.026765 -0.915874 -0.297631 0.269425 -0.257314 -0.084236 -0.962649 0.400036 -0.916108 -0.026765 -0.879636 -0.391982 0.269425 -0.247179 -0.110494 -0.962649 0.492979 -0.869630 -0.026765 -0.834191 -0.481181 0.269425 -0.234237 -0.135791 -0.962649 0.581407 -0.813173 -0.026765 -0.779166 -0.565960 0.269425 -0.218715 -0.159593 -0.962649 0.663431 -0.747759 -0.026765 -0.715558 -0.644505 0.269425 -0.200784 -0.181637 -0.962649 0.738148 -0.674108 -0.026765 -0.644068 -0.715951 0.269425 -0.180843 -0.201500 -0.962649 0.804140 -0.593837 -0.026765 -0.566263 -0.778945 0.269425 -0.158729 -0.219344 -0.962649 0.861950 -0.506286 -0.026765 -0.481505 -0.834004 0.269425 -0.134866 -0.234772 -0.962649 0.910265 -0.413160 -0.026765 -0.391444 -0.879876 0.269425 -0.109765 -0.247504 -0.962649 0.948238 -0.316430 -0.026765 -0.297987 -0.915759 0.269425 -0.083220 -0.257645 -0.962649 0.976180 -0.215305 -0.026765 -0.200368 -0.941946 0.269425 -0.055759 -0.264948 -0.962649 0.993369 -0.111809 -0.026765 -0.100541 -0.957758 0.269425 -0.027902 -0.269310 -0.962649 0.999611 -0.007895 -0.026765 -0.000392 -0.963021 0.269425 0.000477 -0.270751 -0.962649 0.994933 0.096915 -0.026765 0.100541 -0.957758 0.269425 0.028851 -0.269210 -0.962649 0.979296 0.200657 -0.026765 0.200368 -0.941946 0.269425 0.056907 -0.264704 -0.962649 0.952872 0.302189 -0.026765 0.297987 -0.915759 0.269425 0.084079 -0.257366 -0.962649 0.916353 0.399476 -0.026765 0.391444 -0.879876 0.269425 0.110590 -0.247136 -0.962649 0.869438 0.493317 -0.026765 0.481505 -0.834004 0.269425 0.135882 -0.234184 -0.962649 0.812946 0.581723 -0.026765 0.566263 -0.778945 0.269425 0.159460 -0.218813 -0.962649 0.748164 0.662974 -0.026765 0.644068 -0.715951 0.269425 0.181515 -0.200895 -0.962649 0.674559 0.737736 -0.026765 0.715558 -0.644505 0.269425 0.201570 -0.180765 -0.962649 0.593524 0.804371 -0.026765 0.779166 -0.565960 0.269425 0.219405 -0.158643 -0.962649 0.505951 0.862147 -0.026765 0.834191 -0.481181 0.269425 0.234689 -0.135009 -0.962649 0.413716 0.910013 -0.026765 0.879636 -0.391982 0.269425 0.247547 -0.109668 -0.962649 0.316061 0.948361 -0.026765 0.915874 -0.297631 0.269425 0.257677 -0.083120 -0.962649 0.214926 0.976264 -0.026765 0.942024 -0.200001 0.269425 0.264914 -0.055920 -0.962649 0.112416 0.993301 -0.026765 0.957697 -0.101127 0.269425 0.269316 -0.027848 -0.962649 0.007692 0.999612 -0.026765 0.963021 -0.000196 0.269425 0.270751 0.000532 -0.962649 -0.097117 0.994913 -0.026765 0.957738 0.100737 0.269425 0.269204 0.028906 -0.962649 -0.200856 0.979255 -0.026765 0.941905 0.200560 0.269425 0.264749 0.056696 -0.962649 -0.301430 0.953113 -0.026765 0.915996 0.297258 0.269425 0.257349 0.084132 -0.962649 -0.399663 0.916271 -0.026765 0.879796 0.391623 0.269425 0.247114 0.110640 -0.962649 -0.493494 0.869337 -0.026765 0.833906 0.481675 0.269425 0.234157 0.135930 -0.962649 -0.581889 0.812828 -0.026765 0.778830 0.566422 0.269425 0.218780 0.159504 -0.962649 -0.663126 0.748029 -0.026765 0.715820 0.644214 0.269425 0.200858 0.181555 -0.962649 -0.737873 0.674409 -0.026765 0.644360 0.715689 0.269425 0.180724 0.201607 -0.962649 -0.804492 0.593360 -0.026765 0.565802 0.779281 0.269425 0.158818 0.219279 -0.962649 -0.861744 0.506638 -0.026765 0.481845 0.833808 0.269425 0.134961 0.234717 -0.962649 -0.910097 0.413530 -0.026765 0.391802 0.879716 0.269425 0.109618 0.247569 -0.962649 -0.948426 0.315868 -0.026765 0.297444 0.915935 0.269425 0.083067 0.257694 -0.962649 -0.976307 0.214727 -0.026765 0.199809 0.942065 0.269425 0.055867 0.264925 -0.962649 -0.993324 0.112214 -0.026765 0.100932 0.957717 0.269425 0.027793 0.269321 -0.962649 -0.999614 0.007488 -0.026765 0.000000 0.963021 0.269425 -0.000587 0.270751 -0.962649 -0.994893 -0.097320 -0.026765 -0.100932 0.957717 0.269425 -0.028691 0.269227 -0.962649 -0.979415 -0.200076 -0.026765 -0.199809 0.942065 0.269425 -0.056750 0.264737 -0.962649 -0.953051 -0.301624 -0.026765 -0.297444 0.915935 0.269425 -0.084184 0.257331 -0.962649 -0.916190 -0.399850 -0.026765 -0.391802 0.879716 0.269425 -0.110691 0.247091 -0.962649 -0.869237 -0.493671 -0.026765 -0.481845 0.833808 0.269425 -0.135744 0.234265 -0.962649 -0.813291 -0.581241 -0.026765 -0.565802 0.779281 0.269425 -0.159549 0.218748 -0.962649 -0.747894 -0.663279 -0.026765 -0.644360 0.715689 0.269425 -0.181596 0.200821 -0.962649 -0.674258 -0.738010 -0.026765 -0.715820 0.644214 0.269425 -0.201463 0.180884 -0.962649 -0.594000 -0.804019 -0.026765 -0.778830 0.566422 0.269425 -0.219311 0.158773 -0.962649 -0.506462 -0.861847 -0.026765 -0.833906 0.481675 0.269425 -0.234744 0.134913 -0.962649 -0.413345 -0.910181 -0.026765 -0.879796 0.391623 0.269425 -0.247591 0.109568 -0.962649 -0.315675 -0.948490 -0.026765 -0.915996 0.297258 0.269425 -0.257628 0.083272 -0.962649 -0.215504 -0.976136 -0.026765 -0.941905 0.200560 0.269425 -0.264937 0.055813 -0.962649 -0.112011 -0.993346 -0.026765 -0.957738 0.100737 0.269425 0.608804 -0.423284 0.670961 0.284311 0.905997 0.313586 -0.740625 -0.000151 0.671919 0.649814 -0.357146 0.670961 0.187790 0.930805 0.313586 -0.736530 -0.077773 0.671919 0.683379 -0.287757 0.670961 0.090146 0.945271 0.313586 -0.724477 -0.153814 0.671919 0.709774 -0.214549 0.670961 -0.009421 0.949513 0.313586 -0.704366 -0.228897 0.671919 0.728352 -0.138978 0.670961 -0.108885 0.943296 0.313586 -0.676497 -0.301459 0.671919 0.738844 -0.062615 0.670961 -0.206223 0.926896 0.313586 -0.641546 -0.370059 0.671919 0.741337 0.015166 0.670961 -0.302233 0.900177 0.313586 -0.599228 -0.435260 0.671919 0.735665 0.092780 0.670961 -0.394913 0.863543 0.313586 -0.550310 -0.495666 0.671919 0.721889 0.169372 0.670961 -0.483244 0.817398 0.313586 -0.495330 -0.550612 0.671919 0.700406 0.243398 0.670961 -0.565489 0.762814 0.313586 -0.435493 -0.599059 0.671919 0.671039 0.315465 0.670961 -0.642323 0.699346 0.313586 -0.370309 -0.641402 0.671919 0.634280 0.384057 0.670961 -0.712082 0.628174 0.313586 -0.301046 -0.676681 0.671919 0.590983 0.447828 0.670961 -0.773447 0.550857 0.313586 -0.229171 -0.704277 0.671919 0.540792 0.507301 0.670961 -0.826921 0.466761 0.313586 -0.154096 -0.724417 0.671919 0.484645 0.561186 0.670961 -0.871287 0.377523 0.313586 -0.077323 -0.736578 0.671919 0.423656 0.608545 0.670961 -0.905823 0.284865 0.313586 -0.000302 -0.740625 0.671919 0.357542 0.649596 0.670961 -0.930690 0.188359 0.313586 0.077323 -0.736578 0.671919 0.287491 0.683491 0.670961 -0.945306 0.089778 0.313586 0.154096 -0.724417 0.671919 0.214273 0.709858 0.670961 -0.949509 -0.009791 0.313586 0.229171 -0.704277 0.671919 0.139423 0.728267 0.670961 -0.943362 -0.108309 0.313586 0.301046 -0.676681 0.671919 0.062328 0.738868 0.670961 -0.926815 -0.206584 0.313586 0.370309 -0.641402 0.671919 -0.015454 0.741331 0.670961 -0.900060 -0.302583 0.313586 0.435493 -0.599059 0.671919 -0.092330 0.735722 0.670961 -0.863785 -0.394385 0.313586 0.495330 -0.550612 0.671919 -0.168931 0.721993 0.670961 -0.817693 -0.482744 0.313586 0.550310 -0.495666 0.671919 -0.243670 0.700311 0.670961 -0.762594 -0.565786 0.313586 0.599228 -0.435260 0.671919 -0.315726 0.670916 0.670961 -0.699096 -0.642595 0.313586 0.641546 -0.370059 0.671919 -0.383670 0.634515 0.670961 -0.628609 -0.711698 0.313586 0.676497 -0.301459 0.671919 -0.448058 0.590809 0.670961 -0.550556 -0.773661 0.313586 0.704366 -0.228897 0.671919 -0.507512 0.540595 0.670961 -0.466439 -0.827102 0.313586 0.724477 -0.153814 0.671919 -0.560890 0.484988 0.670961 -0.378055 -0.871056 0.313586 0.736530 -0.077773 0.671919 -0.608631 0.423532 0.670961 -0.284680 -0.905881 0.313586 0.740625 -0.000151 0.671919 -0.649668 0.357410 0.670961 -0.188169 -0.930729 0.313586 0.736562 0.077473 0.671919 -0.683550 0.287352 0.670961 -0.089586 -0.945324 0.313586 0.724385 0.154243 0.671919 -0.709687 0.214838 0.670961 0.009035 -0.949517 0.313586 0.704459 0.228610 0.671919 -0.728295 0.139275 0.670961 0.108501 -0.943340 0.313586 0.676619 0.301183 0.671919 -0.738881 0.062177 0.670961 0.206772 -0.926773 0.313586 0.641327 0.370439 0.671919 -0.741328 -0.015605 0.670961 0.302766 -0.899998 0.313586 0.598970 0.435615 0.671919 -0.735703 -0.092480 0.670961 0.394561 -0.863704 0.313586 0.550511 0.495442 0.671919 -0.721958 -0.169078 0.670961 0.482911 -0.817595 0.313586 0.495554 0.550411 0.671919 -0.700262 -0.243813 0.670961 0.565941 -0.762479 0.313586 0.435138 0.599317 0.671919 -0.671167 -0.315192 0.670961 0.642038 -0.699608 0.313586 0.370570 0.641251 0.671919 -0.634436 -0.383799 0.670961 0.711826 -0.628464 0.313586 0.301321 0.676558 0.671919 -0.590717 -0.448179 0.670961 0.773773 -0.550399 0.313586 0.228754 0.704413 0.671919 -0.540492 -0.507622 0.670961 0.827197 -0.466270 0.313586 0.153666 0.724508 0.671919 -0.484874 -0.560989 0.670961 0.871133 -0.377878 0.313586 0.077623 0.736546 0.671919 -0.423408 -0.608717 0.670961 0.905939 -0.284496 0.313586 0.000000 0.740625 0.671919 -0.357278 -0.649741 0.670961 0.930767 -0.187980 0.313586 -0.077623 0.736546 0.671919 -0.287896 -0.683320 0.670961 0.945253 -0.090339 0.313586 -0.153666 0.724508 0.671919 -0.214694 -0.709731 0.670961 0.949515 0.009228 0.313586 -0.228754 0.704413 0.671919 -0.139126 -0.728323 0.670961 0.943318 0.108693 0.313586 -0.301321 0.676558 0.671919 -0.062027 -0.738894 0.670961 0.926731 0.206961 0.313586 -0.370570 0.641251 0.671919 0.015015 -0.741340 0.670961 0.900239 0.302049 0.313586 -0.435138 0.599317 0.671919 0.092630 -0.735684 0.670961 0.863624 0.394737 0.313586 -0.495554 0.550411 0.671919 0.169225 -0.721924 0.670961 0.817496 0.483077 0.313586 -0.550511 0.495442 0.671919 0.243255 -0.700455 0.670961 0.762930 0.565333 0.313586 -0.598970 0.435615 0.671919 0.315328 -0.671103 0.670961 0.699477 0.642181 0.313586 -0.641327 0.370439 0.671919 0.383928 -0.634358 0.670961 0.628319 0.711954 0.313586 -0.676619 0.301183 0.671919 0.448299 -0.590626 0.670961 0.550241 0.773885 0.313586 -0.704459 0.228610 0.671919 0.507191 -0.540896 0.670961 0.466929 0.826826 0.313586 -0.724385 0.154243 0.671919 0.561088 -0.484760 0.670961 0.377700 0.871210 0.313586 -0.736562 0.077473 0.671919 -0.451490 -0.772868 -0.445905 0.550049 -0.634567 0.542928 -0.702568 -0.000143 0.711616 -0.368002 -0.815931 -0.445905 0.613527 -0.573423 0.542928 -0.698684 -0.073776 0.711616 -0.281309 -0.849726 -0.445905 0.669741 -0.506633 0.542928 -0.687250 -0.145910 0.711616 -0.190703 -0.874529 -0.445905 0.719151 -0.433649 0.542928 -0.668172 -0.217135 0.711616 -0.097996 -0.889700 -0.445905 0.760640 -0.355888 0.542928 -0.641735 -0.285969 0.711616 -0.005104 -0.895066 -0.445905 0.793476 -0.275001 0.542928 -0.608581 -0.351044 0.711616 0.088733 -0.890671 -0.445905 0.817928 -0.190325 0.542928 -0.568437 -0.412894 0.711616 0.181593 -0.876466 -0.445905 0.833370 -0.103552 0.542928 -0.522032 -0.470196 0.711616 0.272453 -0.852607 -0.445905 0.839634 -0.015638 0.542928 -0.469877 -0.522319 0.711616 0.359492 -0.819716 -0.445905 0.836721 0.071611 0.542928 -0.413115 -0.568276 0.711616 0.443425 -0.777524 -0.445905 0.824607 0.158911 0.542928 -0.351280 -0.608444 0.711616 0.522473 -0.726768 -0.445905 0.803411 0.244460 0.542928 -0.285576 -0.641910 0.711616 0.595097 -0.668602 -0.445905 0.773692 0.326543 0.542928 -0.217395 -0.668088 0.711616 0.661894 -0.602549 -0.445905 0.735206 0.405833 0.542928 -0.146177 -0.687193 0.711616 0.721400 -0.529859 -0.445905 0.688623 0.480653 0.542928 -0.073350 -0.698729 0.711616 0.772592 -0.451963 -0.445905 0.634903 0.549662 0.542928 -0.000286 -0.702568 0.711616 0.815706 -0.368500 -0.445905 0.573797 0.613177 0.542928 0.073350 -0.698729 0.711616 0.849835 -0.280979 -0.445905 0.506372 0.669938 0.542928 0.146177 -0.687193 0.711616 0.874603 -0.190363 -0.445905 0.433369 0.719320 0.542928 0.217395 -0.668088 0.711616 0.889640 -0.098539 -0.445905 0.356353 0.760422 0.542928 0.285576 -0.641910 0.711616 0.895068 -0.004756 -0.445905 0.274693 0.793583 0.542928 0.351280 -0.608444 0.711616 0.890637 0.089080 -0.445905 0.190007 0.818002 0.542928 0.413115 -0.568276 0.711616 0.876577 0.181058 -0.445905 0.104061 0.833307 0.542928 0.469877 -0.522319 0.711616 0.852773 0.271932 -0.445905 0.016151 0.839624 0.542928 0.522032 -0.470196 0.711616 0.819576 0.359811 -0.445905 -0.071936 0.836693 0.542928 0.568437 -0.412894 0.711616 0.777351 0.443727 -0.445905 -0.159231 0.824545 0.542928 0.608581 -0.351044 0.711616 0.727087 0.522028 -0.445905 -0.243969 0.803560 0.542928 0.641735 -0.285969 0.711616 0.668370 0.595357 -0.445905 -0.326844 0.773565 0.542928 0.668172 -0.217135 0.711616 0.602291 0.662128 -0.445905 -0.406119 0.735049 0.542928 0.687250 -0.145910 0.711616 0.530300 0.721076 -0.445905 -0.480232 0.688917 0.542928 0.698684 -0.073776 0.711616 0.451805 0.772684 -0.445905 -0.549791 0.634791 0.542928 0.702568 -0.000143 0.711616 0.368334 0.815781 -0.445905 -0.613294 0.573673 0.542928 0.698714 0.073492 0.711616 0.280806 0.849892 -0.445905 -0.670041 0.506235 0.542928 0.687163 0.146317 0.711616 0.191059 0.874451 -0.445905 -0.718974 0.433942 0.542928 0.668261 0.216863 0.711616 0.098358 0.889660 -0.445905 -0.760495 0.356198 0.542928 0.641852 0.285707 0.711616 0.004574 0.895069 -0.445905 -0.793638 0.274531 0.542928 0.608372 0.351404 0.711616 -0.089261 0.890618 -0.445905 -0.818040 0.189840 0.542928 0.568192 0.413231 0.711616 -0.181236 0.876540 -0.445905 -0.833328 0.103891 0.542928 0.522224 0.469984 0.711616 -0.272106 0.852717 -0.445905 -0.839627 0.015980 0.542928 0.470090 0.522128 0.711616 -0.359978 0.819503 -0.445905 -0.836678 -0.072107 0.542928 0.412778 0.568521 0.711616 -0.443108 0.777704 -0.445905 -0.824672 -0.158575 0.542928 0.351528 0.608301 0.711616 -0.522177 0.726980 -0.445905 -0.803510 -0.244133 0.542928 0.285838 0.641793 0.711616 -0.595493 0.668249 -0.445905 -0.773498 -0.327002 0.542928 0.216999 0.668217 0.711616 -0.662251 0.602156 -0.445905 -0.734966 -0.406269 0.542928 0.145770 0.687279 0.711616 -0.721184 0.530153 -0.445905 -0.688819 -0.480373 0.542928 0.073634 0.698699 0.711616 -0.772776 0.451648 -0.445905 -0.634679 -0.549920 0.542928 0.000000 0.702568 0.711616 -0.815856 0.368168 -0.445905 -0.573548 -0.613410 0.542928 -0.073634 0.698699 0.711616 -0.849668 0.281482 -0.445905 -0.506769 -0.669638 0.542928 -0.145770 0.687279 0.711616 -0.874490 0.190881 -0.445905 -0.433795 -0.719063 0.542928 -0.216999 0.668217 0.711616 -0.889680 0.098177 -0.445905 -0.356043 -0.760567 0.542928 -0.285838 0.641793 0.711616 -0.895069 0.004391 -0.445905 -0.274369 -0.793694 0.542928 -0.351528 0.608301 0.711616 -0.890689 -0.088552 -0.445905 -0.190491 -0.817889 0.542928 -0.412778 0.568521 0.711616 -0.876503 -0.181415 -0.445905 -0.103722 -0.833349 0.542928 -0.470090 0.522128 0.711616 -0.852662 -0.272280 -0.445905 -0.015809 -0.839630 0.542928 -0.522224 0.469984 0.711616 -0.819789 -0.359325 -0.445905 0.071440 -0.836735 0.542928 -0.568192 0.413231 0.711616 -0.777614 -0.443266 -0.445905 0.158743 -0.824639 0.542928 -0.608372 0.351404 0.711616 -0.726874 -0.522325 -0.445905 0.244296 -0.803460 0.542928 -0.641852 0.285707 0.711616 -0.668127 -0.595629 -0.445905 0.327159 -0.773431 0.542928 -0.668261 0.216863 0.711616 -0.602684 -0.661771 -0.445905 0.405684 -0.735289 0.542928 -0.687163 0.146317 0.711616 -0.530006 -0.721292 -0.445905 0.480513 -0.688721 0.542928 -0.698714 0.073492 0.711616 0.059020 -0.990537 -0.123907 -0.424755 -0.137245 0.894845 -0.903382 -0.000184 -0.428836 0.162511 -0.978896 -0.123907 -0.408031 -0.181007 0.894845 -0.898388 -0.094864 -0.428836 0.263254 -0.956736 -0.123907 -0.387036 -0.222388 0.894845 -0.883686 -0.187615 -0.428836 0.362077 -0.923876 -0.123907 -0.361596 -0.261727 0.894845 -0.859155 -0.279199 -0.428836 0.456912 -0.880840 -0.123907 -0.332174 -0.298184 0.894845 -0.825162 -0.367707 -0.428836 0.545886 -0.828647 -0.123907 -0.299424 -0.331056 0.894845 -0.782531 -0.451382 -0.428836 0.629727 -0.766871 -0.123907 -0.263078 -0.360615 0.894845 -0.730913 -0.530911 -0.428836 0.706633 -0.696647 -0.123907 -0.223834 -0.386201 0.894845 -0.671244 -0.604592 -0.428836 0.775755 -0.618750 -0.123907 -0.182125 -0.407534 0.894845 -0.604182 -0.671613 -0.428836 0.835797 -0.534874 -0.123907 -0.138833 -0.424239 0.894845 -0.531195 -0.730706 -0.428836 0.887253 -0.444331 -0.123907 -0.093606 -0.436453 0.894845 -0.451686 -0.782355 -0.428836 0.928935 -0.348893 -0.123907 -0.047347 -0.443860 0.894845 -0.367202 -0.825386 -0.428836 0.960136 -0.250573 -0.123907 -0.001013 -0.446377 0.894845 -0.279533 -0.859047 -0.428836 0.981109 -0.148564 -0.123907 0.045776 -0.444024 0.894845 -0.187959 -0.883613 -0.428836 0.991277 -0.044918 -0.123907 0.092061 -0.436781 0.894845 -0.094315 -0.898446 -0.428836 0.990573 0.058415 -0.123907 0.136986 -0.424839 0.894845 -0.000368 -0.903382 -0.428836 0.978995 0.161913 -0.123907 0.180758 -0.408142 0.894845 0.094315 -0.898446 -0.428836 0.956634 0.263627 -0.123907 0.222538 -0.386949 0.894845 0.187959 -0.883613 -0.428836 0.923735 0.362437 -0.123907 0.261868 -0.361495 0.894845 0.279533 -0.859047 -0.428836 0.881119 0.456374 -0.123907 0.297981 -0.332356 0.894845 0.367202 -0.825386 -0.428836 0.828435 0.546208 -0.123907 0.331173 -0.299295 0.894845 0.451686 -0.782355 -0.428836 0.766626 0.630026 -0.123907 0.360717 -0.262938 0.894845 0.531195 -0.730706 -0.428836 0.697079 0.706207 -0.123907 0.386064 -0.224070 0.894845 0.604182 -0.671613 -0.428836 0.619224 0.775376 -0.123907 0.407422 -0.182374 0.894845 0.671244 -0.604592 -0.428836 0.534549 0.836005 -0.123907 0.424293 -0.138668 0.894845 0.730913 -0.530911 -0.428836 0.443986 0.887425 -0.123907 0.436489 -0.093436 0.894845 0.782531 -0.451382 -0.428836 0.349461 0.928722 -0.123907 0.443831 -0.047618 0.894845 0.825162 -0.367707 -0.428836 0.250199 0.960233 -0.123907 0.446377 -0.000839 0.894845 0.859155 -0.279199 -0.428836 0.148182 0.981167 -0.123907 0.444006 0.045949 0.894845 0.883686 -0.187615 -0.428836 0.045524 0.991249 -0.123907 0.436837 0.091794 0.894845 0.898388 -0.094864 -0.428836 -0.058617 0.990561 -0.123907 0.424811 0.137072 0.894845 0.903382 -0.000184 -0.428836 -0.162112 0.978962 -0.123907 0.408105 0.180841 0.894845 0.898426 0.094498 -0.428836 -0.263821 0.956580 -0.123907 0.386904 0.222617 0.894845 0.883574 0.188139 -0.428836 -0.361701 0.924024 -0.123907 0.361703 0.261580 0.894845 0.859269 0.278849 -0.428836 -0.456553 0.881026 -0.123907 0.332295 0.298048 0.894845 0.825311 0.367371 -0.428836 -0.546377 0.828323 -0.123907 0.299228 0.331234 0.894845 0.782263 0.451846 -0.428836 -0.630182 0.766497 -0.123907 0.262864 0.360771 0.894845 0.730598 0.531344 -0.428836 -0.706349 0.696935 -0.123907 0.223991 0.386110 0.894845 0.671490 0.604318 -0.428836 -0.775503 0.619066 -0.123907 0.182291 0.407459 0.894845 0.604455 0.671367 -0.428836 -0.836114 0.534379 -0.123907 0.138582 0.424321 0.894845 0.530762 0.731021 -0.428836 -0.887072 0.444692 -0.123907 0.093783 0.436415 0.894845 0.452005 0.782171 -0.428836 -0.928793 0.349271 -0.123907 0.047527 0.443840 0.894845 0.367539 0.825236 -0.428836 -0.960284 0.250004 -0.123907 0.000748 0.446377 0.894845 0.279024 0.859212 -0.428836 -0.981197 0.147982 -0.123907 -0.046040 0.443997 0.894845 0.187435 0.883724 -0.428836 -0.991258 0.045322 -0.123907 -0.091883 0.436819 0.894845 0.094681 0.898407 -0.428836 -0.990549 -0.058819 -0.123907 -0.137159 0.424783 0.894845 0.000000 0.903382 -0.428836 -0.978929 -0.162311 -0.123907 -0.180924 0.408068 0.894845 -0.094681 0.898407 -0.428836 -0.956790 -0.263060 -0.123907 -0.222309 0.387081 0.894845 -0.187435 0.883724 -0.428836 -0.923950 -0.361889 -0.123907 -0.261653 0.361650 0.894845 -0.279024 0.859212 -0.428836 -0.880933 -0.456733 -0.123907 -0.298116 0.332235 0.894845 -0.367539 0.825236 -0.428836 -0.828212 -0.546545 -0.123907 -0.331295 0.299160 0.894845 -0.452005 0.782171 -0.428836 -0.766999 -0.629571 -0.123907 -0.360561 0.263151 0.894845 -0.530762 0.731021 -0.428836 -0.696791 -0.706491 -0.123907 -0.386156 0.223913 0.894845 -0.604455 0.671367 -0.428836 -0.618908 -0.775629 -0.123907 -0.407497 0.182208 0.894845 -0.671490 0.604318 -0.428836 -0.535044 -0.835688 -0.123907 -0.424210 0.138920 0.894845 -0.730598 0.531344 -0.428836 -0.444511 -0.887162 -0.123907 -0.436434 0.093694 0.894845 -0.782263 0.451846 -0.428836 -0.349082 -0.928864 -0.123907 -0.443850 0.047437 0.894845 -0.825311 0.367371 -0.428836 -0.249808 -0.960335 -0.123907 -0.446377 0.000657 0.894845 -0.859269 0.278849 -0.428836 -0.148764 -0.981079 -0.123907 -0.444034 -0.045686 0.894845 -0.883574 0.188139 -0.428836 -0.045120 -0.991268 -0.123907 -0.436800 -0.091972 0.894845 -0.898426 0.094498 -0.428836 -0.432558 0.755005 0.492809 0.497879 0.655719 -0.567582 -0.751671 -0.000153 -0.659538 -0.509306 0.705512 0.492809 0.426413 0.704289 -0.567582 -0.747516 -0.078933 -0.659538 -0.579795 0.648827 0.492809 0.350995 0.744750 -0.567582 -0.735282 -0.156108 -0.659538 -0.644604 0.584487 0.492809 0.271007 0.777436 -0.567582 -0.714872 -0.232311 -0.659538 -0.702312 0.513709 0.492809 0.188033 0.801557 -0.567582 -0.686587 -0.305955 -0.659538 -0.751847 0.438025 0.492809 0.103805 0.816747 -0.567582 -0.651115 -0.375579 -0.659538 -0.793614 0.356814 0.492809 0.017633 0.823128 -0.567582 -0.608166 -0.441751 -0.659538 -0.826640 0.271672 0.492809 -0.068734 0.820443 -0.567582 -0.558518 -0.503059 -0.659538 -0.850561 0.183538 0.492809 -0.154344 0.808720 -0.567582 -0.502717 -0.558825 -0.659538 -0.865018 0.094247 0.492809 -0.237465 0.788328 -0.567582 -0.441988 -0.607994 -0.659538 -0.870132 0.003068 0.492809 -0.318780 0.759098 -0.567582 -0.375832 -0.650969 -0.659538 -0.865662 -0.088145 0.492809 -0.396583 0.721507 -0.567582 -0.305536 -0.686774 -0.659538 -0.851834 -0.177535 0.492809 -0.469342 0.676438 -0.567582 -0.232589 -0.714781 -0.659538 -0.828535 -0.265836 0.492809 -0.537652 0.623523 -0.567582 -0.156394 -0.735222 -0.659538 -0.796111 -0.351208 0.492809 -0.600041 0.563739 -0.567582 -0.078476 -0.747564 -0.659538 -0.755269 -0.432097 0.492809 -0.655415 0.498279 -0.567582 -0.000306 -0.751671 -0.659538 -0.705823 -0.508875 0.492809 -0.704028 0.426843 -0.567582 0.078476 -0.747564 -0.659538 -0.648602 -0.580047 0.492809 -0.744887 0.350705 -0.567582 0.156394 -0.735222 -0.659538 -0.584237 -0.644831 0.492809 -0.777541 0.270704 -0.567582 0.232589 -0.714781 -0.659538 -0.514138 -0.701998 0.492809 -0.801442 0.188523 -0.567582 0.305536 -0.686774 -0.659538 -0.437732 -0.752017 0.492809 -0.816787 0.103488 -0.567582 0.375832 -0.650969 -0.659538 -0.356505 -0.793753 0.492809 -0.823135 0.017313 -0.567582 0.441988 -0.607994 -0.659538 -0.272177 -0.826474 0.492809 -0.820485 -0.068233 -0.567582 0.502717 -0.558825 -0.659538 -0.184058 -0.850448 0.492809 -0.808815 -0.153850 -0.567582 0.558518 -0.503059 -0.659538 -0.093911 -0.865055 0.492809 -0.788235 -0.237772 -0.567582 0.608166 -0.441751 -0.659538 -0.002730 -0.870133 0.492809 -0.758974 -0.319075 -0.567582 0.651115 -0.375579 -0.659538 0.087616 -0.865715 0.492809 -0.721749 -0.396142 -0.567582 0.686587 -0.305955 -0.659538 0.177867 -0.851765 0.492809 -0.676256 -0.469605 -0.567582 0.714872 -0.232311 -0.659538 0.266158 -0.828432 0.492809 -0.623313 -0.537895 -0.567582 0.735282 -0.156108 -0.659538 0.350722 -0.796325 0.492809 -0.564105 -0.599696 -0.567582 0.747516 -0.078933 -0.659538 0.432251 -0.755181 0.492809 -0.498146 -0.655516 -0.567582 0.751671 -0.000153 -0.659538 0.509018 -0.705719 0.492809 -0.426700 -0.704115 -0.567582 0.747548 0.078628 -0.659538 0.580180 -0.648484 0.492809 -0.350553 -0.744958 -0.567582 0.735190 0.156544 -0.659538 0.644365 -0.584750 0.492809 -0.271323 -0.777325 -0.567582 0.714966 0.232020 -0.659538 0.702103 -0.513995 0.492809 -0.188360 -0.801481 -0.567582 0.686711 0.305676 -0.659538 0.752106 -0.437579 0.492809 -0.103321 -0.816808 -0.567582 0.650892 0.375964 -0.659538 0.793826 -0.356343 0.492809 -0.017145 -0.823138 -0.567582 0.607904 0.442112 -0.659538 0.826529 -0.272009 0.492809 0.068400 -0.820471 -0.567582 0.558722 0.502831 -0.659538 0.850486 -0.183884 0.492809 0.154014 -0.808783 -0.567582 0.502945 0.558620 -0.659538 0.865074 -0.093735 0.492809 0.237932 -0.788187 -0.567582 0.441628 0.608256 -0.659538 0.870131 -0.003423 0.492809 0.318471 -0.759228 -0.567582 0.376097 0.650816 -0.659538 0.865697 0.087792 0.492809 0.396289 -0.721669 -0.567582 0.305815 0.686649 -0.659538 0.851728 0.178040 0.492809 0.469743 -0.676160 -0.567582 0.232165 0.714919 -0.659538 0.828378 0.266327 0.492809 0.538022 -0.623204 -0.567582 0.155958 0.735314 -0.659538 0.796254 0.350884 0.492809 0.599811 -0.563983 -0.567582 0.078781 0.747532 -0.659538 0.755093 0.432404 0.492809 0.655617 -0.498012 -0.567582 0.000000 0.751671 -0.659538 0.705616 0.509162 0.492809 0.704202 -0.426556 -0.567582 -0.078781 0.747532 -0.659538 0.648946 0.579663 0.492809 0.744679 -0.351146 -0.567582 -0.155958 0.735314 -0.659538 0.584619 0.644485 0.492809 0.777380 -0.271165 -0.567582 -0.232165 0.714919 -0.659538 0.513852 0.702207 0.492809 0.801519 -0.188196 -0.567582 -0.305815 0.686649 -0.659538 0.437426 0.752195 0.492809 0.816829 -0.103155 -0.567582 -0.376097 0.650816 -0.659538 0.356975 0.793541 0.492809 0.823124 -0.017800 -0.567582 -0.441628 0.608256 -0.659538 0.271840 0.826585 0.492809 0.820457 0.068567 -0.567582 -0.502945 0.558620 -0.659538 0.183711 0.850523 0.492809 0.808752 0.154179 -0.567582 -0.558722 0.502831 -0.659538 0.094424 0.864999 0.492809 0.788376 0.237305 -0.567582 -0.607904 0.442112 -0.659538 0.003245 0.870131 0.492809 0.759163 0.318625 -0.567582 -0.650892 0.375964 -0.659538 -0.087969 0.865679 0.492809 0.721588 0.396436 -0.567582 -0.686711 0.305676 -0.659538 -0.178213 0.851692 0.492809 0.676064 0.469880 -0.567582 -0.714966 0.232020 -0.659538 -0.265667 0.828589 0.492809 0.623632 0.537525 -0.567582 -0.735190 0.156544 -0.659538 -0.351046 0.796182 0.492809 0.563861 0.599926 -0.567582 -0.747548 0.078628 -0.659538 -0.706479 -0.537420 0.460507 -0.450290 0.843315 0.293357 -0.546009 -0.000111 -0.837779 -0.646263 -0.608504 0.460507 -0.536196 0.791477 0.293357 -0.542990 -0.057336 -0.837779 -0.579601 -0.672306 0.460507 -0.615464 0.731537 0.293357 -0.534104 -0.113396 -0.837779 -0.505946 -0.729350 0.460507 -0.688745 0.663003 0.293357 -0.519278 -0.168749 -0.837779 -0.426719 -0.778360 0.460507 -0.754439 0.587166 0.293357 -0.498732 -0.222244 -0.837779 -0.343609 -0.818453 0.460507 -0.811318 0.505673 0.293357 -0.472965 -0.272818 -0.837779 -0.255937 -0.849958 0.460507 -0.859848 0.417856 0.293357 -0.441767 -0.320885 -0.837779 -0.165446 -0.872101 0.460507 -0.898906 0.325437 0.293357 -0.405703 -0.365418 -0.837779 -0.073132 -0.884638 0.460507 -0.928064 0.229432 0.293357 -0.365170 -0.405926 -0.837779 0.019099 -0.887450 0.460507 -0.946867 0.131848 0.293357 -0.321057 -0.441642 -0.837779 0.112005 -0.880561 0.460507 -0.955471 0.031883 0.293357 -0.273001 -0.472859 -0.837779 0.203678 -0.863972 0.460507 -0.953550 -0.068432 0.293357 -0.221939 -0.498867 -0.837779 0.292268 -0.838160 0.460507 -0.941294 -0.167053 0.293357 -0.168951 -0.519212 -0.837779 0.378504 -0.802912 0.460507 -0.918602 -0.264788 0.293357 -0.113603 -0.534060 -0.837779 0.460570 -0.758820 0.460507 -0.885791 -0.359605 0.293357 -0.057004 -0.543025 -0.837779 0.536988 -0.706808 0.460507 -0.843590 -0.449775 0.293357 -0.000222 -0.546009 -0.837779 0.608109 -0.646635 0.460507 -0.791804 -0.535712 0.293357 0.057004 -0.543025 -0.837779 0.672532 -0.579339 0.460507 -0.731297 -0.615749 0.293357 0.113603 -0.534060 -0.837779 0.729547 -0.505662 0.460507 -0.662735 -0.689003 0.293357 0.168951 -0.519212 -0.837779 0.778099 -0.427194 0.460507 -0.587627 -0.754080 0.293357 0.221939 -0.498867 -0.837779 0.818587 -0.343291 0.460507 -0.505357 -0.811514 0.293357 0.273001 -0.472859 -0.837779 0.850058 -0.255607 0.460507 -0.417522 -0.860010 0.293357 0.321057 -0.441642 -0.837779 0.872000 -0.165979 0.460507 -0.325986 -0.898707 0.293357 0.365170 -0.405926 -0.837779 0.884593 -0.073673 0.460507 -0.229999 -0.927923 0.293357 0.405703 -0.365418 -0.837779 0.887443 0.019445 0.460507 -0.131480 -0.946918 0.293357 0.441767 -0.320885 -0.837779 0.880517 0.112348 0.460507 -0.031512 -0.955483 0.293357 0.472965 -0.272818 -0.837779 0.864097 0.203150 0.460507 0.067850 -0.953592 0.293357 0.498732 -0.222244 -0.837779 0.838046 0.292594 0.460507 0.167419 -0.941229 0.293357 0.519278 -0.168749 -0.837779 0.802765 0.378816 0.460507 0.265145 -0.918499 0.293357 0.534104 -0.113396 -0.837779 0.759101 0.460107 0.460507 0.359064 -0.886010 0.293357 0.542990 -0.057336 -0.837779 0.706698 0.537132 0.460507 0.449947 -0.843498 0.293357 0.546009 -0.000111 -0.837779 0.646511 0.608241 0.460507 0.535873 -0.791695 0.293357 0.543013 0.057115 -0.837779 0.579202 0.672650 0.460507 0.615897 -0.731172 0.293357 0.534037 0.113712 -0.837779 0.506243 0.729144 0.460507 0.688475 -0.663283 0.293357 0.519346 0.168538 -0.837779 0.427036 0.778186 0.460507 0.754200 -0.587473 0.293357 0.498822 0.222041 -0.837779 0.343124 0.818657 0.460507 0.811617 -0.505192 0.293357 0.472804 0.273098 -0.837779 0.255433 0.850110 0.460507 0.860095 -0.417346 0.293357 0.441577 0.321147 -0.837779 0.165801 0.872034 0.460507 0.898774 -0.325803 0.293357 0.405852 0.365253 -0.837779 0.073493 0.884608 0.460507 0.927970 -0.229810 0.293357 0.365336 0.405778 -0.837779 -0.019625 0.887439 0.460507 0.946945 -0.131287 0.293357 0.320795 0.441833 -0.837779 -0.111647 0.880607 0.460507 0.955458 -0.032273 0.293357 0.273194 0.472748 -0.837779 -0.203326 0.864055 0.460507 0.953578 0.068044 0.293357 0.222142 0.498777 -0.837779 -0.292765 0.837987 0.460507 0.941195 0.167611 0.293357 0.168643 0.519312 -0.837779 -0.378980 0.802688 0.460507 0.918445 0.265332 0.293357 0.113287 0.534127 -0.837779 -0.460261 0.759008 0.460507 0.885937 0.359244 0.293357 0.057226 0.543002 -0.837779 -0.537276 0.706589 0.460507 0.843407 0.450119 0.293357 0.000000 0.546009 -0.837779 -0.608372 0.646387 0.460507 0.791586 0.536035 0.293357 -0.057226 0.543002 -0.837779 -0.672188 0.579738 0.460507 0.731662 0.615315 0.293357 -0.113287 0.534127 -0.837779 -0.729247 0.506095 0.460507 0.663143 0.688610 0.293357 -0.168643 0.519312 -0.837779 -0.778273 0.426877 0.460507 0.587319 0.754319 0.293357 -0.222142 0.498777 -0.837779 -0.818726 0.342957 0.460507 0.505027 0.811720 0.293357 -0.273194 0.472748 -0.837779 -0.849906 0.256110 0.460507 0.418031 0.859762 0.293357 -0.320795 0.441833 -0.837779 -0.872068 0.165624 0.460507 0.325620 0.898840 0.293357 -0.365336 0.405778 -0.837779 -0.884623 0.073312 0.460507 0.229621 0.928017 0.293357 -0.405852 0.365253 -0.837779 -0.887454 -0.018919 0.460507 0.132041 0.946840 0.293357 -0.441577 0.321147 -0.837779 -0.880584 -0.111826 0.460507 0.032078 0.955465 0.293357 -0.472804 0.273098 -0.837779 -0.864014 -0.203502 0.460507 -0.068238 0.953564 0.293357 -0.498822 0.222041 -0.837779 -0.837927 -0.292936 0.460507 -0.167803 0.941161 0.293357 -0.519346 0.168538 -0.837779 -0.802989 -0.378340 0.460507 -0.264600 0.918656 0.293357 -0.534037 0.113712 -0.837779 -0.758914 -0.460416 0.460507 -0.359425 0.885864 0.293357 -0.543013 0.057115 -0.837779 0.450243 0.787008 -0.421781 0.574511 -0.616942 -0.537884 -0.683533 -0.000139 -0.729919 0.365279 0.829863 -0.421781 0.636007 -0.553331 -0.537884 -0.679754 -0.071778 -0.729919 0.277155 0.863299 -0.421781 0.690013 -0.484316 -0.537884 -0.668630 -0.141957 -0.729919 0.185149 0.887593 -0.421781 0.736973 -0.409330 -0.537884 -0.650070 -0.211252 -0.729919 0.091103 0.902109 -0.421781 0.775815 -0.329836 -0.537884 -0.624349 -0.278221 -0.729919 -0.003040 0.906693 -0.421781 0.805864 -0.247514 -0.537884 -0.592092 -0.341533 -0.729919 -0.098051 0.901381 -0.421781 0.827367 -0.161691 -0.537884 -0.553036 -0.401707 -0.729919 -0.191982 0.886140 -0.421781 0.839757 -0.074087 -0.537884 -0.507889 -0.457457 -0.729919 -0.283798 0.861139 -0.421781 0.842897 0.014334 -0.537884 -0.457147 -0.508168 -0.729919 -0.371662 0.827024 -0.421781 0.836855 0.101760 -0.537884 -0.401922 -0.552880 -0.729919 -0.456293 0.783516 -0.421781 0.821581 0.188908 -0.537884 -0.341763 -0.591959 -0.729919 -0.535898 0.731378 -0.421781 0.797257 0.273975 -0.537884 -0.277839 -0.624519 -0.729919 -0.608929 0.671794 -0.421781 0.764507 0.355260 -0.537884 -0.211505 -0.649987 -0.729919 -0.675984 0.604274 -0.421781 0.723063 0.433429 -0.537884 -0.142217 -0.668575 -0.729919 -0.735593 0.530098 -0.421781 0.673654 0.506824 -0.537884 -0.071362 -0.679798 -0.729919 -0.786733 0.450724 -0.421781 0.617293 0.574134 -0.537884 -0.000278 -0.683533 -0.729919 -0.829639 0.365786 -0.421781 0.553720 0.635669 -0.537884 0.071362 -0.679798 -0.729919 -0.863407 0.276819 -0.421781 0.484048 0.690202 -0.537884 0.142217 -0.668575 -0.729919 -0.887665 0.184804 -0.421781 0.409044 0.737132 -0.537884 0.211505 -0.649987 -0.729919 -0.902054 0.091654 -0.421781 0.330310 0.775613 -0.537884 0.277839 -0.624519 -0.729919 -0.906692 -0.003392 -0.421781 0.247201 0.805961 -0.537884 0.341763 -0.591959 -0.729919 -0.901343 -0.098401 -0.421781 0.161369 0.827430 -0.537884 0.401922 -0.552880 -0.729919 -0.886257 -0.191440 -0.421781 0.074599 0.839712 -0.537884 0.457147 -0.508168 -0.729919 -0.861312 -0.283272 -0.421781 -0.013819 0.842906 -0.537884 0.507889 -0.457457 -0.729919 -0.826879 -0.371984 -0.421781 -0.102086 0.836815 -0.537884 0.553036 -0.401707 -0.729919 -0.783339 -0.456598 -0.421781 -0.189227 0.821507 -0.537884 0.592092 -0.341533 -0.729919 -0.731706 -0.535451 -0.421781 -0.273488 0.797424 -0.537884 0.624349 -0.278221 -0.729919 -0.671557 -0.609190 -0.421781 -0.355557 0.764369 -0.537884 0.650070 -0.211252 -0.729919 -0.604011 -0.676219 -0.421781 -0.433711 0.722894 -0.537884 0.668630 -0.141957 -0.729919 -0.530547 -0.735269 -0.421781 -0.506413 0.673964 -0.537884 0.679754 -0.071778 -0.729919 -0.450564 -0.786825 -0.421781 -0.574260 0.617176 -0.537884 0.683533 -0.000139 -0.729919 -0.365617 -0.829714 -0.421781 -0.635782 0.553590 -0.537884 0.679784 0.071501 -0.729919 -0.276644 -0.863464 -0.421781 -0.690300 0.483907 -0.537884 0.668546 0.142353 -0.729919 -0.185510 -0.887517 -0.421781 -0.736806 0.409631 -0.537884 0.650156 0.210988 -0.729919 -0.091471 -0.902072 -0.421781 -0.775681 0.330152 -0.537884 0.624462 0.277967 -0.729919 0.003577 -0.906691 -0.421781 -0.806011 0.247037 -0.537884 0.591890 0.341884 -0.729919 0.098585 -0.901322 -0.421781 -0.827463 0.161201 -0.537884 0.552798 0.402035 -0.729919 0.191621 -0.886218 -0.421781 -0.839727 0.074429 -0.537884 0.508075 0.457250 -0.729919 0.283448 -0.861254 -0.421781 -0.842903 -0.013991 -0.537884 0.457354 0.507982 -0.729919 0.372152 -0.826804 -0.421781 -0.836794 -0.102256 -0.537884 0.401595 0.553118 -0.729919 0.455974 -0.783702 -0.421781 -0.821657 -0.188573 -0.537884 0.342004 0.591820 -0.729919 0.535600 -0.731597 -0.421781 -0.797368 -0.273650 -0.537884 0.278094 0.624405 -0.729919 0.609327 -0.671433 -0.421781 -0.764296 -0.355713 -0.537884 0.211120 0.650113 -0.729919 0.676342 -0.603873 -0.421781 -0.722806 -0.433858 -0.537884 0.141821 0.668659 -0.729919 0.735377 -0.530397 -0.421781 -0.673860 -0.506550 -0.537884 0.071639 0.679769 -0.729919 0.786917 -0.450403 -0.421781 -0.617059 -0.574386 -0.537884 0.000000 0.683534 -0.729919 0.829788 -0.365448 -0.421781 -0.553461 -0.635894 -0.537884 -0.071639 0.679769 -0.729919 0.863243 -0.277331 -0.421781 -0.484457 -0.689915 -0.537884 -0.141821 0.668659 -0.729919 0.887555 -0.185330 -0.421781 -0.409481 -0.736890 -0.537884 -0.211120 0.650113 -0.729919 0.902091 -0.091287 -0.421781 -0.329994 -0.775748 -0.537884 -0.278094 0.624405 -0.729919 0.906690 0.003761 -0.421781 -0.246873 -0.806061 -0.537884 -0.342004 0.591820 -0.729919 0.901401 0.097867 -0.421781 -0.161859 -0.827334 -0.537884 -0.401595 0.553118 -0.729919 0.886179 0.191801 -0.421781 -0.074258 -0.839742 -0.537884 -0.457354 0.507982 -0.729919 0.861196 0.283623 -0.421781 0.014162 -0.842900 -0.537884 -0.508075 0.457250 -0.729919 0.827100 0.371493 -0.421781 0.101590 -0.836875 -0.537884 -0.552798 0.402035 -0.729919 0.783609 0.456134 -0.421781 0.188741 -0.821619 -0.537884 -0.591890 0.341884 -0.729919 0.731487 0.535749 -0.421781 0.273813 -0.797313 -0.537884 -0.624462 0.277967 -0.729919 0.671308 0.609464 -0.421781 0.355869 -0.764224 -0.537884 -0.650156 0.210988 -0.729919 0.604411 0.675861 -0.421781 0.433282 -0.723151 -0.537884 -0.668546 0.142353 -0.729919 0.530247 0.735485 -0.421781 0.506687 -0.673757 -0.537884 -0.679784 0.071501 -0.729919 0.689207 0.028933 0.723987 -0.020056 0.999581 -0.020854 -0.724287 -0.000148 0.689498 0.682379 0.101007 0.723987 -0.124709 0.991974 -0.020854 -0.720283 -0.076057 0.689498 0.668206 0.171301 0.723987 -0.227014 0.973668 -0.020854 -0.708495 -0.150421 0.689498 0.646572 0.240390 0.723987 -0.327811 0.944513 -0.020854 -0.688828 -0.223848 0.689498 0.617817 0.306832 0.723987 -0.424998 0.904954 -0.020854 -0.661574 -0.294809 0.689498 0.582625 0.369311 0.723987 -0.516647 0.855944 -0.020854 -0.627394 -0.361896 0.689498 0.540710 0.428340 0.723987 -0.603511 0.797082 -0.020854 -0.586010 -0.425658 0.689498 0.492839 0.482652 0.723987 -0.683727 0.729440 -0.020854 -0.538170 -0.484732 0.689498 0.439540 0.531646 0.723987 -0.756412 0.653763 -0.020854 -0.484403 -0.538466 0.689498 0.381973 0.574404 0.723987 -0.820194 0.571706 -0.020854 -0.425886 -0.585844 0.689498 0.319668 0.611274 0.723987 -0.875595 0.482595 -0.020854 -0.362140 -0.627253 0.689498 0.253841 0.641411 0.723987 -0.921353 0.388168 -0.020854 -0.294405 -0.661754 0.689498 0.185883 0.664297 0.723987 -0.956671 0.290423 -0.020854 -0.224116 -0.688741 0.689498 0.115236 0.680120 0.723987 -0.981841 0.188558 -0.020854 -0.150696 -0.708437 0.689498 0.043320 0.688452 0.723987 -0.996195 0.084615 -0.020854 -0.075617 -0.720329 0.689498 -0.028512 0.689224 0.723987 -0.999593 -0.019445 -0.020854 -0.000295 -0.724287 0.689498 -0.100590 0.682440 0.723987 -0.992050 -0.124103 -0.020854 0.075617 -0.720329 0.689498 -0.171561 0.668139 0.723987 -0.973580 -0.227393 -0.020854 0.150696 -0.708437 0.689498 -0.240642 0.646479 0.723987 -0.944385 -0.328179 -0.020854 0.224116 -0.688741 0.689498 -0.306454 0.618004 0.723987 -0.905214 -0.424445 -0.020854 0.294405 -0.661754 0.689498 -0.369538 0.582482 0.723987 -0.855743 -0.516980 -0.020854 0.362140 -0.627253 0.689498 -0.428551 0.540544 0.723987 -0.796847 -0.603821 -0.020854 0.425886 -0.585844 0.689498 -0.482350 0.493134 0.723987 -0.729858 -0.683281 -0.020854 0.484403 -0.538466 0.689498 -0.531378 0.439864 0.723987 -0.654225 -0.756012 -0.020854 0.538170 -0.484732 0.689498 -0.574552 0.381749 0.723987 -0.571386 -0.820416 -0.020854 0.586010 -0.425658 0.689498 -0.611398 0.319430 0.723987 -0.482254 -0.875783 -0.020854 0.627394 -0.361896 0.689498 -0.641255 0.254233 0.723987 -0.388731 -0.921115 -0.020854 0.661574 -0.294809 0.689498 -0.664369 0.185625 0.723987 -0.290051 -0.956784 -0.020854 0.688828 -0.223848 0.689498 -0.680165 0.114972 0.723987 -0.188175 -0.981914 -0.020854 0.708495 -0.150421 0.689498 -0.688426 0.043741 0.723987 -0.085224 -0.996144 -0.020854 0.720283 -0.076057 0.689498 -0.689218 -0.028652 0.723987 0.019649 -0.999589 -0.020854 0.724287 -0.000148 0.689498 -0.682420 -0.100729 0.723987 0.124305 -0.992025 -0.020854 0.720314 0.075764 0.689498 -0.668104 -0.171697 0.723987 0.227591 -0.973533 -0.020854 0.708406 0.150841 0.689498 -0.646670 -0.240127 0.723987 0.327427 -0.944646 -0.020854 0.688919 0.223567 0.689498 -0.617941 -0.306580 0.723987 0.424629 -0.905127 -0.020854 0.661694 0.294539 0.689498 -0.582406 -0.369656 0.723987 0.517154 -0.855638 -0.020854 0.627180 0.362267 0.689498 -0.540456 -0.428661 0.723987 0.603983 -0.796724 -0.020854 0.585757 0.426005 0.689498 -0.493036 -0.482451 0.723987 0.683430 -0.729718 -0.020854 0.538368 0.484512 0.689498 -0.439756 -0.531467 0.723987 0.756146 -0.654071 -0.020854 0.484622 0.538269 0.689498 -0.381633 -0.574630 0.723987 0.820532 -0.571219 -0.020854 0.425539 0.586096 0.689498 -0.319917 -0.611143 0.723987 0.875399 -0.482951 -0.020854 0.362395 0.627106 0.689498 -0.254103 -0.641307 0.723987 0.921194 -0.388544 -0.020854 0.294674 0.661634 0.689498 -0.185489 -0.664407 0.723987 0.956843 -0.289856 -0.020854 0.223707 0.688874 0.689498 -0.114833 -0.680188 0.723987 0.981952 -0.187976 -0.020854 0.150276 0.708526 0.689498 -0.043601 -0.688434 0.723987 0.996161 -0.085021 -0.020854 0.075910 0.720298 0.689498 0.028792 -0.689213 0.723987 0.999585 0.019852 -0.020854 0.000000 0.724287 0.689498 0.100868 -0.682399 0.723987 0.992000 0.124507 -0.020854 -0.075910 0.720298 0.689498 0.171165 -0.668241 0.723987 0.973714 0.226816 -0.020854 -0.150276 0.708526 0.689498 0.240259 -0.646621 0.723987 0.944580 0.327619 -0.020854 -0.223707 0.688874 0.689498 0.306706 -0.617879 0.723987 0.905041 0.424813 -0.020854 -0.294674 0.661634 0.689498 0.369775 -0.582331 0.723987 0.855533 0.517329 -0.020854 -0.362395 0.627106 0.689498 0.428230 -0.540797 0.723987 0.797205 0.603348 -0.020854 -0.425539 0.586096 0.689498 0.482551 -0.492937 0.723987 0.729579 0.683578 -0.020854 -0.484622 0.538269 0.689498 0.531557 -0.439648 0.723987 0.653917 0.756279 -0.020854 -0.538368 0.484512 0.689498 0.574326 -0.382090 0.723987 0.571873 0.820077 -0.020854 -0.585757 0.426005 0.689498 0.611209 -0.319792 0.723987 0.482773 0.875497 -0.020854 -0.627180 0.362267 0.689498 0.641359 -0.253972 0.723987 0.388356 0.921273 -0.020854 -0.661694 0.294539 0.689498 0.664445 -0.185354 0.723987 0.289661 0.956902 -0.020854 -0.688919 0.223567 0.689498 0.680097 -0.115375 0.723987 0.188757 0.981802 -0.020854 -0.708406 0.150841 0.689498 0.688443 -0.043461 0.723987 0.084818 0.996178 -0.020854 -0.720314 0.075764 0.689498 -0.254791 -0.669305 0.697934 -0.229765 0.742987 0.628632 -0.939303 -0.000191 -0.343089 -0.183239 -0.692323 0.697934 -0.306370 0.714814 0.628632 -0.934110 -0.098636 -0.343089 -0.110377 -0.707605 0.697934 -0.378921 0.679147 0.628632 -0.918823 -0.195075 -0.343089 -0.035608 -0.715276 0.697934 -0.448014 0.635693 0.628632 -0.893317 -0.290300 -0.343089 0.039555 -0.715069 0.697934 -0.512172 0.585237 0.628632 -0.857972 -0.382327 -0.343089 0.113574 -0.707099 0.697934 -0.570159 0.528905 0.628632 -0.813646 -0.469330 -0.343089 0.187058 -0.691301 0.697934 -0.622452 0.466235 0.628632 -0.759975 -0.552021 -0.343089 0.258481 -0.667889 0.697934 -0.667889 0.398430 0.628632 -0.697934 -0.628632 -0.343089 0.327057 -0.637120 0.697934 -0.705969 0.326236 0.628632 -0.628205 -0.698318 -0.343089 0.391431 -0.599725 0.697934 -0.736022 0.251185 0.628632 -0.552317 -0.759761 -0.343089 0.452130 -0.555397 0.697934 -0.758294 0.172661 0.628632 -0.469646 -0.813463 -0.343089 0.507850 -0.504952 0.697934 -0.772214 0.092236 0.628632 -0.381803 -0.858205 -0.343089 0.557526 -0.449502 0.697934 -0.777617 0.011572 0.628632 -0.290648 -0.893204 -0.343089 0.601567 -0.388594 0.697934 -0.774547 -0.069992 0.628632 -0.195433 -0.918747 -0.343089 0.638981 -0.323405 0.697934 -0.762946 -0.150784 0.628632 -0.098065 -0.934170 -0.343089 0.669150 -0.255200 0.697934 -0.743128 -0.229311 0.628632 -0.000383 -0.939303 -0.343089 0.692211 -0.183662 0.697934 -0.715002 -0.305933 0.628632 0.098065 -0.934170 -0.343089 0.707648 -0.110102 0.697934 -0.679000 -0.379185 0.628632 0.195433 -0.918747 -0.343089 0.715290 -0.035329 0.697934 -0.635519 -0.448261 0.628632 0.290648 -0.893204 -0.343089 0.715093 0.039118 0.697934 -0.585550 -0.511814 0.628632 0.381803 -0.858205 -0.343089 0.707055 0.113849 0.697934 -0.528683 -0.570365 0.628632 0.469646 -0.813463 -0.343089 0.691228 0.187327 0.697934 -0.465993 -0.622634 0.628632 0.552317 -0.759761 -0.343089 0.668047 0.258073 0.697934 -0.398838 -0.667645 0.628632 0.628205 -0.698318 -0.343089 0.637320 0.326667 0.697934 -0.326667 -0.705770 0.628632 0.697934 -0.628632 -0.343089 0.599573 0.391664 0.697934 -0.250899 -0.736120 0.628632 0.759975 -0.552021 -0.343089 0.555221 0.452346 0.697934 -0.172366 -0.758361 0.628632 0.813646 -0.469330 -0.343089 0.505262 0.507541 0.697934 -0.092707 -0.772158 0.628632 0.857972 -0.382327 -0.343089 0.449285 0.557701 0.697934 -0.011269 -0.777622 0.628632 0.893317 -0.290300 -0.343089 0.388360 0.601718 0.697934 0.070293 -0.774520 0.628632 0.918823 -0.195075 -0.343089 0.323796 0.638783 0.697934 0.150318 -0.763038 0.628632 0.934110 -0.098636 -0.343089 0.255063 0.669201 0.697934 0.229462 -0.743081 0.628632 0.939303 -0.000191 -0.343089 0.183521 0.692248 0.697934 0.306079 -0.714939 0.628632 0.934150 0.098255 -0.343089 0.109958 0.707670 0.697934 0.379324 -0.678922 0.628632 0.918707 0.195620 -0.343089 0.035899 0.715262 0.697934 0.447755 -0.635876 0.628632 0.893435 0.289936 -0.343089 -0.039263 0.715085 0.697934 0.511933 -0.585446 0.628632 0.858127 0.381978 -0.343089 -0.113993 0.707031 0.697934 0.570473 -0.528567 0.628632 0.813367 0.469812 -0.343089 -0.187467 0.691190 0.697934 0.622729 -0.465866 0.628632 0.759648 0.552471 -0.343089 -0.258209 0.667994 0.697934 0.667727 -0.398702 0.628632 0.698190 0.628347 -0.343089 -0.326797 0.637253 0.697934 0.705836 -0.326524 0.628632 0.628490 0.698062 -0.343089 -0.391786 0.599493 0.697934 0.736171 -0.250749 0.628632 0.551866 0.760088 -0.343089 -0.451904 0.555581 0.697934 0.758224 -0.172970 0.628632 0.469978 0.813272 -0.343089 -0.507644 0.505159 0.697934 0.772177 -0.092550 0.628632 0.382153 0.858050 -0.343089 -0.557793 0.449172 0.697934 0.777624 -0.011111 0.628632 0.290118 0.893376 -0.343089 -0.601797 0.388237 0.697934 0.774506 0.070451 0.628632 0.194888 0.918863 -0.343089 -0.638849 0.323666 0.697934 0.763007 0.150474 0.628632 0.098446 0.934130 -0.343089 -0.669253 0.254927 0.697934 0.743034 0.229614 0.628632 0.000000 0.939303 -0.343089 -0.692286 0.183380 0.697934 0.714877 0.306224 0.628632 -0.098446 0.934130 -0.343089 -0.707582 0.110522 0.697934 0.679224 0.378783 0.628632 -0.194888 0.918863 -0.343089 -0.715269 0.035753 0.697934 0.635784 0.447884 0.628632 -0.290118 0.893376 -0.343089 -0.715077 -0.039409 0.697934 0.585341 0.512052 0.628632 -0.382153 0.858050 -0.343089 -0.707008 -0.114137 0.697934 0.528451 0.570580 0.628632 -0.469978 0.813272 -0.343089 -0.691339 -0.186917 0.697934 0.466362 0.622357 0.628632 -0.551866 0.760088 -0.343089 -0.667942 -0.258345 0.697934 0.398566 0.667808 0.628632 -0.628490 0.698062 -0.343089 -0.637187 -0.326927 0.697934 0.326380 0.705903 0.628632 -0.698190 0.628347 -0.343089 -0.599805 -0.391309 0.697934 0.251335 0.735971 0.628632 -0.759648 0.552471 -0.343089 -0.555489 -0.452017 0.697934 0.172816 0.758259 0.628632 -0.813367 0.469812 -0.343089 -0.505055 -0.507747 0.697934 0.092393 0.772195 0.628632 -0.858127 0.381978 -0.343089 -0.449058 -0.557884 0.697934 0.010953 0.777626 0.628632 -0.893435 0.289936 -0.343089 -0.388716 -0.601488 0.697934 -0.069834 0.774561 0.628632 -0.918707 0.195620 -0.343089 -0.323535 -0.638915 0.697934 -0.150629 0.762976 0.628632 -0.934150 0.098255 -0.343089 -0.299765 0.756342 -0.581453 -0.346334 -0.654176 -0.672388 -0.888928 -0.000181 0.458046 -0.377384 0.720759 -0.581453 -0.275865 -0.686872 -0.672388 -0.884014 -0.093346 0.458046 -0.450169 0.677687 -0.581453 -0.203068 -0.711799 -0.672388 -0.869547 -0.184613 0.458046 -0.518716 0.626774 -0.581453 -0.127348 -0.729162 -0.672388 -0.845409 -0.274731 0.458046 -0.581550 0.568957 -0.581453 -0.050225 -0.738493 -0.672388 -0.811959 -0.361823 0.458046 -0.637473 0.505511 -0.581453 0.026711 -0.739717 -0.672388 -0.770010 -0.444160 0.458046 -0.686943 0.435915 -0.581453 0.104091 -0.732843 -0.672388 -0.719218 -0.522416 0.458046 -0.728846 0.361518 -0.581453 0.180325 -0.717898 -0.672388 -0.660504 -0.594918 0.458046 -0.762722 0.283138 -0.581453 0.254573 -0.695045 -0.672388 -0.594515 -0.660867 0.458046 -0.787994 0.202428 -0.581453 0.325352 -0.664861 -0.672388 -0.522696 -0.719015 0.458046 -0.804870 0.118726 -0.581453 0.393242 -0.627100 -0.672388 -0.444459 -0.769837 0.458046 -0.812881 0.033716 -0.581453 0.456801 -0.582432 -0.672388 -0.361327 -0.812180 0.458046 -0.811989 -0.050854 -0.581453 0.514797 -0.531863 -0.672388 -0.275060 -0.845302 0.458046 -0.802187 -0.135676 -0.581453 0.567705 -0.474980 -0.672388 -0.184952 -0.869475 0.458046 -0.783549 -0.219003 -0.581453 0.614359 -0.412864 -0.672388 -0.092806 -0.884070 0.458046 -0.756525 -0.299303 -0.581453 0.653965 -0.346734 -0.672388 -0.000362 -0.888928 0.458046 -0.720989 -0.376944 -0.581453 0.686703 -0.276284 -0.672388 0.092806 -0.884070 0.458046 -0.677512 -0.450433 -0.581453 0.711878 -0.202791 -0.672388 0.184952 -0.869475 0.458046 -0.626572 -0.518960 -0.581453 0.729211 -0.127064 -0.672388 0.275060 -0.845302 0.458046 -0.569312 -0.581202 -0.581453 0.738462 -0.050677 -0.672388 0.361327 -0.812180 0.458046 -0.505263 -0.637669 -0.581453 0.739706 0.026999 -0.672388 0.444459 -0.769837 0.458046 -0.435648 -0.687112 -0.581453 0.732803 0.104376 -0.672388 0.522696 -0.719015 0.458046 -0.361963 -0.728625 -0.581453 0.718008 0.179887 -0.672388 0.594515 -0.660867 0.458046 -0.283604 -0.762549 -0.581453 0.695200 0.254148 -0.672388 0.660504 -0.594918 0.458046 -0.202122 -0.788073 -0.581453 0.664735 0.325611 -0.672388 0.719218 -0.522416 0.458046 -0.118413 -0.804916 -0.581453 0.626947 0.393486 -0.672388 0.770010 -0.444160 0.458046 -0.034213 -0.812860 -0.581453 0.582711 0.456445 -0.672388 0.811959 -0.361823 0.458046 0.051169 -0.811969 -0.581453 0.531663 0.515004 -0.672388 0.845409 -0.274731 0.458046 0.135988 -0.802134 -0.581453 0.474759 0.567889 -0.672388 0.869547 -0.184613 0.458046 0.218525 -0.783683 -0.581453 0.413240 0.614107 -0.672388 0.884014 -0.093346 0.458046 0.299457 -0.756464 -0.581453 0.346601 0.654035 -0.672388 0.888928 -0.000181 0.458046 0.377090 -0.720913 -0.581453 0.276144 0.686760 -0.672388 0.884052 0.092986 0.458046 0.450570 -0.677420 -0.581453 0.202646 0.711919 -0.672388 0.869437 0.185129 0.458046 0.518461 -0.626985 -0.581453 0.127645 0.729110 -0.672388 0.845521 0.274387 0.458046 0.581318 -0.569194 -0.581453 0.050526 0.738472 -0.672388 0.812106 0.361493 0.458046 0.637772 -0.505133 -0.581453 -0.027149 0.739701 -0.672388 0.769747 0.444616 0.458046 0.687201 -0.435508 -0.581453 -0.104526 0.732782 -0.672388 0.718908 0.522842 0.458046 0.728699 -0.361814 -0.581453 -0.180033 0.717971 -0.672388 0.660746 0.594649 0.458046 0.762607 -0.283449 -0.581453 -0.254290 0.695148 -0.672388 0.594784 0.660625 0.458046 0.788114 -0.201961 -0.581453 -0.325746 0.664668 -0.672388 0.522270 0.719324 0.458046 0.804822 -0.119054 -0.581453 -0.392987 0.627261 -0.672388 0.444773 0.769656 0.458046 0.812867 -0.034047 -0.581453 -0.456564 0.582618 -0.672388 0.361658 0.812033 0.458046 0.811959 0.051335 -0.581453 -0.515112 0.531558 -0.672388 0.274559 0.845465 0.458046 0.802107 0.136151 -0.581453 -0.567986 0.474643 -0.672388 0.184436 0.869584 0.458046 0.783638 0.218684 -0.581453 -0.614191 0.413115 -0.672388 0.093166 0.884033 0.458046 0.756403 0.299611 -0.581453 -0.654106 0.346468 -0.672388 0.000000 0.888928 0.458046 0.720836 0.377237 -0.581453 -0.686816 0.276005 -0.672388 -0.093166 0.884033 0.458046 0.677779 0.450031 -0.581453 -0.711758 0.203213 -0.672388 -0.184436 0.869584 0.458046 0.626880 0.518588 -0.581453 -0.729136 0.127497 -0.672388 -0.274559 0.845465 0.458046 0.569075 0.581434 -0.581453 -0.738483 0.050376 -0.672388 -0.361658 0.812033 0.458046 0.505003 0.637875 -0.581453 -0.739695 -0.027300 -0.672388 -0.444773 0.769656 0.458046 0.436055 0.686854 -0.581453 -0.732865 -0.103942 -0.672388 -0.522270 0.719324 0.458046 0.361666 0.728773 -0.581453 -0.717934 -0.180179 -0.672388 -0.594784 0.660625 0.458046 0.283294 0.762664 -0.581453 -0.695096 -0.254431 -0.672388 -0.660746 0.594649 0.458046 0.202589 0.787953 -0.581453 -0.664928 -0.325217 -0.672388 -0.718908 0.522842 0.458046 0.118890 0.804846 -0.581453 -0.627180 -0.393115 -0.672388 -0.769747 0.444616 0.458046 0.033881 0.812874 -0.581453 -0.582525 -0.456683 -0.672388 -0.812106 0.361493 0.458046 -0.051500 0.811948 -0.581453 -0.531453 -0.515220 -0.672388 -0.845521 0.274387 0.458046 -0.135512 0.802215 -0.581453 -0.475095 -0.567608 -0.672388 -0.869437 0.185129 0.458046 -0.218844 0.783594 -0.581453 -0.412989 -0.614275 -0.672388 -0.884052 0.092986 0.458046 0.218687 0.774464 -0.593618 0.268005 -0.632618 -0.726614 -0.938269 -0.000191 -0.345906 0.136314 0.793118 -0.593618 0.332832 -0.601046 -0.726614 -0.933082 -0.098527 -0.345906 0.053241 0.802984 -0.593618 0.393429 -0.563246 -0.726614 -0.917812 -0.194861 -0.345906 -0.031210 0.804142 -0.593618 0.450295 -0.518910 -0.726614 -0.892334 -0.289981 -0.345906 -0.115318 0.796442 -0.593618 0.502200 -0.468858 -0.726614 -0.857028 -0.381907 -0.345906 -0.197376 0.780167 -0.593618 0.548160 -0.414190 -0.726614 -0.812750 -0.468814 -0.345906 -0.278056 0.755184 -0.593618 0.588551 -0.354457 -0.726614 -0.759139 -0.551414 -0.345906 -0.355673 0.721883 -0.593618 0.622459 -0.290821 -0.726614 -0.697166 -0.627940 -0.345906 -0.429373 0.680630 -0.593618 0.649511 -0.223981 -0.726614 -0.627514 -0.697550 -0.345906 -0.497711 0.632378 -0.593618 0.669254 -0.155343 -0.726614 -0.551709 -0.758925 -0.345906 -0.561248 0.576731 -0.593618 0.681849 -0.084345 -0.726614 -0.469130 -0.812568 -0.345906 -0.618602 0.514732 -0.593618 0.686934 -0.012418 -0.726614 -0.381383 -0.857261 -0.345906 -0.668695 0.447733 -0.593618 0.684512 0.058962 -0.726614 -0.290328 -0.892221 -0.345906 -0.711938 0.375183 -0.593618 0.674562 0.130379 -0.726614 -0.195218 -0.917736 -0.345906 -0.747339 0.298500 -0.593618 0.657182 0.200360 -0.726614 -0.097957 -0.933142 -0.345906 -0.774330 0.219160 -0.593618 0.632782 0.267618 -0.726614 -0.000382 -0.938269 -0.345906 -0.793035 0.136798 -0.593618 0.601249 0.332464 -0.726614 0.097957 -0.933142 -0.345906 -0.803005 0.052929 -0.593618 0.563093 0.393648 -0.726614 0.195218 -0.917736 -0.345906 -0.804130 -0.031523 -0.593618 0.518734 0.450497 -0.726614 0.290328 -0.892221 -0.345906 -0.796512 -0.114832 -0.593618 0.469164 0.501914 -0.726614 0.381383 -0.857261 -0.345906 -0.780090 -0.197679 -0.593618 0.413976 0.548321 -0.726614 0.469130 -0.812568 -0.345906 -0.755076 -0.278350 -0.593618 0.354228 0.588689 -0.726614 0.551709 -0.758925 -0.345906 -0.722100 -0.355232 -0.593618 0.291201 0.622282 -0.726614 0.627514 -0.697550 -0.345906 -0.680892 -0.428957 -0.593618 0.224378 0.649374 -0.726614 0.697166 -0.627940 -0.345906 -0.632184 -0.497957 -0.593618 0.155083 0.669315 -0.726614 0.759139 -0.551414 -0.345906 -0.576513 -0.561472 -0.593618 0.084080 0.681882 -0.726614 0.812750 -0.468814 -0.345906 -0.515110 -0.618288 -0.593618 0.012838 0.686926 -0.726614 0.857028 -0.381907 -0.345906 -0.447472 -0.668870 -0.593618 -0.059228 0.684489 -0.726614 0.892334 -0.289981 -0.345906 -0.374906 -0.712084 -0.593618 -0.130641 0.674511 -0.726614 0.917812 -0.194861 -0.345906 -0.298957 -0.747157 -0.593618 -0.199958 0.657305 -0.726614 0.933082 -0.098527 -0.345906 -0.219003 -0.774374 -0.593618 -0.267747 0.632728 -0.726614 0.938269 -0.000191 -0.345906 -0.136637 -0.793063 -0.593618 -0.332587 0.601181 -0.726614 0.933122 0.098147 -0.345906 -0.052765 -0.803015 -0.593618 -0.393763 0.563013 -0.726614 0.917696 0.195405 -0.345906 0.030883 -0.804154 -0.593618 -0.450083 0.519093 -0.726614 0.892452 0.289617 -0.345906 0.114994 -0.796489 -0.593618 -0.502009 0.469062 -0.726614 0.857183 0.381558 -0.345906 0.197838 -0.780050 -0.593618 -0.548406 0.413865 -0.726614 0.812472 0.469295 -0.345906 0.278504 -0.755019 -0.593618 -0.588761 0.354108 -0.726614 0.758812 0.551864 -0.345906 0.355379 -0.722027 -0.593618 -0.622341 0.291074 -0.726614 0.697422 0.627656 -0.345906 0.429096 -0.680805 -0.593618 -0.649420 0.224245 -0.726614 0.627798 0.697294 -0.345906 0.498086 -0.632083 -0.593618 -0.669346 0.154947 -0.726614 0.551259 0.759251 -0.345906 0.561013 -0.576960 -0.593618 -0.681815 0.084623 -0.726614 0.469461 0.812377 -0.345906 0.618392 -0.514984 -0.593618 -0.686929 0.012698 -0.726614 0.381732 0.857106 -0.345906 0.668961 -0.447336 -0.593618 -0.684477 -0.059367 -0.726614 0.289799 0.892393 -0.345906 0.712160 -0.374761 -0.593618 -0.674485 -0.130778 -0.726614 0.194674 0.917852 -0.345906 0.747217 -0.298804 -0.593618 -0.657264 -0.200092 -0.726614 0.098337 0.933102 -0.345906 0.774419 -0.218845 -0.593618 -0.632673 -0.267876 -0.726614 0.000000 0.938269 -0.345906 0.793091 -0.136475 -0.593618 -0.601113 -0.332709 -0.726614 -0.098337 0.933102 -0.345906 0.802973 -0.053405 -0.593618 -0.563326 -0.393315 -0.726614 -0.194674 0.917852 -0.345906 0.804148 0.031047 -0.593618 -0.519001 -0.450189 -0.726614 -0.289799 0.892393 -0.345906 0.796465 0.115156 -0.593618 -0.468960 -0.502105 -0.726614 -0.381732 0.857106 -0.345906 0.780010 0.197997 -0.593618 -0.413753 -0.548490 -0.726614 -0.469461 0.812377 -0.345906 0.755241 0.277902 -0.593618 -0.354577 -0.588479 -0.726614 -0.551259 0.759251 -0.345906 0.721955 0.355526 -0.593618 -0.290948 -0.622400 -0.726614 -0.627798 0.697294 -0.345906 0.680717 0.429234 -0.593618 -0.224113 -0.649466 -0.726614 -0.697422 0.627656 -0.345906 0.632479 0.497582 -0.593618 -0.155480 -0.669222 -0.726614 -0.758812 0.551864 -0.345906 0.576846 0.561130 -0.593618 -0.084484 -0.681832 -0.726614 -0.812472 0.469295 -0.345906 0.514858 0.618497 -0.593618 -0.012558 -0.686931 -0.726614 -0.857183 0.381558 -0.345906 0.447200 0.669052 -0.593618 0.059507 -0.684464 -0.726614 -0.892452 0.289617 -0.345906 0.375328 0.711862 -0.593618 0.130241 -0.674589 -0.726614 -0.917696 0.195405 -0.345906 0.298652 0.747278 -0.593618 0.200226 -0.657223 -0.726614 -0.933122 0.098147 -0.345906 0.093612 -0.982808 0.159139 0.497489 0.184630 0.847594 -0.862404 -0.000176 0.506220 0.196102 -0.967584 0.159139 0.475399 0.235754 0.847594 -0.857636 -0.090561 0.506220 0.295490 -0.941998 0.159139 0.448356 0.283832 0.847594 -0.843601 -0.179105 0.506220 0.392591 -0.905841 0.159139 0.416139 0.329260 0.847594 -0.820183 -0.266534 0.506220 0.485367 -0.859705 0.159139 0.379338 0.371061 0.847594 -0.787732 -0.351027 0.506220 0.571993 -0.804673 0.159139 0.338768 0.408436 0.847594 -0.747034 -0.430907 0.506220 0.653178 -0.740293 0.159139 0.294095 0.441692 0.847594 -0.697758 -0.506828 0.506220 0.727169 -0.667758 0.159139 0.246183 0.470083 0.847594 -0.640796 -0.577167 0.506220 0.793150 -0.587867 0.159139 0.195559 0.493296 0.847594 -0.576775 -0.641148 0.506220 0.849892 -0.502352 0.159139 0.143292 0.510932 0.847594 -0.507100 -0.697561 0.506220 0.897862 -0.410511 0.159139 0.088954 0.523136 0.847594 -0.431197 -0.746867 0.506220 0.935941 -0.314147 0.159139 0.033635 0.529578 0.847594 -0.350546 -0.787946 0.506220 0.963497 -0.215288 0.159139 -0.021523 0.530208 0.847594 -0.266853 -0.820080 0.506220 0.980754 -0.113120 0.159139 -0.076974 0.525032 0.847594 -0.179433 -0.843531 0.506220 0.987209 -0.009707 0.159139 -0.131578 0.514073 0.847594 -0.090037 -0.857691 0.506220 0.982865 0.093012 0.159139 -0.184326 0.497602 0.847594 -0.000351 -0.862404 0.506220 0.967704 0.195511 0.159139 -0.235463 0.475543 0.847594 0.090037 -0.857691 0.506220 0.941883 0.295857 0.159139 -0.284007 0.448246 0.847594 0.179433 -0.843531 0.506220 0.905688 0.392943 0.159139 -0.329422 0.416011 0.847594 0.266853 -0.820080 0.506220 0.860002 0.484842 0.159139 -0.370829 0.379565 0.847594 0.350546 -0.787946 0.506220 0.804451 0.572306 0.159139 -0.408568 0.338609 0.847594 0.431197 -0.746867 0.506220 0.740038 0.653466 0.159139 -0.441807 0.293923 0.847594 0.507100 -0.697561 0.506220 0.668202 0.726761 0.159139 -0.469933 0.246470 0.847594 0.576775 -0.641148 0.506220 0.588352 0.792791 0.159139 -0.493176 0.195860 0.847594 0.640796 -0.577167 0.506220 0.502021 0.850088 0.159139 -0.510988 0.143093 0.847594 0.697758 -0.506828 0.506220 0.410161 0.898021 0.159139 -0.523171 0.088750 0.847594 0.747034 -0.430907 0.506220 0.314719 0.935749 0.159139 -0.529557 0.033959 0.847594 0.787732 -0.351027 0.506220 0.214913 0.963581 0.159139 -0.530200 -0.021730 0.847594 0.820183 -0.266534 0.506220 0.112739 0.980798 0.159139 -0.525002 -0.077179 0.847594 0.843601 -0.179105 0.506220 0.010311 0.987202 0.159139 -0.514154 -0.131264 0.847594 0.857636 -0.090561 0.506220 -0.093212 0.982846 0.159139 -0.497565 -0.184428 0.847594 0.862404 -0.000176 0.506220 -0.195708 0.967664 0.159139 -0.475495 -0.235560 0.847594 0.857673 0.090211 0.506220 -0.296048 0.941823 0.159139 -0.448188 -0.284098 0.847594 0.843495 0.179605 0.506220 -0.392222 0.906000 0.159139 -0.416273 -0.329091 0.847594 0.820292 0.266200 0.506220 -0.485017 0.859903 0.159139 -0.379490 -0.370907 0.847594 0.787874 0.350706 0.506220 -0.572470 0.804334 0.159139 -0.338526 -0.408637 0.847594 0.746779 0.431350 0.506220 -0.653617 0.739905 0.159139 -0.293833 -0.441867 0.847594 0.697457 0.507242 0.506220 -0.726897 0.668054 0.159139 -0.246374 -0.469983 0.847594 0.641031 0.576906 0.506220 -0.792910 0.588190 0.159139 -0.195760 -0.493216 0.847594 0.577036 0.640913 0.506220 -0.850190 0.501848 0.159139 -0.142989 -0.511017 0.847594 0.506686 0.697861 0.506220 -0.897695 0.410876 0.159139 -0.089167 -0.523100 0.847594 0.431502 0.746691 0.506220 -0.935813 0.314529 0.159139 -0.033851 -0.529564 0.847594 0.350867 0.787803 0.506220 -0.963624 0.214716 0.159139 0.021838 -0.530195 0.847594 0.266367 0.820238 0.506220 -0.980821 0.112539 0.159139 0.077286 -0.524987 0.847594 0.178933 0.843637 0.506220 -0.987204 0.010109 0.159139 0.131368 -0.514127 0.847594 0.090386 0.857655 0.506220 -0.982827 -0.093412 0.159139 0.184529 -0.497527 0.847594 0.000000 0.862404 0.506220 -0.967624 -0.195905 0.159139 0.235657 -0.475447 0.847594 -0.090386 0.857655 0.506220 -0.942058 -0.295298 0.159139 0.283741 -0.448414 0.847594 -0.178933 0.843637 0.506220 -0.905921 -0.392406 0.159139 0.329175 -0.416206 0.847594 -0.266367 0.820238 0.506220 -0.859804 -0.485192 0.159139 0.370984 -0.379414 0.847594 -0.350867 0.787803 0.506220 -0.804217 -0.572634 0.159139 0.408706 -0.338443 0.847594 -0.431502 0.746691 0.506220 -0.740425 -0.653028 0.159139 0.441632 -0.294185 0.847594 -0.506686 0.697861 0.506220 -0.667906 -0.727033 0.159139 0.470033 -0.246279 0.847594 -0.577036 0.640913 0.506220 -0.588029 -0.793030 0.159139 0.493256 -0.195659 0.847594 -0.641031 0.576906 0.506220 -0.502525 -0.849790 0.159139 0.510903 -0.143396 0.847594 -0.697457 0.507242 0.506220 -0.410693 -0.897778 0.159139 0.523118 -0.089060 0.847594 -0.746779 0.431350 0.506220 -0.314338 -0.935877 0.159139 0.529571 -0.033743 0.847594 -0.787874 0.350706 0.506220 -0.214520 -0.963668 0.159139 0.530191 0.021946 0.847594 -0.820292 0.266200 0.506220 -0.113320 -0.980731 0.159139 0.525048 0.076867 0.847594 -0.843495 0.179605 0.506220 -0.009908 -0.987207 0.159139 0.514100 0.131473 0.847594 -0.857673 0.090211 0.506220 -0.399047 0.712939 0.576611 0.405516 0.701226 -0.586378 -0.822386 -0.000167 -0.568930 -0.471570 0.667189 0.576611 0.329789 0.739865 -0.586378 -0.817839 -0.086359 -0.568930 -0.538285 0.614630 0.576611 0.251199 0.770104 -0.586378 -0.804455 -0.170794 -0.568930 -0.599738 0.554829 0.576611 0.169104 0.792190 -0.586378 -0.782124 -0.254166 -0.568930 -0.654585 0.488916 0.576611 0.085145 0.805550 -0.586378 -0.751179 -0.334738 -0.568930 -0.701804 0.418320 0.576611 0.001059 0.810037 -0.586378 -0.712370 -0.410912 -0.568930 -0.741781 0.342462 0.576611 -0.083845 0.805687 -0.586378 -0.665380 -0.483310 -0.568930 -0.773589 0.262832 0.576611 -0.167825 0.792462 -0.586378 -0.611061 -0.550385 -0.568930 -0.796875 0.180307 0.576611 -0.249956 0.770508 -0.586378 -0.550011 -0.611397 -0.568930 -0.811287 0.096607 0.576611 -0.328594 0.740396 -0.586378 -0.483569 -0.665192 -0.568930 -0.816944 0.011046 0.576611 -0.404383 0.701880 -0.586378 -0.411189 -0.712210 -0.568930 -0.813603 -0.074636 0.576611 -0.475718 0.655632 -0.586378 -0.334279 -0.751383 -0.568930 -0.801459 -0.158695 0.576611 -0.541211 0.602704 -0.586378 -0.254470 -0.782026 -0.568930 -0.780412 -0.241820 0.576611 -0.601398 0.542662 -0.586378 -0.171107 -0.804389 -0.568930 -0.750770 -0.322281 0.576611 -0.654960 0.476642 -0.586378 -0.085859 -0.817892 -0.568930 -0.713183 -0.398611 0.576611 -0.700978 0.405944 -0.586378 -0.000335 -0.822386 -0.568930 -0.667477 -0.471162 0.576611 -0.739663 0.330241 -0.586378 0.085859 -0.817892 -0.568930 -0.614420 -0.538524 0.576611 -0.770201 0.250900 -0.586378 0.171107 -0.804389 -0.568930 -0.554595 -0.599954 0.576611 -0.792256 0.168795 -0.586378 0.254470 -0.782026 -0.568930 -0.489316 -0.654286 0.576611 -0.805498 0.085637 -0.586378 0.334279 -0.751383 -0.568930 -0.418047 -0.701966 0.576611 -0.810037 0.000744 -0.586378 0.411189 -0.712210 -0.568930 -0.342174 -0.741915 0.576611 -0.805654 -0.084158 -0.586378 0.483569 -0.665192 -0.568930 -0.263305 -0.773428 0.576611 -0.792564 -0.167341 -0.586378 0.550011 -0.611397 -0.568930 -0.180794 -0.796764 0.576611 -0.770661 -0.249485 -0.586378 0.611061 -0.550385 -0.568930 -0.096291 -0.811325 0.576611 -0.740269 -0.328882 -0.586378 0.665380 -0.483310 -0.568930 -0.010729 -0.816949 0.576611 -0.701722 -0.404656 -0.586378 0.712370 -0.410912 -0.568930 0.074139 -0.813648 0.576611 -0.655922 -0.475317 -0.586378 0.751179 -0.334738 -0.568930 0.159007 -0.801397 0.576611 -0.602493 -0.541445 -0.586378 0.782124 -0.254166 -0.568930 0.242123 -0.780318 0.576611 -0.542428 -0.601609 -0.586378 0.804455 -0.170794 -0.568930 0.321822 -0.750967 0.576611 -0.477042 -0.654669 -0.586378 0.817839 -0.086359 -0.568930 0.398756 -0.713101 0.576611 -0.405801 -0.701061 -0.586378 0.822386 -0.000167 -0.568930 0.471298 -0.667382 0.576611 -0.330090 -0.739731 -0.586378 0.817874 0.086025 -0.568930 0.538649 -0.614311 0.576611 -0.250743 -0.770253 -0.586378 0.804354 0.171271 -0.568930 0.599512 -0.555073 0.576611 -0.169426 -0.792121 -0.586378 0.782228 0.253847 -0.568930 0.654386 -0.489183 0.576611 -0.085473 -0.805516 -0.586378 0.751315 0.334433 -0.568930 0.702051 -0.417904 0.576611 -0.000579 -0.810037 -0.586378 0.712126 0.411334 -0.568930 0.741984 -0.342023 0.576611 0.084322 -0.805637 -0.586378 0.665093 0.483704 -0.568930 0.773481 -0.263147 0.576611 0.167502 -0.792530 -0.586378 0.611285 0.550136 -0.568930 0.796801 -0.180632 0.576611 0.249642 -0.770610 -0.586378 0.550260 0.611173 -0.568930 0.811344 -0.096126 0.576611 0.329033 -0.740202 -0.586378 0.483175 0.665478 -0.568930 0.816940 -0.011379 0.576611 0.404097 -0.702044 -0.586378 0.411479 0.712042 -0.568930 0.813633 0.074305 0.576611 0.475451 -0.655826 -0.586378 0.334585 0.751247 -0.568930 0.801364 0.159170 0.576611 0.541568 -0.602383 -0.586378 0.254007 0.782176 -0.568930 0.780269 0.242282 0.576611 0.601719 -0.542305 -0.586378 0.170630 0.804490 -0.568930 0.750901 0.321975 0.576611 0.654766 -0.476909 -0.586378 0.086192 0.817857 -0.568930 0.713020 0.398901 0.576611 0.701144 -0.405658 -0.586378 0.000000 0.822386 -0.568930 0.667286 0.471434 0.576611 0.739798 -0.329939 -0.586378 -0.086192 0.817857 -0.568930 0.614739 0.538159 0.576611 0.770053 -0.251356 -0.586378 -0.170630 0.804490 -0.568930 0.554951 0.599625 0.576611 0.792156 -0.169265 -0.586378 -0.254007 0.782176 -0.568930 0.489049 0.654485 0.576611 0.805533 -0.085309 -0.586378 -0.334585 0.751247 -0.568930 0.417761 0.702136 0.576611 0.810037 -0.000414 -0.586378 -0.411479 0.712042 -0.568930 0.342613 0.741712 0.576611 0.805704 0.083681 -0.586378 -0.483175 0.665478 -0.568930 0.262990 0.773535 0.576611 0.792496 0.167663 -0.586378 -0.550260 0.611173 -0.568930 0.180469 0.796838 0.576611 0.770559 0.249799 -0.586378 -0.611285 0.550136 -0.568930 0.096772 0.811268 0.576611 0.740463 0.328443 -0.586378 -0.665093 0.483704 -0.568930 0.011213 0.816942 0.576611 0.701962 0.404240 -0.586378 -0.712126 0.411334 -0.568930 -0.074470 0.813618 0.576611 0.655729 0.475585 -0.586378 -0.751315 0.334433 -0.568930 -0.159333 0.801332 0.576611 0.602273 0.541690 -0.586378 -0.782228 0.253847 -0.568930 -0.241661 0.780461 0.576611 0.542784 0.601287 -0.586378 -0.804354 0.171271 -0.568930 -0.322128 0.750835 0.576611 0.476776 0.654863 -0.586378 -0.817874 0.086025 -0.568930 -0.130149 0.991405 -0.013301 -0.986252 -0.130826 -0.100951 -0.101823 -0.000021 0.994803 -0.233338 0.972305 -0.013301 -0.967109 -0.233472 -0.100951 -0.101260 -0.010692 0.994803 -0.333015 0.942828 -0.013301 -0.937646 -0.332609 -0.100951 -0.099603 -0.021147 0.994803 -0.429996 0.902733 -0.013301 -0.897622 -0.429049 -0.100951 -0.096838 -0.031469 0.994803 -0.522241 0.852694 -0.013301 -0.847711 -0.520763 -0.100951 -0.093007 -0.041445 0.994803 -0.607939 0.793872 -0.013301 -0.789069 -0.605953 -0.100951 -0.088202 -0.050877 0.994803 -0.687795 0.725783 -0.013301 -0.721215 -0.685316 -0.100951 -0.082384 -0.059841 0.994803 -0.760074 0.649700 -0.013301 -0.645417 -0.757130 -0.100951 -0.075658 -0.068146 0.994803 -0.823981 0.566461 -0.013301 -0.562510 -0.820604 -0.100951 -0.068099 -0.075700 0.994803 -0.878335 0.477861 -0.013301 -0.474282 -0.874566 -0.100951 -0.059873 -0.082360 0.994803 -0.923581 0.383173 -0.013301 -0.380009 -0.919458 -0.100951 -0.050911 -0.088182 0.994803 -0.958654 0.284265 -0.013301 -0.281550 -0.954221 -0.100951 -0.041389 -0.093032 0.994803 -0.982984 0.183209 -0.013301 -0.180969 -0.978294 -0.100951 -0.031507 -0.096826 0.994803 -0.996772 0.079176 -0.013301 -0.077440 -0.991873 -0.100951 -0.021185 -0.099595 0.994803 -0.999580 -0.025729 -0.013301 0.026942 -0.994527 -0.100951 -0.010631 -0.101267 0.994803 -0.991485 -0.129543 -0.013301 0.130224 -0.986332 -0.100951 -0.000041 -0.101823 0.994803 -0.972447 -0.232744 -0.013301 0.232881 -0.967251 -0.100951 0.010631 -0.101267 0.994803 -0.942698 -0.333382 -0.013301 0.332974 -0.937517 -0.100951 0.021185 -0.099595 0.994803 -0.902565 -0.430347 -0.013301 0.429398 -0.897455 -0.100951 0.031507 -0.096826 0.994803 -0.853013 -0.521720 -0.013301 0.520245 -0.848029 -0.100951 0.041389 -0.093032 0.994803 -0.793635 -0.608248 -0.013301 0.606260 -0.788833 -0.100951 0.050911 -0.088182 0.994803 -0.725516 -0.688077 -0.013301 0.685596 -0.720949 -0.100951 0.059873 -0.082360 0.994803 -0.650165 -0.759677 -0.013301 0.756735 -0.645880 -0.100951 0.068099 -0.075700 0.994803 -0.566964 -0.823635 -0.013301 0.820261 -0.563011 -0.100951 0.075658 -0.068146 0.994803 -0.477519 -0.878521 -0.013301 0.874751 -0.473941 -0.100951 0.082384 -0.059841 0.994803 -0.382814 -0.923730 -0.013301 0.919605 -0.379651 -0.100951 0.088202 -0.050877 0.994803 -0.284851 -0.958480 -0.013301 0.954049 -0.282133 -0.100951 0.093007 -0.041445 0.994803 -0.182826 -0.983055 -0.013301 0.978364 -0.180588 -0.100951 0.096838 -0.031469 0.994803 -0.078788 -0.996803 -0.013301 0.991903 -0.077054 -0.100951 0.099603 -0.021147 0.994803 0.025118 -0.999596 -0.013301 0.994543 0.026335 -0.100951 0.101260 -0.010692 0.994803 0.129745 -0.991458 -0.013301 0.986305 0.130425 -0.100951 0.101823 -0.000021 0.994803 0.232942 -0.972400 -0.013301 0.967204 0.233078 -0.100951 0.101265 0.010651 0.994803 0.333574 -0.942630 -0.013301 0.937449 0.333165 -0.100951 0.099591 0.021206 0.994803 0.429628 -0.902908 -0.013301 0.897797 0.428683 -0.100951 0.096851 0.031430 0.994803 0.521893 -0.852907 -0.013301 0.847923 0.520418 -0.100951 0.093024 0.041408 0.994803 0.608410 -0.793512 -0.013301 0.788710 0.606420 -0.100951 0.088171 0.050929 0.994803 0.688225 -0.725376 -0.013301 0.720809 0.685743 -0.100951 0.082348 0.059890 0.994803 0.759809 -0.650010 -0.013301 0.645726 0.756867 -0.100951 0.075686 0.068115 0.994803 0.823750 -0.566797 -0.013301 0.562844 0.820375 -0.100951 0.068130 0.075672 0.994803 0.878618 -0.477340 -0.013301 0.473763 0.874847 -0.100951 0.059824 0.082396 0.994803 0.923425 -0.383549 -0.013301 0.380383 0.919303 -0.100951 0.050947 0.088161 0.994803 0.958538 -0.284655 -0.013301 0.281939 0.954107 -0.100951 0.041426 0.093015 0.994803 0.983092 -0.182626 -0.013301 0.180389 0.978401 -0.100951 0.031450 0.096845 0.994803 0.996819 -0.078585 -0.013301 0.076852 0.991919 -0.100951 0.021126 0.099607 0.994803 0.999591 0.025322 -0.013301 -0.026537 0.994537 -0.100951 0.010672 0.101262 0.994803 0.991432 0.129947 -0.013301 -0.130626 0.986279 -0.100951 0.000000 0.101823 0.994803 0.972352 0.233140 -0.013301 -0.233275 0.967156 -0.100951 -0.010672 0.101262 0.994803 0.942896 0.332823 -0.013301 -0.332418 0.937714 -0.100951 -0.021126 0.099607 0.994803 0.902820 0.429812 -0.013301 -0.428866 0.897710 -0.100951 -0.031450 0.096845 0.994803 0.852801 0.522067 -0.013301 -0.520591 0.847817 -0.100951 -0.041426 0.093015 0.994803 0.793388 0.608571 -0.013301 -0.606581 0.788586 -0.100951 -0.050947 0.088161 0.994803 0.725923 0.687647 -0.013301 -0.685169 0.721355 -0.100951 -0.059824 0.082396 0.994803 0.649855 0.759942 -0.013301 -0.756998 0.645571 -0.100951 -0.068130 0.075672 0.994803 0.566629 0.823866 -0.013301 -0.820490 0.562677 -0.100951 -0.075686 0.068115 0.994803 0.478040 0.878238 -0.013301 -0.874470 0.474460 -0.100951 -0.082348 0.059890 0.994803 0.383361 0.923503 -0.013301 -0.919380 0.380196 -0.100951 -0.088171 0.050929 0.994803 0.284460 0.958596 -0.013301 -0.954164 0.281744 -0.100951 -0.093024 0.041408 0.994803 0.182426 0.983130 -0.013301 -0.978438 0.180189 -0.100951 -0.096851 0.031430 0.994803 0.079379 0.996756 -0.013301 -0.991857 0.077642 -0.100951 -0.099591 0.021206 0.994803 -0.025525 0.999586 -0.013301 -0.994532 -0.026740 -0.100951 -0.101265 0.010651 0.994803 -0.376390 -0.826769 0.418071 -0.553381 0.562541 0.614261 -0.743034 -0.000151 -0.669253 -0.287665 -0.861664 0.418071 -0.609292 0.501445 0.614261 -0.738926 -0.078026 -0.669253 -0.196660 -0.886872 0.418071 -0.658056 0.435483 0.614261 -0.726834 -0.154314 -0.669253 -0.102626 -0.902599 0.418071 -0.700074 0.364116 0.614261 -0.706657 -0.229642 -0.669253 -0.007462 -0.908384 0.418071 -0.734380 0.288738 0.614261 -0.678697 -0.302440 -0.669253 0.086880 -0.904250 0.418071 -0.760387 0.210940 0.614261 -0.643633 -0.371263 -0.669253 0.181173 -0.890164 0.418071 -0.778307 0.130084 0.614261 -0.601178 -0.436675 -0.669253 0.273471 -0.866274 0.418071 -0.787654 0.047796 0.614261 -0.552100 -0.497278 -0.669253 0.362757 -0.832841 0.418071 -0.788326 -0.035020 0.614261 -0.496941 -0.552404 -0.669253 0.447256 -0.790682 0.418071 -0.780431 -0.116669 0.614261 -0.436909 -0.601008 -0.669253 0.527662 -0.739452 0.418071 -0.763905 -0.197821 0.614261 -0.371513 -0.643489 -0.669253 0.602256 -0.680077 0.418071 -0.738965 -0.276794 0.614261 -0.302025 -0.678882 -0.669253 0.669602 -0.613880 0.418071 -0.706237 -0.352012 0.614261 -0.229917 -0.706568 -0.669253 0.730254 -0.540320 0.418071 -0.665454 -0.424092 0.614261 -0.154597 -0.726773 -0.669253 0.782861 -0.460809 0.418071 -0.617341 -0.491501 0.614261 -0.077574 -0.738974 -0.669253 0.826539 -0.376895 0.418071 -0.562879 -0.553038 0.614261 -0.000303 -0.743034 -0.669253 0.861488 -0.288192 0.418071 -0.501817 -0.608986 0.614261 0.077574 -0.738974 -0.669253 0.886948 -0.196315 0.418071 -0.435227 -0.658226 0.614261 0.154597 -0.726773 -0.669253 0.902639 -0.102275 0.418071 -0.363843 -0.700215 0.614261 0.229917 -0.706568 -0.669253 0.908379 -0.008017 0.418071 -0.289186 -0.734204 0.614261 0.302025 -0.678882 -0.669253 0.904216 0.087232 0.418071 -0.210644 -0.760469 0.614261 0.371513 -0.643489 -0.669253 0.890094 0.181520 0.418071 -0.129781 -0.778358 0.614261 0.436909 -0.601008 -0.669253 0.866440 0.272942 0.418071 -0.048277 -0.787625 0.614261 0.496941 -0.552404 -0.669253 0.833062 0.362248 0.418071 0.034538 -0.788347 0.614261 0.552100 -0.497278 -0.669253 0.790508 0.447564 0.418071 0.116972 -0.780385 0.614261 0.601178 -0.436675 -0.669253 0.739247 0.527950 0.418071 0.198118 -0.763828 0.614261 0.643633 -0.371263 -0.669253 0.680445 0.601840 0.418071 0.276342 -0.739134 0.614261 0.678697 -0.302440 -0.669253 0.613620 0.669841 0.418071 0.352287 -0.706100 0.614261 0.706657 -0.229642 -0.669253 0.540036 0.730464 0.418071 0.424351 -0.665289 0.614261 0.726834 -0.154314 -0.669253 0.461287 0.782580 0.418071 0.491124 -0.617642 0.614261 0.738926 -0.078026 -0.669253 0.376727 0.826616 0.418071 0.553152 -0.562767 0.614261 0.743034 -0.000151 -0.669253 0.288016 0.861547 0.418071 0.609088 -0.501693 0.614261 0.738958 0.077725 -0.669253 0.196134 0.886988 0.418071 0.658314 -0.435093 0.614261 0.726742 0.154745 -0.669253 0.102994 0.902557 0.418071 0.699925 -0.364401 0.614261 0.706751 0.229354 -0.669253 0.007832 0.908381 0.418071 0.734262 -0.289037 0.614261 0.678820 0.302163 -0.669253 -0.087416 0.904199 0.418071 0.760512 -0.210489 0.614261 0.643413 0.371644 -0.669253 -0.181701 0.890057 0.418071 0.778384 -0.129623 0.614261 0.600919 0.437032 -0.669253 -0.273118 0.866385 0.418071 0.787635 -0.048116 0.614261 0.552302 0.497053 -0.669253 -0.362418 0.832989 0.418071 0.788340 0.034698 0.614261 0.497166 0.552201 -0.669253 -0.447725 0.790417 0.418071 0.780361 0.117131 0.614261 0.436553 0.601266 -0.669253 -0.527361 0.739667 0.418071 0.763985 0.197510 0.614261 0.371775 0.643337 -0.669253 -0.601979 0.680322 0.418071 0.739077 0.276493 0.614261 0.302301 0.678759 -0.669253 -0.669966 0.613483 0.418071 0.706029 0.352431 0.614261 0.229498 0.706704 -0.669253 -0.730574 0.539887 0.418071 0.665203 0.424487 0.614261 0.154166 0.726865 -0.669253 -0.782674 0.461128 0.418071 0.617542 0.491250 0.614261 0.077875 0.738942 -0.669253 -0.826692 0.376558 0.418071 0.562654 0.553267 0.614261 0.000000 0.743034 -0.669253 -0.861606 0.287841 0.418071 0.501569 0.609190 0.614261 -0.077875 0.738942 -0.669253 -0.886832 0.196840 0.418071 0.435617 0.657968 0.614261 -0.154166 0.726865 -0.669253 -0.902578 0.102810 0.418071 0.364258 0.700000 0.614261 -0.229498 0.706704 -0.669253 -0.908382 0.007647 0.418071 0.288887 0.734321 0.614261 -0.302301 0.678759 -0.669253 -0.904181 -0.087600 0.418071 0.210334 0.760555 0.614261 -0.371775 0.643337 -0.669253 -0.890201 -0.180992 0.418071 0.130243 0.778280 0.614261 -0.436553 0.601266 -0.669253 -0.866329 -0.273295 0.418071 0.047956 0.787645 0.614261 -0.497166 0.552201 -0.669253 -0.832915 -0.362587 0.418071 -0.034859 0.788333 0.614261 -0.552302 0.497053 -0.669253 -0.790773 -0.447095 0.418071 -0.116510 0.780455 0.614261 -0.600919 0.437032 -0.669253 -0.739559 -0.527512 0.418071 -0.197665 0.763945 0.614261 -0.643413 0.371644 -0.669253 -0.680199 -0.602117 0.418071 -0.276643 0.739021 0.614261 -0.678820 0.302163 -0.669253 -0.613347 -0.670091 0.418071 -0.352575 0.705957 0.614261 -0.706751 0.229354 -0.669253 -0.540469 -0.730144 0.418071 -0.423957 0.665541 0.614261 -0.726742 0.154745 -0.669253 -0.460968 -0.782767 0.418071 -0.491375 0.617442 0.614261 -0.738958 0.077725 -0.669253 0.303427 -0.057111 0.951142 0.017172 0.998368 0.054468 -0.952700 -0.000194 0.303912 0.307741 -0.024995 0.951142 -0.087559 0.994669 0.054468 -0.947433 -0.100043 0.303912 0.308673 0.007088 0.951142 -0.190345 0.980205 0.054468 -0.931928 -0.197858 0.303912 0.306230 0.039400 0.951142 -0.292029 0.954857 0.054468 -0.906059 -0.294441 0.303912 0.300414 0.071278 0.951142 -0.390496 0.918992 0.054468 -0.870209 -0.387781 0.303912 0.291392 0.102080 0.951142 -0.483790 0.873488 0.054468 -0.825251 -0.476024 0.303912 0.279088 0.132057 0.951142 -0.572673 0.817973 0.054468 -0.770815 -0.559894 0.303912 0.263711 0.160580 0.951142 -0.655248 0.753447 0.054468 -0.707889 -0.637598 0.303912 0.245428 0.187335 0.951142 -0.730606 0.680623 0.054468 -0.637165 -0.708278 0.303912 0.224654 0.211801 0.951142 -0.797316 0.601099 0.054468 -0.560194 -0.770597 0.303912 0.201219 0.234180 0.951142 -0.855924 0.514224 0.054468 -0.476345 -0.825065 0.303912 0.175567 0.253980 0.951142 -0.905105 0.421685 0.054468 -0.387249 -0.870446 0.303912 0.148252 0.270833 0.951142 -0.943991 0.325446 0.054468 -0.294793 -0.905944 0.303912 0.119050 0.284880 0.951142 -0.972901 0.224716 0.054468 -0.198220 -0.931851 0.303912 0.088537 0.295788 0.951142 -0.991094 0.121512 0.054468 -0.099464 -0.947494 0.303912 0.057296 0.303392 0.951142 -0.998357 0.017782 0.054468 -0.000388 -0.952700 0.303912 0.025183 0.307726 0.951142 -0.994722 -0.086951 0.054468 0.099464 -0.947494 0.303912 -0.007208 0.308670 0.951142 -0.980131 -0.190726 0.054468 0.198220 -0.931851 0.303912 -0.039519 0.306215 0.951142 -0.954744 -0.292400 0.054468 0.294793 -0.905944 0.303912 -0.071094 0.300458 0.951142 -0.919230 -0.389935 0.054468 0.387249 -0.870446 0.303912 -0.102193 0.291352 0.951142 -0.873300 -0.484129 0.054468 0.476345 -0.825065 0.303912 -0.132166 0.279037 0.951142 -0.817750 -0.572991 0.054468 0.560194 -0.770597 0.303912 -0.160419 0.263809 0.951142 -0.753848 -0.654788 0.054468 0.637165 -0.708278 0.303912 -0.187185 0.245543 0.951142 -0.681069 -0.730190 0.054468 0.707889 -0.637598 0.303912 -0.211889 0.224572 0.951142 -0.600789 -0.797550 0.054468 0.770815 -0.559894 0.303912 -0.234258 0.201128 0.951142 -0.513892 -0.856124 0.054468 0.825251 -0.476024 0.303912 -0.253872 0.175722 0.951142 -0.422238 -0.904847 0.054468 0.870209 -0.387781 0.303912 -0.270891 0.148147 0.951142 -0.325078 -0.944117 0.054468 0.906059 -0.294441 0.303912 -0.284926 0.118939 0.951142 -0.224338 -0.972988 0.054468 0.931928 -0.197858 0.303912 -0.295734 0.088718 0.951142 -0.122117 -0.991020 0.054468 0.947433 -0.100043 0.303912 -0.303403 0.057234 0.951142 -0.017579 -0.998361 0.054468 0.952700 -0.000194 0.303912 -0.307731 0.025120 0.951142 0.087153 -0.994705 0.054468 0.947473 0.099657 0.303912 -0.308669 -0.007271 0.951142 0.190926 -0.980092 0.054468 0.931811 0.198410 0.303912 -0.306246 -0.039275 0.951142 0.291640 -0.954976 0.054468 0.906178 0.294072 0.303912 -0.300443 -0.071156 0.951142 0.390122 -0.919151 0.054468 0.870367 0.387426 0.303912 -0.291331 -0.102252 0.951142 0.484307 -0.873201 0.054468 0.824968 0.476513 0.303912 -0.279010 -0.132223 0.951142 0.573158 -0.817633 0.054468 0.770483 0.560351 0.303912 -0.263776 -0.160473 0.951142 0.654941 -0.753714 0.054468 0.708148 0.637309 0.303912 -0.245505 -0.187235 0.951142 0.730329 -0.680921 0.054468 0.637454 0.708019 0.303912 -0.224529 -0.211934 0.951142 0.797672 -0.600627 0.054468 0.559738 0.770929 0.303912 -0.201314 -0.234098 0.951142 0.855715 -0.514573 0.054468 0.476681 0.824871 0.303912 -0.175670 -0.253908 0.951142 0.904933 -0.422054 0.054468 0.387603 0.870288 0.303912 -0.148092 -0.270921 0.951142 0.944183 -0.324886 0.054468 0.294256 0.906118 0.303912 -0.118881 -0.284950 0.951142 0.973034 -0.224140 0.054468 0.197668 0.931968 0.303912 -0.088658 -0.295752 0.951142 0.991045 -0.121915 0.054468 0.099850 0.947453 0.303912 -0.057173 -0.303415 0.951142 0.998364 -0.017375 0.054468 0.000000 0.952700 0.303912 -0.025058 -0.307736 0.951142 0.994687 0.087356 0.054468 -0.099850 0.947453 0.303912 0.007025 -0.308675 0.951142 0.980244 0.190145 0.054468 -0.197668 0.931968 0.303912 0.039337 -0.306238 0.951142 0.954917 0.291834 0.054468 -0.294256 0.906118 0.303912 0.071217 -0.300429 0.951142 0.919071 0.390309 0.054468 -0.387603 0.870288 0.303912 0.102312 -0.291310 0.951142 0.873102 0.484485 0.054468 -0.476681 0.824871 0.303912 0.132000 -0.279115 0.951142 0.818089 0.572506 0.054468 -0.559738 0.770929 0.303912 0.160527 -0.263743 0.951142 0.753581 0.655095 0.054468 -0.637454 0.708019 0.303912 0.187285 -0.245466 0.951142 0.680772 0.730468 0.054468 -0.708148 0.637309 0.303912 0.211755 -0.224698 0.951142 0.601262 0.797193 0.054468 -0.770483 0.560351 0.303912 0.234139 -0.201267 0.951142 0.514399 0.855820 0.054468 -0.824968 0.476513 0.303912 0.253944 -0.175619 0.951142 0.421870 0.905019 0.054468 -0.870367 0.387426 0.303912 0.270951 -0.148036 0.951142 0.324694 0.944250 0.054468 -0.906178 0.294072 0.303912 0.284855 -0.119108 0.951142 0.224915 0.972855 0.054468 -0.931811 0.198410 0.303912 0.295770 -0.088597 0.951142 0.121714 0.991070 0.054468 -0.947473 0.099657 0.303912 -0.696194 0.686454 -0.209988 -0.657186 -0.727173 -0.198306 -0.288826 -0.000059 0.957382 -0.764305 0.609707 -0.209988 -0.577354 -0.792046 -0.198306 -0.287229 -0.030330 0.957382 -0.823471 0.527068 -0.209988 -0.492010 -0.847703 -0.198306 -0.282528 -0.059984 0.957382 -0.874176 0.437860 -0.209988 -0.400455 -0.894601 -0.198306 -0.274686 -0.089264 0.957382 -0.915253 0.343829 -0.209988 -0.304489 -0.931644 -0.198306 -0.263817 -0.117562 0.957382 -0.946001 0.246956 -0.209988 -0.206127 -0.958220 -0.198306 -0.250187 -0.144314 0.957382 -0.966674 0.146448 -0.209988 -0.104564 -0.974547 -0.198306 -0.233684 -0.169741 0.957382 -0.976699 0.044327 -0.209988 -0.001848 -0.980138 -0.198306 -0.214607 -0.193298 0.957382 -0.975965 -0.058282 -0.209988 0.100887 -0.974934 -0.198306 -0.193166 -0.214725 0.957382 -0.964642 -0.159284 -0.209988 0.201553 -0.959193 -0.198306 -0.169832 -0.233618 0.957382 -0.942635 -0.259509 -0.209988 0.300973 -0.932786 -0.198306 -0.144411 -0.250131 0.957382 -0.910245 -0.356874 -0.209988 0.397078 -0.896105 -0.198306 -0.117400 -0.263889 0.957382 -0.868279 -0.449441 -0.209988 0.487960 -0.850041 -0.198306 -0.089371 -0.274651 0.957382 -0.816392 -0.537967 -0.209988 0.574363 -0.794218 -0.198306 -0.060094 -0.282505 0.957382 -0.755513 -0.620568 -0.209988 0.654439 -0.729646 -0.198306 -0.030154 -0.287247 0.957382 -0.686879 -0.695774 -0.209988 0.726772 -0.657630 -0.198306 -0.000118 -0.288826 0.957382 -0.610174 -0.763932 -0.209988 0.791693 -0.577838 -0.198306 0.030154 -0.287247 0.957382 -0.526748 -0.823676 -0.209988 0.847895 -0.491680 -0.198306 0.060094 -0.282505 0.957382 -0.437520 -0.874346 -0.209988 0.894756 -0.400107 -0.198306 0.089371 -0.274651 0.957382 -0.344388 -0.915042 -0.209988 0.931458 -0.305058 -0.198306 0.117400 -0.263889 0.957382 -0.246588 -0.946097 -0.209988 0.958300 -0.205754 -0.198306 0.144411 -0.250131 0.957382 -0.146072 -0.966731 -0.209988 0.974587 -0.104184 -0.198306 0.169832 -0.233618 0.957382 -0.044924 -0.976671 -0.209988 0.980137 -0.002447 -0.198306 0.193166 -0.214725 0.957382 0.057686 -0.976001 -0.209988 0.974995 0.100292 -0.198306 0.214607 -0.193298 0.957382 0.159660 -0.964580 -0.209988 0.959114 0.201926 -0.198306 0.233684 -0.169741 0.957382 0.259875 -0.942534 -0.209988 0.932669 0.301336 -0.198306 0.250187 -0.144314 0.957382 0.356318 -0.910463 -0.209988 0.896347 0.396531 -0.198306 0.263817 -0.117562 0.957382 0.449779 -0.868104 -0.209988 0.849851 0.488290 -0.198306 0.274686 -0.089264 0.957382 0.538285 -0.816183 -0.209988 0.793994 0.574672 -0.198306 0.282528 -0.059984 0.957382 0.620107 -0.755892 -0.209988 0.730046 0.653993 -0.198306 0.287229 -0.030330 0.957382 0.695914 -0.686738 -0.209988 0.657482 0.726905 -0.198306 0.288826 -0.000059 0.957382 0.764057 -0.610018 -0.209988 0.577676 0.791811 -0.198306 0.287241 0.030213 0.957382 0.823783 -0.526580 -0.209988 0.491507 0.847995 -0.198306 0.282493 0.060151 0.957382 0.873998 -0.438216 -0.209988 0.400819 0.894438 -0.198306 0.274722 0.089152 0.957382 0.915112 -0.344201 -0.209988 0.304868 0.931520 -0.198306 0.263865 0.117454 0.957382 0.946147 -0.246395 -0.209988 0.205559 0.958342 -0.198306 0.250102 0.144462 0.957382 0.966760 -0.145875 -0.209988 0.103986 0.974608 -0.198306 0.233584 0.169879 0.957382 0.976681 -0.044725 -0.209988 0.002247 0.980137 -0.198306 0.214686 0.193210 0.957382 0.975989 0.057884 -0.209988 -0.100490 0.974975 -0.198306 0.193254 0.214647 0.957382 0.964547 0.159856 -0.209988 -0.202121 0.959073 -0.198306 0.169693 0.233719 0.957382 0.942740 0.259125 -0.209988 -0.300593 0.932908 -0.198306 0.144513 0.250072 0.957382 0.910390 0.356503 -0.209988 -0.396713 0.896266 -0.198306 0.117508 0.263841 0.957382 0.868012 0.449955 -0.209988 -0.488463 0.849752 -0.198306 0.089208 0.274704 0.957382 0.816073 0.538451 -0.209988 -0.574833 0.793877 -0.198306 0.059926 0.282541 0.957382 0.755766 0.620261 -0.209988 -0.654142 0.729913 -0.198306 0.030271 0.287235 0.957382 0.686596 0.696054 -0.209988 -0.727039 0.657334 -0.198306 0.000000 0.288826 0.957382 0.609863 0.764181 -0.209988 -0.791929 0.577515 -0.198306 -0.030271 0.287235 0.957382 0.527236 0.823363 -0.209988 -0.847603 0.492182 -0.198306 -0.059926 0.282541 0.957382 0.438038 0.874087 -0.209988 -0.894519 0.400637 -0.198306 -0.089208 0.274704 0.957382 0.344015 0.915182 -0.209988 -0.931582 0.304678 -0.198306 -0.117508 0.263841 0.957382 0.246203 0.946197 -0.209988 -0.958384 0.205364 -0.198306 -0.144513 0.250072 0.957382 0.146645 0.966644 -0.209988 -0.974525 0.104762 -0.198306 -0.169693 0.233719 0.957382 0.044526 0.976690 -0.209988 -0.980138 0.002048 -0.198306 -0.193254 0.214647 0.957382 -0.058083 0.975977 -0.209988 -0.974954 -0.100689 -0.198306 -0.214686 0.193210 0.957382 -0.159088 0.964674 -0.209988 -0.959234 -0.201358 -0.198306 -0.233584 0.169879 0.957382 -0.259317 0.942688 -0.209988 -0.932847 -0.300783 -0.198306 -0.250102 0.144462 0.957382 -0.356689 0.910318 -0.209988 -0.896185 -0.396896 -0.198306 -0.263865 0.117454 0.957382 -0.450132 0.867921 -0.209988 -0.849652 -0.488636 -0.198306 -0.274722 0.089152 0.957382 -0.537801 0.816502 -0.209988 -0.794335 -0.574201 -0.198306 -0.282493 0.060151 0.957382 -0.620414 0.755640 -0.209988 -0.729780 -0.654291 -0.198306 -0.287241 0.030213 0.957382 -0.790671 0.350050 -0.502299 -0.295406 -0.936731 -0.187804 -0.536260 -0.000109 0.844053 -0.823004 0.265254 -0.502299 -0.195603 -0.962533 -0.187804 -0.533295 -0.056313 0.844053 -0.846094 0.178383 -0.502299 -0.094623 -0.977638 -0.187804 -0.524568 -0.111371 0.844053 -0.860130 0.088723 -0.502299 0.008362 -0.982171 -0.187804 -0.510006 -0.165736 0.844053 -0.864692 -0.001913 -0.502299 0.111254 -0.975885 -0.187804 -0.489827 -0.218276 0.844053 -0.859821 -0.091669 -0.502299 0.211963 -0.959063 -0.187804 -0.464521 -0.267947 0.844053 -0.845478 -0.181279 -0.502299 0.311312 -0.931566 -0.187804 -0.433880 -0.315156 0.844053 -0.821822 -0.268893 -0.502299 0.407232 -0.893807 -0.187804 -0.398460 -0.358894 0.844053 -0.789114 -0.353545 -0.502299 0.498667 -0.846204 -0.187804 -0.358650 -0.398679 0.844053 -0.748148 -0.433555 -0.502299 0.583819 -0.789864 -0.187804 -0.315325 -0.433757 0.844053 -0.698588 -0.509578 -0.502299 0.663387 -0.724325 -0.187804 -0.268127 -0.464417 0.844053 -0.641333 -0.579989 -0.502299 0.735648 -0.650809 -0.187804 -0.217976 -0.489960 0.844053 -0.577658 -0.643433 -0.502299 0.799235 -0.570923 -0.187804 -0.165935 -0.509942 0.844053 -0.507040 -0.700433 -0.502299 0.854670 -0.484013 -0.187804 -0.111575 -0.524524 0.844053 -0.430837 -0.749716 -0.502299 0.900691 -0.391772 -0.187804 -0.055987 -0.533330 0.844053 -0.350533 -0.790457 -0.502299 0.936550 -0.295978 -0.187804 -0.000218 -0.536260 0.844053 -0.265757 -0.822842 -0.502299 0.962413 -0.196191 -0.187804 0.055987 -0.533330 0.844053 -0.178053 -0.846163 -0.502299 0.977675 -0.094242 -0.187804 0.111575 -0.524524 0.844053 -0.088389 -0.860164 -0.502299 0.982168 0.008744 -0.187804 0.165935 -0.509942 0.844053 0.001385 -0.864693 -0.502299 0.975953 0.110658 -0.187804 0.217976 -0.489960 0.844053 0.092003 -0.859785 -0.502299 0.958980 0.212335 -0.187804 0.268127 -0.464417 0.844053 0.181608 -0.845408 -0.502299 0.931445 0.311674 -0.187804 0.315325 -0.433757 0.844053 0.268391 -0.821987 -0.502299 0.894056 0.406686 -0.187804 0.358650 -0.398679 0.844053 0.353063 -0.789330 -0.502299 0.846509 0.498150 -0.187804 0.398460 -0.358894 0.844053 0.433846 -0.747980 -0.502299 0.789637 0.584126 -0.187804 0.433880 -0.315156 0.844053 0.509850 -0.698390 -0.502299 0.724067 0.663669 -0.187804 0.464521 -0.267947 0.844053 0.579597 -0.641688 -0.502299 0.651258 0.735250 -0.187804 0.489827 -0.218276 0.844053 0.643658 -0.577408 -0.502299 0.570612 0.799457 -0.187804 0.510006 -0.165736 0.844053 0.700630 -0.506768 -0.502299 0.483680 0.854859 -0.187804 0.524568 -0.111371 0.844053 0.749453 -0.431295 -0.502299 0.392322 0.900452 -0.187804 0.533295 -0.056313 0.844053 0.790528 -0.350372 -0.502299 0.295787 0.936611 -0.187804 0.536260 -0.000109 0.844053 0.822896 -0.265589 -0.502299 0.195995 0.962453 -0.187804 0.533318 0.056095 0.844053 0.846200 -0.177881 -0.502299 0.094043 0.977694 -0.187804 0.524502 0.111682 0.844053 0.860094 -0.089074 -0.502299 -0.007962 0.982174 -0.187804 0.510074 0.165528 0.844053 0.864692 0.001561 -0.502299 -0.110857 0.975931 -0.187804 0.489916 0.218076 0.844053 0.859767 0.092178 -0.502299 -0.212531 0.958937 -0.187804 0.464362 0.268222 0.844053 0.845371 0.181780 -0.502299 -0.311864 0.931381 -0.187804 0.433693 0.315413 0.844053 0.821932 0.268558 -0.502299 -0.406868 0.893973 -0.187804 0.398606 0.358732 0.844053 0.789258 0.353223 -0.502299 -0.498322 0.846407 -0.187804 0.358813 0.398533 0.844053 0.747891 0.433998 -0.502299 -0.584287 0.789518 -0.187804 0.315068 0.433944 0.844053 0.698796 0.509294 -0.502299 -0.663092 0.724596 -0.187804 0.268316 0.464307 0.844053 0.641570 0.579727 -0.502299 -0.735383 0.651108 -0.187804 0.218176 0.489872 0.844053 0.577277 0.643776 -0.502299 -0.799573 0.570449 -0.187804 0.165632 0.510040 0.844053 0.506625 0.700733 -0.502299 -0.854957 0.483506 -0.187804 0.111264 0.524590 0.844053 0.431143 0.749541 -0.502299 -0.900532 0.392138 -0.187804 0.056204 0.533307 0.844053 0.350211 0.790600 -0.502299 -0.936671 0.295596 -0.187804 0.000000 0.536260 0.844053 0.265422 0.822950 -0.502299 -0.962493 0.195799 -0.187804 -0.056204 0.533307 0.844053 0.178555 0.846058 -0.502299 -0.977619 0.094822 -0.187804 -0.111264 0.524590 0.844053 0.088899 0.860112 -0.502299 -0.982173 -0.008162 -0.187804 -0.165632 0.510040 0.844053 -0.001737 0.864692 -0.502299 -0.975908 -0.111056 -0.187804 -0.218176 0.489872 0.844053 -0.092353 0.859748 -0.502299 -0.958894 -0.212726 -0.187804 -0.268316 0.464307 0.844053 -0.181107 0.845515 -0.502299 -0.931629 -0.311122 -0.187804 -0.315068 0.433944 0.844053 -0.268726 0.821877 -0.502299 -0.893890 -0.407050 -0.187804 -0.358813 0.398533 0.844053 -0.353384 0.789186 -0.502299 -0.846306 -0.498494 -0.187804 -0.398606 0.358732 0.844053 -0.433402 0.748237 -0.502299 -0.789983 -0.583658 -0.187804 -0.433693 0.315413 0.844053 -0.509436 0.698692 -0.502299 -0.724460 -0.663239 -0.187804 -0.464362 0.268222 0.844053 -0.579858 0.641452 -0.502299 -0.650958 -0.735515 -0.187804 -0.489916 0.218076 0.844053 -0.643893 0.577145 -0.502299 -0.570286 -0.799690 -0.187804 -0.510074 0.165528 0.844053 -0.700329 0.507183 -0.502299 -0.484187 -0.854572 -0.187804 -0.524502 0.111682 0.844053 -0.749629 0.430990 -0.502299 -0.391955 -0.900611 -0.187804 -0.533318 0.056095 0.844053 -0.120838 -0.974237 0.190421 -0.522645 0.225526 0.822180 -0.843943 -0.000172 -0.536432 -0.018066 -0.981536 0.190421 -0.543403 0.169507 0.822180 -0.839278 -0.088622 -0.536432 0.083928 -0.978108 0.190421 -0.558064 0.112179 0.822180 -0.825543 -0.175271 -0.536432 0.185978 -0.963925 0.190421 -0.566748 0.053073 0.822180 -0.802626 -0.260829 -0.536432 0.285980 -0.939125 0.190421 -0.569189 -0.006619 0.822180 -0.770869 -0.343513 -0.536432 0.381928 -0.904362 0.190421 -0.565426 -0.065672 0.822180 -0.731043 -0.421683 -0.536432 0.474608 -0.859353 0.190421 -0.555429 -0.124571 0.822180 -0.682822 -0.495979 -0.536432 0.562061 -0.804877 0.190421 -0.539314 -0.182098 0.822180 -0.627079 -0.564812 -0.536432 0.643322 -0.741537 0.190421 -0.517259 -0.237619 0.822180 -0.564429 -0.627424 -0.536432 0.716827 -0.670745 0.190421 -0.489796 -0.290033 0.822180 -0.496245 -0.682629 -0.536432 0.783178 -0.591922 0.190421 -0.456701 -0.339770 0.822180 -0.421967 -0.730879 -0.536432 0.840902 -0.506580 0.190421 -0.418575 -0.385765 0.822180 -0.343042 -0.771079 -0.536432 0.888948 -0.416546 0.190421 -0.376267 -0.427134 0.822180 -0.261141 -0.802525 -0.536432 0.927709 -0.321084 0.190421 -0.329428 -0.464217 0.822180 -0.175592 -0.825474 -0.536432 0.956252 -0.222085 0.190421 -0.278960 -0.496186 0.822180 -0.088109 -0.839331 -0.536432 0.974163 -0.121434 0.190421 -0.225846 -0.522507 0.822180 -0.000344 -0.843943 -0.536432 0.981525 -0.018665 0.190421 -0.169839 -0.543299 0.822180 0.088109 -0.839331 -0.536432 0.978076 0.084308 0.190421 -0.111962 -0.558108 0.822180 0.175592 -0.825474 -0.536432 0.963853 0.186353 0.190421 -0.052852 -0.566768 0.822180 0.261141 -0.802525 -0.536432 0.939299 0.285406 0.190421 0.006271 -0.569193 0.822180 0.343042 -0.771079 -0.536432 0.904213 0.382280 0.190421 0.065892 -0.565401 0.822180 0.421967 -0.730879 -0.536432 0.859168 0.474942 0.190421 0.124787 -0.555381 0.822180 0.496245 -0.682629 -0.536432 0.805221 0.561569 0.190421 0.181769 -0.539425 0.822180 0.564429 -0.627424 -0.536432 0.741929 0.642869 0.190421 0.237303 -0.517404 0.822180 0.627079 -0.564812 -0.536432 0.670466 0.717088 0.190421 0.290224 -0.489683 0.822180 0.682822 -0.495979 -0.536432 0.591618 0.783408 0.190421 0.339948 -0.456569 0.822180 0.731043 -0.421683 -0.536432 0.507093 0.840593 0.190421 0.385509 -0.418811 0.822180 0.770869 -0.343513 -0.536432 0.416200 0.889110 0.190421 0.427280 -0.376101 0.822180 0.802626 -0.260829 -0.536432 0.320723 0.927834 0.190421 0.464345 -0.329247 0.822180 0.825543 -0.175271 -0.536432 0.222669 0.956116 0.190421 0.496016 -0.279263 0.822180 0.839278 -0.088622 -0.536432 0.121235 0.974188 0.190421 0.522553 -0.225739 0.822180 0.843943 -0.000172 -0.536432 0.018466 0.981529 0.190421 0.543334 -0.169729 0.822180 0.839314 0.088280 -0.536432 -0.084507 0.978058 0.190421 0.558130 -0.111849 0.822180 0.825439 0.175760 -0.536432 -0.185586 0.964001 0.190421 0.566726 -0.053303 0.822180 0.802733 0.260502 -0.536432 -0.285598 0.939241 0.190421 0.569191 0.006387 0.822180 0.771009 0.343199 -0.536432 -0.382464 0.904136 0.190421 0.565387 0.066007 0.822180 0.730793 0.422116 -0.536432 -0.475117 0.859071 0.190421 0.555355 0.124900 0.822180 0.682527 0.496384 -0.536432 -0.561733 0.805106 0.190421 0.539388 0.181878 0.822180 0.627309 0.564557 -0.536432 -0.643020 0.741799 0.190421 0.517356 0.237409 0.822180 0.564684 0.627194 -0.536432 -0.717224 0.670320 0.190421 0.489624 0.290324 0.822180 0.495840 0.682923 -0.536432 -0.782937 0.592241 0.190421 0.456840 0.339584 0.822180 0.422265 0.730707 -0.536432 -0.840696 0.506922 0.190421 0.418733 0.385594 0.822180 0.343356 0.770939 -0.536432 -0.889195 0.416019 0.190421 0.376013 0.427357 0.822180 0.260665 0.802679 -0.536432 -0.927900 0.320534 0.190421 0.329153 0.464412 0.822180 0.175103 0.825578 -0.536432 -0.956161 0.222475 0.190421 0.279162 0.496073 0.822180 0.088451 0.839296 -0.536432 -0.974212 0.121037 0.190421 0.225633 0.522599 0.822180 0.000000 0.843943 -0.536432 -0.981533 0.018266 0.190421 0.169618 0.543369 0.822180 -0.088451 0.839296 -0.536432 -0.978125 -0.083728 0.190421 0.112293 0.558041 0.822180 -0.175103 0.825578 -0.536432 -0.963963 -0.185782 0.190421 0.053188 0.566737 0.822180 -0.260665 0.802679 -0.536432 -0.939183 -0.285789 0.190421 -0.006503 0.569190 0.822180 -0.343356 0.770939 -0.536432 -0.904058 -0.382648 0.190421 -0.066122 0.565374 0.822180 -0.422265 0.730707 -0.536432 -0.859449 -0.474433 0.190421 -0.124458 0.555455 0.822180 -0.495840 0.682923 -0.536432 -0.804992 -0.561897 0.190421 -0.181988 0.539351 0.822180 -0.564684 0.627194 -0.536432 -0.741668 -0.643171 0.190421 -0.237514 0.517307 0.822180 -0.627309 0.564557 -0.536432 -0.670891 -0.716690 0.190421 -0.289934 0.489855 0.822180 -0.682527 0.496384 -0.536432 -0.592082 -0.783057 0.190421 -0.339677 0.456770 0.822180 -0.730793 0.422116 -0.536432 -0.506751 -0.840799 0.190421 -0.385679 0.418654 0.822180 -0.771009 0.343199 -0.536432 -0.415838 -0.889280 0.190421 -0.427433 0.375926 0.822180 -0.802733 0.260502 -0.536432 -0.321273 -0.927644 0.190421 -0.464150 0.329522 0.822180 -0.825439 0.175760 -0.536432 -0.222280 -0.956207 0.190421 -0.496130 0.279061 0.822180 -0.839314 0.088280 -0.536432 -0.029195 -0.815860 -0.577513 0.041542 -0.578250 0.814801 -0.998710 -0.000203 0.050775 0.056474 -0.814426 -0.577513 0.101918 -0.570711 0.814801 -0.993188 -0.104874 0.050775 0.140717 -0.804163 -0.577513 0.160615 -0.557047 0.814801 -0.976935 -0.207413 0.050775 0.224224 -0.784986 -0.577513 0.218113 -0.537146 0.814801 -0.949816 -0.308661 0.050775 0.305261 -0.757162 -0.577513 0.273208 -0.511328 0.814801 -0.912235 -0.406508 0.050775 0.382215 -0.721381 -0.577513 0.324814 -0.480203 0.814801 -0.865106 -0.499013 0.050775 0.455715 -0.677350 -0.577513 0.373354 -0.443515 0.814801 -0.808041 -0.586934 0.050775 0.524197 -0.625857 -0.577513 0.417781 -0.401942 0.814801 -0.742076 -0.668390 0.050775 0.586904 -0.567470 -0.577513 0.457607 -0.355942 0.814801 -0.667937 -0.742484 0.050775 0.642644 -0.503476 -0.577513 0.492086 -0.306514 0.814801 -0.587249 -0.807813 0.050775 0.691872 -0.433350 -0.577513 0.521500 -0.253251 0.814801 -0.499350 -0.864911 0.050775 0.733480 -0.358450 -0.577513 0.545171 -0.197200 0.814801 -0.405951 -0.912483 0.050775 0.766728 -0.280369 -0.577513 0.562697 -0.139539 0.814801 -0.309030 -0.949696 0.050775 0.791890 -0.198466 -0.577513 0.574223 -0.079795 0.814801 -0.207793 -0.976854 0.050775 0.808330 -0.114377 -0.577513 0.579423 -0.019173 0.814801 -0.104267 -0.993252 0.050775 0.815842 -0.029693 -0.577513 0.578275 0.041189 0.814801 -0.000407 -0.998710 0.050775 0.814460 0.055976 -0.577513 0.570774 0.101570 0.814801 0.104267 -0.993252 0.050775 0.804108 0.141030 -0.577513 0.556985 0.160831 0.814801 0.207793 -0.976854 0.050775 0.784899 0.224529 -0.577513 0.537061 0.218322 0.814801 0.309030 -0.949696 0.050775 0.757349 0.304798 -0.577513 0.511495 0.272896 0.814801 0.405951 -0.912483 0.050775 0.721233 0.382495 -0.577513 0.480076 0.325001 0.814801 0.499350 -0.864911 0.050775 0.677172 0.455979 -0.577513 0.443370 0.373527 0.814801 0.587249 -0.807813 0.050775 0.626177 0.523814 -0.577513 0.402197 0.417536 0.814801 0.667937 -0.742484 0.050775 0.567829 0.586557 -0.577513 0.356222 0.457389 0.814801 0.742076 -0.668390 0.050775 0.503226 0.642839 -0.577513 0.306322 0.492205 0.814801 0.808041 -0.586934 0.050775 0.433081 0.692041 -0.577513 0.253049 0.521599 0.814801 0.865106 -0.499013 0.050775 0.358898 0.733261 -0.577513 0.197533 0.545050 0.814801 0.912235 -0.406508 0.050775 0.280070 0.766837 -0.577513 0.139320 0.562751 0.814801 0.949816 -0.308661 0.050775 0.198158 0.791968 -0.577513 0.079572 0.574254 0.814801 0.976935 -0.207413 0.050775 0.114871 0.808260 -0.577513 0.019527 0.579411 0.814801 0.993188 -0.104874 0.050775 0.029527 0.815848 -0.577513 -0.041307 0.578267 0.814801 0.998710 -0.000203 0.050775 -0.056142 0.814449 -0.577513 -0.101686 0.570753 0.814801 0.993231 0.104470 0.050775 -0.141193 0.804079 -0.577513 -0.160945 0.556952 0.814801 0.976812 0.207992 0.050775 -0.223904 0.785077 -0.577513 -0.217894 0.537235 0.814801 0.949942 0.308274 0.050775 -0.304953 0.757287 -0.577513 -0.273000 0.511439 0.814801 0.912401 0.406137 0.050775 -0.382642 0.721155 -0.577513 -0.325099 0.480010 0.814801 0.864810 0.499526 0.050775 -0.456117 0.677079 -0.577513 -0.373617 0.443294 0.814801 0.807693 0.587413 0.050775 -0.523942 0.626070 -0.577513 -0.417618 0.402112 0.814801 0.742348 0.668088 0.050775 -0.586673 0.567709 -0.577513 -0.457462 0.356129 0.814801 0.668239 0.742212 0.050775 -0.642942 0.503095 -0.577513 -0.492267 0.306222 0.814801 0.586770 0.808160 0.050775 -0.691696 0.433632 -0.577513 -0.521397 0.253464 0.814801 0.499702 0.864708 0.050775 -0.733334 0.358749 -0.577513 -0.545090 0.197422 0.814801 0.406322 0.912318 0.050775 -0.766894 0.279914 -0.577513 -0.562780 0.139205 0.814801 0.308467 0.949879 0.050775 -0.792008 0.197997 -0.577513 -0.574270 0.079455 0.814801 0.207214 0.976977 0.050775 -0.808283 0.114706 -0.577513 -0.579415 0.019409 0.814801 0.104672 0.993210 0.050775 -0.815854 0.029361 -0.577513 -0.578259 -0.041425 0.814801 0.000000 0.998710 0.050775 -0.814438 -0.056308 -0.577513 -0.570732 -0.101802 0.814801 -0.104672 0.993210 0.050775 -0.804192 -0.140553 -0.577513 -0.557080 -0.160501 0.814801 -0.207214 0.976977 0.050775 -0.785032 -0.224064 -0.577513 -0.537190 -0.218003 0.814801 -0.308467 0.949879 0.050775 -0.757225 -0.305107 -0.577513 -0.511384 -0.273104 0.814801 -0.406322 0.912318 0.050775 -0.721077 -0.382789 -0.577513 -0.479944 -0.325197 0.814801 -0.499702 0.864708 0.050775 -0.677442 -0.455578 -0.577513 -0.443591 -0.373264 0.814801 -0.586770 0.808160 0.050775 -0.625964 -0.524069 -0.577513 -0.402027 -0.417700 0.814801 -0.668239 0.742212 0.050775 -0.567590 -0.586789 -0.577513 -0.356035 -0.457534 0.814801 -0.742348 0.668088 0.050775 -0.503607 -0.642541 -0.577513 -0.306614 -0.492023 0.814801 -0.807693 0.587413 0.050775 -0.433491 -0.691784 -0.577513 -0.253358 -0.521449 0.814801 -0.864810 0.499526 0.050775 -0.358599 -0.733407 -0.577513 -0.197311 -0.545131 0.814801 -0.912401 0.406137 0.050775 -0.279758 -0.766951 -0.577513 -0.139090 -0.562808 0.814801 -0.949942 0.308274 0.050775 -0.198627 -0.791850 -0.577513 -0.079912 -0.574206 0.814801 -0.976812 0.207992 0.050775 -0.114542 -0.808306 -0.577513 -0.019291 -0.579419 0.814801 -0.993231 0.104470 0.050775 0.550804 0.317332 0.771956 -0.184456 0.948315 -0.258216 -0.813997 -0.000166 0.580869 0.514512 0.373312 0.771956 -0.282831 0.923759 -0.258216 -0.809496 -0.085478 0.580869 0.472977 0.424708 0.771956 -0.377200 0.889407 -0.258216 -0.796249 -0.169052 0.580869 0.425860 0.471941 0.771956 -0.468339 0.844975 -0.258216 -0.774146 -0.251573 0.580869 0.374052 0.513975 0.771956 -0.554319 0.791236 -0.258216 -0.743515 -0.331324 0.580869 0.318674 0.550029 0.771956 -0.633465 0.729416 -0.258216 -0.705103 -0.406720 0.580869 0.259272 0.580399 0.771956 -0.706424 0.659007 -0.258216 -0.658592 -0.478380 0.580869 0.197014 0.604376 0.771956 -0.771602 0.581339 -0.258216 -0.604827 -0.544770 0.580869 0.132586 0.621696 0.771956 -0.828281 0.497268 -0.258216 -0.544401 -0.605160 0.580869 0.067330 0.632101 0.771956 -0.875428 0.408595 -0.258216 -0.478636 -0.658406 0.580869 0.000710 0.635676 0.771956 -0.913431 0.314594 -0.258216 -0.406994 -0.704944 0.580869 -0.065917 0.632250 0.771956 -0.941372 0.217127 -0.258216 -0.330869 -0.743718 0.580869 -0.131196 0.621991 0.771956 -0.958826 0.118228 -0.258216 -0.251874 -0.774048 0.580869 -0.195663 0.604815 0.771956 -0.965936 0.017085 -0.258216 -0.169361 -0.796183 0.580869 -0.257974 0.580977 0.771956 -0.962407 -0.084246 -0.258216 -0.084983 -0.809548 0.580869 -0.316995 0.550998 0.771956 -0.948427 -0.183877 -0.258216 -0.000332 -0.813997 0.580869 -0.372998 0.514740 0.771956 -0.923932 -0.282266 -0.258216 0.084983 -0.809548 0.580869 -0.424892 0.472812 0.771956 -0.889260 -0.377546 -0.258216 0.169361 -0.796183 0.580869 -0.472106 0.425676 0.771956 -0.844793 -0.468668 -0.258216 0.251874 -0.774048 0.580869 -0.513746 0.374366 0.771956 -0.791575 -0.553836 -0.258216 0.330869 -0.743718 0.580869 -0.550153 0.318460 0.771956 -0.729169 -0.633748 -0.258216 0.406994 -0.704944 0.580869 -0.580500 0.259046 0.771956 -0.658732 -0.706680 -0.258216 0.478636 -0.658406 0.580869 -0.604255 0.197383 0.771956 -0.581810 -0.771246 -0.258216 0.544401 -0.605160 0.580869 -0.621615 0.132966 0.771956 -0.497774 -0.827977 -0.258216 0.604827 -0.544770 0.580869 -0.632127 0.067084 0.771956 -0.408255 -0.875587 -0.258216 0.658592 -0.478380 0.580869 -0.635676 0.000463 0.771956 -0.314239 -0.913553 -0.258216 0.705103 -0.406720 0.580869 -0.632290 -0.065531 0.771956 -0.217702 -0.941239 -0.258216 0.743515 -0.331324 0.580869 -0.621939 -0.131438 0.771956 -0.117855 -0.958872 -0.258216 0.774146 -0.251573 0.580869 -0.604738 -0.195898 0.771956 -0.016709 -0.965943 -0.258216 0.796249 -0.169052 0.580869 -0.581134 -0.257619 0.771956 0.083658 -0.962458 -0.258216 0.809496 -0.085478 0.580869 -0.550933 -0.317107 0.771956 0.184070 -0.948390 -0.258216 0.813997 -0.000166 0.580869 -0.514664 -0.373103 0.771956 0.282454 -0.923875 -0.258216 0.809531 0.085148 0.580869 -0.472726 -0.424988 0.771956 0.377727 -0.889183 -0.258216 0.796149 0.169524 0.580869 -0.426052 -0.471767 0.771956 0.467995 -0.845166 -0.258216 0.774248 0.251258 0.580869 -0.374261 -0.513822 0.771956 0.553997 -0.791462 -0.258216 0.743650 0.331021 0.580869 -0.318348 -0.550218 0.771956 0.633897 -0.729040 -0.258216 0.704861 0.407138 0.580869 -0.258928 -0.580552 0.771956 0.706814 -0.658588 -0.258216 0.658309 0.478770 0.580869 -0.197260 -0.604296 0.771956 0.771365 -0.581653 -0.258216 0.605049 0.544524 0.580869 -0.132839 -0.621642 0.771956 0.828078 -0.497605 -0.258216 0.544647 0.604938 0.580869 -0.066955 -0.632141 0.771956 0.875670 -0.408076 -0.258216 0.478246 0.658690 0.580869 -0.000969 -0.635676 0.771956 0.913302 -0.314966 -0.258216 0.407281 0.704779 0.580869 0.065660 -0.632276 0.771956 0.941283 -0.217511 -0.258216 0.331172 0.743583 0.580869 0.131565 -0.621913 0.771956 0.958896 -0.117659 -0.258216 0.251416 0.774197 0.580869 0.196021 -0.604698 0.771956 0.965946 -0.016512 -0.258216 0.168889 0.796283 0.580869 0.257738 -0.581082 0.771956 0.962441 0.083854 -0.258216 0.085313 0.809514 0.580869 0.317220 -0.550869 0.771956 0.948352 0.184263 -0.258216 0.000000 0.813997 0.580869 0.373208 -0.514588 0.771956 0.923817 0.282642 -0.258216 -0.085313 0.809514 0.580869 0.424612 -0.473064 0.771956 0.889484 0.377019 -0.258216 -0.168889 0.796283 0.580869 0.471854 -0.425956 0.771956 0.845071 0.468167 -0.258216 -0.251416 0.774197 0.580869 0.513898 -0.374157 0.771956 0.791349 0.554158 -0.258216 -0.331172 0.743583 0.580869 0.550282 -0.318236 0.771956 0.728911 0.634045 -0.258216 -0.407281 0.704779 0.580869 0.580346 -0.259390 0.771956 0.659151 0.706290 -0.258216 -0.478246 0.658690 0.580869 0.604336 -0.197137 0.771956 0.581496 0.771483 -0.258216 -0.544647 0.604938 0.580869 0.621669 -0.132713 0.771956 0.497437 0.828179 -0.258216 -0.605049 0.544524 0.580869 0.632087 -0.067458 0.771956 0.408774 0.875345 -0.258216 -0.658309 0.478770 0.580869 0.635676 -0.000840 0.771956 0.314780 0.913366 -0.258216 -0.704861 0.407138 0.580869 0.632263 0.065788 0.771956 0.217319 0.941327 -0.258216 -0.743650 0.331021 0.580869 0.621886 0.131692 0.771956 0.117464 0.958920 -0.258216 -0.774248 0.251258 0.580869 0.604854 0.195540 0.771956 0.017282 0.965933 -0.258216 -0.796149 0.169524 0.580869 0.581029 0.257856 0.771956 -0.084050 0.962424 -0.258216 -0.809531 0.085148 0.580869 -0.593431 0.727465 -0.344434 -0.629093 -0.686145 -0.365305 -0.502078 -0.000102 0.864822 -0.666406 0.661263 -0.344434 -0.553715 -0.748299 -0.365305 -0.499302 -0.052723 0.864822 -0.731453 0.588509 -0.344434 -0.473041 -0.801739 -0.365305 -0.491131 -0.104272 0.864822 -0.789104 0.508606 -0.344434 -0.386407 -0.846901 -0.365305 -0.477498 -0.155172 0.864822 -0.838064 0.423101 -0.344434 -0.295518 -0.882735 -0.365305 -0.458605 -0.204362 0.864822 -0.877459 0.333813 -0.344434 -0.202282 -0.908644 -0.365305 -0.434912 -0.250867 0.864822 -0.907612 0.240011 -0.344434 -0.105936 -0.924841 -0.365305 -0.406224 -0.295067 0.864822 -0.927769 0.143565 -0.344434 -0.008422 -0.930850 -0.365305 -0.373061 -0.336017 0.864822 -0.937706 0.045537 -0.344434 0.089184 -0.926606 -0.365305 -0.335790 -0.373266 0.864822 -0.937366 -0.052054 -0.344434 0.184895 -0.912341 -0.365305 -0.295225 -0.406109 0.864822 -0.926748 -0.150010 -0.344434 0.279497 -0.887938 -0.365305 -0.251036 -0.434814 0.864822 -0.905922 -0.246314 -0.344434 0.371020 -0.853754 -0.365305 -0.204082 -0.458730 0.864822 -0.875457 -0.339029 -0.344434 0.457646 -0.810625 -0.365305 -0.155358 -0.477437 0.864822 -0.835102 -0.428916 -0.344434 0.540085 -0.758196 -0.365305 -0.104463 -0.491090 0.864822 -0.785550 -0.514079 -0.344434 0.616574 -0.697415 -0.365305 -0.052418 -0.499334 0.864822 -0.727827 -0.592986 -0.344434 0.685760 -0.629512 -0.365305 -0.000204 -0.502078 0.864822 -0.661670 -0.666002 -0.344434 0.747961 -0.554172 -0.365305 0.052418 -0.499334 0.864822 -0.588224 -0.731682 -0.344434 0.801923 -0.472729 -0.365305 0.104463 -0.491090 0.864822 -0.508299 -0.789302 -0.344434 0.847052 -0.386078 -0.365305 0.155358 -0.477437 0.864822 -0.423613 -0.837805 -0.344434 0.882554 -0.296057 -0.365305 0.204082 -0.458730 0.864822 -0.333472 -0.877589 -0.344434 0.908723 -0.201929 -0.365305 0.251036 -0.434814 0.864822 -0.239658 -0.907706 -0.344434 0.924882 -0.105576 -0.365305 0.295225 -0.406109 0.864822 -0.144132 -0.927681 -0.344434 0.930844 -0.008991 -0.365305 0.335790 -0.373266 0.864822 -0.046110 -0.937678 -0.344434 0.926660 0.088618 -0.365305 0.373061 -0.336017 0.864822 0.052419 -0.937346 -0.344434 0.912269 0.185250 -0.365305 0.406224 -0.295067 0.864822 0.150371 -0.926690 -0.344434 0.887829 0.279842 -0.365305 0.434912 -0.250867 0.864822 0.245760 -0.906072 -0.344434 0.853981 0.370498 -0.365305 0.458605 -0.204362 0.864822 0.339370 -0.875325 -0.344434 0.810447 0.457961 -0.365305 0.477498 -0.155172 0.864822 0.429241 -0.834936 -0.344434 0.757986 0.540379 -0.365305 0.491131 -0.104272 0.864822 0.513599 -0.785864 -0.344434 0.697792 0.616148 -0.365305 0.499302 -0.052723 0.864822 0.593134 -0.727707 -0.344434 0.629372 0.685888 -0.365305 0.502078 -0.000102 0.864822 0.666137 -0.661534 -0.344434 0.554020 0.748074 -0.365305 0.499324 0.052520 0.864822 0.731801 -0.588075 -0.344434 0.472565 0.802019 -0.365305 0.491069 0.104563 0.864822 0.788897 -0.508927 -0.344434 0.386752 0.846744 -0.365305 0.477561 0.154977 0.864822 0.837891 -0.423442 -0.344434 0.295877 0.882615 -0.365305 0.458688 0.204176 0.864822 0.877656 -0.333293 -0.344434 0.201744 0.908764 -0.365305 0.434763 0.251125 0.864822 0.907754 -0.239473 -0.344434 0.105387 0.924903 -0.365305 0.406049 0.295308 0.864822 0.927710 -0.143943 -0.344434 0.008801 0.930846 -0.365305 0.373198 0.335866 0.864822 0.937687 -0.045919 -0.344434 -0.088806 0.926642 -0.365305 0.335942 0.373130 0.864822 0.937335 0.052610 -0.344434 -0.185436 0.912231 -0.365305 0.294985 0.406284 0.864822 0.926809 0.149633 -0.344434 -0.279135 0.888052 -0.365305 0.251213 0.434712 0.864822 0.906022 0.245945 -0.344434 -0.370672 0.853905 -0.365305 0.204269 0.458646 0.864822 0.875256 0.339548 -0.344434 -0.458126 0.810354 -0.365305 0.155075 0.477529 0.864822 0.834848 0.429411 -0.344434 -0.540534 0.757876 -0.365305 0.104172 0.491152 0.864822 0.785759 0.513759 -0.344434 -0.616290 0.697667 -0.365305 0.052621 0.499313 0.864822 0.727586 0.593282 -0.344434 -0.686017 0.629233 -0.365305 0.000000 0.502078 0.864822 0.661399 0.666271 -0.344434 -0.748186 0.553868 -0.365305 -0.052621 0.499313 0.864822 0.588658 0.731333 -0.344434 -0.801642 0.473204 -0.365305 -0.104172 0.491152 0.864822 0.508767 0.789001 -0.344434 -0.846823 0.386580 -0.365305 -0.155075 0.477529 0.864822 0.423272 0.837978 -0.344434 -0.882675 0.295698 -0.365305 -0.204269 0.458646 0.864822 0.333115 0.877724 -0.344434 -0.908805 0.201558 -0.365305 -0.251213 0.434712 0.864822 0.240196 0.907563 -0.344434 -0.924819 0.106124 -0.365305 -0.294985 0.406284 0.864822 0.143754 0.927739 -0.344434 -0.930848 0.008612 -0.365305 -0.335942 0.373130 0.864822 0.045728 0.937696 -0.344434 -0.926624 -0.088995 -0.365305 -0.373198 0.335866 0.864822 -0.051863 0.937377 -0.344434 -0.912379 -0.184710 -0.365305 -0.406049 0.295308 0.864822 -0.149822 0.926779 -0.344434 -0.887995 -0.279316 -0.365305 -0.434763 0.251125 0.864822 -0.246129 0.905972 -0.344434 -0.853830 -0.370846 -0.365305 -0.458688 0.204176 0.864822 -0.339726 0.875186 -0.344434 -0.810260 -0.458291 -0.365305 -0.477561 0.154977 0.864822 -0.428746 0.835190 -0.344434 -0.758306 -0.539930 -0.365305 -0.491069 0.104563 0.864822 -0.513919 0.785654 -0.344434 -0.697541 -0.616432 -0.365305 -0.499324 0.052520 0.864822 -0.074540 -0.976651 0.201488 -0.339699 0.214834 0.915670 -0.937576 -0.000191 -0.347781 0.028230 -0.979084 0.201488 -0.360345 0.178048 0.915670 -0.932392 -0.098455 -0.347781 0.129719 -0.970863 0.201488 -0.376881 0.139678 0.915670 -0.917133 -0.194717 -0.347781 0.230758 -0.951921 0.201488 -0.389445 0.099408 0.915670 -0.891675 -0.289766 -0.347781 0.329255 -0.922493 0.201488 -0.397719 0.058044 0.915670 -0.856394 -0.381624 -0.347781 0.423243 -0.883328 0.201488 -0.401595 0.016442 0.915670 -0.812149 -0.468467 -0.347781 0.513491 -0.834104 0.201488 -0.401107 -0.025738 0.915670 -0.758578 -0.551006 -0.347781 0.598083 -0.775693 0.201488 -0.396200 -0.067635 0.915670 -0.696651 -0.627476 -0.347781 0.676087 -0.708738 0.201488 -0.386930 -0.108787 0.915670 -0.627050 -0.697034 -0.347781 0.746010 -0.634722 0.201488 -0.373546 -0.148368 0.915670 -0.551301 -0.758364 -0.347781 0.808425 -0.553039 0.201488 -0.355938 -0.186701 0.915670 -0.468783 -0.811967 -0.347781 0.861935 -0.465264 0.201488 -0.334410 -0.222978 0.915670 -0.381101 -0.856627 -0.347781 0.905578 -0.373271 0.201488 -0.309456 -0.256489 0.915670 -0.290113 -0.891562 -0.347781 0.939712 -0.276304 0.201488 -0.280869 -0.287509 0.915670 -0.195073 -0.917058 -0.347781 0.963495 -0.176294 0.201488 -0.249190 -0.315363 0.915670 -0.097885 -0.932452 -0.347781 0.976605 -0.075137 0.201488 -0.215042 -0.339568 0.915670 -0.000382 -0.937576 -0.347781 0.979101 0.027632 0.201488 -0.178268 -0.360236 0.915670 0.097885 -0.932452 -0.347781 0.970813 0.130097 0.201488 -0.139531 -0.376936 0.915670 0.195073 -0.917058 -0.347781 0.951831 0.231128 0.201488 -0.099257 -0.389483 0.915670 0.290113 -0.891562 -0.347781 0.922694 0.328691 0.201488 -0.058287 -0.397683 0.915670 0.381101 -0.856627 -0.347781 0.883163 0.423586 0.201488 -0.016286 -0.401602 0.915670 0.468783 -0.811967 -0.347781 0.833904 0.513815 0.201488 0.025894 -0.401097 0.915670 0.551301 -0.758364 -0.347781 0.776058 0.597609 0.201488 0.067393 -0.396242 0.915670 0.627050 -0.697034 -0.347781 0.709150 0.675654 0.201488 0.108551 -0.386996 0.915670 0.696651 -0.627476 -0.347781 0.634431 0.746257 0.201488 0.148513 -0.373488 0.915670 0.758578 -0.551006 -0.347781 0.552724 0.808640 0.201488 0.186839 -0.355866 0.915670 0.812149 -0.468467 -0.347781 0.465791 0.861650 0.201488 0.222773 -0.334547 0.915670 0.856394 -0.381624 -0.347781 0.372918 0.905723 0.201488 0.256609 -0.309356 0.915670 0.891675 -0.289766 -0.347781 0.275938 0.939819 0.201488 0.287619 -0.280758 0.915670 0.917133 -0.194717 -0.347781 0.176882 0.963387 0.201488 0.315211 -0.249382 0.915670 0.932392 -0.098455 -0.347781 0.074938 0.976620 0.201488 0.339612 -0.214972 0.915670 0.937576 -0.000191 -0.347781 -0.027831 0.979096 0.201488 0.360272 -0.178195 0.915670 0.932432 0.098075 -0.347781 -0.130294 0.970786 0.201488 0.376964 -0.139454 0.915670 0.917018 0.195260 -0.347781 -0.230370 0.952015 0.201488 0.389404 -0.099567 0.915670 0.891793 0.289403 -0.347781 -0.328879 0.922627 0.201488 0.397695 -0.058206 0.915670 0.856550 0.381276 -0.347781 -0.423766 0.883077 0.201488 0.401605 -0.016205 0.915670 0.811872 0.468948 -0.347781 -0.513985 0.833800 0.201488 0.401092 0.025976 0.915670 0.758251 0.551456 -0.347781 -0.597767 0.775937 0.201488 0.396228 0.067474 0.915670 0.696906 0.627192 -0.347781 -0.675798 0.709013 0.201488 0.386974 0.108630 0.915670 0.627334 0.696779 -0.347781 -0.746386 0.634280 0.201488 0.373458 0.148589 0.915670 0.550852 0.758690 -0.347781 -0.808199 0.553368 0.201488 0.356014 0.186556 0.915670 0.469114 0.811776 -0.347781 -0.861745 0.465615 0.201488 0.334501 0.222841 0.915670 0.381450 0.856472 -0.347781 -0.905799 0.372734 0.201488 0.309304 0.256672 0.915670 0.289585 0.891734 -0.347781 -0.939876 0.275747 0.201488 0.280699 0.287676 0.915670 0.194530 0.917173 -0.347781 -0.963423 0.176686 0.201488 0.249318 0.315262 0.915670 0.098265 0.932412 -0.347781 -0.976635 0.074739 0.201488 0.214903 0.339656 0.915670 0.000000 0.937576 -0.347781 -0.979090 -0.028031 0.201488 0.178121 0.360308 0.915670 -0.098265 0.932412 -0.347781 -0.970890 -0.129521 0.201488 0.139754 0.376853 0.915670 -0.194530 0.917173 -0.347781 -0.951968 -0.230564 0.201488 0.099488 0.389425 0.915670 -0.289585 0.891734 -0.347781 -0.922560 -0.329067 0.201488 0.058125 0.397707 0.915670 -0.381450 0.856472 -0.347781 -0.882991 -0.423946 0.201488 0.016123 0.401608 0.915670 -0.469114 0.811776 -0.347781 -0.834209 -0.513321 0.201488 -0.025656 0.401112 0.915670 -0.550852 0.758690 -0.347781 -0.775815 -0.597925 0.201488 -0.067555 0.396214 0.915670 -0.627334 0.696779 -0.347781 -0.708875 -0.675943 0.201488 -0.108709 0.386952 0.915670 -0.696906 0.627192 -0.347781 -0.634874 -0.745881 0.201488 -0.148292 0.373576 0.915670 -0.758251 0.551456 -0.347781 -0.553203 -0.808312 0.201488 -0.186628 0.355976 0.915670 -0.811872 0.468948 -0.347781 -0.465440 -0.861840 0.201488 -0.222909 0.334456 0.915670 -0.856550 0.381276 -0.347781 -0.372550 -0.905875 0.201488 -0.256735 0.309251 0.915670 -0.891793 0.289403 -0.347781 -0.276495 -0.939656 0.201488 -0.287452 0.280928 0.915670 -0.917018 0.195260 -0.347781 -0.176490 -0.963459 0.201488 -0.315312 0.249254 0.915670 -0.932432 0.098075 -0.347781 -0.031098 0.905171 -0.423909 -0.065749 -0.425048 -0.902780 -0.997352 -0.000203 0.072732 -0.125795 0.896926 -0.423909 -0.020839 -0.429598 -0.902780 -0.991837 -0.104732 0.072732 -0.218228 0.879021 -0.423909 0.023872 -0.429440 -0.902780 -0.975606 -0.207131 0.072732 -0.309154 0.851308 -0.423909 0.068749 -0.424573 -0.902780 -0.948524 -0.308241 0.072732 -0.396674 0.814218 -0.423909 0.112868 -0.415029 -0.902780 -0.910994 -0.405955 0.072732 -0.479057 0.768639 -0.423909 0.155344 -0.401070 -0.902780 -0.863929 -0.498335 0.072732 -0.556977 0.714197 -0.423909 0.196523 -0.382580 -0.902780 -0.806942 -0.586136 0.072732 -0.628763 0.651889 -0.423909 0.235538 -0.359876 -0.902780 -0.741066 -0.667481 0.072732 -0.693623 0.582399 -0.423909 0.271958 -0.333208 -0.902780 -0.667028 -0.741474 0.072732 -0.750335 0.507246 -0.423909 0.305080 -0.303175 -0.902780 -0.586450 -0.806714 0.072732 -0.799366 0.425812 -0.423909 0.335175 -0.269530 -0.902780 -0.498670 -0.863735 0.072732 -0.839592 0.339687 -0.423909 0.361577 -0.232917 -0.902780 -0.405398 -0.911242 0.072732 -0.870319 0.250692 -0.423909 0.383803 -0.194122 -0.902780 -0.308610 -0.948404 0.072732 -0.891800 0.158095 -0.423909 0.402035 -0.152828 -0.902780 -0.207511 -0.975525 0.072732 -0.903458 0.063758 -0.423909 0.415838 -0.109850 -0.902780 -0.104126 -0.991901 0.072732 -0.905190 -0.030545 -0.423909 0.425008 -0.066008 -0.902780 -0.000406 -0.997351 0.072732 -0.897003 -0.125247 -0.423909 0.429585 -0.021101 -0.902780 0.104126 -0.991901 0.072732 -0.878936 -0.218570 -0.423909 0.429431 0.024039 -0.902780 0.207511 -0.975525 0.072732 -0.851188 -0.309485 -0.423909 0.424546 0.068914 -0.902780 0.308610 -0.948404 0.072732 -0.814460 -0.396176 -0.423909 0.415098 0.112615 -0.902780 0.405398 -0.911242 0.072732 -0.768453 -0.479356 -0.423909 0.401009 0.155500 -0.902780 0.498670 -0.863735 0.072732 -0.713980 -0.557255 -0.423909 0.382503 0.196672 -0.902780 0.586450 -0.806714 0.072732 -0.652273 -0.628364 -0.423909 0.360020 0.235318 -0.902780 0.667028 -0.741474 0.072732 -0.582823 -0.693267 -0.423909 0.333374 0.271755 -0.902780 0.741066 -0.667481 0.072732 -0.506954 -0.750533 -0.423909 0.303056 0.305198 -0.902780 0.806942 -0.586136 0.072732 -0.425501 -0.799531 -0.423909 0.269400 0.335279 -0.902780 0.863929 -0.498335 0.072732 -0.340200 -0.839384 -0.423909 0.233138 0.361435 -0.902780 0.910994 -0.405955 0.072732 -0.250353 -0.870416 -0.423909 0.193973 0.383879 -0.902780 0.948524 -0.308241 0.072732 -0.157748 -0.891861 -0.423909 0.152672 0.402095 -0.902780 0.975606 -0.207131 0.072732 -0.064310 -0.903419 -0.423909 0.110104 0.415771 -0.902780 0.991837 -0.104732 0.072732 0.030729 -0.905183 -0.423909 0.065922 0.425021 -0.902780 0.997352 -0.000203 0.072732 0.125430 -0.896978 -0.423909 0.021014 0.429589 -0.902780 0.991880 0.104328 0.072732 0.218749 -0.878892 -0.423909 -0.024126 0.429426 -0.902780 0.975483 0.207709 0.072732 0.308807 -0.851434 -0.423909 -0.068576 0.424601 -0.902780 0.948649 0.307854 0.072732 0.396342 -0.814380 -0.423909 -0.112699 0.415075 -0.902780 0.911159 0.405584 0.072732 0.479512 -0.768355 -0.423909 -0.155581 0.400978 -0.902780 0.863633 0.498846 0.072732 0.557401 -0.713867 -0.423909 -0.196750 0.382463 -0.902780 0.806594 0.586614 0.072732 0.628497 -0.652145 -0.423909 -0.235391 0.359972 -0.902780 0.741338 0.667179 0.072732 0.693385 -0.582682 -0.423909 -0.271823 0.333318 -0.902780 0.667330 0.741202 0.072732 0.750636 -0.506801 -0.423909 -0.305260 0.302994 -0.902780 0.585971 0.807061 0.072732 0.799192 -0.426137 -0.423909 -0.335065 0.269667 -0.902780 0.499022 0.863532 0.072732 0.839453 -0.340029 -0.423909 -0.361483 0.233064 -0.902780 0.405770 0.911077 0.072732 0.870467 -0.250176 -0.423909 -0.383918 0.193895 -0.902780 0.308048 0.948587 0.072732 0.891894 -0.157567 -0.423909 -0.402126 0.152590 -0.902780 0.206932 0.975648 0.072732 0.903432 -0.064126 -0.423909 -0.415794 0.110019 -0.902780 0.104530 0.991859 0.072732 0.905177 0.030914 -0.423909 -0.425035 0.065835 -0.902780 0.000000 0.997352 0.072732 0.896952 0.125612 -0.423909 -0.429594 0.020926 -0.902780 -0.104530 0.991859 0.072732 0.879065 0.218049 -0.423909 -0.429445 -0.023784 -0.902780 -0.206932 0.975648 0.072732 0.851371 0.308980 -0.423909 -0.424587 -0.068662 -0.902780 -0.308048 0.948587 0.072732 0.814299 0.396508 -0.423909 -0.415052 -0.112784 -0.902780 -0.405770 0.911077 0.072732 0.768257 0.479669 -0.423909 -0.400946 -0.155663 -0.902780 -0.499022 0.863532 0.072732 0.714311 0.556832 -0.423909 -0.382620 -0.196445 -0.902780 -0.585971 0.807061 0.072732 0.652017 0.628630 -0.423909 -0.359924 -0.235465 -0.902780 -0.667330 0.741202 0.072732 0.582541 0.693504 -0.423909 -0.333263 -0.271890 -0.902780 -0.741338 0.667179 0.072732 0.507399 0.750232 -0.423909 -0.303237 -0.305018 -0.902780 -0.806594 0.586614 0.072732 0.425974 0.799279 -0.423909 -0.269599 -0.335120 -0.902780 -0.863633 0.498846 0.072732 0.339858 0.839522 -0.423909 -0.232991 -0.361530 -0.902780 -0.911159 0.405584 0.072732 0.249999 0.870518 -0.423909 -0.193817 -0.383958 -0.902780 -0.948649 0.307854 0.072732 0.158277 0.891768 -0.423909 -0.152910 -0.402004 -0.902780 -0.975483 0.207709 0.072732 0.063942 0.903445 -0.423909 -0.109935 -0.415816 -0.902780 -0.991880 0.104328 0.072732 -0.199445 0.637881 -0.743861 -0.164948 -0.770135 -0.616185 -0.965927 -0.000197 0.258816 -0.265201 0.613465 -0.743861 -0.083323 -0.783181 -0.616185 -0.960586 -0.101432 0.258816 -0.327453 0.582619 -0.743861 -0.001569 -0.787600 -0.616185 -0.944866 -0.200605 0.258816 -0.386712 0.545091 -0.743861 0.080986 -0.783426 -0.616185 -0.918638 -0.298529 0.258816 -0.441712 0.501558 -0.743861 0.162648 -0.770624 -0.616185 -0.882290 -0.393164 0.258816 -0.491393 0.452993 -0.743861 0.241770 -0.749575 -0.616185 -0.836708 -0.482633 0.258816 -0.536164 0.398997 -0.743861 0.318999 -0.720108 -0.616185 -0.781516 -0.567668 0.258816 -0.575029 0.340606 -0.743861 0.392715 -0.682708 -0.616185 -0.717717 -0.646450 0.258816 -0.607560 0.278463 -0.743861 0.462105 -0.637789 -0.616185 -0.646011 -0.718111 0.258816 -0.633185 0.213886 -0.743861 0.525818 -0.586371 -0.616185 -0.567972 -0.781295 0.258816 -0.652114 0.146345 -0.743861 0.584378 -0.528032 -0.616185 -0.482958 -0.836520 0.258816 -0.663861 0.077193 -0.743861 0.636501 -0.463876 -0.616185 -0.392625 -0.882530 0.258816 -0.668288 0.007859 -0.743861 0.681219 -0.395293 -0.616185 -0.298886 -0.918521 0.258816 -0.665431 -0.062226 -0.743861 0.718896 -0.321720 -0.616185 -0.200972 -0.944788 0.258816 -0.655244 -0.131625 -0.743861 0.748656 -0.244602 -0.616185 -0.100845 -0.960648 0.258816 -0.638003 -0.199055 -0.743861 0.770034 -0.165418 -0.616185 -0.000393 -0.965927 0.258816 -0.613627 -0.264826 -0.743861 0.783130 -0.083802 -0.616185 0.100845 -0.960648 0.258816 -0.582491 -0.327680 -0.743861 0.787600 -0.001263 -0.616185 0.200972 -0.944788 0.258816 -0.544940 -0.386924 -0.743861 0.783395 0.081290 -0.616185 0.298886 -0.918521 0.258816 -0.501828 -0.441405 -0.743861 0.770723 0.162177 -0.616185 0.392625 -0.882530 0.258816 -0.452802 -0.491570 -0.743861 0.749481 0.242061 -0.616185 0.482958 -0.836520 0.258816 -0.398788 -0.536319 -0.743861 0.719984 0.319279 -0.616185 0.567972 -0.781295 0.258816 -0.340957 -0.574821 -0.743861 0.682948 0.392298 -0.616185 0.646011 -0.718111 0.258816 -0.278834 -0.607390 -0.743861 0.638071 0.461715 -0.616185 0.717717 -0.646450 0.258816 -0.213639 -0.633268 -0.743861 0.586166 0.526047 -0.616185 0.781516 -0.567668 0.258816 -0.146092 -0.652171 -0.743861 0.527804 0.584584 -0.616185 0.836708 -0.482633 0.258816 -0.077599 -0.663814 -0.743861 0.464265 0.636218 -0.616185 0.882290 -0.393164 0.258816 -0.007599 -0.668291 -0.743861 0.395028 0.681372 -0.616185 0.918638 -0.298529 0.258816 0.062485 -0.665407 -0.743861 0.321440 0.719021 -0.616185 0.944866 -0.200605 0.258816 0.131225 -0.655325 -0.743861 0.245060 0.748506 -0.616185 0.960586 -0.101432 0.258816 0.199185 -0.637962 -0.743861 0.165261 0.770068 -0.616185 0.965927 -0.000197 0.258816 0.264951 -0.613573 -0.743861 0.083642 0.783147 -0.616185 0.960627 0.101040 0.258816 0.327798 -0.582425 -0.743861 0.001102 0.787600 -0.616185 0.944747 0.201165 0.258816 0.386490 -0.545248 -0.743861 -0.080667 0.783459 -0.616185 0.918759 0.298154 0.258816 0.441508 -0.501738 -0.743861 -0.162334 0.770690 -0.616185 0.882450 0.392805 0.258816 0.491662 -0.452702 -0.743861 -0.242214 0.749432 -0.616185 0.836422 0.483129 0.258816 0.536400 -0.398679 -0.743861 -0.319426 0.719918 -0.616185 0.781180 0.568131 0.258816 0.574890 -0.340840 -0.743861 -0.392437 0.682868 -0.616185 0.717980 0.646157 0.258816 0.607446 -0.278710 -0.743861 -0.461845 0.637977 -0.616185 0.646304 0.717848 0.258816 0.633312 -0.213510 -0.743861 -0.526166 0.586059 -0.616185 0.567509 0.781632 0.258816 0.652055 -0.146611 -0.743861 -0.584163 0.528270 -0.616185 0.483299 0.836323 0.258816 0.663830 -0.077463 -0.743861 -0.636312 0.464136 -0.616185 0.392985 0.882370 0.258816 0.668292 -0.007463 -0.743861 -0.681453 0.394889 -0.616185 0.298341 0.918698 0.258816 0.665394 0.062620 -0.743861 -0.719087 0.321294 -0.616185 0.200412 0.944907 0.258816 0.655298 0.131358 -0.743861 -0.748556 0.244907 -0.616185 0.101236 0.960607 0.258816 0.637922 0.199315 -0.743861 -0.770101 0.165104 -0.616185 0.000000 0.965927 0.258816 0.613519 0.265076 -0.743861 -0.783164 0.083483 -0.616185 -0.101236 0.960607 0.258816 0.582686 0.327334 -0.743861 -0.787599 0.001730 -0.616185 -0.200412 0.944907 0.258816 0.545169 0.386601 -0.743861 -0.783443 -0.080826 -0.616185 -0.298341 0.918698 0.258816 0.501648 0.441610 -0.743861 -0.770657 -0.162491 -0.616185 -0.392985 0.882370 0.258816 0.452602 0.491754 -0.743861 -0.749382 -0.242367 -0.616185 -0.483299 0.836323 0.258816 0.399106 0.536083 -0.743861 -0.720173 -0.318853 -0.616185 -0.567509 0.781632 0.258816 0.340723 0.574959 -0.743861 -0.682788 -0.392576 -0.616185 -0.646304 0.717848 0.258816 0.278586 0.607503 -0.743861 -0.637883 -0.461975 -0.616185 -0.717980 0.646157 0.258816 0.214015 0.633141 -0.743861 -0.586478 -0.525699 -0.616185 -0.781180 0.568131 0.258816 0.146478 0.652085 -0.743861 -0.528151 -0.584271 -0.616185 -0.836422 0.483129 0.258816 0.077328 0.663845 -0.743861 -0.464006 -0.636407 -0.616185 -0.882450 0.392805 0.258816 0.007327 0.668294 -0.743861 -0.394751 -0.681533 -0.616185 -0.918759 0.298154 0.258816 -0.062090 0.665443 -0.743861 -0.321866 -0.718831 -0.616185 -0.944747 0.201165 0.258816 -0.131492 0.655271 -0.743861 -0.244755 -0.748606 -0.616185 -0.960627 0.101040 0.258816 0.013364 -0.920827 0.389742 0.031035 0.389971 0.920304 -0.999429 -0.000204 0.033790 0.109800 -0.914355 0.389742 -0.010007 0.391076 0.920304 -0.993903 -0.104950 0.033790 0.204128 -0.898016 0.389742 -0.050552 0.387924 0.920304 -0.977638 -0.207562 0.033790 0.297123 -0.871676 0.389742 -0.090931 0.380489 0.920304 -0.950500 -0.308883 0.033790 0.386844 -0.835735 0.389742 -0.130308 0.368863 0.920304 -0.912892 -0.406801 0.033790 0.471514 -0.791060 0.389742 -0.167896 0.353343 0.920304 -0.865728 -0.499373 0.033790 0.551826 -0.737285 0.389742 -0.204004 0.333800 0.920304 -0.808623 -0.587357 0.033790 0.626060 -0.675390 0.389742 -0.237866 0.310580 0.920304 -0.742610 -0.668871 0.033790 0.693397 -0.606054 0.389742 -0.269107 0.283940 0.920304 -0.668418 -0.743018 0.033790 0.752567 -0.530796 0.389742 -0.297129 0.254469 0.920304 -0.587671 -0.808394 0.033790 0.804053 -0.448999 0.389742 -0.322163 0.221926 0.920304 -0.499709 -0.865534 0.033790 0.846683 -0.362255 0.389742 -0.343648 0.186939 0.920304 -0.406243 -0.913140 0.033790 0.879715 -0.272402 0.389742 -0.361198 0.150254 0.920304 -0.309253 -0.950379 0.033790 0.903420 -0.178701 0.389742 -0.374956 0.111570 0.920304 -0.207943 -0.977557 0.033790 0.917174 -0.083032 0.389742 -0.384585 0.071658 0.920304 -0.104342 -0.993967 0.033790 0.920835 0.012802 0.389742 -0.389951 0.031274 0.920304 -0.000407 -0.999429 0.033790 0.914422 0.109241 0.389742 -0.391082 -0.009768 0.920304 0.104342 -0.993967 0.033790 0.897937 0.204478 0.389742 -0.387904 -0.050703 0.920304 0.207943 -0.977557 0.033790 0.871561 0.297462 0.389742 -0.380454 -0.091079 0.920304 0.309253 -0.950379 0.033790 0.835971 0.386334 0.389742 -0.368943 -0.130082 0.920304 0.406243 -0.913140 0.033790 0.790877 0.471822 0.389742 -0.353277 -0.168034 0.920304 0.499709 -0.865534 0.033790 0.737071 0.552113 0.389742 -0.333721 -0.204134 0.920304 0.587671 -0.808394 0.033790 0.675772 0.625647 0.389742 -0.310726 -0.237676 0.920304 0.668418 -0.743018 0.033790 0.606478 0.693027 0.389742 -0.284104 -0.268933 0.920304 0.742610 -0.668871 0.033790 0.530503 0.752773 0.389742 -0.254353 -0.297228 0.920304 0.808623 -0.587357 0.033790 0.448686 0.804228 0.389742 -0.221801 -0.322249 0.920304 0.865728 -0.499373 0.033790 0.362772 0.846462 0.389742 -0.187149 -0.343534 0.920304 0.912892 -0.406801 0.033790 0.272059 0.879821 0.389742 -0.150114 -0.361256 0.920304 0.950500 -0.308883 0.033790 0.178349 0.903489 0.389742 -0.111425 -0.375000 0.920304 0.977638 -0.207562 0.033790 0.083592 0.917123 0.389742 -0.071893 -0.384541 0.920304 0.993903 -0.104950 0.033790 -0.012989 0.920833 0.389742 -0.031194 -0.389958 0.920304 0.999429 -0.000204 0.033790 -0.109428 0.914400 0.389742 0.009848 -0.391080 0.920304 0.993946 0.104545 0.033790 -0.204661 0.897895 0.389742 0.050782 -0.387894 0.920304 0.977515 0.208142 0.033790 -0.296768 0.871797 0.389742 0.090776 -0.380526 0.920304 0.950625 0.308496 0.033790 -0.386504 0.835892 0.389742 0.130157 -0.368916 0.920304 0.913057 0.406429 0.033790 -0.471983 0.790781 0.389742 0.168106 -0.353243 0.920304 0.865432 0.499885 0.033790 -0.552263 0.736958 0.389742 0.204202 -0.333679 0.920304 0.808274 0.587836 0.033790 -0.625784 0.675644 0.389742 0.237739 -0.310677 0.920304 0.742882 0.668569 0.033790 -0.693150 0.606337 0.389742 0.268991 -0.284049 0.920304 0.668720 0.742746 0.033790 -0.752881 0.530350 0.389742 0.297280 -0.254293 0.920304 0.587192 0.808742 0.033790 -0.803870 0.449326 0.389742 0.322072 -0.222058 0.920304 0.500062 0.865330 0.033790 -0.846536 0.362600 0.389742 0.343572 -0.187079 0.920304 0.406615 0.912975 0.033790 -0.879877 0.271880 0.389742 0.361287 -0.150040 0.920304 0.308689 0.950563 0.033790 -0.903526 0.178165 0.389742 0.375022 -0.111348 0.920304 0.207363 0.977680 0.033790 -0.917140 0.083405 0.389742 0.384555 -0.071814 0.920304 0.104747 0.993925 0.033790 -0.920830 -0.013177 0.389742 0.389964 -0.031115 0.920304 0.000000 0.999429 0.033790 -0.914378 -0.109614 0.389742 0.391078 0.009928 0.920304 -0.104747 0.993925 0.033790 -0.898058 -0.203946 0.389742 0.387934 0.050473 0.920304 -0.207363 0.977680 0.033790 -0.871737 -0.296945 0.389742 0.380507 0.090853 0.920304 -0.308689 0.950563 0.033790 -0.835814 -0.386674 0.389742 0.368890 0.130233 0.920304 -0.406615 0.912975 0.033790 -0.790684 -0.472144 0.389742 0.353209 0.168178 0.920304 -0.500062 0.865330 0.033790 -0.737398 -0.551676 0.389742 0.333841 0.203936 0.920304 -0.587192 0.808742 0.033790 -0.675517 -0.625922 0.389742 0.310629 0.237802 0.920304 -0.668720 0.742746 0.033790 -0.606196 -0.693274 0.389742 0.283995 0.269049 0.920304 -0.742882 0.668569 0.033790 -0.530950 -0.752459 0.389742 0.254530 0.297077 0.920304 -0.808274 0.587836 0.033790 -0.449162 -0.803962 0.389742 0.221992 0.322118 0.920304 -0.865432 0.499885 0.033790 -0.362428 -0.846610 0.389742 0.187009 0.343610 0.920304 -0.913057 0.406429 0.033790 -0.271701 -0.879932 0.389742 0.149966 0.361317 0.920304 -0.950625 0.308496 0.033790 -0.178885 -0.903383 0.389742 0.111647 0.374934 0.920304 -0.977515 0.208142 0.033790 -0.083219 -0.917157 0.389742 0.071736 0.384570 0.920304 -0.993946 0.104545 0.033790 0.024719 -0.963874 -0.265207 -0.088693 -0.266357 0.959785 -0.995752 -0.000203 -0.092073 0.125604 -0.955975 -0.265207 -0.060289 -0.274186 0.959785 -0.990247 -0.104564 -0.092073 0.224167 -0.937771 -0.265207 -0.031499 -0.278963 0.959785 -0.974041 -0.206799 -0.092073 0.321218 -0.909112 -0.265207 -0.002088 -0.280728 0.959785 -0.947003 -0.307746 -0.092073 0.414730 -0.870439 -0.265207 0.027346 -0.279401 0.959785 -0.909533 -0.405304 -0.092073 0.502852 -0.822681 -0.265207 0.056203 -0.275052 0.959785 -0.862543 -0.497535 -0.092073 0.586305 -0.765448 -0.265207 0.084721 -0.267647 0.959785 -0.805648 -0.585196 -0.092073 0.663301 -0.699784 -0.265207 0.112306 -0.257293 0.959785 -0.739878 -0.666411 -0.092073 0.732990 -0.626411 -0.265207 0.138654 -0.244106 0.959785 -0.665959 -0.740285 -0.092073 0.794059 -0.546933 -0.265207 0.163246 -0.228393 0.959785 -0.585509 -0.805420 -0.092073 0.847008 -0.460697 -0.265207 0.186284 -0.210026 0.959785 -0.497871 -0.862350 -0.092073 0.890628 -0.369387 -0.265207 0.207270 -0.189345 0.959785 -0.404748 -0.909781 -0.092073 0.924163 -0.274933 -0.265207 0.225807 -0.166805 0.959785 -0.308115 -0.946883 -0.092073 0.947888 -0.176560 -0.265207 0.242045 -0.142220 0.959785 -0.207178 -0.973961 -0.092073 0.961172 -0.076242 -0.265207 0.255618 -0.116069 0.959785 -0.103959 -0.990311 -0.092073 0.963889 0.024130 -0.265207 0.266303 -0.088856 0.959785 -0.000406 -0.995752 -0.092073 0.956052 0.125020 -0.265207 0.274149 -0.060456 0.959785 0.103959 -0.990311 -0.092073 0.937683 0.224532 -0.265207 0.278975 -0.031390 0.959785 0.207178 -0.973961 -0.092073 0.908987 0.321572 -0.265207 0.280729 -0.001979 0.959785 0.308115 -0.946883 -0.092073 0.870692 0.414198 -0.265207 0.279417 0.027175 0.959785 0.404748 -0.909781 -0.092073 0.822486 0.503172 -0.265207 0.275030 0.056310 0.959785 0.497871 -0.862350 -0.092073 0.765220 0.586603 -0.265207 0.267614 0.084825 0.959785 0.585509 -0.805420 -0.092073 0.700189 0.662873 -0.265207 0.257362 0.112149 0.959785 0.665959 -0.740285 -0.092073 0.626858 0.732607 -0.265207 0.244190 0.138504 0.959785 0.739878 -0.666411 -0.092073 0.546624 0.794272 -0.265207 0.228329 0.163335 0.959785 0.805648 -0.585196 -0.092073 0.460368 0.847187 -0.265207 0.209953 0.186365 0.959785 0.862543 -0.497535 -0.092073 0.369932 0.890402 -0.265207 0.189472 0.207154 0.959785 0.909533 -0.405304 -0.092073 0.274574 0.924270 -0.265207 0.166717 0.225871 0.959785 0.947003 -0.307746 -0.092073 0.176191 0.947957 -0.265207 0.142126 0.242101 0.959785 0.974041 -0.206799 -0.092073 0.076830 0.961125 -0.265207 0.116225 0.255547 0.959785 0.990247 -0.104564 -0.092073 -0.024326 0.963884 -0.265207 0.088802 0.266321 0.959785 0.995752 -0.000203 -0.092073 -0.125214 0.956026 -0.265207 0.060400 0.274161 0.959785 0.990289 0.104160 -0.092073 -0.224723 0.937638 -0.265207 0.031333 0.278982 0.959785 0.973919 0.207376 -0.092073 -0.320848 0.909242 -0.265207 0.002202 0.280727 0.959785 0.947128 0.307361 -0.092073 -0.414376 0.870608 -0.265207 -0.027232 0.279412 0.959785 0.909698 0.404934 -0.092073 -0.503339 0.822383 -0.265207 -0.056366 0.275019 0.959785 0.862248 0.498046 -0.092073 -0.586759 0.765101 -0.265207 -0.084880 0.267597 0.959785 0.805301 0.585673 -0.092073 -0.663016 0.700054 -0.265207 -0.112201 0.257339 0.959785 0.740149 0.666109 -0.092073 -0.732735 0.626709 -0.265207 -0.138554 0.244162 0.959785 0.666260 0.740014 -0.092073 -0.794383 0.546462 -0.265207 -0.163381 0.228296 0.959785 0.585032 0.805767 -0.092073 -0.846821 0.461042 -0.265207 -0.186198 0.210102 0.959785 0.498222 0.862147 -0.092073 -0.890477 0.369750 -0.265207 -0.207193 0.189430 0.959785 0.405119 0.909616 -0.092073 -0.924325 0.274386 -0.265207 -0.225905 0.166671 0.959785 0.307554 0.947066 -0.092073 -0.947992 0.175998 -0.265207 -0.242130 0.142077 0.959785 0.206600 0.974084 -0.092073 -0.961141 0.076634 -0.265207 -0.255571 0.116173 0.959785 0.104362 0.990268 -0.092073 -0.963879 -0.024523 -0.265207 -0.266339 0.088747 0.959785 0.000000 0.995752 -0.092073 -0.956001 -0.125409 -0.265207 -0.274173 0.060344 0.959785 -0.104362 0.990268 -0.092073 -0.937816 -0.223976 -0.265207 -0.278956 0.031556 0.959785 -0.206600 0.974084 -0.092073 -0.909177 -0.321033 -0.265207 -0.280727 0.002145 0.959785 -0.307554 0.947066 -0.092073 -0.870523 -0.414553 -0.265207 -0.279406 -0.027289 0.959785 -0.405119 0.909616 -0.092073 -0.822281 -0.503507 -0.265207 -0.275007 -0.056422 0.959785 -0.498222 0.862147 -0.092073 -0.765568 -0.586150 -0.265207 -0.267664 -0.084667 0.959785 -0.585032 0.805767 -0.092073 -0.699919 -0.663158 -0.265207 -0.257316 -0.112253 0.959785 -0.666260 0.740014 -0.092073 -0.626560 -0.732863 -0.265207 -0.244134 -0.138604 0.959785 -0.740149 0.666109 -0.092073 -0.547094 -0.793948 -0.265207 -0.228426 -0.163199 0.959785 -0.805301 0.585673 -0.092073 -0.460870 -0.846914 -0.265207 -0.210064 -0.186241 0.959785 -0.862248 0.498046 -0.092073 -0.369569 -0.890553 -0.265207 -0.189387 -0.207232 0.959785 -0.909698 0.404934 -0.092073 -0.274197 -0.924381 -0.265207 -0.166625 -0.225939 0.959785 -0.947128 0.307361 -0.092073 -0.176753 -0.947852 -0.265207 -0.142269 -0.242016 0.959785 -0.973919 0.207376 -0.092073 -0.076438 -0.961157 -0.265207 -0.116121 -0.255594 0.959785 -0.990289 0.104160 -0.092073 -0.181871 -0.289058 0.939877 -0.055121 0.957312 0.283754 -0.981776 -0.000200 -0.190041 -0.150575 -0.306527 0.939877 -0.155150 0.946262 0.283754 -0.976348 -0.103096 -0.190041 -0.117940 -0.320502 0.939877 -0.252546 0.925043 0.283754 -0.960370 -0.203896 -0.190041 -0.083699 -0.331098 0.939877 -0.348106 0.893480 0.283754 -0.933711 -0.303427 -0.190041 -0.048537 -0.338047 0.939877 -0.439832 0.852075 0.283754 -0.896767 -0.399616 -0.190041 -0.013181 -0.341259 0.939877 -0.525912 0.801811 0.283754 -0.850437 -0.490552 -0.190041 0.022658 -0.340761 0.939877 -0.607051 0.742276 0.283754 -0.794340 -0.576982 -0.190041 0.058248 -0.336510 0.939877 -0.681503 0.674564 0.283754 -0.729493 -0.657057 -0.190041 0.093195 -0.328552 0.939877 -0.748449 0.599423 0.283754 -0.656611 -0.729895 -0.190041 0.126800 -0.317102 0.939877 -0.806633 0.518486 0.283754 -0.577291 -0.794115 -0.190041 0.159336 -0.302066 0.939877 -0.856531 0.431089 0.283754 -0.490883 -0.850246 -0.190041 0.190117 -0.283702 0.939877 -0.896995 0.338944 0.283754 -0.399067 -0.897012 -0.190041 0.218542 -0.262433 0.939877 -0.927335 0.243994 0.283754 -0.303790 -0.933593 -0.190041 0.244843 -0.238083 0.939877 -0.947801 0.145458 0.283754 -0.204270 -0.960291 -0.190041 0.268447 -0.211110 0.939877 -0.957826 0.045321 0.283754 -0.102500 -0.976411 -0.190041 0.288946 -0.182048 0.939877 -0.957345 -0.054536 0.283754 -0.000400 -0.981776 -0.190041 0.306435 -0.150762 0.939877 -0.946357 -0.154572 0.283754 0.102500 -0.976411 -0.190041 0.320548 -0.117815 0.939877 -0.924945 -0.252906 0.283754 0.204270 -0.960291 -0.190041 0.331131 -0.083570 0.939877 -0.893344 -0.348454 0.283754 0.303790 -0.933593 -0.190041 0.338017 -0.048743 0.939877 -0.852344 -0.439311 0.283754 0.399067 -0.897012 -0.190041 0.341264 -0.013048 0.939877 -0.801606 -0.526224 0.283754 0.490883 -0.850246 -0.190041 0.340752 0.022791 0.939877 -0.742040 -0.607340 0.283754 0.577291 -0.794115 -0.190041 0.336545 0.058042 0.939877 -0.674981 -0.681091 0.283754 0.656611 -0.729895 -0.190041 0.328609 0.092995 0.939877 -0.599880 -0.748083 0.283754 0.729493 -0.657057 -0.190041 0.317052 0.126923 0.939877 -0.518172 -0.806835 0.283754 0.794340 -0.576982 -0.190041 0.302004 0.159453 0.939877 -0.430756 -0.856699 0.283754 0.850437 -0.490552 -0.190041 0.283819 0.189944 0.939877 -0.339492 -0.896788 0.283754 0.896767 -0.399616 -0.190041 0.262348 0.218644 0.939877 -0.243633 -0.927430 0.283754 0.933711 -0.303427 -0.190041 0.237988 0.244936 0.939877 -0.145090 -0.947857 0.283754 0.960370 -0.203896 -0.190041 0.211274 0.268318 0.939877 -0.045906 -0.957798 0.283754 0.976348 -0.103096 -0.190041 0.181989 0.288984 0.939877 0.054731 -0.957334 0.283754 0.981776 -0.000200 -0.190041 0.150699 0.306466 0.939877 0.154765 -0.946325 0.283754 0.976390 0.102698 -0.190041 0.117750 0.320572 0.939877 0.253094 -0.924893 0.283754 0.960249 0.204465 -0.190041 0.083834 0.331064 0.939877 0.347742 -0.893621 0.283754 0.933835 0.303047 -0.190041 0.048674 0.338027 0.939877 0.439485 -0.852254 0.283754 0.896930 0.399250 -0.190041 0.012979 0.341267 0.939877 0.526387 -0.801499 0.283754 0.850146 0.491056 -0.190041 -0.022860 0.340748 0.939877 0.607491 -0.741916 0.283754 0.793998 0.577453 -0.190041 -0.058111 0.336533 0.939877 0.681229 -0.674842 0.283754 0.729761 0.656760 -0.190041 -0.093062 0.328590 0.939877 0.748205 -0.599728 0.283754 0.656909 0.729627 -0.190041 -0.126988 0.317026 0.939877 0.806940 -0.518007 0.283754 0.576821 0.794457 -0.190041 -0.159213 0.302131 0.939877 0.856356 -0.431438 0.283754 0.491229 0.850046 -0.190041 -0.190001 0.283780 0.939877 0.896857 -0.339310 0.283754 0.399433 0.896849 -0.190041 -0.218697 0.262304 0.939877 0.927480 -0.243444 0.283754 0.303237 0.933773 -0.190041 -0.244984 0.237938 0.939877 0.947887 -0.144897 0.283754 0.203701 0.960412 -0.190041 -0.268361 0.211220 0.939877 0.957807 -0.045711 0.283754 0.102897 0.976369 -0.190041 -0.289021 0.181930 0.939877 0.957323 0.054926 0.283754 0.000000 0.981776 -0.190041 -0.306496 0.150637 0.939877 0.946294 0.154957 0.283754 -0.102897 0.976369 -0.190041 -0.320478 0.118005 0.939877 0.925094 0.252357 0.283754 -0.203701 0.960412 -0.190041 -0.331081 0.083766 0.939877 0.893551 0.347924 0.283754 -0.303237 0.933773 -0.190041 -0.338037 0.048605 0.939877 0.852165 0.439658 0.283754 -0.399433 0.896849 -0.190041 -0.341270 0.012909 0.939877 0.801392 0.526550 0.283754 -0.491229 0.850046 -0.190041 -0.340766 -0.022589 0.939877 0.742399 0.606900 0.283754 -0.576821 0.794457 -0.190041 -0.336522 -0.058179 0.939877 0.674703 0.681366 0.283754 -0.656909 0.729627 -0.190041 -0.328571 -0.093129 0.939877 0.599575 0.748327 0.283754 -0.729761 0.656760 -0.190041 -0.317127 -0.126735 0.939877 0.518650 0.806527 0.283754 -0.793998 0.577453 -0.190041 -0.302098 -0.159274 0.939877 0.431264 0.856444 0.283754 -0.850146 0.491056 -0.190041 -0.283741 -0.190059 0.939877 0.339127 0.896926 0.283754 -0.896930 0.399250 -0.190041 -0.262259 -0.218751 0.939877 0.243255 0.927529 0.283754 -0.933835 0.303047 -0.190041 -0.238133 -0.244794 0.939877 0.145651 0.947771 0.283754 -0.960249 0.204465 -0.190041 -0.211165 -0.268404 0.939877 0.045516 0.957816 0.283754 -0.976390 0.102698 -0.190041 0.611369 -0.480357 -0.628876 -0.334716 -0.877073 0.344540 -0.717072 -0.000146 -0.696999 0.658347 -0.413636 -0.628876 -0.240949 -0.907323 0.344540 -0.713108 -0.075300 -0.696999 0.697730 -0.343056 -0.628876 -0.145456 -0.927435 0.344540 -0.701438 -0.148922 -0.696999 0.729842 -0.268039 -0.628876 -0.047453 -0.937572 0.344540 -0.681966 -0.221618 -0.696999 0.753915 -0.190070 -0.628876 0.051072 -0.937381 0.344540 -0.654983 -0.291872 -0.696999 0.769574 -0.110778 -0.628876 0.148109 -0.927015 0.344540 -0.621144 -0.358291 -0.696999 0.776946 -0.029511 -0.628876 0.244450 -0.906386 0.344540 -0.580172 -0.421418 -0.696999 0.775759 0.052081 -0.628876 0.338100 -0.875774 0.344540 -0.532809 -0.479903 -0.696999 0.766029 0.133100 -0.628876 0.428025 -0.835516 0.344540 -0.479577 -0.533102 -0.696999 0.748072 0.211904 -0.628876 0.512450 -0.786567 0.344540 -0.421643 -0.580008 -0.696999 0.721743 0.289140 -0.628876 0.592065 -0.728526 0.344540 -0.358532 -0.621005 -0.696999 0.687464 0.363192 -0.628876 0.665159 -0.662461 0.344540 -0.291472 -0.655162 -0.696999 0.646046 0.432597 -0.628876 0.730337 -0.589830 0.344540 -0.221883 -0.681880 -0.696999 0.597149 0.497924 -0.628876 0.788133 -0.510037 0.344540 -0.149195 -0.701380 -0.696999 0.541674 0.557768 -0.628876 0.837248 -0.424626 0.344540 -0.074864 -0.713154 -0.696999 0.480730 0.611076 -0.628876 0.876868 -0.335252 0.344540 -0.000292 -0.717072 -0.696999 0.414038 0.658094 -0.628876 0.907176 -0.241504 0.344540 0.074864 -0.713154 -0.696999 0.342784 0.697864 -0.628876 0.927491 -0.145095 0.344540 0.149195 -0.701380 -0.696999 0.267755 0.729947 -0.628876 0.937590 -0.047088 0.344540 0.221883 -0.681880 -0.696999 0.190531 0.753799 -0.628876 0.937412 0.050500 0.344540 0.291472 -0.655162 -0.696999 0.110478 0.769617 -0.628876 0.926957 0.148469 0.344540 0.358532 -0.621005 -0.696999 0.029208 0.776957 -0.628876 0.906291 0.244803 0.344540 0.421643 -0.580008 -0.696999 -0.051607 0.775791 -0.628876 0.875981 0.337565 0.344540 0.479577 -0.533102 -0.696999 -0.132632 0.766110 -0.628876 0.835777 0.427515 0.344540 0.532809 -0.479903 -0.696999 -0.212195 0.747990 -0.628876 0.786367 0.512756 0.344540 0.580172 -0.421418 -0.696999 -0.289421 0.721631 -0.628876 0.728296 0.592349 0.344540 0.621144 -0.358291 -0.696999 -0.362772 0.687686 -0.628876 0.662868 0.664755 0.344540 0.654983 -0.291872 -0.696999 -0.432848 0.645878 -0.628876 0.589546 0.730567 0.344540 0.681966 -0.221618 -0.696999 -0.498157 0.596955 -0.628876 0.509730 0.788332 0.344540 0.701438 -0.148922 -0.696999 -0.557437 0.542014 -0.628876 0.425138 0.836989 0.344540 0.713108 -0.075300 -0.696999 -0.611174 0.480606 -0.628876 0.335074 0.876937 0.344540 0.717072 -0.000146 -0.696999 -0.658179 0.413904 -0.628876 0.241319 0.907225 0.344540 0.713138 0.075009 -0.696999 -0.697934 0.342642 -0.628876 0.144906 0.927521 0.344540 0.701349 0.149338 -0.696999 -0.729733 0.268337 -0.628876 0.047835 0.937552 0.344540 0.682057 0.221340 -0.696999 -0.753838 0.190378 -0.628876 -0.050691 0.937402 0.344540 0.655102 0.291605 -0.696999 -0.769639 0.110322 -0.628876 -0.148658 0.926927 0.344540 0.620932 0.358659 -0.696999 -0.776963 0.029050 -0.628876 -0.244988 0.906241 0.344540 0.579922 0.421762 -0.696999 -0.775781 -0.051765 -0.628876 -0.337743 0.875912 0.344540 0.533005 0.479686 -0.696999 -0.766083 -0.132788 -0.628876 -0.427685 0.835690 0.344540 0.479795 0.532907 -0.696999 -0.747946 -0.212347 -0.628876 -0.512916 0.786263 0.344540 0.421300 0.580258 -0.696999 -0.721861 -0.288846 -0.628876 -0.591769 0.728768 0.344540 0.358785 0.620859 -0.696999 -0.687612 -0.362912 -0.628876 -0.664890 0.662732 0.344540 0.291739 0.655043 -0.696999 -0.645789 -0.432980 -0.628876 -0.730687 0.589397 0.344540 0.221479 0.682011 -0.696999 -0.596853 -0.498278 -0.628876 -0.788436 0.509570 0.344540 0.148779 0.701468 -0.696999 -0.541901 -0.557547 -0.628876 -0.837075 0.424967 0.344540 0.075154 0.713123 -0.696999 -0.480482 -0.611271 -0.628876 -0.877005 0.334895 0.344540 0.000000 0.717072 -0.696999 -0.413770 -0.658263 -0.628876 -0.907274 0.241134 0.344540 -0.075154 0.713123 -0.696999 -0.343198 -0.697661 -0.628876 -0.927405 0.145645 0.344540 -0.148779 0.701468 -0.696999 -0.268188 -0.729788 -0.628876 -0.937562 0.047644 0.344540 -0.221479 0.682011 -0.696999 -0.190224 -0.753877 -0.628876 -0.937392 -0.050882 0.344540 -0.291739 0.655043 -0.696999 -0.110165 -0.769662 -0.628876 -0.926896 -0.148847 0.344540 -0.358785 0.620859 -0.696999 -0.029669 -0.776940 -0.628876 -0.906436 -0.244266 0.344540 -0.421300 0.580258 -0.696999 0.051923 -0.775770 -0.628876 -0.875843 -0.337922 0.344540 -0.479795 0.532907 -0.696999 0.132944 -0.766056 -0.628876 -0.835603 -0.427855 0.344540 -0.533005 0.479686 -0.696999 0.211752 -0.748115 -0.628876 -0.786671 -0.512290 0.344540 -0.579922 0.421762 -0.696999 0.288993 -0.721802 -0.628876 -0.728647 -0.591917 0.344540 -0.620932 0.358659 -0.696999 0.363052 -0.687538 -0.628876 -0.662597 -0.665024 0.344540 -0.655102 0.291605 -0.696999 0.433111 -0.645701 -0.628876 -0.589248 -0.730807 0.344540 -0.682057 0.221340 -0.696999 0.497803 -0.597250 -0.628876 -0.510198 -0.788030 0.344540 -0.701349 0.149338 -0.696999 0.557657 -0.541787 -0.628876 -0.424797 -0.837162 0.344540 -0.713138 0.075009 -0.696999 -0.641488 0.356628 -0.679198 -0.244759 -0.934246 -0.259378 -0.727039 -0.000148 0.686596 -0.675332 0.287432 -0.679198 -0.145495 -0.954754 -0.259378 -0.723020 -0.076346 0.686596 -0.701522 0.215771 -0.679198 -0.045594 -0.964699 -0.259378 -0.711187 -0.150992 0.686596 -0.720273 0.141058 -0.679198 0.055765 -0.964165 -0.259378 -0.691446 -0.224698 0.686596 -0.731090 0.064791 -0.679198 0.156509 -0.953010 -0.259378 -0.664087 -0.295929 0.686596 -0.733866 -0.011455 -0.679198 0.254598 -0.931613 -0.259378 -0.629778 -0.363271 0.686596 -0.728624 -0.088307 -0.679198 0.350835 -0.899799 -0.259378 -0.588236 -0.427275 0.686596 -0.715356 -0.164185 -0.679198 0.443208 -0.858073 -0.259378 -0.540215 -0.486574 0.686596 -0.694208 -0.238255 -0.679198 0.530700 -0.806896 -0.259378 -0.486244 -0.540512 0.686596 -0.665723 -0.309036 -0.679198 0.611598 -0.747443 -0.259378 -0.427504 -0.588070 0.686596 -0.629668 -0.377106 -0.679198 0.686567 -0.679226 -0.259378 -0.363516 -0.629637 0.686596 -0.586676 -0.441023 -0.679198 0.753974 -0.603528 -0.259378 -0.295523 -0.664268 0.686596 -0.537723 -0.499545 -0.679198 0.812554 -0.521995 -0.259378 -0.224967 -0.691358 0.686596 -0.482406 -0.553151 -0.679198 0.862788 -0.433959 -0.259378 -0.151269 -0.711129 0.686596 -0.421775 -0.600664 -0.679198 0.903518 -0.341143 -0.259378 -0.075904 -0.723066 0.686596 -0.357020 -0.641270 -0.679198 0.934097 -0.245330 -0.259378 -0.000296 -0.727039 0.686596 -0.287844 -0.675156 -0.679198 0.954664 -0.146079 -0.259378 0.075904 -0.723066 0.686596 -0.215498 -0.701606 -0.679198 0.964717 -0.045218 -0.259378 0.151269 -0.711129 0.686596 -0.140778 -0.720328 -0.679198 0.964143 0.056140 -0.259378 0.224967 -0.691358 0.686596 -0.065238 -0.731050 -0.679198 0.953105 0.155927 -0.259378 0.295523 -0.664268 0.686596 0.011741 -0.733862 -0.679198 0.931514 0.254960 -0.259378 0.363516 -0.629637 0.686596 0.088590 -0.728589 -0.679198 0.899662 0.351185 -0.259378 0.427504 -0.588070 0.686596 0.163748 -0.715456 -0.679198 0.858344 0.442684 -0.259378 0.486244 -0.540512 0.686596 0.237831 -0.694354 -0.679198 0.807220 0.530207 -0.259378 0.540215 -0.486574 0.686596 0.309295 -0.665603 -0.679198 0.747205 0.611889 -0.259378 0.588236 -0.427275 0.686596 0.377351 -0.629521 -0.679198 0.678959 0.686831 -0.259378 0.629778 -0.363271 0.686596 0.440665 -0.586946 -0.679198 0.603989 0.753605 -0.259378 0.664087 -0.295929 0.686596 0.499754 -0.537528 -0.679198 0.521679 0.812757 -0.259378 0.691446 -0.224698 0.686596 0.553338 -0.482190 -0.679198 0.433623 0.862956 -0.259378 0.711187 -0.150992 0.686596 0.600406 -0.422141 -0.679198 0.341695 0.903309 -0.259378 0.723020 -0.076346 0.686596 0.641343 -0.356890 -0.679198 0.245140 0.934147 -0.259378 0.727039 -0.000148 0.686596 0.675215 -0.287707 -0.679198 0.145884 0.954694 -0.259378 0.723051 0.076052 0.686596 0.701650 -0.215355 -0.679198 0.045022 0.964726 -0.259378 0.711098 0.151414 0.686596 0.720216 -0.141351 -0.679198 -0.055372 0.964187 -0.259378 0.691537 0.224417 0.686596 0.731064 -0.065089 -0.679198 -0.156121 0.953074 -0.259378 0.664208 0.295659 0.686596 0.733859 0.011890 -0.679198 -0.255150 0.931462 -0.259378 0.629563 0.363644 0.686596 0.728571 0.088738 -0.679198 -0.351369 0.899591 -0.259378 0.587983 0.427624 0.686596 0.715423 0.163894 -0.679198 -0.442859 0.858253 -0.259378 0.540413 0.486354 0.686596 0.694305 0.237973 -0.679198 -0.530371 0.807112 -0.259378 0.486464 0.540314 0.686596 0.665540 0.309430 -0.679198 -0.612041 0.747080 -0.259378 0.427156 0.588323 0.686596 0.629821 0.376850 -0.679198 -0.686291 0.679506 -0.259378 0.363772 0.629489 0.686596 0.586856 0.440784 -0.679198 -0.753728 0.603835 -0.259378 0.295794 0.664148 0.686596 0.537427 0.499863 -0.679198 -0.812863 0.521514 -0.259378 0.224557 0.691491 0.686596 0.482078 0.553436 -0.679198 -0.863045 0.433448 -0.259378 0.150847 0.711218 0.686596 0.422019 0.600492 -0.679198 -0.903379 0.341511 -0.259378 0.076199 0.723035 0.686596 0.356759 0.641415 -0.679198 -0.934196 0.244949 -0.259378 0.000000 0.727039 0.686596 0.287569 0.675274 -0.679198 -0.954724 0.145690 -0.259378 -0.076199 0.723035 0.686596 0.215914 0.701478 -0.679198 -0.964690 0.045790 -0.259378 -0.150847 0.711218 0.686596 0.141204 0.720244 -0.679198 -0.964176 -0.055568 -0.259378 -0.224557 0.691491 0.686596 0.064940 0.731077 -0.679198 -0.953042 -0.156315 -0.259378 -0.295794 0.664148 0.686596 -0.012040 0.733857 -0.679198 -0.931410 -0.255340 -0.259378 -0.363772 0.629489 0.686596 -0.088158 0.728642 -0.679198 -0.899870 -0.350652 -0.259378 -0.427156 0.588323 0.686596 -0.164040 0.715389 -0.679198 -0.858163 -0.443034 -0.259378 -0.486464 0.540314 0.686596 -0.238114 0.694257 -0.679198 -0.807004 -0.530535 -0.259378 -0.540413 0.486354 0.686596 -0.308900 0.665786 -0.679198 -0.747567 -0.611446 -0.259378 -0.587983 0.427624 0.686596 -0.376978 0.629745 -0.679198 -0.679366 -0.686429 -0.259378 -0.629563 0.363644 0.686596 -0.440904 0.586766 -0.679198 -0.603682 -0.753851 -0.259378 -0.664208 0.295659 0.686596 -0.499973 0.537325 -0.679198 -0.521348 -0.812969 -0.259378 -0.691537 0.224417 0.686596 -0.553052 0.482518 -0.679198 -0.434135 -0.862699 -0.259378 -0.711098 0.151414 0.686596 -0.600578 0.421897 -0.679198 -0.341327 -0.903448 -0.259378 -0.723051 0.076052 0.686596 0.867458 0.174084 0.466059 -0.153399 0.984731 -0.082305 -0.473271 -0.000096 0.880917 0.844435 0.264041 0.466059 -0.255761 0.963230 -0.082305 -0.470654 -0.049698 0.880917 0.812462 0.350278 0.466059 -0.354374 0.931475 -0.082305 -0.462952 -0.098289 0.880917 0.771276 0.433500 0.466059 -0.450048 0.889203 -0.082305 -0.450101 -0.146269 0.880917 0.721594 0.511948 0.466059 -0.540764 0.837138 -0.082305 -0.432292 -0.192637 0.880917 0.664548 0.584093 0.466059 -0.624748 0.776477 -0.082305 -0.409958 -0.236473 0.880917 0.599672 0.650525 0.466059 -0.702687 0.706722 -0.082305 -0.382916 -0.278138 0.880917 0.528189 0.709792 0.466059 -0.772887 0.629183 -0.082305 -0.351656 -0.316738 0.880917 0.450889 0.761241 0.466059 -0.834573 0.544714 -0.082305 -0.316523 -0.351850 0.880917 0.369426 0.803936 0.466059 -0.886612 0.455132 -0.082305 -0.278287 -0.382808 0.880917 0.283133 0.838227 0.466059 -0.929430 0.359702 -0.082305 -0.236633 -0.409866 0.880917 0.193722 0.863285 0.466059 -0.962011 0.260310 -0.082305 -0.192373 -0.432409 0.880917 0.103055 0.878731 0.466059 -0.983836 0.159035 -0.082305 -0.146444 -0.450044 0.880917 0.010390 0.884693 0.466059 -0.995086 0.055046 -0.082305 -0.098469 -0.462914 0.880917 -0.082389 0.880909 0.466059 -0.995375 -0.049550 -0.082305 -0.049410 -0.470684 0.880917 -0.173554 0.867564 0.466059 -0.984824 -0.152797 -0.082305 -0.000193 -0.473271 0.880917 -0.263525 0.844597 0.466059 -0.963386 -0.255172 -0.082305 0.049410 -0.470684 0.880917 -0.350594 0.812326 0.466059 -0.931337 -0.354737 -0.082305 0.098469 -0.462914 0.880917 -0.433800 0.771107 0.466059 -0.889028 -0.450394 -0.082305 0.146444 -0.450044 0.880917 -0.511507 0.721907 0.466059 -0.837468 -0.540252 -0.082305 0.192373 -0.432409 0.880917 -0.584351 0.664321 0.466059 -0.776234 -0.625050 -0.082305 0.236633 -0.409866 0.880917 -0.650758 0.599418 0.466059 -0.706449 -0.702962 -0.082305 0.278287 -0.382808 0.880917 -0.709470 0.528623 0.466059 -0.629655 -0.772502 -0.082305 0.316523 -0.351850 0.880917 -0.760966 0.451354 0.466059 -0.545224 -0.834240 -0.082305 0.351656 -0.316738 0.880917 -0.804080 0.369113 0.466059 -0.454787 -0.886789 -0.082305 0.382916 -0.278138 0.880917 -0.838337 0.282807 0.466059 -0.359340 -0.929570 -0.082305 0.409958 -0.236473 0.880917 -0.863166 0.194249 0.466059 -0.260898 -0.961851 -0.082305 0.432292 -0.192637 0.880917 -0.878771 0.102713 0.466059 -0.158652 -0.983898 -0.082305 0.450101 -0.146269 0.880917 -0.884697 0.010046 0.466059 -0.054658 -0.995107 -0.082305 0.462952 -0.098289 0.880917 -0.880959 -0.081851 0.466059 0.048942 -0.995405 -0.082305 0.470654 -0.049698 0.880917 -0.867529 -0.173731 0.466059 0.152998 -0.984793 -0.082305 0.473271 -0.000096 0.880917 -0.844543 -0.263697 0.466059 0.255368 -0.963334 -0.082305 0.470674 0.049506 0.880917 -0.812254 -0.350759 0.466059 0.354926 -0.931264 -0.082305 0.462894 0.098564 0.880917 -0.771452 -0.433186 0.466059 0.449686 -0.889387 -0.082305 0.450160 0.146085 0.880917 -0.721803 -0.511654 0.466059 0.540423 -0.837358 -0.082305 0.432370 0.192461 0.880917 -0.664202 -0.584486 0.466059 0.625208 -0.776106 -0.082305 0.409818 0.236716 0.880917 -0.599286 -0.650881 0.466059 0.703106 -0.706306 -0.082305 0.382751 0.278365 0.880917 -0.528478 -0.709577 0.466059 0.772630 -0.629498 -0.082305 0.351785 0.316595 0.880917 -0.451199 -0.761057 0.466059 0.834351 -0.545054 -0.082305 0.316666 0.351721 0.880917 -0.368950 -0.804155 0.466059 0.886882 -0.454606 -0.082305 0.278060 0.382973 0.880917 -0.283475 -0.838112 0.466059 0.929284 -0.360080 -0.082305 0.236800 0.409770 0.880917 -0.194073 -0.863206 0.466059 0.961905 -0.260702 -0.082305 0.192549 0.432331 0.880917 -0.102534 -0.878792 0.466059 0.983930 -0.158451 -0.082305 0.146177 0.450131 0.880917 -0.009866 -0.884699 0.466059 0.995118 -0.054456 -0.082305 0.098195 0.462972 0.880917 0.082030 -0.880943 0.466059 0.995395 0.049144 -0.082305 0.049602 0.470664 0.880917 0.173908 -0.867494 0.466059 0.984762 0.153198 -0.082305 0.000000 0.473271 0.880917 0.263869 -0.844489 0.466059 0.963282 0.255565 -0.082305 -0.049602 0.470664 0.880917 0.350112 -0.812533 0.466059 0.931547 0.354185 -0.082305 -0.098195 0.462972 0.880917 0.433343 -0.771364 0.466059 0.889295 0.449867 -0.082305 -0.146177 0.450131 0.880917 0.511801 -0.721698 0.466059 0.837248 0.540594 -0.082305 -0.192549 0.432331 0.880917 0.584622 -0.664083 0.466059 0.775979 0.625366 -0.082305 -0.236800 0.409770 0.880917 0.650403 -0.599804 0.466059 0.706865 0.702543 -0.082305 -0.278060 0.382973 0.880917 0.709685 -0.528334 0.466059 0.629341 0.772759 -0.082305 -0.316666 0.351721 0.880917 0.761149 -0.451044 0.466059 0.544884 0.834462 -0.082305 -0.351785 0.316595 0.880917 0.803861 -0.369590 0.466059 0.455312 0.886519 -0.082305 -0.382751 0.278365 0.880917 0.838169 -0.283304 0.466059 0.359891 0.929357 -0.082305 -0.409818 0.236716 0.880917 0.863245 -0.193898 0.466059 0.260506 0.961958 -0.082305 -0.432370 0.192461 0.880917 0.878813 -0.102355 0.466059 0.158251 0.983963 -0.082305 -0.450160 0.146085 0.880917 0.884690 -0.010571 0.466059 0.055248 0.995075 -0.082305 -0.462894 0.098564 0.880917 0.880926 0.082210 0.466059 -0.049347 0.995385 -0.082305 -0.470674 0.049506 0.880917 0.180628 0.950833 -0.251575 0.554985 -0.309703 -0.772059 -0.812013 -0.000165 -0.583640 0.079979 0.964528 -0.251575 0.584388 -0.249831 -0.772059 -0.807523 -0.085269 -0.583640 -0.020584 0.967619 -0.251575 0.607166 -0.187815 -0.772059 -0.794308 -0.168640 -0.583640 -0.121884 0.960132 -0.251575 0.623507 -0.123145 -0.772059 -0.772259 -0.250960 -0.583640 -0.221841 0.942070 -0.251575 0.632979 -0.057119 -0.772059 -0.741703 -0.330516 -0.583640 -0.318441 0.913950 -0.251575 0.635489 0.008901 -0.772059 -0.703384 -0.405729 -0.583640 -0.412476 0.875542 -0.251575 0.631056 0.075456 -0.772059 -0.656987 -0.477214 -0.583640 -0.501967 0.827489 -0.251575 0.619672 0.141179 -0.772059 -0.603353 -0.543442 -0.583640 -0.585930 0.770322 -0.251575 0.601463 0.205348 -0.772059 -0.543074 -0.603685 -0.583640 -0.662733 0.705333 -0.251575 0.576895 0.266678 -0.772059 -0.477469 -0.656801 -0.583640 -0.733007 0.631989 -0.251575 0.545768 0.325672 -0.772059 -0.406002 -0.703226 -0.583640 -0.795207 0.551684 -0.251575 0.508630 0.381079 -0.772059 -0.330063 -0.741905 -0.583640 -0.848182 0.466151 -0.251575 0.466321 0.431822 -0.772059 -0.251261 -0.772161 -0.583640 -0.892367 0.374688 -0.251575 0.418494 0.478317 -0.772059 -0.168949 -0.794243 -0.583640 -0.926722 0.279098 -0.251575 0.366058 0.519544 -0.772059 -0.084776 -0.807575 -0.583640 -0.950723 0.181208 -0.251575 0.310042 0.554796 -0.772059 -0.000331 -0.812013 -0.583640 -0.964479 0.080568 -0.251575 0.250188 0.584235 -0.772059 0.084776 -0.807575 -0.583640 -0.967611 -0.020960 -0.251575 0.187578 0.607239 -0.772059 0.168949 -0.794243 -0.583640 -0.960085 -0.122257 -0.251575 0.122902 0.623554 -0.772059 0.251261 -0.772161 -0.583640 -0.942206 -0.221266 -0.251575 0.057505 0.632944 -0.772059 0.330063 -0.741905 -0.583640 -0.913826 -0.318797 -0.251575 -0.009148 0.635485 -0.772059 0.406002 -0.703226 -0.583640 -0.875381 -0.412817 -0.251575 -0.075701 0.631026 -0.772059 0.477469 -0.656801 -0.583640 -0.827796 -0.501462 -0.251575 -0.140801 0.619758 -0.772059 0.543074 -0.603685 -0.583640 -0.770680 -0.585459 -0.251575 -0.204981 0.601588 -0.772059 0.603353 -0.543442 -0.583640 -0.705075 -0.663007 -0.251575 -0.266902 0.576791 -0.772059 0.656987 -0.477214 -0.583640 -0.631704 -0.733253 -0.251575 -0.325884 0.545641 -0.772059 0.703384 -0.405729 -0.583640 -0.552170 -0.794870 -0.251575 -0.380768 0.508862 -0.772059 0.741703 -0.330516 -0.583640 -0.465821 -0.848364 -0.251575 -0.432003 0.466153 -0.772059 0.772259 -0.250960 -0.583640 -0.374341 -0.892513 -0.251575 -0.478480 0.418308 -0.772059 0.794308 -0.168640 -0.583640 -0.279664 -0.926552 -0.251575 -0.519321 0.366376 -0.772059 0.807523 -0.085269 -0.583640 -0.181015 -0.950760 -0.251575 -0.554859 0.309929 -0.772059 0.812013 -0.000165 -0.583640 -0.080371 -0.964495 -0.251575 -0.584286 0.250069 -0.772059 0.807558 0.084940 -0.583640 0.021157 -0.967607 -0.251575 -0.607277 0.187455 -0.772059 0.794208 0.169110 -0.583640 0.121493 -0.960182 -0.251575 -0.623456 0.123399 -0.772059 0.772361 0.250645 -0.583640 0.221458 -0.942161 -0.251575 -0.632956 0.057376 -0.772059 0.741838 0.330214 -0.583640 0.318983 -0.913761 -0.251575 -0.635483 -0.009278 -0.772059 0.703144 0.406145 -0.583640 0.412995 -0.875297 -0.251575 -0.631011 -0.075830 -0.772059 0.656704 0.477603 -0.583640 0.501630 -0.827694 -0.251575 -0.619730 -0.140927 -0.772059 0.603575 0.543197 -0.583640 0.585616 -0.770561 -0.251575 -0.601546 -0.205103 -0.772059 0.543320 0.603464 -0.583640 0.663151 -0.704940 -0.251575 -0.576737 -0.267020 -0.772059 0.477080 0.657084 -0.583640 0.732750 -0.632288 -0.251575 -0.545901 -0.325450 -0.772059 0.406289 0.703061 -0.583640 0.794982 -0.552008 -0.251575 -0.508785 -0.380872 -0.772059 0.330365 0.741771 -0.583640 0.848458 -0.465648 -0.251575 -0.466065 -0.432098 -0.772059 0.250803 0.772310 -0.583640 0.892589 -0.374159 -0.251575 -0.418211 -0.478565 -0.772059 0.168478 0.794343 -0.583640 0.926609 -0.279476 -0.251575 -0.366270 -0.519395 -0.772059 0.085105 0.807541 -0.583640 0.950796 -0.180821 -0.251575 -0.309816 -0.554922 -0.772059 0.000000 0.812013 -0.583640 0.964511 -0.080175 -0.251575 -0.249950 -0.584337 -0.772059 -0.085105 0.807541 -0.583640 0.967623 0.020387 -0.251575 -0.187938 -0.607128 -0.772059 -0.168478 0.794343 -0.583640 0.960157 0.121688 -0.251575 -0.123272 -0.623482 -0.772059 -0.250803 0.772310 -0.583640 0.942115 0.221649 -0.251575 -0.057248 -0.632967 -0.772059 -0.330365 0.741771 -0.583640 0.913696 0.319169 -0.251575 0.009407 -0.635481 -0.772059 -0.406289 0.703061 -0.583640 0.875626 0.412298 -0.251575 0.075327 -0.631071 -0.772059 -0.477080 0.657084 -0.583640 0.827592 0.501799 -0.251575 0.141053 -0.619701 -0.772059 -0.543320 0.603464 -0.583640 0.770442 0.585773 -0.251575 0.205226 -0.601504 -0.772059 -0.603575 0.543197 -0.583640 0.705468 0.662589 -0.251575 0.266560 -0.576949 -0.772059 -0.656704 0.477603 -0.583640 0.632139 0.732878 -0.251575 0.325561 -0.545834 -0.772059 -0.703144 0.406145 -0.583640 0.551846 0.795095 -0.251575 0.380975 -0.508707 -0.772059 -0.741838 0.330214 -0.583640 0.465475 0.848553 -0.251575 0.432193 -0.465977 -0.772059 -0.772361 0.250645 -0.583640 0.374870 0.892291 -0.251575 0.478232 -0.418592 -0.772059 -0.794208 0.169110 -0.583640 0.279287 0.926665 -0.251575 0.519470 -0.366164 -0.772059 -0.807558 0.084940 -0.583640 0.056537 0.878073 0.475175 -0.104163 0.478527 -0.871873 -0.992952 -0.000202 0.118517 -0.035802 0.879163 0.475175 -0.153742 0.464974 -0.871873 -0.987462 -0.104270 0.118517 -0.126877 0.870696 0.475175 -0.201182 0.446501 -0.871873 -0.971302 -0.206217 0.118517 -0.217434 0.852603 0.475175 -0.246870 0.422957 -0.871873 -0.944340 -0.306881 0.118517 -0.305595 0.825118 0.475175 -0.289839 0.394754 -0.871873 -0.906976 -0.404164 0.118517 -0.389602 0.788936 0.475175 -0.329254 0.362532 -0.871873 -0.860118 -0.496136 0.118517 -0.470142 0.743758 0.475175 -0.365436 0.326027 -0.871873 -0.803382 -0.583550 0.118517 -0.545504 0.690387 0.475175 -0.397594 0.285931 -0.871873 -0.737797 -0.664537 0.118517 -0.614857 0.629412 0.475175 -0.425372 0.242686 -0.871873 -0.664086 -0.738203 0.118517 -0.676876 0.562181 0.475175 -0.448267 0.197216 -0.871873 -0.583863 -0.803155 0.118517 -0.732069 0.488144 0.475175 -0.466468 0.149148 -0.871873 -0.496471 -0.859925 0.118517 -0.779198 0.408729 0.475175 -0.479531 0.099437 -0.871873 -0.403610 -0.907222 0.118517 -0.817419 0.325631 0.475175 -0.487263 0.049119 -0.871873 -0.307248 -0.944220 0.118517 -0.847045 0.238166 0.475175 -0.489727 -0.002221 -0.871873 -0.206595 -0.971222 0.118517 -0.867342 0.148078 0.475175 -0.486797 -0.053535 -0.871873 -0.103666 -0.987526 0.118517 -0.878038 0.057074 0.475175 -0.478590 -0.103870 -0.871873 -0.000404 -0.992952 0.118517 -0.879184 -0.035265 0.475175 -0.465068 -0.153458 -0.871873 0.103666 -0.987526 0.118517 -0.870646 -0.127216 0.475175 -0.446423 -0.201355 -0.871873 0.206595 -0.971222 0.118517 -0.852518 -0.217765 0.475175 -0.422861 -0.247035 -0.871873 0.307248 -0.944220 0.118517 -0.825305 -0.305091 0.475175 -0.394931 -0.289598 -0.871873 0.403610 -0.907222 0.118517 -0.788784 -0.389908 0.475175 -0.362404 -0.329395 -0.871873 0.496471 -0.859925 0.118517 -0.743575 -0.470431 0.475175 -0.325885 -0.365563 -0.871873 0.583863 -0.803155 0.118517 -0.690720 -0.545082 0.475175 -0.286174 -0.397419 -0.871873 0.664086 -0.738203 0.118517 -0.629788 -0.614472 0.475175 -0.242946 -0.425223 -0.871873 0.737797 -0.664537 0.118517 -0.561918 -0.677094 0.475175 -0.197041 -0.448344 -0.871873 0.803382 -0.583550 0.118517 -0.487859 -0.732258 0.475175 -0.148966 -0.466526 -0.871873 0.860118 -0.496136 0.118517 -0.409205 -0.778948 0.475175 -0.099730 -0.479470 -0.871873 0.906976 -0.404164 0.118517 -0.325312 -0.817545 0.475175 -0.048929 -0.487282 -0.871873 0.944340 -0.306881 0.118517 -0.237836 -0.847138 0.475175 0.002411 -0.489726 -0.871873 0.971302 -0.206217 0.118517 -0.148608 -0.867251 0.475175 0.053238 -0.486830 -0.871873 0.987462 -0.104270 0.118517 -0.056895 -0.878050 0.475175 0.103968 -0.478569 -0.871873 0.992952 -0.000202 0.118517 0.035444 -0.879177 0.475175 0.153553 -0.465037 -0.871873 0.987505 0.103867 0.118517 0.127393 -0.870620 0.475175 0.201446 -0.446382 -0.871873 0.971180 0.206793 0.118517 0.217086 -0.852691 0.475175 0.246698 -0.423058 -0.871873 0.944465 0.306496 0.118517 0.305259 -0.825243 0.475175 0.289679 -0.394872 -0.871873 0.907140 0.403795 0.118517 0.390069 -0.788705 0.475175 0.329469 -0.362337 -0.871873 0.859824 0.496646 0.118517 0.470583 -0.743479 0.475175 0.365630 -0.325811 -0.871873 0.803036 0.584026 0.118517 0.545223 -0.690609 0.475175 0.397477 -0.286093 -0.871873 0.738068 0.664236 0.118517 0.614601 -0.629663 0.475175 0.425273 -0.242859 -0.871873 0.664386 0.737933 0.118517 0.677209 -0.561780 0.475175 0.448384 -0.196950 -0.871873 0.583387 0.803501 0.118517 0.731870 -0.488442 0.475175 0.466407 -0.149338 -0.871873 0.496821 0.859722 0.118517 0.779031 -0.409047 0.475175 0.479490 -0.099633 -0.871873 0.403980 0.907058 0.118517 0.817612 -0.325146 0.475175 0.487292 -0.048830 -0.871873 0.306689 0.944402 0.118517 0.847186 -0.237664 0.475175 0.489726 0.002511 -0.871873 0.206019 0.971344 0.118517 0.867281 -0.148431 0.475175 0.486819 0.053337 -0.871873 0.104068 0.987483 0.118517 0.878062 -0.056716 0.475175 0.478548 0.104065 -0.871873 0.000000 0.992952 0.118517 0.879170 0.035623 0.475175 0.465005 0.153647 -0.871873 -0.104068 0.987483 0.118517 0.870722 0.126700 0.475175 0.446542 0.201091 -0.871873 -0.206019 0.971344 0.118517 0.852647 0.217260 0.475175 0.423007 0.246784 -0.871873 -0.306689 0.944402 0.118517 0.825181 0.305427 0.475175 0.394813 0.289759 -0.871873 -0.403980 0.907058 0.118517 0.788625 0.390230 0.475175 0.362270 0.329542 -0.871873 -0.496821 0.859722 0.118517 0.743853 0.469990 0.475175 0.326102 0.365370 -0.871873 -0.583387 0.803501 0.118517 0.690498 0.545363 0.475175 0.286012 0.397536 -0.871873 -0.664386 0.737933 0.118517 0.629537 0.614729 0.475175 0.242772 0.425322 -0.871873 -0.738068 0.664236 0.118517 0.562319 0.676761 0.475175 0.197307 0.448227 -0.871873 -0.803036 0.584026 0.118517 0.488293 0.731969 0.475175 0.149243 0.466438 -0.871873 -0.859824 0.496646 0.118517 0.408888 0.779114 0.475175 0.099535 0.479510 -0.871873 -0.907140 0.403795 0.118517 0.324979 0.817678 0.475175 0.048731 0.487302 -0.871873 -0.944465 0.306496 0.118517 0.238338 0.846997 0.475175 -0.002121 0.489727 -0.871873 -0.971180 0.206793 0.118517 0.148254 0.867312 0.475175 -0.053436 0.486808 -0.871873 -0.987505 0.103867 0.118517 -0.066081 -0.988994 0.132380 -0.442808 0.147956 0.884325 -0.894178 -0.000182 -0.447711 0.037937 -0.990473 0.132380 -0.455876 0.100732 0.884325 -0.889235 -0.093897 -0.447711 0.140556 -0.981183 0.132380 -0.463870 0.052862 0.884325 -0.874682 -0.185704 -0.447711 0.242616 -0.961048 0.132380 -0.466855 0.003954 0.884325 -0.850402 -0.276354 -0.447711 0.342005 -0.930327 0.132380 -0.464699 -0.044998 0.884325 -0.816754 -0.363960 -0.447711 0.436737 -0.889796 0.132380 -0.457516 -0.092996 0.884325 -0.774558 -0.446783 -0.447711 0.527588 -0.839122 0.132380 -0.445250 -0.140435 0.884325 -0.723466 -0.525502 -0.447711 0.612629 -0.779206 0.132380 -0.428079 -0.186327 0.884325 -0.664405 -0.598432 -0.447711 0.690921 -0.710706 0.132380 -0.406193 -0.230166 0.884325 -0.598026 -0.664771 -0.447711 0.760968 -0.635140 0.132380 -0.380104 -0.271091 0.884325 -0.525783 -0.723261 -0.447711 0.823345 -0.551887 0.132380 -0.349599 -0.309435 0.884325 -0.447084 -0.774384 -0.447711 0.876652 -0.462555 0.132380 -0.315242 -0.344372 0.884325 -0.363461 -0.816977 -0.447711 0.919934 -0.369049 0.132380 -0.277789 -0.375237 0.884325 -0.276685 -0.850294 -0.447711 0.953547 -0.270600 0.132380 -0.236931 -0.402285 0.884325 -0.186044 -0.874610 -0.447711 0.976656 -0.169171 0.132380 -0.193464 -0.424901 0.884325 -0.093354 -0.889292 -0.447711 0.988953 -0.066685 0.132380 -0.148227 -0.442717 0.884325 -0.000364 -0.894178 -0.447711 0.990496 0.037332 0.132380 -0.101010 -0.455814 0.884325 0.093354 -0.889292 -0.447711 0.981128 0.140937 0.132380 -0.052682 -0.463890 0.884325 0.186044 -0.874610 -0.447711 0.960953 0.242990 0.132380 -0.003772 -0.466857 0.884325 0.276685 -0.850294 -0.447711 0.930536 0.341436 0.132380 0.044714 -0.464726 0.884325 0.363461 -0.816977 -0.447711 0.889626 0.437083 0.132380 0.093174 -0.457480 0.884325 0.447084 -0.774384 -0.447711 0.838917 0.527915 0.132380 0.140608 -0.445195 0.884325 0.525783 -0.723261 -0.447711 0.779580 0.612153 0.132380 0.186065 -0.428193 0.884325 0.598026 -0.664771 -0.447711 0.711128 0.690487 0.132380 0.229918 -0.406334 0.884325 0.664405 -0.598432 -0.447711 0.634844 0.761215 0.132380 0.271239 -0.379999 0.884325 0.723466 -0.525502 -0.447711 0.551567 0.823559 0.132380 0.309571 -0.349478 0.884325 0.774558 -0.446783 -0.447711 0.463091 0.876369 0.132380 0.344179 -0.315453 0.884325 0.816754 -0.363960 -0.447711 0.368691 0.920078 0.132380 0.375345 -0.277643 0.884325 0.850402 -0.276354 -0.447711 0.270229 0.953652 0.132380 0.402377 -0.236775 0.884325 0.874682 -0.185704 -0.447711 0.169768 0.976552 0.132380 0.424783 -0.193724 0.884325 0.889235 -0.093897 -0.447711 0.066483 0.988967 0.132380 0.442747 -0.148137 0.884325 0.894178 -0.000182 -0.447711 -0.037534 0.990488 0.132380 0.455835 -0.100918 0.884325 0.889273 0.093535 -0.447711 -0.141137 0.981099 0.132380 0.463901 -0.052587 0.884325 0.874572 0.186222 -0.447711 -0.242225 0.961146 0.132380 0.466854 -0.004144 0.884325 0.850514 0.276008 -0.447711 -0.341626 0.930466 0.132380 0.464717 0.044808 0.884325 0.816903 0.363628 -0.447711 -0.437264 0.889537 0.132380 0.457461 0.093267 0.884325 0.774293 0.447242 -0.447711 -0.528086 0.838809 0.132380 0.445167 0.140699 0.884325 0.723154 0.525930 -0.447711 -0.612311 0.779455 0.132380 0.428155 0.186152 0.884325 0.664649 0.598161 -0.447711 -0.690632 0.710988 0.132380 0.406287 0.230001 0.884325 0.598297 0.664527 -0.447711 -0.761345 0.634689 0.132380 0.379944 0.271316 0.884325 0.525354 0.723573 -0.447711 -0.823120 0.552222 0.132380 0.349725 0.309293 0.884325 0.447400 0.774202 -0.447711 -0.876463 0.462912 0.132380 0.315383 0.344243 0.884325 0.363794 0.816829 -0.447711 -0.920153 0.368503 0.132380 0.277566 0.375402 0.884325 0.276181 0.850458 -0.447711 -0.953707 0.270035 0.132380 0.236693 0.402425 0.884325 0.185526 0.874720 -0.447711 -0.976587 0.169569 0.132380 0.193637 0.424822 0.884325 0.093716 0.889254 -0.447711 -0.988980 0.066282 0.132380 0.148046 0.442777 0.884325 0.000000 0.894178 -0.447711 -0.990480 -0.037735 0.132380 0.100825 0.455855 0.884325 -0.093716 0.889254 -0.447711 -0.981211 -0.140356 0.132380 0.052957 0.463859 0.884325 -0.185526 0.874720 -0.447711 -0.961097 -0.242421 0.132380 0.004049 0.466855 0.884325 -0.276181 0.850458 -0.447711 -0.930397 -0.341816 0.132380 -0.044903 0.464708 0.884325 -0.363794 0.816829 -0.447711 -0.889448 -0.437445 0.132380 -0.093360 0.457442 0.884325 -0.447400 0.774202 -0.447711 -0.839230 -0.527418 0.132380 -0.140344 0.445279 0.884325 -0.525354 0.723573 -0.447711 -0.779330 -0.612470 0.132380 -0.186240 0.428117 0.884325 -0.598297 0.664527 -0.447711 -0.710847 -0.690776 0.132380 -0.230084 0.406240 0.884325 -0.664649 0.598161 -0.447711 -0.635295 -0.760839 0.132380 -0.271013 0.380160 0.884325 -0.723154 0.525930 -0.447711 -0.552055 -0.823232 0.132380 -0.309364 0.349662 0.884325 -0.774293 0.447242 -0.447711 -0.462734 -0.876557 0.132380 -0.344307 0.315312 0.884325 -0.816903 0.363628 -0.447711 -0.368316 -0.920228 0.132380 -0.375458 0.277490 0.884325 -0.850514 0.276008 -0.447711 -0.270794 -0.953491 0.132380 -0.402236 0.237013 0.884325 -0.874572 0.186222 -0.447711 -0.169370 -0.976621 0.132380 -0.424862 0.193551 0.884325 -0.889273 0.093535 -0.447711 -0.065243 0.848302 0.525477 0.104144 0.529512 -0.841886 -0.992420 -0.000202 -0.122892 -0.153792 0.836793 0.525477 0.048073 0.537511 -0.841886 -0.986933 -0.104214 -0.122892 -0.239831 0.816306 0.525477 -0.007987 0.539597 -0.841886 -0.970782 -0.206107 -0.122892 -0.324064 0.786674 0.525477 -0.064496 0.535788 -0.841886 -0.943834 -0.306717 -0.122892 -0.404729 0.748377 0.525477 -0.120296 0.526078 -0.841886 -0.906490 -0.403948 -0.122892 -0.480233 0.702318 0.525477 -0.174259 0.510747 -0.841886 -0.859657 -0.495870 -0.122892 -0.551196 0.648118 0.525477 -0.226829 0.489670 -0.841886 -0.802952 -0.583238 -0.122892 -0.616088 0.586779 0.525477 -0.276901 0.463200 -0.841886 -0.737402 -0.664181 -0.122892 -0.674193 0.518977 0.525477 -0.323923 0.431628 -0.841886 -0.663730 -0.737808 -0.122892 -0.724427 0.446183 0.525477 -0.366981 0.395669 -0.841886 -0.583550 -0.802725 -0.122892 -0.767200 0.367801 0.525477 -0.406429 0.355027 -0.841886 -0.496205 -0.859464 -0.122892 -0.801523 0.285367 0.525477 -0.441400 0.310475 -0.841886 -0.403394 -0.906736 -0.122892 -0.826817 0.200617 0.525477 -0.471246 0.262975 -0.841886 -0.307084 -0.943714 -0.122892 -0.843290 0.112856 0.525477 -0.496212 0.212137 -0.841886 -0.206484 -0.970702 -0.122892 -0.850473 0.023851 0.525477 -0.515713 0.158962 -0.841886 -0.103611 -0.986997 -0.122892 -0.848342 -0.064725 0.525477 -0.529448 0.104467 -0.841886 -0.000404 -0.992420 -0.122892 -0.836886 -0.153281 0.525477 -0.537481 0.048402 -0.841886 0.103611 -0.986997 -0.122892 -0.816212 -0.240148 0.525477 -0.539594 -0.008197 -0.841886 0.206484 -0.970702 -0.122892 -0.786548 -0.324371 0.525477 -0.535763 -0.064705 -0.841886 0.307084 -0.943714 -0.122892 -0.748624 -0.404271 0.525477 -0.526151 -0.119974 -0.841886 0.403394 -0.906736 -0.122892 -0.702131 -0.480506 0.525477 -0.510679 -0.174458 -0.841886 0.496205 -0.859464 -0.122892 -0.647903 -0.551448 0.525477 -0.489582 -0.227020 -0.841886 0.583550 -0.802725 -0.122892 -0.587155 -0.615729 0.525477 -0.463369 -0.276618 -0.841886 0.663730 -0.737808 -0.122892 -0.519389 -0.673876 0.525477 -0.431826 -0.323659 -0.841886 0.737402 -0.664181 -0.122892 -0.445901 -0.724600 0.525477 -0.395526 -0.367135 -0.841886 0.802952 -0.583238 -0.122892 -0.367502 -0.767343 0.525477 -0.354869 -0.406567 -0.841886 0.859657 -0.495870 -0.122892 -0.285857 -0.801349 0.525477 -0.310745 -0.441210 -0.841886 0.906490 -0.403948 -0.122892 -0.200295 -0.826895 0.525477 -0.262792 -0.471348 -0.841886 0.943834 -0.306717 -0.122892 -0.112528 -0.843333 0.525477 -0.211944 -0.496295 -0.841886 0.970782 -0.206107 -0.122892 -0.024371 -0.850459 0.525477 -0.159277 -0.515616 -0.841886 0.986933 -0.104214 -0.122892 0.064898 -0.848329 0.525477 -0.104359 -0.529469 -0.841886 0.992420 -0.000202 -0.122892 0.153451 -0.836855 0.525477 -0.048292 -0.537491 -0.841886 0.986975 0.103812 -0.122892 0.240314 -0.816163 0.525477 0.008307 -0.539592 -0.841886 0.970660 0.206682 -0.122892 0.323744 -0.786806 0.525477 0.064278 -0.535814 -0.841886 0.943959 0.306332 -0.122892 0.404424 -0.748542 0.525477 0.120081 -0.526127 -0.841886 0.906654 0.403579 -0.122892 0.480649 -0.702033 0.525477 0.174562 -0.510644 -0.841886 0.859363 0.496380 -0.122892 0.551580 -0.647791 0.525477 0.227120 -0.489536 -0.841886 0.802606 0.583713 -0.122892 0.615849 -0.587030 0.525477 0.276712 -0.463313 -0.841886 0.737672 0.663880 -0.122892 0.673982 -0.519252 0.525477 0.323747 -0.431760 -0.841886 0.664030 0.737537 -0.122892 0.724691 -0.445754 0.525477 0.367215 -0.395451 -0.841886 0.583074 0.803070 -0.122892 0.767051 -0.368113 0.525477 0.406284 -0.355193 -0.841886 0.496555 0.859262 -0.122892 0.801407 -0.285693 0.525477 0.441273 -0.310655 -0.841886 0.403763 0.906572 -0.122892 0.826936 -0.200127 0.525477 0.471402 -0.262696 -0.841886 0.306524 0.943896 -0.122892 0.843356 -0.112356 0.525477 0.496338 -0.211842 -0.841886 0.205909 0.970824 -0.122892 0.850464 -0.024198 0.525477 0.515648 -0.159172 -0.841886 0.104013 0.986954 -0.122892 0.848316 0.065070 0.525477 0.529491 -0.104251 -0.841886 0.000000 0.992420 -0.122892 0.836824 0.153621 0.525477 0.537501 -0.048183 -0.841886 -0.104013 0.986954 -0.122892 0.816355 0.239664 0.525477 0.539599 0.007877 -0.841886 -0.205909 0.970824 -0.122892 0.786740 0.323904 0.525477 0.535801 0.064387 -0.841886 -0.306524 0.943896 -0.122892 0.748460 0.404576 0.525477 0.526102 0.120188 -0.841886 -0.403763 0.906572 -0.122892 0.701935 0.480792 0.525477 0.510608 0.174666 -0.841886 -0.496555 0.859262 -0.122892 0.648230 0.551064 0.525477 0.489717 0.226730 -0.841886 -0.583074 0.803070 -0.122892 0.586905 0.615968 0.525477 0.463257 0.276807 -0.841886 -0.664030 0.737537 -0.122892 0.519114 0.674088 0.525477 0.431694 0.323835 -0.841886 -0.737672 0.663880 -0.122892 0.446331 0.724336 0.525477 0.395743 0.366900 -0.841886 -0.802606 0.583713 -0.122892 0.367957 0.767125 0.525477 0.355110 0.406357 -0.841886 -0.859363 0.496380 -0.122892 0.285530 0.801465 0.525477 0.310565 0.441337 -0.841886 -0.906654 0.403579 -0.122892 0.199958 0.826977 0.525477 0.262600 0.471455 -0.841886 -0.943959 0.306332 -0.122892 0.113027 0.843267 0.525477 0.212238 0.496169 -0.841886 -0.970660 0.206682 -0.122892 0.024024 0.850468 0.525477 0.159067 0.515681 -0.841886 -0.986975 0.103812 -0.122892 -0.004150 -0.672961 -0.739666 0.004051 -0.739678 0.672949 -0.999983 -0.000204 0.005796 0.066404 -0.669690 -0.739666 0.081553 -0.735179 0.672949 -0.994455 -0.105008 0.005796 0.135567 -0.659178 -0.739666 0.157433 -0.722741 0.672949 -0.978180 -0.207677 0.005796 0.203907 -0.641339 -0.739666 0.232314 -0.702260 0.672949 -0.951027 -0.309054 0.005796 0.270001 -0.616436 -0.739666 0.304637 -0.674045 0.672949 -0.913398 -0.407026 0.005796 0.332536 -0.585076 -0.739666 0.372965 -0.638777 0.672949 -0.866208 -0.499649 0.005796 0.392025 -0.547001 -0.739666 0.437859 -0.596170 0.672949 -0.809071 -0.587682 0.005796 0.447195 -0.502902 -0.739666 0.497931 -0.546996 0.672949 -0.743022 -0.669242 0.005796 0.497440 -0.453263 -0.739666 0.552518 -0.491797 0.672949 -0.668788 -0.743430 0.005796 0.541807 -0.399173 -0.739666 0.600587 -0.431781 0.672949 -0.587997 -0.808842 0.005796 0.580659 -0.340190 -0.739666 0.642533 -0.366457 0.672949 -0.499986 -0.866014 0.005796 0.613115 -0.277459 -0.739666 0.677402 -0.297097 0.672949 -0.406468 -0.913647 0.005796 0.638606 -0.212311 -0.739666 0.704584 -0.225169 0.672949 -0.309424 -0.950907 0.005796 0.657341 -0.144211 -0.739666 0.724303 -0.150083 0.672949 -0.208058 -0.978099 0.005796 0.668835 -0.074522 -0.739666 0.736044 -0.073345 0.672949 -0.104400 -0.994518 0.005796 0.672958 -0.004561 -0.739666 0.739680 0.003599 0.672949 -0.000407 -0.999983 0.005796 0.669730 0.065995 -0.739666 0.735229 0.081103 0.672949 0.104400 -0.994518 0.005796 0.659125 0.135824 -0.739666 0.722680 0.157714 0.672949 0.208058 -0.978099 0.005796 0.641260 0.204157 -0.739666 0.702170 0.232587 0.672949 0.309424 -0.950907 0.005796 0.616601 0.269624 -0.739666 0.674231 0.304225 0.672949 0.406468 -0.913647 0.005796 0.584946 0.332764 -0.739666 0.638632 0.373213 0.672949 0.499986 -0.866014 0.005796 0.546849 0.392238 -0.739666 0.596000 0.438091 0.672949 0.587997 -0.808842 0.005796 0.503175 0.446888 -0.739666 0.547300 0.497597 0.672949 0.668788 -0.743430 0.005796 0.453567 0.497163 -0.739666 0.492134 0.552217 0.672949 0.743022 -0.669242 0.005796 0.398962 0.541962 -0.739666 0.431547 0.600755 0.672949 0.809071 -0.587682 0.005796 0.339964 0.580791 -0.739666 0.366207 0.642675 0.672949 0.866208 -0.499649 0.005796 0.277833 0.612946 -0.739666 0.297511 0.677220 0.672949 0.913398 -0.407026 0.005796 0.212062 0.638689 -0.739666 0.224895 0.704672 0.672949 0.951027 -0.309054 0.005796 0.143955 0.657397 -0.739666 0.149802 0.724361 0.672949 0.978180 -0.207677 0.005796 0.074931 0.668789 -0.739666 0.073794 0.735999 0.672949 0.994455 -0.105008 0.005796 0.004424 0.672959 -0.739666 -0.003750 0.739679 0.672949 0.999983 -0.000204 0.005796 -0.066131 0.669717 -0.739666 -0.081253 0.735213 0.672949 0.994497 0.104603 0.005796 -0.135958 0.659097 -0.739666 -0.157861 0.722648 0.672949 0.978057 0.208257 0.005796 -0.203646 0.641422 -0.739666 -0.232028 0.702355 0.672949 0.951153 0.308667 0.005796 -0.269750 0.616546 -0.739666 -0.304362 0.674169 0.672949 0.913564 0.406654 0.005796 -0.332883 0.584879 -0.739666 -0.373343 0.638556 0.672949 0.865912 0.500163 0.005796 -0.392349 0.546769 -0.739666 -0.438213 0.595910 0.672949 0.808722 0.588162 0.005796 -0.446990 0.503084 -0.739666 -0.497708 0.547199 0.672949 0.743294 0.668940 0.005796 -0.497256 0.453465 -0.739666 -0.552317 0.492022 0.672949 0.669091 0.743158 0.005796 -0.542043 0.398852 -0.739666 -0.600843 0.431425 0.672949 0.587518 0.809191 0.005796 -0.580521 0.340426 -0.739666 -0.642384 0.366719 0.672949 0.500339 0.865810 0.005796 -0.613002 0.277708 -0.739666 -0.677281 0.297373 0.672949 0.406840 0.913481 0.005796 -0.638732 0.211932 -0.739666 -0.704717 0.224751 0.672949 0.308860 0.951090 0.005796 -0.657426 0.143821 -0.739666 -0.724392 0.149654 0.672949 0.207478 0.978222 0.005796 -0.668805 0.074795 -0.739666 -0.736014 0.073644 0.672949 0.104805 0.994476 0.005796 -0.672960 0.004287 -0.739666 -0.739679 -0.003901 0.672949 0.000000 0.999983 0.005796 -0.669703 -0.066267 -0.739666 -0.735196 -0.081403 0.672949 -0.104805 0.994476 0.005796 -0.659205 -0.135433 -0.739666 -0.722773 -0.157286 0.672949 -0.207478 0.978222 0.005796 -0.641381 -0.203777 -0.739666 -0.702308 -0.232171 0.672949 -0.308860 0.951090 0.005796 -0.616491 -0.269875 -0.739666 -0.674107 -0.304499 0.672949 -0.406840 0.913481 0.005796 -0.584811 -0.333002 -0.739666 -0.638480 -0.373474 0.672949 -0.500339 0.865810 0.005796 -0.547081 -0.391913 -0.739666 -0.596259 -0.437738 0.672949 -0.587518 0.809191 0.005796 -0.502993 -0.447093 -0.739666 -0.547097 -0.497819 0.672949 -0.669091 0.743158 0.005796 -0.453364 -0.497348 -0.739666 -0.491909 -0.552417 0.672949 -0.743294 0.668940 0.005796 -0.399284 -0.541726 -0.739666 -0.431903 -0.600499 0.672949 -0.808722 0.588162 0.005796 -0.340308 -0.580590 -0.739666 -0.366588 -0.642458 0.672949 -0.865912 0.500163 0.005796 -0.277584 -0.613059 -0.739666 -0.297235 -0.677341 0.672949 -0.913564 0.406654 0.005796 -0.211802 -0.638775 -0.739666 -0.224608 -0.704763 0.672949 -0.951153 0.308667 0.005796 -0.144345 -0.657312 -0.739666 -0.150231 -0.724272 0.672949 -0.978057 0.208257 0.005796 -0.074659 -0.668820 -0.739666 -0.073495 -0.736029 0.672949 -0.994497 0.104603 0.005796 0.355600 -0.867949 0.346718 0.621245 0.496653 0.606127 -0.698286 -0.000142 0.715819 0.444609 -0.825899 0.346718 0.565771 0.559029 0.606127 -0.694425 -0.073327 0.715819 0.527945 -0.775281 0.346718 0.504680 0.614742 0.606127 -0.683061 -0.145021 0.715819 0.606293 -0.715679 0.346718 0.437471 0.664251 0.606127 -0.664100 -0.215812 0.715819 0.677962 -0.648193 0.346718 0.365443 0.706443 0.606127 -0.637824 -0.284226 0.715819 0.741589 -0.574310 0.346718 0.290131 0.740563 0.606127 -0.604871 -0.348904 0.715819 0.797697 -0.493423 0.346718 0.210917 0.766892 0.606127 -0.564972 -0.410377 0.715819 0.845018 -0.407101 0.346718 0.129379 0.784774 0.606127 -0.518850 -0.467330 0.715819 0.883031 -0.316295 0.346718 0.046417 0.794012 0.606127 -0.467013 -0.519136 0.715819 0.911096 -0.222917 0.346718 -0.036262 0.794541 0.606127 -0.410597 -0.564813 0.715819 0.929441 -0.126200 0.346718 -0.119336 0.786364 0.606127 -0.349139 -0.604735 0.715819 0.937549 -0.028092 0.346718 -0.201096 0.769526 0.606127 -0.283836 -0.637997 0.715819 0.935399 0.069389 0.346718 -0.279896 0.744492 0.606127 -0.216070 -0.664016 0.715819 0.922975 0.167043 0.346718 -0.356382 0.711057 0.606127 -0.145286 -0.683004 0.715819 0.900385 0.262858 0.346718 -0.428943 0.669789 0.606127 -0.072903 -0.694470 0.715819 0.868166 0.355070 0.346718 -0.496273 0.621548 0.606127 -0.000284 -0.698286 0.715819 0.826171 0.444104 0.346718 -0.558683 0.566112 0.606127 0.072903 -0.694470 0.715819 0.775076 0.528247 0.346718 -0.614939 0.504440 0.606127 0.145286 -0.683004 0.715819 0.715443 0.606571 0.346718 -0.664421 0.437212 0.606127 0.216070 -0.664016 0.715819 0.648608 0.677566 0.346718 -0.706219 0.365875 0.606127 0.283836 -0.637997 0.715819 0.574022 0.741813 0.346718 -0.740676 0.289843 0.606127 0.349139 -0.604735 0.715819 0.493113 0.797889 0.346718 -0.766974 0.210618 0.606127 0.410597 -0.564813 0.715819 0.407618 0.844769 0.346718 -0.784695 0.129859 0.606127 0.467013 -0.519136 0.715819 0.316835 0.882838 0.346718 -0.793984 0.046902 0.606127 0.518850 -0.467330 0.715819 0.222562 0.911182 0.346718 -0.794527 -0.036572 0.606127 0.564972 -0.410377 0.715819 0.125838 0.929490 0.346718 -0.786318 -0.119642 0.606127 0.604871 -0.348904 0.715819 0.028665 0.937531 0.346718 -0.769649 -0.200625 0.606127 0.637824 -0.284226 0.715819 -0.069753 0.935372 0.346718 -0.744383 -0.280185 0.606127 0.664100 -0.215812 0.715819 -0.167402 0.922910 0.346718 -0.710918 -0.356659 0.606127 0.683061 -0.145021 0.715819 -0.262307 0.900545 0.346718 -0.670051 -0.428534 0.606127 0.694425 -0.073327 0.715819 -0.355246 0.868094 0.346718 -0.621447 -0.496400 0.606127 0.698286 -0.000142 0.715819 -0.444272 0.826081 0.346718 -0.565999 -0.558798 0.606127 0.694455 0.073044 0.715819 -0.528405 0.774968 0.346718 -0.504315 -0.615041 0.606127 0.682975 0.145426 0.715819 -0.606001 0.715926 0.346718 -0.437741 -0.664073 0.606127 0.664188 0.215541 0.715819 -0.677698 0.648469 0.346718 -0.365731 -0.706294 0.606127 0.637939 0.283966 0.715819 -0.741930 0.573871 0.346718 -0.289692 -0.740735 0.606127 0.604664 0.349262 0.715819 -0.797989 0.492950 0.346718 -0.210462 -0.767017 0.606127 0.564729 0.410712 0.715819 -0.844852 0.407446 0.346718 -0.129699 -0.784722 0.606127 0.519041 0.467119 0.715819 -0.882902 0.316655 0.346718 -0.046740 -0.793993 0.606127 0.467225 0.518945 0.715819 -0.911228 0.222377 0.346718 0.036733 -0.794519 0.606127 0.410262 0.565056 0.715819 -0.929390 0.126578 0.346718 0.119016 -0.786413 0.606127 0.349386 0.604593 0.715819 -0.937537 0.028474 0.346718 0.200782 -0.769608 0.606127 0.284096 0.637882 0.715819 -0.935358 -0.069943 0.346718 0.280337 -0.744326 0.606127 0.215676 0.664144 0.715819 -0.922876 -0.167590 0.346718 0.356804 -0.710845 0.606127 0.144882 0.683090 0.715819 -0.900492 -0.262491 0.346718 0.428670 -0.669964 0.606127 0.073185 0.694440 0.715819 -0.868021 -0.355423 0.346718 0.496527 -0.621346 0.606127 0.000000 0.698286 0.715819 -0.825990 -0.444441 0.346718 0.558914 -0.565885 0.606127 -0.073185 0.694440 0.715819 -0.775389 -0.527787 0.346718 0.614640 -0.504805 0.606127 -0.144882 0.683090 0.715819 -0.715802 -0.606147 0.346718 0.664162 -0.437606 0.606127 -0.215676 0.664144 0.715819 -0.648331 -0.677830 0.346718 0.706368 -0.365587 0.606127 -0.284096 0.637882 0.715819 -0.573719 -0.742047 0.346718 0.740794 -0.289541 0.606127 -0.349386 0.604593 0.715819 -0.493586 -0.797596 0.346718 0.766849 -0.211073 0.606127 -0.410262 0.565056 0.715819 -0.407274 -0.844935 0.346718 0.784748 -0.129539 0.606127 -0.467225 0.518945 0.715819 -0.316475 -0.882967 0.346718 0.794003 -0.046579 0.606127 -0.519041 0.467119 0.715819 -0.223102 -0.911050 0.346718 0.794548 0.036101 0.606127 -0.564729 0.410712 0.715819 -0.126389 -0.929415 0.346718 0.786389 0.119176 0.606127 -0.604664 0.349262 0.715819 -0.028283 -0.937543 0.346718 0.769567 0.200939 0.606127 -0.637939 0.283966 0.715819 0.070134 -0.935344 0.346718 0.744269 0.280488 0.606127 -0.664188 0.215541 0.715819 0.166855 -0.923009 0.346718 0.711129 0.356237 0.606127 -0.682975 0.145426 0.715819 0.262674 -0.900438 0.346718 0.669877 0.428807 0.606127 -0.694455 0.073044 0.715819 0.195667 0.584972 0.787097 -0.141361 0.811054 -0.567635 -0.970429 -0.000198 0.241388 0.133280 0.602258 0.787097 -0.225587 0.791771 -0.567635 -0.965063 -0.101904 0.241388 0.070038 0.612840 0.787097 -0.306564 0.764074 -0.567635 -0.949270 -0.201540 0.241388 0.005422 0.616805 0.787097 -0.384956 0.727736 -0.567635 -0.922919 -0.299920 0.241388 -0.059253 0.613976 0.787097 -0.459108 0.683382 -0.567635 -0.886402 -0.394997 0.241388 -0.122672 0.604508 0.787097 -0.527571 0.632028 -0.567635 -0.840607 -0.484882 0.241388 -0.185353 0.588321 0.787097 -0.590906 0.573254 -0.567635 -0.785159 -0.570313 0.241388 -0.245992 0.565655 0.787097 -0.647733 0.508166 -0.567635 -0.721062 -0.649463 0.241388 -0.303922 0.536758 0.787097 -0.697425 0.437480 -0.567635 -0.649022 -0.721458 0.241388 -0.358002 0.502307 0.787097 -0.739073 0.362715 -0.567635 -0.570619 -0.784937 0.241388 -0.408676 0.462019 0.787097 -0.773018 0.283257 -0.567635 -0.485209 -0.840419 0.241388 -0.454848 0.416642 0.787097 -0.798448 0.200679 -0.567635 -0.394455 -0.886644 0.241388 -0.495643 0.367172 0.787097 -0.814966 0.116706 -0.567635 -0.300279 -0.922802 0.241388 -0.531396 0.313203 0.787097 -0.822710 0.030649 -0.567635 -0.201909 -0.949191 0.241388 -0.561295 0.255784 0.787097 -0.821391 -0.055746 -0.567635 -0.101315 -0.965125 0.241388 -0.584852 0.196024 0.787097 -0.811140 -0.140865 -0.567635 -0.000395 -0.970429 0.241388 -0.602176 0.133648 0.787097 -0.791909 -0.225103 -0.567635 0.101315 -0.965125 0.241388 -0.612867 0.069799 0.787097 -0.763955 -0.306861 -0.567635 0.201909 -0.949191 0.241388 -0.616807 0.005182 0.787097 -0.727586 -0.385239 -0.567635 0.300279 -0.922802 0.241388 -0.614012 -0.058878 0.787097 -0.683662 -0.458690 -0.567635 0.394455 -0.886644 0.241388 -0.604460 -0.122907 0.787097 -0.631823 -0.527816 -0.567635 0.485209 -0.840419 0.241388 -0.588249 -0.185582 0.787097 -0.573025 -0.591129 -0.567635 0.570619 -0.784937 0.241388 -0.565805 -0.245647 0.787097 -0.508562 -0.647422 -0.567635 0.649022 -0.721458 0.241388 -0.536943 -0.303594 0.787097 -0.437906 -0.697158 -0.567635 0.721062 -0.649463 0.241388 -0.502167 -0.358198 0.787097 -0.362427 -0.739214 -0.567635 0.785159 -0.570313 0.241388 -0.461860 -0.408856 0.787097 -0.282957 -0.773128 -0.567635 0.840607 -0.484882 0.241388 -0.416920 -0.454593 0.787097 -0.201167 -0.798325 -0.567635 0.886402 -0.394997 0.241388 -0.366979 -0.495786 0.787097 -0.116389 -0.815012 -0.567635 0.922919 -0.299920 0.241388 -0.312996 -0.531518 0.787097 -0.030329 -0.822722 -0.567635 0.949270 -0.201540 0.241388 -0.256127 -0.561139 0.787097 0.055244 -0.821425 -0.567635 0.965063 -0.101904 0.241388 -0.195905 -0.584892 0.787097 0.141031 -0.811111 -0.567635 0.970429 -0.000198 0.241388 -0.133525 -0.602203 0.787097 0.225264 -0.791863 -0.567635 0.965105 0.101511 0.241388 -0.069675 -0.612881 0.787097 0.307016 -0.763892 -0.567635 0.949150 0.202102 0.241388 -0.005673 -0.616803 0.787097 0.384659 -0.727893 -0.567635 0.923041 0.299544 0.241388 0.059003 -0.614000 0.787097 0.458829 -0.683569 -0.567635 0.886563 0.394636 0.241388 0.123030 -0.604435 0.787097 0.527945 -0.631716 -0.567635 0.840320 0.485380 0.241388 0.185701 -0.588211 0.787097 0.591246 -0.572904 -0.567635 0.784821 0.570779 0.241388 0.245762 -0.565755 0.787097 0.647526 -0.508430 -0.567635 0.721326 0.649169 0.241388 0.303704 -0.536882 0.787097 0.697247 -0.437764 -0.567635 0.649316 0.721194 0.241388 0.358300 -0.502094 0.787097 0.739288 -0.362277 -0.567635 0.570154 0.785275 0.241388 0.408488 -0.462186 0.787097 0.772902 -0.283572 -0.567635 0.485551 0.840221 0.241388 0.454678 -0.416828 0.787097 0.798366 -0.201005 -0.567635 0.394816 0.886483 0.241388 0.495861 -0.366878 0.787097 0.815036 -0.116223 -0.567635 0.299732 0.922980 0.241388 0.531581 -0.312888 0.787097 0.822728 -0.030162 -0.567635 0.201346 0.949311 0.241388 0.561191 -0.256013 0.787097 0.821414 0.055411 -0.567635 0.101708 0.965084 0.241388 0.584932 -0.195786 0.787097 0.811082 0.141196 -0.567635 0.000000 0.970429 0.241388 0.602230 -0.133402 0.787097 0.791817 0.225425 -0.567635 -0.101708 0.965084 0.241388 0.612825 -0.070163 0.787097 0.764137 0.306408 -0.567635 -0.201346 0.949311 0.241388 0.616804 -0.005548 0.787097 0.727814 0.384807 -0.567635 -0.299732 0.922980 0.241388 0.613988 0.059128 0.787097 0.683475 0.458968 -0.567635 -0.394816 0.886483 0.241388 0.604410 0.123153 0.787097 0.631608 0.528074 -0.567635 -0.485551 0.840221 0.241388 0.588359 0.185233 0.787097 0.573375 0.590789 -0.567635 -0.570154 0.785275 0.241388 0.565705 0.245877 0.787097 0.508298 0.647629 -0.567635 -0.649316 0.721194 0.241388 0.536820 0.303813 0.787097 0.437622 0.697336 -0.567635 -0.721326 0.649169 0.241388 0.502380 0.357900 0.787097 0.362866 0.738999 -0.567635 -0.784821 0.570779 0.241388 0.462102 0.408582 0.787097 0.283415 0.772960 -0.567635 -0.840320 0.485380 0.241388 0.416735 0.454763 0.787097 0.200842 0.798407 -0.567635 -0.886563 0.394636 0.241388 0.366777 0.495935 0.787097 0.116057 0.815059 -0.567635 -0.923041 0.299544 0.241388 0.313311 0.531332 0.787097 0.030817 0.822703 -0.567635 -0.949150 0.202102 0.241388 0.255898 0.561243 0.787097 -0.055578 0.821402 -0.567635 -0.965105 0.101511 0.241388 0.126526 0.279068 -0.951899 0.036979 -0.960271 -0.276607 -0.991274 -0.000202 -0.131819 0.096581 0.290792 -0.951899 0.137418 -0.951107 -0.276607 -0.985793 -0.104093 -0.131819 0.065871 0.299247 -0.951899 0.235413 -0.931702 -0.276607 -0.969661 -0.205869 -0.131819 0.034145 0.304502 -0.951899 0.331765 -0.901898 -0.276607 -0.942744 -0.306362 -0.131819 0.002043 0.306404 -0.951899 0.424463 -0.862160 -0.276607 -0.905443 -0.403481 -0.131819 -0.029777 0.304961 -0.951899 0.511673 -0.813437 -0.276607 -0.858664 -0.495298 -0.131819 -0.061575 0.300160 -0.951899 0.594109 -0.755330 -0.276607 -0.802024 -0.582564 -0.131819 -0.092694 0.292054 -0.951899 0.670001 -0.688903 -0.276607 -0.736550 -0.663413 -0.131819 -0.122793 0.280730 -0.951899 0.738513 -0.614888 -0.276607 -0.662963 -0.736955 -0.131819 -0.151273 0.266466 -0.951899 0.798356 -0.534899 -0.276607 -0.582876 -0.801798 -0.131819 -0.178368 0.249144 -0.951899 0.850020 -0.448279 -0.276607 -0.495632 -0.858471 -0.131819 -0.203497 0.229078 -0.951899 0.892322 -0.356722 -0.276607 -0.402928 -0.905689 -0.131819 -0.226179 0.206714 -0.951899 0.924533 -0.262161 -0.276607 -0.306729 -0.942625 -0.131819 -0.246598 0.181871 -0.951899 0.946917 -0.163819 -0.276607 -0.206246 -0.969581 -0.131819 -0.264302 0.155024 -0.951899 0.958871 -0.063673 -0.276607 -0.103491 -0.985857 -0.131819 -0.278990 0.126697 -0.951899 0.960294 0.036392 -0.276607 -0.000404 -0.991274 -0.131819 -0.290733 0.096759 -0.951899 0.951191 0.136837 -0.276607 0.103491 -0.985857 -0.131819 -0.299272 0.065755 -0.951899 0.931611 0.235775 -0.276607 0.206246 -0.969581 -0.131819 -0.304516 0.034027 -0.951899 0.901769 0.332116 -0.276607 0.306729 -0.942625 -0.131819 -0.306403 0.002230 -0.951899 0.862419 0.423937 -0.276607 0.402928 -0.905689 -0.131819 -0.304949 -0.029895 -0.951899 0.813238 0.511989 -0.276607 0.495632 -0.858471 -0.131819 -0.300136 -0.061691 -0.951899 0.755099 0.594403 -0.276607 0.582876 -0.801798 -0.131819 -0.292110 -0.092516 -0.951899 0.689312 0.669580 -0.276607 0.662963 -0.736955 -0.131819 -0.280805 -0.122622 -0.951899 0.615339 0.738137 -0.276607 0.736550 -0.663413 -0.131819 -0.266407 -0.151377 -0.951899 0.534588 0.798564 -0.276607 0.802024 -0.582564 -0.131819 -0.249075 -0.178464 -0.951899 0.447949 0.850194 -0.276607 0.858664 -0.495298 -0.131819 -0.229202 -0.203357 -0.951899 0.357267 0.892103 -0.276607 0.905443 -0.403481 -0.131819 -0.206626 -0.226259 -0.951899 0.261801 0.924634 -0.276607 0.942744 -0.306362 -0.131819 -0.181775 -0.246669 -0.951899 0.163451 0.946981 -0.276607 0.969661 -0.205869 -0.131819 -0.155185 -0.264207 -0.951899 0.064259 0.958832 -0.276607 0.985793 -0.104093 -0.131819 -0.126640 -0.279016 -0.951899 -0.036587 0.960286 -0.276607 0.991274 -0.000202 -0.131819 -0.096699 -0.290752 -0.951899 -0.137031 0.951163 -0.276607 0.985836 0.103692 -0.131819 -0.065694 -0.299286 -0.951899 -0.235965 0.931563 -0.276607 0.969539 0.206443 -0.131819 -0.034269 -0.304489 -0.951899 -0.331398 0.902033 -0.276607 0.942869 0.305978 -0.131819 -0.002168 -0.306403 -0.951899 -0.424112 0.862332 -0.276607 0.905607 0.403113 -0.131819 0.029957 -0.304943 -0.951899 -0.512155 0.813133 -0.276607 0.858370 0.495806 -0.131819 0.061752 -0.300124 -0.951899 -0.594557 0.754977 -0.276607 0.801679 0.583039 -0.131819 0.092575 -0.292091 -0.951899 -0.669720 0.689176 -0.276607 0.736820 0.663113 -0.131819 0.122679 -0.280780 -0.951899 -0.738262 0.615189 -0.276607 0.663263 0.736685 -0.131819 0.151431 -0.266376 -0.951899 -0.798673 0.534425 -0.276607 0.582401 0.802143 -0.131819 0.178266 -0.249217 -0.951899 -0.849837 0.448625 -0.276607 0.495981 0.858269 -0.131819 0.203404 -0.229160 -0.951899 -0.892176 0.357086 -0.276607 0.403297 0.905525 -0.131819 0.226301 -0.206580 -0.951899 -0.924688 0.261613 -0.276607 0.306170 0.942806 -0.131819 0.246706 -0.181724 -0.951899 -0.947014 0.163258 -0.276607 0.205671 0.969703 -0.131819 0.264238 -0.155131 -0.951899 -0.958845 0.064064 -0.276607 0.103893 0.985814 -0.131819 0.279042 -0.126583 -0.951899 -0.960279 -0.036783 -0.276607 0.000000 0.991274 -0.131819 0.290772 -0.096640 -0.951899 -0.951135 -0.137225 -0.276607 -0.103893 0.985814 -0.131819 0.299233 -0.065932 -0.951899 -0.931750 -0.235223 -0.276607 -0.205671 0.969703 -0.131819 0.304496 -0.034207 -0.951899 -0.901966 -0.331582 -0.276607 -0.306170 0.942806 -0.131819 0.306404 -0.002106 -0.951899 -0.862246 -0.424288 -0.276607 -0.403297 0.905525 -0.131819 0.304937 0.030019 -0.951899 -0.813029 -0.512321 -0.276607 -0.495981 0.858269 -0.131819 0.300173 0.061513 -0.951899 -0.755451 -0.593955 -0.276607 -0.582401 0.802143 -0.131819 0.292073 0.092635 -0.951899 -0.689039 -0.669861 -0.276607 -0.663263 0.736685 -0.131819 0.280755 0.122736 -0.951899 -0.615038 -0.738388 -0.276607 -0.736820 0.663113 -0.131819 0.266497 0.151219 -0.951899 -0.535061 -0.798247 -0.276607 -0.801679 0.583039 -0.131819 0.249180 0.178317 -0.951899 -0.448452 -0.849929 -0.276607 -0.858370 0.495806 -0.131819 0.229119 0.203451 -0.951899 -0.356904 -0.892249 -0.276607 -0.905607 0.403113 -0.131819 0.206534 0.226343 -0.951899 -0.261424 -0.924741 -0.276607 -0.942869 0.305978 -0.131819 0.181921 0.246561 -0.951899 -0.164012 -0.946884 -0.276607 -0.969539 0.206443 -0.131819 0.155078 0.264270 -0.951899 -0.063868 -0.958858 -0.276607 -0.985836 0.103692 -0.131819 0.036510 -0.263063 0.964087 0.009744 0.964779 0.262883 -0.999286 -0.000204 0.037787 0.063880 -0.257788 0.964087 -0.091425 0.960486 0.262883 -0.993761 -0.104935 0.037787 0.090296 -0.249764 0.964087 -0.190642 0.945806 0.262883 -0.977498 -0.207533 0.037787 0.115976 -0.238924 0.964087 -0.288719 0.920616 0.262883 -0.950364 -0.308838 0.037787 0.140378 -0.225453 0.964087 -0.383616 0.885286 0.262883 -0.912761 -0.406743 0.037787 0.163025 -0.209662 0.964087 -0.473447 0.840678 0.262883 -0.865604 -0.499301 0.037787 0.184101 -0.191421 0.964087 -0.558949 0.786428 0.262883 -0.808507 -0.587273 0.037787 0.203149 -0.171072 0.964087 -0.638294 0.723515 0.262883 -0.742504 -0.668775 0.037787 0.219960 -0.148838 0.964087 -0.710608 0.652632 0.262883 -0.668322 -0.742912 0.037787 0.234223 -0.125200 0.964087 -0.774520 0.575336 0.262883 -0.587587 -0.808278 0.037787 0.246055 -0.099962 0.964087 -0.830554 0.490992 0.262883 -0.499638 -0.865410 0.037787 0.255176 -0.073623 0.964087 -0.877439 0.401240 0.262883 -0.406185 -0.913009 0.037787 0.261441 -0.046735 0.964087 -0.914352 0.307983 0.262883 -0.309208 -0.950243 0.037787 0.264899 -0.019076 0.964087 -0.941595 0.210456 0.262883 -0.207913 -0.977417 0.037787 0.265439 0.008792 0.964087 -0.958466 0.110611 0.262883 -0.104328 -0.993825 0.037787 0.263086 0.036349 0.964087 -0.964772 0.010334 0.262883 -0.000407 -0.999286 0.037787 0.257827 0.063722 0.964087 -0.960542 -0.090838 0.262883 0.104328 -0.993825 0.037787 0.249728 0.090393 0.964087 -0.945731 -0.191010 0.262883 0.207913 -0.977417 0.037787 0.238879 0.116069 0.964087 -0.920504 -0.289077 0.262883 0.309208 -0.950243 0.037787 0.225539 0.140240 0.964087 -0.885520 -0.383075 0.262883 0.406185 -0.913009 0.037787 0.209599 0.163106 0.964087 -0.840494 -0.473774 0.262883 0.499638 -0.865410 0.037787 0.191350 0.184175 0.964087 -0.786210 -0.559255 0.262883 0.587587 -0.808278 0.037787 0.171196 0.203045 0.964087 -0.723905 -0.637852 0.262883 0.668322 -0.742912 0.037787 0.148973 0.219869 0.964087 -0.653066 -0.710209 0.262883 0.742504 -0.668775 0.037787 0.125108 0.234272 0.964087 -0.575035 -0.774744 0.262883 0.808507 -0.587273 0.037787 0.099866 0.246094 0.964087 -0.490669 -0.830745 0.262883 0.865604 -0.499301 0.037787 0.073779 0.255131 0.964087 -0.401776 -0.877194 0.262883 0.912761 -0.406743 0.037787 0.046633 0.261459 0.964087 -0.307627 -0.914472 0.262883 0.950364 -0.308838 0.037787 0.018973 0.264906 0.964087 -0.210090 -0.941677 0.262883 0.977498 -0.207533 0.037787 -0.008630 0.265445 0.964087 -0.111197 -0.958399 0.262883 0.993761 -0.104935 0.037787 -0.036403 0.263078 0.964087 -0.010137 -0.964774 0.262883 0.999286 -0.000204 0.037787 -0.063775 0.257814 0.964087 0.091034 -0.960524 0.262883 0.993804 0.104530 0.037787 -0.090444 0.249710 0.964087 0.191202 -0.945692 0.262883 0.977375 0.208112 0.037787 -0.115879 0.238972 0.964087 0.288344 -0.920734 0.262883 0.950489 0.308451 0.037787 -0.140286 0.225511 0.964087 0.383255 -0.885442 0.262883 0.912927 0.406371 0.037787 -0.163149 0.209566 0.964087 0.473945 -0.840398 0.262883 0.865308 0.499814 0.037787 -0.184214 0.191312 0.964087 0.559415 -0.786096 0.262883 0.808158 0.587752 0.037787 -0.203080 0.171155 0.964087 0.637999 -0.723775 0.262883 0.742776 0.668473 0.037787 -0.219899 0.148928 0.964087 0.710342 -0.652922 0.262883 0.668624 0.742640 0.037787 -0.234297 0.125061 0.964087 0.774861 -0.574877 0.262883 0.587108 0.808626 0.037787 -0.246014 0.100062 0.964087 0.830354 -0.491330 0.262883 0.499990 0.865206 0.037787 -0.255146 0.073727 0.964087 0.877275 -0.401597 0.262883 0.406557 0.912844 0.037787 -0.261468 0.046580 0.964087 0.914534 -0.307441 0.262883 0.308645 0.950426 0.037787 -0.264910 0.018919 0.964087 0.941719 -0.209898 0.262883 0.207334 0.977540 0.037787 -0.265443 -0.008684 0.964087 0.958421 -0.111001 0.262883 0.104732 0.993782 0.037787 -0.263071 -0.036456 0.964087 0.964777 -0.009941 0.262883 0.000000 0.999286 0.037787 -0.257801 -0.063827 0.964087 0.960505 0.091229 0.262883 -0.104732 0.993782 0.037787 -0.249782 -0.090245 0.964087 0.945844 0.190449 0.262883 -0.207334 0.977540 0.037787 -0.238948 -0.115927 0.964087 0.920675 0.288532 0.262883 -0.308645 0.950426 0.037787 -0.225482 -0.140332 0.964087 0.885364 0.383436 0.262883 -0.406557 0.912844 0.037787 -0.209532 -0.163192 0.964087 0.840301 0.474117 0.262883 -0.499990 0.865206 0.037787 -0.191459 -0.184062 0.964087 0.786542 0.558789 0.262883 -0.587108 0.808626 0.037787 -0.171113 -0.203114 0.964087 0.723645 0.638146 0.262883 -0.668624 0.742640 0.037787 -0.148883 -0.219930 0.964087 0.652777 0.710475 0.262883 -0.742776 0.668473 0.037787 -0.125247 -0.234197 0.964087 0.575494 0.774403 0.262883 -0.808158 0.587752 0.037787 -0.100012 -0.246034 0.964087 0.491161 0.830454 0.262883 -0.865308 0.499814 0.037787 -0.073675 -0.255161 0.964087 0.401419 0.877357 0.262883 -0.912927 0.406371 0.037787 -0.046526 -0.261478 0.964087 0.307255 0.914597 0.262883 -0.950489 0.308451 0.037787 -0.019130 -0.264895 0.964087 0.210648 0.941552 0.262883 -0.977375 0.208112 0.037787 0.008738 -0.265441 0.964087 0.110806 0.958444 0.262883 -0.993804 0.104530 0.037787 -0.093253 -0.948436 0.302942 -0.279619 0.316970 0.906280 -0.955571 -0.000195 -0.294759 0.006663 -0.952986 0.302942 -0.311300 0.285918 0.906280 -0.950288 -0.100344 -0.294759 0.105559 -0.947145 0.302942 -0.339300 0.252056 0.906280 -0.934737 -0.198454 -0.294759 0.204245 -0.930865 0.302942 -0.363848 0.215107 0.906280 -0.908789 -0.295328 -0.294759 0.300682 -0.904332 0.302942 -0.384389 0.175788 0.906280 -0.872832 -0.388949 -0.294759 0.392938 -0.868231 0.302942 -0.400561 0.134934 0.906280 -0.827738 -0.477459 -0.294759 0.481771 -0.822267 0.302942 -0.412497 0.092209 0.906280 -0.773138 -0.561582 -0.294759 0.565297 -0.767245 0.302942 -0.419890 0.048469 0.906280 -0.710022 -0.639520 -0.294759 0.642597 -0.703773 0.302942 -0.422657 0.004194 0.906280 -0.639086 -0.710413 -0.294759 0.712185 -0.633260 0.302942 -0.420809 -0.039706 0.906280 -0.561883 -0.772920 -0.294759 0.774633 -0.555131 0.302942 -0.414330 -0.083591 0.906280 -0.477781 -0.827552 -0.294759 0.828548 -0.470886 0.302942 -0.403287 -0.126555 0.906280 -0.388416 -0.873069 -0.294759 0.872956 -0.382328 0.302942 -0.387970 -0.167738 0.906280 -0.295682 -0.908674 -0.294759 0.908219 -0.288731 0.302942 -0.368253 -0.207476 0.906280 -0.198818 -0.934660 -0.294759 0.933478 -0.191953 0.302942 -0.344480 -0.244929 0.906280 -0.099764 -0.950349 -0.294759 0.948379 -0.093833 0.302942 -0.317140 -0.279426 0.906280 -0.000389 -0.955571 -0.294759 0.952990 0.006081 0.302942 -0.286108 -0.311125 0.906280 0.099764 -0.950349 -0.294759 0.947104 0.105928 0.302942 -0.251924 -0.339398 0.906280 0.198818 -0.934660 -0.294759 0.930786 0.204607 0.302942 -0.214965 -0.363932 0.906280 0.295682 -0.908674 -0.294759 0.904516 0.300129 0.302942 -0.176023 -0.384282 0.906280 0.388416 -0.873069 -0.294759 0.868079 0.393276 0.302942 -0.134778 -0.400614 0.906280 0.477781 -0.827552 -0.294759 0.822080 0.482091 0.302942 -0.092049 -0.412533 0.906280 0.561883 -0.772920 -0.294759 0.767591 0.564828 0.302942 -0.048725 -0.419860 0.906280 0.639086 -0.710413 -0.294759 0.704165 0.642167 0.302942 -0.004452 -0.422655 0.906280 0.710022 -0.639520 -0.294759 0.632983 0.712431 0.302942 0.039869 -0.420793 0.906280 0.773138 -0.561582 -0.294759 0.554829 0.774849 0.302942 0.083752 -0.414297 0.906280 0.827738 -0.477459 -0.294759 0.471392 0.828261 0.302942 0.126309 -0.403364 0.906280 0.872832 -0.388949 -0.294759 0.381989 0.873104 0.302942 0.167888 -0.387905 0.906280 0.908789 -0.295328 -0.294759 0.288377 0.908331 0.302942 0.207619 -0.368172 0.906280 0.934737 -0.198454 -0.294759 0.192523 0.933360 0.302942 0.244718 -0.344630 0.906280 0.950288 -0.100344 -0.294759 0.093640 0.948398 0.302942 0.279490 -0.317083 0.906280 0.955571 -0.000195 -0.294759 -0.006275 0.952989 0.302942 0.311183 -0.286045 0.906280 0.950329 0.099957 -0.294759 -0.106120 0.947082 0.302942 0.339449 -0.251855 0.906280 0.934619 0.199008 -0.294759 -0.203866 0.930948 0.302942 0.363761 -0.215255 0.906280 0.908910 0.294958 -0.294759 -0.300313 0.904455 0.302942 0.384318 -0.175945 0.906280 0.872990 0.388594 -0.294759 -0.393453 0.867998 0.302942 0.400641 -0.134697 0.906280 0.827455 0.477949 -0.294759 -0.482258 0.821981 0.302942 0.412552 -0.091965 0.906280 0.772805 0.562040 -0.294759 -0.564985 0.767476 0.302942 0.419870 -0.048640 0.906280 0.710283 0.639230 -0.294759 -0.642310 0.704034 0.302942 0.422655 -0.004366 0.906280 0.639375 0.710153 -0.294759 -0.712560 0.632838 0.302942 0.420785 0.039955 0.906280 0.561425 0.773252 -0.294759 -0.774407 0.555446 0.302942 0.414364 0.083422 0.906280 0.478118 0.827357 -0.294759 -0.828357 0.471224 0.302942 0.403339 0.126391 0.906280 0.388772 0.872911 -0.294759 -0.873182 0.381811 0.302942 0.387871 0.167967 0.906280 0.295143 0.908850 -0.294759 -0.908390 0.288192 0.302942 0.368130 0.207694 0.906280 0.198264 0.934777 -0.294759 -0.933399 0.192333 0.302942 0.344580 0.244788 0.906280 0.100151 0.950309 -0.294759 -0.948417 0.093447 0.302942 0.317027 0.279555 0.906280 0.000000 0.955572 -0.294759 -0.952987 -0.006469 0.302942 0.285981 0.311242 0.906280 -0.100151 0.950309 -0.294759 -0.947167 -0.105366 0.302942 0.252125 0.339248 0.906280 -0.198264 0.934777 -0.294759 -0.930907 -0.204056 0.302942 0.215181 0.363805 0.906280 -0.295143 0.908850 -0.294759 -0.904393 -0.300498 0.302942 0.175867 0.384353 0.906280 -0.388772 0.872911 -0.294759 -0.867918 -0.393630 0.302942 0.134615 0.400669 0.906280 -0.478118 0.827357 -0.294759 -0.822365 -0.481604 0.302942 0.092293 0.412479 0.906280 -0.561425 0.773252 -0.294759 -0.767361 -0.565141 0.302942 0.048554 0.419880 0.906280 -0.639375 0.710153 -0.294759 -0.703903 -0.642453 0.302942 0.004280 0.422656 0.906280 -0.710283 0.639230 -0.294759 -0.633406 -0.712056 0.302942 -0.039620 0.420817 0.906280 -0.772805 0.562040 -0.294759 -0.555288 -0.774520 0.302942 -0.083506 0.414347 0.906280 -0.827455 0.477949 -0.294759 -0.471055 -0.828453 0.302942 -0.126473 0.403313 0.906280 -0.872990 0.388594 -0.294759 -0.381633 -0.873260 0.302942 -0.168046 0.387836 0.906280 -0.908910 0.294958 -0.294759 -0.288916 -0.908160 0.302942 -0.207401 0.368295 0.906280 -0.934619 0.199008 -0.294759 -0.192143 -0.933439 0.302942 -0.244859 0.344530 0.906280 -0.950329 0.099957 -0.294759 0.698039 -0.353258 -0.622856 -0.263486 -0.935526 0.235301 -0.665820 -0.000136 -0.746112 0.731219 -0.278153 -0.622856 -0.163985 -0.957989 0.235301 -0.662139 -0.069918 -0.746112 0.756144 -0.200741 -0.622856 -0.063648 -0.969836 0.235301 -0.651303 -0.138278 -0.746112 0.773018 -0.120386 -0.622856 0.038349 -0.971166 0.235301 -0.633223 -0.205778 -0.746112 0.781378 -0.038705 -0.622856 0.139923 -0.961798 0.235301 -0.608169 -0.271011 -0.746112 0.781174 0.042621 -0.622856 0.239013 -0.942075 0.235301 -0.576749 -0.332682 -0.746112 0.772405 0.124259 -0.622856 0.336433 -0.911837 0.235301 -0.538705 -0.391297 -0.746112 0.755128 0.204528 -0.622856 0.430147 -0.871554 0.235301 -0.494727 -0.445602 -0.746112 0.729533 0.282545 -0.622856 0.519123 -0.821672 0.235301 -0.445300 -0.494999 -0.746112 0.696260 0.356753 -0.622856 0.601618 -0.763340 0.235301 -0.391507 -0.538553 -0.746112 0.655035 0.427761 -0.622856 0.678309 -0.696082 0.235301 -0.332907 -0.576619 -0.746112 0.606595 0.494058 -0.622856 0.747527 -0.621157 0.235301 -0.270639 -0.608335 -0.746112 0.552028 0.554360 -0.622856 0.807972 -0.540198 0.235301 -0.206024 -0.633143 -0.746112 0.490887 0.609164 -0.622856 0.860139 -0.452542 0.235301 -0.138532 -0.651249 -0.746112 0.424339 0.657257 -0.622856 0.902832 -0.359901 0.235301 -0.069513 -0.662182 -0.746112 0.353685 0.697823 -0.622856 0.935365 -0.264057 0.235301 -0.000271 -0.665820 -0.746112 0.278600 0.731049 -0.622856 0.957888 -0.164570 0.235301 0.069513 -0.662182 -0.746112 0.200446 0.756222 -0.622856 0.969861 -0.063270 0.235301 0.138532 -0.651249 -0.746112 0.120085 0.773065 -0.622856 0.971151 0.038727 0.235301 0.206024 -0.633143 -0.746112 0.039182 0.781355 -0.622856 0.961883 0.139335 0.235301 0.270639 -0.608335 -0.746112 -0.042925 0.781158 -0.622856 0.941982 0.239380 0.235301 0.332907 -0.576619 -0.746112 -0.124560 0.772357 -0.622856 0.911706 0.336788 0.235301 0.391507 -0.538553 -0.746112 -0.204067 0.755253 -0.622856 0.871817 0.429615 0.235301 0.445300 -0.494999 -0.746112 -0.282099 0.729706 -0.622856 0.821989 0.518621 0.235301 0.494727 -0.445602 -0.746112 -0.357024 0.696121 -0.622856 0.763106 0.601915 0.235301 0.538705 -0.391297 -0.746112 -0.428016 0.654868 -0.622856 0.695819 0.678579 0.235301 0.576749 -0.332682 -0.746112 -0.493687 0.606897 -0.622856 0.621614 0.747148 0.235301 0.608169 -0.271011 -0.746112 -0.554575 0.551812 -0.622856 0.539884 0.808182 0.235301 0.633223 -0.205778 -0.746112 -0.609355 0.490650 -0.622856 0.452207 0.860315 0.235301 0.651303 -0.138278 -0.746112 -0.656998 0.424740 -0.622856 0.360452 0.902611 0.235301 0.662139 -0.069918 -0.746112 -0.697895 0.353543 -0.622856 0.263867 0.935418 0.235301 0.665820 -0.000136 -0.746112 -0.731105 0.278451 -0.622856 0.164375 0.957922 0.235301 0.662167 0.069648 -0.746112 -0.756263 0.200292 -0.622856 0.063073 0.969874 0.235301 0.651221 0.138664 -0.746112 -0.772969 0.120701 -0.622856 -0.037953 0.971181 0.235301 0.633307 0.205520 -0.746112 -0.781362 0.039023 -0.622856 -0.139531 0.961855 0.235301 0.608279 0.270763 -0.746112 -0.781149 -0.043084 -0.622856 -0.239572 0.941934 0.235301 0.576551 0.333024 -0.746112 -0.772331 -0.124717 -0.622856 -0.336974 0.911637 0.235301 0.538473 0.391617 -0.746112 -0.755211 -0.204221 -0.622856 -0.429792 0.871729 0.235301 0.494909 0.445401 -0.746112 -0.729648 -0.282248 -0.622856 -0.518789 0.821883 0.235301 0.445502 0.494818 -0.746112 -0.696048 -0.357165 -0.622856 -0.602071 0.762984 0.235301 0.391188 0.538784 -0.746112 -0.655209 -0.427494 -0.622856 -0.678025 0.696359 0.235301 0.333141 0.576484 -0.746112 -0.606796 -0.493810 -0.622856 -0.747274 0.621462 0.235301 0.270887 0.608224 -0.746112 -0.551699 -0.554687 -0.622856 -0.808292 0.539719 0.235301 0.205649 0.633265 -0.746112 -0.490526 -0.609455 -0.622856 -0.860407 0.452032 0.235301 0.138146 0.651331 -0.746112 -0.424606 -0.657084 -0.622856 -0.902685 0.360268 0.235301 0.069783 0.662153 -0.746112 -0.353401 -0.697967 -0.622856 -0.935472 0.263676 0.235301 0.000000 0.665820 -0.746112 -0.278302 -0.731162 -0.622856 -0.957955 0.164180 0.235301 -0.069783 0.662153 -0.746112 -0.200895 -0.756103 -0.622856 -0.969823 0.063845 0.235301 -0.138146 0.651331 -0.746112 -0.120543 -0.772994 -0.622856 -0.971173 -0.038151 0.235301 -0.205649 0.633265 -0.746112 -0.038864 -0.781370 -0.622856 -0.961826 -0.139727 0.235301 -0.270887 0.608224 -0.746112 0.043243 -0.781140 -0.622856 -0.941885 -0.239763 0.235301 -0.333141 0.576484 -0.746112 0.124102 -0.772431 -0.622856 -0.911905 -0.336248 0.235301 -0.391188 0.538784 -0.746112 0.204375 -0.755170 -0.622856 -0.871642 -0.429970 0.235301 -0.445502 0.494818 -0.746112 0.282396 -0.729591 -0.622856 -0.821777 -0.518956 0.235301 -0.494909 0.445401 -0.746112 0.356611 -0.696332 -0.622856 -0.763463 -0.601463 0.235301 -0.538473 0.391617 -0.746112 0.427628 -0.655122 -0.622856 -0.696221 -0.678167 0.235301 -0.576551 0.333024 -0.746112 0.493934 -0.606695 -0.622856 -0.621309 -0.747401 0.235301 -0.608279 0.270763 -0.746112 0.554800 -0.551586 -0.622856 -0.539555 -0.808402 0.235301 -0.633307 0.205520 -0.746112 0.609064 -0.491011 -0.622856 -0.452717 -0.860047 0.235301 -0.651221 0.138664 -0.746112 0.657171 -0.424472 -0.622856 -0.360085 -0.902758 0.235301 -0.662167 0.069648 -0.746112 -0.001953 0.998016 -0.062934 -0.027725 -0.062964 -0.997631 -0.999614 -0.000204 0.027793 -0.106542 0.992315 -0.062934 -0.020973 -0.065523 -0.997631 -0.994087 -0.104969 0.027793 -0.208981 0.975893 -0.062934 -0.014058 -0.067346 -0.997631 -0.977819 -0.207601 0.027793 -0.310110 0.948615 -0.062934 -0.006922 -0.068449 -0.997631 -0.950675 -0.308940 0.027793 -0.407824 0.910889 -0.062934 0.000290 -0.068797 -0.997631 -0.913060 -0.406876 0.027793 -0.500182 0.863630 -0.062934 0.007431 -0.068395 -0.997631 -0.865888 -0.499465 0.027793 -0.587942 0.806451 -0.062934 0.014558 -0.067240 -0.997631 -0.808772 -0.587465 0.027793 -0.669226 0.740389 -0.062934 0.021525 -0.065344 -0.997631 -0.742747 -0.668995 0.027793 -0.743138 0.666172 -0.062934 0.028255 -0.062728 -0.997631 -0.668541 -0.743156 0.027793 -0.808280 0.585425 -0.062934 0.034614 -0.059456 -0.997631 -0.587780 -0.808543 0.027793 -0.865185 0.497487 -0.062934 0.040655 -0.055500 -0.997631 -0.499802 -0.865694 0.027793 -0.912561 0.404070 -0.062934 0.046248 -0.050934 -0.997631 -0.406318 -0.913309 0.027793 -0.949577 0.307151 -0.062934 0.051286 -0.045857 -0.997631 -0.309310 -0.950555 0.027793 -0.976539 0.205937 -0.062934 0.055809 -0.040230 -0.997631 -0.207981 -0.977738 0.027793 -0.992745 0.102455 -0.062934 0.059718 -0.034159 -0.997631 -0.104362 -0.994151 0.027793 -0.998017 -0.001343 -0.062934 0.062947 -0.027763 -0.997631 -0.000407 -0.999614 0.027793 -0.992379 -0.105935 -0.062934 0.065510 -0.021013 -0.997631 0.104362 -0.994151 0.027793 -0.975811 -0.209360 -0.062934 0.067352 -0.014031 -0.997631 0.207981 -0.977738 0.027793 -0.948495 -0.310479 -0.062934 0.068451 -0.006895 -0.997631 0.309310 -0.950555 0.027793 -0.911138 -0.407267 -0.062934 0.068797 0.000248 -0.997631 0.406318 -0.913309 0.027793 -0.863436 -0.500518 -0.062934 0.068392 0.007457 -0.997631 0.499802 -0.865694 0.027793 -0.806222 -0.588256 -0.062934 0.067234 0.014584 -0.997631 0.587780 -0.808543 0.027793 -0.740798 -0.668774 -0.062934 0.065357 0.021485 -0.997631 0.668541 -0.743156 0.027793 -0.666626 -0.742731 -0.062934 0.062745 0.028217 -0.997631 0.742747 -0.668995 0.027793 -0.585111 -0.808508 -0.062934 0.059442 0.034637 -0.997631 0.808772 -0.587465 0.027793 -0.497151 -0.865379 -0.062934 0.055485 0.040677 -0.997631 0.865888 -0.499465 0.027793 -0.404627 -0.912314 -0.062934 0.050962 0.046217 -0.997631 0.913060 -0.406876 0.027793 -0.306782 -0.949697 -0.062934 0.045838 0.051304 -0.997631 0.950675 -0.308940 0.027793 -0.205557 -0.976619 -0.062934 0.040208 0.055825 -0.997631 0.977819 -0.207601 0.027793 -0.103061 -0.992682 -0.062934 0.034196 0.059698 -0.997631 0.994087 -0.104969 0.027793 0.001547 -0.998016 -0.062934 0.027750 0.062953 -0.997631 0.999614 -0.000204 0.027793 0.106137 -0.992358 -0.062934 0.021000 0.065514 -0.997631 0.994130 0.104564 0.027793 0.209559 -0.975769 -0.062934 0.014018 0.067355 -0.997631 0.977696 0.208180 0.027793 0.309724 -0.948741 -0.062934 0.006950 0.068446 -0.997631 0.950801 0.308553 0.027793 0.407453 -0.911055 -0.062934 -0.000262 0.068797 -0.997631 0.913226 0.406504 0.027793 0.500694 -0.863334 -0.062934 -0.007471 0.068391 -0.997631 0.865592 0.499978 0.027793 0.588420 -0.806102 -0.062934 -0.014598 0.067231 -0.997631 0.808424 0.587945 0.027793 0.668924 -0.740662 -0.062934 -0.021498 0.065352 -0.997631 0.743020 0.668692 0.027793 0.742867 -0.666474 -0.062934 -0.028229 0.062739 -0.997631 0.668844 0.742883 0.027793 0.808627 -0.584946 -0.062934 -0.034650 0.059435 -0.997631 0.587301 0.808892 0.027793 0.864983 -0.497840 -0.062934 -0.040632 0.055517 -0.997631 0.500154 0.865490 0.027793 0.912396 -0.404442 -0.062934 -0.046227 0.050953 -0.997631 0.406690 0.913143 0.027793 0.949759 -0.306589 -0.062934 -0.051313 0.045827 -0.997631 0.308746 0.950738 0.027793 0.976661 -0.205358 -0.062934 -0.055833 0.040197 -0.997631 0.207402 0.977861 0.027793 0.992703 -0.102859 -0.062934 -0.059704 0.034183 -0.997631 0.104767 0.994108 0.027793 0.998016 0.001750 -0.062934 -0.062958 0.027738 -0.997631 0.000000 0.999614 0.027793 0.992336 0.106339 -0.062934 -0.065519 0.020986 -0.997631 -0.104767 0.994108 0.027793 0.975935 0.208782 -0.062934 -0.067343 0.014071 -0.997631 -0.207402 0.977861 0.027793 0.948678 0.309917 -0.062934 -0.068447 0.006936 -0.997631 -0.308746 0.950738 0.027793 0.910972 0.407638 -0.062934 -0.068797 -0.000276 -0.997631 -0.406690 0.913143 0.027793 0.863232 0.500870 -0.062934 -0.068389 -0.007485 -0.997631 -0.500154 0.865490 0.027793 0.806571 0.587778 -0.062934 -0.067243 -0.014544 -0.997631 -0.587301 0.808892 0.027793 0.740525 0.669075 -0.062934 -0.065348 -0.021512 -0.997631 -0.668844 0.742883 0.027793 0.666323 0.743003 -0.062934 -0.062734 -0.028242 -0.997631 -0.743020 0.668692 0.027793 0.585590 0.808161 -0.062934 -0.059463 -0.034602 -0.997631 -0.808424 0.587945 0.027793 0.497664 0.865084 -0.062934 -0.055509 -0.040644 -0.997631 -0.865592 0.499978 0.027793 0.404256 0.912478 -0.062934 -0.050943 -0.046238 -0.997631 -0.913226 0.406504 0.027793 0.306395 0.949822 -0.062934 -0.045817 -0.051322 -0.997631 -0.950801 0.308553 0.027793 0.206136 0.976497 -0.062934 -0.040241 -0.055801 -0.997631 -0.977696 0.208180 0.027793 0.102657 0.992724 -0.062934 -0.034171 -0.059711 -0.997631 -0.994130 0.104564 0.027793 -0.177232 -0.973567 -0.144069 0.755812 -0.228401 0.613662 -0.630347 -0.000128 0.776314 -0.074219 -0.986781 -0.144069 0.775587 -0.147928 0.613662 -0.626862 -0.066193 0.776314 0.028622 -0.989154 -0.144069 0.786754 -0.066613 0.613662 -0.616603 -0.130911 0.776314 0.132135 -0.980706 -0.144069 0.789402 0.016211 0.613662 -0.599487 -0.194815 0.776314 0.234193 -0.961456 -0.144069 0.783356 0.098857 0.613662 -0.575767 -0.256572 0.776314 0.332739 -0.931949 -0.144069 0.768860 0.179645 0.613662 -0.546021 -0.314958 0.776314 0.428581 -0.891943 -0.144069 0.745798 0.259238 0.613662 -0.510004 -0.370450 0.776314 0.519702 -0.842113 -0.144069 0.714520 0.335975 0.613662 -0.468369 -0.421862 0.776314 0.605100 -0.783006 -0.144069 0.675373 0.409011 0.613662 -0.421576 -0.468627 0.776314 0.683116 -0.715958 -0.144069 0.629263 0.476914 0.613662 -0.370648 -0.509860 0.776314 0.754392 -0.640420 -0.144069 0.575813 0.540238 0.613662 -0.315170 -0.545898 0.776314 0.817357 -0.557827 -0.144069 0.516021 0.597612 0.613662 -0.256220 -0.575924 0.776314 0.870851 -0.469961 -0.144069 0.451194 0.647953 0.613662 -0.195048 -0.599411 0.776314 0.915310 -0.376101 -0.144069 0.380799 0.691673 0.613662 -0.131151 -0.616552 0.776314 0.949687 -0.278099 -0.144069 0.306209 0.727774 0.613662 -0.065810 -0.626902 0.776314 0.973459 -0.177826 -0.144069 0.228862 0.755672 0.613662 -0.000257 -0.630347 0.776314 0.986735 -0.074822 -0.144069 0.148402 0.775497 0.613662 0.065810 -0.626902 0.776314 0.989142 0.029007 -0.144069 0.066307 0.786779 0.613662 0.131151 -0.616552 0.776314 0.980655 0.132517 -0.144069 -0.016518 0.789396 0.613662 0.195048 -0.599411 0.776314 0.961599 0.233605 -0.144069 -0.098378 0.783416 0.613662 0.256220 -0.575924 0.776314 0.931820 0.333101 -0.144069 -0.179944 0.768790 0.613662 0.315170 -0.545898 0.776314 0.891776 0.428928 -0.144069 -0.259528 0.745697 0.613662 0.370648 -0.509860 0.776314 0.842430 0.519188 -0.144069 -0.335538 0.714726 0.613662 0.421576 -0.468627 0.776314 0.783376 0.604621 -0.144069 -0.408599 0.675622 0.613662 0.468369 -0.421862 0.776314 0.715693 0.683395 -0.144069 -0.477158 0.629077 0.613662 0.510004 -0.370450 0.776314 0.640126 0.754641 -0.144069 -0.540462 0.575603 0.613662 0.546021 -0.314958 0.776314 0.558326 0.817016 -0.144069 -0.597297 0.516386 0.613662 0.575767 -0.256572 0.776314 0.469622 0.871033 -0.144069 -0.648128 0.450941 0.613662 0.599487 -0.194815 0.776314 0.375745 0.915456 -0.144069 -0.691821 0.380529 0.613662 0.616603 -0.130911 0.776314 0.278679 0.949517 -0.144069 -0.727587 0.306654 0.613662 0.626862 -0.066193 0.776314 0.177628 0.973495 -0.144069 -0.755719 0.228708 0.613662 0.630347 -0.000128 0.776314 0.074621 0.986750 -0.144069 -0.775527 0.148244 0.613662 0.626889 0.065937 0.776314 -0.029209 0.989137 -0.144069 -0.786793 0.066147 0.613662 0.616525 0.131277 0.776314 -0.131736 0.980760 -0.144069 -0.789409 -0.015890 0.613662 0.599566 0.194570 0.776314 -0.233801 0.961552 -0.144069 -0.783396 -0.098538 0.613662 0.575872 0.256338 0.776314 -0.333291 0.931752 -0.144069 -0.768754 -0.180101 0.613662 0.545834 0.315281 0.776314 -0.429109 0.891689 -0.144069 -0.745644 -0.259680 0.613662 0.509784 0.370752 0.776314 -0.519360 0.842324 -0.144069 -0.714657 -0.335684 0.613662 0.468541 0.421671 0.776314 -0.604781 0.783252 -0.144069 -0.675539 -0.408736 0.613662 0.421766 0.468455 0.776314 -0.683540 0.715553 -0.144069 -0.628980 -0.477286 0.613662 0.370346 0.510079 0.776314 -0.754131 0.640727 -0.144069 -0.576033 -0.540004 0.613662 0.315392 0.545770 0.776314 -0.817130 0.558160 -0.144069 -0.516265 -0.597402 0.613662 0.256455 0.575820 0.776314 -0.871129 0.469445 -0.144069 -0.450809 -0.648220 0.613662 0.194692 0.599527 0.776314 -0.915533 0.375559 -0.144069 -0.380388 -0.691898 0.613662 0.130785 0.616630 0.776314 -0.949574 0.278486 -0.144069 -0.306505 -0.727649 0.613662 0.066065 0.626875 0.776314 -0.973531 0.177430 -0.144069 -0.228555 -0.755765 0.613662 0.000000 0.630347 0.776314 -0.986765 0.074420 -0.144069 -0.148086 -0.775557 0.613662 -0.066065 0.626875 0.776314 -0.989159 -0.028421 -0.144069 -0.066773 -0.786740 0.613662 -0.130785 0.616630 0.776314 -0.980733 -0.131936 -0.144069 0.016050 -0.789405 0.613662 -0.194692 0.599527 0.776314 -0.961504 -0.233997 -0.144069 0.098697 -0.783376 0.613662 -0.256455 0.575820 0.776314 -0.931684 -0.333481 -0.144069 0.180257 -0.768717 0.613662 -0.315392 0.545770 0.776314 -0.892030 -0.428399 -0.144069 0.259086 -0.745851 0.613662 -0.370346 0.510079 0.776314 -0.842218 -0.519531 -0.144069 0.335829 -0.714589 0.613662 -0.421766 0.468455 0.776314 -0.783129 -0.604940 -0.144069 0.408874 -0.675456 0.613662 -0.468541 0.421671 0.776314 -0.716098 -0.682970 -0.144069 0.476785 -0.629360 0.613662 -0.509784 0.370752 0.776314 -0.640573 -0.754261 -0.144069 0.540121 -0.575923 0.613662 -0.545834 0.315281 0.776314 -0.557994 -0.817244 -0.144069 0.597507 -0.516143 0.613662 -0.575872 0.256338 0.776314 -0.469267 -0.871225 -0.144069 0.648312 -0.450677 0.613662 -0.599566 0.194570 0.776314 -0.376288 -0.915233 -0.144069 0.691595 -0.380939 0.613662 -0.616525 0.131277 0.776314 -0.278292 -0.949630 -0.144069 0.727711 -0.306357 0.613662 -0.626889 0.065937 0.776314 -0.011893 0.994901 0.100148 0.115331 0.100852 -0.988194 -0.993256 -0.000202 -0.115942 -0.116100 0.988176 0.100148 0.104126 0.112384 -0.988194 -0.987764 -0.104302 -0.115942 -0.218058 0.970784 0.100148 0.091896 0.122586 -0.988194 -0.971600 -0.206280 -0.115942 -0.318602 0.942583 0.100148 0.078542 0.131543 -0.988194 -0.944629 -0.306975 -0.115942 -0.415637 0.904000 0.100148 0.064323 0.139050 -0.988194 -0.907253 -0.404288 -0.115942 -0.507238 0.855967 0.100148 0.049540 0.144976 -0.988194 -0.860381 -0.496288 -0.115942 -0.594156 0.798091 0.100148 0.034073 0.149370 -0.988194 -0.803628 -0.583729 -0.115942 -0.674529 0.731424 0.100148 0.018230 0.152118 -0.988194 -0.738023 -0.664740 -0.115942 -0.747473 0.656700 0.100148 0.002187 0.153191 -0.988194 -0.664289 -0.738429 -0.115942 -0.811608 0.575555 0.100148 -0.013728 0.152591 -0.988194 -0.584041 -0.803401 -0.115942 -0.867460 0.487323 0.100148 -0.029645 0.150311 -0.988194 -0.496623 -0.860188 -0.115942 -0.913758 0.393723 0.100148 -0.045236 0.146376 -0.988194 -0.403734 -0.907500 -0.115942 -0.949694 0.296736 0.100148 -0.060187 0.140890 -0.988194 -0.307342 -0.944509 -0.115942 -0.975563 0.195567 0.100148 -0.074622 0.133806 -0.988194 -0.206658 -0.971519 -0.115942 -0.990687 0.092244 0.100148 -0.088234 0.125248 -0.988194 -0.103698 -0.987828 -0.115942 -0.994909 -0.011285 0.100148 -0.100781 0.115393 -0.988194 -0.000405 -0.993256 -0.115942 -0.988246 -0.115496 0.100148 -0.112320 0.104194 -0.988194 0.103698 -0.987828 -0.115942 -0.970699 -0.218436 0.100148 -0.122622 0.091849 -0.988194 0.206658 -0.971519 -0.115942 -0.942459 -0.318969 0.100148 -0.131573 0.078491 -0.988194 0.307342 -0.944509 -0.115942 -0.904254 -0.415084 0.100148 -0.139011 0.064408 -0.988194 0.403734 -0.907500 -0.115942 -0.855770 -0.507571 0.100148 -0.144995 0.049484 -0.988194 0.496623 -0.860188 -0.115942 -0.797860 -0.594466 0.100148 -0.149383 0.034015 -0.988194 0.584041 -0.803401 -0.115942 -0.731836 -0.674082 0.100148 -0.152107 0.018323 -0.988194 0.664289 -0.738429 -0.115942 -0.657157 -0.747071 0.100148 -0.153190 0.002280 -0.988194 0.738023 -0.664740 -0.115942 -0.575239 -0.811832 0.100148 -0.152585 -0.013788 -0.988194 0.803628 -0.583729 -0.115942 -0.486985 -0.867650 0.100148 -0.150300 -0.029704 -0.988194 0.860381 -0.496288 -0.115942 -0.394281 -0.913517 0.100148 -0.146404 -0.045146 -0.988194 0.907253 -0.404288 -0.115942 -0.296366 -0.949809 0.100148 -0.140866 -0.060242 -0.988194 0.944629 -0.306975 -0.115942 -0.195187 -0.975639 0.100148 -0.133777 -0.074674 -0.988194 0.971600 -0.206280 -0.115942 -0.092849 -0.990631 0.100148 -0.125302 -0.088158 -0.988194 0.987764 -0.104302 -0.115942 0.011488 -0.994906 0.100148 -0.115372 -0.100805 -0.988194 0.993256 -0.000202 -0.115942 0.115698 -0.988223 0.100148 -0.104172 -0.112342 -0.988194 0.987807 0.103899 -0.115942 0.218633 -0.970654 0.100148 -0.091824 -0.122641 -0.988194 0.971477 0.206856 -0.115942 0.318218 -0.942713 0.100148 -0.078596 -0.131511 -0.988194 0.944754 0.306590 -0.115942 0.415269 -0.904169 0.100148 -0.064380 -0.139024 -0.988194 0.907418 0.403919 -0.115942 0.507745 -0.855667 0.100148 -0.049455 -0.145005 -0.988194 0.860087 0.496798 -0.115942 0.594629 -0.797739 0.100148 -0.033985 -0.149390 -0.988194 0.803282 0.584205 -0.115942 0.674231 -0.731698 0.100148 -0.018292 -0.152111 -0.988194 0.738294 0.664439 -0.115942 0.747205 -0.657004 0.100148 -0.002249 -0.153190 -0.988194 0.664590 0.738158 -0.115942 0.811949 -0.575074 0.100148 0.013819 -0.152582 -0.988194 0.583565 0.803747 -0.115942 0.867262 -0.487676 0.100148 0.029584 -0.150323 -0.988194 0.496973 0.859986 -0.115942 0.913597 -0.394095 0.100148 0.045176 -0.146395 -0.988194 0.404103 0.907336 -0.115942 0.949869 -0.296173 0.100148 0.060270 -0.140854 -0.988194 0.306783 0.944691 -0.115942 0.975679 -0.194989 0.100148 0.074701 -0.133761 -0.988194 0.206083 0.971642 -0.115942 0.990650 -0.092647 0.100148 0.088183 -0.125284 -0.988194 0.104100 0.987786 -0.115942 0.994904 0.011690 0.100148 0.100828 -0.115352 -0.988194 0.000000 0.993256 -0.115942 0.988199 0.115899 0.100148 0.112363 -0.104149 -0.988194 -0.104100 0.987786 -0.115942 0.970828 0.217860 0.100148 0.122568 -0.091921 -0.988194 -0.206083 0.971642 -0.115942 0.942648 0.318410 0.100148 0.131527 -0.078569 -0.988194 -0.306783 0.944691 -0.115942 0.904085 0.415453 0.100148 0.139037 -0.064351 -0.988194 -0.404103 0.907336 -0.115942 0.855563 0.507919 0.100148 0.145016 -0.049425 -0.988194 -0.496973 0.859986 -0.115942 0.798212 0.593993 0.100148 0.149363 -0.034103 -0.988194 -0.583565 0.803747 -0.115942 0.731561 0.674380 0.100148 0.152115 -0.018261 -0.988194 -0.664590 0.738158 -0.115942 0.656852 0.747339 0.100148 0.153191 -0.002218 -0.988194 -0.738294 0.664439 -0.115942 0.575720 0.811490 0.100148 0.152593 0.013697 -0.988194 -0.803282 0.584205 -0.115942 0.487499 0.867361 0.100148 0.150317 0.029614 -0.988194 -0.860087 0.496798 -0.115942 0.393909 0.913677 0.100148 0.146386 0.045206 -0.988194 -0.907418 0.403919 -0.115942 0.295979 0.949930 0.100148 0.140842 0.060299 -0.988194 -0.944754 0.306590 -0.115942 0.195765 0.975524 0.100148 0.133821 0.074594 -0.988194 -0.971477 0.206856 -0.115942 0.092445 0.990669 0.100148 0.125266 0.088209 -0.988194 -0.987807 0.103899 -0.115942 0.016003 -0.989989 -0.140233 -0.110819 -0.141143 0.983767 -0.993712 -0.000202 -0.111968 0.119672 -0.982860 -0.140233 -0.095416 -0.151980 0.983767 -0.988218 -0.104349 -0.111968 0.221059 -0.965126 -0.140233 -0.079123 -0.161064 0.983767 -0.972045 -0.206375 -0.111968 0.320994 -0.936642 -0.140233 -0.061807 -0.168470 0.983767 -0.945062 -0.307116 -0.111968 0.417393 -0.897841 -0.140233 -0.043809 -0.174020 0.983767 -0.907670 -0.404474 -0.111968 0.508345 -0.849659 -0.140233 -0.025507 -0.177627 0.983767 -0.860776 -0.496516 -0.111968 0.594595 -0.791702 -0.140233 -0.006750 -0.179322 0.983767 -0.803997 -0.583997 -0.111968 0.674297 -0.725023 -0.140233 0.012081 -0.179042 0.983767 -0.738362 -0.665045 -0.111968 0.746571 -0.650359 -0.140233 0.030780 -0.176790 0.983767 -0.664594 -0.738768 -0.111968 0.810052 -0.569342 -0.140233 0.048966 -0.172639 0.983767 -0.584309 -0.803770 -0.111968 0.865262 -0.481307 -0.140233 0.066791 -0.166557 0.983767 -0.496851 -0.860583 -0.111968 0.910941 -0.387970 -0.140233 0.083879 -0.158639 0.983767 -0.403919 -0.907917 -0.111968 0.946295 -0.291307 -0.140233 0.099895 -0.149074 0.983767 -0.307483 -0.944943 -0.111968 0.971615 -0.190524 -0.140233 0.114969 -0.137784 0.983767 -0.206753 -0.971965 -0.111968 0.986232 -0.087643 -0.140233 0.128776 -0.124975 0.983767 -0.103746 -0.988281 -0.111968 0.989999 0.015398 -0.140233 0.141075 -0.110905 0.983767 -0.000405 -0.993712 -0.111968 0.982933 0.119072 -0.140233 0.151922 -0.095509 0.983767 0.103746 -0.988281 -0.111968 0.965040 0.221435 -0.140233 0.161095 -0.079060 0.983767 0.206753 -0.971965 -0.111968 0.936517 0.321358 -0.140233 0.168494 -0.061741 0.983767 0.307483 -0.944943 -0.111968 0.898096 0.416844 -0.140233 0.173993 -0.043916 0.983767 0.403919 -0.907917 -0.111968 0.849461 0.508675 -0.140233 0.177637 -0.025438 0.983767 0.496851 -0.860583 -0.111968 0.791470 0.594903 -0.140233 0.179325 -0.006680 0.983767 0.584309 -0.803770 -0.111968 0.725435 0.673854 -0.140233 0.179050 0.011972 0.983767 0.664594 -0.738768 -0.111968 0.650815 0.746173 -0.140233 0.176809 0.030672 0.983767 0.738362 -0.665045 -0.111968 0.569027 0.810274 -0.140233 0.172620 0.049034 0.983767 0.803997 -0.583997 -0.111968 0.480970 0.865449 -0.140233 0.166531 0.066855 0.983767 0.860776 -0.496516 -0.111968 0.388527 0.910704 -0.140233 0.158690 0.083782 0.983767 0.907670 -0.404474 -0.111968 0.290939 0.946409 -0.140233 0.149035 0.099953 0.983767 0.945062 -0.307116 -0.111968 0.190146 0.971689 -0.140233 0.137739 0.115022 0.983767 0.972045 -0.206375 -0.111968 0.088245 0.986178 -0.140233 0.125054 0.128700 0.983767 0.988218 -0.104349 -0.111968 -0.015599 0.989996 -0.140233 0.110877 0.141097 0.983767 0.993712 -0.000202 -0.111968 -0.119272 0.982908 -0.140233 0.095478 0.151941 0.983767 0.988260 0.103947 -0.111968 -0.221631 0.964995 -0.140233 0.079028 0.161111 0.983767 0.971923 0.206951 -0.111968 -0.320612 0.936772 -0.140233 0.061875 0.168445 0.983767 0.945187 0.306731 -0.111968 -0.417027 0.898011 -0.140233 0.043880 0.174002 0.983767 0.907834 0.404104 -0.111968 -0.508848 0.849358 -0.140233 0.025402 0.177642 0.983767 0.860482 0.497026 -0.111968 -0.595064 0.791349 -0.140233 0.006644 0.179326 0.983767 0.803650 0.584473 -0.111968 -0.674001 0.725298 -0.140233 -0.012008 0.179047 0.983767 0.738633 0.664744 -0.111968 -0.746306 0.650663 -0.140233 -0.030708 0.176803 0.983767 0.664895 0.738497 -0.111968 -0.810390 0.568862 -0.140233 -0.049069 0.172610 0.983767 0.583833 0.804116 -0.111968 -0.865066 0.481659 -0.140233 -0.066723 0.166584 0.983767 0.497201 0.860380 -0.111968 -0.910783 0.388342 -0.140233 -0.083814 0.158673 0.983767 0.404289 0.907752 -0.111968 -0.946468 0.290746 -0.140233 -0.099983 0.149015 0.983767 0.306923 0.945125 -0.111968 -0.971728 0.189948 -0.140233 -0.115050 0.137715 0.983767 0.206177 0.972088 -0.111968 -0.986196 0.088044 -0.140233 -0.128725 0.125028 0.983767 0.104148 0.988239 -0.111968 -0.989992 -0.015801 -0.140233 -0.141120 0.110848 0.983767 0.000000 0.993712 -0.111968 -0.982884 -0.119472 -0.140233 -0.151960 0.095447 0.983767 -0.104148 0.988239 -0.111968 -0.965171 -0.220863 -0.140233 -0.161048 0.079156 0.983767 -0.206177 0.972088 -0.111968 -0.936707 -0.320803 -0.140233 -0.168457 0.061841 0.983767 -0.306923 0.945125 -0.111968 -0.897926 -0.417210 -0.140233 -0.174011 0.043845 0.983767 -0.404289 0.907752 -0.111968 -0.849254 -0.509021 -0.140233 -0.177648 0.025366 0.983767 -0.497201 0.860380 -0.111968 -0.791823 -0.594434 -0.140233 -0.179321 0.006787 0.983767 -0.583833 0.804116 -0.111968 -0.725161 -0.674149 -0.140233 -0.179045 -0.012045 0.983767 -0.664895 0.738497 -0.111968 -0.650511 -0.746438 -0.140233 -0.176796 -0.030744 0.983767 -0.738633 0.664744 -0.111968 -0.569507 -0.809936 -0.140233 -0.172649 -0.048931 0.983767 -0.803650 0.584473 -0.111968 -0.481483 -0.865164 -0.140233 -0.166570 -0.066757 0.983767 -0.860482 0.497026 -0.111968 -0.388156 -0.910862 -0.140233 -0.158656 -0.083847 0.983767 -0.907834 0.404104 -0.111968 -0.290553 -0.946527 -0.140233 -0.148995 -0.100013 0.983767 -0.945187 0.306731 -0.111968 -0.190722 -0.971576 -0.140233 -0.137807 -0.114940 0.983767 -0.971923 0.206951 -0.111968 -0.087844 -0.986214 -0.140233 -0.125002 -0.128751 0.983767 -0.988260 0.103947 -0.111968 -0.033065 0.974564 0.221658 0.142897 0.224110 -0.964031 -0.989185 -0.000201 -0.146673 -0.135024 0.965731 0.221658 0.118622 0.237853 -0.964031 -0.983716 -0.103874 -0.146673 -0.234550 0.946496 0.221658 0.093289 0.248882 -0.964031 -0.967618 -0.205435 -0.146673 -0.332458 0.916701 0.221658 0.066690 0.257288 -0.964031 -0.940757 -0.305717 -0.146673 -0.426703 0.876808 0.221658 0.039357 0.262861 -0.964031 -0.903535 -0.402631 -0.146673 -0.515422 0.827773 0.221658 0.011857 0.265527 -0.964031 -0.856855 -0.494254 -0.146673 -0.599339 0.769195 0.221658 -0.016038 0.265307 -0.964031 -0.800334 -0.581336 -0.146673 -0.676656 0.702143 0.221658 -0.043756 0.262165 -0.964031 -0.734998 -0.662015 -0.146673 -0.746519 0.627358 0.221658 -0.070991 0.256135 -0.964031 -0.661566 -0.735403 -0.146673 -0.807613 0.546470 0.221658 -0.097198 0.247381 -0.964031 -0.581648 -0.800108 -0.146673 -0.860439 0.458817 0.221658 -0.122590 0.235832 -0.964031 -0.494587 -0.856662 -0.146673 -0.903787 0.366110 0.221658 -0.146632 0.221685 -0.964031 -0.402079 -0.903781 -0.146673 -0.936911 0.270307 0.221658 -0.168853 0.205265 -0.964031 -0.306083 -0.940638 -0.146673 -0.960081 0.170623 0.221658 -0.189436 0.186437 -0.964031 -0.205811 -0.967537 -0.146673 -0.972676 0.069060 0.221658 -0.207933 0.165556 -0.964031 -0.103273 -0.983779 -0.146673 -0.974584 -0.032470 0.221658 -0.224023 0.143034 -0.964031 -0.000403 -0.989185 -0.146673 -0.965813 -0.134434 0.221658 -0.237780 0.118767 -0.964031 0.103273 -0.983779 -0.146673 -0.946404 -0.234918 0.221658 -0.248918 0.093192 -0.964031 0.205811 -0.967537 -0.146673 -0.916571 -0.332814 0.221658 -0.257314 0.066590 -0.964031 0.306083 -0.940638 -0.146673 -0.877069 -0.426167 0.221658 -0.262837 0.039518 -0.964031 0.402079 -0.903781 -0.146673 -0.827573 -0.515743 0.221658 -0.265531 0.011753 -0.964031 0.494587 -0.856662 -0.146673 -0.768961 -0.599639 0.221658 -0.265301 -0.016141 -0.964031 0.581648 -0.800108 -0.146673 -0.702556 -0.676227 0.221658 -0.262192 -0.043595 -0.964031 0.661566 -0.735403 -0.146673 -0.627814 -0.746135 0.221658 -0.256178 -0.070835 -0.964031 0.734998 -0.662015 -0.146673 -0.546156 -0.807825 0.221658 -0.247344 -0.097294 -0.964031 0.800334 -0.581336 -0.146673 -0.458482 -0.860617 0.221658 -0.235784 -0.122682 -0.964031 0.856855 -0.494254 -0.146673 -0.366662 -0.903563 0.221658 -0.221774 -0.146496 -0.964031 0.903535 -0.402631 -0.146673 -0.269942 -0.937016 0.221658 -0.205199 -0.168933 -0.964031 0.940757 -0.305717 -0.146673 -0.170250 -0.960147 0.221658 -0.186364 -0.189509 -0.964031 0.967618 -0.205435 -0.146673 -0.069655 -0.972634 0.221658 -0.165683 -0.207832 -0.964031 0.983716 -0.103874 -0.146673 0.032668 -0.974577 0.221658 -0.142989 -0.224052 -0.964031 0.989185 -0.000201 -0.146673 0.134631 -0.965786 0.221658 -0.118719 -0.237804 -0.964031 0.983758 0.103473 -0.146673 0.235111 -0.946357 0.221658 -0.093141 -0.248937 -0.964031 0.967496 0.206008 -0.146673 0.332084 -0.916836 0.221658 -0.066795 -0.257261 -0.964031 0.940882 0.305334 -0.146673 0.426346 -0.876982 0.221658 -0.039465 -0.262845 -0.964031 0.903699 0.402263 -0.146673 0.515912 -0.827468 0.221658 -0.011699 -0.265534 -0.964031 0.856562 0.494762 -0.146673 0.599795 -0.768839 0.221658 0.016195 -0.265297 -0.964031 0.799990 0.581811 -0.146673 0.676370 -0.702419 0.221658 0.043649 -0.262183 -0.964031 0.735268 0.661716 -0.146673 0.746263 -0.627662 0.221658 0.070887 -0.256164 -0.964031 0.661866 0.735133 -0.146673 0.807937 -0.545991 0.221658 0.097344 -0.247324 -0.964031 0.581173 0.800453 -0.146673 0.860252 -0.459167 0.221658 0.122494 -0.235882 -0.964031 0.494936 0.856461 -0.146673 0.903638 -0.366478 0.221658 0.146541 -0.221745 -0.964031 0.402447 0.903617 -0.146673 0.937071 -0.269752 0.221658 0.168975 -0.205165 -0.964031 0.305525 0.940820 -0.146673 0.960182 -0.170054 0.221658 0.189547 -0.186325 -0.964031 0.205238 0.967659 -0.146673 0.972648 -0.069456 0.221658 0.207865 -0.165641 -0.964031 0.103674 0.983737 -0.146673 0.974571 0.032867 0.221658 0.224081 -0.142943 -0.964031 0.000000 0.989185 -0.146673 0.965759 0.134828 0.221658 0.237828 -0.118670 -0.964031 -0.103674 0.983737 -0.146673 0.946544 0.234357 0.221658 0.248863 -0.093340 -0.964031 -0.205238 0.967659 -0.146673 0.916768 0.332271 0.221658 0.257275 -0.066743 -0.964031 -0.305525 0.940820 -0.146673 0.876895 0.426525 0.221658 0.262853 -0.039411 -0.964031 -0.402447 0.903617 -0.146673 0.827363 0.516081 0.221658 0.265536 -0.011645 -0.964031 -0.494936 0.856461 -0.146673 0.769316 0.599183 0.221658 0.265310 0.015984 -0.964031 -0.581173 0.800453 -0.146673 0.702281 0.676513 0.221658 0.262174 0.043702 -0.964031 -0.661866 0.735133 -0.146673 0.627510 0.746391 0.221658 0.256150 0.070939 -0.964031 -0.735268 0.661716 -0.146673 0.546634 0.807501 0.221658 0.247401 0.097147 -0.964031 -0.799990 0.581811 -0.146673 0.458992 0.860345 0.221658 0.235857 0.122542 -0.964031 -0.856562 0.494762 -0.146673 0.366294 0.903713 0.221658 0.221715 0.146586 -0.964031 -0.903699 0.402263 -0.146673 0.269561 0.937126 0.221658 0.205130 0.169016 -0.964031 -0.940882 0.305334 -0.146673 0.170819 0.960046 0.221658 0.186476 0.189398 -0.964031 -0.967496 0.206008 -0.146673 0.069258 0.972662 0.221658 0.165599 0.207899 -0.964031 -0.983758 0.103473 -0.146673 -0.142128 -0.943252 -0.300126 0.404208 -0.332078 0.852256 -0.903557 -0.000184 0.428468 -0.042485 -0.952953 -0.300126 0.436786 -0.287885 0.852256 -0.898561 -0.094882 0.428468 0.056673 -0.952215 -0.300126 0.464312 -0.240985 0.852256 -0.883856 -0.187652 0.428468 0.156160 -0.941031 -0.300126 0.487012 -0.190995 0.852256 -0.859321 -0.279253 0.428468 0.253926 -0.919481 -0.300126 0.504348 -0.138901 0.852256 -0.825321 -0.367778 0.428468 0.348008 -0.888153 -0.300126 0.516042 -0.085793 0.852256 -0.782682 -0.451469 0.428468 0.439176 -0.846788 -0.300126 0.522192 -0.031235 0.852256 -0.731054 -0.531013 0.428468 0.525507 -0.796095 -0.300126 0.522590 0.023666 0.852256 -0.671374 -0.604709 0.428468 0.606049 -0.736634 -0.300126 0.517231 0.078307 0.852256 -0.604298 -0.671743 0.428468 0.679246 -0.669738 -0.300126 0.506307 0.131579 0.852256 -0.531298 -0.730847 0.428468 0.745699 -0.594860 -0.300126 0.489728 0.183919 0.852256 -0.451774 -0.782506 0.428468 0.803938 -0.513429 -0.300126 0.467755 0.234233 0.852256 -0.367273 -0.825546 0.428468 0.852894 -0.427196 -0.300126 0.440911 0.281526 0.852256 -0.279587 -0.859213 0.428468 0.892970 -0.335454 -0.300126 0.408977 0.326187 0.852256 -0.187995 -0.883783 0.428468 0.923210 -0.240017 -0.300126 0.372538 0.367254 0.852256 -0.094333 -0.898619 0.428468 0.943165 -0.142704 -0.300126 0.332325 0.404005 0.852256 -0.000368 -0.903557 0.428468 0.952927 -0.043068 -0.300126 0.288152 0.436610 0.852256 0.094333 -0.898619 0.428468 0.952193 0.057043 -0.300126 0.240805 0.464406 0.852256 0.187995 -0.883783 0.428468 0.940970 0.156526 -0.300126 0.190805 0.487086 0.852256 0.279587 -0.859213 0.428468 0.919636 0.253364 -0.300126 0.139209 0.504263 0.852256 0.367273 -0.825546 0.428468 0.888017 0.348353 -0.300126 0.085592 0.516076 0.852256 0.451774 -0.782506 0.428468 0.846617 0.439506 -0.300126 0.031032 0.522204 0.852256 0.531298 -0.730847 0.428468 0.796416 0.525020 -0.300126 -0.023347 0.522604 0.852256 0.604298 -0.671743 0.428468 0.737004 0.605599 -0.300126 -0.077991 0.517279 0.852256 0.671374 -0.604709 0.428468 0.669474 0.679507 -0.300126 -0.131776 0.506256 0.852256 0.731054 -0.531013 0.428468 0.594570 0.745930 -0.300126 -0.184110 0.489657 0.852256 0.782682 -0.451469 0.428468 0.513920 0.803624 -0.300126 -0.233947 0.467898 0.852256 0.825321 -0.367778 0.428468 0.426864 0.853060 -0.300126 -0.281698 0.440802 0.852256 0.859321 -0.279253 0.428468 0.335106 0.893101 -0.300126 -0.326346 0.408850 0.852256 0.883856 -0.187652 0.428468 0.240581 0.923063 -0.300126 -0.367026 0.372762 0.852256 0.898561 -0.094882 0.428468 0.142512 0.943194 -0.300126 -0.404073 0.332242 0.852256 0.903557 -0.000184 0.428468 0.042874 0.952936 -0.300126 -0.436669 0.288063 0.852256 0.898600 0.094516 0.428468 -0.057237 0.952181 -0.300126 -0.464455 0.240710 0.852256 0.883745 0.188175 0.428468 -0.155776 0.941094 -0.300126 -0.486934 0.191193 0.852256 0.859435 0.278903 0.428468 -0.253552 0.919585 -0.300126 -0.504291 0.139106 0.852256 0.825471 0.367442 0.428468 -0.348534 0.887946 -0.300126 -0.516093 0.085487 0.852256 0.782414 0.451933 0.428468 -0.439678 0.846527 -0.300126 -0.522210 0.030926 0.852256 0.730739 0.531447 0.428468 -0.525182 0.796309 -0.300126 -0.522599 -0.023453 0.852256 0.671620 0.604435 0.428468 -0.605749 0.736880 -0.300126 -0.517263 -0.078096 0.852256 0.604572 0.671497 0.428468 -0.679643 0.669335 -0.300126 -0.506229 -0.131879 0.852256 0.530865 0.731162 0.428468 -0.745456 0.595163 -0.300126 -0.489803 -0.183720 0.852256 0.452092 0.782322 0.428468 -0.803728 0.513756 -0.300126 -0.467850 -0.234043 0.852256 0.367610 0.825396 0.428468 -0.853147 0.426690 -0.300126 -0.440744 -0.281788 0.852256 0.279078 0.859378 0.428468 -0.893169 0.334924 -0.300126 -0.408784 -0.326429 0.852256 0.187472 0.883895 0.428468 -0.923112 0.240393 -0.300126 -0.372687 -0.367102 0.852256 0.094699 0.898581 0.428468 -0.943223 0.142320 -0.300126 -0.332160 -0.404141 0.852256 0.000000 0.903557 0.428468 -0.952944 0.042679 -0.300126 -0.287974 -0.436728 0.852256 -0.094699 0.898581 0.428468 -0.952226 -0.056479 -0.300126 -0.241080 -0.464263 0.852256 -0.187472 0.883895 0.428468 -0.941063 -0.155968 -0.300126 -0.191094 -0.486973 0.852256 -0.279078 0.859378 0.428468 -0.919533 -0.253739 -0.300126 -0.139003 -0.504319 0.852256 -0.367610 0.825396 0.428468 -0.887875 -0.348715 -0.300126 -0.085382 -0.516110 0.852256 -0.452092 0.782322 0.428468 -0.846877 -0.439004 -0.300126 -0.031341 -0.522185 0.852256 -0.530865 0.731162 0.428468 -0.796202 -0.525345 -0.300126 0.023560 -0.522594 0.852256 -0.604572 0.671497 0.428468 -0.736757 -0.605899 -0.300126 0.078202 -0.517247 0.852256 -0.671620 0.604435 0.428468 -0.669876 -0.679110 -0.300126 0.131476 -0.506334 0.852256 -0.730739 0.531447 0.428468 -0.595011 -0.745578 -0.300126 0.183819 -0.489766 0.852256 -0.782414 0.451933 0.428468 -0.513593 -0.803833 -0.300126 0.234138 -0.467803 0.852256 -0.825471 0.367442 0.428468 -0.426517 -0.853234 -0.300126 0.281877 -0.440687 0.852256 -0.859435 0.278903 0.428468 -0.335636 -0.892902 -0.300126 0.326103 -0.409043 0.852256 -0.883745 0.188175 0.428468 -0.240205 -0.923161 -0.300126 0.367178 -0.372613 0.852256 -0.898600 0.094516 0.428468 0.179488 0.982417 -0.051397 0.944541 -0.186702 -0.270157 -0.275003 -0.000056 -0.961443 0.075536 0.995818 -0.051397 0.958907 -0.086679 -0.270157 -0.273482 -0.028878 -0.961443 -0.028251 0.998279 -0.051397 0.962724 0.013336 -0.270157 -0.269007 -0.057113 -0.961443 -0.132722 0.989820 -0.051397 0.956024 0.114163 -0.270157 -0.261540 -0.084992 -0.961443 -0.235731 0.970458 -0.051397 0.938794 0.213732 -0.270157 -0.251191 -0.111935 -0.961443 -0.335204 0.940743 -0.051397 0.911533 0.310036 -0.270157 -0.238214 -0.137407 -0.961443 -0.431954 0.900430 -0.051397 0.874019 0.403863 -0.270157 -0.222501 -0.161617 -0.961443 -0.523946 0.850199 -0.051397 0.826878 0.493243 -0.270157 -0.204337 -0.184047 -0.961443 -0.610168 0.790603 -0.051397 0.770628 0.577189 -0.270157 -0.183922 -0.204449 -0.961443 -0.688946 0.722988 -0.051397 0.706545 0.654071 -0.270157 -0.161704 -0.222438 -0.961443 -0.760926 0.646800 -0.051397 0.634102 0.724520 -0.270157 -0.137500 -0.238160 -0.961443 -0.824524 0.563487 -0.051397 0.554675 0.786988 -0.270157 -0.111782 -0.251260 -0.961443 -0.878566 0.474847 -0.051397 0.469979 0.840318 -0.270157 -0.085094 -0.261506 -0.961443 -0.923495 0.380152 -0.051397 0.379319 0.884947 -0.270157 -0.057218 -0.268985 -0.961443 -0.958252 0.281269 -0.051397 0.284481 0.919829 -0.270157 -0.028711 -0.273500 -0.961443 -0.982307 0.180089 -0.051397 0.187279 0.944427 -0.270157 -0.000112 -0.275003 -0.961443 -0.995771 0.076144 -0.051397 0.087265 0.958853 -0.270157 0.028711 -0.273500 -0.961443 -0.998268 -0.028639 -0.051397 -0.013710 0.962719 -0.270157 0.057218 -0.268985 -0.961443 -0.989768 -0.133107 -0.051397 -0.114535 0.955980 -0.270157 0.085094 -0.261506 -0.961443 -0.970602 -0.235138 -0.051397 -0.213158 0.938924 -0.270157 0.111782 -0.251260 -0.961443 -0.940612 -0.335569 -0.051397 -0.310390 0.911413 -0.270157 0.137500 -0.238160 -0.961443 -0.900262 -0.432304 -0.051397 -0.404204 0.873862 -0.270157 0.161704 -0.222438 -0.961443 -0.850519 -0.523427 -0.051397 -0.492738 0.827179 -0.270157 0.183922 -0.204449 -0.961443 -0.790976 -0.609685 -0.051397 -0.576718 0.770981 -0.270157 0.204337 -0.184047 -0.961443 -0.722720 -0.689227 -0.051397 -0.654346 0.706290 -0.270157 0.222501 -0.161617 -0.961443 -0.646504 -0.761177 -0.051397 -0.724767 0.633821 -0.270157 0.238214 -0.137407 -0.961443 -0.563991 -0.824180 -0.051397 -0.786649 0.555156 -0.270157 0.251191 -0.111935 -0.961443 -0.474505 -0.878751 -0.051397 -0.840501 0.469652 -0.270157 0.261540 -0.084992 -0.961443 -0.379792 -0.923643 -0.051397 -0.885095 0.378975 -0.270157 0.269007 -0.057113 -0.961443 -0.281854 -0.958080 -0.051397 -0.919655 0.285043 -0.270157 0.273482 -0.028878 -0.961443 -0.179889 -0.982343 -0.051397 -0.944465 0.187087 -0.270157 0.275003 -0.000056 -0.961443 -0.075941 -0.995787 -0.051397 -0.958871 0.087070 -0.270157 0.273494 0.028767 -0.961443 0.028843 -0.998262 -0.051397 -0.962716 -0.013906 -0.270157 0.268973 0.057272 -0.961443 0.132319 -0.989874 -0.051397 -0.956070 -0.113773 -0.270157 0.261574 0.084886 -0.961443 0.235336 -0.970554 -0.051397 -0.938881 -0.213350 -0.270157 0.251237 0.111833 -0.961443 0.335761 -0.940544 -0.051397 -0.911349 -0.310576 -0.270157 0.238132 0.137548 -0.961443 0.432488 -0.900174 -0.051397 -0.873779 -0.404382 -0.270157 0.222405 0.161749 -0.961443 0.523600 -0.850412 -0.051397 -0.827078 -0.492906 -0.270157 0.204412 0.183963 -0.961443 0.609846 -0.790852 -0.051397 -0.770863 -0.576875 -0.270157 0.184005 0.204374 -0.961443 0.689374 -0.722580 -0.051397 -0.706157 -0.654490 -0.270157 0.161572 0.222534 -0.961443 0.760662 -0.647110 -0.051397 -0.634397 -0.724262 -0.270157 0.137597 0.238104 -0.961443 0.824295 -0.563823 -0.051397 -0.554996 -0.786762 -0.270157 0.111884 0.251214 -0.961443 0.878848 -0.474326 -0.051397 -0.469481 -0.840597 -0.270157 0.084939 0.261557 -0.961443 0.923720 -0.379604 -0.051397 -0.378795 -0.885172 -0.270157 0.057058 0.269019 -0.961443 0.958137 -0.281659 -0.051397 -0.284856 -0.919713 -0.270157 0.028822 0.273488 -0.961443 0.982380 -0.179688 -0.051397 -0.186895 -0.944503 -0.270157 0.000000 0.275003 -0.961443 0.995802 -0.075738 -0.051397 -0.086875 -0.958889 -0.270157 -0.028822 0.273488 -0.961443 0.998284 0.028048 -0.051397 0.013140 -0.962727 -0.270157 -0.057058 0.269019 -0.961443 0.989847 0.132521 -0.051397 0.113968 -0.956047 -0.270157 -0.084939 0.261557 -0.961443 0.970506 0.235534 -0.051397 0.213541 -0.938837 -0.270157 -0.111884 0.251214 -0.961443 0.940476 0.335953 -0.051397 0.310762 -0.911286 -0.270157 -0.137597 0.238104 -0.961443 0.900518 0.431771 -0.051397 0.403686 -0.874101 -0.270157 -0.161572 0.222534 -0.961443 0.850306 0.523773 -0.051397 0.493074 -0.826978 -0.270157 -0.184005 0.204374 -0.961443 0.790727 0.610007 -0.051397 0.577032 -0.770746 -0.270157 -0.204412 0.183963 -0.961443 0.723129 0.688798 -0.051397 0.653927 -0.706678 -0.270157 -0.222405 0.161749 -0.961443 0.646955 0.760794 -0.051397 0.724391 -0.634250 -0.270157 -0.238132 0.137548 -0.961443 0.563655 0.824409 -0.051397 0.786875 -0.554835 -0.270157 -0.251237 0.111833 -0.961443 0.474147 0.878944 -0.051397 0.840692 -0.469310 -0.270157 -0.261574 0.084886 -0.961443 0.380340 0.923418 -0.051397 0.884870 -0.379499 -0.270157 -0.268973 0.057272 -0.961443 0.281464 0.958194 -0.051397 0.919771 -0.284669 -0.270157 -0.273494 0.028767 -0.961443 -0.002816 0.999939 -0.010685 -0.237488 -0.011048 -0.971328 -0.971386 -0.000198 0.237505 -0.107601 0.994137 -0.010685 -0.235022 -0.035878 -0.971328 -0.966016 -0.102005 0.237505 -0.210224 0.977595 -0.010685 -0.230028 -0.060082 -0.971328 -0.950207 -0.201738 0.237505 -0.311525 0.950178 -0.010685 -0.222464 -0.083860 -0.971328 -0.923830 -0.300216 0.237505 -0.409395 0.912295 -0.010685 -0.212450 -0.106714 -0.971328 -0.887277 -0.395387 0.237505 -0.501891 0.864865 -0.010685 -0.200224 -0.128192 -0.971328 -0.841437 -0.485361 0.237505 -0.589770 0.807500 -0.010685 -0.185685 -0.148471 -0.971328 -0.785934 -0.570876 0.237505 -0.671154 0.741241 -0.010685 -0.169102 -0.167115 -0.971328 -0.721773 -0.650104 0.237505 -0.745145 0.666817 -0.010685 -0.150656 -0.183917 -0.971328 -0.649663 -0.722170 0.237505 -0.810343 0.585858 -0.010685 -0.130749 -0.198563 -0.971328 -0.571182 -0.785712 0.237505 -0.867282 0.497702 -0.010685 -0.109218 -0.211173 -0.971328 -0.485688 -0.841248 0.237505 -0.914669 0.404063 -0.010685 -0.086484 -0.221457 -0.971328 -0.394844 -0.887519 0.237505 -0.951673 0.306926 -0.010685 -0.063027 -0.229239 -0.971328 -0.300575 -0.923713 0.237505 -0.978600 0.205494 -0.010685 -0.038654 -0.234582 -0.971328 -0.202108 -0.950128 0.237505 -0.994748 0.101798 -0.010685 -0.013855 -0.237341 -0.971328 -0.101415 -0.966078 0.237505 -0.999940 -0.002205 -0.010685 0.010903 -0.237495 -0.971328 -0.000396 -0.971386 0.237505 -0.994202 -0.106994 -0.010685 0.035734 -0.235044 -0.971328 0.101415 -0.966078 0.237505 -0.977513 -0.210604 -0.010685 0.060172 -0.230005 -0.971328 0.202108 -0.950128 0.237505 -0.950057 -0.311895 -0.010685 0.083946 -0.222431 -0.971328 0.300575 -0.923713 0.237505 -0.912545 -0.408837 -0.010685 0.106584 -0.212515 -0.971328 0.394844 -0.887519 0.237505 -0.864670 -0.502227 -0.010685 0.128270 -0.200174 -0.971328 0.485688 -0.841248 0.237505 -0.807271 -0.590085 -0.010685 0.148543 -0.185628 -0.971328 0.571182 -0.785712 0.237505 -0.741651 -0.670701 -0.010685 0.167011 -0.169204 -0.971328 0.649663 -0.722170 0.237505 -0.667272 -0.744738 -0.010685 0.183825 -0.150768 -0.971328 0.721773 -0.650104 0.237505 -0.585543 -0.810571 -0.010685 0.198614 -0.130672 -0.971328 0.785934 -0.570876 0.237505 -0.497365 -0.867476 -0.010685 0.211216 -0.109136 -0.971328 0.841437 -0.485361 0.237505 -0.404622 -0.914421 -0.010685 0.221404 -0.086619 -0.971328 0.887277 -0.395387 0.237505 -0.306556 -0.951793 -0.010685 0.229263 -0.062937 -0.971328 0.923830 -0.300216 0.237505 -0.205113 -0.978680 -0.010685 0.234597 -0.038562 -0.971328 0.950207 -0.201738 0.237505 -0.102405 -0.994685 -0.010685 0.237332 -0.014000 -0.971328 0.966016 -0.102005 0.237505 0.002409 -0.999940 -0.010685 0.237493 0.010951 -0.971328 0.971386 -0.000198 0.237505 0.107196 -0.994180 -0.010685 0.235037 0.035782 -0.971328 0.966057 0.101612 0.237505 0.210803 -0.977470 -0.010685 0.229992 0.060219 -0.971328 0.950087 0.202302 0.237505 0.311138 -0.950305 -0.010685 0.222498 0.083769 -0.971328 0.923952 0.299840 0.237505 0.409023 -0.912461 -0.010685 0.212493 0.106627 -0.971328 0.887438 0.395025 0.237505 0.502403 -0.864568 -0.010685 0.200148 0.128311 -0.971328 0.841149 0.485859 0.237505 0.590249 -0.807151 -0.010685 0.185597 0.148581 -0.971328 0.785595 0.571342 0.237505 0.670852 -0.741514 -0.010685 0.169170 0.167046 -0.971328 0.722038 0.649810 0.237505 0.744874 -0.667120 -0.010685 0.150731 0.183856 -0.971328 0.649957 0.721906 0.237505 0.810690 -0.585378 -0.010685 0.130631 0.198641 -0.971328 0.570716 0.786050 0.237505 0.867079 -0.498055 -0.010685 0.109304 0.211129 -0.971328 0.486031 0.841050 0.237505 0.914504 -0.404436 -0.010685 0.086574 0.221422 -0.971328 0.395206 0.887358 0.237505 0.951855 -0.306362 -0.010685 0.062891 0.229276 -0.971328 0.300028 0.923891 0.237505 0.978722 -0.204914 -0.010685 0.038515 0.234605 -0.971328 0.201545 0.950248 0.237505 0.994706 -0.102203 -0.010685 0.013952 0.237335 -0.971328 0.101808 0.966036 0.237505 0.999940 0.002613 -0.010685 -0.011000 0.237490 -0.971328 0.000000 0.971386 0.237505 0.994159 0.107399 -0.010685 -0.035830 0.235030 -0.971328 -0.101808 0.966036 0.237505 0.977638 0.210025 -0.010685 -0.060035 0.230040 -0.971328 -0.201545 0.950248 0.237505 0.950241 0.311332 -0.010685 -0.083815 0.222481 -0.971328 -0.300028 0.923891 0.237505 0.912378 0.409209 -0.010685 -0.106671 0.212471 -0.971328 -0.395206 0.887358 0.237505 0.864465 0.502579 -0.010685 -0.128352 0.200121 -0.971328 -0.486031 0.841050 0.237505 0.807620 0.589606 -0.010685 -0.148433 0.185716 -0.971328 -0.570716 0.786050 0.237505 0.741377 0.671003 -0.010685 -0.167080 0.169136 -0.971328 -0.649957 0.721906 0.237505 0.666968 0.745009 -0.010685 -0.183887 0.150693 -0.971328 -0.722038 0.649810 0.237505 0.586023 0.810224 -0.010685 -0.198537 0.130789 -0.971328 -0.785595 0.571342 0.237505 0.497879 0.867181 -0.010685 -0.211151 0.109261 -0.971328 -0.841149 0.485859 0.237505 0.404250 0.914586 -0.010685 -0.221439 0.086529 -0.971328 -0.887438 0.395025 0.237505 0.306168 0.951917 -0.010685 -0.229289 0.062844 -0.971328 -0.923952 0.299840 0.237505 0.205693 0.978558 -0.010685 -0.234574 0.038701 -0.971328 -0.950087 0.202302 0.237505 0.102000 0.994727 -0.010685 -0.237338 0.013903 -0.971328 -0.966057 0.101612 0.237505 0.056952 0.934492 -0.351399 0.150063 -0.355984 -0.922365 -0.987035 -0.000201 -0.160506 -0.041303 0.935314 -0.351399 0.186546 -0.338296 -0.922365 -0.981578 -0.103648 -0.160506 -0.138177 0.925973 -0.351399 0.220657 -0.317103 -0.922365 -0.965514 -0.204988 -0.160506 -0.234465 0.906391 -0.351399 0.252677 -0.292230 -0.922365 -0.938712 -0.305052 -0.160506 -0.328170 0.876826 -0.351399 0.281913 -0.264138 -0.922365 -0.901571 -0.401756 -0.160506 -0.417422 0.838020 -0.351399 0.307810 -0.233445 -0.922365 -0.854992 -0.493180 -0.160506 -0.502954 0.789656 -0.351399 0.330582 -0.199898 -0.922365 -0.798595 -0.580073 -0.160506 -0.582945 0.732594 -0.351399 0.349712 -0.164150 -0.922365 -0.733401 -0.660576 -0.160506 -0.656516 0.667462 -0.351399 0.364990 -0.126594 -0.922365 -0.660128 -0.733804 -0.160506 -0.722260 0.595701 -0.351399 0.376160 -0.088019 -0.922365 -0.580383 -0.798369 -0.160506 -0.780715 0.516722 -0.351399 0.383313 -0.048110 -0.922365 -0.493512 -0.854800 -0.160506 -0.830572 0.432052 -0.351399 0.386245 -0.007671 -0.922365 -0.401205 -0.901816 -0.160506 -0.870937 0.343494 -0.351399 0.384954 0.032467 -0.922365 -0.305417 -0.938594 -0.160506 -0.902141 0.250322 -0.351399 0.379431 0.072635 -0.922365 -0.205364 -0.965434 -0.160506 -0.923408 0.154392 -0.351399 0.369729 0.112002 -0.922365 -0.103049 -0.981641 -0.160506 -0.934457 0.057523 -0.351399 0.356076 0.149845 -0.922365 -0.000402 -0.987035 -0.160506 -0.935339 -0.040731 -0.351399 0.338410 0.186339 -0.922365 0.103049 -0.981641 -0.160506 -0.925919 -0.138537 -0.351399 0.317017 0.220781 -0.922365 0.205364 -0.965434 -0.160506 -0.906300 -0.234817 -0.351399 0.292131 0.252790 -0.922365 0.305417 -0.938594 -0.160506 -0.877026 -0.327634 -0.351399 0.264310 0.281751 -0.922365 0.401205 -0.901816 -0.160506 -0.837858 -0.417748 -0.351399 0.233325 0.307901 -0.922365 0.493512 -0.854800 -0.160506 -0.789460 -0.503261 -0.351399 0.199770 0.330660 -0.922365 0.580383 -0.798369 -0.160506 -0.732950 -0.582498 -0.351399 0.164364 0.349612 -0.922365 0.660128 -0.733804 -0.160506 -0.667863 -0.656108 -0.351399 0.126817 0.364913 -0.922365 0.733401 -0.660576 -0.160506 -0.595420 -0.722491 -0.351399 0.087873 0.376194 -0.922365 0.798595 -0.580073 -0.160506 -0.516419 -0.780916 -0.351399 0.047961 0.383332 -0.922365 0.854992 -0.493180 -0.160506 -0.432559 -0.830308 -0.351399 0.007907 0.386240 -0.922365 0.901571 -0.401756 -0.160506 -0.343155 -0.871070 -0.351399 -0.032617 0.384941 -0.922365 0.938712 -0.305052 -0.160506 -0.249971 -0.902238 -0.351399 -0.072782 0.379403 -0.922365 0.965514 -0.204988 -0.160506 -0.154956 -0.923313 -0.351399 -0.111776 0.369797 -0.922365 0.981578 -0.103648 -0.160506 -0.057333 -0.934469 -0.351399 -0.149918 0.356046 -0.922365 0.987035 -0.000201 -0.160506 0.040922 -0.935331 -0.351399 -0.186408 0.338372 -0.922365 0.981620 0.103248 -0.160506 0.138726 -0.925891 -0.351399 -0.220845 0.316972 -0.922365 0.965392 0.205561 -0.160506 0.234095 -0.906487 -0.351399 -0.252558 0.292333 -0.922365 0.938837 0.304670 -0.160506 0.327812 -0.876959 -0.351399 -0.281805 0.264253 -0.922365 0.901734 0.401389 -0.160506 0.417919 -0.837772 -0.351399 -0.307949 0.233262 -0.922365 0.854700 0.493686 -0.160506 0.503422 -0.789358 -0.351399 -0.330700 0.199702 -0.922365 0.798251 0.580546 -0.160506 0.582647 -0.732831 -0.351399 -0.349645 0.164292 -0.922365 0.733670 0.660278 -0.160506 0.656244 -0.667729 -0.351399 -0.364938 0.126742 -0.922365 0.660427 0.733535 -0.160506 0.722612 -0.595273 -0.351399 -0.376212 0.087796 -0.922365 0.579910 0.798713 -0.160506 0.780505 -0.517040 -0.351399 -0.383294 0.048266 -0.922365 0.493860 0.854599 -0.160506 0.830396 -0.432390 -0.351399 -0.386241 0.007828 -0.922365 0.401572 0.901653 -0.160506 0.871140 -0.342977 -0.351399 -0.384935 -0.032696 -0.922365 0.304861 0.938774 -0.160506 0.902289 -0.249787 -0.351399 -0.379388 -0.072859 -0.922365 0.204792 0.965556 -0.160506 0.923345 -0.154768 -0.351399 -0.369774 -0.111851 -0.922365 0.103448 0.981599 -0.160506 0.934480 -0.057143 -0.351399 -0.356015 -0.149990 -0.922365 0.000000 0.987035 -0.160506 0.935323 0.041112 -0.351399 -0.338334 -0.186477 -0.922365 -0.103448 0.981599 -0.160506 0.926001 0.137988 -0.351399 -0.317147 -0.220593 -0.922365 -0.204792 0.965556 -0.160506 0.906439 0.234280 -0.351399 -0.292281 -0.252617 -0.922365 -0.304861 0.938774 -0.160506 0.876893 0.327991 -0.351399 -0.264195 -0.281859 -0.922365 -0.401572 0.901653 -0.160506 0.837687 0.418089 -0.351399 -0.233199 -0.307996 -0.922365 -0.493860 0.854599 -0.160506 0.789758 0.502793 -0.351399 -0.199966 -0.330541 -0.922365 -0.579910 0.798713 -0.160506 0.732712 0.582796 -0.351399 -0.164221 -0.349679 -0.922365 -0.660427 0.733535 -0.160506 0.667596 0.656380 -0.351399 -0.126668 -0.364964 -0.922365 -0.733670 0.660278 -0.160506 0.595848 0.722138 -0.351399 -0.088096 -0.376142 -0.922365 -0.798251 0.580546 -0.160506 0.516881 0.780610 -0.351399 -0.048188 -0.383304 -0.922365 -0.854700 0.493686 -0.160506 0.432221 0.830484 -0.351399 -0.007750 -0.386243 -0.922365 -0.901734 0.401389 -0.160506 0.342800 0.871210 -0.351399 0.032774 -0.384928 -0.922365 -0.938837 0.304670 -0.160506 0.250505 0.902090 -0.351399 0.072557 -0.379446 -0.922365 -0.965392 0.205561 -0.160506 0.154580 0.923376 -0.351399 0.111926 -0.369752 -0.922365 -0.981620 0.103248 -0.160506 -0.173479 0.938994 0.296977 0.473184 0.343933 -0.811053 -0.863714 -0.000176 -0.503983 -0.270937 0.915641 0.296977 0.434532 0.391632 -0.811053 -0.858939 -0.090698 -0.503983 -0.364528 0.882567 0.296977 0.391528 0.434626 -0.811053 -0.844882 -0.179377 -0.503983 -0.455020 0.839501 0.296977 0.343819 0.473267 -0.811053 -0.821429 -0.266939 -0.503983 -0.540500 0.787188 0.296977 0.292324 0.506696 -0.811053 -0.788928 -0.351560 -0.503983 -0.619299 0.726824 0.296977 0.238143 0.534305 -0.811053 -0.748169 -0.431561 -0.503983 -0.692065 0.657914 0.296977 0.180833 0.556321 -0.811053 -0.698817 -0.507598 -0.503983 -0.757207 0.581757 0.296977 0.121530 0.572210 -0.811053 -0.641769 -0.578043 -0.503983 -0.814010 0.499193 0.296977 0.060889 0.581796 -0.811053 -0.577651 -0.642122 -0.503983 -0.861434 0.411991 0.296977 0.000162 0.584973 -0.811053 -0.507870 -0.698620 -0.503983 -0.899869 0.319437 0.296977 -0.061148 0.581769 -0.811053 -0.431852 -0.748001 -0.503983 -0.928393 0.223365 0.296977 -0.121785 0.572156 -0.811053 -0.351078 -0.789142 -0.503983 -0.946564 0.125780 0.296977 -0.180524 0.556422 -0.811053 -0.267258 -0.821325 -0.503983 -0.954534 0.025880 0.296977 -0.237846 0.534437 -0.811053 -0.179706 -0.844812 -0.503983 -0.951989 -0.074304 0.296977 -0.292549 0.506566 -0.811053 -0.090174 -0.858994 -0.503983 -0.939100 -0.172905 0.296977 -0.343644 0.473394 -0.811053 -0.000352 -0.863714 -0.503983 -0.915806 -0.270378 0.296977 -0.391367 0.434771 -0.811053 0.090174 -0.858994 -0.503983 -0.882425 -0.364872 0.296977 -0.434778 0.391358 -0.811053 0.179706 -0.844812 -0.503983 -0.839324 -0.455346 0.296977 -0.473401 0.343635 -0.811053 0.267258 -0.821325 -0.503983 -0.787518 -0.540018 0.296977 -0.506517 0.292633 -0.811053 0.351078 -0.789142 -0.503983 -0.726583 -0.619582 0.296977 -0.534397 0.237935 -0.811053 0.431852 -0.748001 -0.503983 -0.657645 -0.692321 0.296977 -0.556392 0.180616 -0.811053 0.507870 -0.698620 -0.503983 -0.582220 -0.756852 0.296977 -0.572136 0.121880 -0.811053 0.577651 -0.642122 -0.503983 -0.499690 -0.813704 0.296977 -0.581758 0.061245 -0.811053 0.641769 -0.578043 -0.503983 -0.411656 -0.861594 0.296977 -0.584973 -0.000065 -0.811053 0.698817 -0.507598 -0.503983 -0.319087 -0.899993 0.296977 -0.581745 -0.061374 -0.811053 0.748169 -0.431561 -0.503983 -0.223933 -0.928256 0.296977 -0.572230 -0.121435 -0.811053 0.788928 -0.351560 -0.503983 -0.125411 -0.946613 0.296977 -0.556351 -0.180740 -0.811053 0.821429 -0.266939 -0.503983 -0.025509 -0.954544 0.296977 -0.534344 -0.238054 -0.811053 0.844882 -0.179377 -0.503983 0.073723 -0.952035 0.296977 -0.506744 -0.292240 -0.811053 0.858939 -0.090698 -0.503983 0.173097 -0.939065 0.296977 -0.473324 -0.343741 -0.811053 0.863714 -0.000176 -0.503983 0.270564 -0.915751 0.296977 -0.434691 -0.391455 -0.811053 0.858975 0.090348 -0.503983 0.365051 -0.882351 0.296977 -0.391270 -0.434858 -0.811053 0.844775 0.179878 -0.503983 0.454678 -0.839686 0.296977 -0.344012 -0.473127 -0.811053 0.821537 0.266604 -0.503983 0.540179 -0.787408 0.296977 -0.292530 -0.506576 -0.811053 0.789071 0.351239 -0.503983 0.619730 -0.726457 0.296977 -0.237826 -0.534446 -0.811053 0.747913 0.432005 -0.503983 0.692455 -0.657504 0.296977 -0.180503 -0.556428 -0.811053 0.698516 0.508012 -0.503983 0.756970 -0.582066 0.296977 -0.121763 -0.572160 -0.811053 0.642004 0.577782 -0.503983 0.813806 -0.499524 0.296977 -0.061126 -0.581771 -0.811053 0.577913 0.641887 -0.503983 0.861678 -0.411480 0.296977 0.000184 -0.584973 -0.811053 0.507456 0.698921 -0.503983 0.899739 -0.319804 0.296977 0.060911 -0.581793 -0.811053 0.432157 0.747825 -0.503983 0.928301 -0.223744 0.296977 0.121552 -0.572205 -0.811053 0.351400 0.788999 -0.503983 0.946639 -0.125219 0.296977 0.180853 -0.556314 -0.811053 0.266771 0.821483 -0.503983 0.954549 -0.025315 0.296977 0.238163 -0.534296 -0.811053 0.179205 0.844918 -0.503983 0.952020 0.073917 0.296977 0.292343 -0.506685 -0.811053 0.090523 0.858957 -0.503983 0.939029 0.173288 0.296977 0.343837 -0.473254 -0.811053 0.000000 0.863714 -0.503983 0.915696 0.270751 0.296977 0.391544 -0.434611 -0.811053 -0.090523 0.858957 -0.503983 0.882641 0.364348 0.296977 0.434546 -0.391616 -0.811053 -0.179205 0.844918 -0.503983 0.839594 0.454849 0.296977 0.473197 -0.343916 -0.811053 -0.266771 0.821483 -0.503983 0.787298 0.540339 0.296977 0.506636 -0.292427 -0.811053 -0.351400 0.788999 -0.503983 0.726331 0.619878 0.296977 0.534494 -0.237717 -0.811053 -0.432157 0.747825 -0.503983 0.658055 0.691931 0.296977 0.556284 -0.180946 -0.811053 -0.507456 0.698921 -0.503983 0.581912 0.757089 0.296977 0.572185 -0.121647 -0.811053 -0.577913 0.641887 -0.503983 0.499358 0.813908 0.296977 0.581783 -0.061008 -0.811053 -0.642004 0.577782 -0.503983 0.412166 0.861350 0.296977 0.584973 -0.000282 -0.811053 -0.698516 0.508012 -0.503983 0.319621 0.899804 0.296977 0.581781 0.061029 -0.811053 -0.747913 0.432005 -0.503983 0.223555 0.928347 0.296977 0.572181 0.121668 -0.811053 -0.789071 0.351239 -0.503983 0.125026 0.946664 0.296977 0.556278 0.180967 -0.811053 -0.821537 0.266604 -0.503983 0.026075 0.954529 0.296977 0.534485 0.237737 -0.811053 -0.844775 0.179878 -0.503983 -0.074110 0.952004 0.296977 0.506625 0.292446 -0.811053 -0.858975 0.090348 -0.503983 -0.177545 0.965838 0.188773 0.661289 0.259147 -0.703945 -0.728817 -0.000148 -0.684709 -0.277794 0.941910 0.188773 0.630487 0.327028 -0.703945 -0.724788 -0.076533 -0.684709 -0.374075 0.907983 0.188773 0.593131 0.390714 -0.703945 -0.712926 -0.151361 -0.684709 -0.467178 0.863776 0.188773 0.548914 0.450726 -0.703945 -0.693136 -0.225248 -0.684709 -0.555135 0.810055 0.188773 0.498652 0.505774 -0.703945 -0.665711 -0.296653 -0.684709 -0.636230 0.748049 0.188773 0.443452 0.554808 -0.703945 -0.631318 -0.364159 -0.684709 -0.711126 0.677247 0.188773 0.382862 0.598229 -0.703945 -0.589675 -0.428320 -0.684709 -0.778190 0.598986 0.188773 0.318055 0.635061 -0.703945 -0.541536 -0.487763 -0.684709 -0.836682 0.514128 0.188773 0.249744 0.664898 -0.703945 -0.487432 -0.541834 -0.684709 -0.885535 0.424491 0.188773 0.179370 0.687232 -0.703945 -0.428549 -0.589508 -0.684709 -0.925147 0.329343 0.188773 0.106355 0.702246 -0.703945 -0.364405 -0.631176 -0.684709 -0.954570 0.230567 0.188773 0.032169 0.709525 -0.703945 -0.296246 -0.665892 -0.684709 -0.973348 0.130225 0.188773 -0.041663 0.709031 -0.703945 -0.225517 -0.693048 -0.684709 -0.981636 0.027494 0.188773 -0.115745 0.700760 -0.703945 -0.151639 -0.712867 -0.684709 -0.979111 -0.075540 0.188773 -0.188552 0.684769 -0.703945 -0.076090 -0.724834 -0.684709 -0.965946 -0.176955 0.188773 -0.258743 0.661448 -0.703945 -0.000297 -0.728817 -0.684709 -0.942080 -0.277218 0.188773 -0.326643 0.630687 -0.703945 0.076090 -0.724834 -0.684709 -0.907837 -0.374428 0.188773 -0.390944 0.592978 -0.703945 0.151639 -0.712867 -0.684709 -0.863594 -0.467514 0.188773 -0.450940 0.548739 -0.703945 0.225517 -0.693048 -0.684709 -0.810395 -0.554640 0.188773 -0.505469 0.498961 -0.703945 0.296246 -0.665892 -0.684709 -0.747801 -0.636520 0.188773 -0.554980 0.443236 -0.703945 0.364405 -0.631176 -0.684709 -0.676971 -0.711390 0.188773 -0.598378 0.382629 -0.703945 0.428549 -0.589508 -0.684709 -0.599462 -0.777824 0.188773 -0.634866 0.318442 -0.703945 0.487432 -0.541834 -0.684709 -0.514639 -0.836368 0.188773 -0.664745 0.250150 -0.703945 0.541536 -0.487763 -0.684709 -0.424147 -0.885700 0.188773 -0.687302 0.179102 -0.703945 0.589675 -0.428320 -0.684709 -0.328983 -0.925276 0.188773 -0.702287 0.106082 -0.703945 0.631318 -0.364159 -0.684709 -0.231150 -0.954429 0.188773 -0.709505 0.032602 -0.703945 0.665711 -0.296653 -0.684709 -0.129846 -0.973399 0.188773 -0.709015 -0.041938 -0.703945 0.693136 -0.225248 -0.684709 -0.027112 -0.981646 0.188773 -0.700715 -0.116017 -0.703945 0.712926 -0.151361 -0.684709 0.074942 -0.979157 0.188773 -0.684885 -0.188133 -0.703945 0.724788 -0.076533 -0.684709 0.177152 -0.965910 0.188773 -0.661395 -0.258878 -0.703945 0.728817 -0.000148 -0.684709 0.277410 -0.942024 0.188773 -0.630620 -0.326771 -0.703945 0.724819 0.076238 -0.684709 0.374613 -0.907761 0.188773 -0.592899 -0.391065 -0.703945 0.712836 0.151784 -0.684709 0.466826 -0.863966 0.188773 -0.549098 -0.450503 -0.703945 0.693228 0.224965 -0.684709 0.554805 -0.810282 0.188773 -0.498858 -0.505571 -0.703945 0.665832 0.296382 -0.684709 0.636673 -0.747671 0.188773 -0.443123 -0.555070 -0.703945 0.631102 0.364533 -0.684709 0.711528 -0.676826 0.188773 -0.382507 -0.598456 -0.703945 0.589421 0.428670 -0.684709 0.777946 -0.599303 0.188773 -0.318313 -0.634931 -0.703945 0.541735 0.487543 -0.684709 0.836473 -0.514468 0.188773 -0.250015 -0.664796 -0.703945 0.487653 0.541635 -0.684709 0.885786 -0.423967 0.188773 -0.178962 -0.687338 -0.703945 0.428200 0.589762 -0.684709 0.925013 -0.329720 0.188773 -0.106641 -0.702203 -0.703945 0.364662 0.631028 -0.684709 0.954476 -0.230956 0.188773 -0.032458 -0.709512 -0.703945 0.296517 0.665772 -0.684709 0.973425 -0.129648 0.188773 0.042083 -0.709006 -0.703945 0.225106 0.693182 -0.684709 0.981652 -0.026912 0.188773 0.116160 -0.700691 -0.703945 0.151216 0.712957 -0.684709 0.979142 0.075141 0.188773 0.188273 -0.684846 -0.703945 0.076385 0.724803 -0.684709 0.965874 0.177348 0.188773 0.259013 -0.661342 -0.703945 0.000000 0.728817 -0.684709 0.941967 0.277602 0.188773 0.326900 -0.630553 -0.703945 -0.076385 0.724803 -0.684709 0.908059 0.373890 0.188773 0.390593 -0.593210 -0.703945 -0.151216 0.712957 -0.684709 0.863871 0.467002 0.188773 0.450614 -0.549006 -0.703945 -0.225106 0.693182 -0.684709 0.810169 0.554970 0.188773 0.505672 -0.498755 -0.703945 -0.296517 0.665772 -0.684709 0.747542 0.636825 0.188773 0.555161 -0.443010 -0.703945 -0.364662 0.631028 -0.684709 0.677392 0.710988 0.188773 0.598151 -0.382984 -0.703945 -0.428200 0.589762 -0.684709 0.599145 0.778068 0.188773 0.634996 -0.318184 -0.703945 -0.487653 0.541635 -0.684709 0.514298 0.836578 0.188773 0.664847 -0.249879 -0.703945 -0.541735 0.487543 -0.684709 0.424672 0.885448 0.188773 0.687195 -0.179510 -0.703945 -0.589421 0.428670 -0.684709 0.329532 0.925080 0.188773 0.702224 -0.106498 -0.703945 -0.631102 0.364533 -0.684709 0.230762 0.954523 0.188773 0.709519 -0.032313 -0.703945 -0.665832 0.296382 -0.684709 0.129450 0.973451 0.188773 0.708998 0.042227 -0.703945 -0.693228 0.224965 -0.684709 0.027694 0.981630 0.188773 0.700783 0.115602 -0.703945 -0.712836 0.151784 -0.684709 -0.075340 0.979126 0.188773 0.684808 0.188412 -0.703945 -0.724819 0.076238 -0.684709 -0.071979 -0.140750 -0.987425 0.010438 -0.990045 0.140362 -0.997352 -0.000203 0.072732 -0.056831 -0.147518 -0.987425 0.114144 -0.983499 0.140362 -0.991837 -0.104732 0.072732 -0.041210 -0.152621 -0.987425 0.215627 -0.966335 0.140362 -0.975606 -0.207131 0.072732 -0.024987 -0.156100 -0.987425 0.315718 -0.938414 0.140362 -0.948524 -0.308241 0.072732 -0.008489 -0.157859 -0.987425 0.412332 -0.900156 0.140362 -0.910994 -0.405955 0.072732 0.007944 -0.157887 -0.987425 0.503552 -0.852487 0.140362 -0.863929 -0.498335 0.072732 0.024448 -0.156185 -0.987425 0.590125 -0.795016 0.140362 -0.806942 -0.586136 0.072732 0.040683 -0.152763 -0.987425 0.670198 -0.728789 0.140362 -0.741066 -0.667481 0.072732 0.056469 -0.147657 -0.987425 0.742889 -0.654533 0.140362 -0.667028 -0.741474 0.072732 0.071493 -0.140997 -0.987425 0.806824 -0.573875 0.140362 -0.586450 -0.806714 0.072732 0.085877 -0.132728 -0.987425 0.862527 -0.486154 0.140362 -0.498670 -0.863735 0.072732 0.099315 -0.122996 -0.987425 0.908729 -0.393077 0.140362 -0.405398 -0.911242 0.072732 0.111547 -0.112022 -0.987425 0.944626 -0.296616 0.140362 -0.308610 -0.948404 0.072732 0.122673 -0.099714 -0.987425 0.970511 -0.195979 0.140362 -0.207511 -0.975525 0.072732 0.132448 -0.086308 -0.987425 0.985705 -0.093183 0.140362 -0.104126 -0.991901 0.072732 0.140706 -0.072065 -0.987425 0.990051 0.009833 0.140362 -0.000406 -0.997351 0.072732 0.147484 -0.056922 -0.987425 0.983568 0.113543 0.140362 0.104126 -0.991901 0.072732 0.152637 -0.041151 -0.987425 0.966251 0.216003 0.140362 0.207511 -0.975525 0.072732 0.156109 -0.024927 -0.987425 0.938291 0.316083 0.140362 0.308610 -0.948404 0.072732 0.157854 -0.008586 -0.987425 0.900408 0.411782 0.140362 0.405398 -0.911242 0.072732 0.157884 0.008006 -0.987425 0.852291 0.503883 0.140362 0.498670 -0.863735 0.072732 0.156176 0.024509 -0.987425 0.794787 0.590434 0.140362 0.586450 -0.806714 0.072732 0.152787 0.040589 -0.987425 0.729198 0.669753 0.140362 0.667028 -0.741474 0.072732 0.147692 0.056379 -0.987425 0.654987 0.742489 0.140362 0.741066 -0.667481 0.072732 0.140969 0.071548 -0.987425 0.573561 0.807048 0.140362 0.806942 -0.586136 0.072732 0.132694 0.085928 -0.987425 0.485818 0.862716 0.140362 0.863929 -0.498335 0.072732 0.123057 0.099239 -0.987425 0.393633 0.908489 0.140362 0.910994 -0.405955 0.072732 0.111978 0.111590 -0.987425 0.296248 0.944741 0.140362 0.948524 -0.308241 0.072732 0.099666 0.122712 -0.987425 0.195601 0.970587 0.140362 0.975606 -0.207131 0.072732 0.086389 0.132395 -0.987425 0.093785 0.985648 0.140362 0.991837 -0.104732 0.072732 0.072037 0.140720 -0.987425 -0.010034 0.990049 0.140362 0.997352 -0.000203 0.072732 0.056892 0.147495 -0.987425 -0.113743 0.983545 0.140362 0.991880 0.104328 0.072732 0.041120 0.152646 -0.987425 -0.216200 0.966207 0.140362 0.975483 0.207709 0.072732 0.025051 0.156090 -0.987425 -0.315336 0.938542 0.140362 0.948649 0.307854 0.072732 0.008554 0.157855 -0.987425 -0.411965 0.900324 0.140362 0.911159 0.405584 0.072732 -0.008038 0.157883 -0.987425 -0.504057 0.852189 0.140362 0.863633 0.498846 0.072732 -0.024541 0.156171 -0.987425 -0.590596 0.794666 0.140362 0.806594 0.586614 0.072732 -0.040621 0.152779 -0.987425 -0.669901 0.729061 0.140362 0.741338 0.667179 0.072732 -0.056409 0.147680 -0.987425 -0.742623 0.654836 0.140362 0.667330 0.741202 0.072732 -0.071577 0.140955 -0.987425 -0.807164 0.573397 0.140362 0.585971 0.807061 0.072732 -0.085823 0.132763 -0.987425 -0.862329 0.486505 0.140362 0.499022 0.863532 0.072732 -0.099265 0.123037 -0.987425 -0.908569 0.393447 0.140362 0.405770 0.911077 0.072732 -0.111613 0.111956 -0.987425 -0.944801 0.296056 0.140362 0.308048 0.948587 0.072732 -0.122732 0.099641 -0.987425 -0.970627 0.195404 0.140362 0.206932 0.975648 0.072732 -0.132413 0.086362 -0.987425 -0.985667 0.093584 0.140362 0.104530 0.991859 0.072732 -0.140735 0.072008 -0.987425 -0.990047 -0.010236 0.140362 0.000000 0.997352 0.072732 -0.147507 0.056862 -0.987425 -0.983522 -0.113944 0.140362 -0.104530 0.991859 0.072732 -0.152613 0.041241 -0.987425 -0.966379 -0.215430 0.140362 -0.206932 0.975648 0.072732 -0.156095 0.025019 -0.987425 -0.938478 -0.315527 0.140362 -0.308048 0.948587 0.072732 -0.157857 0.008522 -0.987425 -0.900240 -0.412148 0.140362 -0.405770 0.911077 0.072732 -0.157881 -0.008070 -0.987425 -0.852086 -0.504230 0.140362 -0.499022 0.863532 0.072732 -0.156190 -0.024416 -0.987425 -0.795137 -0.589963 0.140362 -0.585971 0.807061 0.072732 -0.152771 -0.040652 -0.987425 -0.728925 -0.670050 0.140362 -0.667330 0.741202 0.072732 -0.147669 -0.056439 -0.987425 -0.654684 -0.742756 0.140362 -0.741338 0.667179 0.072732 -0.141012 -0.071464 -0.987425 -0.574040 -0.806707 0.140362 -0.806594 0.586614 0.072732 -0.132745 -0.085850 -0.987425 -0.486329 -0.862428 0.140362 -0.863633 0.498846 0.072732 -0.123017 -0.099290 -0.987425 -0.393262 -0.908649 0.140362 -0.911159 0.405584 0.072732 -0.111933 -0.111636 -0.987425 -0.295864 -0.944861 0.140362 -0.948649 0.307854 0.072732 -0.099739 -0.122653 -0.987425 -0.196176 -0.970471 0.140362 -0.975483 0.207709 0.072732 -0.086335 -0.132430 -0.987425 -0.093384 -0.985687 0.140362 -0.991880 0.104328 0.072732 0.867848 0.460888 -0.185533 0.450714 -0.887458 -0.096307 -0.209039 -0.000043 -0.977907 0.814764 0.549306 -0.185533 0.541243 -0.835333 -0.096307 -0.207884 -0.021951 -0.977907 0.753337 0.630921 -0.185533 0.625037 -0.774631 -0.096307 -0.204482 -0.043414 -0.977907 0.683063 0.706401 -0.185533 0.702781 -0.704857 -0.096307 -0.198806 -0.064606 -0.977907 0.605265 0.774101 -0.185533 0.772785 -0.627318 -0.096307 -0.190939 -0.085086 -0.977907 0.521633 0.832752 -0.185533 0.833733 -0.543704 -0.096307 -0.181075 -0.104448 -0.977907 0.431482 0.882837 -0.185533 0.886125 -0.453328 -0.096307 -0.169131 -0.122851 -0.977907 0.336578 0.923197 -0.185533 0.928757 -0.357960 -0.096307 -0.155324 -0.139900 -0.977907 0.237966 0.953388 -0.185533 0.961159 -0.258648 -0.096307 -0.139805 -0.155409 -0.977907 0.137707 0.972941 -0.185533 0.982817 -0.157470 -0.096307 -0.122917 -0.169083 -0.977907 0.034977 0.982015 -0.185533 0.993908 -0.053596 -0.096307 -0.104519 -0.181034 -0.977907 -0.068138 0.980273 -0.185533 0.994051 0.050868 -0.096307 -0.084969 -0.190991 -0.977907 -0.169534 0.967903 -0.185533 0.983399 0.153788 -0.096307 -0.064683 -0.198780 -0.977907 -0.270044 0.944804 -0.185533 0.961865 0.256008 -0.096307 -0.043493 -0.204465 -0.977907 -0.367579 0.911298 -0.185533 0.929736 0.355409 -0.096307 -0.021824 -0.207897 -0.977907 -0.460358 0.868129 -0.185533 0.887734 0.450171 -0.096307 -0.000085 -0.209039 -0.977907 -0.548808 0.815099 -0.185533 0.835663 0.540733 -0.096307 0.021824 -0.207897 -0.977907 -0.631214 0.753091 -0.185533 0.774388 0.625338 -0.096307 0.043493 -0.204465 -0.977907 -0.706667 0.682788 -0.185533 0.704583 0.703056 -0.096307 0.064683 -0.198780 -0.977907 -0.773731 0.605738 -0.185533 0.627790 0.772402 -0.096307 0.084969 -0.190991 -0.977907 -0.832955 0.521309 -0.185533 0.543380 0.833945 -0.096307 0.104519 -0.181034 -0.977907 -0.883005 0.431138 -0.185533 0.452984 0.886302 -0.096307 0.122917 -0.169083 -0.977907 -0.922991 0.337142 -0.185533 0.358527 0.928538 -0.096307 0.139805 -0.155409 -0.977907 -0.953243 0.238549 -0.185533 0.259235 0.961001 -0.096307 0.155324 -0.139900 -0.977907 -0.972995 0.137328 -0.185533 0.157087 0.982878 -0.096307 0.169131 -0.122851 -0.977907 -0.982029 0.034595 -0.185533 0.053210 0.993928 -0.096307 0.181075 -0.104448 -0.977907 -0.980314 -0.067539 -0.185533 -0.050260 0.994082 -0.096307 0.190939 -0.085086 -0.977907 -0.967837 -0.169911 -0.185533 -0.154170 0.983339 -0.096307 0.198806 -0.064606 -0.977907 -0.944699 -0.270411 -0.185533 -0.256382 0.961766 -0.096307 0.204482 -0.043414 -0.977907 -0.911522 -0.367022 -0.185533 -0.354840 0.929953 -0.096307 0.207884 -0.021951 -0.977907 -0.868035 -0.460534 -0.185533 -0.450352 0.887642 -0.096307 0.209039 -0.000043 -0.977907 -0.814987 -0.548974 -0.185533 -0.540903 0.835553 -0.096307 0.207893 0.021867 -0.977907 -0.752963 -0.631368 -0.185533 -0.625496 0.774261 -0.096307 0.204456 0.043535 -0.977907 -0.683350 -0.706123 -0.185533 -0.702494 0.705143 -0.096307 0.198832 0.064525 -0.977907 -0.605580 -0.773854 -0.185533 -0.772529 0.627633 -0.096307 0.190974 0.085008 -0.977907 -0.521139 -0.833061 -0.185533 -0.834055 0.543210 -0.096307 0.181013 0.104556 -0.977907 -0.430958 -0.883093 -0.185533 -0.886394 0.452803 -0.096307 0.169058 0.122951 -0.977907 -0.336954 -0.923060 -0.185533 -0.928611 0.358338 -0.096307 0.155380 0.139837 -0.977907 -0.238355 -0.953291 -0.185533 -0.961053 0.259039 -0.096307 0.139869 0.155352 -0.977907 -0.137130 -0.973023 -0.185533 -0.982910 0.156887 -0.096307 0.122816 0.169156 -0.977907 -0.035377 -0.982001 -0.185533 -0.993886 0.054001 -0.096307 0.104592 0.180992 -0.977907 0.067738 -0.980300 -0.185533 -0.994072 -0.050463 -0.096307 0.085047 0.190957 -0.977907 0.170108 -0.967802 -0.185533 -0.983308 -0.154371 -0.096307 0.064565 0.198819 -0.977907 0.270604 -0.944643 -0.185533 -0.961713 -0.256578 -0.096307 0.043372 0.204491 -0.977907 0.367207 -0.911447 -0.185533 -0.929881 -0.355030 -0.096307 0.021909 0.207888 -0.977907 0.460711 -0.867942 -0.185533 -0.887550 -0.450533 -0.096307 0.000000 0.209040 -0.977907 0.549140 -0.814876 -0.185533 -0.835443 -0.541073 -0.096307 -0.021909 0.207888 -0.977907 0.630768 -0.753465 -0.185533 -0.774759 -0.624879 -0.096307 -0.043372 0.204491 -0.977907 0.706262 -0.683206 -0.185533 -0.705000 -0.702638 -0.096307 -0.064565 0.198819 -0.977907 0.773978 -0.605422 -0.185533 -0.627476 -0.772657 -0.096307 -0.085047 0.190957 -0.977907 0.833167 -0.520970 -0.185533 -0.543040 -0.834166 -0.096307 -0.104592 0.180992 -0.977907 0.882749 -0.431661 -0.185533 -0.453509 -0.886033 -0.096307 -0.122816 0.169156 -0.977907 0.923129 -0.336766 -0.185533 -0.358149 -0.928684 -0.096307 -0.139869 0.155352 -0.977907 0.953340 -0.238161 -0.185533 -0.258843 -0.961106 -0.096307 -0.155380 0.139837 -0.977907 0.972913 -0.137905 -0.185533 -0.157670 -0.982784 -0.096307 -0.169058 0.122951 -0.977907 0.982008 -0.035177 -0.185533 -0.053799 -0.993897 -0.096307 -0.181013 0.104556 -0.977907 0.980287 0.067938 -0.185533 0.050665 -0.994061 -0.096307 -0.190974 0.085008 -0.977907 0.967767 0.170305 -0.185533 0.154571 -0.983277 -0.096307 -0.198832 0.064525 -0.977907 0.944859 0.269851 -0.185533 0.255812 -0.961917 -0.096307 -0.204456 0.043535 -0.977907 0.911373 0.367393 -0.185533 0.355219 -0.929809 -0.096307 -0.207893 0.021867 -0.977907 0.115516 -0.982619 0.145316 0.610782 0.185636 0.769730 -0.783327 -0.000160 0.621610 0.217865 -0.965100 0.145316 0.587962 0.248628 0.769730 -0.778996 -0.082257 0.621610 0.316878 -0.937268 0.145316 0.558975 0.308323 0.769730 -0.766248 -0.162682 0.621610 0.413365 -0.898895 0.145316 0.523582 0.365209 0.769730 -0.744977 -0.242094 0.621610 0.505299 -0.850621 0.145316 0.482422 0.418073 0.769730 -0.715501 -0.318840 0.621610 0.590874 -0.793568 0.145316 0.436414 0.465896 0.769730 -0.678536 -0.391395 0.621610 0.670792 -0.727270 0.145316 0.385181 0.509069 0.769730 -0.633778 -0.460355 0.621610 0.743320 -0.652961 0.145316 0.329706 0.546635 0.769730 -0.582039 -0.524244 0.621610 0.807662 -0.571460 0.145316 0.270599 0.578180 0.769730 -0.523889 -0.582359 0.621610 0.862622 -0.484526 0.145316 0.209114 0.603148 0.769730 -0.460602 -0.633599 0.621610 0.908653 -0.391449 0.145316 0.144748 0.621743 0.769730 -0.391659 -0.678383 0.621610 0.944676 -0.294060 0.145316 0.078788 0.633489 0.769730 -0.318403 -0.715696 0.621610 0.970099 -0.194402 0.145316 0.012598 0.638245 0.769730 -0.242384 -0.744883 0.621610 0.985130 -0.091658 0.145316 -0.054364 0.636051 0.769730 -0.162980 -0.766184 0.621610 0.989311 0.012096 0.145316 -0.120727 0.626850 0.769730 -0.081781 -0.779046 0.621610 0.982689 0.114916 0.145316 -0.185263 0.610896 0.769730 -0.000319 -0.783327 0.621610 0.965233 0.217276 0.145316 -0.248269 0.588114 0.769730 0.081781 -0.779046 0.621610 0.937145 0.317242 0.145316 -0.308540 0.558855 0.769730 0.162980 -0.766184 0.621610 0.898734 0.413715 0.145316 -0.365413 0.523440 0.769730 0.242384 -0.744883 0.621610 0.850929 0.504779 0.145316 -0.417778 0.482677 0.769730 0.318403 -0.715696 0.621610 0.793339 0.591183 0.145316 -0.466065 0.436233 0.769730 0.391659 -0.678383 0.621610 0.727009 0.671074 0.145316 -0.509219 0.384983 0.769730 0.460602 -0.633599 0.621610 0.653415 0.742921 0.145316 -0.546434 0.330040 0.769730 0.523889 -0.582359 0.621610 0.571953 0.807312 0.145316 -0.578015 0.270952 0.769730 0.582039 -0.524244 0.621610 0.484191 0.862811 0.145316 -0.603229 0.208879 0.769730 0.633778 -0.460355 0.621610 0.391095 0.908806 0.145316 -0.621799 0.144506 0.769730 0.678536 -0.391395 0.621610 0.294637 0.944496 0.145316 -0.633441 0.079175 0.769730 0.715501 -0.318840 0.621610 0.194024 0.970174 0.145316 -0.638250 0.012350 0.769730 0.744977 -0.242094 0.621610 0.091274 0.985166 0.145316 -0.636029 -0.054611 0.769730 0.766248 -0.162682 0.621610 -0.011491 0.989318 0.145316 -0.626924 -0.120344 0.769730 0.778996 -0.082257 0.621610 -0.115116 0.982665 0.145316 -0.610858 -0.185387 0.769730 0.783327 -0.000160 0.621610 -0.217472 0.965189 0.145316 -0.588064 -0.248389 0.769730 0.779029 0.081940 0.621610 -0.317433 0.937080 0.145316 -0.558792 -0.308654 0.769730 0.766151 0.163136 0.621610 -0.412999 0.899063 0.145316 -0.523731 -0.364996 0.769730 0.745076 0.241791 0.621610 -0.504953 0.850827 0.145316 -0.482592 -0.417877 0.769730 0.715631 0.318549 0.621610 -0.591344 0.793218 0.145316 -0.436138 -0.466154 0.769730 0.678304 0.391797 0.621610 -0.671223 0.726872 0.145316 -0.384879 -0.509297 0.769730 0.633505 0.460731 0.621610 -0.743054 0.653264 0.145316 -0.329928 -0.546501 0.769730 0.582252 0.524007 0.621610 -0.807429 0.571788 0.145316 -0.270834 -0.578070 0.769730 0.524126 0.582145 0.621610 -0.862909 0.484015 0.145316 -0.208757 -0.603271 0.769730 0.460226 0.633871 0.621610 -0.908494 0.391819 0.145316 -0.145002 -0.621684 0.769730 0.391936 0.678224 0.621610 -0.944556 0.294444 0.145316 -0.079046 -0.633457 0.769730 0.318694 0.715566 0.621610 -0.970214 0.193827 0.145316 -0.012220 -0.638253 0.769730 0.241943 0.745027 0.621610 -0.985185 0.091074 0.145316 0.054741 -0.636018 0.769730 0.162526 0.766281 0.621610 -0.989316 -0.011693 0.145316 0.120472 -0.626899 0.769730 0.082098 0.779013 0.621610 -0.982642 -0.115316 0.145316 0.185512 -0.610820 0.769730 0.000000 0.783327 0.621610 -0.965144 -0.217669 0.145316 0.248508 -0.588013 0.769730 -0.082098 0.779013 0.621610 -0.937333 -0.316687 0.145316 0.308209 -0.559038 0.769730 -0.162526 0.766281 0.621610 -0.898979 -0.413182 0.145316 0.365103 -0.523656 0.769730 -0.241943 0.745027 0.621610 -0.850724 -0.505126 0.145316 0.417975 -0.482507 0.769730 -0.318694 0.715566 0.621610 -0.793098 -0.591506 0.145316 0.466243 -0.436043 0.769730 -0.391936 0.678224 0.621610 -0.727407 -0.670643 0.145316 0.508991 -0.385285 0.769730 -0.460226 0.633871 0.621610 -0.653112 -0.743187 0.145316 0.546568 -0.329817 0.769730 -0.524126 0.582145 0.621610 -0.571624 -0.807545 0.145316 0.578125 -0.270716 0.769730 -0.582252 0.524007 0.621610 -0.484702 -0.862524 0.145316 0.603105 -0.209237 0.769730 -0.633505 0.460731 0.621610 -0.391634 -0.908574 0.145316 0.621713 -0.144875 0.769730 -0.678304 0.391797 0.621610 -0.294252 -0.944616 0.145316 0.633473 -0.078917 0.769730 -0.715631 0.318549 0.621610 -0.193629 -0.970253 0.145316 0.638255 -0.012090 0.769730 -0.745076 0.241791 0.621610 -0.091858 -0.985112 0.145316 0.636062 0.054234 0.769730 -0.766151 0.163136 0.621610 0.011894 -0.989314 0.145316 0.626874 0.120599 0.769730 -0.779029 0.081940 0.621610 -0.048567 0.394741 -0.917508 -0.020645 -0.918793 -0.394201 -0.998607 -0.000203 0.052772 -0.089671 0.387477 -0.917508 0.075765 -0.915896 -0.394201 -0.993086 -0.104863 0.052772 -0.129411 0.376074 -0.917508 0.170437 -0.903082 -0.394201 -0.976834 -0.207392 0.052772 -0.168114 0.360440 -0.917508 0.264148 -0.880245 -0.394201 -0.949718 -0.308629 0.052772 -0.204964 0.340835 -0.917508 0.354949 -0.847713 -0.394201 -0.912141 -0.406466 0.052772 -0.239240 0.317715 -0.917508 0.441035 -0.806284 -0.394201 -0.865016 -0.498962 0.052772 -0.271221 0.290892 -0.917508 0.523110 -0.755620 -0.394201 -0.807957 -0.586873 0.052772 -0.300215 0.260864 -0.917508 0.599424 -0.696633 -0.394201 -0.741999 -0.668321 0.052772 -0.325902 0.227962 -0.917508 0.669134 -0.629972 -0.394201 -0.667868 -0.742407 0.052772 -0.347806 0.192898 -0.917508 0.730918 -0.557104 -0.394201 -0.587188 -0.807729 0.052772 -0.366108 0.155383 -0.917508 0.785281 -0.477430 -0.394201 -0.499298 -0.864822 0.052772 -0.380377 0.116156 -0.917508 0.830994 -0.392498 -0.394201 -0.405909 -0.912389 0.052772 -0.390380 0.076041 -0.917508 0.867251 -0.304109 -0.394201 -0.308998 -0.949597 0.052772 -0.396200 0.034707 -0.917508 0.894347 -0.211540 -0.394201 -0.207772 -0.976753 0.052772 -0.397655 -0.007008 -0.917508 0.911592 -0.116641 -0.394201 -0.104257 -0.993149 0.052772 -0.394770 -0.048325 -0.917508 0.918780 -0.021206 -0.394201 -0.000407 -0.998607 0.052772 -0.387531 -0.089434 -0.917508 0.915942 0.075206 -0.394201 0.104257 -0.993149 0.052772 -0.376024 -0.129557 -0.917508 0.903016 0.170789 -0.394201 0.207772 -0.976753 0.052772 -0.360374 -0.168254 -0.917508 0.880142 0.264491 -0.394201 0.308998 -0.949597 0.052772 -0.340960 -0.204756 -0.917508 0.847929 0.354431 -0.394201 0.405909 -0.912389 0.052772 -0.317622 -0.239364 -0.917508 0.806113 0.441348 -0.394201 0.499298 -0.864822 0.052772 -0.290786 -0.271334 -0.917508 0.755417 0.523404 -0.394201 0.587188 -0.807729 0.052772 -0.261047 -0.300056 -0.917508 0.696999 0.598998 -0.394201 0.667868 -0.742407 0.052772 -0.228161 -0.325763 -0.917508 0.630381 0.668749 -0.394201 0.741999 -0.668321 0.052772 -0.192762 -0.347881 -0.917508 0.556819 0.731135 -0.394201 0.807957 -0.586873 0.052772 -0.155240 -0.366168 -0.917508 0.477125 0.785467 -0.394201 0.865016 -0.498962 0.052772 -0.116389 -0.380306 -0.917508 0.393005 0.830754 -0.394201 0.912141 -0.406466 0.052772 -0.075889 -0.390410 -0.917508 0.303772 0.867369 -0.394201 0.949718 -0.308629 0.052772 -0.034553 -0.396213 -0.917508 0.211192 0.894429 -0.394201 0.976834 -0.207392 0.052772 0.006765 -0.397660 -0.917508 0.117198 0.911521 -0.394201 0.993086 -0.104863 0.052772 0.048406 -0.394760 -0.917508 0.021019 0.918784 -0.394201 0.998607 -0.000203 0.052772 0.089513 -0.387513 -0.917508 -0.075392 0.915927 -0.394201 0.993128 0.104459 0.052772 0.129634 -0.375997 -0.917508 -0.170973 0.902981 -0.394201 0.976710 0.207971 0.052772 0.167967 -0.360508 -0.917508 -0.263790 0.880353 -0.394201 0.949843 0.308242 0.052772 0.204826 -0.340918 -0.917508 -0.354604 0.847857 -0.394201 0.912306 0.406094 0.052772 0.239428 -0.317574 -0.917508 -0.441513 0.806023 -0.394201 0.864720 0.499474 0.052772 0.271394 -0.290731 -0.917508 -0.523558 0.755310 -0.394201 0.807609 0.587352 0.052772 0.300109 -0.260986 -0.917508 -0.599140 0.696877 -0.394201 0.742271 0.668019 0.052772 0.325809 -0.228095 -0.917508 -0.668878 0.630245 -0.394201 0.668170 0.742135 0.052772 0.347921 -0.192692 -0.917508 -0.731248 0.556671 -0.394201 0.586709 0.808077 0.052772 0.366045 -0.155532 -0.917508 -0.785087 0.477750 -0.394201 0.499650 0.864618 0.052772 0.380330 -0.116311 -0.917508 -0.830834 0.392836 -0.394201 0.406280 0.912223 0.052772 0.390425 -0.075809 -0.917508 -0.867431 0.303595 -0.394201 0.308435 0.949780 0.052772 0.396220 -0.034473 -0.917508 -0.894472 0.211010 -0.394201 0.207193 0.976876 0.052772 0.397658 0.006846 -0.917508 -0.911545 0.117013 -0.394201 0.104661 0.993107 0.052772 0.394751 0.048486 -0.917508 -0.918788 0.020832 -0.394201 0.000000 0.998607 0.052772 0.387495 0.089592 -0.917508 -0.915911 -0.075579 -0.394201 -0.104661 0.993107 0.052772 0.376100 0.129335 -0.917508 -0.903117 -0.170253 -0.394201 -0.207193 0.976876 0.052772 0.360474 0.168040 -0.917508 -0.880299 -0.263969 -0.394201 -0.308435 0.949780 0.052772 0.340877 0.204895 -0.917508 -0.847785 -0.354777 -0.394201 -0.406280 0.912223 0.052772 0.317525 0.239493 -0.917508 -0.805933 -0.441677 -0.394201 -0.499650 0.864618 0.052772 0.290947 0.271162 -0.917508 -0.755727 -0.522956 -0.394201 -0.586709 0.808077 0.052772 0.260925 0.300162 -0.917508 -0.696755 -0.599282 -0.394201 -0.668170 0.742135 0.052772 0.228029 0.325856 -0.917508 -0.630108 -0.669006 -0.394201 -0.742271 0.668019 0.052772 0.192969 0.347767 -0.917508 -0.557253 -0.730805 -0.394201 -0.807609 0.587352 0.052772 0.155457 0.366076 -0.917508 -0.477590 -0.785184 -0.394201 -0.864720 0.499474 0.052772 0.116234 0.380353 -0.917508 -0.392667 -0.830914 -0.394201 -0.912306 0.406094 0.052772 0.075730 0.390441 -0.917508 -0.303419 -0.867492 -0.394201 -0.949843 0.308242 0.052772 0.034788 0.396193 -0.917508 -0.211722 -0.894304 -0.394201 -0.976710 0.207971 0.052772 -0.006927 0.397657 -0.917508 -0.116827 -0.911569 -0.394201 -0.993128 0.104459 0.052772 0.105433 0.892944 0.437646 -0.209562 0.450167 -0.868005 -0.972094 -0.000198 0.234590 0.011265 0.899077 0.437646 -0.255589 0.425724 -0.868005 -0.966720 -0.102079 0.234590 -0.082131 0.895388 0.437646 -0.298403 0.396890 -0.868005 -0.950900 -0.201886 0.234590 -0.175522 0.881849 0.437646 -0.338357 0.363430 -0.868005 -0.924504 -0.300435 0.234590 -0.266980 0.858596 0.437646 -0.374583 0.325966 -0.868005 -0.887924 -0.395675 0.234590 -0.354670 0.826241 0.437646 -0.406399 0.285318 -0.868005 -0.842050 -0.485715 0.234590 -0.439313 0.784519 0.437646 -0.434064 0.241153 -0.868005 -0.786507 -0.571292 0.234590 -0.519117 0.734155 0.437646 -0.456948 0.194332 -0.868005 -0.722299 -0.650578 0.234590 -0.593202 0.675705 0.437646 -0.474799 0.145371 -0.868005 -0.650136 -0.722697 0.234590 -0.660144 0.610472 0.437646 -0.487325 0.095295 -0.868005 -0.571598 -0.786284 0.234590 -0.720490 0.537922 0.437646 -0.494628 0.043695 -0.868005 -0.486042 -0.841862 0.234590 -0.772900 0.459447 0.437646 -0.496484 -0.008386 -0.868005 -0.395132 -0.888166 0.234590 -0.816420 0.376728 0.437646 -0.492931 -0.059882 -0.868005 -0.300794 -0.924387 0.234590 -0.851408 0.289086 0.437646 -0.483940 -0.111215 -0.868005 -0.202256 -0.950821 0.234590 -0.877017 0.198260 0.437646 -0.469618 -0.161323 -0.868005 -0.101489 -0.966782 0.234590 -0.892880 0.105978 0.437646 -0.450295 -0.209287 -0.868005 -0.000396 -0.972094 0.234590 -0.899070 0.011814 0.437646 -0.425880 -0.255329 -0.868005 0.101489 -0.966782 0.234590 -0.895356 -0.082480 0.437646 -0.396774 -0.298558 -0.868005 0.202256 -0.950821 0.234590 -0.881781 -0.175865 0.437646 -0.363298 -0.338498 -0.868005 0.300794 -0.924387 0.234590 -0.858759 -0.266455 0.437646 -0.326195 -0.374384 -0.868005 0.395132 -0.888166 0.234590 -0.826103 -0.354992 0.437646 -0.285160 -0.406510 -0.868005 0.486042 -0.841862 0.234590 -0.784348 -0.439618 0.437646 -0.240985 -0.434158 -0.868005 0.571598 -0.786284 0.234590 -0.734472 -0.518668 0.437646 -0.194611 -0.456829 -0.868005 0.650136 -0.722697 0.234590 -0.676067 -0.592789 0.437646 -0.145661 -0.474710 -0.868005 0.722299 -0.650578 0.234590 -0.610215 -0.660381 0.437646 -0.095105 -0.487362 -0.868005 0.786507 -0.571292 0.234590 -0.537642 -0.720699 0.437646 -0.043503 -0.494645 -0.868005 0.842050 -0.485715 0.234590 -0.459919 -0.772619 0.437646 0.008083 -0.496489 -0.868005 0.887924 -0.395675 0.234590 -0.376410 -0.816567 0.437646 0.060074 -0.492907 -0.868005 0.924504 -0.300435 0.234590 -0.288755 -0.851520 0.437646 0.111403 -0.483896 -0.868005 0.950900 -0.201886 0.234590 -0.198796 -0.876896 0.437646 0.161036 -0.469717 -0.868005 0.966720 -0.102079 0.234590 -0.105796 -0.892901 0.437646 0.209379 -0.450252 -0.868005 0.972094 -0.000198 0.234590 -0.011631 -0.899072 0.437646 0.255415 -0.425828 -0.868005 0.966761 0.101686 0.234590 0.082662 -0.895339 0.437646 0.298638 -0.396713 -0.868005 0.950780 0.202449 0.234590 0.175163 -0.881920 0.437646 0.338209 -0.363568 -0.868005 0.924626 0.300058 0.234590 0.266630 -0.858705 0.437646 0.374451 -0.326119 -0.868005 0.888085 0.395313 0.234590 0.355160 -0.826031 0.437646 0.406568 -0.285077 -0.868005 0.841763 0.486214 0.234590 0.439778 -0.784258 0.437646 0.434207 -0.240896 -0.868005 0.786168 0.571759 0.234590 0.518818 -0.734366 0.437646 0.456869 -0.194518 -0.868005 0.722564 0.650283 0.234590 0.592927 -0.675946 0.437646 0.474740 -0.145564 -0.868005 0.650431 0.722432 0.234590 0.660506 -0.610080 0.437646 0.487381 -0.095006 -0.868005 0.571132 0.786623 0.234590 0.720271 -0.538215 0.437646 0.494611 -0.043897 -0.868005 0.486385 0.841663 0.234590 0.772713 -0.459762 0.437646 0.496487 0.008184 -0.868005 0.395494 0.888005 0.234590 0.816643 -0.376244 0.437646 0.492895 0.060174 -0.868005 0.300246 0.924565 0.234590 0.851579 -0.288581 0.437646 0.483874 0.111502 -0.868005 0.201692 0.950941 0.234590 0.876936 -0.198618 0.437646 0.469684 0.161132 -0.868005 0.101882 0.966741 0.234590 0.892923 -0.105614 0.437646 0.450210 0.209470 -0.868005 0.000000 0.972095 0.234590 0.899074 -0.011448 0.437646 0.425776 0.255502 -0.868005 -0.101882 0.966741 0.234590 0.895405 0.081949 0.437646 0.396951 0.298322 -0.868005 -0.201692 0.950941 0.234590 0.881885 0.175343 0.437646 0.363499 0.338283 -0.868005 -0.300246 0.924565 0.234590 0.858651 0.266805 0.437646 0.326042 0.374517 -0.868005 -0.395494 0.888005 0.234590 0.825959 0.355328 0.437646 0.284995 0.406626 -0.868005 -0.486385 0.841663 0.234590 0.784608 0.439153 0.437646 0.241242 0.434015 -0.868005 -0.571132 0.786623 0.234590 0.734261 0.518967 0.437646 0.194425 0.456908 -0.868005 -0.650431 0.722432 0.234590 0.675825 0.593065 0.437646 0.145467 0.474769 -0.868005 -0.722564 0.650283 0.234590 0.610606 0.660020 0.437646 0.095394 0.487305 -0.868005 -0.786168 0.571759 0.234590 0.538069 0.720380 0.437646 0.043796 0.494619 -0.868005 -0.841763 0.486214 0.234590 0.459604 0.772806 0.437646 -0.008285 0.496486 -0.868005 -0.888085 0.395313 0.234590 0.376077 0.816720 0.437646 -0.060275 0.492883 -0.868005 -0.924626 0.300058 0.234590 0.289259 0.851349 0.437646 -0.111116 0.483962 -0.868005 -0.950780 0.202449 0.234590 0.198439 0.876976 0.437646 -0.161227 0.469651 -0.868005 -0.966761 0.101686 0.234590 -0.099071 0.532687 0.840494 0.062120 0.846312 -0.529053 -0.993140 -0.000202 -0.116935 -0.154355 0.519370 0.840494 -0.026922 0.848162 -0.529053 -0.987649 -0.104289 -0.116935 -0.207438 0.500540 0.840494 -0.114826 0.840784 -0.529053 -0.971486 -0.206256 -0.116935 -0.258756 0.476042 0.840494 -0.202314 0.824119 -0.529053 -0.944518 -0.306939 -0.116935 -0.307223 0.446301 0.840494 -0.287573 0.798376 -0.529053 -0.907147 -0.404241 -0.116935 -0.351895 0.411996 0.840494 -0.368901 0.764209 -0.529053 -0.860280 -0.496230 -0.116935 -0.393137 0.372846 0.840494 -0.446964 0.721337 -0.529053 -0.803534 -0.583660 -0.116935 -0.430049 0.329589 0.840494 -0.520104 0.670519 -0.529053 -0.737937 -0.664662 -0.116935 -0.462224 0.282701 0.840494 -0.587514 0.612315 -0.529053 -0.664211 -0.738343 -0.116935 -0.489074 0.233189 0.840494 -0.647906 0.548016 -0.529053 -0.583973 -0.803307 -0.116935 -0.510820 0.180647 0.840494 -0.701774 0.477092 -0.529053 -0.496564 -0.860087 -0.116935 -0.526940 0.126114 0.840494 -0.747911 0.400914 -0.529053 -0.403686 -0.907394 -0.116935 -0.537185 0.070730 0.840494 -0.785490 0.321105 -0.529053 -0.307306 -0.944399 -0.116935 -0.541640 0.014039 0.840494 -0.814818 0.237012 -0.529053 -0.206634 -0.971405 -0.116935 -0.540128 -0.042806 0.840494 -0.835171 0.150307 -0.529053 -0.103686 -0.987712 -0.116935 -0.532748 -0.098745 0.840494 -0.846274 0.062637 -0.529053 -0.000405 -0.993139 -0.116935 -0.519464 -0.154037 0.840494 -0.848178 -0.026403 -0.529053 0.103686 -0.987712 -0.116935 -0.500459 -0.207633 0.840494 -0.840740 -0.115153 -0.529053 0.206634 -0.971405 -0.116935 -0.475942 -0.258941 0.840494 -0.824040 -0.202635 -0.529053 0.307306 -0.944399 -0.116935 -0.446489 -0.306950 0.840494 -0.798552 -0.287085 -0.529053 0.403686 -0.907394 -0.116935 -0.411859 -0.352055 0.840494 -0.764065 -0.369198 -0.529053 0.496564 -0.860087 -0.116935 -0.372693 -0.393282 0.840494 -0.721163 -0.447244 -0.529053 0.583973 -0.803307 -0.116935 -0.329851 -0.429847 0.840494 -0.670837 -0.519694 -0.529053 0.664211 -0.738343 -0.116935 -0.282984 -0.462051 0.840494 -0.612674 -0.587140 -0.529053 0.737937 -0.664662 -0.116935 -0.232999 -0.489165 0.840494 -0.547763 -0.648119 -0.529053 0.803534 -0.583660 -0.116935 -0.180448 -0.510891 0.840494 -0.476819 -0.701959 -0.529053 0.860280 -0.496230 -0.116935 -0.126436 -0.526863 0.840494 -0.401371 -0.747666 -0.529053 0.907147 -0.404241 -0.116935 -0.070521 -0.537213 0.840494 -0.320799 -0.785615 -0.529053 0.944518 -0.306939 -0.116935 -0.013828 -0.541645 0.840494 -0.236695 -0.814910 -0.529053 0.971486 -0.206256 -0.116935 0.042476 -0.540154 0.840494 -0.150818 -0.835079 -0.529053 0.987649 -0.104289 -0.116935 0.098854 -0.532727 0.840494 -0.062465 -0.846287 -0.529053 0.993140 -0.000202 -0.116935 0.154143 -0.519433 0.840494 0.026576 -0.848173 -0.529053 0.987691 0.103887 -0.116935 0.207735 -0.500417 0.840494 0.115324 -0.840716 -0.529053 0.971363 0.206832 -0.116935 0.258562 -0.476148 0.840494 0.201978 -0.824201 -0.529053 0.944643 0.306554 -0.116935 0.307041 -0.446426 0.840494 0.287248 -0.798493 -0.529053 0.907311 0.403871 -0.116935 0.352139 -0.411787 0.840494 0.369354 -0.763990 -0.529053 0.859986 0.496740 -0.116935 0.393358 -0.372613 0.840494 0.447391 -0.721072 -0.529053 0.803188 0.584137 -0.116935 0.429914 -0.329764 0.840494 0.519830 -0.670731 -0.529053 0.738207 0.664361 -0.116935 0.462108 -0.282890 0.840494 0.587265 -0.612555 -0.529053 0.664512 0.738072 -0.116935 0.489212 -0.232899 0.840494 0.648231 -0.547632 -0.529053 0.583497 0.803653 -0.116935 0.510747 -0.180855 0.840494 0.701579 -0.477378 -0.529053 0.496915 0.859885 -0.116935 0.526889 -0.126329 0.840494 0.747748 -0.401218 -0.529053 0.404056 0.907229 -0.116935 0.537227 -0.070411 0.840494 0.785680 -0.320639 -0.529053 0.306747 0.944581 -0.116935 0.541648 -0.013718 0.840494 0.814959 -0.236529 -0.529053 0.206058 0.971528 -0.116935 0.540145 0.042586 0.840494 0.835110 -0.150648 -0.529053 0.104088 0.987670 -0.116935 0.532707 0.098962 0.840494 0.846300 -0.062292 -0.529053 0.000000 0.993140 -0.116935 0.519401 0.154249 0.840494 0.848167 0.026749 -0.529053 -0.104088 0.987670 -0.116935 0.500582 0.207336 0.840494 0.840808 0.114655 -0.529053 -0.206058 0.971528 -0.116935 0.476095 0.258659 0.840494 0.824160 0.202146 -0.529053 -0.306747 0.944581 -0.116935 0.446364 0.307132 0.840494 0.798435 0.287411 -0.529053 -0.404056 0.907229 -0.116935 0.411716 0.352223 0.840494 0.763915 0.369509 -0.529053 -0.496915 0.859885 -0.116935 0.372926 0.393061 0.840494 0.721428 0.446817 -0.529053 -0.583497 0.803653 -0.116935 0.329676 0.429982 0.840494 0.670625 0.519967 -0.529053 -0.664512 0.738072 -0.116935 0.282796 0.462166 0.840494 0.612435 0.587390 -0.529053 -0.738207 0.664361 -0.116935 0.233289 0.489027 0.840494 0.548148 0.647794 -0.529053 -0.803188 0.584137 -0.116935 0.180751 0.510784 0.840494 0.477235 0.701676 -0.529053 -0.859986 0.496740 -0.116935 0.126221 0.526914 0.840494 0.401066 0.747830 -0.529053 -0.907311 0.403871 -0.116935 0.070302 0.537241 0.840494 0.320479 0.785746 -0.529053 -0.944643 0.306554 -0.116935 0.014149 0.541637 0.840494 0.237178 0.814770 -0.529053 -0.971363 0.206832 -0.116935 -0.042696 0.540137 0.840494 0.150478 0.835141 -0.529053 -0.987691 0.103887 -0.116935 0.093683 -0.949030 -0.300942 -0.281490 -0.315186 0.906323 -0.954980 -0.000194 -0.296670 0.192632 -0.933984 -0.300942 -0.246906 -0.342953 0.906323 -0.949700 -0.100282 -0.296670 0.288550 -0.908940 -0.300942 -0.209969 -0.366732 0.906323 -0.934158 -0.198331 -0.296670 0.382225 -0.873692 -0.300942 -0.170377 -0.386718 0.906323 -0.908227 -0.295145 -0.296670 0.471689 -0.828821 -0.300942 -0.128907 -0.402445 0.906323 -0.872292 -0.388709 -0.296670 0.555182 -0.775375 -0.300942 -0.086432 -0.413653 0.906323 -0.827226 -0.477163 -0.296670 0.633389 -0.712918 -0.300942 -0.042602 -0.420433 0.906323 -0.772660 -0.561234 -0.296670 0.704620 -0.642608 -0.300942 0.001697 -0.422583 0.906323 -0.709583 -0.639124 -0.296670 0.768089 -0.565219 -0.300942 0.045977 -0.420078 0.906323 -0.638690 -0.709973 -0.296670 0.822616 -0.482428 -0.300942 0.089338 -0.413035 0.906323 -0.561535 -0.772441 -0.296670 0.868647 -0.393555 -0.300942 0.132135 -0.401397 0.906323 -0.477485 -0.827040 -0.296670 0.905111 -0.300347 -0.300942 0.173477 -0.385337 0.906323 -0.388176 -0.872529 -0.296670 0.931400 -0.204762 -0.300942 0.212542 -0.365246 0.906323 -0.295499 -0.908112 -0.296670 0.947731 -0.106017 -0.300942 0.249652 -0.340959 0.906323 -0.198695 -0.934081 -0.296670 0.953623 -0.006104 -0.300942 0.284012 -0.312916 0.906323 -0.099702 -0.949761 -0.296670 0.949087 0.093103 -0.300942 0.315014 -0.281683 0.906323 -0.000389 -0.954980 -0.296670 0.934102 0.192061 -0.300942 0.342802 -0.247115 0.906323 0.099702 -0.949761 -0.296670 0.908828 0.288904 -0.300942 0.366813 -0.209826 0.906323 0.198695 -0.934081 -0.296670 0.873544 0.382565 -0.300942 0.386784 -0.170226 0.906323 0.295499 -0.908112 -0.296670 0.829109 0.471182 -0.300942 0.402366 -0.129153 0.906323 0.388176 -0.872529 -0.296670 0.775159 0.555484 -0.300942 0.413686 -0.086271 0.906323 0.477485 -0.827040 -0.296670 0.712671 0.633667 -0.300942 0.420450 -0.042439 0.906323 0.561535 -0.772441 -0.296670 0.643038 0.704227 -0.300942 0.422584 0.001439 0.906323 0.638690 -0.709973 -0.296670 0.565688 0.767744 -0.300942 0.420106 0.045720 0.906323 0.709583 -0.639124 -0.296670 0.482108 0.822804 -0.300942 0.413000 0.089499 0.906323 0.772660 -0.561234 -0.296670 0.393217 0.868800 -0.300942 0.401345 0.132291 0.906323 0.827226 -0.477163 -0.296670 0.300900 0.904927 -0.300942 0.385443 0.173241 0.906323 0.872292 -0.388709 -0.296670 0.204400 0.931480 -0.300942 0.365164 0.212684 0.906323 0.908227 -0.295145 -0.296670 0.105648 0.947772 -0.300942 0.340862 0.249785 0.906323 0.934158 -0.198331 -0.296670 0.006687 0.953619 -0.300942 0.313089 0.283821 0.906323 0.949700 -0.100282 -0.296670 -0.093296 0.949068 -0.300942 0.281618 0.315072 0.906323 0.954980 -0.000194 -0.296670 -0.192251 0.934063 -0.300942 0.247046 0.342852 0.906323 0.949741 0.099895 -0.296670 -0.289089 0.908769 -0.300942 0.209752 0.366856 0.906323 0.934041 0.198885 -0.296670 -0.381869 0.873848 -0.300942 0.170534 0.386649 0.906323 0.908347 0.294775 -0.296670 -0.471351 0.829013 -0.300942 0.129071 0.402392 0.906323 0.872450 0.388353 -0.296670 -0.555642 0.775046 -0.300942 0.086187 0.413704 0.906323 0.826943 0.477653 -0.296670 -0.633812 0.712542 -0.300942 0.042353 0.420458 0.906323 0.772327 0.561692 -0.296670 -0.704358 0.642895 -0.300942 -0.001525 0.422583 0.906323 0.709843 0.638835 -0.296670 -0.767859 0.565532 -0.300942 -0.045806 0.420096 0.906323 0.638979 0.709713 -0.296670 -0.822902 0.481940 -0.300942 -0.089583 0.412982 0.906323 0.561077 0.772774 -0.296670 -0.868487 0.393909 -0.300942 -0.131972 0.401451 0.906323 0.477822 0.826845 -0.296670 -0.904988 0.300716 -0.300942 -0.173320 0.385408 0.906323 0.388531 0.872371 -0.296670 -0.931521 0.204210 -0.300942 -0.212759 0.365120 0.906323 0.294960 0.908287 -0.296670 -0.947794 0.105455 -0.300942 -0.249854 0.340811 0.906323 0.198141 0.934199 -0.296670 -0.953620 0.006493 -0.300942 -0.283885 0.313031 0.906323 0.100089 0.949721 -0.296670 -0.949049 -0.093489 -0.300942 -0.315129 0.281554 0.906323 0.000000 0.954980 -0.296670 -0.934024 -0.192442 -0.300942 -0.342902 0.246976 0.906323 -0.100089 0.949721 -0.296670 -0.908999 -0.288365 -0.300942 -0.366689 0.210044 0.906323 -0.198141 0.934199 -0.296670 -0.873770 -0.382047 -0.300942 -0.386683 0.170455 0.906323 -0.294960 0.908287 -0.296670 -0.828917 -0.471520 -0.300942 -0.402419 0.128989 0.906323 -0.388531 0.872371 -0.296670 -0.774933 -0.555799 -0.300942 -0.413721 0.086103 0.906323 -0.477822 0.826845 -0.296670 -0.713047 -0.633244 -0.300942 -0.420425 0.042688 0.906323 -0.561077 0.772774 -0.296670 -0.642751 -0.704489 -0.300942 -0.422583 -0.001611 0.906323 -0.638979 0.709713 -0.296670 -0.565376 -0.767974 -0.300942 -0.420087 -0.045892 0.906323 -0.709843 0.638835 -0.296670 -0.482596 -0.822518 -0.300942 -0.413053 -0.089254 0.906323 -0.772327 0.561692 -0.296670 -0.393732 -0.868567 -0.300942 -0.401424 -0.132053 0.906323 -0.826943 0.477653 -0.296670 -0.300531 -0.905050 -0.300942 -0.385373 -0.173398 0.906323 -0.872450 0.388353 -0.296670 -0.204021 -0.931563 -0.300942 -0.365077 -0.212833 0.906323 -0.908347 0.294775 -0.296670 -0.106210 -0.947710 -0.300942 -0.341010 -0.249583 0.906323 -0.934041 0.198885 -0.296670 -0.006299 -0.953622 -0.300942 -0.312974 -0.283948 0.906323 -0.949741 0.099895 -0.296670 -0.856932 0.241214 0.455503 0.212947 0.970472 -0.113304 -0.469384 -0.000096 -0.882994 -0.877494 0.150073 0.455503 0.110062 0.987446 -0.113304 -0.466788 -0.049290 -0.882994 -0.888332 0.058167 0.455503 0.006958 0.993536 -0.113304 -0.459149 -0.097482 -0.882994 -0.889536 -0.035257 0.455503 -0.097210 0.988793 -0.113304 -0.446404 -0.145067 -0.882994 -0.880941 -0.128292 0.455503 -0.200308 0.973159 -0.113304 -0.428741 -0.191055 -0.882994 -0.862863 -0.219052 0.455503 -0.300252 0.947107 -0.113304 -0.406591 -0.234531 -0.882994 -0.835153 -0.308280 0.455503 -0.397861 0.910422 -0.113304 -0.379771 -0.275853 -0.882994 -0.798243 -0.394112 0.455503 -0.491089 0.863709 -0.113304 -0.348768 -0.314137 -0.882994 -0.752541 -0.475603 0.455503 -0.578907 0.807483 -0.113304 -0.313923 -0.348960 -0.882994 -0.699102 -0.551157 0.455503 -0.659606 0.743022 -0.113304 -0.276001 -0.379664 -0.882994 -0.637486 -0.621392 0.455503 -0.733848 0.669798 -0.113304 -0.234689 -0.406500 -0.882994 -0.568849 -0.684783 0.455503 -0.800006 0.589197 -0.113304 -0.190793 -0.428858 -0.882994 -0.494686 -0.740137 0.455503 -0.856849 0.502963 -0.113304 -0.145241 -0.446347 -0.882994 -0.414390 -0.787907 0.455503 -0.904844 0.410389 -0.113304 -0.097661 -0.459111 -0.882994 -0.329530 -0.826999 0.455503 -0.942873 0.313295 -0.113304 -0.049005 -0.466818 -0.882994 -0.241737 -0.856785 0.455503 -0.970342 0.213540 -0.113304 -0.000191 -0.469384 -0.882994 -0.150609 -0.877402 0.455503 -0.987378 0.110665 -0.113304 0.049005 -0.466818 -0.882994 -0.057821 -0.888354 0.455503 -0.993539 0.006571 -0.113304 0.097661 -0.459111 -0.882994 0.035603 -0.889522 0.455503 -0.988756 -0.097595 -0.113304 0.145241 -0.446347 -0.882994 0.127754 -0.881020 0.455503 -0.973282 -0.199713 -0.113304 0.190793 -0.428858 -0.882994 0.219388 -0.862778 0.455503 -0.946990 -0.300620 -0.113304 0.234689 -0.406500 -0.882994 0.308605 -0.835033 0.455503 -0.910267 -0.398216 -0.113304 0.276001 -0.379664 -0.882994 0.393624 -0.798484 0.455503 -0.864009 -0.490561 -0.113304 0.313923 -0.348960 -0.882994 0.475143 -0.752832 0.455503 -0.807836 -0.578414 -0.113304 0.348768 -0.314137 -0.882994 0.551429 -0.698887 0.455503 -0.742765 -0.659895 -0.113304 0.379771 -0.275853 -0.882994 0.621640 -0.637244 0.455503 -0.669513 -0.734108 -0.113304 0.406591 -0.234531 -0.882994 0.684435 -0.569267 0.455503 -0.589686 -0.799645 -0.113304 0.428741 -0.191055 -0.882994 0.740329 -0.494398 0.455503 -0.502630 -0.857045 -0.113304 0.446404 -0.145067 -0.882994 0.788068 -0.414084 0.455503 -0.410037 -0.905004 -0.113304 0.459149 -0.097482 -0.882994 0.826797 -0.330035 0.455503 -0.313871 -0.942681 -0.113304 0.466788 -0.049290 -0.882994 0.856834 -0.241563 0.455503 -0.213342 -0.970385 -0.113304 0.469384 -0.000096 -0.882994 0.877432 -0.150430 0.455503 -0.110464 -0.987401 -0.113304 0.466808 0.049100 -0.882994 0.888366 -0.057640 0.455503 -0.006369 -0.993540 -0.113304 0.459092 0.097754 -0.882994 0.889550 0.034895 0.455503 0.096808 -0.988833 -0.113304 0.446463 0.144885 -0.882994 0.880994 0.127934 0.455503 0.199911 -0.973241 -0.113304 0.428819 0.190880 -0.882994 0.862733 0.219563 0.455503 0.300813 -0.946929 -0.113304 0.406452 0.234772 -0.882994 0.834970 0.308775 0.455503 0.398401 -0.910186 -0.113304 0.379607 0.276078 -0.882994 0.798404 0.393787 0.455503 0.490737 -0.863909 -0.113304 0.348896 0.313994 -0.882994 0.752735 0.475297 0.455503 0.578578 -0.807719 -0.113304 0.314066 0.348832 -0.882994 0.698775 0.551571 0.455503 0.660047 -0.742631 -0.113304 0.275776 0.379827 -0.882994 0.637739 0.621132 0.455503 0.733575 -0.670097 -0.113304 0.234855 0.406404 -0.882994 0.569128 0.684551 0.455503 0.799766 -0.589523 -0.113304 0.190967 0.428780 -0.882994 0.494247 0.740430 0.455503 0.857147 -0.502455 -0.113304 0.144976 0.446433 -0.882994 0.413923 0.788153 0.455503 0.905087 -0.409853 -0.113304 0.097389 0.459169 -0.882994 0.329866 0.826865 0.455503 0.942745 -0.313679 -0.113304 0.049195 0.466798 -0.882994 0.241388 0.856883 0.455503 0.970429 -0.213145 -0.113304 0.000000 0.469384 -0.882994 0.150251 0.877463 0.455503 0.987423 -0.110263 -0.113304 -0.049195 0.466798 -0.882994 0.058348 0.888320 0.455503 0.993535 -0.007160 -0.113304 -0.097389 0.459169 -0.882994 -0.035076 0.889543 0.455503 0.988813 0.097009 -0.113304 -0.144976 0.446433 -0.882994 -0.128113 0.880968 0.455503 0.973200 0.200109 -0.113304 -0.190967 0.428780 -0.882994 -0.219739 0.862689 0.455503 0.946867 0.301006 -0.113304 -0.234855 0.406404 -0.882994 -0.308110 0.835216 0.455503 0.910503 0.397676 -0.113304 -0.275776 0.379827 -0.882994 -0.393950 0.798324 0.455503 0.863809 0.490913 -0.113304 -0.314066 0.348832 -0.882994 -0.475450 0.752638 0.455503 0.807601 0.578743 -0.113304 -0.348896 0.313994 -0.882994 -0.551014 0.699214 0.455503 0.743156 0.659455 -0.113304 -0.379607 0.276078 -0.882994 -0.621262 0.637613 0.455503 0.669948 0.733711 -0.113304 -0.406452 0.234772 -0.882994 -0.684667 0.568988 0.455503 0.589360 0.799886 -0.113304 -0.428819 0.190880 -0.882994 -0.740530 0.494097 0.455503 0.502280 0.857249 -0.113304 -0.446463 0.144885 -0.882994 -0.787823 0.414551 0.455503 0.410573 0.904761 -0.113304 -0.459092 0.097754 -0.882994 -0.826932 0.329698 0.455503 0.313487 0.942809 -0.113304 -0.466808 0.049100 -0.882994 0.367274 0.059835 0.928186 -0.022192 0.998208 -0.055568 -0.929848 -0.000189 0.367943 0.358980 0.097999 0.928186 -0.126689 0.990385 -0.055568 -0.924707 -0.097643 0.367943 0.346867 0.134736 0.928186 -0.228819 0.971882 -0.055568 -0.909574 -0.193112 0.367943 0.330835 0.170348 0.928186 -0.329419 0.942547 -0.055568 -0.884325 -0.287378 0.367943 0.311159 0.204084 0.928186 -0.426390 0.902831 -0.055568 -0.849336 -0.378479 0.367943 0.288291 0.235283 0.928186 -0.517812 0.853688 -0.055568 -0.805456 -0.464606 0.367943 0.262044 0.264202 0.928186 -0.604432 0.794716 -0.055568 -0.752326 -0.546465 0.367943 0.232911 0.290211 0.928186 -0.684396 0.726990 -0.055568 -0.690909 -0.622304 0.367943 0.201212 0.313024 0.928186 -0.756820 0.651257 -0.055568 -0.621882 -0.691289 0.367943 0.167629 0.332221 0.928186 -0.820340 0.569171 -0.055568 -0.546757 -0.752113 0.367943 0.131887 0.347960 0.928186 -0.875475 0.480058 -0.055568 -0.464919 -0.805275 0.367943 0.094691 0.359866 0.928186 -0.920967 0.385658 -0.055568 -0.377960 -0.849567 0.367943 0.056821 0.367752 0.928186 -0.956027 0.287967 -0.055568 -0.287722 -0.884214 0.367943 0.017965 0.371682 0.928186 -0.980943 0.186182 -0.055568 -0.193466 -0.909499 0.367943 -0.021089 0.371518 0.928186 -0.995053 0.082347 -0.055568 -0.097078 -0.924767 0.367943 -0.059611 0.367310 0.928186 -0.998222 -0.021582 -0.055568 -0.000379 -0.929848 0.367943 -0.097779 0.359040 0.928186 -0.990462 -0.126084 -0.055568 0.097078 -0.924767 0.367943 -0.134871 0.346814 0.928186 -0.971793 -0.229197 -0.055568 0.193466 -0.909499 0.367943 -0.170477 0.330769 0.928186 -0.942419 -0.329786 -0.055568 0.287722 -0.884214 0.367943 -0.203894 0.311284 0.928186 -0.903091 -0.425839 -0.055568 0.377960 -0.849567 0.367943 -0.235395 0.288200 0.928186 -0.853486 -0.518144 -0.055568 0.464919 -0.805275 0.367943 -0.264304 0.261942 0.928186 -0.794481 -0.604742 -0.055568 0.546757 -0.752113 0.367943 -0.290069 0.233088 0.928186 -0.727408 -0.683951 -0.055568 0.621882 -0.691289 0.367943 -0.312901 0.201403 0.928186 -0.651719 -0.756422 -0.055568 0.690909 -0.622304 0.367943 -0.332286 0.167500 0.928186 -0.568851 -0.820561 -0.055568 0.752326 -0.546465 0.367943 -0.348011 0.131751 0.928186 -0.479718 -0.875661 -0.055568 0.805456 -0.464606 0.367943 -0.359808 0.094911 0.928186 -0.386221 -0.920731 -0.055568 0.849336 -0.378479 0.367943 -0.367774 0.056678 0.928186 -0.287595 -0.956139 -0.055568 0.884325 -0.287378 0.367943 -0.371689 0.017821 0.928186 -0.185801 -0.981015 -0.055568 0.909574 -0.193112 0.367943 -0.371531 -0.020862 0.928186 -0.082955 -0.995003 -0.055568 0.924707 -0.097643 0.367943 -0.367298 -0.059686 0.928186 0.021785 -0.998217 -0.055568 0.929848 -0.000189 0.367943 -0.359020 -0.097853 0.928186 0.126286 -0.990436 -0.055568 0.924747 0.097266 0.367943 -0.346787 -0.134942 0.928186 0.229395 -0.971746 -0.055568 0.909460 0.193651 0.367943 -0.330904 -0.170213 0.928186 0.329035 -0.942681 -0.055568 0.884442 0.287018 0.367943 -0.311242 -0.203957 0.928186 0.426023 -0.903004 -0.055568 0.849490 0.378133 0.367943 -0.288152 -0.235454 0.928186 0.518318 -0.853381 -0.055568 0.805180 0.465083 0.367943 -0.261888 -0.264358 0.928186 0.604903 -0.794358 -0.055568 0.752002 0.546910 0.367943 -0.233029 -0.290117 0.928186 0.684099 -0.727269 -0.055568 0.691162 0.622023 0.367943 -0.201339 -0.312942 0.928186 0.756555 -0.651565 -0.055568 0.622163 0.691036 0.367943 -0.167432 -0.332320 0.928186 0.820677 -0.568684 -0.055568 0.546311 0.752437 0.367943 -0.132028 -0.347906 0.928186 0.875279 -0.480415 -0.055568 0.465247 0.805086 0.367943 -0.094838 -0.359828 0.928186 0.920810 -0.386034 -0.055568 0.378306 0.849413 0.367943 -0.056603 -0.367786 0.928186 0.956197 -0.287400 -0.055568 0.287198 0.884384 0.367943 -0.017745 -0.371693 0.928186 0.981053 -0.185601 -0.055568 0.192927 0.909614 0.367943 0.020937 -0.371526 0.928186 0.995020 -0.082752 -0.055568 0.097455 0.924727 0.367943 0.059761 -0.367286 0.928186 0.998213 0.021989 -0.055568 0.000000 0.929848 0.367943 0.097926 -0.359000 0.928186 0.990411 0.126487 -0.055568 -0.097455 0.924727 0.367943 0.134665 -0.346894 0.928186 0.971928 0.228621 -0.055568 -0.192927 0.909614 0.367943 0.170281 -0.330870 0.928186 0.942614 0.329227 -0.055568 -0.287198 0.884384 0.367943 0.204020 -0.311201 0.928186 0.902918 0.426206 -0.055568 -0.378306 0.849413 0.367943 0.235513 -0.288104 0.928186 0.853275 0.518491 -0.055568 -0.465247 0.805086 0.367943 0.264149 -0.262098 0.928186 0.794839 0.604271 -0.055568 -0.546311 0.752437 0.367943 0.290164 -0.232970 0.928186 0.727130 0.684247 -0.055568 -0.622163 0.691036 0.367943 0.312983 -0.201276 0.928186 0.651411 0.756687 -0.055568 -0.691162 0.622023 0.367943 0.332187 -0.167697 0.928186 0.569338 0.820224 -0.055568 -0.752002 0.546910 0.367943 0.347933 -0.131957 0.928186 0.480237 0.875377 -0.055568 -0.805180 0.465083 0.367943 0.359847 -0.094765 0.928186 0.385846 0.920888 -0.055568 -0.849490 0.378133 0.367943 0.367797 -0.056528 0.928186 0.287205 0.956256 -0.055568 -0.884442 0.287018 0.367943 0.371678 -0.018041 0.928186 0.186382 0.980905 -0.055568 -0.909460 0.193651 0.367943 0.371522 0.021013 0.928186 0.082550 0.995037 -0.055568 -0.924747 0.097266 0.367943 -0.415881 0.905092 -0.088603 -0.885205 -0.425215 -0.188693 -0.208460 -0.000042 0.978031 -0.508451 0.856520 -0.088603 -0.835764 -0.515649 -0.188693 -0.207307 -0.021890 0.978031 -0.594621 0.799109 -0.088603 -0.777717 -0.599625 -0.188693 -0.203915 -0.043293 0.978031 -0.675099 0.732387 -0.088603 -0.710589 -0.677833 -0.188693 -0.198254 -0.064426 0.978031 -0.748140 0.657598 -0.088603 -0.635634 -0.748575 -0.188693 -0.190410 -0.084850 0.978031 -0.812365 0.576379 -0.088603 -0.554488 -0.810517 -0.188693 -0.180573 -0.104159 0.978031 -0.868300 0.488063 -0.088603 -0.466486 -0.864168 -0.188693 -0.168662 -0.122510 0.978031 -0.914670 0.394371 -0.088603 -0.373346 -0.908299 -0.188693 -0.154893 -0.139512 0.978031 -0.950965 0.296335 -0.088603 -0.276093 -0.942426 -0.188693 -0.139418 -0.154978 0.978031 -0.976591 0.196012 -0.088603 -0.176766 -0.965996 -0.188693 -0.122576 -0.168614 0.978031 -0.991755 0.092578 -0.088603 -0.074549 -0.979202 -0.188693 -0.104229 -0.180532 0.978031 -0.995996 -0.011875 -0.088603 0.028489 -0.981623 -0.188693 -0.084734 -0.190462 0.978031 -0.989382 -0.115207 -0.088603 0.130240 -0.973361 -0.188693 -0.064504 -0.198229 0.978031 -0.971859 -0.218267 -0.088603 0.231538 -0.954351 -0.188693 -0.043372 -0.203898 0.978031 -0.943630 -0.318923 -0.088603 0.330285 -0.924828 -0.188693 -0.021764 -0.207321 0.978031 -0.905346 -0.415328 -0.088603 0.424674 -0.885464 -0.188693 -0.000085 -0.208460 0.978031 -0.856831 -0.507928 -0.088603 0.515138 -0.836079 -0.188693 0.021764 -0.207321 0.978031 -0.798877 -0.594932 -0.088603 0.599928 -0.777484 -0.188693 0.043372 -0.203898 0.978031 -0.732125 -0.675384 -0.088603 0.678110 -0.710325 -0.188693 0.064504 -0.198229 0.978031 -0.658055 -0.747738 -0.088603 0.748187 -0.636091 -0.188693 0.084734 -0.190462 0.978031 -0.576063 -0.812589 -0.088603 0.810733 -0.554172 -0.188693 0.104229 -0.180532 0.978031 -0.487725 -0.868489 -0.088603 0.864349 -0.466150 -0.188693 0.122576 -0.168614 0.978031 -0.394930 -0.914429 -0.088603 0.908071 -0.373901 -0.188693 0.139418 -0.154978 0.978031 -0.296916 -0.950784 -0.088603 0.942257 -0.276669 -0.188693 0.154893 -0.139512 0.978031 -0.195632 -0.976667 -0.088603 0.966065 -0.176390 -0.188693 0.168662 -0.122510 0.978031 -0.092193 -0.991791 -0.088603 0.979231 -0.074168 -0.188693 0.180573 -0.104159 0.978031 0.011266 -0.996003 -0.088603 0.981640 0.027889 -0.188693 0.190410 -0.084850 0.978031 0.115592 -0.989337 -0.088603 0.973311 0.130619 -0.188693 0.198254 -0.064426 0.978031 0.218645 -0.971774 -0.088603 0.954260 0.231909 -0.188693 0.203915 -0.043293 0.978031 0.318346 -0.943825 -0.088603 0.925029 0.329720 -0.188693 0.207307 -0.021890 0.978031 0.415513 -0.905262 -0.088603 0.885378 0.424854 -0.188693 0.208460 -0.000042 0.978031 0.508102 -0.856727 -0.088603 0.835974 0.515308 -0.188693 0.207316 0.021806 0.978031 0.595095 -0.798756 -0.088603 0.777362 0.600086 -0.188693 0.203889 0.043414 0.978031 0.674801 -0.732662 -0.088603 0.710865 0.677544 -0.188693 0.198280 0.064346 0.978031 0.747872 -0.657903 -0.088603 0.635939 0.748316 -0.188693 0.190445 0.084773 0.978031 0.812706 -0.575897 -0.088603 0.554007 0.810846 -0.188693 0.180511 0.104266 0.978031 0.868589 -0.487548 -0.088603 0.465974 0.864444 -0.188693 0.168589 0.122610 0.978031 0.914509 -0.394743 -0.088603 0.373716 0.908147 -0.188693 0.154950 0.139449 0.978031 0.950845 -0.296722 -0.088603 0.276477 0.942314 -0.188693 0.139481 0.154921 0.978031 0.976707 -0.195433 -0.088603 0.176193 0.966101 -0.188693 0.122476 0.168687 0.978031 0.991718 -0.092982 -0.088603 0.074948 0.979172 -0.188693 0.104302 0.180490 0.978031 0.996001 0.011469 -0.088603 -0.028089 0.981634 -0.188693 0.084811 0.190427 0.978031 0.989314 0.115794 -0.088603 -0.130817 0.973284 -0.188693 0.064386 0.198267 0.978031 0.971729 0.218843 -0.088603 -0.232103 0.954213 -0.188693 0.043252 0.203924 0.978031 0.943760 0.318538 -0.088603 -0.329909 0.924962 -0.188693 0.021848 0.207312 0.978031 0.905177 0.415697 -0.088603 -0.425035 0.885291 -0.188693 0.000000 0.208460 0.978031 0.856624 0.508277 -0.088603 -0.515479 0.835869 -0.188693 -0.021848 0.207312 0.978031 0.799230 0.594459 -0.088603 -0.599467 0.777839 -0.188693 -0.043252 0.203924 0.978031 0.732525 0.674950 -0.088603 -0.677689 0.710727 -0.188693 -0.064386 0.198267 0.978031 0.657751 0.748006 -0.088603 -0.748446 0.635786 -0.188693 -0.084811 0.190427 0.978031 0.575732 0.812824 -0.088603 -0.810959 0.553842 -0.188693 -0.104302 0.180490 0.978031 0.488240 0.868200 -0.088603 -0.864073 0.466662 -0.188693 -0.122476 0.168687 0.978031 0.394557 0.914590 -0.088603 -0.908223 0.373531 -0.188693 -0.139481 0.154921 0.978031 0.296529 0.950905 -0.088603 -0.942370 0.276285 -0.188693 -0.154950 0.139449 0.978031 0.196211 0.976551 -0.088603 -0.965960 0.176963 -0.188693 -0.168589 0.122610 0.978031 0.092780 0.991737 -0.088603 -0.979187 0.074748 -0.188693 -0.180511 0.104266 0.978031 -0.011672 0.995999 -0.088603 -0.981629 -0.028289 -0.188693 -0.190445 0.084773 0.978031 -0.115995 0.989290 -0.088603 -0.973257 -0.131015 -0.188693 -0.198280 0.064346 0.978031 -0.218069 0.971903 -0.088603 -0.954398 -0.231344 -0.188693 -0.203889 0.043414 0.978031 -0.318731 0.943695 -0.088603 -0.924895 -0.330097 -0.188693 -0.207316 0.021806 0.978031 -0.628331 0.241260 0.739590 0.156084 0.970460 -0.183969 -0.762127 -0.000155 -0.647427 -0.650156 0.174078 0.739590 0.053513 0.981474 -0.183969 -0.757914 -0.080031 -0.647427 -0.664715 0.105643 0.739590 -0.048666 0.981727 -0.183969 -0.745510 -0.158279 -0.647427 -0.672126 0.035394 0.739590 -0.151290 0.971219 -0.183969 -0.724816 -0.235542 -0.647427 -0.672134 -0.035244 0.739590 -0.252247 0.950014 -0.183969 -0.696137 -0.310211 -0.647427 -0.664844 -0.104830 0.739590 -0.349508 0.918695 -0.183969 -0.660172 -0.380803 -0.647427 -0.650195 -0.173933 0.739590 -0.443868 0.877004 -0.183969 -0.616625 -0.447896 -0.647427 -0.628385 -0.241120 0.739590 -0.533340 0.825653 -0.183969 -0.566287 -0.510056 -0.647427 -0.599653 -0.305651 0.739590 -0.616937 0.765208 -0.183969 -0.509710 -0.566598 -0.647427 -0.564683 -0.366251 0.739590 -0.693042 0.697028 -0.183969 -0.448136 -0.616451 -0.647427 -0.523187 -0.423417 0.739590 -0.762279 0.620553 -0.183969 -0.381060 -0.660024 -0.647427 -0.475928 -0.475919 0.739590 -0.823119 0.537243 -0.183969 -0.309786 -0.696327 -0.647427 -0.423950 -0.522755 0.739590 -0.874444 0.448890 -0.183969 -0.235824 -0.724724 -0.647427 -0.366827 -0.564309 0.739590 -0.916675 0.354770 -0.183969 -0.158569 -0.745449 -0.647427 -0.305663 -0.599647 0.739590 -0.948809 0.256742 -0.183969 -0.079568 -0.757962 -0.647427 -0.241644 -0.628183 0.739590 -0.970365 0.156677 -0.183969 -0.000310 -0.762127 -0.647427 -0.174475 -0.650050 0.739590 -0.981441 0.054113 -0.183969 0.079568 -0.757962 -0.647427 -0.105384 -0.664756 0.739590 -0.981708 -0.049048 -0.183969 0.158569 -0.745449 -0.647427 -0.035133 -0.672140 0.739590 -0.971160 -0.151667 -0.183969 0.235824 -0.724724 -0.647427 0.034833 -0.672156 0.739590 -0.950168 -0.251667 -0.183969 0.309786 -0.696327 -0.647427 0.105088 -0.664803 0.739590 -0.918559 -0.349865 -0.183969 0.381060 -0.660024 -0.647427 0.174186 -0.650128 0.739590 -0.876831 -0.444210 -0.183969 0.448136 -0.616451 -0.647427 0.240736 -0.628532 0.739590 -0.825979 -0.532836 -0.183969 0.509710 -0.566598 -0.647427 0.305285 -0.599840 0.739590 -0.765585 -0.616470 -0.183969 0.566287 -0.510056 -0.647427 0.366471 -0.564540 0.739590 -0.696758 -0.693313 -0.183969 0.616625 -0.447896 -0.647427 0.423620 -0.523022 0.739590 -0.620257 -0.762520 -0.183969 0.660172 -0.380803 -0.647427 0.475628 -0.476219 0.739590 -0.537746 -0.822791 -0.183969 0.696137 -0.310211 -0.647427 0.522920 -0.423747 0.739590 -0.448550 -0.874619 -0.183969 0.724816 -0.235542 -0.647427 0.564451 -0.366608 0.739590 -0.354414 -0.916813 -0.183969 0.745510 -0.158279 -0.647427 0.599460 -0.306029 0.739590 -0.257322 -0.948652 -0.183969 0.757914 -0.080031 -0.647427 0.628233 -0.241516 0.739590 -0.156479 -0.970397 -0.183969 0.762127 -0.000155 -0.647427 0.650085 -0.174343 0.739590 -0.053913 -0.981452 -0.183969 0.757946 0.079722 -0.647427 0.664777 -0.105249 0.739590 0.049247 -0.981698 -0.183969 0.745416 0.158721 -0.647427 0.672112 -0.035668 0.739590 0.150894 -0.971281 -0.183969 0.724912 0.235247 -0.647427 0.672148 0.034970 0.739590 0.251860 -0.950117 -0.183969 0.696264 0.309928 -0.647427 0.664782 0.105224 0.739590 0.350052 -0.918487 -0.183969 0.659946 0.381194 -0.647427 0.650092 0.174318 0.739590 0.444388 -0.876741 -0.183969 0.616360 0.448262 -0.647427 0.628483 0.240864 0.739590 0.533004 -0.825871 -0.183969 0.566494 0.509826 -0.647427 0.599777 0.305407 0.739590 0.616626 -0.765460 -0.183969 0.509941 0.566391 -0.647427 0.564465 0.366586 0.739590 0.693455 -0.696617 -0.183969 0.447771 0.616717 -0.647427 0.523359 0.423204 0.739590 0.762026 -0.620864 -0.183969 0.381328 0.659869 -0.647427 0.476122 0.475725 0.739590 0.822900 -0.537579 -0.183969 0.310069 0.696200 -0.647427 0.423640 0.523006 0.739590 0.874710 -0.448372 -0.183969 0.235395 0.724864 -0.647427 0.366493 0.564526 0.739590 0.916885 -0.354227 -0.183969 0.158128 0.745543 -0.647427 0.305907 0.599522 0.739590 0.948705 -0.257129 -0.183969 0.079876 0.757930 -0.647427 0.241388 0.628282 0.739590 0.970429 -0.156281 -0.183969 0.000000 0.762127 -0.647427 0.174211 0.650121 0.739590 0.981463 -0.053713 -0.183969 -0.079876 0.757930 -0.647427 0.105778 0.664693 0.739590 0.981737 0.048466 -0.183969 -0.158128 0.745543 -0.647427 0.035531 0.672119 0.739590 0.971250 0.151092 -0.183969 -0.235395 0.724864 -0.647427 -0.035107 0.672141 0.739590 0.950065 0.252054 -0.183969 -0.310069 0.696200 -0.647427 -0.105359 0.664760 0.739590 0.918416 0.350239 -0.183969 -0.381328 0.659869 -0.647427 -0.173800 0.650231 0.739590 0.877095 0.443690 -0.183969 -0.447771 0.616717 -0.647427 -0.240992 0.628434 0.739590 0.825762 0.533172 -0.183969 -0.509941 0.566391 -0.647427 -0.305529 0.599715 0.739590 0.765334 0.616781 -0.183969 -0.566494 0.509826 -0.647427 -0.366136 0.564757 0.739590 0.697169 0.692900 -0.183969 -0.616360 0.448262 -0.647427 -0.423311 0.523273 0.739590 0.620709 0.762153 -0.183969 -0.659946 0.381194 -0.647427 -0.475822 0.476025 0.739590 0.537411 0.823010 -0.183969 -0.696264 0.309928 -0.647427 -0.523092 0.423534 0.739590 0.448194 0.874802 -0.183969 -0.724912 0.235247 -0.647427 -0.564234 0.366942 0.739590 0.354957 0.916603 -0.183969 -0.745416 0.158721 -0.647427 -0.599585 0.305785 0.739590 0.256935 0.948757 -0.183969 -0.757946 0.079722 -0.647427 0.013516 -0.961989 0.272754 0.046867 0.273089 0.960846 -0.998810 -0.000203 0.048777 0.114265 -0.955274 0.272754 0.017988 0.276497 0.960846 -0.993287 -0.104885 0.048777 0.212817 -0.938251 0.272754 -0.010813 0.276870 0.960846 -0.977032 -0.207434 0.048777 0.309980 -0.910778 0.272754 -0.039772 0.274212 0.960846 -0.949911 -0.308691 0.048777 0.403729 -0.873274 0.272754 -0.068292 0.268534 0.960846 -0.912326 -0.406549 0.048777 0.492205 -0.826644 0.272754 -0.095800 0.259993 0.960846 -0.865192 -0.499063 0.048777 0.576132 -0.770504 0.272754 -0.122522 0.248521 0.960846 -0.808122 -0.586993 0.048777 0.653713 -0.705878 0.272754 -0.147894 0.234311 0.960846 -0.742150 -0.668457 0.048777 0.724094 -0.633477 0.272754 -0.171637 0.217520 0.960846 -0.668003 -0.742558 0.048777 0.785945 -0.554884 0.272754 -0.193291 0.198527 0.960846 -0.587307 -0.807893 0.048777 0.839772 -0.469455 0.272754 -0.213033 0.177175 0.960846 -0.499400 -0.864998 0.048777 0.884349 -0.378855 0.272754 -0.230429 0.153872 0.960846 -0.405991 -0.912574 0.048777 0.918901 -0.285002 0.272754 -0.245158 0.129119 0.960846 -0.309061 -0.949791 0.048777 0.943710 -0.187125 0.272754 -0.257340 0.102714 0.960846 -0.207814 -0.976951 0.048777 0.958125 -0.087187 0.272754 -0.266688 0.075177 0.960846 -0.104278 -0.993351 0.048777 0.961997 0.012928 0.272754 -0.273060 0.047034 0.960846 -0.000407 -0.998810 0.048777 0.955344 0.113681 0.272754 -0.276486 0.018157 0.960846 0.104278 -0.993351 0.048777 0.938168 0.213182 0.272754 -0.276866 -0.010921 0.960846 0.207814 -0.976951 0.048777 0.910658 0.310335 0.272754 -0.274197 -0.039879 0.960846 0.309061 -0.949791 0.048777 0.873521 0.403195 0.272754 -0.268575 -0.068128 0.960846 0.405991 -0.912574 0.048777 0.826452 0.492526 0.272754 -0.259956 -0.095902 0.960846 0.499400 -0.864998 0.048777 0.770280 0.576432 0.272754 -0.248473 -0.122619 0.960846 0.587307 -0.807893 0.048777 0.706277 0.653282 0.272754 -0.234401 -0.147751 0.960846 0.668003 -0.742558 0.048777 0.633919 0.723707 0.272754 -0.217625 -0.171504 0.960846 0.742150 -0.668457 0.048777 0.554578 0.786161 0.272754 -0.198451 -0.193368 0.960846 0.808122 -0.586993 0.048777 0.469129 0.839954 0.272754 -0.177092 -0.213102 0.960846 0.865192 -0.499063 0.048777 0.379396 0.884118 0.272754 -0.154013 -0.230335 0.960846 0.912326 -0.406549 0.048777 0.284644 0.919012 0.272754 -0.129024 -0.245208 0.960846 0.949911 -0.308691 0.048777 0.186758 0.943783 0.272754 -0.102613 -0.257380 0.960846 0.977032 -0.207434 0.048777 0.087772 0.958072 0.272754 -0.075340 -0.266642 0.960846 0.993287 -0.104885 0.048777 -0.013124 0.961994 0.272754 -0.046979 -0.273070 0.960846 0.998810 -0.000203 0.048777 -0.113876 0.955321 0.272754 -0.018100 -0.276490 0.960846 0.993330 0.104480 0.048777 -0.213373 0.938124 0.272754 0.010978 -0.276864 0.960846 0.976909 0.208013 0.048777 -0.309609 0.910905 0.272754 0.039660 -0.274228 0.960846 0.950036 0.308304 0.048777 -0.403373 0.873439 0.272754 0.068183 -0.268561 0.960846 0.912492 0.406177 0.048777 -0.492694 0.826352 0.272754 0.095954 -0.259936 0.960846 0.864896 0.499576 0.048777 -0.576589 0.770163 0.272754 0.122669 -0.248448 0.960846 0.807773 0.587472 0.048777 -0.653426 0.706144 0.272754 0.147798 -0.234371 0.960846 0.742422 0.668155 0.048777 -0.723836 0.633772 0.272754 0.171548 -0.217590 0.960846 0.668306 0.742286 0.048777 -0.786273 0.554418 0.272754 0.193408 -0.198412 0.960846 0.586828 0.808241 0.048777 -0.839581 0.469797 0.272754 0.212961 -0.177262 0.960846 0.499752 0.864794 0.048777 -0.884195 0.379216 0.272754 0.230366 -0.153966 0.960846 0.406363 0.912409 0.048777 -0.919070 0.284457 0.272754 0.245234 -0.128974 0.960846 0.308498 0.949974 0.048777 -0.943821 0.186566 0.272754 0.257401 -0.102561 0.960846 0.207235 0.977075 0.048777 -0.958089 0.087577 0.272754 0.266658 -0.075285 0.960846 0.104682 0.993309 0.048777 -0.961991 -0.013320 0.272754 0.273079 -0.046923 0.960846 0.000000 0.998810 0.048777 -0.955297 -0.114070 0.272754 0.276493 -0.018044 0.960846 -0.104682 0.993309 0.048777 -0.938294 -0.212626 0.272754 0.276873 0.010757 0.960846 -0.207235 0.977075 0.048777 -0.910842 -0.309795 0.272754 0.274220 0.039716 0.960846 -0.308498 0.949974 0.048777 -0.873356 -0.403551 0.272754 0.268548 0.068238 0.960846 -0.406363 0.912409 0.048777 -0.826251 -0.492863 0.272754 0.259917 0.096007 0.960846 -0.499752 0.864794 0.048777 -0.770622 -0.575975 0.272754 0.248546 0.122471 0.960846 -0.586828 0.808241 0.048777 -0.706011 -0.653570 0.272754 0.234341 0.147846 0.960846 -0.668306 0.742286 0.048777 -0.633624 -0.723965 0.272754 0.217555 0.171593 0.960846 -0.742422 0.668155 0.048777 -0.555044 -0.785832 0.272754 0.198566 0.193250 0.960846 -0.807773 0.587472 0.048777 -0.469626 -0.839676 0.272754 0.177218 0.212997 0.960846 -0.864896 0.499576 0.048777 -0.379036 -0.884272 0.272754 0.153919 0.230398 0.960846 -0.912492 0.406177 0.048777 -0.284270 -0.919128 0.272754 0.128924 0.245261 0.960846 -0.950036 0.308304 0.048777 -0.187317 -0.943672 0.272754 0.102766 0.257319 0.960846 -0.976909 0.208013 0.048777 -0.087382 -0.958107 0.272754 0.075231 0.266673 0.960846 -0.993330 0.104480 0.048777 -0.659112 -0.283406 -0.696601 0.194894 -0.959000 0.205755 -0.726352 -0.000148 0.687322 -0.625779 -0.350925 -0.696601 0.294331 -0.933292 0.205755 -0.722337 -0.076274 0.687322 -0.585967 -0.413992 -0.696601 0.389628 -0.897694 0.205755 -0.710515 -0.150850 0.687322 -0.539351 -0.473126 -0.696601 0.481567 -0.851914 0.205755 -0.690792 -0.224486 0.687322 -0.486793 -0.527048 -0.696601 0.568202 -0.796751 0.205755 -0.663460 -0.295650 0.687322 -0.429449 -0.574736 -0.696601 0.647844 -0.733459 0.205755 -0.629183 -0.362928 0.687322 -0.366847 -0.616579 -0.696601 0.721148 -0.661521 0.205755 -0.587681 -0.426872 0.687322 -0.300205 -0.651632 -0.696601 0.786509 -0.582296 0.205755 -0.539705 -0.486114 0.687322 -0.230256 -0.679507 -0.696601 0.843206 -0.496658 0.205755 -0.485784 -0.540002 0.687322 -0.158470 -0.699739 -0.696601 0.890209 -0.406439 0.205755 -0.427100 -0.587514 0.687322 -0.084260 -0.712494 -0.696601 0.927904 -0.310900 0.205755 -0.363172 -0.629042 0.687322 -0.009121 -0.717401 -0.696601 0.955378 -0.211937 0.205755 -0.295244 -0.663641 0.687322 0.065403 -0.714472 -0.696601 0.972218 -0.111611 0.205755 -0.224755 -0.690705 0.687322 0.139925 -0.703682 -0.696601 0.978561 -0.009101 0.205755 -0.151126 -0.710457 0.687322 0.212905 -0.685141 -0.696601 0.974126 0.093509 0.205755 -0.075833 -0.722383 0.687322 0.283003 -0.659285 -0.696601 0.959119 0.194308 0.205755 -0.000296 -0.726352 0.687322 0.350542 -0.625993 -0.696601 0.933472 0.293761 0.205755 0.075833 -0.722383 0.687322 0.414220 -0.585806 -0.696601 0.897542 0.389977 0.205755 0.151126 -0.710457 0.687322 0.473336 -0.539167 -0.696601 0.851727 0.481899 0.205755 0.224755 -0.690705 0.687322 0.526750 -0.487115 -0.696601 0.797098 0.567715 0.205755 0.295244 -0.663641 0.687322 0.574903 -0.429225 -0.696601 0.733207 0.648130 0.205755 0.363172 -0.629042 0.687322 0.616722 -0.366607 -0.696601 0.661241 0.721405 0.205755 0.427100 -0.587514 0.687322 0.651448 -0.300603 -0.696601 0.582777 0.786153 0.205755 0.485784 -0.540002 0.687322 0.679366 -0.230671 -0.696601 0.497173 0.842902 0.205755 0.539705 -0.486114 0.687322 0.699800 -0.158198 -0.696601 0.406092 0.890367 0.205755 0.587681 -0.426872 0.687322 0.712527 -0.083983 -0.696601 0.310539 0.928025 0.205755 0.629183 -0.362928 0.687322 0.717395 -0.009560 -0.696601 0.212520 0.955249 0.205755 0.663460 -0.295650 0.687322 0.714446 0.065681 -0.696601 0.111233 0.972261 0.205755 0.690792 -0.224486 0.687322 0.703628 0.140198 -0.696601 0.008720 0.978565 0.205755 0.710515 -0.150850 0.687322 0.685271 0.212486 -0.696601 -0.092914 0.974183 0.205755 0.722337 -0.076274 0.687322 0.659227 0.283137 -0.696601 -0.194504 0.959079 0.205755 0.726352 -0.000148 0.687322 0.625922 0.350670 -0.696601 -0.293951 0.933412 0.205755 0.722368 0.075980 0.687322 0.585722 0.414340 -0.696601 -0.390160 0.897463 0.205755 0.710426 0.151271 0.687322 0.539543 0.472906 -0.696601 -0.481220 0.852110 0.205755 0.690884 0.224205 0.687322 0.487008 0.526850 -0.696601 -0.567877 0.796982 0.205755 0.663580 0.295379 0.687322 0.429108 0.574990 -0.696601 -0.648279 0.733075 0.205755 0.628968 0.363300 0.687322 0.366482 0.616797 -0.696601 -0.721540 0.661094 0.205755 0.587427 0.427220 0.687322 0.300470 0.651510 -0.696601 -0.786271 0.582617 0.205755 0.539903 0.485894 0.687322 0.230533 0.679413 -0.696601 -0.843003 0.497001 0.205755 0.486004 0.539804 0.687322 0.158056 0.699833 -0.696601 -0.890450 0.405911 0.205755 0.426752 0.587767 0.687322 0.084550 0.712460 -0.696601 -0.927777 0.311278 0.205755 0.363429 0.628894 0.687322 0.009414 0.717397 -0.696601 -0.955292 0.212326 0.205755 0.295514 0.663520 0.687322 -0.065826 0.714433 -0.696601 -0.972284 0.111035 0.205755 0.224345 0.690838 0.687322 -0.140342 0.703599 -0.696601 -0.978566 0.008521 0.205755 0.150705 0.710546 0.687322 -0.212626 0.685228 -0.696601 -0.974164 -0.093112 0.205755 0.076127 0.722352 0.687322 -0.283272 0.659170 -0.696601 -0.959040 -0.194699 0.205755 0.000000 0.726352 0.687322 -0.350797 0.625850 -0.696601 -0.933352 -0.294141 0.205755 -0.076127 0.722352 0.687322 -0.413873 0.586052 -0.696601 -0.897774 -0.389445 0.205755 -0.150705 0.710546 0.687322 -0.473016 0.539447 -0.696601 -0.852012 -0.481394 0.205755 -0.224345 0.690838 0.687322 -0.526949 0.486901 -0.696601 -0.796866 -0.568039 0.205755 -0.295514 0.663520 0.687322 -0.575077 0.428991 -0.696601 -0.732943 -0.648428 0.205755 -0.363429 0.628894 0.687322 -0.616505 0.366973 -0.696601 -0.661668 -0.721013 0.205755 -0.426752 0.587767 0.687322 -0.651571 0.300338 -0.696601 -0.582457 -0.786390 0.205755 -0.486004 0.539804 0.687322 -0.679460 0.230394 -0.696601 -0.496829 -0.843105 0.205755 -0.539903 0.485894 0.687322 -0.699706 0.158613 -0.696601 -0.406620 -0.890126 0.205755 -0.587427 0.427220 0.687322 -0.712477 0.084405 -0.696601 -0.311089 -0.927841 0.205755 -0.628968 0.363300 0.687322 -0.717399 0.009268 -0.696601 -0.212131 -0.955335 0.205755 -0.663580 0.295379 0.687322 -0.714419 -0.065972 -0.696601 -0.110837 -0.972307 0.205755 -0.690884 0.224205 0.687322 -0.703710 -0.139781 -0.696601 -0.009301 -0.978559 0.205755 -0.710426 0.151271 0.687322 -0.685185 -0.212765 -0.696601 0.093311 -0.974145 0.205755 -0.722368 0.075980 0.687322 0.691504 0.561309 -0.454703 0.469074 -0.827606 -0.308281 -0.549355 -0.000112 -0.835589 0.628866 0.630692 -0.454703 0.553230 -0.773886 -0.308281 -0.546318 -0.057688 -0.835589 0.559995 0.692569 -0.454703 0.630580 -0.712272 -0.308281 -0.537378 -0.114091 -0.835589 0.484325 0.747446 -0.454703 0.701758 -0.642260 -0.308281 -0.522461 -0.169783 -0.835589 0.403319 0.794090 -0.454703 0.765207 -0.565174 -0.308281 -0.501789 -0.223606 -0.835589 0.318704 0.831669 -0.454703 0.819745 -0.482682 -0.308281 -0.475864 -0.274490 -0.835589 0.229784 0.860491 -0.454703 0.865818 -0.394109 -0.308281 -0.444475 -0.322852 -0.835589 0.138333 0.879835 -0.454703 0.902355 -0.301194 -0.308281 -0.408190 -0.367658 -0.835589 0.045358 0.889488 -0.454703 0.928953 -0.204962 -0.308281 -0.367409 -0.408414 -0.835589 -0.047228 0.889390 -0.454703 0.945211 -0.107417 -0.308281 -0.323025 -0.444349 -0.835589 -0.140182 0.879542 -0.454703 0.951264 -0.007761 -0.308281 -0.274675 -0.475758 -0.835589 -0.231592 0.860006 -0.454703 0.946838 0.091981 -0.308281 -0.223299 -0.501925 -0.835589 -0.319620 0.831317 -0.454703 0.932173 0.189778 -0.308281 -0.169987 -0.522394 -0.835589 -0.404988 0.793240 -0.454703 0.907149 0.286431 -0.308281 -0.114300 -0.537333 -0.835589 -0.485895 0.746426 -0.454703 0.872133 0.379929 -0.308281 -0.057354 -0.546353 -0.835589 -0.560886 0.691847 -0.454703 0.827893 0.468569 -0.308281 -0.000224 -0.549355 -0.835589 -0.630308 0.629252 -0.454703 0.774224 0.552757 -0.308281 0.057354 -0.546353 -0.835589 -0.692787 0.559725 -0.454703 0.712027 0.630857 -0.308281 0.114300 -0.537333 -0.835589 -0.747634 0.484034 -0.454703 0.641987 0.702008 -0.308281 0.169987 -0.522394 -0.835589 -0.793843 0.403805 -0.454703 0.565641 0.764861 -0.308281 0.223299 -0.501925 -0.835589 -0.831793 0.318380 -0.454703 0.482363 0.819932 -0.308281 0.274675 -0.475758 -0.835589 -0.860581 0.229449 -0.454703 0.393772 0.865972 -0.308281 0.323025 -0.444349 -0.835589 -0.879750 0.138870 -0.454703 0.301745 0.902171 -0.308281 0.367409 -0.408414 -0.835589 -0.889460 0.045901 -0.454703 0.205529 0.928828 -0.308281 0.408190 -0.367658 -0.835589 -0.889372 -0.047574 -0.454703 0.107050 0.945253 -0.308281 0.444475 -0.322852 -0.835589 -0.879488 -0.140524 -0.454703 0.007391 0.951267 -0.308281 0.475864 -0.274490 -0.835589 -0.860148 -0.231067 -0.454703 -0.091403 0.946894 -0.308281 0.501789 -0.223606 -0.835589 -0.831193 -0.319944 -0.454703 -0.190140 0.932100 -0.308281 0.522461 -0.169783 -0.835589 -0.793083 -0.405297 -0.454703 -0.286784 0.907038 -0.308281 0.537378 -0.114091 -0.835589 -0.746723 -0.485439 -0.454703 -0.379396 0.872365 -0.308281 0.546318 -0.057688 -0.835589 -0.691733 -0.561027 -0.454703 -0.468737 0.827797 -0.308281 0.549355 -0.000112 -0.835589 -0.629123 -0.630436 -0.454703 -0.552915 0.774111 -0.308281 0.546342 0.057465 -0.835589 -0.559584 -0.692900 -0.454703 -0.631002 0.711899 -0.308281 0.537310 0.114409 -0.835589 -0.484629 -0.747249 -0.454703 -0.701497 0.642546 -0.308281 0.522530 0.169571 -0.835589 -0.403643 -0.793926 -0.454703 -0.764977 0.565485 -0.308281 0.501880 0.223402 -0.835589 -0.318211 -0.831858 -0.454703 -0.820030 0.482196 -0.308281 0.475702 0.274772 -0.835589 -0.229274 -0.860627 -0.454703 -0.866052 0.393595 -0.308281 0.444284 0.323115 -0.835589 -0.138691 -0.879779 -0.454703 -0.902233 0.301562 -0.308281 0.408340 0.367492 -0.835589 -0.045720 -0.889469 -0.454703 -0.928869 0.205340 -0.308281 0.367575 0.408265 -0.835589 0.047755 -0.889362 -0.454703 -0.945275 0.106857 -0.308281 0.322761 0.444541 -0.835589 0.139824 -0.879599 -0.454703 -0.951261 0.008148 -0.308281 0.274869 0.475646 -0.835589 0.231242 -0.860100 -0.454703 -0.946876 -0.091595 -0.308281 0.223504 0.501834 -0.835589 0.320113 -0.831128 -0.454703 -0.932061 -0.190330 -0.308281 0.169677 0.522495 -0.835589 0.405458 -0.793000 -0.454703 -0.906980 -0.286969 -0.308281 0.113981 0.537401 -0.835589 0.485591 -0.746624 -0.454703 -0.872288 -0.379574 -0.308281 0.057576 0.546330 -0.835589 0.561168 -0.691618 -0.454703 -0.827702 -0.468906 -0.308281 0.000000 0.549356 -0.835589 0.630564 -0.628995 -0.454703 -0.773999 -0.553072 -0.308281 -0.057576 0.546330 -0.835589 0.692455 -0.560136 -0.454703 -0.712401 -0.630435 -0.308281 -0.113981 0.537401 -0.835589 0.747347 -0.484477 -0.454703 -0.642403 -0.701627 -0.308281 -0.169677 0.522495 -0.835589 0.794008 -0.403481 -0.454703 -0.565330 -0.765092 -0.308281 -0.223504 0.501834 -0.835589 0.831923 -0.318041 -0.454703 -0.482029 -0.820129 -0.308281 -0.274869 0.475646 -0.835589 0.860444 -0.229959 -0.454703 -0.394285 -0.865738 -0.308281 -0.322761 0.444541 -0.835589 0.879807 -0.138512 -0.454703 -0.301378 -0.902294 -0.308281 -0.367575 0.408265 -0.835589 0.889478 -0.045539 -0.454703 -0.205151 -0.928911 -0.308281 -0.408340 0.367492 -0.835589 0.889400 0.047046 -0.454703 -0.107610 -0.945189 -0.308281 -0.444284 0.323115 -0.835589 0.879571 0.140003 -0.454703 -0.007955 -0.951262 -0.308281 -0.475702 0.274772 -0.835589 0.860053 0.231417 -0.454703 0.091788 -0.946857 -0.308281 -0.501880 0.223402 -0.835589 0.831062 0.320282 -0.454703 0.190520 -0.932022 -0.308281 -0.522530 0.169571 -0.835589 0.793323 0.404827 -0.454703 0.286246 -0.907208 -0.308281 -0.537310 0.114409 -0.835589 0.746525 0.485743 -0.454703 0.379752 -0.872211 -0.308281 -0.546342 0.057465 -0.835589 -0.760353 0.438226 0.479397 0.370632 0.898865 -0.233824 -0.533381 -0.000109 -0.845875 -0.802094 0.356122 0.479397 0.274384 0.932759 -0.233824 -0.530432 -0.056010 -0.845875 -0.834731 0.270930 0.479397 0.176069 0.956204 -0.233824 -0.521752 -0.110773 -0.845875 -0.858529 0.181952 0.479397 0.074882 0.969391 -0.233824 -0.507268 -0.164846 -0.845875 -0.872870 0.090970 0.479397 -0.027129 0.971900 -0.233824 -0.487197 -0.217104 -0.845875 -0.877598 -0.000136 0.479397 -0.127878 0.963833 -0.233824 -0.462027 -0.266508 -0.845875 -0.872750 -0.092114 0.479397 -0.228190 0.945122 -0.233824 -0.431550 -0.313464 -0.845875 -0.858290 -0.183077 0.479397 -0.325989 0.916001 -0.233824 -0.396320 -0.356967 -0.845875 -0.834375 -0.272024 0.479397 -0.420197 0.876790 -0.233824 -0.356725 -0.396538 -0.845875 -0.801627 -0.357173 0.479397 -0.508949 0.828431 -0.233824 -0.313632 -0.431428 -0.845875 -0.759778 -0.439222 0.479397 -0.592971 0.770527 -0.233824 -0.266688 -0.461923 -0.845875 -0.709560 -0.516433 0.479397 -0.670462 0.704135 -0.233824 -0.216806 -0.487330 -0.845875 -0.652114 -0.587304 0.479397 -0.739938 0.630728 -0.233824 -0.165044 -0.507204 -0.845875 -0.586969 -0.652416 0.479397 -0.801968 0.549704 -0.233824 -0.110976 -0.521708 -0.845875 -0.515358 -0.710341 0.479397 -0.855164 0.462624 -0.233824 -0.055686 -0.530466 -0.845875 -0.438690 -0.760085 0.479397 -0.898638 0.371181 -0.233824 -0.000217 -0.533381 -0.845875 -0.356612 -0.801877 0.479397 -0.932591 0.274953 -0.233824 0.055686 -0.530466 -0.845875 -0.270606 -0.834836 0.479397 -0.956272 0.175697 -0.233824 0.110976 -0.521708 -0.845875 -0.181618 -0.858599 0.479397 -0.969420 0.074505 -0.233824 0.165044 -0.507204 -0.845875 -0.091504 -0.872815 0.479397 -0.971917 -0.026535 -0.233824 0.216806 -0.487330 -0.845875 0.000477 -0.877598 0.479397 -0.963783 -0.128253 -0.233824 0.266688 -0.461923 -0.845875 0.092453 -0.872715 0.479397 -0.945033 -0.228558 -0.233824 0.313632 -0.431428 -0.845875 0.182553 -0.858401 0.479397 -0.916200 -0.325430 -0.233824 0.356725 -0.396538 -0.845875 0.271514 -0.834541 0.479397 -0.877046 -0.419662 -0.233824 0.396320 -0.356967 -0.845875 0.357484 -0.801488 0.479397 -0.828233 -0.509271 -0.233824 0.431550 -0.313464 -0.845875 0.439517 -0.759607 0.479397 -0.770296 -0.593271 -0.233824 0.462027 -0.266508 -0.845875 0.515999 -0.709875 0.479397 -0.704545 -0.670032 -0.233824 0.487197 -0.217104 -0.845875 0.587557 -0.651885 0.479397 -0.630440 -0.740183 -0.233824 0.507268 -0.164846 -0.845875 0.652644 -0.586715 0.479397 -0.549392 -0.802181 -0.233824 0.521752 -0.110773 -0.845875 0.710026 -0.515792 0.479397 -0.463147 -0.854881 -0.233824 0.530432 -0.056010 -0.845875 0.760174 -0.438536 0.479397 -0.370998 -0.898714 -0.233824 0.533381 -0.000109 -0.845875 0.801949 -0.356449 0.479397 -0.274763 -0.932647 -0.233824 0.530455 0.055794 -0.845875 0.834891 -0.270436 0.479397 -0.175502 -0.956308 -0.233824 0.521686 0.111082 -0.845875 0.858455 -0.182302 0.479397 -0.075277 -0.969360 -0.233824 0.507335 0.164640 -0.845875 0.872833 -0.091326 0.479397 0.026734 -0.971911 -0.233824 0.487286 0.216905 -0.845875 0.877598 0.000656 0.479397 0.128449 -0.963757 -0.233824 0.461869 0.266782 -0.845875 0.872696 0.092631 0.479397 0.228751 -0.944986 -0.233824 0.431364 0.313720 -0.845875 0.858364 0.182727 0.479397 0.325616 -0.916133 -0.233824 0.396466 0.356806 -0.845875 0.834486 0.271684 0.479397 0.419840 -0.876961 -0.233824 0.356886 0.396393 -0.845875 0.801415 0.357648 0.479397 0.509440 -0.828129 -0.233824 0.313376 0.431614 -0.845875 0.759957 0.438912 0.479397 0.592658 -0.770768 -0.233824 0.266876 0.461814 -0.845875 0.709770 0.516144 0.479397 0.670175 -0.704408 -0.233824 0.217005 0.487242 -0.845875 0.651766 0.587690 0.479397 0.740312 -0.630290 -0.233824 0.164743 0.507302 -0.845875 0.586582 0.652763 0.479397 0.802293 -0.549228 -0.233824 0.110667 0.521774 -0.845875 0.515648 0.710131 0.479397 0.854975 -0.462973 -0.233824 0.055902 0.530443 -0.845875 0.438381 0.760264 0.479397 0.898789 -0.370815 -0.233824 0.000000 0.533381 -0.845875 0.356285 0.802022 0.479397 0.932703 -0.274574 -0.233824 -0.055902 0.530443 -0.845875 0.271100 0.834675 0.479397 0.956168 -0.176264 -0.233824 -0.110667 0.521774 -0.845875 0.182127 0.858492 0.479397 0.969376 -0.075080 -0.233824 -0.164743 0.507302 -0.845875 0.091148 0.872852 0.479397 0.971906 0.026931 -0.233824 -0.217005 0.487242 -0.845875 -0.000835 0.877598 0.479397 0.963731 0.128646 -0.233824 -0.266876 0.461814 -0.845875 -0.091936 0.872769 0.479397 0.945168 0.227998 -0.233824 -0.313376 0.431614 -0.845875 -0.182902 0.858327 0.479397 0.916067 0.325803 -0.233824 -0.356886 0.396393 -0.845875 -0.271854 0.834430 0.479397 0.876875 0.420019 -0.233824 -0.396466 0.356806 -0.845875 -0.357009 0.801700 0.479397 0.828534 0.508780 -0.233824 -0.431364 0.313720 -0.845875 -0.439067 0.759867 0.479397 0.770647 0.592815 -0.233824 -0.461869 0.266782 -0.845875 -0.516288 0.709665 0.479397 0.704272 0.670319 -0.233824 -0.487286 0.216905 -0.845875 -0.587823 0.651646 0.479397 0.630139 0.740440 -0.233824 -0.507335 0.164640 -0.845875 -0.652296 0.587102 0.479397 0.549867 0.801856 -0.233824 -0.521686 0.111082 -0.845875 -0.710236 0.515503 0.479397 0.462799 0.855069 -0.233824 -0.530455 0.055794 -0.845875 0.347784 -0.624205 -0.699582 -0.277660 -0.781261 0.559049 -0.895517 -0.000182 -0.445026 0.411289 -0.584316 -0.699582 -0.194249 -0.806059 0.559049 -0.890566 -0.094038 -0.445026 0.469727 -0.538462 -0.699582 -0.109520 -0.821869 0.559049 -0.875992 -0.185982 -0.445026 0.523574 -0.486266 -0.699582 -0.022779 -0.828821 0.559049 -0.851675 -0.276768 -0.445026 0.571655 -0.428714 -0.699582 0.064213 -0.826644 0.559049 -0.817978 -0.364505 -0.445026 0.613072 -0.367052 -0.699582 0.149682 -0.815512 0.559049 -0.775718 -0.447452 -0.445026 0.648165 -0.300776 -0.699582 0.234329 -0.795332 0.559049 -0.724549 -0.526289 -0.445026 0.676119 -0.231188 -0.699582 0.316395 -0.766393 0.559049 -0.665400 -0.599328 -0.445026 0.696626 -0.159052 -0.699582 0.394976 -0.729012 0.559049 -0.598922 -0.665766 -0.445026 0.709373 -0.085874 -0.699582 0.468522 -0.684069 0.559049 -0.526570 -0.724345 -0.445026 0.714467 -0.011054 -0.699582 0.537637 -0.631197 0.559049 -0.447754 -0.775544 -0.445026 0.711690 0.063888 -0.699582 0.600830 -0.571373 0.559049 -0.364005 -0.818200 -0.445026 0.701213 0.137425 -0.699582 0.656900 -0.505912 0.559049 -0.277099 -0.851568 -0.445026 0.682948 0.210161 -0.699582 0.706305 -0.434278 0.559049 -0.186323 -0.875920 -0.445026 0.657160 0.280581 -0.699582 0.747930 -0.357860 0.559049 -0.093494 -0.890624 -0.445026 0.624417 0.347402 -0.699582 0.781091 -0.278137 0.559049 -0.000365 -0.895517 -0.445026 0.584568 0.410932 -0.699582 0.805940 -0.194741 0.559049 0.093494 -0.890624 -0.445026 0.538280 0.469936 -0.699582 0.821912 -0.109201 0.559049 0.186323 -0.875920 -0.445026 0.486062 0.523763 -0.699582 0.828830 -0.022457 0.559049 0.277099 -0.851568 -0.445026 0.429063 0.571393 -0.699582 0.826683 0.063707 0.559049 0.364005 -0.818200 -0.445026 0.366814 0.613215 -0.699582 0.815453 0.149999 0.559049 0.447754 -0.775544 -0.445026 0.300524 0.648282 -0.699582 0.795241 0.234638 0.559049 0.526570 -0.724345 -0.445026 0.231601 0.675978 -0.699582 0.766586 0.315926 0.559049 0.598922 -0.665766 -0.445026 0.159478 0.696528 -0.699582 0.729253 0.394530 0.559049 0.665400 -0.599328 -0.445026 0.085598 0.709407 -0.699582 0.683887 0.468788 0.559049 0.724549 -0.526289 -0.445026 0.010776 0.714471 -0.699582 0.630988 0.537883 0.559049 0.775718 -0.447452 -0.445026 -0.063453 0.711729 -0.699582 0.571740 0.600481 0.559049 0.817978 -0.364505 -0.445026 -0.137698 0.701159 -0.699582 0.505656 0.657096 0.559049 0.851675 -0.276768 -0.445026 -0.210426 0.682866 -0.699582 0.434003 0.706474 0.559049 0.875992 -0.185982 -0.445026 -0.280179 0.657331 -0.699582 0.358317 0.747712 0.559049 0.890566 -0.094038 -0.445026 -0.347529 0.624346 -0.699582 0.277978 0.781148 0.559049 0.895517 -0.000182 -0.445026 -0.411051 0.584484 -0.699582 0.194577 0.805980 0.559049 0.890605 0.093675 -0.445026 -0.470046 0.538184 -0.699582 0.109033 0.821934 0.559049 0.875882 0.186501 -0.445026 -0.523376 0.486479 -0.699582 0.023117 0.828812 0.559049 0.851788 0.276421 -0.445026 -0.571480 0.428946 -0.699582 -0.063876 0.826670 0.559049 0.818126 0.364172 -0.445026 -0.613290 0.366689 -0.699582 -0.150165 0.815423 0.559049 0.775452 0.447912 -0.445026 -0.648344 0.300392 -0.699582 -0.234800 0.795193 0.559049 0.724237 0.526718 -0.445026 -0.676025 0.231463 -0.699582 -0.316083 0.766522 0.559049 0.665644 0.599057 -0.445026 -0.696561 0.159336 -0.699582 -0.394679 0.729172 0.559049 0.599193 0.665522 -0.445026 -0.709424 0.085454 -0.699582 -0.468928 0.683791 0.559049 0.526141 0.724656 -0.445026 -0.714462 0.011345 -0.699582 -0.537380 0.631416 0.559049 0.448070 0.775361 -0.445026 -0.711716 -0.063598 -0.699582 -0.600597 0.571617 0.559049 0.364339 0.818052 -0.445026 -0.701131 -0.137841 -0.699582 -0.657199 0.505522 0.559049 0.276594 0.851732 -0.445026 -0.682823 -0.210565 -0.699582 -0.706562 0.433859 0.559049 0.185804 0.876030 -0.445026 -0.657274 -0.280313 -0.699582 -0.747785 0.358165 0.559049 0.093857 0.890585 -0.445026 -0.624275 -0.347657 -0.699582 -0.781204 0.277819 0.559049 0.000000 0.895517 -0.445026 -0.584400 -0.411170 -0.699582 -0.806019 0.194413 0.559049 -0.093857 0.890585 -0.445026 -0.538558 -0.469617 -0.699582 -0.821847 0.109688 0.559049 -0.185804 0.876030 -0.445026 -0.486373 -0.523475 -0.699582 -0.828817 0.022948 0.559049 -0.276594 0.851732 -0.445026 -0.428830 -0.571568 -0.699582 -0.826657 -0.064044 0.559049 -0.364339 0.818052 -0.445026 -0.366564 -0.613364 -0.699582 -0.815392 -0.150331 0.559049 -0.448070 0.775361 -0.445026 -0.300908 -0.648104 -0.699582 -0.795380 -0.234167 0.559049 -0.526141 0.724656 -0.445026 -0.231325 -0.676072 -0.699582 -0.766457 -0.316239 0.559049 -0.599193 0.665522 -0.445026 -0.159194 -0.696593 -0.699582 -0.729092 -0.394827 0.559049 -0.665644 0.599057 -0.445026 -0.086019 -0.709356 -0.699582 -0.684165 -0.468383 0.559049 -0.724237 0.526718 -0.445026 -0.011199 -0.714464 -0.699582 -0.631307 -0.537509 0.559049 -0.775452 0.447912 -0.445026 0.063743 -0.711703 -0.699582 -0.571495 -0.600714 0.559049 -0.818126 0.364172 -0.445026 0.137984 -0.701103 -0.699582 -0.505388 -0.657302 0.559049 -0.851788 0.276421 -0.445026 0.210022 -0.682990 -0.699582 -0.434422 -0.706216 0.559049 -0.875882 0.186501 -0.445026 0.280447 -0.657217 -0.699582 -0.358012 -0.747857 0.559049 -0.890605 0.093675 -0.445026 -0.619115 0.503505 -0.602644 -0.360684 -0.863992 -0.351318 -0.697570 -0.000142 0.716517 -0.668476 0.435844 -0.602644 -0.268145 -0.897036 -0.351318 -0.693713 -0.073252 0.716517 -0.710111 0.364093 -0.602644 -0.173572 -0.920026 -0.351318 -0.682360 -0.144872 0.716517 -0.744359 0.287663 -0.602644 -0.076191 -0.933151 -0.351318 -0.663419 -0.215590 0.716517 -0.770409 0.208064 -0.602644 0.022029 -0.935997 -0.351318 -0.637169 -0.283934 0.716517 -0.787846 0.126962 -0.602644 0.119079 -0.928653 -0.351318 -0.604251 -0.348546 0.716517 -0.796813 0.043691 -0.602644 0.215752 -0.911058 -0.351318 -0.564393 -0.409956 0.716517 -0.797004 -0.040061 -0.602644 0.310049 -0.883428 -0.351318 -0.518318 -0.466851 0.716517 -0.788416 -0.123373 -0.602644 0.400931 -0.846067 -0.351318 -0.466534 -0.518603 0.716517 -0.771348 -0.204554 -0.602644 0.486598 -0.799874 -0.351318 -0.410176 -0.564233 0.716517 -0.745662 -0.284270 -0.602644 0.567750 -0.744470 -0.351318 -0.348781 -0.604115 0.716517 -0.711761 -0.360855 -0.602644 0.642649 -0.680865 -0.351318 -0.283545 -0.637343 0.716517 -0.670454 -0.432795 -0.602644 0.709859 -0.610472 -0.351318 -0.215848 -0.663335 0.716517 -0.621402 -0.500680 -0.602644 0.769932 -0.532711 -0.351318 -0.145137 -0.682304 0.716517 -0.565505 -0.563050 -0.602644 0.821523 -0.449083 -0.351318 -0.072828 -0.693758 0.716517 -0.503883 -0.618807 -0.602644 0.863772 -0.361212 -0.351318 -0.000284 -0.697570 0.716517 -0.436252 -0.668210 -0.602644 0.896872 -0.268693 -0.351318 0.072828 -0.693758 0.716517 -0.363816 -0.710252 -0.602644 0.920094 -0.173215 -0.351318 0.145137 -0.682304 0.716517 -0.287373 -0.744471 -0.602644 0.933181 -0.075828 -0.351318 0.215848 -0.663335 0.716517 -0.208535 -0.770282 -0.602644 0.936010 0.021457 -0.351318 0.283545 -0.637343 0.716517 -0.126656 -0.787895 -0.602644 0.928607 0.119440 -0.351318 0.348781 -0.604115 0.716517 -0.043381 -0.796830 -0.602644 0.910974 0.216107 -0.351318 0.410176 -0.564233 0.716517 0.039575 -0.797028 -0.602644 0.883617 0.309510 -0.351318 0.466534 -0.518603 0.716517 0.122891 -0.788491 -0.602644 0.846312 0.400415 -0.351318 0.518318 -0.466851 0.716517 0.204854 -0.771269 -0.602644 0.799685 0.486909 -0.351318 0.564393 -0.409956 0.716517 0.284560 -0.745551 -0.602644 0.744249 0.568040 -0.351318 0.604251 -0.348546 0.716517 0.360420 -0.711982 -0.602644 0.681258 0.642233 -0.351318 0.637169 -0.283934 0.716517 0.433056 -0.670286 -0.602644 0.610195 0.710097 -0.351318 0.663419 -0.215590 0.716517 0.500921 -0.621207 -0.602644 0.532412 0.770139 -0.351318 0.682360 -0.144872 0.716517 0.562704 -0.565849 -0.602644 0.449585 0.821249 -0.351318 0.693713 -0.073252 0.716517 0.618910 -0.503757 -0.602644 0.361036 0.863845 -0.351318 0.697570 -0.000142 0.716517 0.668299 -0.436116 -0.602644 0.268510 0.896927 -0.351318 0.693743 0.072969 0.716517 0.710326 -0.363672 -0.602644 0.173027 0.920129 -0.351318 0.682274 0.145276 0.716517 0.744242 -0.287966 -0.602644 0.076571 0.933120 -0.351318 0.663506 0.215320 0.716517 0.770324 -0.208378 -0.602644 -0.021648 0.936006 -0.351318 0.637285 0.283674 0.716517 0.787921 -0.126495 -0.602644 -0.119629 0.928582 -0.351318 0.604044 0.348904 0.716517 0.796839 -0.043219 -0.602644 -0.216292 0.910930 -0.351318 0.564150 0.410291 0.716517 0.797020 0.039737 -0.602644 -0.309690 0.883554 -0.351318 0.518508 0.466640 0.716517 0.788466 0.123051 -0.602644 -0.400587 0.846231 -0.351318 0.466745 0.518413 0.716517 0.771227 0.205011 -0.602644 -0.487072 0.799586 -0.351318 0.409841 0.564476 0.716517 0.745777 0.283966 -0.602644 -0.567447 0.744701 -0.351318 0.349027 0.603973 0.716517 0.711908 0.360565 -0.602644 -0.642372 0.681127 -0.351318 0.283804 0.637227 0.716517 0.670198 0.433192 -0.602644 -0.710221 0.610051 -0.351318 0.215455 0.663463 0.716517 0.621105 0.501048 -0.602644 -0.770247 0.532255 -0.351318 0.144733 0.682390 0.716517 0.565734 0.562819 -0.602644 -0.821340 0.449417 -0.351318 0.073110 0.693728 0.716517 0.503631 0.619013 -0.602644 -0.863919 0.360860 -0.351318 0.000000 0.697570 0.716517 0.435980 0.668388 -0.602644 -0.896982 0.268328 -0.351318 -0.073110 0.693728 0.716517 0.364237 0.710036 -0.602644 -0.919991 0.173760 -0.351318 -0.144733 0.682390 0.716517 0.287814 0.744301 -0.602644 -0.933136 0.076381 -0.351318 -0.215455 0.663463 0.716517 0.208221 0.770366 -0.602644 -0.936002 -0.021839 -0.351318 -0.283804 0.637227 0.716517 0.126335 0.787947 -0.602644 -0.928558 -0.119818 -0.351318 -0.349027 0.603973 0.716517 0.043853 0.796805 -0.602644 -0.911102 -0.215567 -0.351318 -0.409841 0.564476 0.716517 -0.039899 0.797012 -0.602644 -0.883491 -0.309870 -0.351318 -0.466745 0.518413 0.716517 -0.123212 0.788441 -0.602644 -0.846149 -0.400759 -0.351318 -0.518508 0.466640 0.716517 -0.204396 0.771390 -0.602644 -0.799973 -0.486435 -0.351318 -0.564150 0.410291 0.716517 -0.284118 0.745719 -0.602644 -0.744586 -0.567599 -0.351318 -0.604044 0.348904 0.716517 -0.360710 0.711835 -0.602644 -0.680996 -0.642511 -0.351318 -0.637285 0.283674 0.716517 -0.433329 0.670110 -0.602644 -0.609906 -0.710345 -0.351318 -0.663506 0.215320 0.716517 -0.500553 0.621504 -0.602644 -0.532868 -0.769823 -0.351318 -0.682274 0.145276 0.716517 -0.562935 0.565619 -0.602644 -0.449250 -0.821432 -0.351318 -0.693743 0.072969 0.716517 0.180046 -0.929149 -0.322901 -0.452075 -0.369705 0.811755 -0.873620 -0.000178 -0.486609 0.276436 -0.905162 -0.322901 -0.410837 -0.415050 0.811755 -0.868790 -0.091739 -0.486609 0.368910 -0.871573 -0.322901 -0.365530 -0.455457 0.811755 -0.854572 -0.181434 -0.486609 0.458225 -0.828109 -0.322901 -0.315782 -0.491259 0.811755 -0.830850 -0.270000 -0.486609 0.542493 -0.775523 -0.322901 -0.262555 -0.521650 0.811755 -0.797976 -0.355592 -0.486609 0.620071 -0.715015 -0.322901 -0.206982 -0.546088 0.811755 -0.756750 -0.436511 -0.486609 0.691595 -0.646089 -0.322901 -0.148609 -0.564773 0.811755 -0.706832 -0.513420 -0.486609 0.755501 -0.570047 -0.322901 -0.088598 -0.577238 0.811755 -0.649130 -0.584673 -0.486609 0.811085 -0.487725 -0.322901 -0.027611 -0.583345 0.811755 -0.584277 -0.649487 -0.486609 0.857334 -0.400889 -0.322901 0.033096 -0.583059 0.811755 -0.513695 -0.706633 -0.486609 0.894629 -0.308827 -0.322901 0.094023 -0.576379 0.811755 -0.436805 -0.756580 -0.486609 0.922069 -0.213362 -0.322901 0.153914 -0.563351 0.811755 -0.355105 -0.798193 -0.486609 0.939237 -0.116487 -0.322901 0.211565 -0.544329 0.811755 -0.270324 -0.830745 -0.486609 0.946272 -0.017407 -0.322901 0.267449 -0.519157 0.811755 -0.181767 -0.854501 -0.486609 0.942885 0.081865 -0.322901 0.320388 -0.488267 0.811755 -0.091208 -0.868846 -0.486609 0.929259 0.179478 -0.322901 0.369429 -0.452300 0.811755 -0.000356 -0.873620 -0.486609 0.905330 0.275883 -0.322901 0.414799 -0.411091 0.811755 0.091208 -0.868846 -0.486609 0.871430 0.369249 -0.322901 0.455599 -0.365353 0.811755 0.181767 -0.854501 -0.486609 0.827931 0.458547 -0.322901 0.491382 -0.315590 0.811755 0.270324 -0.830745 -0.486609 0.775854 0.542019 -0.322901 0.521489 -0.262874 0.811755 0.355105 -0.798193 -0.486609 0.714774 0.620349 -0.322901 0.546168 -0.206770 0.811755 0.436805 -0.756580 -0.486609 0.645820 0.691846 -0.322901 0.564831 -0.148389 0.811755 0.513695 -0.706633 -0.486609 0.570508 0.755152 -0.322901 0.577184 -0.088951 0.811755 0.584277 -0.649487 -0.486609 0.488221 0.810787 -0.322901 0.583328 -0.027968 0.811755 0.649130 -0.584673 -0.486609 0.400556 0.857490 -0.322901 0.583046 0.033323 0.811755 0.706832 -0.513420 -0.486609 0.308479 0.894749 -0.322901 0.576343 0.094247 0.811755 0.756750 -0.436511 -0.486609 0.213926 0.921938 -0.322901 0.563445 0.153570 0.811755 0.797976 -0.355592 -0.486609 0.116122 0.939282 -0.322901 0.544246 0.211777 0.811755 0.830850 -0.270000 -0.486609 0.017039 0.946279 -0.322901 0.519053 0.267651 0.811755 0.854572 -0.181434 -0.486609 -0.081289 0.942935 -0.322901 0.488463 0.320089 0.811755 0.868790 -0.091739 -0.486609 -0.179668 0.929222 -0.322901 0.452225 0.369521 0.811755 0.873620 -0.000178 -0.486609 -0.276067 0.905274 -0.322901 0.411006 0.414882 0.811755 0.868827 0.091385 -0.486609 -0.369426 0.871355 -0.322901 0.365260 0.455674 0.811755 0.854464 0.181941 -0.486609 -0.457888 0.828296 -0.322901 0.315982 0.491130 0.811755 0.830960 0.269662 -0.486609 -0.542177 0.775744 -0.322901 0.262767 0.521543 0.811755 0.798121 0.355267 -0.486609 -0.620495 0.714647 -0.322901 0.206659 0.546210 0.811755 0.756491 0.436959 -0.486609 -0.691978 0.645679 -0.322901 0.148274 0.564861 0.811755 0.706528 0.513839 -0.486609 -0.755268 0.570355 -0.322901 0.088833 0.577202 0.811755 0.649368 0.584409 -0.486609 -0.810886 0.488056 -0.322901 0.027849 0.583333 0.811755 0.584541 0.649249 -0.486609 -0.857572 0.400381 -0.322901 -0.033442 0.583039 0.811755 0.513276 0.706937 -0.486609 -0.894503 0.309191 -0.322901 -0.093788 0.576418 0.811755 0.437114 0.756402 -0.486609 -0.921982 0.213738 -0.322901 -0.153684 0.563413 0.811755 0.355430 0.798049 -0.486609 -0.939305 0.115930 -0.322901 -0.211888 0.544203 0.811755 0.269831 0.830905 -0.486609 -0.946283 0.016846 -0.322901 -0.267757 0.518999 0.811755 0.181260 0.854609 -0.486609 -0.942919 -0.081481 -0.322901 -0.320189 0.488398 0.811755 0.091562 0.868809 -0.486609 -0.929186 -0.179857 -0.322901 -0.369613 0.452150 0.811755 0.000000 0.873620 -0.486609 -0.905218 -0.276252 -0.322901 -0.414966 0.410922 0.811755 -0.091562 0.868809 -0.486609 -0.871649 -0.368732 -0.322901 -0.455383 0.365623 0.811755 -0.181260 0.854609 -0.486609 -0.828202 -0.458056 -0.322901 -0.491195 0.315882 0.811755 -0.269831 0.830905 -0.486609 -0.775633 -0.542335 -0.322901 -0.521596 0.262661 0.811755 -0.355430 0.798049 -0.486609 -0.714521 -0.620640 -0.322901 -0.546252 0.206548 0.811755 -0.437114 0.756402 -0.486609 -0.646230 -0.691463 -0.322901 -0.564743 0.148724 0.811755 -0.513276 0.706937 -0.486609 -0.570201 -0.755385 -0.322901 -0.577220 0.088715 0.811755 -0.584541 0.649249 -0.486609 -0.487891 -0.810985 -0.322901 -0.583339 0.027730 0.811755 -0.649368 0.584409 -0.486609 -0.401064 -0.857253 -0.322901 -0.583066 -0.032978 0.811755 -0.706528 0.513839 -0.486609 -0.309009 -0.894566 -0.322901 -0.576398 -0.093906 0.811755 -0.756491 0.436959 -0.486609 -0.213550 -0.922026 -0.322901 -0.563382 -0.153799 0.811755 -0.798121 0.355267 -0.486609 -0.115739 -0.939329 -0.322901 -0.544160 -0.211998 0.811755 -0.830960 0.269662 -0.486609 -0.017600 -0.946269 -0.322901 -0.519212 -0.267344 0.811755 -0.854464 0.181941 -0.486609 0.081673 -0.942902 -0.322901 -0.488333 -0.320288 0.811755 -0.868827 0.091385 -0.486609 -0.013606 0.999853 0.010457 0.788283 0.017160 -0.615074 -0.615163 -0.000125 -0.788400 -0.118323 0.992920 0.010457 0.782143 0.099683 -0.615074 -0.611762 -0.064598 -0.788400 -0.220761 0.975272 0.010457 0.767568 0.180341 -0.615074 -0.601750 -0.127758 -0.788400 -0.321761 0.946763 0.010457 0.744440 0.259794 -0.615074 -0.585046 -0.190122 -0.788400 -0.419216 0.907826 0.010457 0.713112 0.336386 -0.615074 -0.561898 -0.250392 -0.788400 -0.511195 0.859401 0.010457 0.674338 0.408598 -0.615074 -0.532868 -0.307371 -0.788400 -0.598451 0.801091 0.010457 0.627800 0.477023 -0.615074 -0.497719 -0.361526 -0.788400 -0.679115 0.733957 0.010457 0.574347 0.540194 -0.615074 -0.457087 -0.411700 -0.788400 -0.752299 0.658739 0.010457 0.514567 0.597415 -0.615074 -0.411421 -0.457338 -0.788400 -0.816620 0.577082 0.010457 0.449768 0.647605 -0.615074 -0.361720 -0.497578 -0.788400 -0.872604 0.488316 0.010457 0.379417 0.691178 -0.615074 -0.307578 -0.532749 -0.788400 -0.918978 0.394171 0.010457 0.304887 0.727137 -0.615074 -0.250048 -0.562051 -0.788400 -0.954932 0.296640 0.010457 0.227754 0.754859 -0.615074 -0.190349 -0.584972 -0.788400 -0.980763 0.194923 0.010457 0.147385 0.774572 -0.615074 -0.127992 -0.601700 -0.788400 -0.995791 0.091058 0.010457 0.065392 0.785753 -0.615074 -0.064224 -0.611801 -0.788400 -0.999861 -0.012995 0.010457 -0.016678 0.788293 -0.615074 -0.000251 -0.615163 -0.788400 -0.992992 -0.117716 0.010457 -0.099205 0.782203 -0.615074 0.064224 -0.611801 -0.788400 -0.975186 -0.221140 0.010457 -0.180639 0.767498 -0.615074 0.127992 -0.601700 -0.788400 -0.946638 -0.322129 0.010457 -0.260084 0.744339 -0.615074 0.190349 -0.584972 -0.788400 -0.908082 -0.418661 0.010457 -0.335950 0.713317 -0.615074 0.250048 -0.562051 -0.788400 -0.859202 -0.511529 0.010457 -0.408861 0.674179 -0.615074 0.307578 -0.532749 -0.788400 -0.800858 -0.598762 0.010457 -0.477268 0.627614 -0.615074 0.361720 -0.497578 -0.788400 -0.734372 -0.678667 0.010457 -0.539843 0.574677 -0.615074 0.411421 -0.457338 -0.788400 -0.659198 -0.751896 0.010457 -0.597100 0.514932 -0.615074 0.457087 -0.411700 -0.788400 -0.576764 -0.816844 0.010457 -0.647780 0.449516 -0.615074 0.497719 -0.361526 -0.788400 -0.487976 -0.872794 0.010457 -0.691325 0.379148 -0.615074 0.532868 -0.307371 -0.788400 -0.394733 -0.918737 0.010457 -0.726950 0.305331 -0.615074 0.561898 -0.250392 -0.788400 -0.296269 -0.955047 0.010457 -0.754948 0.227460 -0.615074 0.585046 -0.190122 -0.788400 -0.194541 -0.980839 0.010457 -0.774629 0.147083 -0.615074 0.601750 -0.127758 -0.788400 -0.091666 -0.995735 0.010457 -0.785713 0.065873 -0.615074 0.611762 -0.064598 -0.788400 0.013199 -0.999858 0.010457 -0.788290 -0.016839 -0.615074 0.615163 -0.000125 -0.788400 0.117918 -0.992968 0.010457 -0.782183 -0.099364 -0.615074 0.611788 0.064349 -0.788400 0.221339 -0.975141 0.010457 -0.767461 -0.180796 -0.615074 0.601674 0.128114 -0.788400 0.321375 -0.946894 0.010457 -0.744546 -0.259491 -0.615074 0.585124 0.189883 -0.788400 0.418846 -0.907997 0.010457 -0.713249 -0.336095 -0.615074 0.562000 0.250163 -0.788400 0.511704 -0.859098 0.010457 -0.674095 -0.408998 -0.615074 0.532686 0.307687 -0.788400 0.598926 -0.800736 0.010457 -0.627517 -0.477395 -0.615074 0.497504 0.361821 -0.788400 0.678816 -0.734234 0.010457 -0.574567 -0.539960 -0.615074 0.457255 0.411514 -0.788400 0.752030 -0.659045 0.010457 -0.514811 -0.597205 -0.615074 0.411607 0.457171 -0.788400 0.816961 -0.576598 0.010457 -0.449384 -0.647872 -0.615074 0.361425 0.497792 -0.788400 0.872405 -0.488671 0.010457 -0.379699 -0.691023 -0.615074 0.307795 0.532623 -0.788400 0.918817 -0.394546 0.010457 -0.305183 -0.727012 -0.615074 0.250277 0.561949 -0.788400 0.955108 -0.296074 0.010457 -0.227306 -0.754994 -0.615074 0.190003 0.585085 -0.788400 0.980878 -0.194341 0.010457 -0.146926 -0.774659 -0.615074 0.127635 0.601776 -0.788400 0.995754 -0.091464 0.010457 -0.065712 -0.785726 -0.615074 0.064473 0.611775 -0.788400 0.999856 0.013402 0.010457 0.016999 -0.788286 -0.615074 0.000000 0.615163 -0.788400 0.992944 0.118120 0.010457 0.099524 -0.782163 -0.615074 -0.064473 0.611775 -0.788400 0.975317 0.220562 0.010457 0.180184 -0.767605 -0.615074 -0.127635 0.601776 -0.788400 0.946829 0.321568 0.010457 0.259642 -0.744493 -0.615074 -0.190003 0.585085 -0.788400 0.907912 0.419031 0.010457 0.336241 -0.713180 -0.615074 -0.250277 0.561949 -0.788400 0.858994 0.511879 0.010457 0.409135 -0.674012 -0.615074 -0.307795 0.532623 -0.788400 0.801213 0.598288 0.010457 0.476896 -0.627897 -0.615074 -0.361425 0.497792 -0.788400 0.734096 0.678966 0.010457 0.540077 -0.574457 -0.615074 -0.411607 0.457171 -0.788400 0.658892 0.752165 0.010457 0.597310 -0.514689 -0.615074 -0.457255 0.411514 -0.788400 0.577248 0.816502 0.010457 0.647514 -0.449900 -0.615074 -0.497504 0.361821 -0.788400 0.488493 0.872505 0.010457 0.691100 -0.379558 -0.615074 -0.532686 0.307687 -0.788400 0.394358 0.918897 0.010457 0.727075 -0.305035 -0.615074 -0.562000 0.250163 -0.788400 0.295880 0.955168 0.010457 0.755040 -0.227153 -0.615074 -0.585124 0.189883 -0.788400 0.195122 0.980723 0.010457 0.774542 -0.147543 -0.615074 -0.601674 0.128114 -0.788400 0.091261 0.995772 0.010457 0.785740 -0.065552 -0.615074 -0.611788 0.064349 -0.788400 0.046070 0.998709 0.021390 -0.906541 0.050793 -0.419050 -0.419596 -0.000085 0.907711 -0.058856 0.998037 0.021390 -0.906872 -0.044498 -0.419050 -0.417276 -0.044062 0.907711 -0.162147 0.986535 0.021390 -0.897353 -0.138403 -0.419050 -0.410447 -0.087142 0.907711 -0.264650 0.964107 0.021390 -0.877905 -0.231690 -0.419050 -0.399054 -0.129680 0.907711 -0.364237 0.931060 0.021390 -0.848787 -0.322424 -0.419050 -0.383264 -0.170789 0.907711 -0.458925 0.888217 0.021390 -0.810729 -0.408797 -0.419050 -0.363463 -0.209654 0.907711 -0.549489 0.835227 0.021390 -0.763419 -0.491516 -0.419050 -0.339489 -0.246593 0.907711 -0.634001 0.773037 0.021390 -0.707701 -0.568821 -0.419050 -0.311774 -0.280816 0.907711 -0.711529 0.702331 0.021390 -0.644186 -0.639860 -0.419050 -0.280625 -0.311946 0.907711 -0.780595 0.624671 0.021390 -0.574280 -0.703277 -0.419050 -0.246725 -0.339393 0.907711 -0.841766 0.539418 0.021390 -0.497409 -0.759593 -0.419050 -0.209796 -0.363382 0.907711 -0.893665 0.448225 0.021390 -0.415059 -0.807541 -0.419050 -0.170555 -0.383369 0.907711 -0.935368 0.353029 0.021390 -0.328983 -0.846267 -0.419050 -0.129835 -0.399003 0.907711 -0.967216 0.253052 0.021390 -0.238476 -0.876086 -0.419050 -0.087302 -0.410413 0.907711 -0.988411 0.150287 0.021390 -0.145343 -0.896255 -0.419050 -0.043807 -0.417303 0.907711 -0.998681 0.046680 0.021390 -0.051347 -0.906510 -0.419050 -0.000171 -0.419596 0.907711 -0.998073 -0.058246 0.021390 0.043944 -0.906899 -0.419050 0.043807 -0.417303 0.907711 -0.986472 -0.162530 0.021390 0.138752 -0.897299 -0.419050 0.087302 -0.410413 0.907711 -0.964004 -0.265025 0.021390 0.232031 -0.877815 -0.419050 0.129835 -0.399003 0.907711 -0.931283 -0.363668 0.021390 0.321906 -0.848984 -0.419050 0.170555 -0.383369 0.907711 -0.888039 -0.459271 0.021390 0.409112 -0.810570 -0.419050 0.209796 -0.363382 0.907711 -0.835013 -0.549814 0.021390 0.491813 -0.763228 -0.419050 0.246725 -0.339393 0.907711 -0.773424 -0.633528 0.021390 0.568388 -0.708048 -0.419050 0.280625 -0.311946 0.907711 -0.702766 -0.711100 0.021390 0.639466 -0.644577 -0.419050 0.311774 -0.280816 0.907711 -0.624367 -0.780838 0.021390 0.703501 -0.574007 -0.419050 0.339489 -0.246593 0.907711 -0.539091 -0.841976 0.021390 0.759786 -0.497113 -0.419050 0.363463 -0.209654 0.907711 -0.448771 -0.893391 0.021390 0.807288 -0.415552 -0.419050 0.383264 -0.170789 0.907711 -0.352665 -0.935505 0.021390 0.846394 -0.328654 -0.419050 0.399054 -0.129680 0.907711 -0.252675 -0.967315 0.021390 0.876178 -0.238136 -0.419050 0.410447 -0.087142 0.907711 -0.150891 -0.988319 0.021390 0.896166 -0.145891 -0.419050 0.417276 -0.044062 0.907711 -0.046477 -0.998690 0.021390 0.906520 -0.051163 -0.419050 0.419596 -0.000085 0.907711 0.058449 -0.998061 0.021390 0.906890 0.044129 -0.419050 0.417294 0.043892 0.907711 0.162731 -0.986439 0.021390 0.897270 0.138935 -0.419050 0.410395 0.087385 0.907711 0.264257 -0.964215 0.021390 0.877999 0.231332 -0.419050 0.399106 0.129517 0.907711 0.363858 -0.931209 0.021390 0.848918 0.322079 -0.419050 0.383334 0.170633 0.907711 0.459451 -0.887945 0.021390 0.810487 0.409277 -0.419050 0.363339 0.209870 0.907711 0.549984 -0.834901 0.021390 0.763128 0.491968 -0.419050 0.339342 0.246794 0.907711 0.633686 -0.773295 0.021390 0.707932 0.568532 -0.419050 0.311888 0.280689 0.907711 0.711243 -0.702621 0.021390 0.644447 0.639598 -0.419050 0.280752 0.311831 0.907711 0.780965 -0.624208 0.021390 0.573863 0.703618 -0.419050 0.246524 0.339539 0.907711 0.841546 -0.539761 0.021390 0.497718 0.759390 -0.419050 0.209944 0.363296 0.907711 0.893482 -0.448589 0.021390 0.415388 0.807372 -0.419050 0.170711 0.383299 0.907711 0.935577 -0.352475 0.021390 0.328481 0.846461 -0.419050 0.129599 0.399080 0.907711 0.967366 -0.252478 0.021390 0.237957 0.876227 -0.419050 0.087058 0.410465 0.907711 0.988350 -0.150689 0.021390 0.145708 0.896195 -0.419050 0.043977 0.417285 0.907711 0.998700 -0.046273 0.021390 0.050978 0.906531 -0.419050 0.000000 0.419596 0.907711 0.998049 0.058653 0.021390 -0.044314 0.906881 -0.419050 -0.043977 0.417285 0.907711 0.986568 0.161946 0.021390 -0.138220 0.897381 -0.419050 -0.087058 0.410465 0.907711 0.964161 0.264453 0.021390 -0.231511 0.877952 -0.419050 -0.129599 0.399080 0.907711 0.931135 0.364048 0.021390 -0.322251 0.848853 -0.419050 -0.170711 0.383299 0.907711 0.887852 0.459632 0.021390 -0.409442 0.810403 -0.419050 -0.209944 0.363296 0.907711 0.835339 0.549319 0.021390 -0.491360 0.763519 -0.419050 -0.246524 0.339539 0.907711 0.773166 0.633843 0.021390 -0.568676 0.707816 -0.419050 -0.280752 0.311831 0.907711 0.702476 0.711386 0.021390 -0.639729 0.644317 -0.419050 -0.311888 0.280689 0.907711 0.624830 0.780468 0.021390 -0.703160 0.574423 -0.419050 -0.339342 0.246794 0.907711 0.539590 0.841656 0.021390 -0.759492 0.497564 -0.419050 -0.363339 0.209870 0.907711 0.448407 0.893574 0.021390 -0.807457 0.415223 -0.419050 -0.383334 0.170633 0.907711 0.352284 0.935649 0.021390 -0.846528 0.328309 -0.419050 -0.399106 0.129517 0.907711 0.253249 0.967165 0.021390 -0.876037 0.238655 -0.419050 -0.410395 0.087385 0.907711 0.150488 0.988380 0.021390 -0.896225 0.145526 -0.419050 -0.417294 0.043892 0.907711 -0.605994 -0.437971 -0.664043 0.295353 -0.898989 0.323397 -0.738606 -0.000150 0.674138 -0.556753 -0.499072 -0.664043 0.387947 -0.863083 0.323397 -0.734522 -0.077561 0.674138 -0.501935 -0.554173 -0.664043 0.475449 -0.818146 0.323397 -0.722502 -0.153394 0.674138 -0.441090 -0.603728 -0.664043 0.558578 -0.763809 0.323397 -0.702446 -0.228273 0.674138 -0.375385 -0.646632 -0.664043 0.635555 -0.701060 0.323397 -0.674652 -0.300637 0.674138 -0.306228 -0.682108 -0.664043 0.704900 -0.631293 0.323397 -0.639797 -0.369050 0.674138 -0.233052 -0.710446 -0.664043 0.767181 -0.553938 0.323397 -0.597595 -0.434073 0.674138 -0.157309 -0.730959 -0.664043 0.821013 -0.470481 0.323397 -0.548809 -0.494314 0.674138 -0.079833 -0.743420 -0.664043 0.865801 -0.381842 0.323397 -0.493979 -0.549111 0.674138 -0.002225 -0.747691 -0.664043 0.900763 -0.289897 0.323397 -0.434305 -0.597426 0.674138 0.076151 -0.743807 -0.664043 0.926185 -0.193894 0.323397 -0.369299 -0.639654 0.674138 0.153688 -0.731729 -0.664043 0.941406 -0.095756 0.323397 -0.300225 -0.674836 0.674138 0.228820 -0.711821 -0.664043 0.946260 0.002491 0.323397 -0.228546 -0.702357 0.674138 0.302163 -0.683918 -0.664043 0.940787 0.101653 0.323397 -0.153675 -0.722442 0.674138 0.372179 -0.648483 -0.664043 0.924952 0.199694 0.323397 -0.077112 -0.734569 0.674138 0.437601 -0.606261 -0.664043 0.899169 0.294804 0.323397 -0.000301 -0.738606 0.674138 0.498732 -0.557058 -0.664043 0.863320 0.387419 0.323397 0.077112 -0.734569 0.674138 0.554368 -0.501720 -0.664043 0.817961 0.475768 0.323397 0.153675 -0.722442 0.674138 0.603899 -0.440855 -0.664043 0.763592 0.558876 0.323397 0.228546 -0.702357 0.674138 0.646402 -0.375780 -0.664043 0.701448 0.635126 0.323397 0.300225 -0.674836 0.674138 0.682227 -0.305963 -0.664043 0.631019 0.705145 0.323397 0.369299 -0.639654 0.674138 0.710537 -0.232776 -0.664043 0.553639 0.767397 0.323397 0.434305 -0.597426 0.674138 0.730863 -0.157755 -0.664043 0.470982 0.820725 0.323397 0.493979 -0.549111 0.674138 0.743371 -0.080287 -0.664043 0.382370 0.865568 0.323397 0.548809 -0.494314 0.674138 0.747692 -0.001934 -0.664043 0.289547 0.900876 0.323397 0.597595 -0.434073 0.674138 0.743777 0.076440 -0.664043 0.193534 0.926261 0.323397 0.639797 -0.369050 0.674138 0.731823 0.153240 -0.664043 0.096331 0.941347 0.323397 0.674652 -0.300637 0.674138 0.711731 0.229097 -0.664043 -0.002860 0.946259 0.323397 0.702446 -0.228273 0.674138 0.683801 0.302430 -0.664043 -0.102019 0.940748 0.323397 0.722502 -0.153394 0.674138 0.648710 0.371783 -0.664043 -0.199129 0.925074 0.323397 0.734522 -0.077561 0.674138 0.606172 0.437725 -0.664043 -0.294987 0.899109 0.323397 0.738606 -0.000150 0.674138 0.556957 0.498845 -0.664043 -0.387595 0.863241 0.323397 0.734554 0.077262 0.674138 0.501607 0.554471 -0.664043 -0.475934 0.817864 0.323397 0.722411 0.153823 0.674138 0.441335 0.603548 -0.664043 -0.558267 0.764037 0.323397 0.702539 0.227987 0.674138 0.375649 0.646479 -0.664043 -0.635269 0.701318 0.323397 0.674775 0.300362 0.674138 0.305824 0.682289 -0.664043 -0.705274 0.630875 0.323397 0.639578 0.369429 0.674138 0.232631 0.710584 -0.664043 -0.767510 0.553483 0.323397 0.597337 0.434427 0.674138 0.157607 0.730895 -0.664043 -0.820821 0.470815 0.323397 0.549011 0.494091 0.674138 0.080136 0.743388 -0.664043 -0.865645 0.382194 0.323397 0.494203 0.548910 0.674138 0.001782 0.747692 -0.664043 -0.900935 0.289363 0.323397 0.433951 0.597683 0.674138 -0.075848 0.743837 -0.664043 -0.926106 0.194272 0.323397 0.369560 0.639503 0.674138 -0.153389 0.731791 -0.664043 -0.941367 0.096139 0.323397 0.300500 0.674714 0.674138 -0.229242 0.711685 -0.664043 -0.946258 -0.003052 0.323397 0.228130 0.702492 0.674138 -0.302569 0.683739 -0.664043 -0.940727 -0.102210 0.323397 0.153247 0.722533 0.674138 -0.371915 0.648634 -0.664043 -0.925033 -0.199317 0.323397 0.077411 0.734538 0.674138 -0.437848 0.606083 -0.664043 -0.899049 -0.295170 0.323397 0.000000 0.738606 0.674138 -0.498958 0.556855 -0.664043 -0.863162 -0.387771 0.323397 -0.077411 0.734538 0.674138 -0.554071 0.502048 -0.664043 -0.818242 -0.475283 0.323397 -0.153247 0.722533 0.674138 -0.603638 0.441213 -0.664043 -0.763923 -0.558423 0.323397 -0.228130 0.702492 0.674138 -0.646555 0.375517 -0.664043 -0.701189 -0.635412 0.323397 -0.300500 0.674714 0.674138 -0.682352 0.305685 -0.664043 -0.630731 -0.705402 0.323397 -0.369560 0.639503 0.674138 -0.710399 0.233197 -0.664043 -0.554094 -0.767069 0.323397 -0.433951 0.597683 0.674138 -0.730927 0.157458 -0.664043 -0.470648 -0.820917 0.323397 -0.494203 0.548910 0.674138 -0.743404 0.079984 -0.664043 -0.382018 -0.865723 0.323397 -0.549011 0.494091 0.674138 -0.747691 0.002377 -0.664043 -0.290081 -0.900704 0.323397 -0.597337 0.434427 0.674138 -0.743822 -0.075999 -0.664043 -0.194083 -0.926146 0.323397 -0.639578 0.369429 0.674138 -0.731760 -0.153538 -0.664043 -0.095947 -0.941386 0.323397 -0.674775 0.300362 0.674138 -0.711638 -0.229387 -0.664043 0.003245 -0.946258 0.323397 -0.702539 0.227987 0.674138 -0.683980 -0.302024 -0.664043 0.101461 -0.940808 0.323397 -0.722411 0.153823 0.674138 -0.648559 -0.372047 -0.664043 0.199506 -0.924993 0.323397 -0.734554 0.077262 0.674138 -0.226873 -0.973577 -0.025999 0.967259 -0.228358 0.110742 -0.113753 -0.000023 0.993509 -0.123585 -0.991993 -0.025999 0.985865 -0.125724 0.110742 -0.113124 -0.011945 0.993509 -0.019936 -0.999463 -0.025999 0.993590 -0.022700 0.110742 -0.111273 -0.023624 0.993509 0.084925 -0.996048 -0.025999 0.990497 0.081561 0.110742 -0.108184 -0.035156 0.993509 0.188850 -0.981662 -0.025999 0.976494 0.184923 0.110742 -0.103904 -0.046301 0.993509 0.289738 -0.956753 -0.025999 0.952020 0.285296 0.110742 -0.098536 -0.056838 0.993509 0.388417 -0.921117 -0.025999 0.916876 0.383503 0.110742 -0.092036 -0.066852 0.993509 0.482818 -0.875335 -0.025999 0.871632 0.477486 0.110742 -0.084523 -0.076130 0.993509 0.571900 -0.819911 -0.025999 0.816788 0.566210 0.110742 -0.076078 -0.084569 0.993509 0.653927 -0.756111 -0.025999 0.753595 0.647943 0.110742 -0.066888 -0.092010 0.993509 0.729571 -0.683410 -0.025999 0.681536 0.723357 0.110742 -0.056876 -0.098514 0.993509 0.797180 -0.603182 -0.025999 0.601969 0.790803 0.110742 -0.046238 -0.103932 0.993509 0.855490 -0.517166 -0.025999 0.516621 0.849022 0.110742 -0.035199 -0.108171 0.993509 0.904981 -0.424656 -0.025999 0.424792 0.898492 0.110742 -0.023668 -0.111264 0.993509 0.944504 -0.327469 -0.025999 0.328284 0.938065 0.110742 -0.011876 -0.113132 0.993509 0.973439 -0.227467 -0.025999 0.228948 0.967119 0.110742 -0.000046 -0.113753 0.993509 0.991918 -0.124191 -0.025999 0.126327 0.985788 0.110742 0.011876 -0.113132 0.993509 0.999471 -0.019547 -0.025999 0.022313 0.993599 0.110742 0.023668 -0.111264 0.993509 0.996015 0.085312 -0.025999 -0.081946 0.990465 0.110742 0.035199 -0.108171 0.993509 0.981777 0.188250 -0.025999 -0.184326 0.976606 0.110742 0.046238 -0.103932 0.993509 0.956640 0.290110 -0.025999 -0.285666 0.951909 0.110742 0.056876 -0.098514 0.993509 0.920966 0.388775 -0.025999 -0.383860 0.916727 0.110742 0.066888 -0.092010 0.993509 0.875630 0.482283 -0.025999 -0.476954 0.871924 0.110742 0.076078 -0.084569 0.993509 0.820261 0.571399 -0.025999 -0.565711 0.817134 0.110742 0.084523 -0.076130 0.993509 0.755856 0.654221 -0.025999 -0.648237 0.753343 0.110742 0.092036 -0.066852 0.993509 0.683127 0.729837 -0.025999 -0.723622 0.681254 0.110742 0.098536 -0.056838 0.993509 0.603669 0.796811 -0.025999 -0.790435 0.602452 0.110742 0.103904 -0.046301 0.993509 0.516833 0.855691 -0.025999 -0.849223 0.516291 0.110742 0.108184 -0.035156 0.993509 0.424304 0.905147 -0.025999 -0.898657 0.424443 0.110742 0.111273 -0.023624 0.993509 0.328046 0.944304 -0.025999 -0.937864 0.328858 0.110742 0.113124 -0.011945 0.993509 0.227269 0.973485 -0.025999 -0.967165 0.228751 0.110742 0.113753 -0.000023 0.993509 0.123989 0.991943 -0.025999 -0.985814 0.126126 0.110742 0.113129 0.011899 0.993509 0.019344 0.999475 -0.025999 -0.993603 0.022111 0.110742 0.111259 0.023690 0.993509 -0.084519 0.996083 -0.025999 -0.990530 -0.081157 0.110742 0.108199 0.035112 0.993509 -0.188450 0.981739 -0.025999 -0.976569 -0.184525 0.110742 0.103923 0.046259 0.993509 -0.290305 0.956581 -0.025999 -0.951851 -0.285860 0.110742 0.098502 0.056896 0.993509 -0.388963 0.920886 -0.025999 -0.916649 -0.384046 0.110742 0.091996 0.066906 0.993509 -0.482461 0.875531 -0.025999 -0.871827 -0.477131 0.110742 0.084554 0.076095 0.993509 -0.571566 0.820144 -0.025999 -0.817019 -0.565877 0.110742 0.076113 0.084538 0.993509 -0.654375 0.755723 -0.025999 -0.753211 -0.648390 0.110742 0.066833 0.092050 0.993509 -0.729293 0.683707 -0.025999 -0.681830 -0.723079 0.110742 0.056916 0.098490 0.993509 -0.796934 0.603507 -0.025999 -0.602291 -0.790558 0.110742 0.046280 0.103913 0.993509 -0.855797 0.516659 -0.025999 -0.516118 -0.849328 0.110742 0.035134 0.108191 0.993509 -0.905233 0.424120 -0.025999 -0.424260 -0.898743 0.110742 0.023602 0.111278 0.993509 -0.944371 0.327853 -0.025999 -0.328667 -0.937931 0.110742 0.011922 0.113127 0.993509 -0.973531 0.227071 -0.025999 -0.228555 -0.967212 0.110742 0.000000 0.113753 0.993509 -0.991968 0.123787 -0.025999 -0.125925 -0.985839 0.110742 -0.011922 0.113127 0.993509 -0.999459 0.020140 -0.025999 -0.022902 -0.993585 0.110742 -0.023602 0.111278 0.993509 -0.996065 -0.084722 -0.025999 0.081359 -0.990513 0.110742 -0.035134 0.108191 0.993509 -0.981700 -0.188650 -0.025999 0.184724 -0.976531 0.110742 -0.046280 0.103913 0.993509 -0.956522 -0.290500 -0.025999 0.286054 -0.951793 0.110742 -0.056916 0.098490 0.993509 -0.921196 -0.388230 -0.025999 0.383316 -0.916954 0.110742 -0.066833 0.092050 0.993509 -0.875433 -0.482639 -0.025999 0.477309 -0.871730 0.110742 -0.076113 0.084538 0.993509 -0.820028 -0.571733 -0.025999 0.566043 -0.816903 0.110742 -0.084554 0.076095 0.993509 -0.756244 -0.653773 -0.025999 0.647790 -0.753727 0.110742 -0.091996 0.066906 0.993509 -0.683559 -0.729432 -0.025999 0.723218 -0.681683 0.110742 -0.098502 0.056896 0.993509 -0.603345 -0.797057 -0.025999 0.790680 -0.602130 0.110742 -0.103923 0.046259 0.993509 -0.516484 -0.855902 -0.025999 0.849433 -0.515945 0.110742 -0.108199 0.035112 0.993509 -0.424840 -0.904895 -0.025999 0.898405 -0.424975 0.110742 -0.111259 0.023690 0.993509 -0.327661 -0.944438 -0.025999 0.937998 -0.328476 0.110742 -0.113129 0.011899 0.993509 0.136468 0.835393 -0.532443 0.207759 -0.549653 -0.809146 -0.968614 -0.000197 -0.248570 0.048161 0.845095 -0.532443 0.264222 -0.524852 -0.809146 -0.963259 -0.101714 -0.248570 -0.039831 0.845528 -0.532443 0.317281 -0.494586 -0.809146 -0.947495 -0.201163 -0.248570 -0.128229 0.836697 -0.532443 0.367369 -0.458609 -0.809146 -0.921193 -0.299359 -0.248570 -0.215214 0.818650 -0.532443 0.413412 -0.417580 -0.809146 -0.884745 -0.394258 -0.248570 -0.299038 0.791884 -0.532443 0.454528 -0.372407 -0.809146 -0.839036 -0.483976 -0.248570 -0.380386 0.756182 -0.532443 0.491056 -0.322718 -0.809146 -0.783691 -0.569247 -0.248570 -0.457544 0.712150 -0.532443 0.522174 -0.269475 -0.809146 -0.719713 -0.648248 -0.248570 -0.529663 0.660274 -0.532443 0.547541 -0.213263 -0.809146 -0.647808 -0.720109 -0.248570 -0.595346 0.601721 -0.532443 0.566722 -0.155269 -0.809146 -0.569552 -0.783469 -0.248570 -0.655132 0.536010 -0.532443 0.579874 -0.095017 -0.809146 -0.484302 -0.838847 -0.248570 -0.707701 0.464396 -0.532443 0.586639 -0.033719 -0.809146 -0.393717 -0.884986 -0.248570 -0.752088 0.388418 -0.532443 0.586970 0.027364 -0.809146 -0.299717 -0.921077 -0.248570 -0.788654 0.307455 -0.532443 0.580869 0.088732 -0.809146 -0.201531 -0.947416 -0.248570 -0.816535 0.223105 -0.532443 0.568371 0.149123 -0.809146 -0.101125 -0.963321 -0.248570 -0.835309 0.136978 -0.532443 0.549780 0.207423 -0.809146 -0.000395 -0.968614 -0.248570 -0.845065 0.048677 -0.532443 0.525013 0.263901 -0.809146 0.101125 -0.963321 -0.248570 -0.845513 -0.040160 -0.532443 0.494463 0.317473 -0.809146 0.201531 -0.947416 -0.248570 -0.836647 -0.128554 -0.532443 0.458466 0.367548 -0.809146 0.299717 -0.921077 -0.248570 -0.818781 -0.214714 -0.532443 0.417833 0.413156 -0.809146 0.393717 -0.884986 -0.248570 -0.791768 -0.299346 -0.532443 0.372230 0.454673 -0.809146 0.484302 -0.838847 -0.248570 -0.756034 -0.380680 -0.532443 0.322527 0.491181 -0.809146 0.569552 -0.783469 -0.248570 -0.712429 -0.457109 -0.532443 0.269793 0.522010 -0.809146 0.647808 -0.720109 -0.248570 -0.660598 -0.529259 -0.532443 0.213597 0.547411 -0.809146 0.719713 -0.648248 -0.248570 -0.601489 -0.595580 -0.532443 0.155048 0.566783 -0.809146 0.783691 -0.569247 -0.248570 -0.535756 -0.655340 -0.532443 0.094792 0.579911 -0.809146 0.839036 -0.483976 -0.248570 -0.464828 -0.707417 -0.532443 0.034077 0.586619 -0.809146 0.884745 -0.394258 -0.248570 -0.388126 -0.752239 -0.532443 -0.027592 0.586959 -0.809146 0.921193 -0.299359 -0.248570 -0.307148 -0.788774 -0.532443 -0.088958 0.580835 -0.809146 0.947495 -0.201163 -0.248570 -0.223604 -0.816398 -0.532443 -0.148775 0.568462 -0.809146 0.963259 -0.101714 -0.248570 -0.136808 -0.835337 -0.532443 -0.207535 0.549738 -0.809146 0.968614 -0.000197 -0.248570 -0.048505 -0.845075 -0.532443 -0.264008 0.524959 -0.809146 0.963300 0.101322 -0.248570 0.040332 -0.845504 -0.532443 -0.317574 0.494398 -0.809146 0.947375 0.201724 -0.248570 0.127888 -0.836749 -0.532443 -0.367183 0.458759 -0.809146 0.921315 0.298984 -0.248570 0.214881 -0.818737 -0.532443 -0.413242 0.417749 -0.809146 0.884905 0.393898 -0.248570 0.299507 -0.791707 -0.532443 -0.454749 0.372137 -0.809146 0.838749 0.484473 -0.248570 0.380834 -0.755956 -0.532443 -0.491247 0.322427 -0.809146 0.783353 0.569711 -0.248570 0.457254 -0.712336 -0.532443 -0.522065 0.269687 -0.809146 0.719977 0.647955 -0.248570 0.529394 -0.660490 -0.532443 -0.547455 0.213486 -0.809146 0.648102 0.719845 -0.248570 0.595702 -0.601368 -0.532443 -0.566814 0.154933 -0.809146 0.569087 0.783806 -0.248570 0.654913 -0.536277 -0.532443 -0.579836 0.095253 -0.809146 0.484643 0.838650 -0.248570 0.707512 -0.464684 -0.532443 -0.586626 0.033958 -0.809146 0.394078 0.884825 -0.248570 0.752318 -0.387973 -0.532443 -0.586954 -0.027712 -0.809146 0.299171 0.921254 -0.248570 0.788837 -0.306988 -0.532443 -0.580817 -0.089076 -0.809146 0.200970 0.947536 -0.248570 0.816444 -0.223438 -0.532443 -0.568431 -0.148891 -0.809146 0.101518 0.963279 -0.248570 0.835365 -0.136638 -0.532443 -0.549696 -0.207647 -0.809146 0.000000 0.968614 -0.248570 0.845085 -0.048333 -0.532443 -0.524906 -0.264115 -0.809146 -0.101518 0.963279 -0.248570 0.845536 0.039658 -0.532443 -0.494651 -0.317180 -0.809146 -0.200970 0.947536 -0.248570 0.836723 0.128058 -0.532443 -0.458684 -0.367276 -0.809146 -0.299171 0.921254 -0.248570 0.818693 0.215048 -0.532443 -0.417665 -0.413327 -0.809146 -0.394078 0.884825 -0.248570 0.791646 0.299668 -0.532443 -0.372045 -0.454825 -0.809146 -0.484643 0.838650 -0.248570 0.756259 0.380232 -0.532443 -0.322818 -0.490990 -0.809146 -0.569087 0.783806 -0.248570 0.712243 0.457399 -0.532443 -0.269581 -0.522120 -0.809146 -0.648102 0.719845 -0.248570 0.660382 0.529528 -0.532443 -0.213374 -0.547498 -0.809146 -0.719977 0.647955 -0.248570 0.601842 0.595223 -0.532443 -0.155384 -0.566691 -0.809146 -0.783353 0.569711 -0.248570 0.536144 0.655022 -0.532443 -0.095135 -0.579855 -0.809146 -0.838749 0.484473 -0.248570 0.464540 0.707607 -0.532443 -0.033838 -0.586632 -0.809146 -0.884905 0.393898 -0.248570 0.387819 0.752397 -0.532443 0.027831 -0.586948 -0.809146 -0.921315 0.298984 -0.248570 0.307616 0.788592 -0.532443 0.088614 -0.580887 -0.809146 -0.947375 0.201724 -0.248570 0.223271 0.816489 -0.532443 0.149007 -0.568401 -0.809146 -0.963300 0.101322 -0.248570 -0.335738 0.317151 -0.886958 -0.112088 -0.948375 -0.296684 -0.935263 -0.000190 0.353955 -0.367129 0.280217 -0.886958 -0.012074 -0.954899 -0.296684 -0.930092 -0.098212 0.353955 -0.394235 0.240590 -0.886958 0.087121 -0.950994 -0.296684 -0.914871 -0.194236 0.353955 -0.417280 0.197946 -0.886958 0.186312 -0.936625 -0.296684 -0.889475 -0.289052 0.353955 -0.435728 0.153122 -0.886958 0.283451 -0.911940 -0.296684 -0.854281 -0.380683 0.353955 -0.449270 0.107061 -0.886958 0.376591 -0.877587 -0.296684 -0.810146 -0.467311 0.353955 -0.458016 0.059385 -0.886958 0.466494 -0.833284 -0.296684 -0.756706 -0.549646 0.353955 -0.461717 0.011054 -0.886958 0.551259 -0.779803 -0.296684 -0.694932 -0.625928 0.353955 -0.460333 -0.037398 -0.886958 0.629952 -0.717732 -0.296684 -0.625503 -0.695314 0.353955 -0.453964 -0.084984 -0.886958 0.701058 -0.648457 -0.296684 -0.549941 -0.756493 0.353955 -0.442556 -0.132095 -0.886958 0.765160 -0.571410 -0.296684 -0.467626 -0.809964 0.353955 -0.426275 -0.177751 -0.886958 0.820834 -0.488069 -0.296684 -0.380161 -0.854514 0.353955 -0.405519 -0.221043 -0.886958 0.867066 -0.400219 -0.296684 -0.289398 -0.889362 0.353955 -0.380118 -0.262327 -0.886958 0.904237 -0.307140 -0.296684 -0.194592 -0.914795 0.353955 -0.350531 -0.300721 -0.886958 0.931447 -0.210678 -0.296684 -0.097643 -0.930151 0.353955 -0.317356 -0.335545 -0.886958 0.948306 -0.112668 -0.296684 -0.000381 -0.935262 0.353955 -0.280441 -0.366958 -0.886958 0.954892 -0.012658 -0.296684 0.097643 -0.930151 0.353955 -0.240437 -0.394329 -0.886958 0.950960 0.087491 -0.296684 0.194592 -0.914795 0.353955 -0.197784 -0.417357 -0.886958 0.936552 0.186677 -0.296684 0.289398 -0.889362 0.353955 -0.153389 -0.435634 -0.886958 0.912113 0.282894 -0.296684 0.380161 -0.854514 0.353955 -0.106886 -0.449311 -0.886958 0.877440 0.376932 -0.296684 0.467626 -0.809964 0.353955 -0.059206 -0.458039 -0.886958 0.833102 0.466818 -0.296684 0.549941 -0.756493 0.353955 -0.011336 -0.461711 -0.886958 0.780139 0.550783 -0.296684 0.625503 -0.695314 0.353955 0.037117 -0.460356 -0.886958 0.718117 0.629513 -0.296684 0.694932 -0.625928 0.353955 0.085161 -0.453930 -0.886958 0.648184 0.701310 -0.296684 0.756706 -0.549646 0.353955 0.132267 -0.442505 -0.886958 0.571112 0.765382 -0.296684 0.810146 -0.467311 0.353955 0.177490 -0.426383 -0.886958 0.488570 0.820535 -0.296684 0.854281 -0.380683 0.353955 0.221200 -0.405433 -0.886958 0.399881 0.867222 -0.296684 0.889475 -0.289052 0.353955 0.262475 -0.380016 -0.886958 0.306788 0.904356 -0.296684 0.914871 -0.194236 0.353955 0.300507 -0.350715 -0.886958 0.211247 0.931318 -0.296684 0.930092 -0.098212 0.353955 0.335609 -0.317288 -0.886958 0.112475 0.948329 -0.296684 0.935263 -0.000190 0.353955 0.367015 -0.280366 -0.886958 0.012463 0.954894 -0.296684 0.930132 0.097833 0.353955 0.394378 -0.240356 -0.886958 -0.087685 0.950942 -0.296684 0.914755 0.194778 0.353955 0.417199 -0.198116 -0.886958 -0.185931 0.936701 -0.296684 0.889592 0.288689 0.353955 0.435665 -0.153300 -0.886958 -0.283080 0.912055 -0.296684 0.854436 0.380335 0.353955 0.449333 -0.106795 -0.886958 -0.377111 0.877363 -0.296684 0.809869 0.467791 0.353955 0.458051 -0.059113 -0.886958 -0.466988 0.833007 -0.296684 0.756380 0.550095 0.353955 0.461713 -0.011242 -0.886958 -0.550941 0.780027 -0.296684 0.695187 0.625645 0.353955 0.460348 0.037211 -0.886958 -0.629659 0.717989 -0.296684 0.625786 0.695059 0.353955 0.453913 0.085253 -0.886958 -0.701442 0.648042 -0.296684 0.549492 0.756818 0.353955 0.442610 0.131915 -0.886958 -0.764927 0.571722 -0.296684 0.467956 0.809773 0.353955 0.426347 0.177577 -0.886958 -0.820635 0.488403 -0.296684 0.380509 0.854359 0.353955 0.405388 0.221283 -0.886958 -0.867303 0.399705 -0.296684 0.288870 0.889534 0.353955 0.379963 0.262552 -0.886958 -0.904419 0.306604 -0.296684 0.194050 0.914910 0.353955 0.350654 0.300578 -0.886958 -0.931361 0.211057 -0.296684 0.098022 0.930112 0.353955 0.317220 0.335674 -0.886958 -0.948352 0.112281 -0.296684 0.000000 0.935263 0.353955 0.280292 0.367072 -0.886958 -0.954897 0.012269 -0.296684 -0.098022 0.930112 0.353955 0.240670 0.394186 -0.886958 -0.951011 -0.086928 -0.296684 -0.194050 0.914910 0.353955 0.198031 0.417240 -0.886958 -0.936663 -0.186122 -0.296684 -0.288870 0.889534 0.353955 0.153211 0.435697 -0.886958 -0.911997 -0.283266 -0.296684 -0.380509 0.854359 0.353955 0.106703 0.449355 -0.886958 -0.877286 -0.377289 -0.296684 -0.467956 0.809773 0.353955 0.059478 0.458004 -0.886958 -0.833379 -0.466324 -0.296684 -0.549492 0.756818 0.353955 0.011148 0.461715 -0.886958 -0.779915 -0.551100 -0.296684 -0.625786 0.695059 0.353955 -0.037304 0.460341 -0.886958 -0.717860 -0.629806 -0.296684 -0.695187 0.625645 0.353955 -0.084892 0.453981 -0.886958 -0.648600 -0.700926 -0.296684 -0.756380 0.550095 0.353955 -0.132005 0.442583 -0.886958 -0.571566 -0.765043 -0.296684 -0.809869 0.467791 0.353955 -0.177664 0.426311 -0.886958 -0.488236 -0.820734 -0.296684 -0.854436 0.380335 0.353955 -0.221366 0.405342 -0.886958 -0.399528 -0.867385 -0.296684 -0.889592 0.288689 0.353955 -0.262249 0.380172 -0.886958 -0.307324 -0.904174 -0.296684 -0.914755 0.194778 0.353955 -0.300650 0.350592 -0.886958 -0.210867 -0.931404 -0.296684 -0.930132 0.097833 0.353955 0.783451 -0.531199 -0.322540 -0.491166 -0.847247 0.202308 -0.380737 -0.000078 -0.924684 0.834810 -0.446162 -0.322540 -0.399664 -0.894059 0.202308 -0.378632 -0.039981 -0.924684 0.876616 -0.357088 -0.322540 -0.304690 -0.930718 0.202308 -0.372435 -0.079072 -0.924684 0.909214 -0.263246 -0.322540 -0.205466 -0.957526 0.202308 -0.362097 -0.117670 -0.924684 0.931796 -0.166504 -0.322540 -0.103978 -0.973786 0.202308 -0.347770 -0.154972 -0.924684 0.944047 -0.068872 -0.322540 -0.002325 -0.979319 0.202308 -0.329803 -0.190238 -0.924684 0.946066 0.030450 -0.322540 0.100327 -0.974169 0.202308 -0.308048 -0.223756 -0.924684 0.937664 0.129437 -0.322540 0.201874 -0.958289 0.202308 -0.282900 -0.254809 -0.924684 0.918934 0.226998 -0.322540 0.301198 -0.931854 0.202308 -0.254636 -0.283056 -0.924684 0.890404 0.321169 -0.322540 0.396309 -0.895550 0.202308 -0.223876 -0.307961 -0.924684 0.851839 0.412721 -0.322540 0.487987 -0.849082 0.202308 -0.190366 -0.329729 -0.924684 0.803892 0.499726 -0.322540 0.574289 -0.793261 0.202308 -0.154760 -0.347865 -0.924684 0.747670 0.580480 -0.322540 0.653536 -0.729357 0.202308 -0.117811 -0.362051 -0.924684 0.682714 0.655645 -0.322540 0.726379 -0.656845 0.202308 -0.079217 -0.372404 -0.924684 0.610238 0.723587 -0.322540 0.791221 -0.577098 0.202308 -0.039750 -0.378656 -0.924684 0.531678 0.783126 -0.322540 0.846947 -0.491684 0.202308 -0.000155 -0.380737 -0.924684 0.446672 0.834537 -0.322540 0.893814 -0.400210 0.202308 0.039750 -0.378656 -0.924684 0.356747 0.876755 -0.322540 0.930836 -0.304327 0.202308 0.079217 -0.372404 -0.924684 0.262892 0.909316 -0.322540 0.957606 -0.205093 0.202308 0.117811 -0.362051 -0.924684 0.167073 0.931695 -0.322540 0.973723 -0.104573 0.202308 0.154760 -0.347865 -0.924684 0.068505 0.944074 -0.322540 0.979320 -0.001944 0.202308 0.190366 -0.329729 -0.924684 -0.030818 0.946054 -0.322540 0.974130 0.100706 0.202308 0.223876 -0.307961 -0.924684 -0.128864 0.937743 -0.322540 0.958412 0.201289 0.202308 0.254636 -0.283056 -0.924684 -0.226437 0.919073 -0.322540 0.932037 0.300629 0.202308 0.282900 -0.254809 -0.924684 -0.321515 0.890279 -0.322540 0.895396 0.396658 0.202308 0.308048 -0.223756 -0.924684 -0.413052 0.851678 -0.322540 0.848892 0.488317 0.202308 0.329803 -0.190238 -0.924684 -0.499235 0.804197 -0.322540 0.793612 0.573804 0.202308 0.347770 -0.154972 -0.924684 -0.580771 0.747444 -0.322540 0.729103 0.653820 0.202308 0.362097 -0.117670 -0.924684 -0.655910 0.682459 -0.322540 0.656562 0.726635 0.202308 0.372435 -0.079072 -0.924684 -0.723214 0.610680 -0.322540 0.577581 0.790868 0.202308 0.378632 -0.039981 -0.924684 -0.783235 0.531518 -0.322540 0.491511 0.847047 0.202308 0.380737 -0.000078 -0.924684 -0.834628 0.446502 -0.322540 0.400028 0.893896 0.202308 0.378648 0.039827 -0.924684 -0.876828 0.356568 -0.322540 0.304138 0.930898 0.202308 0.372388 0.079292 -0.924684 -0.909107 0.263616 -0.322540 0.205856 0.957442 0.202308 0.362145 0.117523 -0.924684 -0.931729 0.166883 -0.322540 0.104375 0.973744 0.202308 0.347833 0.154831 -0.924684 -0.944088 0.068312 -0.322540 0.001745 0.979320 0.202308 0.329690 0.190433 -0.924684 -0.946048 -0.031011 -0.322540 -0.100905 0.974110 0.202308 0.307915 0.223938 -0.924684 -0.937717 -0.129055 -0.322540 -0.201484 0.958371 0.202308 0.283004 0.254694 -0.924684 -0.919026 -0.226624 -0.322540 -0.300819 0.931976 0.202308 0.254752 0.282952 -0.924684 -0.890213 -0.321696 -0.322540 -0.396840 0.895315 0.202308 0.223693 0.308094 -0.924684 -0.852007 -0.412374 -0.322540 -0.487641 0.849281 0.202308 0.190501 0.329651 -0.924684 -0.804095 -0.499399 -0.322540 -0.573966 0.793495 0.202308 0.154902 0.347801 -0.924684 -0.747326 -0.580923 -0.322540 -0.653969 0.728970 0.202308 0.117596 0.362121 -0.924684 -0.682325 -0.656049 -0.322540 -0.726768 0.656414 0.202308 0.078996 0.372451 -0.924684 -0.610532 -0.723338 -0.322540 -0.790985 0.577420 0.202308 0.039904 0.378640 -0.924684 -0.531359 -0.783343 -0.322540 -0.847147 0.491339 0.202308 0.000000 0.380737 -0.924684 -0.446332 -0.834719 -0.322540 -0.893977 0.399846 0.202308 -0.039904 0.378640 -0.924684 -0.357266 -0.876544 -0.322540 -0.930656 0.304879 0.202308 -0.078996 0.372451 -0.924684 -0.263431 -0.909160 -0.322540 -0.957484 0.205661 0.202308 -0.117596 0.362121 -0.924684 -0.166693 -0.931763 -0.322540 -0.973765 0.104177 0.202308 -0.154902 0.347801 -0.924684 -0.068120 -0.944102 -0.322540 -0.979321 0.001545 0.202308 -0.190501 0.329651 -0.924684 0.030258 -0.946072 -0.322540 -0.974190 -0.100129 0.202308 -0.223693 0.308094 -0.924684 0.129246 -0.937690 -0.322540 -0.958330 -0.201679 0.202308 -0.254752 0.282952 -0.924684 0.226811 -0.918980 -0.322540 -0.931915 -0.301009 0.202308 -0.283004 0.254694 -0.924684 0.320987 -0.890469 -0.322540 -0.895631 -0.396127 0.202308 -0.307915 0.223938 -0.924684 0.412547 -0.851923 -0.322540 -0.849182 -0.487814 0.202308 -0.329690 0.190433 -0.924684 0.499563 -0.803993 -0.322540 -0.793378 -0.574127 0.202308 -0.347833 0.154831 -0.924684 0.581076 -0.747208 -0.322540 -0.728836 -0.654117 0.202308 -0.362145 0.117523 -0.924684 0.655506 -0.682847 -0.322540 -0.656993 -0.726245 0.202308 -0.372388 0.079292 -0.924684 0.723463 -0.610385 -0.322540 -0.577259 -0.791103 0.202308 -0.378648 0.039827 -0.924684 0.109204 -0.158510 0.981300 0.017328 0.987357 0.157560 -0.993868 -0.000202 0.110570 0.125215 -0.146191 0.981300 -0.086250 0.983736 0.157560 -0.988373 -0.104366 0.110570 0.139715 -0.132403 0.981300 -0.187908 0.969467 0.157560 -0.972199 -0.206408 0.110570 0.152823 -0.117030 0.981300 -0.288480 0.944433 0.157560 -0.945211 -0.307164 0.110570 0.164246 -0.100369 0.981300 -0.385875 0.908997 0.157560 -0.907813 -0.404537 0.110570 0.173779 -0.082776 0.981300 -0.478155 0.864027 0.157560 -0.860911 -0.496594 0.110570 0.181497 -0.064107 0.981300 -0.566078 0.809154 0.157560 -0.804124 -0.584089 0.110570 0.187216 -0.044731 0.981300 -0.647765 0.745369 0.157560 -0.738478 -0.665150 0.110570 0.190873 -0.024863 0.981300 -0.722318 0.673373 0.157560 -0.664699 -0.738884 0.110570 0.192423 -0.004914 0.981300 -0.788320 0.594749 0.157560 -0.584402 -0.803896 0.110570 0.191878 0.015280 0.981300 -0.846312 0.508852 0.157560 -0.496929 -0.860718 0.110570 0.189220 0.035307 0.981300 -0.894983 0.417350 0.157560 -0.403983 -0.908060 0.110570 0.184533 0.054759 0.981300 -0.933473 0.322185 0.157560 -0.307532 -0.945092 0.110570 0.177777 0.073798 0.981300 -0.962099 0.222576 0.157560 -0.206786 -0.972118 0.110570 0.169063 0.092024 0.981300 -0.980128 0.120515 0.157560 -0.103762 -0.988437 0.110570 0.158576 0.109107 0.981300 -0.987347 0.017931 0.157560 -0.000405 -0.993868 0.110570 0.146268 0.125126 0.981300 -0.983788 -0.085649 0.157560 0.103762 -0.988437 0.110570 0.132348 0.139767 0.981300 -0.969393 -0.188285 0.157560 0.206786 -0.972118 0.110570 0.116971 0.152868 0.981300 -0.944321 -0.288848 0.157560 0.307532 -0.945092 0.110570 0.100469 0.164185 0.981300 -0.909233 -0.385319 0.157560 0.403983 -0.908060 0.110570 0.082708 0.173811 0.981300 -0.863841 -0.478491 0.157560 0.496929 -0.860718 0.110570 0.064036 0.181522 0.981300 -0.808934 -0.566393 0.157560 0.584402 -0.803896 0.110570 0.044846 0.187189 0.981300 -0.745764 -0.647310 0.157560 0.664699 -0.738884 0.110570 0.024980 0.190858 0.981300 -0.673814 -0.721906 0.157560 0.738478 -0.665150 0.110570 0.004839 0.192425 0.981300 -0.594442 -0.788551 0.157560 0.804124 -0.584089 0.110570 -0.015355 0.191872 0.981300 -0.508523 -0.846510 0.157560 0.860911 -0.496594 0.110570 -0.035191 0.189242 0.981300 -0.417897 -0.894727 0.157560 0.907813 -0.404537 0.110570 -0.054831 0.184511 0.981300 -0.321821 -0.933598 0.157560 0.945211 -0.307164 0.110570 -0.073867 0.177748 0.981300 -0.222201 -0.962186 0.157560 0.972199 -0.206408 0.110570 -0.091920 0.169120 0.981300 -0.121114 -0.980054 0.157560 0.988373 -0.104366 0.110570 -0.109139 0.158554 0.981300 -0.017730 -0.987350 0.157560 0.993868 -0.000202 0.110570 -0.125156 0.146242 0.981300 0.085849 -0.983771 0.157560 0.988416 0.103963 0.110570 -0.139794 0.132320 0.981300 0.188483 -0.969355 0.157560 0.972076 0.206984 0.110570 -0.152775 0.117093 0.981300 0.288095 -0.944551 0.157560 0.945336 0.306779 0.110570 -0.164206 0.100436 0.981300 0.385504 -0.909154 0.157560 0.907977 0.404168 0.110570 -0.173828 0.082673 0.981300 0.478667 -0.863743 0.157560 0.860617 0.497104 0.110570 -0.181535 0.063999 0.981300 0.566557 -0.808819 0.157560 0.803777 0.584565 0.110570 -0.187198 0.044808 0.981300 0.647462 -0.745633 0.157560 0.738749 0.664849 0.110570 -0.190863 0.024941 0.981300 0.722044 -0.673667 0.157560 0.664999 0.738614 0.110570 -0.192426 0.004800 0.981300 0.788672 -0.594282 0.157560 0.583925 0.804242 0.110570 -0.191885 -0.015202 0.981300 0.846105 -0.509197 0.157560 0.497279 0.860516 0.110570 -0.189234 -0.035229 0.981300 0.894812 -0.417715 0.157560 0.404353 0.907895 0.110570 -0.184500 -0.054869 0.981300 0.933664 -0.321631 0.157560 0.306972 0.945274 0.110570 -0.177733 -0.073903 0.981300 0.962231 -0.222005 0.157560 0.206210 0.972241 0.110570 -0.169101 -0.091955 0.981300 0.980079 -0.120914 0.157560 0.104165 0.988395 0.110570 -0.158532 -0.109171 0.981300 0.987354 -0.017529 0.157560 0.000000 0.993868 0.110570 -0.146217 -0.125185 0.981300 0.983753 0.086049 0.157560 -0.104165 0.988395 0.110570 -0.132431 -0.139688 0.981300 0.969505 0.187711 0.157560 -0.206210 0.972241 0.110570 -0.117061 -0.152799 0.981300 0.944492 0.288288 0.157560 -0.306972 0.945274 0.110570 -0.100402 -0.164226 0.981300 0.909076 0.385690 0.157560 -0.404353 0.907895 0.110570 -0.082637 -0.173844 0.981300 0.863646 0.478843 0.157560 -0.497279 0.860516 0.110570 -0.064144 -0.181484 0.981300 0.809270 0.565913 0.157560 -0.583925 0.804242 0.110570 -0.044769 -0.187207 0.981300 0.745501 0.647614 0.157560 -0.664999 0.738614 0.110570 -0.024902 -0.190868 0.981300 0.673520 0.722181 0.157560 -0.738749 0.664849 0.110570 -0.004953 -0.192422 0.981300 0.594910 0.788199 0.157560 -0.803777 0.584565 0.110570 0.015241 -0.191881 0.981300 0.509025 0.846209 0.157560 -0.860617 0.497104 0.110570 0.035268 -0.189227 0.981300 0.417532 0.894898 0.157560 -0.907977 0.404168 0.110570 0.054906 -0.184489 0.981300 0.321441 0.933729 0.157560 -0.945336 0.306779 0.110570 0.073762 -0.177792 0.981300 0.222772 0.962054 0.157560 -0.972076 0.206984 0.110570 0.091989 -0.169082 0.981300 0.120714 0.980103 0.157560 -0.988416 0.103963 0.110570 -0.021480 0.999235 0.032673 0.545260 0.039101 -0.837355 -0.837992 -0.000171 -0.545683 -0.126088 0.991481 0.032673 0.538159 0.096033 -0.837355 -0.833359 -0.087997 -0.545683 -0.228335 0.973034 0.032673 0.525282 0.151382 -0.837355 -0.819721 -0.174035 -0.545683 -0.329059 0.943744 0.032673 0.506523 0.205601 -0.837355 -0.796966 -0.258989 -0.545683 -0.426158 0.904059 0.032673 0.482185 0.257556 -0.837355 -0.765433 -0.341091 -0.545683 -0.517708 0.854933 0.032673 0.452842 0.306221 -0.837355 -0.725888 -0.418709 -0.545683 -0.604460 0.795965 0.032673 0.418254 0.351996 -0.837355 -0.678006 -0.492481 -0.545683 -0.684554 0.728230 0.032673 0.379058 0.393893 -0.837355 -0.622657 -0.560829 -0.545683 -0.757107 0.652473 0.032673 0.335688 0.431452 -0.837355 -0.560448 -0.622999 -0.545683 -0.820751 0.570350 0.032673 0.289084 0.463970 -0.837355 -0.492745 -0.677815 -0.545683 -0.876008 0.481189 0.032673 0.238864 0.491712 -0.837355 -0.418991 -0.725725 -0.545683 -0.921615 0.386727 0.032673 0.186014 0.514039 -0.837355 -0.340623 -0.765641 -0.545683 -0.956783 0.288962 0.032673 0.131645 0.530572 -0.837355 -0.259299 -0.796865 -0.545683 -0.981799 0.187093 0.032673 0.075312 0.541447 -0.837355 -0.174354 -0.819653 -0.545683 -0.996000 0.083163 0.032673 0.018150 0.546359 -0.837355 -0.087488 -0.833412 -0.545683 -0.999248 -0.020869 0.032673 -0.038768 0.545284 -0.837355 -0.000341 -0.837992 -0.545683 -0.991558 -0.125483 0.032673 -0.095704 0.538217 -0.837355 0.087488 -0.833412 -0.545683 -0.972945 -0.228714 0.032673 -0.151586 0.525223 -0.837355 0.174354 -0.819653 -0.545683 -0.943616 -0.329426 0.032673 -0.205798 0.506443 -0.837355 0.259299 -0.796865 -0.545683 -0.904319 -0.425605 0.032673 -0.257262 0.482342 -0.837355 0.340623 -0.765641 -0.545683 -0.854732 -0.518040 0.032673 -0.306398 0.452723 -0.837355 0.418991 -0.725725 -0.545683 -0.795730 -0.604769 0.032673 -0.352159 0.418117 -0.837355 0.492745 -0.677815 -0.545683 -0.728648 -0.684109 0.032673 -0.393662 0.379299 -0.837355 0.560448 -0.622999 -0.545683 -0.652936 -0.756708 0.032673 -0.431247 0.335951 -0.837355 0.622657 -0.560829 -0.545683 -0.570031 -0.820973 0.032673 -0.464082 0.288903 -0.837355 0.678006 -0.492481 -0.545683 -0.480848 -0.876195 0.032673 -0.491805 0.238673 -0.837355 0.725888 -0.418709 -0.545683 -0.387290 -0.921379 0.032673 -0.513925 0.186328 -0.837355 0.765433 -0.341091 -0.545683 -0.288590 -0.956895 0.032673 -0.530623 0.131439 -0.837355 0.796966 -0.258989 -0.545683 -0.186711 -0.981871 0.032673 -0.541477 0.075102 -0.837355 0.819721 -0.174035 -0.545683 -0.083771 -0.995949 0.032673 -0.546347 0.018484 -0.837355 0.833359 -0.087997 -0.545683 0.021073 -0.999244 0.032673 -0.545276 -0.038879 -0.837355 0.837992 -0.000171 -0.545683 0.125685 -0.991532 0.032673 -0.538198 -0.095814 -0.837355 0.833395 0.087658 -0.545683 0.228912 -0.972899 0.032673 -0.525192 -0.151693 -0.837355 0.819617 0.174521 -0.545683 0.328674 -0.943878 0.032673 -0.506607 -0.205395 -0.837355 0.797072 0.258664 -0.545683 0.425789 -0.904232 0.032673 -0.482290 -0.257360 -0.837355 0.765572 0.340779 -0.545683 0.518214 -0.854626 0.032673 -0.452660 -0.306490 -0.837355 0.725639 0.419139 -0.545683 0.604931 -0.795607 0.032673 -0.418045 -0.352244 -0.837355 0.677714 0.492883 -0.545683 0.684257 -0.728509 0.032673 -0.379219 -0.393739 -0.837355 0.622885 0.560575 -0.545683 0.756841 -0.652781 0.032673 -0.335864 -0.431315 -0.837355 0.560702 0.622771 -0.545683 0.821089 -0.569864 0.032673 -0.288809 -0.464141 -0.837355 0.492343 0.678106 -0.545683 0.875812 -0.481545 0.032673 -0.239065 -0.491615 -0.837355 0.419287 0.725554 -0.545683 0.921458 -0.387102 0.032673 -0.186223 -0.513963 -0.837355 0.340935 0.765502 -0.545683 0.956954 -0.288395 0.032673 -0.131331 -0.530650 -0.837355 0.258827 0.797019 -0.545683 0.981909 -0.186511 0.032673 -0.074991 -0.541492 -0.837355 0.173868 0.819756 -0.545683 0.995966 -0.083568 0.032673 -0.018373 -0.546351 -0.837355 0.087828 0.833377 -0.545683 0.999240 0.021276 0.032673 0.038990 -0.545268 -0.837355 0.000000 0.837992 -0.545683 0.991506 0.125887 0.032673 0.095923 -0.538178 -0.837355 -0.087828 0.833377 -0.545683 0.973081 0.228137 0.032673 0.151275 -0.525312 -0.837355 -0.173868 0.819756 -0.545683 0.943811 0.328867 0.032673 0.205498 -0.506565 -0.837355 -0.258827 0.797019 -0.545683 0.904145 0.425974 0.032673 0.257458 -0.482237 -0.837355 -0.340935 0.765502 -0.545683 0.854521 0.518388 0.032673 0.306582 -0.452598 -0.837355 -0.419287 0.725554 -0.545683 0.796088 0.604298 0.032673 0.351911 -0.418325 -0.837355 -0.492343 0.678106 -0.545683 0.728369 0.684405 0.032673 0.393816 -0.379139 -0.837355 -0.560702 0.622771 -0.545683 0.652627 0.756974 0.032673 0.431384 -0.335776 -0.837355 -0.622885 0.560575 -0.545683 0.570518 0.820635 0.032673 0.463911 -0.289178 -0.837355 -0.677714 0.492883 -0.545683 0.481367 0.875910 0.032673 0.491664 -0.238965 -0.837355 -0.725639 0.419139 -0.545683 0.386914 0.921537 0.032673 0.514001 -0.186119 -0.837355 -0.765572 0.340779 -0.545683 0.288200 0.957013 0.032673 0.530677 -0.131223 -0.837355 -0.797072 0.258664 -0.545683 0.187293 0.981761 0.032673 0.541432 -0.075423 -0.837355 -0.819617 0.174521 -0.545683 0.083366 0.995983 0.032673 0.546355 -0.018261 -0.837355 -0.833395 0.087658 -0.545683 0.576216 0.627974 0.523091 -0.465079 0.778234 -0.421963 -0.672069 -0.000137 0.740488 0.507226 0.684907 0.523091 -0.544082 0.725205 -0.421963 -0.668354 -0.070574 0.740488 0.433383 0.733863 0.523091 -0.616428 0.664804 -0.421963 -0.657416 -0.139576 0.740488 0.354082 0.775243 0.523091 -0.682709 0.596536 -0.421963 -0.639167 -0.207709 0.740488 0.270881 0.808084 0.523091 -0.741470 0.521698 -0.421963 -0.613877 -0.273555 0.740488 0.185528 0.831838 0.523091 -0.791623 0.441905 -0.421963 -0.582162 -0.335805 0.740488 0.097324 0.846702 0.523091 -0.833578 0.356504 -0.421963 -0.543761 -0.394970 0.740488 0.008048 0.852239 0.523091 -0.866351 0.267176 -0.421963 -0.499371 -0.449785 0.740488 -0.081317 0.848389 0.523091 -0.889582 0.174904 -0.421963 -0.449480 -0.499645 0.740488 -0.168952 0.835363 0.523091 -0.902932 0.081609 -0.421963 -0.395182 -0.543607 0.740488 -0.255573 0.813055 0.523091 -0.906513 -0.013474 -0.421963 -0.336031 -0.582031 0.740488 -0.339380 0.781791 0.523091 -0.900108 -0.108409 -0.421963 -0.273179 -0.614044 0.740488 -0.418705 0.742335 0.523091 -0.883991 -0.201265 -0.421963 -0.207958 -0.639086 0.740488 -0.494202 0.694363 0.523091 -0.858028 -0.292806 -0.421963 -0.139832 -0.657362 0.740488 -0.564254 0.638743 0.523091 -0.822614 -0.381120 -0.421963 -0.070165 -0.668397 0.740488 -0.627622 0.576599 0.523091 -0.778518 -0.464603 -0.421963 -0.000274 -0.672069 0.740488 -0.684597 0.507644 0.523091 -0.725537 -0.543639 -0.421963 0.070165 -0.668397 0.740488 -0.734031 0.433098 0.523091 -0.664564 -0.616686 -0.421963 0.139832 -0.657362 0.740488 -0.775380 0.353781 0.523091 -0.596271 -0.682941 -0.421963 0.207958 -0.639086 0.740488 -0.807918 0.271375 0.523091 -0.522151 -0.741151 -0.421963 0.273179 -0.614044 0.740488 -0.831910 0.185205 0.523091 -0.441597 -0.791795 -0.421963 0.336031 -0.582031 0.740488 -0.846739 0.096995 0.523091 -0.356180 -0.833716 -0.421963 0.395182 -0.543607 0.740488 -0.852234 0.008568 0.523091 -0.267705 -0.866188 -0.421963 0.449480 -0.499645 0.740488 -0.848438 -0.080799 0.523091 -0.175448 -0.889475 -0.421963 0.499371 -0.449785 0.740488 -0.835297 -0.169277 0.523091 -0.081258 -0.902964 -0.421963 0.543761 -0.394970 0.740488 -0.812955 -0.255889 0.523091 0.013826 -0.906507 -0.421963 0.582162 -0.335805 0.740488 -0.781998 -0.338902 0.523091 0.107859 -0.900174 -0.421963 0.613877 -0.273555 0.740488 -0.742172 -0.418994 0.523091 0.201609 -0.883912 -0.421963 0.639167 -0.207709 0.740488 -0.694171 -0.494472 0.523091 0.293139 -0.857914 -0.421963 0.657416 -0.139576 0.740488 -0.639088 -0.563864 0.523091 0.380618 -0.822847 -0.421963 0.668354 -0.070574 0.740488 -0.576471 -0.627739 0.523091 0.464762 -0.778424 -0.421963 0.672069 -0.000137 0.740488 -0.507505 -0.684700 0.523091 0.543787 -0.725426 -0.421963 0.668382 0.070302 0.740488 -0.432948 -0.734120 0.523091 0.616822 -0.664438 -0.421963 0.657333 0.139966 0.740488 -0.354398 -0.775098 0.523091 0.682466 -0.596814 -0.421963 0.639251 0.207449 0.740488 -0.271210 -0.807973 0.523091 0.741258 -0.522000 -0.421963 0.613989 0.273305 0.740488 -0.185035 -0.831948 0.523091 0.791885 -0.441436 -0.421963 0.581963 0.336150 0.740488 -0.096822 -0.846759 0.523091 0.833789 -0.356010 -0.421963 0.543527 0.395292 0.740488 -0.008395 -0.852235 0.523091 0.866242 -0.267528 -0.421963 0.499554 0.449581 0.740488 0.080972 -0.848422 0.523091 0.889510 -0.175267 -0.421963 0.449683 0.499462 0.740488 0.169447 -0.835263 0.523091 0.902981 -0.081074 -0.421963 0.394859 0.543841 0.740488 0.255242 -0.813159 0.523091 0.906518 0.013105 -0.421963 0.336268 0.581894 0.740488 0.339061 -0.781929 0.523091 0.900152 0.108042 -0.421963 0.273430 0.613933 0.740488 0.419145 -0.742087 0.523091 0.883871 0.201789 -0.421963 0.207579 0.639209 0.740488 0.494613 -0.694070 0.523091 0.857854 0.293314 -0.421963 0.139442 0.657444 0.740488 0.563994 -0.638973 0.523091 0.822769 0.380785 -0.421963 0.070438 0.668368 0.740488 0.627857 -0.576343 0.523091 0.778329 0.464920 -0.421963 0.000000 0.672069 0.740488 0.684804 -0.507365 0.523091 0.725315 0.543934 -0.421963 -0.070438 0.668368 0.740488 0.733774 -0.433533 0.523091 0.664929 0.616292 -0.421963 -0.139442 0.657444 0.740488 0.775171 -0.354240 0.523091 0.596675 0.682587 -0.421963 -0.207579 0.639209 0.740488 0.808028 -0.271046 0.523091 0.521849 0.741364 -0.421963 -0.273430 0.613933 0.740488 0.831986 -0.184866 0.523091 0.441275 0.791974 -0.421963 -0.336268 0.581894 0.740488 0.846682 -0.097496 0.523091 0.356674 0.833505 -0.421963 -0.394859 0.543841 0.740488 0.852237 -0.008221 0.523091 0.267352 0.866297 -0.421963 -0.449683 0.499462 0.740488 0.848405 0.081145 0.523091 0.175085 0.889546 -0.421963 -0.499554 0.449581 0.740488 0.835397 0.168781 0.523091 0.081793 0.902916 -0.421963 -0.543527 0.395292 0.740488 0.813107 0.255407 0.523091 -0.013289 0.906516 -0.421963 -0.581963 0.336150 0.740488 0.781860 0.339220 0.523091 -0.108225 0.900130 -0.421963 -0.613989 0.273305 0.740488 0.742001 0.419297 0.523091 -0.201969 0.883830 -0.421963 -0.639251 0.207449 0.740488 0.694464 0.494060 0.523091 -0.292631 0.858088 -0.421963 -0.657333 0.139966 0.740488 0.638858 0.564124 0.523091 -0.380953 0.822692 -0.421963 -0.668382 0.070302 0.740488 0.230315 -0.168351 0.958443 0.039140 0.985727 0.163738 -0.972329 -0.000198 0.233617 0.246691 -0.143285 0.958443 -0.064387 0.984400 0.163738 -0.966953 -0.102104 0.233617 0.260233 -0.116901 0.958443 -0.166232 0.972397 0.163738 -0.951129 -0.201934 0.233617 0.271052 -0.088983 0.958443 -0.267231 0.949620 0.163738 -0.924726 -0.300507 0.233617 0.278885 -0.060084 0.958443 -0.365286 0.916382 0.163738 -0.888138 -0.395770 0.233617 0.283616 -0.030808 0.958443 -0.458445 0.873509 0.163738 -0.842253 -0.485832 0.233617 0.285283 -0.000913 0.958443 -0.547470 0.820650 0.163738 -0.786696 -0.571430 0.233617 0.283807 0.028991 0.958443 -0.630465 0.758752 0.163738 -0.722473 -0.650734 0.233617 0.279206 0.058577 0.958443 -0.706515 0.688496 0.163738 -0.650293 -0.722871 0.233617 0.271616 0.087245 0.958443 -0.774172 0.611431 0.163738 -0.571736 -0.786474 0.233617 0.260976 0.115232 0.958443 -0.833991 0.526924 0.163738 -0.486159 -0.842064 0.233617 0.247462 0.141950 0.958443 -0.884623 0.436614 0.163738 -0.395227 -0.888380 0.233617 0.231389 0.166872 0.958443 -0.925169 0.342420 0.163738 -0.300867 -0.924609 0.233617 0.212625 0.190205 0.958443 -0.955962 0.243570 0.163738 -0.202304 -0.951050 0.233617 0.191519 0.211442 0.958443 -0.976225 0.142037 0.163738 -0.101513 -0.967015 0.233617 0.168491 0.230212 0.958443 -0.985703 0.039742 0.163738 -0.000396 -0.972329 0.233617 0.143435 0.246604 0.958443 -0.984440 -0.063786 0.163738 0.101513 -0.967015 0.233617 0.116800 0.260279 0.958443 -0.972333 -0.166611 0.163738 0.202304 -0.951050 0.233617 0.088877 0.271087 0.958443 -0.949516 -0.267601 0.163738 0.300867 -0.924609 0.233617 0.060255 0.278848 0.958443 -0.916605 -0.364726 0.163738 0.395227 -0.888380 0.233617 0.030698 0.283628 0.958443 -0.873331 -0.458784 0.163738 0.486159 -0.842064 0.233617 0.000802 0.285283 0.958443 -0.820437 -0.547789 0.163738 0.571736 -0.786474 0.233617 -0.028818 0.283825 0.958443 -0.759137 -0.630001 0.163738 0.650293 -0.722871 0.233617 -0.058406 0.279241 0.958443 -0.688927 -0.706094 0.163738 0.722473 -0.650734 0.233617 -0.087351 0.271582 0.958443 -0.611129 -0.774410 0.163738 0.786696 -0.571430 0.233617 -0.115334 0.260931 0.958443 -0.526600 -0.834196 0.163738 0.842253 -0.485832 0.233617 -0.141798 0.247549 0.958443 -0.437155 -0.884356 0.163738 0.888138 -0.395770 0.233617 -0.166962 0.231324 0.958443 -0.342060 -0.925303 0.163738 0.924726 -0.300507 0.233617 -0.190287 0.212551 0.958443 -0.243198 -0.956057 0.163738 0.951129 -0.201934 0.233617 -0.211325 0.191648 0.958443 -0.142633 -0.976138 0.163738 0.966953 -0.102104 0.233617 -0.230247 0.168444 0.958443 -0.039541 -0.985711 0.163738 0.972329 -0.000198 0.233617 -0.246633 0.143385 0.958443 0.063986 -0.984427 0.163738 0.966994 0.101710 0.233617 -0.260302 0.116747 0.958443 0.166809 -0.972299 0.163738 0.951009 0.202498 0.233617 -0.271016 0.089093 0.958443 0.266844 -0.949728 0.163738 0.924848 0.300130 0.233617 -0.278861 0.060198 0.958443 0.364913 -0.916531 0.163738 0.888299 0.395408 0.233617 -0.283634 0.030640 0.958443 0.458962 -0.873237 0.163738 0.841965 0.486331 0.233617 -0.285283 0.000744 0.958443 0.547956 -0.820326 0.163738 0.786357 0.571896 0.233617 -0.283819 -0.028876 0.958443 0.630156 -0.759009 0.163738 0.722738 0.650440 0.233617 -0.279230 -0.058463 0.958443 0.706235 -0.688784 0.163738 0.650587 0.722606 0.233617 -0.271564 -0.087406 0.958443 0.774534 -0.610972 0.163738 0.571270 0.786812 0.233617 -0.261023 -0.115126 0.958443 0.833776 -0.527264 0.163738 0.486502 0.841866 0.233617 -0.247520 -0.141849 0.958443 0.884445 -0.436974 0.163738 0.395589 0.888219 0.233617 -0.231290 -0.167009 0.958443 0.925372 -0.341872 0.163738 0.300319 0.924787 0.233617 -0.212512 -0.190330 0.958443 0.956106 -0.243003 0.163738 0.201740 0.951170 0.233617 -0.191605 -0.211364 0.958443 0.976167 -0.142434 0.163738 0.101907 0.966974 0.233617 -0.168397 -0.230281 0.958443 0.985719 -0.039341 0.163738 0.000000 0.972329 0.233617 -0.143335 -0.246662 0.958443 0.984414 0.064187 0.163738 -0.101907 0.966974 0.233617 -0.116954 -0.260209 0.958443 0.972431 0.166034 0.163738 -0.201740 0.951170 0.233617 -0.089038 -0.271034 0.958443 0.949674 0.267038 0.163738 -0.300319 0.924787 0.233617 -0.060141 -0.278873 0.958443 0.916456 0.365100 0.163738 -0.395589 0.888219 0.233617 -0.030582 -0.283640 0.958443 0.873144 0.459140 0.163738 -0.486502 0.841866 0.233617 -0.000971 -0.285283 0.958443 0.820762 0.547303 0.163738 -0.571270 0.786812 0.233617 0.028934 -0.283813 0.958443 0.758880 0.630310 0.163738 -0.650587 0.722606 0.233617 0.058520 -0.279218 0.958443 0.688640 0.706375 0.163738 -0.722738 0.650440 0.233617 0.087190 -0.271634 0.958443 0.611588 0.774048 0.163738 -0.786357 0.571896 0.233617 0.115179 -0.261000 0.958443 0.527094 0.833883 0.163738 -0.841965 0.486331 0.233617 0.141899 -0.247491 0.958443 0.436794 0.884534 0.163738 -0.888299 0.395408 0.233617 0.167057 -0.231256 0.958443 0.341683 0.925442 0.163738 -0.924848 0.300130 0.233617 0.190161 -0.212664 0.958443 0.243765 0.955913 0.163738 -0.951009 0.202498 0.233617 0.211403 -0.191562 0.958443 0.142236 0.976196 0.163738 -0.966994 0.101710 0.233617 0.668519 0.250249 -0.700327 0.172904 -0.968182 -0.180910 -0.723316 -0.000147 -0.690517 0.638610 0.318936 -0.700327 0.273424 -0.944728 -0.180910 -0.719317 -0.075955 -0.690517 0.602050 0.383508 -0.700327 0.370021 -0.911238 -0.180910 -0.707545 -0.150219 -0.690517 0.558539 0.444495 -0.700327 0.463488 -0.867439 -0.180910 -0.687905 -0.223548 -0.690517 0.508877 0.500586 -0.700327 0.551849 -0.814085 -0.180910 -0.660687 -0.294414 -0.690517 0.454160 0.550709 -0.700327 0.633380 -0.752397 -0.180910 -0.626553 -0.361411 -0.690517 0.393941 0.595276 -0.700327 0.708748 -0.681871 -0.180910 -0.585224 -0.425087 -0.690517 0.329382 0.633285 -0.700327 0.776310 -0.603834 -0.180910 -0.537449 -0.484082 -0.690517 0.261195 0.664319 -0.700327 0.835320 -0.519145 -0.180910 -0.483753 -0.537744 -0.690517 0.190819 0.687845 -0.700327 0.884701 -0.429623 -0.180910 -0.425315 -0.585059 -0.690517 0.117677 0.704056 -0.700327 0.924856 -0.334534 -0.180910 -0.361654 -0.626412 -0.690517 0.043239 0.712512 -0.700327 0.954824 -0.235760 -0.180910 -0.294010 -0.660866 -0.690517 -0.030962 0.713151 -0.700327 0.974140 -0.135364 -0.180910 -0.223815 -0.687818 -0.690517 -0.105535 0.705978 -0.700327 0.982962 -0.032521 -0.180910 -0.150494 -0.707487 -0.690517 -0.178945 0.691029 -0.700327 0.980957 0.070679 -0.180910 -0.075516 -0.719363 -0.690517 -0.249840 0.668672 -0.700327 0.968287 0.172313 -0.180910 -0.000295 -0.723316 -0.690517 -0.318546 0.638804 -0.700327 0.944895 0.272847 -0.180910 0.075516 -0.719363 -0.690517 -0.383743 0.601900 -0.700327 0.911094 0.370376 -0.180910 0.150494 -0.707487 -0.690517 -0.444713 0.558366 -0.700327 0.867259 0.463825 -0.180910 0.223815 -0.687818 -0.690517 -0.500275 0.509183 -0.700327 0.814422 0.551352 -0.180910 0.294010 -0.660866 -0.690517 -0.550886 0.453946 -0.700327 0.752151 0.633672 -0.180910 0.361654 -0.626412 -0.690517 -0.595429 0.393709 -0.700327 0.681595 0.709013 -0.180910 0.425315 -0.585059 -0.690517 -0.633084 0.329769 -0.700327 0.604308 0.775941 -0.180910 0.483753 -0.537744 -0.690517 -0.664159 0.261601 -0.700327 0.519655 0.835003 -0.180910 0.537449 -0.484082 -0.690517 -0.687919 0.190551 -0.700327 0.429279 0.884868 -0.180910 0.585224 -0.425087 -0.690517 -0.704101 0.117403 -0.700327 0.334175 0.924986 -0.180910 0.626553 -0.361411 -0.690517 -0.712485 0.043674 -0.700327 0.236344 0.954680 -0.180910 0.660687 -0.294414 -0.690517 -0.713138 -0.031240 -0.700327 0.134985 0.974192 -0.180910 0.687905 -0.223548 -0.690517 -0.705937 -0.105810 -0.700327 0.032139 0.982974 -0.180910 0.707545 -0.150219 -0.690517 -0.691138 -0.178523 -0.700327 -0.070080 0.981000 -0.180910 0.719317 -0.075955 -0.690517 -0.668621 -0.249976 -0.700327 -0.172510 0.968252 -0.180910 0.723316 -0.000147 -0.690517 -0.638739 -0.318676 -0.700327 -0.273039 0.944839 -0.180910 0.719348 0.075662 -0.690517 -0.601822 -0.383865 -0.700327 -0.370562 0.911019 -0.180910 0.707456 0.150638 -0.690517 -0.558720 -0.444268 -0.700327 -0.463135 0.867628 -0.180910 0.687996 0.223267 -0.690517 -0.509081 -0.500379 -0.700327 -0.551518 0.814309 -0.180910 0.660806 0.294145 -0.690517 -0.453834 -0.550978 -0.700327 -0.633825 0.752022 -0.180910 0.626339 0.361782 -0.690517 -0.393588 -0.595509 -0.700327 -0.709152 0.681450 -0.180910 0.584972 0.425434 -0.690517 -0.329640 -0.633151 -0.700327 -0.776064 0.604150 -0.180910 0.537646 0.483863 -0.690517 -0.261466 -0.664212 -0.700327 -0.835109 0.519485 -0.180910 0.483972 0.537547 -0.690517 -0.190411 -0.687958 -0.700327 -0.884955 0.429099 -0.180910 0.424968 0.585310 -0.690517 -0.117964 -0.704008 -0.700327 -0.924720 0.334911 -0.180910 0.361909 0.626265 -0.690517 -0.043529 -0.712494 -0.700327 -0.954728 0.236149 -0.180910 0.294279 0.660747 -0.690517 0.031385 -0.713132 -0.700327 -0.974220 0.134786 -0.180910 0.223407 0.687950 -0.690517 0.105954 -0.705915 -0.700327 -0.982981 0.031939 -0.180910 0.150075 0.707576 -0.690517 0.178664 -0.691102 -0.700327 -0.980985 -0.070280 -0.180910 0.075809 0.719333 -0.690517 0.250112 -0.668570 -0.700327 -0.968217 -0.172707 -0.180910 0.000000 0.723316 -0.690517 0.318806 -0.638674 -0.700327 -0.944784 -0.273232 -0.180910 -0.075809 0.719333 -0.690517 0.383386 -0.602128 -0.700327 -0.911314 -0.369836 -0.180910 -0.150075 0.707576 -0.690517 0.444382 -0.558630 -0.700327 -0.867533 -0.463311 -0.180910 -0.223407 0.687950 -0.690517 0.500483 -0.508979 -0.700327 -0.814197 -0.551683 -0.180910 -0.294279 0.660747 -0.690517 0.551071 -0.453721 -0.700327 -0.751893 -0.633979 -0.180910 -0.361909 0.626265 -0.690517 0.595195 -0.394062 -0.700327 -0.682015 -0.708609 -0.180910 -0.424968 0.585310 -0.690517 0.633218 -0.329511 -0.700327 -0.603992 -0.776187 -0.180910 -0.483972 0.537547 -0.690517 0.664266 -0.261330 -0.700327 -0.519315 -0.835214 -0.180910 -0.537646 0.483863 -0.690517 0.687806 -0.190959 -0.700327 -0.429803 -0.884613 -0.180910 -0.584972 0.425434 -0.690517 0.704032 -0.117820 -0.700327 -0.334722 -0.924788 -0.180910 -0.626339 0.361782 -0.690517 0.712503 -0.043384 -0.700327 -0.235955 -0.954776 -0.180910 -0.660806 0.294145 -0.690517 0.713126 0.031530 -0.700327 -0.134588 -0.974247 -0.180910 -0.687996 0.223267 -0.690517 0.705999 0.105391 -0.700327 -0.032722 -0.982955 -0.180910 -0.707456 0.150638 -0.690517 0.691065 0.178805 -0.700327 0.070479 -0.980971 -0.180910 -0.719348 0.075662 -0.690517 -0.016169 -0.993214 0.115171 -0.139803 0.116300 0.983326 -0.990047 -0.000202 -0.140735 0.088016 -0.989439 0.115171 -0.151222 0.101007 0.983326 -0.984574 -0.103965 -0.140735 0.190256 -0.974955 0.115171 -0.160891 0.084763 0.983326 -0.968461 -0.205614 -0.140735 0.291391 -0.949646 0.115171 -0.168889 0.067433 0.983326 -0.941577 -0.305983 -0.140735 0.389316 -0.913876 0.115171 -0.175026 0.049361 0.983326 -0.904322 -0.402982 -0.140735 0.482084 -0.868522 0.115171 -0.179205 0.030925 0.983326 -0.857602 -0.494685 -0.140735 0.570456 -0.813213 0.115171 -0.181459 0.011972 0.983326 -0.801032 -0.581843 -0.140735 0.652545 -0.748946 0.115171 -0.181714 -0.007112 0.983326 -0.735639 -0.662593 -0.140735 0.727446 -0.676430 0.115171 -0.179968 -0.026118 0.983326 -0.662143 -0.736044 -0.140735 0.793738 -0.597257 0.115171 -0.176284 -0.044659 0.983326 -0.582155 -0.800806 -0.140735 0.851963 -0.510778 0.115171 -0.170633 -0.062889 0.983326 -0.495018 -0.857409 -0.140735 0.900804 -0.418673 0.115171 -0.163102 -0.080426 0.983326 -0.402429 -0.904569 -0.140735 0.939401 -0.322896 0.115171 -0.153871 -0.096924 0.983326 -0.306350 -0.941458 -0.140735 0.968069 -0.222662 0.115171 -0.142866 -0.112517 0.983326 -0.205991 -0.968381 -0.140735 0.986074 -0.119975 0.115171 -0.130286 -0.126871 0.983326 -0.103363 -0.984637 -0.140735 0.993204 -0.016776 0.115171 -0.116386 -0.139732 0.983326 -0.000403 -0.990047 -0.140735 0.989492 0.087411 0.115171 -0.101100 -0.151161 0.983326 0.103363 -0.984637 -0.140735 0.974881 0.190636 0.115171 -0.084700 -0.160924 0.983326 0.205991 -0.968381 -0.140735 0.949532 0.291760 0.115171 -0.067368 -0.168915 0.983326 0.306350 -0.941458 -0.140735 0.914113 0.388757 0.115171 -0.049468 -0.174996 0.983326 0.402429 -0.904569 -0.140735 0.868334 0.482422 0.115171 -0.030855 -0.179217 0.983326 0.495018 -0.857409 -0.140735 0.812991 0.570773 0.115171 -0.011902 -0.181463 0.983326 0.582155 -0.800806 -0.140735 0.749345 0.652088 0.115171 0.007001 -0.181719 0.983326 0.662143 -0.736044 -0.140735 0.676874 0.727033 0.115171 0.026008 -0.179984 0.983326 0.735639 -0.662593 -0.140735 0.596948 0.793970 0.115171 0.044728 -0.176267 0.983326 0.801032 -0.581843 -0.140735 0.510447 0.852162 0.115171 0.062956 -0.170608 0.983326 0.857602 -0.494685 -0.140735 0.419224 0.900548 0.115171 0.080327 -0.163151 0.983326 0.904322 -0.402982 -0.140735 0.322531 0.939526 0.115171 0.096984 -0.153834 0.983326 0.941577 -0.305983 -0.140735 0.222286 0.968155 0.115171 0.112573 -0.142822 0.983326 0.968461 -0.205614 -0.140735 0.120578 0.986000 0.115171 0.126791 -0.130364 0.983326 0.984574 -0.103965 -0.140735 0.016574 0.993207 0.115171 0.139756 -0.116357 0.983326 0.990047 -0.000202 -0.140735 -0.087613 0.989474 0.115171 0.151181 -0.101069 0.983326 0.984616 0.103564 -0.140735 -0.190834 0.974843 0.115171 0.160941 -0.084667 0.983326 0.968339 0.206188 -0.140735 -0.291004 0.949764 0.115171 0.168861 -0.067502 0.983326 0.941702 0.305600 -0.140735 -0.388944 0.914034 0.115171 0.175006 -0.049432 0.983326 0.904486 0.402614 -0.140735 -0.482599 0.868236 0.115171 0.179223 -0.030818 0.983326 0.857308 0.495193 -0.140735 -0.570938 0.812875 0.115171 0.181466 -0.011865 0.983326 0.800687 0.582318 -0.140735 -0.652240 0.749212 0.115171 0.181717 0.007038 0.983326 0.735909 0.662293 -0.140735 -0.727171 0.676726 0.115171 0.179979 0.026044 0.983326 0.662443 0.735774 -0.140735 -0.794092 0.596787 0.115171 0.176258 0.044764 0.983326 0.581680 0.801150 -0.140735 -0.851755 0.511125 0.115171 0.170658 0.062820 0.983326 0.495368 0.857207 -0.140735 -0.900634 0.419040 0.115171 0.163135 0.080360 0.983326 0.402798 0.904405 -0.140735 -0.939592 0.322340 0.115171 0.153814 0.097015 0.983326 0.305791 0.941640 -0.140735 -0.968201 0.222088 0.115171 0.142799 0.112602 0.983326 0.205417 0.968503 -0.140735 -0.986025 0.120377 0.115171 0.130338 0.126818 0.983326 0.103764 0.984595 -0.140735 -0.993211 0.016371 0.115171 0.116329 0.139779 0.983326 0.000000 0.990047 -0.140735 -0.989457 -0.087814 0.115171 0.101038 0.151202 0.983326 -0.103764 0.984595 -0.140735 -0.974994 -0.190058 0.115171 0.084795 0.160874 0.983326 -0.205417 0.968503 -0.140735 -0.949705 -0.291198 0.115171 0.067468 0.168875 0.983326 -0.305791 0.941640 -0.140735 -0.913955 -0.389130 0.115171 0.049397 0.175016 0.983326 -0.402798 0.904405 -0.140735 -0.868138 -0.482776 0.115171 0.030782 0.179229 0.983326 -0.495368 0.857207 -0.140735 -0.813329 -0.570291 0.115171 0.012009 0.181456 0.983326 -0.581680 0.801150 -0.140735 -0.749079 -0.652393 0.115171 -0.007075 0.181716 0.983326 -0.662443 0.735774 -0.140735 -0.676578 -0.727309 0.115171 -0.026081 0.179973 0.983326 -0.735909 0.662293 -0.140735 -0.597419 -0.793616 0.115171 -0.044623 0.176293 0.983326 -0.800687 0.582318 -0.140735 -0.510952 -0.851859 0.115171 -0.062855 0.170646 0.983326 -0.857308 0.495193 -0.140735 -0.418857 -0.900719 0.115171 -0.080393 0.163118 0.983326 -0.904486 0.402614 -0.140735 -0.322148 -0.939658 0.115171 -0.097046 0.153794 0.983326 -0.941702 0.305600 -0.140735 -0.222859 -0.968023 0.115171 -0.112488 0.142888 0.983326 -0.968339 0.206188 -0.140735 -0.120176 -0.986049 0.115171 -0.126844 0.130312 0.983326 -0.984616 0.103564 -0.140735 0.188781 0.915155 0.356165 -0.428979 0.403103 -0.808384 -0.883368 -0.000180 0.468680 0.091826 0.929900 0.356165 -0.468865 0.355922 -0.808384 -0.878484 -0.092762 0.468680 -0.005205 0.934409 0.356165 -0.503281 0.305325 -0.808384 -0.864107 -0.183459 0.468680 -0.103109 0.928717 0.356165 -0.532509 0.250896 -0.808384 -0.840121 -0.273013 0.468680 -0.199878 0.912795 0.356165 -0.555872 0.193704 -0.808384 -0.806880 -0.359560 0.468680 -0.293557 0.887114 0.356165 -0.572977 0.134951 -0.808384 -0.765193 -0.441382 0.468680 -0.384916 0.851461 0.356165 -0.583966 0.074155 -0.808384 -0.714719 -0.519148 0.468680 -0.472036 0.806430 0.356165 -0.588521 0.012543 -0.808384 -0.656372 -0.591197 0.468680 -0.553956 0.752516 0.356165 -0.586595 -0.049207 -0.808384 -0.590796 -0.656734 0.468680 -0.629083 0.690942 0.356165 -0.578317 -0.109837 -0.808384 -0.519426 -0.714517 0.468680 -0.698034 0.621204 0.356165 -0.563620 -0.169844 -0.808384 -0.441679 -0.765022 0.468680 -0.759296 0.544624 0.356165 -0.542715 -0.227980 -0.808384 -0.359067 -0.807100 0.468680 -0.811733 0.462857 0.356165 -0.516116 -0.283089 -0.808384 -0.273340 -0.840014 0.468680 -0.855773 0.375232 0.356165 -0.483603 -0.335623 -0.808384 -0.183795 -0.864036 0.468680 -0.890387 0.283475 0.356165 -0.445764 -0.384459 -0.808384 -0.092225 -0.878540 0.468680 -0.915039 0.189340 0.356165 -0.403365 -0.428733 -0.808384 -0.000360 -0.883368 0.468680 -0.929844 0.092394 0.356165 -0.356209 -0.468647 -0.808384 0.092225 -0.878540 0.468680 -0.934407 -0.005569 0.356165 -0.305129 -0.503399 -0.808384 0.183795 -0.864036 0.468680 -0.928677 -0.103471 0.356165 -0.250689 -0.532607 -0.808384 0.273340 -0.840014 0.468680 -0.912917 -0.199320 0.356165 -0.194043 -0.555754 -0.808384 0.359067 -0.807100 0.468680 -0.886999 -0.293902 0.356165 -0.134728 -0.573030 -0.808384 0.441679 -0.765022 0.468680 -0.851311 -0.385248 0.356165 -0.073928 -0.583994 -0.808384 0.519426 -0.714517 0.468680 -0.806718 -0.471543 0.356165 -0.012903 -0.588514 -0.808384 0.590796 -0.656734 0.468680 -0.752854 -0.553496 0.356165 0.048849 -0.586625 -0.808384 0.656372 -0.591197 0.468680 -0.690697 -0.629352 0.356165 0.110062 -0.578274 -0.808384 0.714719 -0.519148 0.468680 -0.620933 -0.698276 0.356165 0.170063 -0.563554 -0.808384 0.765193 -0.441382 0.468680 -0.545088 -0.758964 0.356165 0.227649 -0.542854 -0.808384 0.806880 -0.359560 0.468680 -0.462541 -0.811913 0.356165 0.283290 -0.516005 -0.808384 0.840121 -0.273013 0.468680 -0.374899 -0.855919 0.356165 0.335811 -0.483473 -0.808384 0.864107 -0.183459 0.468680 -0.284019 -0.890213 0.356165 0.384187 -0.445999 -0.808384 0.878484 -0.092762 0.468680 -0.189154 -0.915078 0.356165 0.428815 -0.403277 -0.808384 0.883368 -0.000180 0.468680 -0.092205 -0.929863 0.356165 0.468720 -0.356113 -0.808384 0.878522 0.092404 0.468680 0.005759 -0.934405 0.356165 0.503461 -0.305027 -0.808384 0.863998 0.183971 0.468680 0.102731 -0.928759 0.356165 0.532407 -0.251113 -0.808384 0.840232 0.272671 0.468680 0.199506 -0.912877 0.356165 0.555793 -0.193930 -0.808384 0.807026 0.359231 0.468680 0.294083 -0.886940 0.356165 0.573057 -0.134611 -0.808384 0.764932 0.441835 0.468680 0.385421 -0.851233 0.356165 0.584009 -0.073809 -0.808384 0.714411 0.519572 0.468680 0.471707 -0.806622 0.356165 0.588516 -0.012783 -0.808384 0.656613 0.590930 0.468680 0.553649 -0.752741 0.356165 0.586615 0.048968 -0.808384 0.591063 0.656493 0.468680 0.629493 -0.690569 0.356165 0.578252 0.110180 -0.808384 0.519003 0.714825 0.468680 0.697781 -0.621489 0.356165 0.563689 0.169615 -0.808384 0.441991 0.764842 0.468680 0.759075 -0.544933 0.356165 0.542808 0.227759 -0.808384 0.359396 0.806953 0.468680 0.812007 -0.462376 0.356165 0.515948 0.283395 -0.808384 0.272842 0.840176 0.468680 0.855995 -0.374725 0.356165 0.483404 0.335909 -0.808384 0.183283 0.864145 0.468680 0.890271 -0.283837 0.356165 0.445921 0.384278 -0.808384 0.092583 0.878503 0.468680 0.915116 -0.188967 0.356165 0.403190 0.428897 -0.808384 0.000000 0.883368 0.468680 0.929882 -0.092016 0.356165 0.356018 0.468792 -0.808384 -0.092583 0.878503 0.468680 0.934410 0.005015 0.356165 0.305428 0.503218 -0.808384 -0.183283 0.864145 0.468680 0.928738 0.102920 0.356165 0.251005 0.532458 -0.808384 -0.272842 0.840176 0.468680 0.912836 0.199692 0.356165 0.193817 0.555833 -0.808384 -0.359396 0.806953 0.468680 0.886880 0.294264 0.356165 0.134494 0.573085 -0.808384 -0.441991 0.764842 0.468680 0.851539 0.384743 0.356165 0.074274 0.583951 -0.808384 -0.519003 0.714825 0.468680 0.806526 0.471871 0.356165 0.012663 0.588519 -0.808384 -0.591063 0.656493 0.468680 0.752628 0.553802 0.356165 -0.049088 0.586605 -0.808384 -0.656613 0.590930 0.468680 0.691070 0.628942 0.356165 -0.109720 0.578339 -0.808384 -0.714411 0.519572 0.468680 0.621346 0.697908 0.356165 -0.169730 0.563655 -0.808384 -0.764932 0.441835 0.468680 0.544779 0.759185 0.356165 -0.227870 0.542762 -0.808384 -0.807026 0.359231 0.468680 0.462210 0.812101 0.356165 -0.283500 0.515890 -0.808384 -0.840232 0.272671 0.468680 0.375407 0.855696 0.356165 -0.335524 0.483672 -0.808384 -0.863998 0.183971 0.468680 0.283656 0.890329 0.356165 -0.384369 0.445843 -0.808384 -0.878522 0.092404 0.468680 -0.554145 -0.732079 0.396212 -0.595618 0.681219 0.425651 -0.581517 -0.000118 -0.813534 -0.474366 -0.786126 0.396212 -0.663735 0.615043 0.425651 -0.578302 -0.061065 -0.813534 -0.390193 -0.831123 0.396212 -0.723998 0.542815 0.425651 -0.568838 -0.120770 -0.813534 -0.300936 -0.867441 0.396212 -0.776901 0.463946 0.425651 -0.553048 -0.179723 -0.813534 -0.208365 -0.894204 0.396212 -0.821247 0.379966 0.425651 -0.531166 -0.236697 -0.813534 -0.114409 -0.911003 0.396212 -0.856255 0.292657 0.425651 -0.503724 -0.290560 -0.813534 -0.018300 -0.917977 0.396212 -0.882212 0.201304 0.425651 -0.470497 -0.341753 -0.813534 0.078012 -0.914839 0.396212 -0.898451 0.107733 0.425651 -0.432087 -0.389183 -0.813534 0.173464 -0.901625 0.396212 -0.904794 0.012975 0.425651 -0.388919 -0.432325 -0.813534 0.266127 -0.878745 0.396212 -0.901253 -0.081024 0.425651 -0.341936 -0.470364 -0.813534 0.356760 -0.846013 0.396212 -0.887797 -0.175036 0.425651 -0.290756 -0.503611 -0.813534 0.443463 -0.803963 0.396212 -0.864563 -0.267119 0.425651 -0.236372 -0.531310 -0.813534 0.524529 -0.753582 0.396212 -0.832161 -0.355428 0.425651 -0.179939 -0.552978 -0.813534 0.600621 -0.694458 0.396212 -0.790326 -0.440687 0.425651 -0.120991 -0.568791 -0.813534 0.670097 -0.627683 0.396212 -0.739787 -0.521092 0.425651 -0.060712 -0.578340 -0.813534 0.731741 -0.554592 0.396212 -0.681583 -0.595202 0.425651 -0.000237 -0.581517 -0.813534 0.785836 -0.474846 0.396212 -0.615448 -0.663359 0.425651 0.060712 -0.578340 -0.813534 0.831275 -0.389869 0.396212 -0.542534 -0.724209 0.425651 0.120991 -0.568791 -0.813534 0.867558 -0.300599 0.396212 -0.463643 -0.777082 0.425651 0.179939 -0.552978 -0.813534 0.894076 -0.208911 0.396212 -0.380468 -0.821015 0.425651 0.236372 -0.531310 -0.813534 0.911048 -0.114055 0.396212 -0.292324 -0.856369 0.425651 0.290756 -0.503611 -0.813534 0.917984 -0.017942 0.396212 -0.200960 -0.882290 0.425651 0.341936 -0.470364 -0.813534 0.914887 0.077453 0.396212 -0.108282 -0.898385 0.425651 0.388919 -0.432325 -0.813534 0.901730 0.172913 0.396212 -0.013528 -0.904786 0.425651 0.432087 -0.389183 -0.813534 0.878641 0.266469 0.396212 0.081375 -0.901221 0.425651 0.470497 -0.341753 -0.813534 0.845875 0.357089 0.396212 0.175381 -0.887729 0.425651 0.503724 -0.290560 -0.813534 0.804234 0.442972 0.396212 0.266591 -0.864726 0.425651 0.531166 -0.236697 -0.813534 0.753378 0.524822 0.396212 0.355752 -0.832023 0.425651 0.553048 -0.179723 -0.813534 0.694224 0.600891 0.396212 0.440995 -0.790155 0.425651 0.568838 -0.120770 -0.813534 0.628093 0.669713 0.396212 0.520640 -0.740105 0.425651 0.578302 -0.061065 -0.813534 0.554443 0.731854 0.396212 0.595341 -0.681462 0.425651 0.581517 -0.000118 -0.813534 0.474686 0.785932 0.396212 0.663484 -0.615313 0.425651 0.578327 0.060829 -0.813534 0.389700 0.831354 0.396212 0.724319 -0.542386 0.425651 0.568767 0.121107 -0.813534 0.301289 0.867318 0.396212 0.776712 -0.464262 0.425651 0.553121 0.179498 -0.813534 0.208729 0.894119 0.396212 0.821092 -0.380300 0.425651 0.531262 0.236481 -0.813534 0.113869 0.911071 0.396212 0.856428 -0.292149 0.425651 0.503551 0.290858 -0.813534 0.017755 0.917988 0.396212 0.882331 -0.200781 0.425651 0.470294 0.342032 -0.813534 -0.077639 0.914871 0.396212 0.898407 -0.108099 0.425651 0.432246 0.389007 -0.813534 -0.173097 0.901695 0.396212 0.904789 -0.013344 0.425651 0.389095 0.432167 -0.813534 -0.266647 0.878587 0.396212 0.901204 0.081558 0.425651 0.341658 0.470566 -0.813534 -0.356415 0.846159 0.396212 0.887868 0.174674 0.425651 0.290961 0.503492 -0.813534 -0.443136 0.804144 0.396212 0.864671 0.266767 0.425651 0.236589 0.531214 -0.813534 -0.524975 0.753271 0.396212 0.831950 0.355921 0.425651 0.179611 0.553085 -0.813534 -0.601032 0.694101 0.396212 0.790065 0.441155 0.425651 0.120654 0.568863 -0.813534 -0.669841 0.627956 0.396212 0.739999 0.520791 0.425651 0.060947 0.578315 -0.813534 -0.731966 0.554294 0.396212 0.681341 0.595480 0.425651 0.000000 0.581517 -0.813534 -0.786029 0.474526 0.396212 0.615178 0.663609 0.425651 -0.060947 0.578315 -0.813534 -0.831044 0.390362 0.396212 0.542963 0.723887 0.425651 -0.120654 0.568863 -0.813534 -0.867380 0.301113 0.396212 0.464104 0.776807 0.425651 -0.179611 0.553085 -0.813534 -0.894161 0.208547 0.396212 0.380133 0.821170 0.425651 -0.236589 0.531214 -0.813534 -0.911094 0.113684 0.396212 0.291975 0.856488 0.425651 -0.290961 0.503492 -0.813534 -0.917973 0.018486 0.396212 0.201483 0.882171 0.425651 -0.341658 0.470566 -0.813534 -0.914855 -0.077826 0.396212 0.107916 0.898429 0.425651 -0.389095 0.432167 -0.813534 -0.901660 -0.173280 0.396212 0.013159 0.904792 0.425651 -0.432246 0.389007 -0.813534 -0.878799 -0.265948 0.396212 -0.080840 0.901269 0.425651 -0.470294 0.342032 -0.813534 -0.846086 -0.356588 0.396212 -0.174855 0.887833 0.425651 -0.503551 0.290858 -0.813534 -0.804053 -0.443300 0.396212 -0.266943 0.864617 0.425651 -0.531262 0.236481 -0.813534 -0.753164 -0.525129 0.396212 -0.356091 0.831878 0.425651 -0.553121 0.179498 -0.813534 -0.694580 -0.600479 0.396212 -0.440526 0.790416 0.425651 -0.568767 0.121107 -0.813534 -0.627820 -0.669969 0.396212 -0.520941 0.739893 0.425651 -0.578327 0.060829 -0.813534 0.225530 -0.867479 -0.443415 -0.392946 -0.497474 0.773377 -0.891476 -0.000182 -0.453068 0.315206 -0.839064 -0.443415 -0.338643 -0.535918 0.773377 -0.886547 -0.093614 -0.453068 0.400608 -0.801808 -0.443415 -0.281178 -0.568178 0.773377 -0.872039 -0.185143 -0.453068 0.482437 -0.755405 -0.443415 -0.220081 -0.594518 0.773377 -0.847832 -0.275519 -0.453068 0.558952 -0.700682 -0.443415 -0.156559 -0.614310 0.773377 -0.814286 -0.362860 -0.453068 0.628672 -0.638870 -0.443415 -0.091940 -0.627244 0.773377 -0.772217 -0.445433 -0.453068 0.692167 -0.569462 -0.443415 -0.025694 -0.633425 0.773377 -0.721280 -0.523914 -0.453068 0.748039 -0.493782 -0.443415 0.040835 -0.632629 0.773377 -0.662397 -0.596623 -0.453068 0.795671 -0.412663 -0.443415 0.106914 -0.624865 0.773377 -0.596219 -0.662762 -0.453068 0.834212 -0.327832 -0.443415 0.171206 -0.610390 0.773377 -0.524194 -0.721076 -0.453068 0.863976 -0.238595 -0.443415 0.234236 -0.589085 0.773377 -0.445733 -0.772044 -0.453068 0.884225 -0.146730 -0.443415 0.294686 -0.561291 0.773377 -0.362363 -0.814508 -0.453068 0.894680 -0.054144 -0.443415 0.351363 -0.527666 0.773377 -0.275849 -0.847725 -0.453068 0.895427 0.039923 -0.443415 0.404731 -0.487934 0.773377 -0.185482 -0.871967 -0.453068 0.886311 0.133550 -0.443415 0.453641 -0.442829 0.773377 -0.093072 -0.886604 -0.453068 0.867616 0.225000 -0.443415 0.497234 -0.393250 0.773377 -0.000363 -0.891476 -0.453068 0.839256 0.314693 -0.443415 0.535711 -0.338970 0.773377 0.093072 -0.886604 -0.453068 0.801652 0.400920 -0.443415 0.568287 -0.280957 0.773377 0.185482 -0.871967 -0.453068 0.755218 0.482731 -0.443415 0.594604 -0.219849 0.773377 0.275849 -0.847725 -0.453068 0.701024 0.558524 -0.443415 0.614214 -0.156934 0.773377 0.362363 -0.814508 -0.453068 0.638626 0.628920 -0.443415 0.627279 -0.091696 0.773377 0.445733 -0.772044 -0.453068 0.569193 0.692389 -0.443415 0.633435 -0.025447 0.773377 0.524194 -0.721076 -0.453068 0.494239 0.747737 -0.443415 0.632654 0.040449 0.773377 0.596219 -0.662762 -0.453068 0.413149 0.795419 -0.443415 0.624931 0.106533 0.773377 0.662397 -0.596623 -0.453068 0.327508 0.834339 -0.443415 0.610323 0.171443 0.773377 0.721280 -0.523914 -0.453068 0.238259 0.864069 -0.443415 0.588994 0.234465 0.773377 0.772217 -0.445433 -0.453068 0.147271 0.884135 -0.443415 0.561471 0.294343 0.773377 0.814286 -0.362860 -0.453068 0.053796 0.894701 -0.443415 0.527529 0.351568 0.773377 0.847832 -0.275519 -0.453068 -0.040272 0.895411 -0.443415 0.487777 0.404921 0.773377 0.872039 -0.185143 -0.453068 -0.133009 0.886392 -0.443415 0.443106 0.453371 0.773377 0.886547 -0.093614 -0.453068 -0.225177 0.867570 -0.443415 0.393149 0.497314 0.773377 0.891476 -0.000182 -0.453068 -0.314864 0.839192 -0.443415 0.338861 0.535780 0.773377 0.886585 0.093253 -0.453068 -0.401083 0.801570 -0.443415 0.280841 0.568344 0.773377 0.871929 0.185659 -0.453068 -0.482129 0.755602 -0.443415 0.220323 0.594429 0.773377 0.847944 0.275174 -0.453068 -0.558667 0.700910 -0.443415 0.156809 0.614246 0.773377 0.814434 0.362529 -0.453068 -0.629050 0.638497 -0.443415 0.091568 0.627298 0.773377 0.771953 0.445891 -0.453068 -0.692505 0.569052 -0.443415 0.025318 0.633440 0.773377 0.720969 0.524341 -0.453068 -0.747838 0.494087 -0.443415 -0.040578 0.632646 0.773377 0.662640 0.596354 -0.453068 -0.795503 0.412987 -0.443415 -0.106660 0.624909 0.773377 0.596489 0.662519 -0.453068 -0.834406 0.327338 -0.443415 -0.171567 0.610289 0.773377 0.523767 0.721386 -0.453068 -0.863879 0.238947 -0.443415 -0.233996 0.589180 0.773377 0.446048 0.771862 -0.453068 -0.884165 0.147090 -0.443415 -0.294458 0.561411 0.773377 0.362695 0.814360 -0.453068 -0.894711 0.053614 -0.443415 -0.351676 0.527458 0.773377 0.275346 0.847888 -0.453068 -0.895403 -0.040454 -0.443415 -0.405020 0.487695 0.773377 0.184965 0.872077 -0.453068 -0.886365 -0.133189 -0.443415 -0.453461 0.443013 0.773377 0.093433 0.886566 -0.453068 -0.867525 -0.225353 -0.443415 -0.497394 0.393047 0.773377 0.000000 0.891476 -0.453068 -0.839128 -0.315035 -0.443415 -0.535849 0.338752 0.773377 -0.093433 0.886566 -0.453068 -0.801890 -0.400445 -0.443415 -0.568121 0.281294 0.773377 -0.184965 0.872077 -0.453068 -0.755504 -0.482283 -0.443415 -0.594473 0.220202 0.773377 -0.275346 0.847888 -0.453068 -0.700796 -0.558809 -0.443415 -0.614278 0.156684 0.773377 -0.362695 0.814360 -0.453068 -0.638369 -0.629180 -0.443415 -0.627317 0.091440 0.773377 -0.446048 0.771862 -0.453068 -0.569603 -0.692051 -0.443415 -0.633420 0.025823 0.773377 -0.523767 0.721386 -0.453068 -0.493934 -0.747939 -0.443415 -0.632638 -0.040706 0.773377 -0.596489 0.662519 -0.453068 -0.412825 -0.795587 -0.443415 -0.624887 -0.106787 0.773377 -0.662640 0.596354 -0.453068 -0.328002 -0.834145 -0.443415 -0.610425 -0.171081 0.773377 -0.720969 0.524341 -0.453068 -0.238771 -0.863928 -0.443415 -0.589132 -0.234116 0.773377 -0.771953 0.445891 -0.453068 -0.146910 -0.884195 -0.443415 -0.561351 -0.294572 0.773377 -0.814434 0.362529 -0.453068 -0.053431 -0.894722 -0.443415 -0.527386 -0.351783 0.773377 -0.847944 0.275174 -0.453068 0.039741 -0.895435 -0.443415 -0.488017 -0.404632 0.773377 -0.871929 0.185659 -0.453068 0.133370 -0.886338 -0.443415 -0.442921 -0.453551 0.773377 -0.886585 0.093253 -0.453068 -0.632803 0.389102 0.669448 0.267172 0.921195 -0.282877 -0.726760 -0.000148 -0.686892 -0.670099 0.320637 0.669448 0.169153 0.944123 -0.282877 -0.722741 -0.076317 -0.686892 -0.699764 0.249339 0.669448 0.070227 0.956582 -0.282877 -0.710914 -0.150934 -0.686892 -0.722043 0.174626 0.669448 -0.030417 0.958674 -0.282877 -0.691179 -0.224612 -0.686892 -0.736368 0.097989 0.669448 -0.130725 0.950206 -0.282877 -0.663832 -0.295815 -0.686892 -0.742562 0.021015 0.669448 -0.228662 0.931501 -0.282877 -0.629536 -0.363131 -0.686892 -0.740675 -0.056926 0.669448 -0.325031 0.902405 -0.282877 -0.588010 -0.427111 -0.686892 -0.730629 -0.134241 0.669448 -0.417819 0.863370 -0.282877 -0.540007 -0.486386 -0.686892 -0.712536 -0.210077 0.669448 -0.506005 0.814825 -0.282877 -0.486056 -0.540304 -0.686892 -0.686878 -0.282912 0.669448 -0.587860 0.757892 -0.282877 -0.427340 -0.587844 -0.686892 -0.653443 -0.353344 0.669448 -0.664055 0.692106 -0.282877 -0.363376 -0.629394 -0.686892 -0.612812 -0.419883 0.669448 -0.732936 0.618697 -0.282877 -0.295410 -0.664013 -0.686892 -0.565912 -0.481232 0.669448 -0.793204 0.539266 -0.282877 -0.224881 -0.691092 -0.686892 -0.512358 -0.537893 0.669448 -0.845355 0.453162 -0.282877 -0.151211 -0.710855 -0.686892 -0.453161 -0.588630 0.669448 -0.888194 0.362067 -0.282877 -0.075875 -0.722788 -0.686892 -0.389488 -0.632565 0.669448 -0.921031 0.267735 -0.282877 -0.000296 -0.726759 -0.686892 -0.321046 -0.669903 0.669448 -0.944019 0.169729 -0.282877 0.075875 -0.722788 -0.686892 -0.249067 -0.699861 0.669448 -0.956609 0.069855 -0.282877 0.151211 -0.710855 -0.686892 -0.174345 -0.722111 0.669448 -0.958662 -0.030790 -0.282877 0.224881 -0.691092 -0.686892 -0.098439 -0.736308 0.669448 -0.950286 -0.130144 -0.282877 0.295410 -0.664013 -0.686892 -0.020726 -0.742570 0.669448 -0.931412 -0.229024 -0.282877 0.363376 -0.629394 -0.686892 0.057214 -0.740653 0.669448 -0.902279 -0.325382 -0.282877 0.427340 -0.587844 -0.686892 0.133795 -0.730711 0.669448 -0.863625 -0.417292 -0.282877 0.486056 -0.540304 -0.686892 0.209641 -0.712664 0.669448 -0.815134 -0.505508 -0.282877 0.540007 -0.486386 -0.686892 0.283179 -0.686767 0.669448 -0.757663 -0.588155 -0.282877 0.588010 -0.427111 -0.686892 0.353598 -0.653306 0.669448 -0.691848 -0.664325 -0.282877 0.629536 -0.363131 -0.686892 0.419509 -0.613068 0.669448 -0.619144 -0.732558 -0.282877 0.663832 -0.295815 -0.686892 0.481452 -0.565724 0.669448 -0.538957 -0.793414 -0.282877 0.691179 -0.224612 -0.686892 0.538092 -0.512149 0.669448 -0.452833 -0.845531 -0.282877 0.710914 -0.150934 -0.686892 0.588353 -0.453521 0.669448 -0.362610 -0.887972 -0.282877 0.722741 -0.076317 -0.686892 0.632645 -0.389360 0.669448 -0.267547 -0.921086 -0.282877 0.726760 -0.000148 -0.686892 0.669968 -0.320910 0.669448 -0.169537 -0.944054 -0.282877 0.722772 0.076022 -0.686892 0.699912 -0.248925 0.669448 -0.069660 -0.956623 -0.282877 0.710824 0.151355 -0.686892 0.721972 -0.174920 0.669448 0.030026 -0.958686 -0.282877 0.691271 0.224330 -0.686892 0.736328 -0.098289 0.669448 0.130338 -0.950259 -0.282877 0.663952 0.295545 -0.686892 0.742574 -0.020575 0.669448 0.229214 -0.931365 -0.282877 0.629321 0.363504 -0.686892 0.740641 0.057365 0.669448 0.325565 -0.902213 -0.282877 0.587757 0.427459 -0.686892 0.730684 0.133943 0.669448 0.417467 -0.863540 -0.282877 0.540205 0.486166 -0.686892 0.712622 0.209787 0.669448 0.505673 -0.815031 -0.282877 0.486276 0.540106 -0.686892 0.686710 0.283319 0.669448 0.588310 -0.757544 -0.282877 0.426991 0.588097 -0.686892 0.653587 0.353077 0.669448 0.663773 -0.692377 -0.282877 0.363632 0.629246 -0.686892 0.612983 0.419633 0.669448 0.732684 -0.618995 -0.282877 0.295680 0.663892 -0.686892 0.565626 0.481567 0.669448 0.793524 -0.538796 -0.282877 0.224471 0.691225 -0.686892 0.512039 0.538197 0.669448 0.845623 -0.452661 -0.282877 0.150789 0.710944 -0.686892 0.453401 0.588445 0.669448 0.888046 -0.362429 -0.282877 0.076170 0.722757 -0.686892 0.389231 0.632724 0.669448 0.921140 -0.267359 -0.282877 0.000000 0.726760 -0.686892 0.320773 0.670033 0.669448 0.944088 -0.169345 -0.282877 -0.076170 0.722757 -0.686892 0.249482 0.699713 0.669448 0.956567 -0.070422 -0.282877 -0.150789 0.710944 -0.686892 0.174773 0.722007 0.669448 0.958680 0.030221 -0.282877 -0.224471 0.691225 -0.686892 0.098139 0.736348 0.669448 0.950233 0.130531 -0.282877 -0.295680 0.663892 -0.686892 0.020424 0.742579 0.669448 0.931319 0.229404 -0.282877 -0.363632 0.629246 -0.686892 -0.056776 0.740687 0.669448 0.902472 0.324847 -0.282877 -0.426991 0.588097 -0.686892 -0.134092 0.730657 0.669448 0.863455 0.417643 -0.282877 -0.486276 0.540106 -0.686892 -0.209932 0.712579 0.669448 0.814928 0.505839 -0.282877 -0.540205 0.486166 -0.686892 -0.282772 0.686935 0.669448 0.758012 0.587706 -0.282877 -0.587757 0.427459 -0.686892 -0.353210 0.653515 0.669448 0.692241 0.663914 -0.282877 -0.629321 0.363504 -0.686892 -0.419758 0.612897 0.669448 0.618846 0.732810 -0.282877 -0.663952 0.295545 -0.686892 -0.481682 0.565528 0.669448 0.538634 0.793633 -0.282877 -0.691271 0.224330 -0.686892 -0.537789 0.512468 0.669448 0.453335 0.845262 -0.282877 -0.710824 0.151355 -0.686892 -0.588537 0.453281 0.669448 0.362248 0.888120 -0.282877 -0.722772 0.076022 -0.686892 -0.273788 0.431121 0.859753 0.130613 0.902294 -0.410859 -0.952880 -0.000194 -0.303347 -0.317465 0.400051 0.859753 0.035326 0.911014 -0.410859 -0.947612 -0.100062 -0.303347 -0.357280 0.364933 0.859753 -0.059439 0.909759 -0.410859 -0.932104 -0.197895 -0.303347 -0.393560 0.325478 0.859753 -0.154461 0.898519 -0.410859 -0.906230 -0.294496 -0.303347 -0.425505 0.282437 0.859753 -0.247782 0.877382 -0.410859 -0.870373 -0.387854 -0.303347 -0.452526 0.236738 0.859753 -0.337526 0.846918 -0.410859 -0.825406 -0.476114 -0.303347 -0.474846 0.188007 0.859753 -0.424430 0.806879 -0.410859 -0.770961 -0.560000 -0.303347 -0.491935 0.137204 0.859753 -0.506660 0.757952 -0.410859 -0.708022 -0.637718 -0.303347 -0.503606 0.084890 0.859753 -0.583308 0.700676 -0.410859 -0.637286 -0.708412 -0.303347 -0.509697 0.032151 0.859753 -0.652895 0.636335 -0.410859 -0.560300 -0.770743 -0.303347 -0.510260 -0.021446 0.859753 -0.715992 0.564402 -0.410859 -0.476435 -0.825221 -0.303347 -0.505202 -0.074807 0.859753 -0.771202 0.486253 -0.410859 -0.387322 -0.870610 -0.303347 -0.494706 -0.126849 0.859753 -0.817514 0.403565 -0.410859 -0.294849 -0.906115 -0.303347 -0.478687 -0.178000 0.859753 -0.855308 0.315661 -0.410859 -0.198258 -0.932027 -0.303347 -0.457395 -0.227189 0.859753 -0.883681 0.224280 -0.410859 -0.099483 -0.947673 -0.303347 -0.431288 -0.273525 0.859753 -0.902214 0.131164 -0.410859 -0.000388 -0.952880 -0.303347 -0.400245 -0.317221 0.859753 -0.910992 0.035883 -0.410859 0.099483 -0.947673 -0.303347 -0.364794 -0.357422 0.859753 -0.909736 -0.059793 -0.410859 0.198258 -0.932027 -0.303347 -0.325325 -0.393687 0.859753 -0.898459 -0.154811 -0.410859 0.294849 -0.906115 -0.303347 -0.282697 -0.425332 0.859753 -0.877533 -0.247246 -0.410859 0.387322 -0.870610 -0.303347 -0.236562 -0.452618 0.859753 -0.846787 -0.337856 -0.410859 0.476435 -0.825221 -0.303347 -0.187822 -0.474919 0.859753 -0.806714 -0.424744 -0.410859 0.560300 -0.770743 -0.303347 -0.137504 -0.491851 0.859753 -0.758261 -0.506196 -0.410859 0.637286 -0.708412 -0.303347 -0.085198 -0.503554 0.859753 -0.701032 -0.582880 -0.410859 0.708022 -0.637718 -0.303347 -0.031952 -0.509710 0.859753 -0.636081 -0.653143 -0.410859 0.770961 -0.560000 -0.303347 0.021645 -0.510252 0.859753 -0.564124 -0.716211 -0.410859 0.825406 -0.476114 -0.303347 0.074499 -0.505248 0.859753 -0.486724 -0.770905 -0.410859 0.870373 -0.387854 -0.303347 0.127042 -0.494657 0.859753 -0.403247 -0.817671 -0.410859 0.906230 -0.294496 -0.303347 0.178186 -0.478618 0.859753 -0.315328 -0.855431 -0.410859 0.932104 -0.197895 -0.303347 0.226910 -0.457534 0.859753 -0.224820 -0.883544 -0.410859 0.947612 -0.100062 -0.303347 0.273613 -0.431232 0.859753 -0.130980 -0.902241 -0.410859 0.952880 -0.000194 -0.303347 0.317302 -0.400181 0.859753 -0.035697 -0.911000 -0.410859 0.947652 0.099676 -0.303347 0.357496 -0.364721 0.859753 0.059979 -0.909724 -0.410859 0.931987 0.198448 -0.303347 0.393427 -0.325638 0.859753 0.154095 -0.898582 -0.410859 0.906350 0.294127 -0.303347 0.425390 -0.282610 0.859753 0.247424 -0.877483 -0.410859 0.870531 0.387499 -0.303347 0.452667 -0.236470 0.859753 0.338028 -0.846718 -0.410859 0.825124 0.476603 -0.303347 0.474957 -0.187725 0.859753 0.424909 -0.806627 -0.410859 0.770628 0.560457 -0.303347 0.491879 -0.137404 0.859753 0.506351 -0.758158 -0.410859 0.708282 0.637430 -0.303347 0.503571 -0.085095 0.859753 0.583023 -0.700913 -0.410859 0.637574 0.708152 -0.303347 0.509716 -0.031848 0.859753 0.653272 -0.635948 -0.410859 0.559843 0.771074 -0.303347 0.510269 0.021239 0.859753 0.715762 -0.564694 -0.410859 0.476771 0.825027 -0.303347 0.505232 0.074601 0.859753 0.771004 -0.486567 -0.410859 0.387677 0.870452 -0.303347 0.494631 0.127143 0.859753 0.817753 -0.403080 -0.410859 0.294312 0.906290 -0.303347 0.478582 0.178283 0.859753 0.855495 -0.315154 -0.410859 0.197705 0.932144 -0.303347 0.457488 0.227003 0.859753 0.883590 -0.224640 -0.410859 0.099869 0.947632 -0.303347 0.431177 0.273701 0.859753 0.902268 -0.130796 -0.410859 0.000000 0.952880 -0.303347 0.400116 0.317384 0.859753 0.911007 -0.035512 -0.410859 -0.099869 0.947632 -0.303347 0.365006 0.357206 0.859753 0.909771 0.059254 -0.410859 -0.197705 0.932144 -0.303347 0.325558 0.393494 0.859753 0.898550 0.154278 -0.410859 -0.294312 0.906290 -0.303347 0.282524 0.425447 0.859753 0.877432 0.247603 -0.410859 -0.387677 0.870452 -0.303347 0.236378 0.452715 0.859753 0.846649 0.338201 -0.410859 -0.476771 0.825027 -0.303347 0.188103 0.474808 0.859753 0.806965 0.424266 -0.410859 -0.559843 0.771074 -0.303347 0.137304 0.491907 0.859753 0.758055 0.506505 -0.410859 -0.637574 0.708152 -0.303347 0.084992 0.503589 0.859753 0.700794 0.583165 -0.410859 -0.708282 0.637430 -0.303347 0.032254 0.509691 0.859753 0.636468 0.652766 -0.410859 -0.770628 0.560457 -0.303347 -0.021343 0.510264 0.859753 0.564548 0.715877 -0.410859 -0.825124 0.476603 -0.303347 -0.074704 0.505217 0.859753 0.486410 0.771103 -0.410859 -0.870531 0.387499 -0.303347 -0.127243 0.494605 0.859753 0.402914 0.817835 -0.410859 -0.906350 0.294127 -0.303347 -0.177902 0.478723 0.859753 0.315835 0.855244 -0.410859 -0.931987 0.198448 -0.303347 -0.227096 0.457441 0.859753 0.224460 0.883636 -0.410859 -0.947652 0.099676 -0.303347 0.554393 -0.209524 0.805449 0.118654 0.977803 0.172689 -0.823753 -0.000168 0.566948 0.573299 -0.150266 0.805449 0.015520 0.984854 0.172689 -0.819199 -0.086502 0.566948 0.585801 -0.089938 0.805449 -0.086804 0.981144 0.172689 -0.805793 -0.171078 0.566948 0.592001 -0.028047 0.805449 -0.189157 0.966643 0.172689 -0.783425 -0.254589 0.566948 0.591680 0.034154 0.805449 -0.289426 0.941494 0.172689 -0.752427 -0.335295 0.566948 0.584938 0.095393 0.805449 -0.385602 0.906361 0.172689 -0.713554 -0.411595 0.566948 0.571718 0.156173 0.805449 -0.478471 0.860955 0.172689 -0.666486 -0.484114 0.566948 0.552201 0.215233 0.805449 -0.566070 0.806066 0.172689 -0.612077 -0.551300 0.566948 0.526602 0.271923 0.805449 -0.647434 0.742299 0.172689 -0.550926 -0.612414 0.566948 0.495528 0.325121 0.805449 -0.720996 0.671076 0.172689 -0.484373 -0.666298 0.566948 0.458724 0.375266 0.805449 -0.787359 0.591815 0.172689 -0.411872 -0.713394 0.566948 0.416867 0.421276 0.805449 -0.845049 0.506034 0.172689 -0.334835 -0.752632 0.566948 0.370881 0.462276 0.805449 -0.893016 0.415574 0.172689 -0.254893 -0.783326 0.566948 0.320388 0.498601 0.805449 -0.931653 0.319691 0.172689 -0.171391 -0.805726 0.566948 0.266367 0.529434 0.805449 -0.960027 0.220286 0.172689 -0.086002 -0.819252 0.566948 0.209863 0.554265 0.805449 -0.977731 0.119252 0.172689 -0.000336 -0.823753 0.566948 0.150616 0.573207 0.805449 -0.984844 0.016122 0.172689 0.086002 -0.819252 0.566948 0.089710 0.585836 0.805449 -0.981110 -0.087186 0.172689 0.171391 -0.805726 0.566948 0.027816 0.592012 0.805449 -0.966569 -0.189533 0.172689 0.254893 -0.783326 0.566948 -0.033792 0.591701 0.805449 -0.941671 -0.288851 0.172689 0.334835 -0.752632 0.566948 -0.095621 0.584900 0.805449 -0.906211 -0.385954 0.172689 0.411872 -0.713394 0.566948 -0.156396 0.571657 0.805449 -0.860769 -0.478806 0.172689 0.484373 -0.666298 0.566948 -0.214896 0.552333 0.805449 -0.806412 -0.565578 0.172689 0.550926 -0.612414 0.566948 -0.271601 0.526768 0.805449 -0.742694 -0.646981 0.172689 0.612077 -0.551300 0.566948 -0.325314 0.495401 0.805449 -0.670796 -0.721257 0.172689 0.666486 -0.484114 0.566948 -0.375444 0.458578 0.805449 -0.591509 -0.787589 0.172689 0.713554 -0.411595 0.566948 -0.421022 0.417124 0.805449 -0.506551 -0.844739 0.172689 0.752427 -0.335295 0.566948 -0.462421 0.370701 0.805449 -0.415226 -0.893177 0.172689 0.783425 -0.254589 0.566948 -0.498726 0.320194 0.805449 -0.319328 -0.931777 0.172689 0.805793 -0.171078 0.566948 -0.529271 0.266690 0.805449 -0.220872 -0.959893 0.172689 0.819199 -0.086502 0.566948 -0.554307 0.209750 0.805449 -0.119052 -0.977755 0.172689 0.823753 -0.000168 0.566948 -0.573238 0.150499 0.805449 -0.015921 -0.984848 0.172689 0.819234 0.086168 0.566948 -0.585854 0.089591 0.805449 0.087386 -0.981092 0.172689 0.805691 0.171556 0.566948 -0.591990 0.028288 0.805449 0.188763 -0.966720 0.172689 0.783528 0.254269 0.566948 -0.591694 -0.033913 0.805449 0.289043 -0.941612 0.172689 0.752564 0.334989 0.566948 -0.584881 -0.095740 0.805449 0.386139 -0.906132 0.172689 0.713310 0.412018 0.566948 -0.571625 -0.156512 0.805449 0.478981 -0.860672 0.172689 0.666199 0.484509 0.566948 -0.552289 -0.215008 0.805449 0.565742 -0.806297 0.172689 0.612301 0.551051 0.566948 -0.526713 -0.271708 0.805449 0.647132 -0.742562 0.172689 0.551175 0.612189 0.566948 -0.495335 -0.325415 0.805449 0.721394 -0.670649 0.172689 0.483978 0.666585 0.566948 -0.458877 -0.375079 0.805449 0.787118 -0.592135 0.172689 0.412163 0.713226 0.566948 -0.417038 -0.421107 0.805449 0.844843 -0.506379 0.172689 0.335142 0.752496 0.566948 -0.370607 -0.462496 0.805449 0.893262 -0.415044 0.172689 0.254429 0.783477 0.566948 -0.320093 -0.498791 0.805449 0.931842 -0.319138 0.172689 0.170914 0.805828 0.566948 -0.266582 -0.529326 0.805449 0.959938 -0.220677 0.172689 0.086335 0.819217 0.566948 -0.209637 -0.554350 0.805449 0.977779 -0.118853 0.172689 0.000000 0.823753 0.566948 -0.150382 -0.573269 0.805449 0.984851 -0.015720 0.172689 -0.086335 0.819217 0.566948 -0.090057 -0.585783 0.805449 0.981162 0.086604 0.172689 -0.170914 0.805828 0.566948 -0.028167 -0.591995 0.805449 0.966681 0.188960 0.172689 -0.254429 0.783477 0.566948 0.034033 -0.591687 0.805449 0.941553 0.289235 0.172689 -0.335142 0.752496 0.566948 0.095859 -0.584861 0.805449 0.906053 0.386323 0.172689 -0.412163 0.713226 0.566948 0.156057 -0.571750 0.805449 0.861053 0.478296 0.172689 -0.483978 0.666585 0.566948 0.215121 -0.552245 0.805449 0.806182 0.565906 0.172689 -0.551175 0.612189 0.566948 0.271815 -0.526658 0.805449 0.742431 0.647283 0.172689 -0.612301 0.551051 0.566948 0.325020 -0.495594 0.805449 0.671223 0.720859 0.172689 -0.666199 0.484509 0.566948 0.375172 -0.458800 0.805449 0.591975 0.787238 0.172689 -0.713310 0.412018 0.566948 0.421192 -0.416953 0.805449 0.506207 0.844946 0.172689 -0.752564 0.334989 0.566948 0.462571 -0.370512 0.805449 0.414862 0.893346 0.172689 -0.783528 0.254269 0.566948 0.498536 -0.320490 0.805449 0.319880 0.931587 0.172689 -0.805691 0.171556 0.566948 0.529380 -0.266474 0.805449 0.220482 0.959982 0.172689 -0.819234 0.086168 0.566948 -0.295618 -0.595010 -0.747377 0.219072 -0.803718 0.553213 -0.929848 -0.000189 0.367943 -0.231629 -0.622716 -0.747377 0.302101 -0.776331 0.553213 -0.924707 -0.097643 0.367943 -0.165731 -0.643398 -0.747377 0.381061 -0.740775 0.553213 -0.909574 -0.193112 0.367943 -0.097386 -0.657224 -0.747377 0.456601 -0.696757 0.553213 -0.884325 -0.287378 0.367943 -0.027968 -0.663811 -0.747377 0.527112 -0.645065 0.553213 -0.849336 -0.378479 0.367943 0.041096 -0.663128 -0.747377 0.591229 -0.586858 0.553213 -0.805456 -0.464606 0.367943 0.110370 -0.655169 -0.747377 0.649480 -0.521661 0.553213 -0.752326 -0.546465 0.367943 0.178428 -0.639993 -0.747377 0.700577 -0.450718 0.553213 -0.690909 -0.622304 0.367943 0.244521 -0.617768 -0.747377 0.743957 -0.374810 0.553213 -0.621882 -0.691289 0.367943 0.307332 -0.589045 -0.747377 0.778848 -0.295553 0.553213 -0.546757 -0.752113 0.367943 0.367376 -0.553590 -0.747377 0.805534 -0.212296 0.553213 -0.464919 -0.805275 0.367943 0.423373 -0.512038 -0.747377 0.823348 -0.126701 0.553213 -0.377960 -0.849567 0.367943 0.474241 -0.465320 -0.747377 0.832052 -0.040543 0.553213 -0.287722 -0.884214 0.367943 0.520398 -0.413053 -0.747377 0.831719 0.046885 0.553213 -0.193466 -0.909499 0.367943 0.560823 -0.356237 -0.747377 0.822225 0.133797 0.553213 -0.097078 -0.924767 0.367943 0.594830 -0.295981 -0.747377 0.803852 0.218581 0.553213 -0.000379 -0.929848 0.367943 0.622575 -0.232009 -0.747377 0.776516 0.301626 0.553213 0.097078 -0.924767 0.367943 0.643462 -0.165481 -0.747377 0.740627 0.381349 0.553213 0.193466 -0.909499 0.367943 0.657262 -0.097130 -0.747377 0.696579 0.456872 0.553213 0.287722 -0.884214 0.367943 0.663794 -0.028373 -0.747377 0.645387 0.526717 0.553213 0.377960 -0.849567 0.367943 0.663112 0.041353 -0.747377 0.586628 0.591458 0.553213 0.464919 -0.805275 0.367943 0.655126 0.110624 -0.747377 0.521409 0.649683 0.553213 0.546757 -0.752113 0.367943 0.640102 0.178037 -0.747377 0.451146 0.700302 0.553213 0.621882 -0.691289 0.367943 0.617917 0.244144 -0.747377 0.375265 0.743728 0.553213 0.690909 -0.622304 0.367943 0.588926 0.307561 -0.747377 0.295250 0.778962 0.553213 0.752326 -0.546465 0.367943 0.553448 0.367591 -0.747377 0.211983 0.805617 0.553213 0.805456 -0.464606 0.367943 0.512297 0.423060 -0.747377 0.127205 0.823270 0.553213 0.849336 -0.378479 0.367943 0.465135 0.474422 -0.747377 0.040219 0.832068 0.553213 0.884325 -0.287378 0.367943 0.412851 0.520559 -0.747377 -0.047209 0.831701 0.553213 0.909574 -0.193112 0.367943 0.356580 0.560605 -0.747377 -0.133295 0.822306 0.553213 0.924707 -0.097643 0.367943 0.295860 0.594890 -0.747377 -0.218744 0.803807 0.553213 0.929848 -0.000189 0.367943 0.231882 0.622622 -0.747377 -0.301784 0.776454 0.553213 0.924747 0.097266 0.367943 0.165350 0.643496 -0.747377 -0.381500 0.740549 0.553213 0.909460 0.193651 0.367943 0.097653 0.657184 -0.747377 -0.456317 0.696943 0.553213 0.884442 0.287018 0.367943 0.028238 0.663800 -0.747377 -0.526849 0.645279 0.553213 0.849490 0.378133 0.367943 -0.041488 0.663103 -0.747377 -0.591577 0.586508 0.553213 0.805180 0.465083 0.367943 -0.110758 0.655103 -0.747377 -0.649789 0.521276 0.553213 0.752002 0.546910 0.367943 -0.178167 0.640065 -0.747377 -0.700393 0.451003 0.553213 0.691162 0.622023 0.367943 -0.244270 0.617867 -0.747377 -0.743804 0.375113 0.553213 0.622163 0.691036 0.367943 -0.307681 0.588863 -0.747377 -0.779023 0.295091 0.553213 0.546311 0.752437 0.367943 -0.367150 0.553740 -0.747377 -0.805448 0.212625 0.553213 0.465247 0.805086 0.367943 -0.423164 0.512210 -0.747377 -0.823296 0.127037 0.553213 0.378306 0.849413 0.367943 -0.474517 0.465039 -0.747377 -0.832076 0.040050 0.553213 0.287198 0.884384 0.367943 -0.520643 0.412745 -0.747377 -0.831691 -0.047378 0.553213 0.192927 0.909614 0.367943 -0.560678 0.356465 -0.747377 -0.822279 -0.133462 0.553213 0.097455 0.924727 0.367943 -0.594950 0.295739 -0.747377 -0.803763 -0.218908 0.553213 0.000000 0.929848 0.367943 -0.622669 0.231755 -0.747377 -0.776393 -0.301942 0.553213 -0.097455 0.924727 0.367943 -0.643364 0.165862 -0.747377 -0.740852 -0.380910 0.553213 -0.192927 0.909614 0.367943 -0.657204 0.097520 -0.747377 -0.696850 -0.456459 0.553213 -0.287198 0.884384 0.367943 -0.663805 0.028103 -0.747377 -0.645172 -0.526980 0.553213 -0.378306 0.849413 0.367943 -0.663095 -0.041623 -0.747377 -0.586388 -0.591697 0.553213 -0.465247 0.805086 0.367943 -0.655191 -0.110236 -0.747377 -0.521794 -0.649374 0.553213 -0.546311 0.752437 0.367943 -0.640029 -0.178298 -0.747377 -0.450861 -0.700485 0.553213 -0.622163 0.691036 0.367943 -0.617817 -0.244395 -0.747377 -0.374962 -0.743881 0.553213 -0.691162 0.622023 0.367943 -0.589108 -0.307212 -0.747377 -0.295712 -0.778787 0.553213 -0.752002 0.546910 0.367943 -0.553665 -0.367263 -0.747377 -0.212461 -0.805491 0.553213 -0.805180 0.465083 0.367943 -0.512124 -0.423268 -0.747377 -0.126869 -0.823322 0.553213 -0.849490 0.378133 0.367943 -0.464942 -0.474612 -0.747377 -0.039880 -0.832084 0.553213 -0.884442 0.287018 0.367943 -0.413159 -0.520314 -0.747377 0.046716 -0.831729 0.553213 -0.909460 0.193651 0.367943 -0.356351 -0.560750 -0.747377 0.133630 -0.822252 0.553213 -0.924747 0.097266 0.367943 0.281909 0.954204 0.100108 -0.899269 0.299156 -0.319095 -0.334430 -0.000068 0.942421 0.180349 0.978495 0.100108 -0.925670 0.203259 -0.319095 -0.332581 -0.035118 0.942421 0.077794 0.991931 0.100108 -0.941769 0.106064 -0.319095 -0.327138 -0.069455 0.942421 -0.026595 0.994621 0.100108 -0.947699 0.006776 -0.319095 -0.318057 -0.103359 0.942421 -0.130692 0.986356 0.100108 -0.943189 -0.092587 -0.319095 -0.305473 -0.136124 0.942421 -0.232383 0.967459 0.100108 -0.928481 -0.190002 -0.319095 -0.289691 -0.167100 0.942421 -0.332499 0.937775 0.100108 -0.903454 -0.286267 -0.319095 -0.270582 -0.196542 0.942421 -0.428953 0.897762 0.100108 -0.868476 -0.379379 -0.319095 -0.248493 -0.223818 0.942421 -0.520683 0.847861 0.100108 -0.823931 -0.468312 -0.319095 -0.223666 -0.248629 0.942421 -0.605888 0.789226 0.100108 -0.770863 -0.551316 -0.319095 -0.196647 -0.270505 0.942421 -0.685268 0.721378 0.100108 -0.708835 -0.629071 -0.319095 -0.167213 -0.289626 0.942421 -0.757100 0.645584 0.100108 -0.639000 -0.699898 -0.319095 -0.135937 -0.305556 0.942421 -0.820029 0.563499 0.100108 -0.562889 -0.762452 -0.319095 -0.103482 -0.318017 0.942421 -0.874571 0.474451 0.100108 -0.479879 -0.817248 -0.319095 -0.069582 -0.327111 0.942421 -0.919480 0.380177 0.100108 -0.391583 -0.863042 -0.319095 -0.034915 -0.332602 0.942421 -0.954032 0.282492 0.100108 -0.299705 -0.899086 -0.319095 -0.000136 -0.334430 0.942421 -0.978385 0.180947 0.100108 -0.203824 -0.925545 -0.319095 0.034915 -0.332602 0.942421 -0.991961 0.077409 0.100108 -0.105698 -0.941810 -0.319095 0.069582 -0.327111 0.942421 -0.994611 -0.026982 0.100108 -0.006407 -0.947701 -0.319095 0.103482 -0.318017 0.942421 -0.986436 -0.130090 0.100108 0.092011 -0.943246 -0.319095 0.135937 -0.305556 0.942421 -0.967368 -0.232759 0.100108 0.190363 -0.928407 -0.319095 0.167213 -0.289626 0.942421 -0.937646 -0.332864 0.100108 0.286618 -0.903343 -0.319095 0.196647 -0.270505 0.942421 -0.898024 -0.428405 0.100108 0.378848 -0.868707 -0.319095 0.223666 -0.248629 0.942421 -0.848179 -0.520165 0.100108 0.467808 -0.824217 -0.319095 0.248493 -0.223818 0.942421 -0.788990 -0.606195 0.100108 0.551616 -0.770648 -0.319095 0.270582 -0.196542 0.942421 -0.721111 -0.685549 0.100108 0.629347 -0.708591 -0.319095 0.289691 -0.167100 0.942421 -0.646046 -0.756705 0.100108 0.699507 -0.639428 -0.319095 0.305473 -0.136124 0.942421 -0.563180 -0.820248 0.100108 0.762671 -0.562593 -0.319095 0.318057 -0.103359 0.942421 -0.474111 -0.874756 0.100108 0.817435 -0.479561 -0.319095 0.327138 -0.069455 0.942421 -0.380738 -0.919248 0.100108 0.862803 -0.392110 -0.319095 0.332581 -0.035118 0.942421 -0.282298 -0.954089 0.100108 0.899147 -0.299522 -0.319095 0.334430 -0.000068 0.942421 -0.180748 -0.978422 0.100108 0.925587 -0.203636 -0.319095 0.332595 0.034983 0.942421 -0.077207 -0.991977 0.100108 0.941832 -0.105506 -0.319095 0.327097 0.069649 0.942421 0.026190 -0.994632 0.100108 0.947696 -0.007162 -0.319095 0.318099 0.103229 0.942421 0.130291 -0.986409 0.100108 0.943227 0.092203 -0.319095 0.305528 0.136000 0.942421 0.232956 -0.967321 0.100108 0.928369 0.190552 -0.319095 0.289592 0.167272 0.942421 0.333055 -0.937578 0.100108 0.903284 0.286802 -0.319095 0.270465 0.196702 0.942421 0.428588 -0.897937 0.100108 0.868630 0.379025 -0.319095 0.248584 0.223717 0.942421 0.520338 -0.848073 0.100108 0.824122 0.467976 -0.319095 0.223768 0.248538 0.942421 0.606356 -0.788867 0.100108 0.770536 0.551773 -0.319095 0.196487 0.270622 0.942421 0.684974 -0.721657 0.100108 0.709091 0.628783 -0.319095 0.167331 0.289557 0.942421 0.756837 -0.645892 0.100108 0.639285 0.699638 -0.319095 0.136062 0.305500 0.942421 0.820362 -0.563013 0.100108 0.562437 0.762786 -0.319095 0.103294 0.318078 0.942421 0.874852 -0.473933 0.100108 0.479394 0.817532 -0.319095 0.069388 0.327152 0.942421 0.919325 -0.380551 0.100108 0.391934 0.862882 -0.319095 0.035051 0.332588 0.942421 0.954147 -0.282103 0.100108 0.299339 0.899208 -0.319095 0.000000 0.334430 0.942421 0.978458 -0.180548 0.100108 0.203447 0.925628 -0.319095 -0.035051 0.332588 0.942421 0.991915 -0.077996 0.100108 0.106256 0.941747 -0.319095 -0.069388 0.327152 0.942421 0.994626 0.026393 0.100108 0.006969 0.947697 -0.319095 -0.103294 0.318078 0.942421 0.986382 0.130491 0.100108 -0.092395 0.943208 -0.319095 -0.136062 0.305500 0.942421 0.967274 0.233153 0.100108 -0.190741 0.928330 -0.319095 -0.167331 0.289557 0.942421 0.937843 0.332308 0.100108 -0.286083 0.903513 -0.319095 -0.196487 0.270622 0.942421 0.897850 0.428771 0.100108 -0.379202 0.868553 -0.319095 -0.223768 0.248538 0.942421 0.847967 0.520510 0.100108 -0.468144 0.824026 -0.319095 -0.248584 0.223717 0.942421 0.789349 0.605728 0.100108 -0.551159 0.770975 -0.319095 -0.270465 0.196702 0.942421 0.721517 0.685121 0.100108 -0.628927 0.708963 -0.319095 -0.289592 0.167272 0.942421 0.645738 0.756968 0.100108 -0.699768 0.639143 -0.319095 -0.305528 0.136000 0.942421 0.562846 0.820477 0.100108 -0.762901 0.562282 -0.319095 -0.318099 0.103229 0.942421 0.474629 0.874474 0.100108 -0.817150 0.480045 -0.319095 -0.327097 0.069649 0.942421 0.380364 0.919403 0.100108 -0.862962 0.391758 -0.319095 -0.332595 0.034983 0.942421 -0.990403 -0.033399 0.134113 -0.033101 0.999442 0.004455 -0.134187 -0.000027 -0.990956 -0.981448 -0.137017 0.134113 -0.137667 0.990469 0.004455 -0.133445 -0.014091 -0.990956 -0.961921 -0.238163 0.134113 -0.239747 0.970825 0.004455 -0.131261 -0.027868 -0.990956 -0.931662 -0.337668 0.134113 -0.340176 0.940351 0.004455 -0.127617 -0.041472 -0.990956 -0.891141 -0.433453 0.134113 -0.436858 0.899520 0.004455 -0.122568 -0.054618 -0.990956 -0.841328 -0.523623 0.134113 -0.527879 0.849308 0.004455 -0.116236 -0.067047 -0.990956 -0.781815 -0.608916 0.134113 -0.613985 0.789305 0.004455 -0.108568 -0.078860 -0.990956 -0.713691 -0.687502 0.134113 -0.693328 0.720608 0.004455 -0.099705 -0.089805 -0.990956 -0.637705 -0.758516 0.134113 -0.765035 0.643974 0.004455 -0.089744 -0.099760 -0.990956 -0.555516 -0.820619 0.134113 -0.827754 0.561074 0.004455 -0.078903 -0.108538 -0.990956 -0.466450 -0.874322 0.134113 -0.882000 0.471229 0.004455 -0.067093 -0.116209 -0.990956 -0.372245 -0.918394 0.134113 -0.926530 0.376194 0.004455 -0.054544 -0.122601 -0.990956 -0.274893 -0.952075 0.134113 -0.960578 0.277976 0.004455 -0.041521 -0.127601 -0.990956 -0.173595 -0.975643 0.134113 -0.984421 0.175770 0.004455 -0.027919 -0.131250 -0.990956 -0.070385 -0.988463 0.134113 -0.997422 0.071627 0.004455 -0.014009 -0.133453 -0.990956 0.032794 -0.990423 0.134113 -0.999462 -0.032490 0.004455 -0.000055 -0.134187 -0.990956 0.136417 -0.981532 0.134113 -0.990552 -0.137062 0.004455 0.014009 -0.133453 -0.990956 0.238537 -0.961828 0.134113 -0.970732 -0.240124 0.004455 0.027919 -0.131250 -0.990956 0.338030 -0.931531 0.134113 -0.940219 -0.340541 0.004455 0.041521 -0.127601 -0.990956 0.432908 -0.891406 0.134113 -0.899786 -0.436308 0.004455 0.054544 -0.122601 -0.990956 0.523950 -0.841125 0.134113 -0.849103 -0.528209 0.004455 0.067093 -0.116209 -0.990956 0.609220 -0.781578 0.134113 -0.789066 -0.614292 0.004455 0.078903 -0.108538 -0.990956 0.687066 -0.714111 0.134113 -0.721031 -0.692888 0.004455 0.089744 -0.099760 -0.990956 0.758126 -0.638168 0.134113 -0.644441 -0.764641 0.004455 0.099705 -0.089805 -0.990956 0.820835 -0.555197 0.134113 -0.560752 -0.827972 0.004455 0.108568 -0.078860 -0.990956 0.874503 -0.466110 0.134113 -0.470886 -0.882183 0.004455 0.116236 -0.067047 -0.990956 0.918166 -0.372807 0.134113 -0.376760 -0.926300 0.004455 0.122568 -0.054618 -0.990956 0.952182 -0.274523 0.134113 -0.277602 -0.960686 0.004455 0.127617 -0.041472 -0.990956 0.975710 -0.173216 0.134113 -0.175386 -0.984490 0.004455 0.131261 -0.027868 -0.990956 0.988420 -0.070989 0.134113 -0.072236 -0.997378 0.004455 0.133445 -0.014091 -0.990956 0.990417 0.032996 0.134113 0.032694 -0.999456 0.004455 0.134187 -0.000027 -0.990956 0.981504 0.136617 0.134113 0.137264 -0.990525 0.004455 0.133451 0.014037 -0.990956 0.961780 0.238733 0.134113 0.240322 -0.970683 0.004455 0.131244 0.027946 -0.990956 0.931800 0.337288 0.134113 0.339793 -0.940490 0.004455 0.127634 0.041420 -0.990956 0.891318 0.433090 0.134113 0.436491 -0.899697 0.004455 0.122590 0.054569 -0.990956 0.841018 0.524121 0.134113 0.528382 -0.848995 0.004455 0.116196 0.067116 -0.990956 0.781454 0.609379 0.134113 0.614453 -0.788941 0.004455 0.108522 0.078925 -0.990956 0.713971 0.687211 0.134113 0.693035 -0.720890 0.004455 0.099742 0.089764 -0.990956 0.638014 0.758256 0.134113 0.764772 -0.644285 0.004455 0.089785 0.099724 -0.990956 0.555030 0.820948 0.134113 0.828086 -0.560583 0.004455 0.078838 0.108584 -0.990956 0.466806 0.874132 0.134113 0.881808 -0.471588 0.004455 0.067140 0.116182 -0.990956 0.372620 0.918242 0.134113 0.926377 -0.376571 0.004455 0.054593 0.122579 -0.990956 0.274329 0.952238 0.134113 0.960742 -0.277406 0.004455 0.041446 0.127626 -0.990956 0.173017 0.975745 0.134113 0.984525 -0.175186 0.004455 0.027841 0.131267 -0.990956 0.070787 0.988435 0.134113 0.997392 -0.072033 0.004455 0.014064 0.133448 -0.990956 -0.033198 0.990410 0.134113 0.999449 0.032897 0.004455 0.000000 0.134187 -0.990956 -0.136817 0.981476 0.134113 0.990497 0.137466 0.004455 -0.014064 0.133448 -0.990956 -0.237967 0.961970 0.134113 0.970874 0.239549 0.004455 -0.027841 0.131267 -0.990956 -0.337478 0.931731 0.134113 0.940421 0.339984 0.004455 -0.041446 0.127626 -0.990956 -0.433271 0.891229 0.134113 0.899609 0.436674 0.004455 -0.054593 0.122579 -0.990956 -0.524292 0.840911 0.134113 0.848887 0.528555 0.004455 -0.067140 0.116182 -0.990956 -0.608757 0.781939 0.134113 0.789430 0.613824 0.004455 -0.078838 0.108584 -0.990956 -0.687357 0.713831 0.134113 0.720749 0.693182 0.004455 -0.089785 0.099724 -0.990956 -0.758386 0.637859 0.134113 0.644129 0.764904 0.004455 -0.099742 0.089764 -0.990956 -0.820506 0.555683 0.134113 0.561242 0.827640 0.004455 -0.108522 0.078925 -0.990956 -0.874227 0.466628 0.134113 0.471409 0.881904 0.004455 -0.116196 0.067116 -0.990956 -0.918318 0.372433 0.134113 0.376383 0.926454 0.004455 -0.122590 0.054569 -0.990956 -0.952294 0.274135 0.134113 0.277211 0.960799 0.004455 -0.127634 0.041420 -0.990956 -0.975607 0.173794 0.134113 0.175970 0.984385 0.004455 -0.131244 0.027946 -0.990956 -0.988449 0.070586 0.134113 0.071830 0.997407 0.004455 -0.133451 0.014037 -0.990956 0.053119 -0.936731 0.345995 0.141577 0.350049 0.925971 -0.988501 -0.000201 0.151214 0.151002 -0.926005 0.345995 0.104110 0.362960 0.925971 -0.983036 -0.103802 0.151214 0.246317 -0.905326 0.345995 0.065868 0.371806 0.925971 -0.966948 -0.205293 0.151214 0.339846 -0.874524 0.345995 0.026537 0.376662 0.925971 -0.940107 -0.305505 0.151214 0.429630 -0.834089 0.345995 -0.013086 0.377369 0.925971 -0.902910 -0.402353 0.151214 0.513898 -0.784982 0.345995 -0.052191 0.373971 0.925971 -0.856262 -0.493912 0.151214 0.593339 -0.726798 0.345995 -0.091099 0.366442 0.925971 -0.799781 -0.580934 0.151214 0.666245 -0.660609 0.345995 -0.129003 0.354876 0.925971 -0.734490 -0.661558 0.151214 0.731812 -0.587144 0.345995 -0.165486 0.339401 0.925971 -0.661109 -0.734894 0.151214 0.788811 -0.508000 0.345995 -0.199826 0.320388 0.925971 -0.581246 -0.799555 0.151214 0.837709 -0.422529 0.345995 -0.232304 0.297680 0.925971 -0.494245 -0.856070 0.151214 0.877379 -0.332404 0.345995 -0.262224 0.271693 0.925971 -0.401801 -0.903156 0.151214 0.907147 -0.239525 0.345995 -0.289012 0.243003 0.925971 -0.305871 -0.939988 0.151214 0.927254 -0.143130 0.345995 -0.312889 0.211374 0.925971 -0.205669 -0.966868 0.151214 0.937149 -0.045159 0.345995 -0.333319 0.177417 0.925971 -0.103202 -0.983099 0.151214 0.936764 0.052546 0.345995 -0.349963 0.141791 0.925971 -0.000403 -0.988501 0.151214 0.926097 0.150437 0.345995 -0.362896 0.104332 0.925971 0.103202 -0.983099 0.151214 0.905230 0.246670 0.345995 -0.371832 0.065723 0.925971 0.205669 -0.966868 0.151214 0.874392 0.340186 0.345995 -0.376672 0.026390 0.925971 0.305871 -0.939988 0.151214 0.834352 0.429121 0.345995 -0.377377 -0.012856 0.925971 0.401801 -0.903156 0.151214 0.784782 0.514203 0.345995 -0.373951 -0.052337 0.925971 0.494245 -0.856070 0.151214 0.726567 0.593622 0.345995 -0.366406 -0.091241 0.925971 0.581246 -0.799555 0.151214 0.661016 0.665842 0.345995 -0.354955 -0.128786 0.925971 0.661109 -0.734894 0.151214 0.587591 0.731454 0.345995 -0.339502 -0.165278 0.925971 0.734490 -0.661558 0.151214 0.507693 0.789009 0.345995 -0.320310 -0.199950 0.925971 0.799781 -0.580934 0.151214 0.422203 0.837873 0.345995 -0.297590 -0.232420 0.925971 0.856262 -0.493912 0.151214 0.332940 0.877176 0.345995 -0.271854 -0.262058 0.925971 0.902910 -0.402353 0.151214 0.239172 0.907240 0.345995 -0.242891 -0.289106 0.925971 0.940107 -0.305505 0.151214 0.142770 0.927310 0.345995 -0.211253 -0.312971 0.925971 0.966948 -0.205293 0.151214 0.045732 0.937121 0.345995 -0.177621 -0.333211 0.925971 0.983036 -0.103802 0.151214 -0.052737 0.936753 0.345995 -0.141720 -0.349991 0.925971 0.988501 -0.000201 0.151214 -0.150625 0.926067 0.345995 -0.104258 -0.362917 0.925971 0.983078 0.103402 0.151214 -0.246854 0.905180 0.345995 -0.065647 -0.371845 0.925971 0.966826 0.205866 0.151214 -0.339489 0.874662 0.345995 -0.026690 -0.376651 0.925971 0.940231 0.305122 0.151214 -0.429291 0.834264 0.345995 0.012932 -0.377374 0.925971 0.903074 0.401985 0.151214 -0.514363 0.784677 0.345995 0.052413 -0.373940 0.925971 0.855969 0.494420 0.151214 -0.593770 0.726446 0.345995 0.091316 -0.366388 0.925971 0.799436 0.581408 0.151214 -0.665976 0.660881 0.345995 0.128858 -0.354928 0.925971 0.734759 0.661259 0.151214 -0.731573 0.587442 0.345995 0.165347 -0.339468 0.925971 0.661408 0.734625 0.151214 -0.789112 0.507532 0.345995 0.200015 -0.320269 0.925971 0.580772 0.799899 0.151214 -0.837537 0.422870 0.345995 0.232183 -0.297775 0.925971 0.494594 0.855869 0.151214 -0.877244 0.332761 0.345995 0.262113 -0.271800 0.925971 0.402169 0.902992 0.151214 -0.907288 0.238987 0.345995 0.289156 -0.242832 0.925971 0.305314 0.940169 0.151214 -0.927339 0.142581 0.345995 0.313014 -0.211189 0.925971 0.205096 0.966990 0.151214 -0.937130 0.045541 0.345995 0.333247 -0.177553 0.925971 0.103602 0.983057 0.151214 -0.936742 -0.052928 0.345995 0.350020 -0.141649 0.925971 0.000000 0.988501 0.151214 -0.926036 -0.150814 0.345995 0.362938 -0.104184 0.925971 -0.103602 0.983057 0.151214 -0.905376 -0.246133 0.345995 0.371793 -0.065943 0.925971 -0.205096 0.966990 0.151214 -0.874593 -0.339667 0.345995 0.376657 -0.026614 0.925971 -0.305314 0.940169 0.151214 -0.834177 -0.429460 0.345995 0.377371 0.013009 0.925971 -0.402169 0.902992 0.151214 -0.784572 -0.514523 0.345995 0.373930 0.052489 0.925971 -0.494594 0.855869 0.151214 -0.726919 -0.593191 0.345995 0.366460 0.091024 0.925971 -0.580772 0.799899 0.151214 -0.660745 -0.666111 0.345995 0.354902 0.128930 0.925971 -0.661408 0.734625 0.151214 -0.587293 -0.731693 0.345995 0.339435 0.165417 0.925971 -0.734759 0.661259 0.151214 -0.508161 -0.788708 0.345995 0.320428 0.199760 0.925971 -0.799436 0.581408 0.151214 -0.422700 -0.837623 0.345995 0.297727 0.232243 0.925971 -0.855969 0.494420 0.151214 -0.332583 -0.877312 0.345995 0.271747 0.262168 0.925971 -0.903074 0.401985 0.151214 -0.238802 -0.907337 0.345995 0.242773 0.289205 0.925971 -0.940231 0.305122 0.151214 -0.143319 -0.927225 0.345995 0.211438 0.312846 0.925971 -0.966826 0.205866 0.151214 -0.045350 -0.937140 0.345995 0.177485 0.333283 0.925971 -0.983078 0.103402 0.151214 -0.019674 0.795474 0.605668 0.025490 0.605987 -0.795066 -0.999481 -0.000204 -0.032198 -0.102937 0.789031 0.605668 -0.038163 0.605321 -0.795066 -0.993956 -0.104955 -0.032198 -0.184292 0.774082 0.605668 -0.100796 0.598089 -0.795066 -0.977689 -0.207573 -0.032198 -0.264406 0.750504 0.605668 -0.162925 0.584231 -0.795066 -0.950550 -0.308899 -0.032198 -0.341608 0.718659 0.605668 -0.223260 0.563938 -0.795066 -0.912940 -0.406822 -0.032198 -0.414368 0.679312 0.605668 -0.280597 0.537713 -0.795066 -0.865774 -0.499399 -0.032198 -0.483283 0.632142 0.605668 -0.335408 0.505343 -0.795066 -0.808665 -0.587388 -0.032198 -0.546874 0.578009 0.605668 -0.386524 0.467407 -0.795066 -0.742649 -0.668906 -0.032198 -0.604442 0.517510 0.605668 -0.433383 0.424322 -0.795066 -0.668453 -0.743057 -0.032198 -0.654900 0.451965 0.605668 -0.475092 0.377039 -0.795066 -0.587702 -0.808436 -0.032198 -0.698662 0.380837 0.605668 -0.511992 0.325169 -0.795066 -0.499735 -0.865579 -0.032198 -0.734729 0.305515 0.605668 -0.543252 0.269718 -0.795066 -0.406264 -0.913188 -0.032198 -0.762476 0.227590 0.605668 -0.568317 0.211865 -0.795066 -0.309269 -0.950429 -0.032198 -0.782129 0.146424 0.605668 -0.587392 0.151134 -0.795066 -0.207954 -0.977609 -0.032198 -0.793168 0.063645 0.605668 -0.599997 0.088739 -0.795066 -0.104348 -0.994020 -0.032198 -0.795486 -0.019188 0.605668 -0.605972 0.025860 -0.795066 -0.000407 -0.999481 -0.032198 -0.789094 -0.102454 0.605668 -0.605345 -0.037793 -0.795066 0.104348 -0.994020 -0.032198 -0.774010 -0.184593 0.605668 -0.598050 -0.101029 -0.795066 0.207954 -0.977609 -0.032198 -0.750401 -0.264698 0.605668 -0.584167 -0.163153 -0.795066 0.309269 -0.950429 -0.032198 -0.718867 -0.341169 0.605668 -0.564074 -0.222915 -0.795066 0.406264 -0.913188 -0.032198 -0.679151 -0.414632 0.605668 -0.537604 -0.280806 -0.795066 0.499735 -0.865579 -0.032198 -0.631954 -0.483529 0.605668 -0.505213 -0.335605 -0.795066 0.587702 -0.808436 -0.032198 -0.578343 -0.546521 0.605668 -0.467643 -0.386239 -0.795066 0.668453 -0.743057 -0.032198 -0.517879 -0.604126 0.605668 -0.424587 -0.433124 -0.795066 0.742649 -0.668906 -0.032198 -0.451710 -0.655076 0.605668 -0.376854 -0.475238 -0.795066 0.808665 -0.587388 -0.032198 -0.380566 -0.698810 0.605668 -0.324970 -0.512118 -0.795066 0.865774 -0.499399 -0.032198 -0.305964 -0.734542 0.605668 -0.270050 -0.543087 -0.795066 0.912940 -0.406822 -0.032198 -0.227294 -0.762564 0.605668 -0.211643 -0.568399 -0.795066 0.950550 -0.308899 -0.032198 -0.146120 -0.782186 0.605668 -0.150905 -0.587450 -0.795066 0.977689 -0.207573 -0.032198 -0.064129 -0.793129 0.605668 -0.089105 -0.599942 -0.795066 0.993956 -0.104955 -0.032198 0.019350 -0.795482 0.605668 -0.025736 -0.605977 -0.795066 0.999481 -0.000204 -0.032198 0.102615 -0.789073 0.605668 0.037916 -0.605337 -0.795066 0.993998 0.104550 -0.032198 0.184751 -0.773973 0.605668 0.101151 -0.598029 -0.795066 0.977566 0.208153 -0.032198 0.264100 -0.750611 0.605668 0.162687 -0.584297 -0.795066 0.950675 0.308512 -0.032198 0.341315 -0.718798 0.605668 0.223030 -0.564028 -0.795066 0.913105 0.406450 -0.032198 0.414771 -0.679067 0.605668 0.280916 -0.537547 -0.795066 0.865478 0.499912 -0.032198 0.483657 -0.631856 0.605668 0.335708 -0.505144 -0.795066 0.808317 0.587867 -0.032198 0.546639 -0.578232 0.605668 0.386334 -0.467564 -0.795066 0.742921 0.668604 -0.032198 0.604231 -0.517756 0.605668 0.433210 -0.424499 -0.795066 0.668755 0.742785 -0.032198 0.655168 -0.451577 0.605668 0.475315 -0.376757 -0.795066 0.587223 0.808785 -0.032198 0.698507 -0.381122 0.605668 0.511859 -0.325378 -0.795066 0.500088 0.865376 -0.032198 0.734605 -0.305814 0.605668 0.543142 -0.269939 -0.795066 0.406636 0.913023 -0.032198 0.762610 -0.227138 0.605668 0.568442 -0.211528 -0.795066 0.308705 0.950613 -0.032198 0.782216 -0.145960 0.605668 0.587481 -0.150786 -0.795066 0.207374 0.977732 -0.032198 0.793142 -0.063968 0.605668 0.599960 -0.088983 -0.795066 0.104753 0.993977 -0.032198 0.795478 0.019512 0.605668 0.605982 -0.025613 -0.795066 0.000000 0.999481 -0.032198 0.789052 0.102776 0.605668 0.605329 0.038039 -0.795066 -0.104753 0.993977 -0.032198 0.774119 0.184134 0.605668 0.598110 0.100675 -0.795066 -0.207374 0.977732 -0.032198 0.750557 0.264253 0.605668 0.584264 0.162806 -0.795066 -0.308705 0.950613 -0.032198 0.718728 0.341462 0.605668 0.563983 0.223145 -0.795066 -0.406636 0.913023 -0.032198 0.678982 0.414909 0.605668 0.537490 0.281025 -0.795066 -0.500088 0.865376 -0.032198 0.632241 0.483154 0.605668 0.505412 0.335305 -0.795066 -0.587223 0.808785 -0.032198 0.578121 0.546757 0.605668 0.467486 0.386429 -0.795066 -0.668755 0.742785 -0.032198 0.517633 0.604337 0.605668 0.424411 0.433297 -0.795066 -0.742921 0.668604 -0.032198 0.452098 0.654808 0.605668 0.377136 0.475015 -0.795066 -0.808317 0.587867 -0.032198 0.380980 0.698585 0.605668 0.325274 0.511925 -0.795066 -0.865478 0.499912 -0.032198 0.305665 0.734667 0.605668 0.269829 0.543197 -0.795066 -0.913105 0.406450 -0.032198 0.226983 0.762657 0.605668 0.211412 0.568485 -0.795066 -0.950675 0.308512 -0.032198 0.146583 0.782099 0.605668 0.151254 0.587361 -0.795066 -0.977566 0.208153 -0.032198 0.063806 0.793155 0.605668 0.088861 0.599979 -0.795066 -0.993998 0.104550 -0.032198 -0.487008 0.112458 0.866127 0.054962 0.993656 -0.098112 -0.871667 -0.000178 -0.490099 -0.496112 0.060797 0.866127 -0.049483 0.993944 -0.098112 -0.866847 -0.091533 -0.490099 -0.499743 0.008966 0.866127 -0.152400 0.983437 -0.098112 -0.852661 -0.181029 -0.490099 -0.497930 -0.043460 0.866127 -0.254632 0.962048 -0.098112 -0.828992 -0.269397 -0.490099 -0.490633 -0.095408 0.866127 -0.354059 0.930063 -0.098112 -0.796192 -0.354797 -0.490099 -0.478078 -0.145826 0.866127 -0.448698 0.888281 -0.098112 -0.755058 -0.435535 -0.490099 -0.460161 -0.195129 0.866127 -0.539325 0.836363 -0.098112 -0.705252 -0.512272 -0.490099 -0.437176 -0.242282 0.866127 -0.624012 0.775231 -0.098112 -0.647678 -0.583366 -0.490099 -0.409375 -0.286767 0.866127 -0.701825 0.705561 -0.098112 -0.582970 -0.648034 -0.490099 -0.377393 -0.327716 0.866127 -0.771279 0.628890 -0.098112 -0.512546 -0.705053 -0.490099 -0.340968 -0.365465 0.866127 -0.832943 0.544591 -0.098112 -0.435829 -0.754888 -0.490099 -0.300786 -0.399188 0.866127 -0.885433 0.454293 -0.098112 -0.354311 -0.796409 -0.490099 -0.257721 -0.428256 0.866127 -0.927810 0.359920 -0.098112 -0.269719 -0.828887 -0.490099 -0.211417 -0.452909 0.866127 -0.960422 0.260696 -0.098112 -0.181360 -0.852591 -0.490099 -0.162784 -0.472572 0.866127 -0.982456 0.158601 -0.098112 -0.091004 -0.866903 -0.490099 -0.112756 -0.486939 0.866127 -0.993623 0.055569 -0.098112 -0.000355 -0.871667 -0.490099 -0.061100 -0.496075 0.866127 -0.993974 -0.048876 -0.098112 0.091004 -0.866903 -0.490099 -0.008771 -0.499746 0.866127 -0.983378 -0.152782 -0.098112 0.181360 -0.852591 -0.490099 0.043654 -0.497913 0.866127 -0.961949 -0.255006 -0.098112 0.269719 -0.828887 -0.490099 0.095108 -0.490691 0.866127 -0.930279 -0.353490 -0.098112 0.354311 -0.796409 -0.490099 0.146012 -0.478021 0.866127 -0.888107 -0.449043 -0.098112 0.435829 -0.754888 -0.490099 0.195308 -0.460085 0.866127 -0.836153 -0.539650 -0.098112 0.512546 -0.705053 -0.490099 0.242015 -0.437324 0.866127 -0.775612 -0.623538 -0.098112 0.582970 -0.648034 -0.490099 0.286517 -0.409550 0.866127 -0.705989 -0.701394 -0.098112 0.647678 -0.583366 -0.490099 0.327863 -0.377266 0.866127 -0.628590 -0.771523 -0.098112 0.705252 -0.512272 -0.490099 0.365597 -0.340826 0.866127 -0.544267 -0.833155 -0.098112 0.755058 -0.435535 -0.490099 0.399004 -0.301030 0.866127 -0.454834 -0.885155 -0.098112 0.796192 -0.354797 -0.490099 0.428356 -0.257554 0.866127 -0.359559 -0.927950 -0.098112 0.828992 -0.269397 -0.490099 0.452991 -0.211241 0.866127 -0.260323 -0.960524 -0.098112 0.852661 -0.181029 -0.490099 0.472473 -0.163073 0.866127 -0.159202 -0.982359 -0.098112 0.866847 -0.091533 -0.490099 0.486962 -0.112657 0.866127 -0.055367 -0.993634 -0.098112 0.871667 -0.000178 -0.490099 0.496087 -0.060999 0.866127 0.049078 -0.993964 -0.098112 0.866885 0.091180 -0.490099 0.499748 -0.008670 0.866127 0.152983 -0.983346 -0.098112 0.852554 0.181534 -0.490099 0.497948 0.043257 0.866127 0.254240 -0.962152 -0.098112 0.829102 0.269059 -0.490099 0.490672 0.095208 0.866127 0.353680 -0.930207 -0.098112 0.796336 0.354473 -0.490099 0.477991 0.146109 0.866127 0.449224 -0.888015 -0.098112 0.754799 0.435982 -0.490099 0.460045 0.195402 0.866127 0.539821 -0.836043 -0.098112 0.704948 0.512690 -0.490099 0.437274 0.242104 0.866127 0.623696 -0.775485 -0.098112 0.647916 0.583102 -0.490099 0.409492 0.286600 0.866127 0.701537 -0.705847 -0.098112 0.583234 0.647797 -0.490099 0.377199 0.327940 0.866127 0.771651 -0.628433 -0.098112 0.512128 0.705356 -0.490099 0.341117 0.365326 0.866127 0.832721 -0.544930 -0.098112 0.436136 0.754710 -0.490099 0.300949 0.399065 0.866127 0.885248 -0.454654 -0.098112 0.354635 0.796264 -0.490099 0.257467 0.428409 0.866127 0.928023 -0.359370 -0.098112 0.269228 0.829047 -0.490099 0.211148 0.453034 0.866127 0.960577 -0.260127 -0.098112 0.180855 0.852698 -0.490099 0.162977 0.472506 0.866127 0.982391 -0.159002 -0.098112 0.091357 0.866866 -0.490099 0.112557 0.486985 0.866127 0.993645 -0.055164 -0.098112 0.000000 0.871667 -0.490099 0.060898 0.496100 0.866127 0.993954 0.049281 -0.098112 -0.091357 0.866866 -0.490099 0.009068 0.499741 0.866127 0.983468 0.152199 -0.098112 -0.180855 0.852698 -0.490099 -0.043359 0.497939 0.866127 0.962100 0.254436 -0.098112 -0.269228 0.829047 -0.490099 -0.095308 0.490652 0.866127 0.930135 0.353869 -0.098112 -0.354635 0.796264 -0.490099 -0.146207 0.477961 0.866127 0.887924 0.449405 -0.098112 -0.436136 0.754710 -0.490099 -0.195035 0.460201 0.866127 0.836472 0.539155 -0.098112 -0.512128 0.705356 -0.490099 -0.242193 0.437225 0.866127 0.775358 0.623854 -0.098112 -0.583234 0.647797 -0.490099 -0.286684 0.409433 0.866127 0.705704 0.701681 -0.098112 -0.647916 0.583102 -0.490099 -0.327639 0.377460 0.866127 0.629047 0.771151 -0.098112 -0.704948 0.512690 -0.490099 -0.365395 0.341042 0.866127 0.544761 0.832832 -0.098112 -0.754799 0.435982 -0.490099 -0.399126 0.300868 0.866127 0.454474 0.885340 -0.098112 -0.796336 0.354473 -0.490099 -0.428461 0.257380 0.866127 0.359181 0.928096 -0.098112 -0.829102 0.269059 -0.490099 -0.452866 0.211509 0.866127 0.260892 0.960369 -0.098112 -0.852554 0.181534 -0.490099 -0.472539 0.162881 0.866127 0.158802 0.982424 -0.098112 -0.866885 0.091180 -0.490099 -0.085924 0.507927 -0.857104 -0.050431 -0.861400 -0.505417 -0.995024 -0.000203 0.099631 -0.138686 0.496124 -0.857104 0.040127 -0.861942 -0.505417 -0.989523 -0.104487 0.099631 -0.189440 0.479046 -0.857104 0.129391 -0.853119 -0.505417 -0.973330 -0.206648 0.099631 -0.238604 0.456553 -0.857104 0.218091 -0.834859 -0.505417 -0.946311 -0.307521 0.099631 -0.285140 0.429031 -0.857104 0.304389 -0.807404 -0.505417 -0.908869 -0.405008 0.099631 -0.328138 0.397112 -0.857104 0.386564 -0.771442 -0.505417 -0.861913 -0.497172 0.099631 -0.367951 0.360533 -0.857104 0.465287 -0.726679 -0.505417 -0.805059 -0.584768 0.099631 -0.403711 0.319984 -0.857104 0.538886 -0.673911 -0.505417 -0.739337 -0.665924 0.099631 -0.435024 0.275910 -0.857104 0.606548 -0.613720 -0.505417 -0.665472 -0.739744 0.099631 -0.461317 0.229258 -0.857104 0.666983 -0.547437 -0.505417 -0.585081 -0.804831 0.099631 -0.482804 0.179646 -0.857104 0.720685 -0.474517 -0.505417 -0.497507 -0.861720 0.099631 -0.498973 0.128055 -0.857104 0.766449 -0.396371 -0.505417 -0.404453 -0.909116 0.099631 -0.509571 0.075564 -0.857104 0.803456 -0.314662 -0.505417 -0.307890 -0.946191 0.099631 -0.514684 0.021741 -0.857104 0.832010 -0.228722 -0.505417 -0.207026 -0.973249 0.099631 -0.514128 -0.032322 -0.857104 0.851399 -0.140261 -0.505417 -0.103883 -0.989587 0.099631 -0.507979 -0.085614 -0.857104 0.861369 -0.050958 -0.505417 -0.000405 -0.995024 0.099631 -0.496208 -0.138382 -0.857104 0.861966 0.039601 -0.505417 0.103883 -0.989587 0.099631 -0.478972 -0.189626 -0.857104 0.853069 0.129723 -0.505417 0.207026 -0.973249 0.099631 -0.456460 -0.238782 -0.857104 0.834774 0.218416 -0.505417 0.307890 -0.946191 0.099631 -0.429205 -0.284878 -0.857104 0.807590 0.303896 -0.505417 0.404453 -0.909116 0.099631 -0.396984 -0.328293 -0.857104 0.771291 0.386863 -0.505417 0.497507 -0.861720 0.099631 -0.360390 -0.368091 -0.857104 0.726498 0.465570 -0.505417 0.585081 -0.804831 0.099631 -0.320230 -0.403516 -0.857104 0.674240 0.538474 -0.505417 0.665472 -0.739744 0.099631 -0.276175 -0.434856 -0.857104 0.614091 0.606173 -0.505417 0.739337 -0.665924 0.099631 -0.229078 -0.461406 -0.857104 0.547177 0.667196 -0.505417 0.805059 -0.584768 0.099631 -0.179458 -0.482874 -0.857104 0.474237 0.720870 -0.505417 0.861913 -0.497172 0.099631 -0.128360 -0.498895 -0.857104 0.396839 0.766207 -0.505417 0.908869 -0.405008 0.099631 -0.075365 -0.509600 -0.857104 0.314350 0.803578 -0.505417 0.946311 -0.307521 0.099631 -0.021541 -0.514693 -0.857104 0.228398 0.832099 -0.505417 0.973330 -0.206648 0.099631 0.032007 -0.514148 -0.857104 0.140781 0.851313 -0.505417 0.989523 -0.104487 0.099631 0.085718 -0.507962 -0.857104 0.050782 0.861380 -0.505417 0.995024 -0.000203 0.099631 0.138483 -0.496180 -0.857104 -0.039776 0.861958 -0.505417 0.989566 0.104084 0.099631 0.189724 -0.478933 -0.857104 -0.129897 0.853042 -0.505417 0.973207 0.207225 0.099631 0.238418 -0.456650 -0.857104 -0.217751 0.834948 -0.505417 0.946436 0.307136 0.099631 0.284965 -0.429147 -0.857104 -0.304060 0.807528 -0.505417 0.909034 0.404638 0.099631 0.328374 -0.396917 -0.857104 -0.387020 0.771213 -0.505417 0.861618 0.497682 0.099631 0.368165 -0.360315 -0.857104 -0.465718 0.726403 -0.505417 0.804712 0.585245 0.099631 0.403581 -0.320148 -0.857104 -0.538611 0.674130 -0.505417 0.739608 0.665622 0.099631 0.434912 -0.276087 -0.857104 -0.606298 0.613967 -0.505417 0.665773 0.739473 0.099631 0.461453 -0.228984 -0.857104 -0.667307 0.547042 -0.505417 0.584604 0.805178 0.099631 0.482731 -0.179843 -0.857104 -0.720492 0.474811 -0.505417 0.497858 0.861517 0.099631 0.498921 -0.128258 -0.857104 -0.766287 0.396683 -0.505417 0.404823 0.908951 0.099631 0.509616 -0.075262 -0.857104 -0.803642 0.314186 -0.505417 0.307329 0.946373 0.099631 0.514697 -0.021436 -0.857104 -0.832145 0.228228 -0.505417 0.206449 0.973372 0.099631 0.514141 0.032112 -0.857104 -0.851342 0.140608 -0.505417 0.104286 0.989544 0.099631 0.507944 0.085821 -0.857104 -0.861390 0.050607 -0.505417 0.000000 0.995025 0.099631 0.496152 0.138585 -0.857104 -0.861950 -0.039952 -0.505417 -0.104286 0.989544 0.099631 0.479084 0.189343 -0.857104 -0.853145 -0.129217 -0.505417 -0.206449 0.973372 0.099631 0.456601 0.238511 -0.857104 -0.834904 -0.217921 -0.505417 -0.307329 0.946373 0.099631 0.429089 0.285053 -0.857104 -0.807466 -0.304225 -0.505417 -0.404823 0.908951 0.099631 0.396850 0.328454 -0.857104 -0.771134 -0.387178 -0.505417 -0.497858 0.861517 0.099631 0.360608 0.367878 -0.857104 -0.726773 -0.465139 -0.505417 -0.584604 0.805178 0.099631 0.320066 0.403646 -0.857104 -0.674021 -0.538748 -0.505417 -0.665773 0.739473 0.099631 0.275998 0.434968 -0.857104 -0.613844 -0.606423 -0.505417 -0.739608 0.665622 0.099631 0.229352 0.461270 -0.857104 -0.547573 -0.666872 -0.505417 -0.804712 0.585245 0.099631 0.179744 0.482767 -0.857104 -0.474664 -0.720589 -0.505417 -0.861618 0.497682 0.099631 0.128157 0.498947 -0.857104 -0.396527 -0.766368 -0.505417 -0.909034 0.404638 0.099631 0.075158 0.509631 -0.857104 -0.314023 -0.803706 -0.505417 -0.946436 0.307136 0.099631 0.021846 0.514680 -0.857104 -0.228891 -0.831963 -0.505417 -0.973207 0.207225 0.099631 -0.032217 0.514135 -0.857104 -0.140435 -0.851371 -0.505417 -0.989566 0.104084 0.099631 -0.352674 -0.605420 0.713504 -0.268473 0.795906 0.542638 -0.896406 -0.000183 -0.443234 -0.287279 -0.639049 0.713504 -0.350411 0.763385 0.542638 -0.891450 -0.094131 -0.443234 -0.219386 -0.665419 0.713504 -0.427767 0.722883 0.542638 -0.876861 -0.186166 -0.443234 -0.148437 -0.684748 0.713504 -0.501174 0.674068 0.542638 -0.852520 -0.277042 -0.443234 -0.075853 -0.696534 0.713504 -0.569061 0.617829 0.542638 -0.818789 -0.364867 -0.443234 -0.003134 -0.700645 0.713504 -0.630125 0.555415 0.542638 -0.776487 -0.447896 -0.443234 0.070316 -0.697114 0.713504 -0.684866 0.486315 0.542638 -0.725268 -0.526811 -0.443234 0.142991 -0.685905 0.713504 -0.732064 0.411858 0.542638 -0.666060 -0.599923 -0.443234 0.214092 -0.667141 0.713504 -0.771198 0.332864 0.542638 -0.599516 -0.666426 -0.443234 0.282193 -0.641311 0.713504 -0.801586 0.251005 0.542638 -0.527093 -0.725063 -0.443234 0.347852 -0.608203 0.713504 -0.823479 0.165611 0.542638 -0.448198 -0.776313 -0.443234 0.409681 -0.568396 0.713504 -0.836301 0.078392 0.542638 -0.364367 -0.819012 -0.443234 0.466474 -0.522795 0.713504 -0.839920 -0.008850 0.542638 -0.277374 -0.852412 -0.443234 0.518697 -0.471026 0.713504 -0.834367 -0.096831 0.542638 -0.186508 -0.876789 -0.443234 0.565208 -0.414069 0.713504 -0.819623 -0.183745 0.542638 -0.093587 -0.891507 -0.443234 0.605205 -0.353044 0.713504 -0.796070 -0.267987 0.542638 -0.000365 -0.896406 -0.443234 0.638873 -0.287669 0.713504 -0.763599 -0.349945 0.542638 0.093587 -0.891507 -0.443234 0.665504 -0.219127 0.713504 -0.722716 -0.428048 0.542638 0.186508 -0.876789 -0.443234 0.684805 -0.148170 0.713504 -0.673873 -0.501437 0.542638 0.277374 -0.852412 -0.443234 0.696487 -0.076278 0.713504 -0.618177 -0.568684 0.542638 0.364367 -0.819012 -0.443234 0.700646 -0.002861 0.713504 -0.555170 -0.630341 0.542638 0.448198 -0.776313 -0.443234 0.697087 0.070587 0.713504 -0.486048 -0.685055 0.542638 0.527093 -0.725063 -0.443234 0.685993 0.142572 0.713504 -0.412305 -0.731812 0.542638 0.599516 -0.666426 -0.443234 0.667272 0.213684 0.713504 -0.333335 -0.770994 0.542638 0.666060 -0.599923 -0.443234 0.641201 0.282442 0.713504 -0.250693 -0.801684 0.542638 0.725268 -0.526811 -0.443234 0.608068 0.348089 0.713504 -0.165291 -0.823543 0.542638 0.776487 -0.447896 -0.443234 0.568646 0.409333 0.713504 -0.078903 -0.836253 0.542638 0.818789 -0.364867 -0.443234 0.522614 0.466677 0.713504 0.009177 -0.839917 0.542638 0.852520 -0.277042 -0.443234 0.470824 0.518881 0.713504 0.097155 -0.834329 0.542638 0.876861 -0.186166 -0.443234 0.414414 0.564955 0.713504 0.183244 -0.819735 0.542638 0.891450 -0.094131 -0.443234 0.352920 0.605277 0.713504 0.268149 -0.796015 0.542638 0.896406 -0.000183 -0.443234 0.287539 0.638932 0.713504 0.350100 -0.763527 0.542638 0.891488 0.093768 -0.443234 0.218991 0.665549 0.713504 0.428195 -0.722629 0.542638 0.876751 0.186686 -0.443234 0.148715 0.684687 0.713504 0.500900 -0.674273 0.542638 0.852633 0.276695 -0.443234 0.076136 0.696503 0.713504 0.568810 -0.618061 0.542638 0.818938 0.364533 -0.443234 0.002719 0.700646 0.713504 0.630454 -0.555042 0.542638 0.776222 0.448356 -0.443234 -0.070729 0.697072 0.713504 0.685154 -0.485909 0.542638 0.724956 0.527241 -0.443234 -0.142712 0.685964 0.713504 0.731896 -0.412156 0.542638 0.666304 0.599651 -0.443234 -0.213820 0.667228 0.713504 0.771062 -0.333178 0.542638 0.599787 0.666182 -0.443234 -0.282573 0.641144 0.713504 0.801735 -0.250530 0.542638 0.526663 0.725375 -0.443234 -0.347605 0.608345 0.713504 0.823411 -0.165946 0.542638 0.448514 0.776130 -0.443234 -0.409449 0.568563 0.713504 0.836269 -0.078733 0.542638 0.364700 0.818863 -0.443234 -0.466784 0.522519 0.713504 0.839915 0.009348 0.542638 0.276869 0.852577 -0.443234 -0.518976 0.470719 0.713504 0.834309 0.097325 0.542638 0.185988 0.876899 -0.443234 -0.565039 0.414299 0.713504 0.819698 0.183411 0.542638 0.093950 0.891469 -0.443234 -0.605349 0.352797 0.713504 0.795961 0.268311 0.542638 0.000000 0.896406 -0.443234 -0.638990 0.287409 0.713504 0.763456 0.350256 0.542638 -0.093950 0.891469 -0.443234 -0.665374 0.219521 0.713504 0.722970 0.427620 0.542638 -0.185988 0.876899 -0.443234 -0.684717 0.148576 0.713504 0.674171 0.501037 0.542638 -0.276869 0.852577 -0.443234 -0.696518 0.075994 0.713504 0.617945 0.568936 0.542638 -0.364700 0.818863 -0.443234 -0.700647 0.002576 0.713504 0.554913 0.630567 0.542638 -0.448514 0.776130 -0.443234 -0.697129 -0.070174 0.713504 0.486454 0.684767 0.542638 -0.526663 0.725375 -0.443234 -0.685934 -0.142852 0.713504 0.412007 0.731980 0.542638 -0.599787 0.666182 -0.443234 -0.667185 -0.213956 0.713504 0.333021 0.771130 0.542638 -0.666304 0.599651 -0.443234 -0.641369 -0.282062 0.713504 0.251169 0.801535 0.542638 -0.724956 0.527241 -0.443234 -0.608274 -0.347729 0.713504 0.165779 0.823445 0.542638 -0.776222 0.448356 -0.443234 -0.568480 -0.409565 0.713504 0.078563 0.836285 0.542638 -0.818938 0.364533 -0.443234 -0.522424 -0.466890 0.713504 -0.009519 0.839913 0.542638 -0.852633 0.276695 -0.443234 -0.471132 -0.518601 0.713504 -0.096661 0.834387 0.542638 -0.876751 0.186686 -0.443234 -0.414184 -0.565123 0.713504 -0.183578 0.819660 0.542638 -0.891488 0.093768 -0.443234 -0.113699 0.971315 -0.208854 -0.463756 -0.237797 -0.853453 -0.878637 -0.000179 0.477491 -0.214873 0.954049 -0.208854 -0.436279 -0.285092 -0.853453 -0.873779 -0.092265 0.477491 -0.312754 0.926588 -0.208854 -0.404326 -0.328843 -0.853453 -0.859480 -0.182476 0.477491 -0.408145 0.888706 -0.208854 -0.367634 -0.369408 -0.853453 -0.835621 -0.271551 0.477491 -0.499040 0.841035 -0.208854 -0.326893 -0.405905 -0.853453 -0.802559 -0.357634 0.477491 -0.583654 0.784684 -0.208854 -0.282988 -0.437647 -0.853453 -0.761095 -0.439018 0.477491 -0.662679 0.719191 -0.208854 -0.235561 -0.464896 -0.853453 -0.710892 -0.516368 0.477491 -0.734406 0.645777 -0.208854 -0.185539 -0.487024 -0.853453 -0.652857 -0.588031 0.477491 -0.798044 0.565249 -0.208854 -0.133474 -0.503788 -0.853453 -0.587632 -0.653216 0.477491 -0.852412 0.479348 -0.208854 -0.080453 -0.514922 -0.853453 -0.516645 -0.710691 0.477491 -0.897956 0.387369 -0.208854 -0.026043 -0.520518 -0.853453 -0.439314 -0.760925 0.477491 -0.933610 0.291123 -0.208854 0.028655 -0.520381 -0.853453 -0.357144 -0.802777 0.477491 -0.958788 0.192630 -0.208854 0.082522 -0.514594 -0.853453 -0.271876 -0.835516 0.477491 -0.973696 0.091081 -0.208854 0.136001 -0.503111 -0.853453 -0.182811 -0.859409 0.477491 -0.977879 -0.011471 -0.208854 0.187981 -0.486087 -0.853453 -0.091732 -0.873835 0.477491 -0.971384 -0.113105 -0.208854 0.237514 -0.463901 -0.853453 -0.000358 -0.878637 0.477491 -0.954180 -0.214290 -0.208854 0.284826 -0.436453 -0.853453 0.091732 -0.873835 0.477491 -0.926466 -0.313115 -0.208854 0.329001 -0.404198 -0.853453 0.182811 -0.859409 0.477491 -0.888547 -0.408491 -0.208854 0.369551 -0.367490 -0.853453 0.271876 -0.835516 0.477491 -0.841339 -0.498526 -0.208854 0.405705 -0.327140 -0.853453 0.357144 -0.802777 0.477491 -0.784457 -0.583959 -0.208854 0.437757 -0.282818 -0.853453 0.439314 -0.760925 0.477491 -0.718933 -0.662959 -0.208854 0.464988 -0.235380 -0.853453 0.516645 -0.710691 0.477491 -0.646225 -0.734012 -0.208854 0.486911 -0.185837 -0.853453 0.587632 -0.653216 0.477491 -0.565736 -0.797698 -0.208854 0.503706 -0.133782 -0.853453 0.652857 -0.588031 0.477491 -0.479016 -0.852598 -0.208854 0.514953 -0.080253 -0.853453 0.710892 -0.516368 0.477491 -0.387020 -0.898107 -0.208854 0.520528 -0.025840 -0.853453 0.761095 -0.439018 0.477491 -0.291694 -0.933432 -0.208854 0.520398 0.028337 -0.853453 0.802559 -0.357634 0.477491 -0.192257 -0.958862 -0.208854 0.514562 0.082722 -0.853453 0.835621 -0.271551 0.477491 -0.090702 -0.973731 -0.208854 0.503058 0.136196 -0.853453 0.859480 -0.182476 0.477491 0.010873 -0.977886 -0.208854 0.486201 0.187684 -0.853453 0.873779 -0.092265 0.477491 0.113303 -0.971361 -0.208854 0.463853 0.237608 -0.853453 0.878637 -0.000179 0.477491 0.214485 -0.954136 -0.208854 0.436395 0.284915 -0.853453 0.873817 0.091910 0.477491 0.313304 -0.926402 -0.208854 0.404131 0.329083 -0.853453 0.859371 0.182986 0.477491 0.407783 -0.888872 -0.208854 0.367784 0.369259 -0.853453 0.835732 0.271210 0.477491 0.498697 -0.841238 -0.208854 0.327058 0.405771 -0.853453 0.802704 0.357307 0.477491 0.584118 -0.784338 -0.208854 0.282729 0.437815 -0.853453 0.760835 0.439469 0.477491 0.663106 -0.718798 -0.208854 0.235286 0.465035 -0.853453 0.710585 0.516789 0.477491 0.734143 -0.646076 -0.208854 0.185738 0.486948 -0.853453 0.653097 0.587765 0.477491 0.797813 -0.565574 -0.208854 0.133679 0.503733 -0.853453 0.587898 0.652977 0.477491 0.852696 -0.478843 -0.208854 0.080148 0.514970 -0.853453 0.516223 0.710997 0.477491 0.897798 -0.387735 -0.208854 0.026255 0.520507 -0.853453 0.439624 0.760746 0.477491 0.933491 -0.291504 -0.208854 -0.028443 0.520392 -0.853453 0.357471 0.802631 0.477491 0.958902 -0.192062 -0.208854 -0.082827 0.514545 -0.853453 0.271381 0.835677 0.477491 0.973750 -0.090504 -0.208854 -0.136299 0.503031 -0.853453 0.182301 0.859517 0.477491 0.977884 0.011072 -0.208854 -0.187783 0.486163 -0.853453 0.092087 0.873798 0.477491 0.971338 0.113501 -0.208854 -0.237703 0.463805 -0.853453 0.000000 0.878637 0.477491 0.954093 0.214679 -0.208854 -0.285004 0.436337 -0.853453 -0.092087 0.873798 0.477491 0.926651 0.312566 -0.208854 -0.328761 0.404393 -0.853453 -0.182301 0.859517 0.477491 0.888789 0.407964 -0.208854 -0.369334 0.367709 -0.853453 -0.271381 0.835677 0.477491 0.841136 0.498869 -0.208854 -0.405838 0.326975 -0.853453 -0.357471 0.802631 0.477491 0.784219 0.584278 -0.208854 -0.437872 0.282640 -0.853453 -0.439624 0.760746 0.477491 0.719326 0.662533 -0.208854 -0.464848 0.235656 -0.853453 -0.516223 0.710997 0.477491 0.645926 0.734275 -0.208854 -0.486986 0.185639 -0.853453 -0.587898 0.652977 0.477491 0.565411 0.797928 -0.208854 -0.503760 0.133577 -0.853453 -0.653097 0.587765 0.477491 0.479521 0.852314 -0.208854 -0.514906 0.080558 -0.853453 -0.710585 0.516789 0.477491 0.387552 0.897877 -0.208854 -0.520513 0.026149 -0.853453 -0.760835 0.439469 0.477491 0.291313 0.933550 -0.208854 -0.520387 -0.028549 -0.853453 -0.802704 0.357307 0.477491 0.191866 0.958941 -0.208854 -0.514529 -0.082932 -0.853453 -0.835732 0.271210 0.477491 0.091280 0.973678 -0.208854 -0.503139 -0.135898 -0.853453 -0.859371 0.182986 0.477491 -0.011272 0.977882 -0.208854 -0.486125 -0.187882 -0.853453 -0.873817 0.091910 0.477491 -0.310000 -0.940259 -0.140761 0.856236 -0.340461 0.388518 -0.413232 -0.000084 0.910626 -0.209747 -0.967570 -0.140761 0.887203 -0.248846 0.388518 -0.410947 -0.043393 0.910626 -0.108168 -0.984117 -0.140761 0.908243 -0.155399 0.388518 -0.404222 -0.085820 0.910626 -0.004429 -0.990034 -0.140761 0.919527 -0.059353 0.388518 -0.393001 -0.127713 0.910626 0.099358 -0.985045 -0.140761 0.920684 0.037347 0.388518 -0.377451 -0.168199 0.910626 0.201081 -0.969408 -0.140761 0.911832 0.132724 0.388518 -0.357951 -0.206474 0.910626 0.301574 -0.942995 -0.140761 0.892900 0.227559 0.388518 -0.334339 -0.242853 0.910626 0.398746 -0.906194 -0.140761 0.864132 0.319888 0.388518 -0.307045 -0.276557 0.910626 0.491526 -0.859412 -0.140761 0.825847 0.408694 0.388518 -0.276369 -0.307214 0.910626 0.578088 -0.803742 -0.140761 0.778957 0.492219 0.388518 -0.242983 -0.334245 0.910626 0.659142 -0.738727 -0.140761 0.723079 0.571149 0.388518 -0.206614 -0.357870 0.910626 0.732936 -0.665576 -0.140761 0.659236 0.643787 0.388518 -0.167968 -0.377554 0.910626 0.798071 -0.585892 -0.140761 0.588841 0.708745 0.388518 -0.127866 -0.392951 0.910626 0.855081 -0.499022 -0.140761 0.511316 0.766557 0.388518 -0.085978 -0.404188 0.910626 0.902673 -0.406655 -0.140761 0.428160 0.815924 0.388518 -0.043142 -0.410973 0.910626 0.940069 -0.310574 -0.140761 0.340984 0.856028 0.388518 -0.000168 -0.413232 0.910626 0.967442 -0.210338 -0.140761 0.249388 0.887051 0.388518 0.043142 -0.410973 0.910626 0.984159 -0.107785 -0.140761 0.155046 0.908303 0.388518 0.085978 -0.404188 0.910626 0.990035 -0.004044 -0.140761 0.058995 0.919550 0.388518 0.127866 -0.392951 0.910626 0.985106 0.098756 -0.140761 -0.036785 0.920706 0.388518 0.167968 -0.377554 0.910626 0.969330 0.201458 -0.140761 -0.133079 0.911780 0.388518 0.206614 -0.357870 0.910626 0.942877 0.301941 -0.140761 -0.227907 0.892811 0.388518 0.242983 -0.334245 0.910626 0.906438 0.398192 -0.140761 -0.319361 0.864328 0.388518 0.276369 -0.307214 0.910626 0.859712 0.491001 -0.140761 -0.408189 0.826096 0.388518 0.307045 -0.276557 0.910626 0.803517 0.578400 -0.140761 -0.492522 0.778765 0.388518 0.334339 -0.242853 0.910626 0.738471 0.659429 -0.140761 -0.571430 0.722857 0.388518 0.357951 -0.206474 0.910626 0.666024 0.732529 -0.140761 -0.643384 0.659629 0.388518 0.377451 -0.168199 0.910626 0.585581 0.798299 -0.140761 -0.708974 0.588565 0.388518 0.393001 -0.127713 0.910626 0.498689 0.855275 -0.140761 -0.766756 0.511018 0.388518 0.404222 -0.085820 0.910626 0.407206 0.902424 -0.140761 -0.815663 0.428658 0.388518 0.410947 -0.043393 0.910626 0.310383 0.940132 -0.140761 -0.856097 0.340810 0.388518 0.413232 -0.000084 0.910626 0.210141 0.967485 -0.140761 -0.887101 0.249208 0.388518 0.410965 0.043226 0.910626 0.107584 0.984181 -0.140761 -0.908334 0.154861 0.388518 0.404171 0.086060 0.910626 0.004833 0.990032 -0.140761 -0.919503 0.059727 0.388518 0.393053 0.127553 0.910626 -0.098956 0.985086 -0.140761 -0.920699 -0.036972 0.388518 0.377520 0.168045 0.910626 -0.201655 0.969289 -0.140761 -0.911753 -0.133264 0.388518 0.357828 0.206686 0.910626 -0.302133 0.942816 -0.140761 -0.892765 -0.228089 0.388518 0.334195 0.243051 0.910626 -0.398377 0.906356 -0.140761 -0.864263 -0.319537 0.388518 0.307158 0.276432 0.910626 -0.491176 0.859612 -0.140761 -0.826013 -0.408358 0.388518 0.276494 0.307102 0.910626 -0.578564 0.803399 -0.140761 -0.778665 -0.492681 0.388518 0.242785 0.334389 0.910626 -0.658841 0.738996 -0.140761 -0.723311 -0.570854 0.388518 0.206759 0.357786 0.910626 -0.732664 0.665875 -0.140761 -0.659498 -0.643518 0.388518 0.168122 0.377486 0.910626 -0.798418 0.585419 -0.140761 -0.588421 -0.709094 0.388518 0.127633 0.393027 0.910626 -0.855377 0.498515 -0.140761 -0.510862 -0.766860 0.388518 0.085738 0.404239 0.910626 -0.902507 0.407022 -0.140761 -0.428492 -0.815750 0.388518 0.043310 0.410956 0.910626 -0.940195 0.310192 -0.140761 -0.340636 -0.856166 0.388518 0.000000 0.413232 0.910626 -0.967528 0.209944 -0.140761 -0.249027 -0.887152 0.388518 -0.043310 0.410956 0.910626 -0.984095 0.108368 -0.140761 -0.155584 -0.908211 0.388518 -0.085738 0.404239 0.910626 -0.990033 0.004631 -0.140761 -0.059540 -0.919515 0.388518 -0.127633 0.393027 0.910626 -0.985066 -0.099157 -0.140761 0.037160 -0.920691 0.388518 -0.168122 0.377486 0.910626 -0.969248 -0.201853 -0.140761 0.133450 -0.911726 0.388518 -0.206759 0.357786 0.910626 -0.943056 -0.301382 -0.140761 0.227378 -0.892946 0.388518 -0.242785 0.334389 0.910626 -0.906275 -0.398562 -0.140761 0.319712 -0.864197 0.388518 -0.276494 0.307102 0.910626 -0.859512 -0.491351 -0.140761 0.408526 -0.825930 0.388518 -0.307158 0.276432 0.910626 -0.803859 -0.577924 -0.140761 0.492060 -0.779057 0.388518 -0.334195 0.243051 0.910626 -0.738862 -0.658991 -0.140761 0.571001 -0.723195 0.388518 -0.357828 0.206686 0.910626 -0.665725 -0.732800 -0.140761 0.643652 -0.659367 0.388518 -0.377520 0.168045 0.910626 -0.585256 -0.798537 -0.140761 0.709214 -0.588276 0.388518 -0.393053 0.127553 0.910626 -0.499196 -0.854979 -0.140761 0.766452 -0.511472 0.388518 -0.404171 0.086060 0.910626 -0.406839 -0.902590 -0.140761 0.815837 -0.428326 0.388518 -0.410965 0.043226 0.910626 0.805480 0.353183 -0.475882 0.304135 -0.935554 -0.179556 -0.508630 -0.000104 -0.860985 0.764027 0.435658 -0.475882 0.400513 -0.898526 -0.179556 -0.505818 -0.053411 -0.860985 0.714673 0.512620 -0.475882 0.491627 -0.852093 -0.179556 -0.497540 -0.105633 -0.860985 0.657010 0.584700 -0.475882 0.578225 -0.795874 -0.179556 -0.483729 -0.157197 -0.860985 0.592111 0.650339 -0.475882 0.658454 -0.730889 -0.179556 -0.464589 -0.207029 -0.860985 0.521398 0.708294 -0.475882 0.730772 -0.658584 -0.179556 -0.440587 -0.254141 -0.860985 0.444293 0.759039 -0.475882 0.795771 -0.578367 -0.179556 -0.411525 -0.298918 -0.860985 0.362293 0.801424 -0.475882 0.852005 -0.491779 -0.179556 -0.377929 -0.340402 -0.860985 0.276303 0.834981 -0.475882 0.898855 -0.399774 -0.179556 -0.340171 -0.378137 -0.860985 0.188128 0.859153 -0.475882 0.935500 -0.304301 -0.179556 -0.299078 -0.411408 -0.860985 0.097047 0.874138 -0.475882 0.962241 -0.204578 -0.179556 -0.254312 -0.440488 -0.860985 0.004896 0.879495 -0.475882 0.978383 -0.102602 -0.179556 -0.206745 -0.464716 -0.860985 -0.086433 0.875252 -0.475882 0.983748 -0.000479 -0.179556 -0.157385 -0.483668 -0.860985 -0.177689 0.861373 -0.475882 0.978380 0.102627 -0.179556 -0.105826 -0.497499 -0.860985 -0.266989 0.838005 -0.475882 0.962235 0.204603 -0.179556 -0.053102 -0.505850 -0.860985 -0.352691 0.805695 -0.475882 0.935740 0.303563 -0.179556 -0.000207 -0.508630 -0.860985 -0.435191 0.764293 -0.475882 0.898771 0.399964 -0.179556 0.053102 -0.505850 -0.860985 -0.512898 0.714473 -0.475882 0.851902 0.491959 -0.179556 0.105826 -0.497499 -0.860985 -0.584955 0.656783 -0.475882 0.795649 0.578535 -0.179556 0.157385 -0.483668 -0.860985 -0.649977 0.592508 -0.475882 0.731291 0.658007 -0.179556 0.206745 -0.464716 -0.860985 -0.708496 0.521123 -0.475882 0.658300 0.731028 -0.179556 0.254312 -0.440488 -0.860985 -0.759212 0.443997 -0.475882 0.578057 0.795996 -0.179556 0.299078 -0.411408 -0.860985 -0.801202 0.362783 -0.475882 0.492299 0.851705 -0.179556 0.340171 -0.378137 -0.860985 -0.834812 0.276813 -0.475882 0.400323 0.898611 -0.179556 0.377929 -0.340402 -0.860985 -0.859226 0.187794 -0.475882 0.303937 0.935618 -0.179556 0.411525 -0.298918 -0.860985 -0.874176 0.096707 -0.475882 0.204204 0.962320 -0.179556 0.440587 -0.254141 -0.860985 -0.879492 0.005434 -0.475882 0.103200 0.978320 -0.179556 0.464589 -0.207029 -0.860985 -0.875218 -0.086773 -0.475882 0.000097 0.983748 -0.179556 0.483729 -0.157197 -0.860985 -0.861303 -0.178025 -0.475882 -0.103008 0.978340 -0.179556 0.497540 -0.105633 -0.860985 -0.838168 -0.266477 -0.475882 -0.204015 0.962360 -0.179556 0.505818 -0.053411 -0.860985 -0.805624 -0.352855 -0.475882 -0.303754 0.935678 -0.179556 0.508630 -0.000104 -0.860985 -0.764205 -0.435347 -0.475882 -0.400147 0.898689 -0.179556 0.505839 0.053205 -0.860985 -0.714369 -0.513044 -0.475882 -0.492132 0.851801 -0.179556 0.497477 0.105928 -0.860985 -0.657248 -0.584432 -0.475882 -0.577901 0.796109 -0.179556 0.483793 0.157000 -0.860985 -0.592376 -0.650098 -0.475882 -0.658156 0.731157 -0.179556 0.464674 0.206840 -0.860985 -0.520979 -0.708602 -0.475882 -0.731162 0.658151 -0.179556 0.440436 0.254402 -0.860985 -0.443843 -0.759302 -0.475882 -0.796114 0.577895 -0.179556 0.411347 0.299162 -0.860985 -0.362619 -0.801276 -0.475882 -0.851805 0.492126 -0.179556 0.378068 0.340248 -0.860985 -0.276643 -0.834868 -0.475882 -0.898692 0.400140 -0.179556 0.340325 0.377999 -0.860985 -0.187619 -0.859264 -0.475882 -0.935680 0.303747 -0.179556 0.298834 0.411585 -0.860985 -0.097403 -0.874099 -0.475882 -0.962157 0.204970 -0.179556 0.254492 0.440384 -0.860985 -0.005255 -0.879493 -0.475882 -0.978341 0.103001 -0.179556 0.206935 0.464631 -0.860985 0.086952 -0.875200 -0.475882 -0.983748 -0.000104 -0.179556 0.157098 0.483761 -0.860985 0.178200 -0.861267 -0.475882 -0.978319 -0.103207 -0.179556 0.105531 0.497561 -0.860985 0.266648 -0.838114 -0.475882 -0.962319 -0.204211 -0.179556 0.053308 0.505829 -0.860985 0.353019 -0.805552 -0.475882 -0.935616 -0.303944 -0.179556 0.000000 0.508630 -0.860985 0.435503 -0.764116 -0.475882 -0.898608 -0.400330 -0.179556 -0.053308 0.505829 -0.860985 0.512475 -0.714777 -0.475882 -0.852193 -0.491454 -0.179556 -0.105531 0.497561 -0.860985 0.584566 -0.657129 -0.475882 -0.795992 -0.578063 -0.179556 -0.157098 0.483761 -0.860985 0.650218 -0.592243 -0.475882 -0.731023 -0.658305 -0.179556 -0.206935 0.464631 -0.860985 0.708709 -0.520834 -0.475882 -0.658002 -0.731296 -0.179556 -0.254492 0.440384 -0.860985 0.758949 -0.444447 -0.475882 -0.578529 -0.795653 -0.179556 -0.298834 0.411585 -0.860985 0.801350 -0.362456 -0.475882 -0.491952 -0.851905 -0.179556 -0.340325 0.377999 -0.860985 0.834925 -0.276473 -0.475882 -0.399957 -0.898774 -0.179556 -0.378068 0.340248 -0.860985 0.859115 -0.188303 -0.475882 -0.304492 -0.935438 -0.179556 -0.411347 0.299162 -0.860985 0.874119 -0.097225 -0.475882 -0.204774 -0.962199 -0.179556 -0.440436 0.254402 -0.860985 0.879494 -0.005075 -0.475882 -0.102801 -0.978362 -0.179556 -0.464674 0.206840 -0.860985 0.875183 0.087130 -0.475882 0.000304 -0.983748 -0.179556 -0.483793 0.157000 -0.860985 0.861409 0.177514 -0.475882 0.102428 -0.978401 -0.179556 -0.497477 0.105928 -0.860985 0.838060 0.266818 -0.475882 0.204407 -0.962277 -0.179556 -0.505839 0.053205 -0.860985 0.134726 -0.765721 0.628904 0.160093 0.643173 0.748798 -0.977865 -0.000199 0.209239 0.214237 -0.747383 0.628904 0.091802 0.656410 0.748798 -0.972458 -0.102685 0.209239 0.290667 -0.721105 0.628904 0.023163 0.662393 0.748798 -0.956544 -0.203084 0.209239 0.364643 -0.686669 0.628904 -0.046389 0.661173 0.748798 -0.929991 -0.302218 0.209239 0.434603 -0.644670 0.628904 -0.115429 0.652670 0.748798 -0.893195 -0.398023 0.209239 0.499180 -0.596070 0.628904 -0.182560 0.637160 0.748798 -0.847049 -0.488598 0.209239 0.558903 -0.540469 0.628904 -0.248334 0.614518 0.748798 -0.791175 -0.574683 0.209239 0.612470 -0.478916 0.628904 -0.311372 0.585106 0.748798 -0.726587 -0.654439 0.209239 0.659290 -0.412087 0.628904 -0.370981 0.549250 0.748798 -0.653995 -0.726986 0.209239 0.698508 -0.341418 0.628904 -0.425995 0.507769 0.748798 -0.574991 -0.790951 0.209239 0.730444 -0.266329 0.628904 -0.476867 0.460326 0.748798 -0.488927 -0.846859 0.209239 0.754334 -0.188306 0.628904 -0.522486 0.407811 0.748798 -0.397477 -0.893438 0.209239 0.769807 -0.108979 0.628904 -0.561999 0.351367 0.748798 -0.302580 -0.929873 0.209239 0.776989 -0.027698 0.628904 -0.595729 0.290531 0.748798 -0.203456 -0.956465 0.209239 0.775613 0.053889 0.628904 -0.622898 0.226494 0.748798 -0.102091 -0.972521 0.209239 0.765803 0.134258 0.628904 -0.643075 0.160486 0.748798 -0.000398 -0.977865 0.209239 0.747514 0.213780 0.628904 -0.656354 0.092203 0.748798 0.102091 -0.972521 0.209239 0.720991 0.290948 0.628904 -0.662402 0.022905 0.748798 0.203456 -0.956465 0.209239 0.686527 0.364910 0.628904 -0.661155 -0.046646 0.748798 0.302580 -0.929873 0.209239 0.644936 0.434209 0.628904 -0.652740 -0.115030 0.748798 0.397477 -0.893438 0.209239 0.595875 0.499411 0.628904 -0.637089 -0.182808 0.748798 0.488927 -0.846859 0.209239 0.540252 0.559113 0.628904 -0.614421 -0.248573 0.748798 0.574991 -0.790951 0.209239 0.479290 0.612177 0.628904 -0.585296 -0.311015 0.748798 0.653995 -0.726986 0.209239 0.412490 0.659038 0.628904 -0.549476 -0.370645 0.748798 0.726587 -0.654439 0.209239 0.341146 0.698641 0.628904 -0.507604 -0.426193 0.748798 0.791175 -0.574683 0.209239 0.266045 0.730547 0.628904 -0.460140 -0.477046 0.748798 0.847049 -0.488598 0.209239 0.188767 0.754219 0.628904 -0.408130 -0.522237 0.748798 0.893195 -0.398023 0.209239 0.108680 0.769849 0.628904 -0.351149 -0.562136 0.748798 0.929991 -0.302218 0.209239 0.027396 0.777000 0.628904 -0.290299 -0.595842 0.748798 0.956544 -0.203084 0.209239 -0.053415 0.775646 0.628904 -0.226874 -0.622760 0.748798 0.972458 -0.102685 0.209239 -0.134414 0.765776 0.628904 -0.160355 -0.643108 0.748798 0.977865 -0.000199 0.209239 -0.213932 0.747470 0.628904 -0.092070 -0.656372 0.748798 0.972500 0.102289 0.209239 -0.291094 0.720932 0.628904 -0.022770 -0.662407 0.748798 0.956423 0.203651 0.209239 -0.364363 0.686818 0.628904 0.046119 -0.661192 0.748798 0.930114 0.301839 0.209239 -0.434340 0.644847 0.628904 0.115163 -0.652717 0.748798 0.893357 0.397660 0.209239 -0.499533 0.595774 0.628904 0.182938 -0.637052 0.748798 0.846759 0.489100 0.209239 -0.559223 0.540138 0.628904 0.248698 -0.614370 0.748798 0.790834 0.575152 0.209239 -0.612274 0.479165 0.628904 0.311134 -0.585233 0.748798 0.726853 0.654143 0.209239 -0.659122 0.412355 0.628904 0.370757 -0.549401 0.748798 0.654291 0.726720 0.209239 -0.698710 0.341004 0.628904 0.426296 -0.507517 0.748798 0.574522 0.791292 0.209239 -0.730335 0.266626 0.628904 0.476679 -0.460520 0.748798 0.489272 0.846659 0.209239 -0.754257 0.188613 0.628904 0.522320 -0.408024 0.748798 0.397841 0.893276 0.209239 -0.769871 0.108523 0.628904 0.562207 -0.351034 0.748798 0.302029 0.930053 0.209239 -0.777005 0.027237 0.628904 0.595902 -0.290177 0.748798 0.202889 0.956585 0.209239 -0.775635 -0.053573 0.628904 0.622806 -0.226747 0.748798 0.102487 0.972479 0.209239 -0.765748 -0.134570 0.628904 0.643141 -0.160224 0.748798 0.000000 0.977865 0.209239 -0.747427 -0.214085 0.628904 0.656391 -0.091936 0.748798 -0.102487 0.972479 0.209239 -0.721164 -0.290520 0.628904 0.662389 -0.023297 0.748798 -0.202889 0.956585 0.209239 -0.686743 -0.364503 0.628904 0.661182 0.046254 0.748798 -0.302029 0.930053 0.209239 -0.644759 -0.434472 0.628904 0.652693 0.115296 0.748798 -0.397841 0.893276 0.209239 -0.595672 -0.499654 0.628904 0.637015 0.183068 0.748798 -0.489272 0.846659 0.209239 -0.540583 -0.558793 0.628904 0.614568 0.248209 0.748798 -0.574522 0.791292 0.209239 -0.479040 -0.612372 0.628904 0.585169 0.311253 0.748798 -0.654291 0.726720 0.209239 -0.412221 -0.659206 0.628904 0.549325 0.370869 0.748798 -0.726853 0.654143 0.209239 -0.341560 -0.698438 0.628904 0.507856 0.425892 0.748798 -0.790834 0.575152 0.209239 -0.266477 -0.730390 0.628904 0.460423 0.476773 0.748798 -0.846759 0.489100 0.209239 -0.188460 -0.754296 0.628904 0.407918 0.522403 0.748798 -0.893357 0.397660 0.209239 -0.108366 -0.769893 0.628904 0.350920 0.562278 0.748798 -0.930114 0.301839 0.209239 -0.027856 -0.776983 0.628904 0.290652 0.595670 0.748798 -0.956423 0.203651 0.209239 0.053731 -0.775624 0.628904 0.226621 0.622852 0.748798 -0.972500 0.102289 0.209239 -0.088953 -0.052198 0.994667 -0.004852 0.998637 0.051973 -0.996024 -0.000203 -0.089085 -0.082993 -0.061234 0.994667 -0.109489 0.992628 0.051973 -0.990517 -0.104592 -0.089085 -0.076188 -0.069518 0.994667 -0.211945 0.975899 0.051973 -0.974307 -0.206855 -0.089085 -0.068482 -0.077121 0.994667 -0.313059 0.948311 0.051973 -0.947261 -0.307830 -0.089085 -0.060022 -0.083873 0.994667 -0.410725 0.910277 0.051973 -0.909782 -0.405415 -0.089085 -0.050991 -0.089651 0.994667 -0.503004 0.862720 0.051973 -0.862779 -0.497671 -0.089085 -0.041314 -0.094501 0.994667 -0.590653 0.805250 0.051973 -0.805868 -0.585356 -0.089085 -0.031182 -0.098311 0.994667 -0.671796 0.738911 0.051973 -0.740080 -0.666592 -0.089085 -0.020706 -0.101038 0.994667 -0.745539 0.664432 0.051973 -0.666140 -0.740487 -0.089085 -0.010105 -0.102641 0.994667 -0.810487 0.583446 0.051973 -0.585669 -0.805640 -0.089085 0.000708 -0.103135 0.994667 -0.867173 0.495288 0.051973 -0.498007 -0.862585 -0.089085 0.011513 -0.102493 0.994667 -0.914307 0.401674 0.051973 -0.404859 -0.910029 -0.089085 0.022091 -0.100744 0.994667 -0.951065 0.304587 0.051973 -0.308199 -0.947142 -0.089085 0.032528 -0.097874 0.994667 -0.977750 0.203231 0.051973 -0.207234 -0.974227 -0.089085 0.042607 -0.093926 0.994667 -0.993666 0.099637 0.051973 -0.103987 -0.990581 -0.089085 0.052144 -0.088985 0.994667 -0.998640 -0.004242 0.051973 -0.000406 -0.996024 -0.089085 0.061183 -0.083030 0.994667 -0.992695 -0.108883 0.051973 0.103987 -0.990581 -0.089085 0.069548 -0.076160 0.994667 -0.975816 -0.212325 0.051973 0.207234 -0.974227 -0.089085 0.077147 -0.068452 0.994667 -0.948189 -0.313428 0.051973 0.308199 -0.947142 -0.089085 0.083837 -0.060073 0.994667 -0.910528 -0.410168 0.051973 0.404859 -0.910029 -0.089085 0.089671 -0.050956 0.994667 -0.862524 -0.503339 0.051973 0.498007 -0.862585 -0.089085 0.094518 -0.041277 0.994667 -0.805021 -0.590966 0.051973 0.585669 -0.805640 -0.089085 0.098292 -0.031242 0.994667 -0.739321 -0.671344 0.051973 0.666140 -0.740487 -0.089085 0.101025 -0.020768 0.994667 -0.664888 -0.745133 0.051973 0.740080 -0.666592 -0.089085 0.102645 -0.010065 0.994667 -0.583131 -0.810714 0.051973 0.805868 -0.585356 -0.089085 0.103135 0.000748 0.994667 -0.494951 -0.867365 0.051973 0.862779 -0.497671 -0.089085 0.102500 0.011451 0.994667 -0.402233 -0.914061 0.051973 0.909782 -0.405415 -0.089085 0.100735 0.022130 0.994667 -0.304217 -0.951184 0.051973 0.947261 -0.307830 -0.089085 0.097861 0.032566 0.994667 -0.202851 -0.977829 0.051973 0.974307 -0.206855 -0.089085 0.093952 0.042549 0.994667 -0.100244 -0.993605 0.051973 0.990517 -0.104592 -0.089085 0.088975 0.052162 0.994667 0.004445 -0.998639 0.051973 0.996024 -0.000203 -0.089085 0.083018 0.061200 0.994667 0.109085 -0.992673 0.051973 0.990560 0.104189 -0.089085 0.076146 0.069564 0.994667 0.212524 -0.975773 0.051973 0.974185 0.207433 -0.089085 0.068513 0.077093 0.994667 0.312673 -0.948438 0.051973 0.947387 0.307445 -0.089085 0.060056 0.083849 0.994667 0.410354 -0.910444 0.051973 0.909947 0.405044 -0.089085 0.050937 0.089681 0.994667 0.503515 -0.862422 0.051973 0.862484 0.498182 -0.089085 0.041258 0.094526 0.994667 0.591130 -0.804900 0.051973 0.805520 0.585833 -0.089085 0.031222 0.098298 0.994667 0.671495 -0.739184 0.051973 0.740351 0.666291 -0.089085 0.020747 0.101029 0.994667 0.745268 -0.664736 0.051973 0.666442 0.740216 -0.089085 0.010045 0.102647 0.994667 0.810833 -0.582966 0.051973 0.585192 0.805987 -0.089085 -0.000666 0.103135 0.994667 0.866971 -0.495641 0.051973 0.498358 0.862382 -0.089085 -0.011471 0.102498 0.994667 0.914143 -0.402047 0.051973 0.405230 0.909864 -0.089085 -0.022151 0.100731 0.994667 0.951246 -0.304024 0.051973 0.307637 0.947324 -0.089085 -0.032586 0.097854 0.994667 0.977871 -0.202652 0.051973 0.206657 0.974349 -0.089085 -0.042569 0.093943 0.994667 0.993625 -0.100042 0.051973 0.104390 0.990538 -0.089085 -0.052180 0.088964 0.994667 0.998638 0.004648 0.051973 0.000000 0.996024 -0.089085 -0.061217 0.083005 0.994667 0.992651 0.109287 0.051973 -0.104390 0.990538 -0.089085 -0.069503 0.076202 0.994667 0.975942 0.211746 0.051973 -0.206657 0.974349 -0.089085 -0.077107 0.068498 0.994667 0.948374 0.312866 0.051973 -0.307637 0.947324 -0.089085 -0.083861 0.060039 0.994667 0.910361 0.410539 0.051973 -0.405230 0.909864 -0.089085 -0.089692 0.050919 0.994667 0.862319 0.503691 0.051973 -0.498358 0.862382 -0.089085 -0.094493 0.041333 0.994667 0.805371 0.590489 0.051973 -0.585192 0.805987 -0.089085 -0.098305 0.031202 0.994667 0.739048 0.671645 0.051973 -0.666442 0.740216 -0.089085 -0.101033 0.020727 0.994667 0.664584 0.745404 0.051973 -0.740351 0.666291 -0.089085 -0.102639 0.010126 0.994667 0.583611 0.810368 0.051973 -0.805520 0.585833 -0.089085 -0.103135 -0.000687 0.994667 0.495464 0.867072 0.051973 -0.862484 0.498182 -0.089085 -0.102495 -0.011492 0.994667 0.401860 0.914225 0.051973 -0.909947 0.405044 -0.089085 -0.100726 -0.022171 0.994667 0.303830 0.951308 0.051973 -0.947387 0.307445 -0.089085 -0.097880 -0.032508 0.994667 0.203430 0.977709 0.051973 -0.974185 0.207433 -0.089085 -0.093934 -0.042588 0.994667 0.099839 0.993645 0.051973 -0.990560 0.104189 -0.089085 0.014224 0.988321 0.151719 -0.093580 0.152385 -0.983881 -0.995510 -0.000203 0.094654 -0.089437 0.984369 0.151719 -0.109035 0.141738 -0.983881 -0.990006 -0.104538 0.094654 -0.191144 0.969766 0.151719 -0.123160 0.129653 -0.983881 -0.973805 -0.206749 0.094654 -0.291729 0.944391 0.151719 -0.136071 0.116030 -0.983881 -0.946773 -0.307672 0.094654 -0.389102 0.908615 0.151719 -0.147482 0.101130 -0.983881 -0.909312 -0.405206 0.094654 -0.481325 0.863312 0.151719 -0.157184 0.085273 -0.983881 -0.862334 -0.497414 0.094654 -0.569155 0.808111 0.151719 -0.165255 0.068330 -0.983881 -0.805452 -0.585054 0.094654 -0.650717 0.744009 0.151719 -0.171507 0.050633 -0.983881 -0.739698 -0.666249 0.094654 -0.725110 0.671711 0.151719 -0.175869 0.032379 -0.983881 -0.665797 -0.740105 0.094654 -0.790925 0.592806 0.151719 -0.178280 0.013947 -0.983881 -0.585367 -0.805224 0.094654 -0.848699 0.506647 0.151719 -0.178760 -0.004815 -0.983881 -0.497750 -0.862140 0.094654 -0.897125 0.414907 0.151719 -0.177271 -0.023524 -0.983881 -0.404650 -0.909560 0.094654 -0.935350 0.319532 0.151719 -0.173871 -0.041799 -0.983881 -0.308040 -0.946653 0.094654 -0.963688 0.219741 0.151719 -0.168532 -0.059792 -0.983881 -0.207127 -0.973724 0.094654 -0.981411 0.117529 0.151719 -0.161338 -0.077126 -0.983881 -0.103933 -0.990070 0.094654 -0.988312 0.014828 0.151719 -0.152442 -0.093487 -0.983881 -0.000405 -0.995510 0.094654 -0.984423 -0.088836 0.151719 -0.141804 -0.108949 -0.983881 0.103933 -0.990070 0.094654 -0.969691 -0.191521 0.151719 -0.129605 -0.123211 -0.983881 0.207127 -0.973724 0.094654 -0.944278 -0.292097 0.151719 -0.115977 -0.136116 -0.983881 0.308040 -0.946653 0.094654 -0.908853 -0.388546 0.151719 -0.101220 -0.147420 -0.983881 0.404650 -0.909560 0.094654 -0.863125 -0.481661 0.151719 -0.085212 -0.157217 -0.983881 0.497750 -0.862140 0.094654 -0.807889 -0.569470 0.151719 -0.068265 -0.165282 -0.983881 0.585367 -0.805224 0.094654 -0.744406 -0.650262 0.151719 -0.050738 -0.171476 -0.983881 0.665797 -0.740105 0.094654 -0.672154 -0.724700 0.151719 -0.032487 -0.175849 -0.983881 0.739698 -0.666249 0.094654 -0.592499 -0.791155 0.151719 -0.013878 -0.178285 -0.983881 0.805452 -0.585054 0.094654 -0.506317 -0.848896 0.151719 0.004884 -0.178758 -0.983881 0.862334 -0.497414 0.094654 -0.415455 -0.896871 0.151719 0.023415 -0.177285 -0.983881 0.909312 -0.405206 0.094654 -0.319168 -0.935475 0.151719 0.041867 -0.173855 -0.983881 0.946773 -0.307672 0.094654 -0.219366 -0.963774 0.151719 0.059858 -0.168509 -0.983881 0.973805 -0.206749 0.094654 -0.118129 -0.981339 0.151719 0.077028 -0.161385 -0.983881 0.990006 -0.104538 0.094654 -0.014627 -0.988315 0.151719 0.093518 -0.152423 -0.983881 0.995510 -0.000203 0.094654 0.089036 -0.984405 0.151719 0.108978 -0.141782 -0.983881 0.990049 0.104135 0.094654 0.191719 -0.969652 0.151719 0.123237 -0.129580 -0.983881 0.973682 0.207326 0.094654 0.291345 -0.944510 0.151719 0.136023 -0.116086 -0.983881 0.946898 0.307286 0.094654 0.388732 -0.908773 0.151719 0.147441 -0.101190 -0.983881 0.909477 0.404835 0.094654 0.481837 -0.863026 0.151719 0.157234 -0.085180 -0.983881 0.862039 0.497925 0.094654 0.569634 -0.807773 0.151719 0.165296 -0.068232 -0.983881 0.805105 0.585531 0.094654 0.650414 -0.744274 0.151719 0.171486 -0.050703 -0.983881 0.739969 0.665947 0.094654 0.724837 -0.672007 0.151719 0.175856 -0.032451 -0.983881 0.666098 0.739834 0.094654 0.791276 -0.592338 0.151719 0.178288 -0.013841 -0.983881 0.584890 0.805571 0.094654 0.848493 -0.506993 0.151719 0.178762 0.004742 -0.983881 0.498101 0.861937 0.094654 0.896956 -0.415272 0.151719 0.177280 0.023451 -0.983881 0.405021 0.909395 0.094654 0.935540 -0.318978 0.151719 0.173846 0.041902 -0.983881 0.307479 0.946835 0.094654 0.963818 -0.219170 0.151719 0.168497 0.059892 -0.983881 0.206550 0.973847 0.094654 0.981363 -0.117929 0.151719 0.161369 0.077061 -0.983881 0.104337 0.990027 0.094654 0.988318 -0.014426 0.151719 0.152404 0.093549 -0.983881 0.000000 0.995510 0.094654 0.984387 0.089237 0.151719 0.141760 0.109007 -0.983881 -0.104337 0.990027 0.094654 0.969804 0.190946 0.151719 0.129678 0.123134 -0.983881 -0.206550 0.973847 0.094654 0.944451 0.291537 0.151719 0.116058 0.136047 -0.983881 -0.307479 0.946835 0.094654 0.908694 0.388917 0.151719 0.101160 0.147461 -0.983881 -0.405021 0.909395 0.094654 0.862928 0.482012 0.151719 0.085148 0.157252 -0.983881 -0.498101 0.861937 0.094654 0.808227 0.568991 0.151719 0.068363 0.165241 -0.983881 -0.584890 0.805571 0.094654 0.744141 0.650565 0.151719 0.050668 0.171496 -0.983881 -0.666098 0.739834 0.094654 0.671859 0.724974 0.151719 0.032415 0.175862 -0.983881 -0.739969 0.665947 0.094654 0.592968 0.790804 0.151719 0.013983 0.178277 -0.983881 -0.805105 0.585531 0.094654 0.506820 0.848596 0.151719 -0.004778 0.178761 -0.983881 -0.862039 0.497925 0.094654 0.415090 0.897041 0.151719 -0.023487 0.177276 -0.983881 -0.909477 0.404835 0.094654 0.318787 0.935605 0.151719 -0.041938 0.173838 -0.983881 -0.946898 0.307286 0.094654 0.219937 0.963643 0.151719 -0.059758 0.168545 -0.983881 -0.973682 0.207326 0.094654 0.117729 0.981387 0.151719 -0.077093 0.161353 -0.983881 -0.990049 0.104135 0.094654 -0.646929 -0.357271 0.673676 -0.247575 0.934001 0.257584 -0.721241 -0.000147 -0.692684 -0.605922 -0.423106 0.673676 -0.344101 0.902909 0.257584 -0.717254 -0.075737 -0.692684 -0.558724 -0.483723 0.673676 -0.435976 0.862308 0.257584 -0.705516 -0.149788 -0.692684 -0.504949 -0.539617 0.673676 -0.523951 0.811866 0.257584 -0.685931 -0.222906 -0.692684 -0.445613 -0.589567 0.673676 -0.606154 0.752481 0.257584 -0.658791 -0.293569 -0.692684 -0.382000 -0.632642 0.673676 -0.680996 0.685489 0.257584 -0.624756 -0.360374 -0.692684 -0.313591 -0.669194 0.673676 -0.749090 0.610340 0.257584 -0.583545 -0.423868 -0.692684 -0.241728 -0.698375 0.673676 -0.808932 0.528469 0.257584 -0.535907 -0.482693 -0.692684 -0.167202 -0.719864 0.673676 -0.859864 0.440776 0.257584 -0.482366 -0.536202 -0.692684 -0.091567 -0.733332 0.673676 -0.900977 0.349130 0.257584 -0.424095 -0.583380 -0.692684 -0.014205 -0.738890 0.673676 -0.932606 0.252778 0.257584 -0.360617 -0.624615 -0.692684 0.063315 -0.736309 0.673676 -0.953963 0.153642 0.257584 -0.293167 -0.658971 -0.692684 0.139411 -0.725758 0.673676 -0.964758 0.053779 0.257584 -0.223173 -0.685845 -0.692684 0.214708 -0.707150 0.673676 -0.965081 -0.047631 0.257584 -0.150063 -0.705457 -0.692684 0.287639 -0.680752 0.673676 -0.954774 -0.148516 0.257584 -0.075299 -0.717300 -0.692684 0.356876 -0.647148 0.673676 -0.934152 -0.247004 0.257584 -0.000294 -0.721241 -0.692684 0.422736 -0.606180 0.673676 -0.903119 -0.343550 0.257584 0.075299 -0.717300 -0.692684 0.483940 -0.558536 0.673676 -0.862139 -0.436311 0.257584 0.150063 -0.705457 -0.692684 0.539813 -0.504739 0.673676 -0.811662 -0.524266 0.257584 0.223173 -0.685845 -0.692684 0.589295 -0.445973 0.673676 -0.752851 -0.605694 0.257584 0.293167 -0.658971 -0.692684 0.632791 -0.381754 0.673676 -0.685224 -0.681263 0.257584 0.360617 -0.624615 -0.692684 0.669316 -0.313331 0.673676 -0.610049 -0.749327 0.257584 0.424095 -0.583380 -0.692684 0.698227 -0.242154 0.673676 -0.528963 -0.808609 0.257584 0.482366 -0.536202 -0.692684 0.719762 -0.167641 0.673676 -0.441301 -0.859595 0.257584 0.535907 -0.482693 -0.692684 0.733368 -0.091282 0.673676 -0.348779 -0.901112 0.257584 0.583545 -0.423868 -0.692684 0.738896 -0.013917 0.673676 -0.252416 -0.932704 0.257584 0.624756 -0.360374 -0.692684 0.736348 0.062865 0.673676 -0.154225 -0.953869 0.257584 0.658791 -0.293569 -0.692684 0.725704 0.139693 0.673676 -0.053404 -0.964779 0.257584 0.685931 -0.222906 -0.692684 0.707066 0.214983 0.673676 0.048006 -0.965063 0.257584 0.705516 -0.149788 -0.692684 0.680928 0.287223 0.673676 0.147933 -0.954865 0.257584 0.717254 -0.075737 -0.692684 0.647075 0.357008 0.673676 0.247195 -0.934101 0.257584 0.721241 -0.000147 -0.692684 0.606094 0.422860 0.673676 0.343734 -0.903049 0.257584 0.717285 0.075445 -0.692684 0.558437 0.484054 0.673676 0.436487 -0.862050 0.257584 0.705427 0.150206 -0.692684 0.505169 0.539411 0.673676 0.523620 -0.812079 0.257584 0.686022 0.222627 -0.692684 0.445853 0.589386 0.673676 0.605848 -0.752728 0.257584 0.658911 0.293301 -0.692684 0.381626 0.632868 0.673676 0.681402 -0.685085 0.257584 0.624542 0.360744 -0.692684 0.313195 0.669380 0.673676 0.749451 -0.609896 0.257584 0.583294 0.424214 -0.692684 0.242012 0.698277 0.673676 0.808717 -0.528798 0.257584 0.536103 0.482475 -0.692684 0.167495 0.719796 0.673676 0.859685 -0.441126 0.257584 0.482584 0.536005 -0.692684 0.091133 0.733386 0.673676 0.901183 -0.348596 0.257584 0.423749 0.583631 -0.692684 0.014506 0.738884 0.673676 0.932503 -0.253158 0.257584 0.360871 0.624469 -0.692684 -0.063015 0.736335 0.673676 0.953900 -0.154031 0.257584 0.293435 0.658851 -0.692684 -0.139841 0.725676 0.673676 0.964790 -0.053207 0.257584 0.222767 0.685977 -0.692684 -0.215127 0.707023 0.673676 0.965053 0.048203 0.257584 0.149644 0.705546 -0.692684 -0.287362 0.680870 0.673676 0.954835 0.148127 0.257584 0.075591 0.717269 -0.692684 -0.357140 0.647002 0.673676 0.934051 0.247385 0.257584 0.000000 0.721241 -0.692684 -0.422983 0.606008 0.673676 0.902979 0.343918 0.257584 -0.075591 0.717269 -0.692684 -0.483609 0.558823 0.673676 0.862397 0.435800 0.257584 -0.149644 0.705546 -0.692684 -0.539514 0.505059 0.673676 0.811973 0.523785 0.257584 -0.222767 0.685977 -0.692684 -0.589477 0.445733 0.673676 0.752604 0.606001 0.257584 -0.293435 0.658851 -0.692684 -0.632946 0.381497 0.673676 0.684946 0.681542 0.257584 -0.360871 0.624469 -0.692684 -0.669130 0.313727 0.673676 0.610493 0.748966 0.257584 -0.423749 0.583631 -0.692684 -0.698326 0.241870 0.673676 0.528633 0.808825 0.257584 -0.482584 0.536005 -0.692684 -0.719830 0.167348 0.673676 0.440951 0.859775 0.257584 -0.536103 0.482475 -0.692684 -0.733313 0.091717 0.673676 0.349313 0.900905 0.257584 -0.583294 0.424214 -0.692684 -0.738887 0.014355 0.673676 0.252968 0.932554 0.257584 -0.624542 0.360744 -0.692684 -0.736322 -0.063165 0.673676 0.153837 0.953931 0.257584 -0.658911 0.293301 -0.692684 -0.725647 -0.139989 0.673676 0.053011 0.964801 0.257584 -0.686022 0.222627 -0.692684 -0.707194 -0.214564 0.673676 -0.047434 0.965091 0.257584 -0.705427 0.150206 -0.692684 -0.680811 -0.287501 0.673676 -0.148322 0.954804 0.257584 -0.717285 0.075445 -0.692684 -0.055536 -0.837791 0.543160 -0.085586 0.545991 0.833408 -0.994782 -0.000203 -0.102026 0.032576 -0.838997 0.543160 -0.142339 0.534014 0.833408 -0.989282 -0.104462 -0.102026 0.119498 -0.831082 0.543160 -0.197007 0.516352 0.833408 -0.973092 -0.206597 -0.102026 0.205944 -0.813981 0.543160 -0.250040 0.492861 0.833408 -0.946080 -0.307446 -0.102026 0.290121 -0.787914 0.543160 -0.300318 0.463941 0.833408 -0.908647 -0.404909 -0.102026 0.370348 -0.753538 0.543160 -0.346858 0.430257 0.833408 -0.861703 -0.497051 -0.102026 0.447285 -0.710573 0.543160 -0.390042 0.391534 0.833408 -0.804863 -0.584625 -0.102026 0.519295 -0.659781 0.543160 -0.428929 0.348499 0.833408 -0.739157 -0.665761 -0.102026 0.585584 -0.601721 0.543160 -0.463092 0.301624 0.833408 -0.665309 -0.739563 -0.102026 0.644887 -0.537679 0.543160 -0.491902 0.251920 0.833408 -0.584939 -0.804635 -0.102026 0.697688 -0.467129 0.543160 -0.515596 0.198978 0.833408 -0.497386 -0.861509 -0.102026 0.742804 -0.391434 0.543160 -0.533611 0.143844 0.833408 -0.404354 -0.908894 -0.102026 0.779426 -0.312206 0.543160 -0.545661 0.087671 0.833408 -0.307815 -0.945960 -0.102026 0.807855 -0.228798 0.543160 -0.551844 0.029999 0.833408 -0.206976 -0.973012 -0.102026 0.827385 -0.142869 0.543160 -0.551949 -0.028004 0.833408 -0.103857 -0.989345 -0.102026 0.837757 -0.056048 0.543160 -0.546044 -0.085253 0.833408 -0.000405 -0.994782 -0.102026 0.839017 0.032063 0.543160 -0.534101 -0.142012 0.833408 0.103857 -0.989345 -0.102026 0.831036 0.119822 0.543160 -0.516276 -0.197208 0.833408 0.206976 -0.973012 -0.102026 0.813901 0.206260 0.543160 -0.492764 -0.250231 0.833408 0.307815 -0.945960 -0.102026 0.788091 0.289639 0.543160 -0.464124 -0.300034 0.833408 0.404354 -0.908894 -0.102026 0.753394 0.370641 0.543160 -0.430122 -0.347025 0.833408 0.497386 -0.861509 -0.102026 0.710399 0.447561 0.543160 -0.391382 -0.390194 0.833408 0.584939 -0.804635 -0.102026 0.660098 0.518891 0.543160 -0.348761 -0.428716 0.833408 0.665309 -0.739563 -0.102026 0.602079 0.585217 0.543160 -0.301907 -0.462908 0.833408 0.739157 -0.665761 -0.102026 0.537428 0.645096 0.543160 -0.251729 -0.492000 0.833408 0.804863 -0.584625 -0.102026 0.466858 0.697869 0.543160 -0.198777 -0.515674 0.833408 0.861703 -0.497051 -0.102026 0.391888 0.742564 0.543160 -0.144170 -0.533523 0.833408 0.908647 -0.404909 -0.102026 0.311903 0.779547 0.543160 -0.087459 -0.545695 0.833408 0.946080 -0.307446 -0.102026 0.228483 0.807944 0.543160 -0.029784 -0.551856 0.833408 0.973092 -0.206597 -0.102026 0.143374 0.827298 0.543160 0.027666 -0.551966 0.833408 0.989282 -0.104462 -0.102026 0.055878 0.837768 0.543160 0.085364 -0.546026 0.833408 0.994782 -0.000203 -0.102026 -0.032234 0.839010 0.543160 0.142121 -0.534072 0.833408 0.989324 0.104059 -0.102026 -0.119991 0.831011 0.543160 0.197313 -0.516236 0.833408 0.972970 0.207174 -0.102026 -0.205612 0.814065 0.543160 0.249839 -0.492963 0.833408 0.946205 0.307061 -0.102026 -0.289800 0.788032 0.543160 0.300129 -0.464063 0.833408 0.908812 0.404539 -0.102026 -0.370795 0.753319 0.543160 0.347113 -0.430051 0.833408 0.861408 0.497561 -0.102026 -0.447706 0.710308 0.543160 0.390274 -0.391303 0.833408 0.804516 0.585102 -0.102026 -0.519026 0.659992 0.543160 0.428787 -0.348673 0.833408 0.739428 0.665460 -0.102026 -0.585339 0.601960 0.543160 0.462969 -0.301813 0.833408 0.665611 0.739292 -0.102026 -0.645205 0.537297 0.543160 0.492052 -0.251628 0.833408 0.584462 0.804982 -0.102026 -0.697497 0.467413 0.543160 0.515515 -0.199188 0.833408 0.497736 0.861307 -0.102026 -0.742644 0.391736 0.543160 0.533552 -0.144061 0.833408 0.404724 0.908729 -0.102026 -0.779611 0.311744 0.543160 0.545712 -0.087347 0.833408 0.307254 0.946143 -0.102026 -0.807990 0.228319 0.543160 0.551862 -0.029672 0.833408 0.206399 0.973134 -0.102026 -0.827327 0.143205 0.543160 0.551960 0.027779 0.833408 0.104260 0.989303 -0.102026 -0.837779 0.055707 0.543160 0.546009 0.085475 0.833408 0.000000 0.994782 -0.102026 -0.839004 -0.032405 0.543160 0.534043 0.142230 0.833408 -0.104260 0.989303 -0.102026 -0.831107 -0.119329 0.543160 0.516392 0.196902 0.833408 -0.206399 0.973134 -0.102026 -0.814023 -0.205778 0.543160 0.492912 0.249939 0.833408 -0.307254 0.946143 -0.102026 -0.787973 -0.289960 0.543160 0.464002 0.300223 0.833408 -0.404724 0.908729 -0.102026 -0.753243 -0.370948 0.543160 0.429981 0.347201 0.833408 -0.497736 0.861307 -0.102026 -0.710664 -0.447140 0.543160 0.391614 0.389962 0.833408 -0.584462 0.804982 -0.102026 -0.659887 -0.519160 0.543160 0.348586 0.428858 0.833408 -0.665611 0.739292 -0.102026 -0.601841 -0.585462 0.543160 0.301719 0.463031 0.833408 -0.739428 0.665460 -0.102026 -0.537810 -0.644777 0.543160 0.252020 0.491851 0.833408 -0.804516 0.585102 -0.102026 -0.467271 -0.697592 0.543160 0.199083 0.515556 0.833408 -0.861408 0.497561 -0.102026 -0.391585 -0.742724 0.543160 0.143952 0.533582 0.833408 -0.908812 0.404539 -0.102026 -0.311586 -0.779674 0.543160 0.087236 0.545730 0.833408 -0.946205 0.307061 -0.102026 -0.228962 -0.807808 0.543160 0.030111 0.551838 0.833408 -0.972970 0.207174 -0.102026 -0.143037 -0.827356 0.543160 -0.027891 0.551954 0.833408 -0.989324 0.104059 -0.102026 -0.461658 0.778735 -0.424787 -0.572908 -0.627353 -0.527451 -0.677236 -0.000138 0.735766 -0.540732 0.726061 -0.424787 -0.504001 -0.683943 -0.527451 -0.673492 -0.071116 0.735766 -0.613185 0.666003 -0.424787 -0.430276 -0.732569 -0.527451 -0.662470 -0.140649 0.735766 -0.679610 0.598069 -0.424787 -0.351128 -0.773631 -0.527451 -0.644081 -0.209306 0.735766 -0.738549 0.523547 -0.424787 -0.268112 -0.806171 -0.527451 -0.618597 -0.275658 0.735766 -0.788909 0.444048 -0.424787 -0.182973 -0.829648 -0.527451 -0.586638 -0.338387 0.735766 -0.831103 0.358919 -0.424787 -0.095012 -0.844256 -0.527451 -0.547942 -0.398007 0.735766 -0.864143 0.269837 -0.424787 -0.006005 -0.849564 -0.527451 -0.503210 -0.453243 0.735766 -0.887665 0.177782 -0.424787 0.083069 -0.845515 -0.527451 -0.452935 -0.503487 0.735766 -0.901325 0.084671 -0.424787 0.170395 -0.832322 -0.527451 -0.398220 -0.547787 0.735766 -0.905235 -0.010261 -0.424787 0.256690 -0.809880 -0.527451 -0.338615 -0.586506 0.735766 -0.899174 -0.105080 -0.424787 0.340158 -0.778517 -0.527451 -0.275280 -0.618765 0.735766 -0.883407 -0.197857 -0.424787 0.419140 -0.738998 -0.527451 -0.209557 -0.643999 0.735766 -0.857805 -0.289355 -0.424787 0.494283 -0.690999 -0.527451 -0.140907 -0.662416 0.735766 -0.822754 -0.377666 -0.424787 0.563983 -0.635389 -0.527451 -0.070705 -0.673535 0.735766 -0.779017 -0.461182 -0.424787 0.627003 -0.573291 -0.527451 -0.000276 -0.677236 0.735766 -0.726391 -0.540288 -0.424787 0.683635 -0.504419 -0.527451 0.070705 -0.673535 0.735766 -0.665764 -0.613444 -0.424787 0.732737 -0.429991 -0.527451 0.140907 -0.662416 0.735766 -0.597804 -0.679842 -0.424787 0.773767 -0.350827 -0.527451 0.209557 -0.643999 0.735766 -0.523998 -0.738228 -0.424787 0.806007 -0.268605 -0.527451 0.275280 -0.618765 0.735766 -0.443741 -0.789082 -0.424787 0.829719 -0.182650 -0.527451 0.338615 -0.586506 0.735766 -0.358596 -0.831243 -0.424787 0.844293 -0.094683 -0.527451 0.398220 -0.547787 0.735766 -0.270364 -0.863978 -0.424787 0.849560 -0.006524 -0.527451 0.452935 -0.503487 0.735766 -0.178324 -0.887556 -0.424787 0.845565 0.082552 -0.527451 0.503210 -0.453243 0.735766 -0.084320 -0.901358 -0.424787 0.832256 0.170719 -0.527451 0.547942 -0.398007 0.735766 0.010613 -0.905231 -0.424787 0.809780 0.257005 -0.527451 0.586638 -0.338387 0.735766 0.104530 -0.899238 -0.424787 0.778724 0.339682 -0.527451 0.618597 -0.275658 0.735766 0.198201 -0.883330 -0.424787 0.738834 0.419427 -0.527451 0.644081 -0.209306 0.735766 0.289689 -0.857692 -0.424787 0.690806 0.494552 -0.527451 0.662470 -0.140649 0.735766 0.377163 -0.822985 -0.424787 0.635733 0.563594 -0.527451 0.673492 -0.071116 0.735766 0.461340 -0.778923 -0.424787 0.573163 0.627120 -0.527451 0.677236 -0.000138 0.735766 0.540436 -0.726281 -0.424787 0.504280 0.683738 -0.527451 0.673521 0.070842 0.735766 0.613579 -0.665640 -0.424787 0.429842 0.732824 -0.527451 0.662387 0.141042 0.735766 0.679366 -0.598346 -0.424787 0.351443 0.773488 -0.527451 0.644166 0.209044 0.735766 0.738335 -0.523848 -0.424787 0.268440 0.806061 -0.527451 0.618709 0.275406 0.735766 0.789172 -0.443580 -0.424787 0.182481 0.829757 -0.527451 0.586437 0.338734 0.735766 0.831316 -0.358426 -0.424787 0.094511 0.844312 -0.527451 0.547705 0.398331 0.735766 0.864033 -0.270189 -0.424787 0.006351 0.849562 -0.527451 0.503394 0.453038 0.735766 0.887593 -0.178144 -0.424787 -0.082725 0.845548 -0.527451 0.453140 0.503302 0.735766 0.901375 -0.084136 -0.424787 -0.170888 0.832221 -0.527451 0.397895 0.548023 0.735766 0.905239 0.009892 -0.424787 -0.256360 0.809984 -0.527451 0.338853 0.586368 0.735766 0.899217 0.104713 -0.424787 -0.339840 0.778655 -0.527451 0.275532 0.618653 0.735766 0.883290 0.198381 -0.424787 -0.419577 0.738749 -0.527451 0.209175 0.644123 0.735766 0.857633 0.289864 -0.424787 -0.494693 0.690706 -0.527451 0.140514 0.662499 0.735766 0.822908 0.377331 -0.424787 -0.563724 0.635618 -0.527451 0.070979 0.673507 0.735766 0.778829 0.461499 -0.424787 -0.627237 0.573035 -0.527451 0.000000 0.677236 0.735766 0.726171 0.540584 -0.424787 -0.683840 0.504140 -0.527451 -0.070979 0.673507 0.735766 0.666128 0.613049 -0.424787 -0.732482 0.430425 -0.527451 -0.140514 0.662499 0.735766 0.598207 0.679488 -0.424787 -0.773559 0.351285 -0.527451 -0.209175 0.644123 0.735766 0.523698 0.738442 -0.424787 -0.806116 0.268276 -0.527451 -0.275532 0.618653 0.735766 0.443419 0.789262 -0.424787 -0.829794 0.182312 -0.527451 -0.338853 0.586368 0.735766 0.359088 0.831030 -0.424787 -0.844236 0.095184 -0.527451 -0.397895 0.548023 0.735766 0.270013 0.864088 -0.424787 -0.849563 0.006178 -0.527451 -0.453140 0.503302 0.735766 0.177963 0.887629 -0.424787 -0.845531 -0.082897 -0.527451 -0.503394 0.453038 0.735766 0.084854 0.901308 -0.424787 -0.832357 -0.170226 -0.527451 -0.547705 0.398331 0.735766 -0.010077 0.905237 -0.424787 -0.809932 -0.256525 -0.527451 -0.586437 0.338734 0.735766 -0.104896 0.899195 -0.424787 -0.778586 -0.339999 -0.527451 -0.618709 0.275406 0.735766 -0.198561 0.883249 -0.424787 -0.738663 -0.419728 -0.527451 -0.644166 0.209044 0.735766 -0.289180 0.857864 -0.424787 -0.691099 -0.494143 -0.527451 -0.662387 0.141042 0.735766 -0.377498 0.822831 -0.424787 -0.635503 -0.563853 -0.527451 -0.673521 0.070842 0.735766 0.512850 -0.388580 -0.765500 -0.216127 -0.921415 0.322930 -0.830827 -0.000169 -0.556530 0.550751 -0.332690 -0.765500 -0.118366 -0.938992 0.322930 -0.826234 -0.087245 -0.556530 0.582313 -0.273717 -0.765500 -0.020247 -0.946206 0.322930 -0.812712 -0.172547 -0.556530 0.607794 -0.211179 -0.765500 0.079033 -0.943117 0.322930 -0.790152 -0.256775 -0.556530 0.626579 -0.146315 -0.765500 0.177444 -0.929640 0.322930 -0.758889 -0.338174 -0.556530 0.638383 -0.080478 -0.765500 0.272993 -0.906196 0.322930 -0.719682 -0.415129 -0.556530 0.643302 -0.013127 -0.765500 0.366465 -0.872593 0.322930 -0.672210 -0.488271 -0.556530 0.641135 0.054367 -0.765500 0.455901 -0.829379 0.322930 -0.617333 -0.556034 -0.556530 0.631906 0.121264 -0.765500 0.540315 -0.777030 0.322930 -0.555657 -0.617673 -0.556530 0.615903 0.186208 -0.765500 0.618062 -0.716740 0.322930 -0.488532 -0.672020 -0.556530 0.592995 0.249734 -0.765500 0.689777 -0.648015 0.322930 -0.415409 -0.719520 -0.556530 0.563555 0.310508 -0.765500 0.753895 -0.572153 0.322930 -0.337711 -0.759095 -0.556530 0.528275 0.367335 -0.765500 0.809218 -0.490798 0.322930 -0.257082 -0.790052 -0.556530 0.486867 0.420679 -0.765500 0.856200 -0.403283 0.322930 -0.172863 -0.812645 -0.556530 0.440095 0.469389 -0.765500 0.893752 -0.311326 0.322930 -0.086740 -0.826287 -0.556530 0.388894 0.512612 -0.765500 0.921283 -0.216690 0.322930 -0.000338 -0.830827 -0.556530 0.333026 0.550548 -0.765500 0.938919 -0.118940 0.322930 0.086740 -0.826287 -0.556530 0.273491 0.582419 -0.765500 0.946214 -0.019879 0.322930 0.172863 -0.812645 -0.556530 0.210943 0.607876 -0.765500 0.943086 0.079400 0.322930 0.257082 -0.790052 -0.556530 0.146698 0.626490 -0.765500 0.929748 0.176876 0.322930 0.337711 -0.759095 -0.556530 0.080229 0.638414 -0.765500 0.906090 0.273346 0.322930 0.415409 -0.719520 -0.556530 0.012877 0.643307 -0.765500 0.872451 0.366805 0.322930 0.488532 -0.672020 -0.556530 -0.053976 0.641168 -0.765500 0.829658 0.455395 0.322930 0.555657 -0.617673 -0.556530 -0.120878 0.631980 -0.765500 0.777360 0.539841 0.322930 0.617333 -0.556034 -0.556530 -0.186448 0.615830 -0.765500 0.716499 0.618340 0.322930 0.672210 -0.488271 -0.556530 -0.249964 0.592898 -0.765500 0.647747 0.690029 0.322930 0.719682 -0.415129 -0.556530 -0.310164 0.563745 -0.765500 0.572613 0.753545 0.322930 0.758889 -0.338174 -0.556530 -0.367540 0.528132 -0.765500 0.490483 0.809409 0.322930 0.790152 -0.256775 -0.556530 -0.420868 0.486703 -0.765500 0.402950 0.856357 0.322930 0.812712 -0.172547 -0.556530 -0.469120 0.440382 -0.765500 0.311872 0.893562 0.322930 0.826234 -0.087245 -0.556530 -0.512692 0.388789 -0.765500 0.216502 0.921327 0.322930 0.830827 -0.000169 -0.556530 -0.550616 0.332914 -0.765500 0.118748 0.938944 0.322930 0.826269 0.086908 -0.556530 -0.582475 0.273372 -0.765500 0.019686 0.946218 0.322930 0.812610 0.173029 -0.556530 -0.607707 0.211427 -0.765500 -0.078649 0.943149 0.322930 0.790257 0.256453 -0.556530 -0.626520 0.146570 -0.765500 -0.177065 0.929712 0.322930 0.759026 0.337865 -0.556530 -0.638431 0.080099 -0.765500 -0.273530 0.906034 0.322930 0.719436 0.415556 -0.556530 -0.643310 0.012746 -0.765500 -0.366983 0.872376 0.322930 0.671920 0.488669 -0.556530 -0.641157 -0.054106 -0.765500 -0.455563 0.829565 0.322930 0.617560 0.555783 -0.556530 -0.631955 -0.121006 -0.765500 -0.539999 0.777250 0.322930 0.555908 0.617446 -0.556530 -0.615792 -0.186573 -0.765500 -0.618486 0.716374 0.322930 0.488134 0.672309 -0.556530 -0.593096 -0.249492 -0.765500 -0.689513 0.648296 0.322930 0.415702 0.719351 -0.556530 -0.563681 -0.310279 -0.765500 -0.753662 0.572460 0.322930 0.338020 0.758958 -0.556530 -0.528058 -0.367648 -0.765500 -0.809509 0.490318 0.322930 0.256614 0.790205 -0.556530 -0.486617 -0.420967 -0.765500 -0.856439 0.402775 0.322930 0.172382 0.812748 -0.556530 -0.440286 -0.469210 -0.765500 -0.893625 0.311690 0.322930 0.087077 0.826252 -0.556530 -0.388685 -0.512771 -0.765500 -0.921371 0.216315 0.322930 0.000000 0.830827 -0.556530 -0.332802 -0.550684 -0.765500 -0.938968 0.118557 0.322930 -0.087077 0.826252 -0.556530 -0.273836 -0.582257 -0.765500 -0.946202 0.020440 0.322930 -0.172382 0.812748 -0.556530 -0.211303 -0.607750 -0.765500 -0.943133 -0.078841 0.322930 -0.256614 0.790205 -0.556530 -0.146443 -0.626549 -0.765500 -0.929676 -0.177254 0.322930 -0.338020 0.758958 -0.556530 -0.079969 -0.638447 -0.765500 -0.905978 -0.273715 0.322930 -0.415702 0.719351 -0.556530 -0.013258 -0.643299 -0.765500 -0.872668 -0.366288 0.322930 -0.488134 0.672309 -0.556530 0.054237 -0.641146 -0.765500 -0.829472 -0.455732 0.322930 -0.555908 0.617446 -0.556530 0.121135 -0.631930 -0.765500 -0.777140 -0.540157 0.322930 -0.617560 0.555783 -0.556530 0.186083 -0.615941 -0.765500 -0.716866 -0.617916 0.322930 -0.671920 0.488669 -0.556530 0.249613 -0.593046 -0.765500 -0.648156 -0.689645 0.322930 -0.719436 0.415556 -0.556530 0.310394 -0.563618 -0.765500 -0.572306 -0.753778 0.322930 -0.759026 0.337865 -0.556530 0.367755 -0.527983 -0.765500 -0.490153 -0.809609 0.322930 -0.790257 0.256453 -0.556530 0.420580 -0.486952 -0.765500 -0.403457 -0.856118 0.322930 -0.812610 0.173029 -0.556530 0.469299 -0.440191 -0.765500 -0.311508 -0.893688 0.322930 -0.826269 0.086908 -0.556530 0.462241 0.724930 0.510695 -0.486634 0.688822 -0.537318 -0.741296 -0.000151 0.671178 0.383717 0.769384 0.510695 -0.556148 0.634026 -0.537318 -0.737198 -0.077843 0.671178 0.301772 0.805061 0.510695 -0.618962 0.572865 -0.537318 -0.725134 -0.153953 0.671178 0.215734 0.832256 0.510695 -0.675594 0.504838 -0.537318 -0.705005 -0.229105 0.671178 0.127320 0.850282 0.510695 -0.724784 0.431251 -0.537318 -0.677110 -0.301732 0.671178 0.038362 0.858906 0.510695 -0.765637 0.353679 -0.537318 -0.642128 -0.370395 0.671178 -0.051869 0.858196 0.510695 -0.798488 0.271487 -0.537318 -0.599772 -0.435654 0.671178 -0.141528 0.848033 0.510695 -0.822545 0.186305 -0.537318 -0.550809 -0.496115 0.671178 -0.229629 0.828530 0.510695 -0.837541 0.099070 -0.537318 -0.495779 -0.551112 0.671178 -0.314400 0.800214 0.510695 -0.843300 0.011587 -0.537318 -0.435888 -0.599602 0.671178 -0.396537 0.762856 0.510695 -0.839870 -0.076860 -0.537318 -0.370644 -0.641984 0.671178 -0.474306 0.717095 0.510695 -0.827189 -0.164462 -0.537318 -0.301318 -0.677294 0.671178 -0.546186 0.663981 0.510695 -0.805646 -0.249445 -0.537318 -0.229379 -0.704916 0.671178 -0.612768 0.603080 0.510695 -0.775066 -0.332509 -0.537318 -0.154235 -0.725074 0.671178 -0.672601 0.535536 0.510695 -0.735948 -0.411910 -0.537318 -0.077393 -0.737245 0.671178 -0.724648 0.462684 0.510695 -0.689120 -0.486213 -0.537318 -0.000302 -0.741296 0.671178 -0.769149 0.384187 0.510695 -0.634366 -0.555760 -0.537318 0.077393 -0.737245 0.671178 -0.805179 0.301459 0.510695 -0.572624 -0.619185 -0.537318 0.154235 -0.725074 0.671178 -0.832339 0.215410 0.510695 -0.504575 -0.675790 -0.537318 0.229379 -0.704916 0.671178 -0.850205 0.127839 0.510695 -0.431694 -0.724520 -0.537318 0.301318 -0.677294 0.671178 -0.858921 0.038028 0.510695 -0.353381 -0.765774 -0.537318 0.370644 -0.641984 0.671178 -0.858176 -0.052203 0.510695 -0.271176 -0.798594 -0.537318 0.435888 -0.599602 0.671178 -0.848119 -0.141010 0.510695 -0.186807 -0.822431 -0.537318 0.495779 -0.551112 0.671178 -0.828670 -0.229123 0.510695 -0.099582 -0.837480 -0.537318 0.550809 -0.496115 0.671178 -0.800092 -0.314711 0.510695 -0.011259 -0.843304 -0.537318 0.599772 -0.435654 0.671178 -0.762702 -0.396833 0.510695 0.077187 -0.839840 -0.537318 0.642128 -0.370395 0.671178 -0.717384 -0.473867 0.510695 0.163956 -0.827289 -0.537318 0.677110 -0.301732 0.671178 -0.663769 -0.546445 0.510695 0.249759 -0.805549 -0.537318 0.705005 -0.229105 0.671178 -0.602842 -0.613003 0.510695 0.332811 -0.774936 -0.537318 0.725134 -0.153953 0.671178 -0.535947 -0.672273 0.510695 0.411461 -0.736199 -0.537318 0.737198 -0.077843 0.671178 -0.462536 -0.724742 0.510695 0.486353 -0.689021 -0.537318 0.741296 -0.000151 0.671178 -0.384031 -0.769228 0.510695 0.555889 -0.634252 -0.537318 0.737230 0.077543 0.671178 -0.301295 -0.805240 0.510695 0.619302 -0.572498 -0.537318 0.725042 0.154383 0.671178 -0.216073 -0.832168 0.510695 0.675388 -0.505114 -0.537318 0.705098 0.228817 0.671178 -0.127666 -0.850231 0.510695 0.724608 -0.431546 -0.537318 0.677233 0.301456 0.671178 -0.037853 -0.858928 0.510695 0.765846 -0.353225 -0.537318 0.641908 0.370775 0.671178 0.052378 -0.858165 0.510695 0.798649 -0.271014 -0.537318 0.599513 0.436010 0.671178 0.141183 -0.848091 0.510695 0.822469 -0.186640 -0.537318 0.551011 0.495891 0.671178 0.229291 -0.828623 0.510695 0.837500 -0.099411 -0.537318 0.496003 0.550910 0.671178 0.314874 -0.800028 0.510695 0.843307 -0.011088 -0.537318 0.435532 0.599860 0.671178 0.396226 -0.763017 0.510695 0.839901 0.076518 -0.537318 0.370906 0.641833 0.671178 0.474013 -0.717288 0.510695 0.827256 0.164125 -0.537318 0.301594 0.677172 0.671178 0.546580 -0.663657 0.510695 0.805498 0.249923 -0.537318 0.228961 0.705051 0.671178 0.613126 -0.602717 0.510695 0.774868 0.332968 -0.537318 0.153806 0.725165 0.671178 0.672382 -0.535810 0.510695 0.736115 0.411611 -0.537318 0.077693 0.737214 0.671178 0.724836 -0.462389 0.510695 0.688921 0.486494 -0.537318 0.000000 0.741296 0.671178 0.769306 -0.383874 0.510695 0.634139 0.556018 -0.537318 -0.077693 0.737214 0.671178 0.805000 -0.301936 0.510695 0.572991 0.618846 -0.537318 -0.153806 0.725165 0.671178 0.832212 -0.215904 0.510695 0.504976 0.675491 -0.537318 -0.228961 0.705051 0.671178 0.850257 -0.127493 0.510695 0.431399 0.724696 -0.537318 -0.301594 0.677172 0.671178 0.858936 -0.037678 0.510695 0.353069 0.765918 -0.537318 -0.370906 0.641833 0.671178 0.858206 0.051694 0.510695 0.271650 0.798433 -0.537318 -0.435532 0.599860 0.671178 0.848062 0.141356 0.510695 0.186472 0.822507 -0.537318 -0.496003 0.550910 0.671178 0.828576 0.229460 0.510695 0.099240 0.837520 -0.537318 -0.551011 0.495891 0.671178 0.800278 0.314237 0.510695 0.011759 0.843297 -0.537318 -0.599513 0.436010 0.671178 0.762937 0.396381 0.510695 -0.076689 0.839886 -0.537318 -0.641908 0.370775 0.671178 0.717191 0.474160 0.510695 -0.164293 0.827222 -0.537318 -0.677233 0.301456 0.671178 0.663546 0.546715 0.510695 -0.250087 0.805447 -0.537318 -0.705098 0.228817 0.671178 0.603205 0.612645 0.510695 -0.332351 0.775133 -0.537318 -0.725042 0.154383 0.671178 0.535673 0.672491 0.510695 -0.411760 0.736031 -0.537318 -0.737230 0.077543 0.671178 0.236404 -0.933864 0.268349 0.616995 0.357628 0.701013 -0.750620 -0.000153 0.660734 0.332978 -0.903944 0.268349 0.576115 0.420324 0.701013 -0.746470 -0.078822 0.660734 0.425020 -0.864492 0.268349 0.529367 0.477861 0.701013 -0.734254 -0.155889 0.660734 0.513284 -0.815186 0.268349 0.476368 0.530711 0.701013 -0.713872 -0.231986 0.660734 0.595895 -0.756901 0.268349 0.418122 0.577715 0.701013 -0.685626 -0.305527 0.660734 0.671251 -0.690950 0.268349 0.355889 0.618000 0.701013 -0.650204 -0.375053 0.660734 0.739970 -0.616793 0.268349 0.289158 0.651896 0.701013 -0.607315 -0.441134 0.660734 0.800539 -0.535841 0.268349 0.219242 0.678611 0.701013 -0.557736 -0.502355 0.660734 0.852290 -0.448988 0.268349 0.146912 0.697852 0.701013 -0.502014 -0.558043 0.660734 0.894296 -0.358083 0.268349 0.073672 0.709333 0.701013 -0.441370 -0.607143 0.660734 0.926900 -0.262383 0.268349 -0.001077 0.713148 0.701013 -0.375306 -0.650058 0.660734 0.949295 -0.163792 0.268349 -0.075814 0.709107 0.701013 -0.305108 -0.685813 0.660734 0.961170 -0.064358 0.268349 -0.149019 0.697405 0.701013 -0.232264 -0.713781 0.660734 0.962621 0.036734 0.268349 -0.221291 0.677946 0.701013 -0.156175 -0.734193 0.660734 0.953470 0.137421 0.268349 -0.291126 0.651019 0.701013 -0.078366 -0.746518 0.660734 0.934008 0.235834 0.268349 -0.357251 0.617213 0.701013 -0.000306 -0.750620 0.660734 0.904147 0.332426 0.268349 -0.419972 0.576371 0.701013 0.078366 -0.746518 0.660734 0.864327 0.425356 0.268349 -0.478067 0.529181 0.701013 0.156175 -0.734193 0.660734 0.814986 0.513601 0.268349 -0.530896 0.476162 0.701013 0.232264 -0.713781 0.660734 0.757265 0.595432 0.268349 -0.577459 0.418475 0.701013 0.305108 -0.685813 0.660734 0.690689 0.671519 0.268349 -0.618138 0.355649 0.701013 0.375306 -0.650058 0.660734 0.616505 0.740210 0.268349 -0.652008 0.288905 0.701013 0.441370 -0.607143 0.660734 0.536330 0.800212 0.268349 -0.678477 0.219657 0.701013 0.502014 -0.558043 0.660734 0.449509 0.852016 0.268349 -0.697762 0.147338 0.701013 0.557736 -0.502355 0.660734 0.357736 0.894435 0.268349 -0.709361 0.073396 0.701013 0.607315 -0.441134 0.660734 0.262022 0.927002 0.268349 -0.713147 -0.001354 0.701013 0.650204 -0.375053 0.660734 0.164372 0.949195 0.268349 -0.709153 -0.075381 0.701013 0.685626 -0.305527 0.660734 0.063984 0.961195 0.268349 -0.697347 -0.149290 0.701013 0.713872 -0.231986 0.660734 -0.037108 0.962607 0.268349 -0.677860 -0.221555 0.701013 0.734254 -0.155889 0.660734 -0.136838 0.953553 0.268349 -0.651197 -0.290728 0.701013 0.746470 -0.078822 0.660734 -0.236024 0.933960 0.268349 -0.617140 -0.357377 0.701013 0.750620 -0.000153 0.660734 -0.332610 0.904079 0.268349 -0.576286 -0.420090 0.701013 0.746502 0.078518 0.660734 -0.425532 0.864240 0.268349 -0.529083 -0.478175 0.701013 0.734161 0.156325 0.660734 -0.512952 0.815395 0.268349 -0.476584 -0.530517 0.701013 0.713966 0.231695 0.660734 -0.595586 0.757143 0.268349 -0.418357 -0.577545 0.701013 0.685751 0.305248 0.660734 -0.671660 0.690552 0.268349 -0.355523 -0.618211 0.701013 0.649982 0.375438 0.660734 -0.740336 0.616354 0.268349 -0.288772 -0.652067 0.701013 0.607053 0.441494 0.660734 -0.800321 0.536167 0.268349 -0.219519 -0.678522 0.701013 0.557941 0.502128 0.660734 -0.852107 0.449335 0.268349 -0.147196 -0.697792 0.701013 0.502241 0.557839 0.660734 -0.894508 0.357553 0.268349 -0.073251 -0.709376 0.701013 0.441010 0.607405 0.660734 -0.926793 0.262760 0.268349 0.000787 -0.713148 0.701013 0.375571 0.649905 0.660734 -0.949228 0.164179 0.268349 0.075525 -0.709138 0.701013 0.305388 0.685689 0.660734 -0.961208 0.063788 0.268349 0.149432 -0.697317 0.701013 0.231841 0.713919 0.660734 -0.962599 -0.037304 0.268349 0.221693 -0.677815 0.701013 0.155740 0.734286 0.660734 -0.953526 -0.137033 0.268349 0.290861 -0.651138 0.701013 0.078670 0.746486 0.660734 -0.933912 -0.236214 0.268349 0.357503 -0.617068 0.701013 0.000000 0.750620 0.660734 -0.904012 -0.332794 0.268349 0.420207 -0.576200 0.701013 -0.078670 0.746486 0.660734 -0.864579 -0.424844 0.268349 0.477753 -0.529464 0.701013 -0.155740 0.734286 0.660734 -0.815291 -0.513118 0.268349 0.530614 -0.476476 0.701013 -0.231841 0.713919 0.660734 -0.757022 -0.595740 0.268349 0.577630 -0.418240 0.701013 -0.305388 0.685689 0.660734 -0.690415 -0.671801 0.268349 0.618283 -0.355397 0.701013 -0.375571 0.649905 0.660734 -0.616943 -0.739845 0.268349 0.651837 -0.289291 0.701013 -0.441010 0.607405 0.660734 -0.536004 -0.800430 0.268349 0.678567 -0.219380 0.701013 -0.502241 0.557839 0.660734 -0.449162 -0.852199 0.268349 0.697822 -0.147054 0.701013 -0.557941 0.502128 0.660734 -0.358266 -0.894223 0.268349 0.709318 -0.073816 0.701013 -0.607053 0.441494 0.660734 -0.262571 -0.926847 0.268349 0.713148 0.000932 0.701013 -0.649982 0.375438 0.660734 -0.163985 -0.949262 0.268349 0.709123 0.075670 0.701013 -0.685751 0.305248 0.660734 -0.063593 -0.961221 0.268349 0.697286 0.149574 0.701013 -0.713966 0.231695 0.660734 0.036538 -0.962629 0.268349 0.677991 0.221153 0.701013 -0.734161 0.156325 0.660734 0.137227 -0.953498 0.268349 0.651079 0.290993 0.701013 -0.746502 0.078518 0.660734 0.124779 -0.841556 0.525561 0.194042 0.540170 0.818879 -0.973025 -0.000198 0.230699 0.212293 -0.823843 0.525561 0.136360 0.557532 0.818879 -0.967645 -0.102177 0.230699 0.296671 -0.797353 0.525561 0.077744 0.568676 0.818879 -0.951810 -0.202079 0.230699 0.378606 -0.761868 0.525561 0.017715 0.573692 0.818879 -0.925389 -0.300722 0.230699 0.456370 -0.717992 0.525561 -0.042510 0.572389 0.818879 -0.888774 -0.396054 0.230699 0.528441 -0.666735 0.525561 -0.101702 0.564883 0.818879 -0.842857 -0.486180 0.230699 0.595409 -0.607679 0.525561 -0.160345 0.551113 0.818879 -0.787260 -0.571839 0.230699 0.655819 -0.541929 0.525561 -0.217223 0.531273 0.818879 -0.722991 -0.651200 0.230699 0.709005 -0.470210 0.525561 -0.271708 0.505580 0.818879 -0.650759 -0.723389 0.230699 0.753988 -0.394066 0.525561 -0.322725 0.474642 0.818879 -0.572146 -0.787037 0.230699 0.791136 -0.312872 0.525561 -0.370694 0.438204 0.818879 -0.486507 -0.842667 0.230699 0.819571 -0.228232 0.525561 -0.414579 0.396939 0.818879 -0.395510 -0.889016 0.230699 0.838836 -0.141917 0.525561 -0.453546 0.351756 0.818879 -0.301082 -0.925271 0.230699 0.849090 -0.053220 0.525561 -0.487915 0.302284 0.818879 -0.202449 -0.951731 0.230699 0.849991 0.036064 0.525561 -0.516909 0.249482 0.818879 -0.101586 -0.967708 0.230699 0.841632 0.124265 0.525561 -0.540052 0.194372 0.818879 -0.000396 -0.973025 0.230699 0.823973 0.211790 0.525561 -0.557449 0.136700 0.818879 0.101586 -0.967708 0.230699 0.797238 0.296982 0.525561 -0.568706 0.077523 0.818879 0.202449 -0.951731 0.230699 0.761721 0.378902 0.525561 -0.573699 0.017491 0.818879 0.301082 -0.925271 0.230699 0.718271 0.455931 0.525561 -0.572415 -0.042160 0.818879 0.395510 -0.889016 0.230699 0.666530 0.528700 0.525561 -0.564844 -0.101921 0.818879 0.486507 -0.842667 0.230699 0.607448 0.595645 0.525561 -0.551051 -0.160560 0.818879 0.572146 -0.787037 0.230699 0.542330 0.655488 0.525561 -0.531405 -0.216898 0.818879 0.650759 -0.723389 0.230699 0.470643 0.708718 0.525561 -0.505746 -0.271399 0.818879 0.722991 -0.651200 0.230699 0.393772 0.754141 0.525561 -0.474516 -0.322910 0.818879 0.787260 -0.571839 0.230699 0.312564 0.791258 0.525561 -0.438060 -0.370864 0.818879 0.842857 -0.486180 0.230699 0.228733 0.819431 0.525561 -0.397192 -0.414336 0.818879 0.888774 -0.396054 0.230699 0.141591 0.838891 0.525561 -0.351579 -0.453683 0.818879 0.925389 -0.300722 0.230699 0.052889 0.849110 0.525561 -0.302094 -0.488032 0.818879 0.951810 -0.202079 0.230699 -0.035545 0.850013 0.525561 -0.249798 -0.516757 0.818879 0.967645 -0.102177 0.230699 -0.124436 0.841606 0.525561 -0.194262 -0.540091 0.818879 0.973025 -0.000198 0.230699 -0.211957 0.823929 0.525561 -0.136587 -0.557477 0.818879 0.967687 0.101783 0.230699 -0.297144 0.797177 0.525561 -0.077407 -0.568722 0.818879 0.951690 0.202643 0.230699 -0.378295 0.762023 0.525561 -0.017948 -0.573685 0.818879 0.925511 0.300345 0.230699 -0.456077 0.718178 0.525561 0.042277 -0.572406 0.818879 0.888935 0.395692 0.230699 -0.528836 0.666422 0.525561 0.102036 -0.564823 0.818879 0.842568 0.486679 0.230699 -0.595769 0.607326 0.525561 0.160672 -0.551018 0.818879 0.786920 0.572306 0.230699 -0.655598 0.542196 0.525561 0.217006 -0.531361 0.818879 0.723256 0.650906 0.230699 -0.708814 0.470499 0.525561 0.271502 -0.505691 0.818879 0.651053 0.723123 0.230699 -0.754221 0.393619 0.525561 0.323006 -0.474450 0.818879 0.571679 0.787376 0.230699 -0.791009 0.313194 0.525561 0.370515 -0.438355 0.818879 0.486851 0.842469 0.230699 -0.819477 0.228566 0.525561 0.414417 -0.397108 0.818879 0.395873 0.888855 0.230699 -0.838920 0.141420 0.525561 0.453755 -0.351487 0.818879 0.300534 0.925450 0.230699 -0.849121 0.052717 0.525561 0.488094 -0.301994 0.818879 0.201885 0.951851 0.230699 -0.850006 -0.035718 0.525561 0.516808 -0.249692 0.818879 0.101980 0.967666 0.230699 -0.841581 -0.124608 0.525561 0.540131 -0.194152 0.818879 0.000000 0.973025 0.230699 -0.823886 -0.212125 0.525561 0.557505 -0.136473 0.818879 -0.101980 0.967666 0.230699 -0.797413 -0.296509 0.525561 0.568660 -0.077860 0.818879 -0.201885 0.951851 0.230699 -0.761945 -0.378451 0.525561 0.573688 -0.017831 0.818879 -0.300534 0.925450 0.230699 -0.718085 -0.456224 0.525561 0.572398 0.042393 0.818879 -0.395873 0.888855 0.230699 -0.666315 -0.528971 0.525561 0.564802 0.102151 0.818879 -0.486851 0.842469 0.230699 -0.607800 -0.595285 0.525561 0.551146 0.160233 0.818879 -0.571679 0.787376 0.230699 -0.542063 -0.655708 0.525561 0.531317 0.217115 0.818879 -0.651053 0.723123 0.230699 -0.470354 -0.708909 0.525561 0.505635 0.271605 0.818879 -0.723256 0.650906 0.230699 -0.394219 -0.753908 0.525561 0.474708 0.322628 0.818879 -0.786920 0.572306 0.230699 -0.313033 -0.791073 0.525561 0.438279 0.370604 0.818879 -0.842568 0.486679 0.230699 -0.228399 -0.819524 0.525561 0.397024 0.414498 0.818879 -0.888935 0.395692 0.230699 -0.141249 -0.838948 0.525561 0.351395 0.453826 0.818879 -0.925511 0.300345 0.230699 -0.053393 -0.849079 0.525561 0.302383 0.487853 0.818879 -0.951690 0.202643 0.230699 0.035891 -0.849999 0.525561 0.249587 0.516858 0.818879 -0.967687 0.101783 0.230699 0.074150 0.984037 0.161778 -0.410959 0.177962 -0.894116 -0.908633 -0.000185 0.417595 -0.029392 0.986389 0.161778 -0.427347 0.133910 -0.894116 -0.903610 -0.095415 0.417595 -0.131633 0.978008 0.161778 -0.438939 0.088823 -0.894116 -0.888822 -0.188706 0.417595 -0.233410 0.958826 0.161778 -0.445831 0.042330 -0.894116 -0.864149 -0.280822 0.417595 -0.332617 0.929082 0.161778 -0.447812 -0.004630 -0.894116 -0.829958 -0.369844 0.417595 -0.427270 0.889533 0.161778 -0.444912 -0.051093 -0.894116 -0.787079 -0.454006 0.417595 -0.518146 0.839853 0.161778 -0.437107 -0.097442 -0.894116 -0.735161 -0.533997 0.417595 -0.603315 0.780922 0.161778 -0.424487 -0.142717 -0.894116 -0.675146 -0.608106 0.417595 -0.681839 0.713389 0.161778 -0.407191 -0.186420 -0.894116 -0.607694 -0.675517 0.417595 -0.752213 0.638751 0.161778 -0.385638 -0.227685 -0.894116 -0.534283 -0.734954 0.417595 -0.815016 0.556396 0.161778 -0.359652 -0.266849 -0.894116 -0.454312 -0.786902 0.417595 -0.868842 0.467912 0.161778 -0.329703 -0.303073 -0.894116 -0.369337 -0.830184 0.417595 -0.912723 0.375187 0.161778 -0.296459 -0.335663 -0.894116 -0.281158 -0.864040 0.417595 -0.947018 0.277461 0.161778 -0.259646 -0.364885 -0.894116 -0.189052 -0.888749 0.417595 -0.970882 0.176679 0.161778 -0.219974 -0.390088 -0.894116 -0.094863 -0.903668 0.417595 -0.983992 0.074752 0.161778 -0.178213 -0.410850 -0.894116 -0.000370 -0.908633 0.417595 -0.986407 -0.028789 0.161778 -0.134172 -0.427265 -0.894116 0.094863 -0.903668 0.417595 -0.977957 -0.132013 0.161778 -0.088652 -0.438974 -0.894116 0.189052 -0.888749 0.417595 -0.958735 -0.233783 0.161778 -0.042156 -0.445848 -0.894116 0.281158 -0.864040 0.417595 -0.929285 -0.332049 0.161778 0.004356 -0.447815 -0.894116 0.369337 -0.830184 0.417595 -0.889366 -0.427616 0.161778 0.051266 -0.444892 -0.894116 0.454312 -0.786902 0.417595 -0.839651 -0.518473 0.161778 0.097612 -0.437069 -0.894116 0.534283 -0.734954 0.417595 -0.781290 -0.602838 0.161778 0.142458 -0.424574 -0.894116 0.607694 -0.675517 0.417595 -0.713805 -0.681403 0.161778 0.186172 -0.407305 -0.894116 0.675146 -0.608106 0.417595 -0.638458 -0.752462 0.161778 0.227835 -0.385550 -0.894116 0.735161 -0.533997 0.417595 -0.556079 -0.815233 0.161778 0.266988 -0.359548 -0.894116 0.787079 -0.454006 0.417595 -0.468443 -0.868556 0.161778 0.302871 -0.329888 -0.894116 0.829958 -0.369844 0.417595 -0.374832 -0.912868 0.161778 0.335778 -0.296328 -0.894116 0.864149 -0.280822 0.417595 -0.277092 -0.947126 0.161778 0.364986 -0.259504 -0.894116 0.888822 -0.188706 0.417595 -0.177272 -0.970774 0.161778 0.389954 -0.220212 -0.894116 0.903610 -0.095415 0.417595 -0.074551 -0.984007 0.161778 0.410886 -0.178129 -0.894116 0.908633 -0.000185 0.417595 0.028990 -0.986401 0.161778 0.427292 -0.134084 -0.894116 0.903649 0.095047 0.417595 0.132213 -0.977930 0.161778 0.438992 -0.088563 -0.894116 0.888710 0.189233 0.417595 0.233020 -0.958921 0.161778 0.445814 -0.042511 -0.894116 0.864264 0.280470 0.417595 0.332238 -0.929218 0.161778 0.447814 0.004447 -0.894116 0.830109 0.369506 0.417595 0.427797 -0.889279 0.161778 0.444882 0.051357 -0.894116 0.786810 0.454472 0.417595 0.518644 -0.839545 0.161778 0.437049 0.097701 -0.894116 0.734845 0.534433 0.417595 0.602997 -0.781167 0.161778 0.424545 0.142544 -0.894116 0.675393 0.607831 0.417595 0.681548 -0.713667 0.161778 0.407267 0.186255 -0.894116 0.607969 0.675270 0.417595 0.752592 -0.638305 0.161778 0.385503 0.227913 -0.894116 0.533847 0.735270 0.417595 0.814790 -0.556728 0.161778 0.359760 0.266702 -0.894116 0.454632 0.786717 0.417595 0.868651 -0.468266 0.161778 0.329827 0.302939 -0.894116 0.369675 0.830033 0.417595 0.912945 -0.374646 0.161778 0.296260 0.335838 -0.894116 0.280646 0.864206 0.417595 0.947182 -0.276900 0.161778 0.259430 0.365039 -0.894116 0.188525 0.888861 0.417595 0.970810 -0.177074 0.161778 0.220133 0.389999 -0.894116 0.095231 0.903629 0.417595 0.984022 -0.074351 0.161778 0.178046 0.410922 -0.894116 0.000000 0.908633 0.417595 0.986395 0.029191 0.161778 0.133997 0.427320 -0.894116 -0.095231 0.903629 0.417595 0.978035 0.131434 0.161778 0.088912 0.438921 -0.894116 -0.188525 0.888861 0.417595 0.958874 0.233215 0.161778 0.042421 0.445823 -0.894116 -0.280646 0.864206 0.417595 0.929150 0.332427 0.161778 -0.004539 0.447813 -0.894116 -0.369675 0.830033 0.417595 0.889192 0.427978 0.161778 -0.051448 0.444871 -0.894116 -0.454632 0.786717 0.417595 0.839958 0.517975 0.161778 -0.097353 0.437127 -0.894116 -0.533847 0.735270 0.417595 0.781045 0.603156 0.161778 -0.142631 0.424516 -0.894116 -0.607969 0.675270 0.417595 0.713528 0.681693 0.161778 -0.186338 0.407229 -0.894116 -0.675393 0.607831 0.417595 0.638904 0.752083 0.161778 -0.227606 0.385685 -0.894116 -0.734845 0.534433 0.417595 0.556562 0.814903 0.161778 -0.266775 0.359706 -0.894116 -0.786810 0.454472 0.417595 0.468089 0.868747 0.161778 -0.303006 0.329765 -0.894116 -0.830109 0.369506 0.417595 0.374460 0.913021 0.161778 -0.335899 0.296192 -0.894116 -0.864264 0.280470 0.417595 0.277654 0.946962 0.161778 -0.364832 0.259721 -0.894116 -0.888710 0.189233 0.417595 0.176876 0.970846 0.161778 -0.390044 0.220053 -0.894116 -0.903649 0.095047 0.417595 -0.018192 0.998429 0.053001 0.320881 0.056036 -0.945460 -0.946945 -0.000193 -0.321396 -0.122734 0.991023 0.053001 0.313241 0.089358 -0.945460 -0.941709 -0.099438 -0.321396 -0.224952 0.972927 0.053001 0.302272 0.121394 -0.945460 -0.926298 -0.196662 -0.321396 -0.325683 0.943992 0.053001 0.287884 0.152405 -0.945460 -0.900585 -0.292662 -0.321396 -0.422826 0.904659 0.053001 0.270326 0.181738 -0.945460 -0.864952 -0.385438 -0.321396 -0.514457 0.855877 0.053001 0.249998 0.208820 -0.945460 -0.820265 -0.473148 -0.321396 -0.601325 0.797244 0.053001 0.226736 0.233871 -0.945460 -0.766158 -0.556512 -0.321396 -0.681571 0.729830 0.053001 0.200976 0.256347 -0.945460 -0.703612 -0.633746 -0.321396 -0.754308 0.654377 0.053001 0.173002 0.275998 -0.945460 -0.633316 -0.703999 -0.321396 -0.818165 0.572535 0.053001 0.143415 0.292467 -0.945460 -0.556810 -0.765942 -0.321396 -0.873665 0.483632 0.053001 0.111972 0.305887 -0.945460 -0.473467 -0.820081 -0.321396 -0.919542 0.389402 0.053001 0.079296 0.315938 -0.945460 -0.384909 -0.865187 -0.321396 -0.954998 0.291838 0.053001 0.046070 0.322463 -0.945460 -0.293012 -0.900471 -0.321396 -0.980325 0.190140 0.053001 0.012020 0.325515 -0.945460 -0.197023 -0.926222 -0.321396 -0.994854 0.086348 0.053001 -0.022163 0.324982 -0.945460 -0.098863 -0.941770 -0.321396 -0.998440 -0.017582 0.053001 -0.055840 0.320915 -0.945460 -0.000386 -0.946945 -0.321396 -0.991098 -0.122129 0.053001 -0.089167 0.313295 -0.945460 0.098863 -0.941770 -0.321396 -0.972840 -0.225331 0.053001 -0.121511 0.302225 -0.945460 0.197023 -0.926222 -0.321396 -0.943866 -0.326050 0.053001 -0.152517 0.287825 -0.945460 0.293012 -0.900471 -0.321396 -0.904918 -0.422273 0.053001 -0.181573 0.270437 -0.945460 0.384909 -0.865187 -0.321396 -0.855677 -0.514790 0.053001 -0.208917 0.249917 -0.945460 0.473467 -0.820081 -0.321396 -0.797010 -0.601636 0.053001 -0.233959 0.226645 -0.945460 0.556810 -0.765942 -0.321396 -0.730247 -0.681125 0.053001 -0.256224 0.201132 -0.945460 0.633316 -0.703999 -0.321396 -0.654838 -0.753909 0.053001 -0.275893 0.173170 -0.945460 0.703612 -0.633746 -0.321396 -0.572217 -0.818388 0.053001 -0.292523 0.143301 -0.945460 0.766158 -0.556512 -0.321396 -0.483292 -0.873853 0.053001 -0.305931 0.111853 -0.945460 0.820265 -0.473148 -0.321396 -0.389964 -0.919304 0.053001 -0.315889 0.079489 -0.945460 0.864952 -0.385438 -0.321396 -0.291467 -0.955112 0.053001 -0.322481 0.045944 -0.945460 0.900585 -0.292662 -0.321396 -0.189759 -0.980399 0.053001 -0.325520 0.011893 -0.945460 0.926298 -0.196662 -0.321396 -0.086956 -0.994801 0.053001 -0.324996 -0.021964 -0.945460 0.941709 -0.099438 -0.321396 0.017785 -0.998436 0.053001 -0.320904 -0.055905 -0.945460 0.946945 -0.000193 -0.321396 0.122331 -0.991073 0.053001 -0.313277 -0.089231 -0.945460 0.941750 0.099055 -0.321396 0.225529 -0.972794 0.053001 -0.302200 -0.121573 -0.945460 0.926181 0.197211 -0.321396 0.325298 -0.944125 0.053001 -0.287946 -0.152288 -0.945460 0.900704 0.292295 -0.321396 0.422458 -0.904832 0.053001 -0.270400 -0.181628 -0.945460 0.865109 0.385086 -0.321396 0.514964 -0.855572 0.053001 -0.249874 -0.208968 -0.945460 0.819985 0.473634 -0.321396 0.601798 -0.796888 0.053001 -0.226597 -0.234005 -0.945460 0.765828 0.556966 -0.321396 0.681273 -0.730108 0.053001 -0.201080 -0.256265 -0.945460 0.703870 0.633459 -0.321396 0.754042 -0.654685 0.053001 -0.173114 -0.275928 -0.945460 0.633603 0.703741 -0.321396 0.818505 -0.572050 0.053001 -0.143241 -0.292552 -0.945460 0.556356 0.766272 -0.321396 0.873468 -0.483988 0.053001 -0.112097 -0.305841 -0.945460 0.473801 0.819888 -0.321396 0.919383 -0.389777 0.053001 -0.079425 -0.315906 -0.945460 0.385262 0.865030 -0.321396 0.955171 -0.291272 0.053001 -0.045879 -0.322490 -0.945460 0.292479 0.900645 -0.321396 0.980438 -0.189559 0.053001 -0.011827 -0.325522 -0.945460 0.196474 0.926338 -0.321396 0.994819 -0.086753 0.053001 0.022031 -0.324991 -0.945460 0.099247 0.941730 -0.321396 0.998432 0.017989 0.053001 0.055971 -0.320893 -0.945460 0.000000 0.946945 -0.321396 0.991048 0.122533 0.053001 0.089294 -0.313259 -0.945460 -0.099247 0.941730 -0.321396 0.972973 0.224754 0.053001 0.121332 -0.302297 -0.945460 -0.196474 0.926338 -0.321396 0.944059 0.325491 0.053001 0.152347 -0.287915 -0.945460 -0.292479 0.900645 -0.321396 0.904746 0.422642 0.053001 0.181683 -0.270363 -0.945460 -0.385262 0.865030 -0.321396 0.855467 0.515138 0.053001 0.209019 -0.249832 -0.945460 -0.473801 0.819888 -0.321396 0.797367 0.601163 0.053001 0.233825 -0.226783 -0.945460 -0.556356 0.766272 -0.321396 0.729969 0.681422 0.053001 0.256306 -0.201028 -0.945460 -0.633603 0.703741 -0.321396 0.654531 0.754175 0.053001 0.275963 -0.173058 -0.945460 -0.703870 0.633459 -0.321396 0.572702 0.818049 0.053001 0.292438 -0.143474 -0.945460 -0.765828 0.556966 -0.321396 0.483810 0.873567 0.053001 0.305864 -0.112035 -0.945460 -0.819985 0.473634 -0.321396 0.389589 0.919462 0.053001 0.315922 -0.079361 -0.945460 -0.865109 0.385086 -0.321396 0.291078 0.955230 0.053001 0.322499 -0.045813 -0.945460 -0.900704 0.292295 -0.321396 0.190340 0.980286 0.053001 0.325513 -0.012086 -0.945460 -0.926181 0.197211 -0.321396 0.086551 0.994837 0.053001 0.324987 0.022097 -0.945460 -0.941750 0.099055 -0.321396 0.148797 0.762290 -0.629900 0.175545 -0.647236 -0.741801 -0.973162 -0.000198 -0.230123 0.068084 0.773686 -0.629900 0.242413 -0.625273 -0.741801 -0.967781 -0.102191 -0.230123 -0.012603 0.776574 -0.629900 0.306015 -0.596729 -0.741801 -0.951943 -0.202107 -0.230123 -0.093924 0.770976 -0.629900 0.366871 -0.561370 -0.741801 -0.925518 -0.300765 -0.230123 -0.174210 0.756886 -0.629900 0.423686 -0.519828 -0.741801 -0.888899 -0.396109 -0.230123 -0.251843 0.734711 -0.629900 0.475361 -0.473035 -0.741801 -0.842975 -0.486248 -0.230123 -0.327459 0.704270 -0.629900 0.522321 -0.420609 -0.741801 -0.787370 -0.571920 -0.230123 -0.399468 0.666071 -0.629900 0.563527 -0.363549 -0.741801 -0.723092 -0.651292 -0.230123 -0.467077 0.620536 -0.629900 0.598526 -0.302485 -0.741801 -0.650850 -0.723490 -0.230123 -0.528973 0.568694 -0.629900 0.626694 -0.238717 -0.741801 -0.572226 -0.787147 -0.230123 -0.585663 0.510122 -0.629900 0.648261 -0.171720 -0.741801 -0.486576 -0.842786 -0.230123 -0.635902 0.445931 -0.629900 0.662689 -0.102832 -0.741801 -0.395566 -0.889141 -0.230123 -0.678759 0.377507 -0.629900 0.669783 -0.033481 -0.741801 -0.301125 -0.925401 -0.230123 -0.714587 0.304289 -0.629900 0.669604 0.036902 -0.741801 -0.202478 -0.951865 -0.230123 -0.742543 0.227719 -0.629900 0.662048 0.106878 -0.741801 -0.101600 -0.967843 -0.230123 -0.762198 0.149262 -0.629900 0.647343 0.175149 -0.741801 -0.000396 -0.973162 -0.230123 -0.773645 0.068556 -0.629900 0.625421 0.242031 -0.741801 0.101600 -0.967843 -0.230123 -0.776569 -0.012905 -0.629900 0.596610 0.306247 -0.741801 0.202478 -0.951865 -0.230123 -0.770939 -0.094224 -0.629900 0.561227 0.367089 -0.741801 0.301125 -0.925401 -0.230123 -0.756992 -0.173748 -0.629900 0.520087 0.423368 -0.741801 0.395566 -0.889141 -0.230123 -0.734613 -0.252129 -0.629900 0.472850 0.475545 -0.741801 0.486576 -0.842786 -0.230123 -0.704143 -0.327733 -0.629900 0.420406 0.522484 -0.741801 0.572226 -0.787147 -0.230123 -0.666315 -0.399061 -0.629900 0.363894 0.563305 -0.741801 0.650850 -0.723490 -0.230123 -0.620821 -0.466698 -0.629900 0.302851 0.598341 -0.741801 0.723092 -0.651292 -0.230123 -0.568488 -0.529194 -0.629900 0.238473 0.626787 -0.741801 0.787370 -0.571920 -0.230123 -0.509894 -0.585861 -0.629900 0.171468 0.648328 -0.741801 0.842975 -0.486248 -0.230123 -0.446319 -0.635629 -0.629900 0.103237 0.662626 -0.741801 0.888899 -0.396109 -0.230123 -0.377243 -0.678906 -0.629900 0.033220 0.669796 -0.741801 0.925518 -0.300765 -0.230123 -0.304011 -0.714705 -0.629900 -0.037162 0.669589 -0.741801 0.951943 -0.202107 -0.230123 -0.228173 -0.742403 -0.629900 -0.106473 0.662113 -0.741801 0.967781 -0.102191 -0.230123 -0.149107 -0.762229 -0.629900 -0.175281 0.647308 -0.741801 0.973162 -0.000198 -0.230123 -0.068399 -0.773658 -0.629900 -0.242158 0.625372 -0.741801 0.967823 0.101797 -0.230123 0.013063 -0.776566 -0.629900 -0.306368 0.596548 -0.741801 0.951823 0.202671 -0.230123 0.093610 -0.771014 -0.629900 -0.366642 0.561520 -0.741801 0.925641 0.300388 -0.230123 0.173902 -0.756957 -0.629900 -0.423474 0.520000 -0.741801 0.889060 0.395747 -0.230123 0.252279 -0.734562 -0.629900 -0.475641 0.472753 -0.741801 0.842687 0.486747 -0.230123 0.327877 -0.704076 -0.629900 -0.522570 0.420299 -0.741801 0.787031 0.572386 -0.230123 0.399197 -0.666234 -0.629900 -0.563379 0.363779 -0.741801 0.723358 0.650997 -0.230123 0.466825 -0.620726 -0.629900 -0.598403 0.302729 -0.741801 0.651145 0.723225 -0.230123 0.529310 -0.568381 -0.629900 -0.626835 0.238345 -0.741801 0.571759 0.787486 -0.230123 0.585455 -0.510361 -0.629900 -0.648191 0.171984 -0.741801 0.486919 0.842587 -0.230123 0.635720 -0.446190 -0.629900 -0.662647 0.103102 -0.741801 0.395928 0.888979 -0.230123 0.678983 -0.377105 -0.629900 -0.669803 0.033084 -0.741801 0.300576 0.925580 -0.230123 0.714767 -0.303865 -0.629900 -0.669582 -0.037299 -0.741801 0.201913 0.951985 -0.230123 0.742450 -0.228022 -0.629900 -0.662092 -0.106608 -0.741801 0.101994 0.967802 -0.230123 0.762259 -0.148952 -0.629900 -0.647272 -0.175413 -0.741801 0.000000 0.973162 -0.230123 0.773672 -0.068241 -0.629900 -0.625323 -0.242286 -0.741801 -0.101994 0.967802 -0.230123 0.776576 0.012444 -0.629900 -0.596792 -0.305893 -0.741801 -0.201913 0.951985 -0.230123 0.770995 0.093767 -0.629900 -0.561445 -0.366756 -0.741801 -0.300576 0.925580 -0.230123 0.756922 0.174056 -0.629900 -0.519914 -0.423580 -0.741801 -0.395928 0.888979 -0.230123 0.734511 0.252428 -0.629900 -0.472657 -0.475738 -0.741801 -0.486919 0.842587 -0.230123 0.704337 0.327316 -0.629900 -0.420715 -0.522235 -0.741801 -0.571759 0.787486 -0.230123 0.666153 0.399333 -0.629900 -0.363664 -0.563453 -0.741801 -0.651145 0.723225 -0.230123 0.620631 0.466951 -0.629900 -0.302607 -0.598464 -0.741801 -0.723358 0.650997 -0.230123 0.568802 0.528857 -0.629900 -0.238844 -0.626645 -0.741801 -0.787031 0.572386 -0.230123 0.510241 0.585559 -0.629900 -0.171852 -0.648226 -0.741801 -0.842687 0.486747 -0.230123 0.446061 0.635811 -0.629900 -0.102967 -0.662668 -0.741801 -0.889060 0.395747 -0.230123 0.376966 0.679060 -0.629900 -0.032947 -0.669810 -0.741801 -0.925641 0.300388 -0.230123 0.304435 0.714525 -0.629900 0.036766 -0.669611 -0.741801 -0.951823 0.202671 -0.230123 0.227871 0.742496 -0.629900 0.106743 -0.662070 -0.741801 -0.967823 0.101797 -0.230123 -0.403214 -0.196010 -0.893867 0.080770 -0.980602 0.178595 -0.911534 -0.000186 0.411224 -0.380450 -0.237190 -0.893867 0.183099 -0.966736 0.178595 -0.906495 -0.095720 0.411224 -0.353771 -0.275404 -0.893867 0.282469 -0.942505 0.178595 -0.891660 -0.189308 0.411224 -0.322958 -0.310965 -0.893867 0.379695 -0.907709 0.178595 -0.866908 -0.281718 0.411224 -0.288588 -0.343101 -0.893867 0.472738 -0.862915 0.178595 -0.832608 -0.371025 0.411224 -0.251411 -0.371206 -0.893867 0.559765 -0.809176 0.178595 -0.789592 -0.455455 0.411224 -0.211121 -0.395511 -0.893867 0.641490 -0.746053 0.178595 -0.737508 -0.535702 0.411224 -0.168506 -0.415460 -0.893867 0.716149 -0.674711 0.178595 -0.677301 -0.610048 0.411224 -0.124035 -0.430833 -0.893867 0.782919 -0.595938 0.178595 -0.609634 -0.677674 0.411224 -0.078639 -0.441381 -0.893867 0.840555 -0.511441 0.178595 -0.535989 -0.737300 0.411224 -0.031945 -0.447192 -0.893867 0.889528 -0.420528 0.178595 -0.455762 -0.789415 0.411224 0.015099 -0.448077 -0.893867 0.928703 -0.324983 0.178595 -0.370516 -0.832834 0.411224 0.061534 -0.444089 -0.893867 0.957423 -0.226816 0.178595 -0.282055 -0.866799 0.411224 0.107739 -0.435194 -0.893867 0.975922 -0.125222 0.178595 -0.189655 -0.891586 0.411224 0.152757 -0.421505 -0.893867 0.983671 -0.022249 0.178595 -0.095166 -0.906553 0.411224 0.195764 -0.403333 -0.893867 0.980651 0.080171 0.178595 -0.000371 -0.911534 0.411224 0.236958 -0.380595 -0.893867 0.966848 0.182509 0.178595 0.095166 -0.906553 0.411224 0.275542 -0.353664 -0.893867 0.942395 0.282836 0.178595 0.189655 -0.891586 0.411224 0.311091 -0.322837 -0.893867 0.907561 0.380048 0.178595 0.282055 -0.866799 0.411224 0.342924 -0.288798 -0.893867 0.863204 0.472211 0.178595 0.370516 -0.832834 0.411224 0.371304 -0.251266 -0.893867 0.808959 0.560080 0.178595 0.455762 -0.789415 0.411224 0.395593 -0.210967 -0.893867 0.745803 0.641780 0.178595 0.535989 -0.737300 0.411224 0.415357 -0.168760 -0.893867 0.675148 0.715736 0.178595 0.609634 -0.677674 0.411224 0.430757 -0.124298 -0.893867 0.596416 0.782555 0.178595 0.677301 -0.610048 0.411224 0.441412 -0.078467 -0.893867 0.511114 0.840754 0.178595 0.737508 -0.535702 0.411224 0.447205 -0.031772 -0.893867 0.420182 0.889692 0.178595 0.789592 -0.455455 0.411224 0.448087 0.014826 -0.893867 0.325550 0.928505 0.178595 0.832608 -0.371025 0.411224 0.444065 0.061707 -0.893867 0.226443 0.957511 0.178595 0.866908 -0.281718 0.411224 0.435152 0.107908 -0.893867 0.124842 0.975970 0.178595 0.891660 -0.189308 0.411224 0.421599 0.152499 -0.893867 0.022850 0.983657 0.178595 0.906495 -0.095720 0.411224 0.403294 0.195846 -0.893867 -0.080371 0.980635 0.178595 0.911534 -0.000186 0.411224 0.380546 0.237035 -0.893867 -0.182705 0.966810 0.178595 0.906534 0.095351 0.411224 0.353608 0.275614 -0.893867 -0.283028 0.942337 0.178595 0.891547 0.189837 0.411224 0.323085 0.310834 -0.893867 -0.379325 0.907864 0.178595 0.867023 0.281365 0.411224 0.288728 0.342983 -0.893867 -0.472387 0.863108 0.178595 0.832759 0.370686 0.411224 0.251191 0.371355 -0.893867 -0.560245 0.808845 0.178595 0.789322 0.455923 0.411224 0.210887 0.395636 -0.893867 -0.641932 0.745672 0.178595 0.737191 0.536139 0.411224 0.168675 0.415391 -0.893867 -0.715874 0.675003 0.178595 0.677550 0.609772 0.411224 0.124210 0.430782 -0.893867 -0.782676 0.596256 0.178595 0.609910 0.677425 0.411224 0.078377 0.441428 -0.893867 -0.840858 0.510942 0.178595 0.535552 0.737617 0.411224 0.032128 0.447179 -0.893867 -0.889357 0.420890 0.178595 0.456084 0.789229 0.411224 -0.014917 0.448083 -0.893867 -0.928571 0.325361 0.178595 0.370855 0.832683 0.411224 -0.061797 0.444052 -0.893867 -0.957557 0.226248 0.178595 0.281542 0.866966 0.411224 -0.107997 0.435130 -0.893867 -0.975996 0.124643 0.178595 0.189127 0.891698 0.411224 -0.152585 0.421567 -0.893867 -0.983662 0.022649 0.178595 0.095535 0.906514 0.411224 -0.195928 0.403254 -0.893867 -0.980618 -0.080570 0.178595 0.000000 0.911534 0.411224 -0.237113 0.380498 -0.893867 -0.966773 -0.182902 0.178595 -0.095535 0.906514 0.411224 -0.275332 0.353827 -0.893867 -0.942562 -0.282277 0.178595 -0.189127 0.891698 0.411224 -0.310899 0.323022 -0.893867 -0.907786 -0.379510 0.178595 -0.281542 0.866966 0.411224 -0.343042 0.288658 -0.893867 -0.863011 -0.472562 0.178595 -0.370855 0.832683 0.411224 -0.371406 0.251115 -0.893867 -0.808730 -0.560410 0.178595 -0.456084 0.789229 0.411224 -0.395468 0.211202 -0.893867 -0.746183 -0.641338 0.178595 -0.535552 0.737617 0.411224 -0.415426 0.168590 -0.893867 -0.674857 -0.716011 0.178595 -0.609910 0.677425 0.411224 -0.430807 0.124122 -0.893867 -0.596097 -0.782798 0.178595 -0.677550 0.609772 0.411224 -0.441365 0.078728 -0.893867 -0.511612 -0.840451 0.178595 -0.737191 0.536139 0.411224 -0.447186 0.032037 -0.893867 -0.420709 -0.889442 0.178595 -0.789322 0.455923 0.411224 -0.448080 -0.015008 -0.893867 -0.325172 -0.928637 0.178595 -0.832759 0.370686 0.411224 -0.444040 -0.061887 -0.893867 -0.226053 -0.957603 0.178595 -0.867023 0.281365 0.411224 -0.435216 -0.107650 -0.893867 -0.125421 -0.975896 0.178595 -0.891547 0.189837 0.411224 -0.421536 -0.152671 -0.893867 -0.022449 -0.983667 0.178595 -0.906534 0.095351 0.411224 -0.286524 -0.822223 -0.491785 0.414183 -0.569165 0.710284 -0.863919 -0.000176 0.503631 -0.198771 -0.847725 -0.491785 0.471555 -0.522621 0.710284 -0.859143 -0.090720 0.503631 -0.109693 -0.863779 -0.491785 0.523262 -0.470844 0.710284 -0.845083 -0.179420 0.503631 -0.018558 -0.870519 -0.491785 0.569728 -0.413409 0.710284 -0.821624 -0.267002 0.503631 0.072781 -0.867669 -0.491785 0.609918 -0.351421 0.710284 -0.789115 -0.351644 0.503631 0.162462 -0.855426 -0.491785 0.643105 -0.286205 0.710284 -0.748346 -0.431664 0.503631 0.251222 -0.833687 -0.491785 0.669559 -0.217227 0.710284 -0.698984 -0.507719 0.503631 0.337215 -0.802766 -0.491785 0.688639 -0.145856 0.710284 -0.641921 -0.578181 0.503631 0.419493 -0.763002 -0.491785 0.700133 -0.072878 0.710284 -0.577789 -0.642274 0.503631 0.496436 -0.715331 -0.491785 0.703915 0.000198 0.710284 -0.507990 -0.698786 0.503631 0.568674 -0.659361 -0.491785 0.700018 0.073973 0.710284 -0.431955 -0.748178 0.503631 0.634648 -0.596129 -0.491785 0.688410 0.146932 0.710284 -0.351161 -0.789330 0.503631 0.693104 -0.527023 -0.491785 0.669437 0.217604 0.710284 -0.267322 -0.821520 0.503631 0.744523 -0.451478 -0.491785 0.642943 0.286567 0.710284 -0.179748 -0.845013 0.503631 0.787741 -0.370961 -0.491785 0.609368 0.352374 0.710284 -0.090195 -0.859198 0.503631 0.822048 -0.287026 -0.491785 0.569418 0.413836 0.710284 -0.000352 -0.863919 0.503631 0.847603 -0.199289 -0.491785 0.522909 0.471236 0.710284 0.090195 -0.859198 0.503631 0.863822 -0.109357 -0.491785 0.470640 0.523445 0.710284 0.179748 -0.845013 0.503631 0.870526 -0.018220 -0.491785 0.413187 0.569889 0.710284 0.267322 -0.821520 0.503631 0.867714 0.072250 -0.491785 0.351793 0.609703 0.710284 0.351161 -0.789330 0.503631 0.855362 0.162795 -0.491785 0.285955 0.643216 0.710284 0.431955 -0.748178 0.503631 0.833589 0.251547 -0.491785 0.216966 0.669644 0.710284 0.507990 -0.698786 0.503631 0.802972 0.336725 -0.491785 0.146276 0.688549 0.710284 0.577789 -0.642274 0.503631 0.763258 0.419027 -0.491785 0.073306 0.700088 0.710284 0.641921 -0.578181 0.503631 0.715138 0.496715 -0.491785 -0.000472 0.703915 0.710284 0.698984 -0.507719 0.503631 0.659140 0.568930 -0.491785 -0.074245 0.699989 0.710284 0.748346 -0.431664 0.503631 0.596516 0.634283 -0.491785 -0.146511 0.688499 0.710284 0.789115 -0.351644 0.503631 0.526754 0.693309 -0.491785 -0.217864 0.669352 0.710284 0.821624 -0.267002 0.503631 0.451189 0.744699 -0.491785 -0.286817 0.642832 0.710284 0.845083 -0.179420 0.503631 0.371442 0.787514 -0.491785 -0.352002 0.609583 0.710284 0.859143 -0.090720 0.503631 0.286859 0.822106 -0.491785 -0.413952 0.569334 0.710284 0.863919 -0.000176 0.503631 0.199116 0.847644 -0.491785 -0.471342 0.522813 0.710284 0.859179 0.090370 0.503631 0.109181 0.863844 -0.491785 -0.523541 0.470534 0.710284 0.844976 0.179920 0.503631 0.018913 0.870511 -0.491785 -0.569559 0.413641 0.710284 0.821733 0.266667 0.503631 -0.072427 0.867699 -0.491785 -0.609775 0.351669 0.710284 0.789258 0.351322 0.503631 -0.162969 0.855329 -0.491785 -0.643274 0.285824 0.710284 0.748090 0.432107 0.503631 -0.251716 0.833538 -0.491785 -0.669688 0.216830 0.710284 0.698682 0.508133 0.503631 -0.336888 0.802903 -0.491785 -0.688579 0.146136 0.710284 0.642157 0.577919 0.503631 -0.419183 0.763173 -0.491785 -0.700103 0.073163 0.710284 0.578050 0.642039 0.503631 -0.496860 0.715037 -0.491785 -0.703915 -0.000615 0.710284 0.507576 0.699087 0.503631 -0.568405 0.659593 -0.491785 -0.700048 -0.073687 0.710284 0.432260 0.748002 0.503631 -0.634405 0.596387 -0.491785 -0.688469 -0.146652 0.710284 0.351483 0.789187 0.503631 -0.693417 0.526612 -0.491785 -0.669308 -0.218000 0.710284 0.266835 0.821678 0.503631 -0.744790 0.451037 -0.491785 -0.642773 -0.286948 0.710284 0.179247 0.845119 0.503631 -0.787590 0.371281 -0.491785 -0.609512 -0.352126 0.710284 0.090545 0.859161 0.503631 -0.822165 0.286692 -0.491785 -0.569249 -0.414068 0.710284 0.000000 0.863919 0.503631 -0.847684 0.198944 -0.491785 -0.522717 -0.471449 0.710284 -0.090545 0.859161 0.503631 -0.863757 0.109869 -0.491785 -0.470950 -0.523166 0.710284 -0.179247 0.845119 0.503631 -0.870515 0.018736 -0.491785 -0.413525 -0.569644 0.710284 -0.266835 0.821678 0.503631 -0.867684 -0.072604 -0.491785 -0.351545 -0.609847 0.710284 -0.351483 0.789187 0.503631 -0.855296 -0.163143 -0.491785 -0.285693 -0.643332 0.710284 -0.432260 0.748002 0.503631 -0.833738 -0.251053 -0.491785 -0.217363 -0.669515 0.710284 -0.507576 0.699087 0.503631 -0.802835 -0.337052 -0.491785 -0.145996 -0.688609 0.710284 -0.578050 0.642039 0.503631 -0.763088 -0.419338 -0.491785 -0.073021 -0.700118 0.710284 -0.642157 0.577919 0.503631 -0.715432 -0.496291 -0.491785 0.000055 -0.703915 0.710284 -0.698682 0.508133 0.503631 -0.659477 -0.568540 -0.491785 0.073830 -0.700033 0.710284 -0.748090 0.432107 0.503631 -0.596258 -0.634526 -0.491785 0.146792 -0.688440 0.710284 -0.789258 0.351322 0.503631 -0.526471 -0.693524 -0.491785 0.218137 -0.669263 0.710284 -0.821733 0.266667 0.503631 -0.451630 -0.744431 -0.491785 0.286436 -0.643002 0.710284 -0.844976 0.179920 0.503631 -0.371121 -0.787665 -0.491785 0.352250 -0.609440 0.710284 -0.859179 0.090370 0.503631 0.621985 -0.777702 -0.091179 -0.769471 -0.628633 0.112846 -0.145079 -0.000030 -0.989420 0.700069 -0.708230 -0.091179 -0.699348 -0.705817 0.112846 -0.144277 -0.015235 -0.989420 0.769809 -0.631728 -0.091179 -0.622297 -0.774605 0.112846 -0.141916 -0.030130 -0.989420 0.831779 -0.547567 -0.091179 -0.537686 -0.835560 0.112846 -0.137976 -0.044838 -0.989420 0.884587 -0.457375 -0.091179 -0.447152 -0.887311 0.112846 -0.132517 -0.059052 -0.989420 0.927289 -0.363072 -0.091179 -0.352621 -0.928937 0.112846 -0.125671 -0.072490 -0.989420 0.960235 -0.263886 -0.091179 -0.253320 -0.960778 0.112846 -0.117381 -0.085262 -0.989420 0.982603 -0.161793 -0.091179 -0.151229 -0.982036 0.112846 -0.107799 -0.097094 -0.989420 0.994149 -0.057918 -0.091179 -0.047471 -0.992478 0.112846 -0.097029 -0.107858 -0.989420 0.994790 0.045600 -0.091179 0.055817 -0.992043 0.112846 -0.085307 -0.117348 -0.989420 0.984532 0.149610 -0.091179 0.159483 -0.980730 0.112846 -0.072539 -0.125642 -0.989420 0.963430 0.251972 -0.091179 0.261392 -0.958614 0.112846 -0.058971 -0.132553 -0.989420 0.932066 0.350626 -0.091179 0.359496 -0.926298 0.112846 -0.044892 -0.137959 -0.989420 0.890185 0.446383 -0.091179 0.454599 -0.883519 0.112846 -0.030185 -0.141904 -0.989420 0.838498 0.537222 -0.091179 0.544694 -0.831008 0.112846 -0.015147 -0.144286 -0.989420 0.778082 0.621510 -0.091179 0.628163 -0.769855 0.112846 -0.000059 -0.145079 -0.989420 0.708658 0.699636 -0.091179 0.705390 -0.699779 0.112846 0.015147 -0.144286 -0.989420 0.631428 0.770055 -0.091179 0.774847 -0.621996 0.112846 0.030185 -0.141904 -0.989420 0.547243 0.831992 -0.091179 0.835769 -0.537360 0.112846 0.044892 -0.137959 -0.989420 0.457915 0.884308 -0.091179 0.887038 -0.447694 0.112846 0.058971 -0.132553 -0.989420 0.362712 0.927430 -0.091179 0.929074 -0.352260 0.112846 0.072539 -0.125642 -0.989420 0.263513 0.960337 -0.091179 0.960877 -0.252946 0.112846 0.085307 -0.117348 -0.989420 0.162394 0.982504 -0.091179 0.981944 -0.151829 0.112846 0.097029 -0.107858 -0.989420 0.058526 0.994113 -0.091179 0.992449 -0.048078 0.112846 0.107799 -0.097094 -0.989420 -0.045987 0.994772 -0.091179 0.992022 0.056203 0.112846 0.117381 -0.085262 -0.989420 -0.149993 0.984474 -0.091179 0.980668 0.159864 0.112846 0.125671 -0.072490 -0.989420 -0.251383 0.963583 -0.091179 0.958773 0.260806 0.112846 0.132517 -0.059052 -0.989420 -0.350989 0.931930 -0.091179 0.926158 0.359856 0.112846 0.137976 -0.044838 -0.989420 -0.446729 0.890011 -0.091179 0.883342 0.454942 0.112846 0.141916 -0.030130 -0.989420 -0.536710 0.838826 -0.091179 0.831341 0.544186 0.112846 0.144277 -0.015235 -0.989420 -0.621669 0.777955 -0.091179 0.769727 0.628320 0.112846 0.145079 -0.000030 -0.989420 -0.699780 0.708515 -0.091179 0.699636 0.705532 0.112846 0.144283 0.015176 -0.989420 -0.770184 0.631271 -0.091179 0.621838 0.774973 0.112846 0.141898 0.030214 -0.989420 -0.831556 0.547906 -0.091179 0.538026 0.835341 0.112846 0.137994 0.044782 -0.989420 -0.884401 0.457735 -0.091179 0.447513 0.887129 0.112846 0.132541 0.058998 -0.989420 -0.927504 0.362523 -0.091179 0.352071 0.929146 0.112846 0.125628 0.072564 -0.989420 -0.960391 0.263317 -0.091179 0.252751 0.960928 0.112846 0.117330 0.085331 -0.989420 -0.982537 0.162194 -0.091179 0.151629 0.981975 0.112846 0.107838 0.097051 -0.989420 -0.994125 0.058323 -0.091179 0.047876 0.992458 0.112846 0.097073 0.107818 -0.989420 -0.994763 -0.046189 -0.091179 -0.056405 0.992010 0.112846 0.085238 0.117398 -0.989420 -0.984593 -0.149209 -0.091179 -0.159083 0.980795 0.112846 0.072590 0.125613 -0.989420 -0.963532 -0.251579 -0.091179 -0.261001 0.958720 0.112846 0.059025 0.132529 -0.989420 -0.931858 -0.351179 -0.091179 -0.360045 0.926085 0.112846 0.044810 0.137985 -0.989420 -0.889920 -0.446910 -0.091179 -0.455122 0.883249 0.112846 0.030101 0.141922 -0.989420 -0.838717 -0.536880 -0.091179 -0.544356 0.831230 0.112846 0.015205 0.144280 -0.989420 -0.777829 -0.621827 -0.091179 -0.628476 0.769599 0.112846 0.000000 0.145079 -0.989420 -0.708373 -0.699924 -0.091179 -0.705675 0.699492 0.112846 -0.015205 0.144280 -0.989420 -0.631885 -0.769681 -0.091179 -0.774478 0.622455 0.112846 -0.030101 0.141922 -0.989420 -0.547736 -0.831668 -0.091179 -0.835450 0.537856 0.112846 -0.044810 0.137985 -0.989420 -0.457555 -0.884494 -0.091179 -0.887220 0.447332 0.112846 -0.059025 0.132529 -0.989420 -0.362334 -0.927578 -0.091179 -0.929217 0.351882 0.112846 -0.072590 0.125613 -0.989420 -0.264082 -0.960181 -0.091179 -0.960726 0.253516 0.112846 -0.085238 0.117398 -0.989420 -0.161993 -0.982570 -0.091179 -0.982006 0.151429 0.112846 -0.097073 0.107818 -0.989420 -0.058121 -0.994137 -0.091179 -0.992468 0.047673 0.112846 -0.107838 0.097051 -0.989420 0.045397 -0.994799 -0.091179 -0.992055 -0.055615 0.112846 -0.117330 0.085331 -0.989420 0.149409 -0.984563 -0.091179 -0.980762 -0.159283 0.112846 -0.125628 0.072564 -0.989420 0.251776 -0.963481 -0.091179 -0.958667 -0.261197 0.112846 -0.132541 0.058998 -0.989420 0.351369 -0.931787 -0.091179 -0.926012 -0.360233 0.112846 -0.137994 0.044782 -0.989420 0.446201 -0.890276 -0.091179 -0.883612 -0.454419 0.112846 -0.141898 0.030214 -0.989420 0.537051 -0.838607 -0.091179 -0.831119 -0.544525 0.112846 -0.144283 0.015176 -0.989420 0.178490 -0.851655 -0.492774 -0.289698 -0.524103 0.800869 -0.940328 -0.000192 -0.340270 0.266766 -0.828257 -0.492774 -0.233173 -0.551579 0.800869 -0.935129 -0.098744 -0.340270 0.351309 -0.796088 -0.492774 -0.174652 -0.572805 0.800869 -0.919826 -0.195288 -0.340270 0.432809 -0.754884 -0.492774 -0.113656 -0.587955 0.800869 -0.894292 -0.290617 -0.340270 0.509543 -0.705365 -0.492774 -0.051408 -0.596629 0.800869 -0.858908 -0.382745 -0.340270 0.580016 -0.648657 -0.492774 0.010808 -0.598742 0.800869 -0.814533 -0.469842 -0.340270 0.644805 -0.584295 -0.492774 0.073500 -0.594312 0.800869 -0.760805 -0.552623 -0.340270 0.702492 -0.513497 -0.492774 0.135384 -0.583336 0.800869 -0.698696 -0.629318 -0.340270 0.752441 -0.437042 -0.492774 0.195776 -0.565934 0.800869 -0.628891 -0.699080 -0.340270 0.793746 -0.356568 -0.492774 0.253469 -0.542552 0.800869 -0.552919 -0.760590 -0.340270 0.826746 -0.271414 -0.492774 0.308937 -0.512998 0.800869 -0.470159 -0.814351 -0.340270 0.850639 -0.183270 -0.492774 0.361001 -0.477794 0.800869 -0.382220 -0.859142 -0.340270 0.865068 -0.093973 -0.492774 0.408652 -0.437736 0.800869 -0.290965 -0.894179 -0.340270 0.870153 -0.002790 -0.492774 0.452279 -0.392496 0.800869 -0.195646 -0.919749 -0.340270 0.865653 0.088424 -0.492774 0.490924 -0.342932 0.800869 -0.098172 -0.935189 -0.340270 0.851763 0.177970 -0.492774 0.523926 -0.290018 0.800869 -0.000383 -0.940328 -0.340270 0.828420 0.266260 -0.492774 0.551437 -0.233510 0.800869 0.098172 -0.935189 -0.340270 0.795951 0.351618 -0.492774 0.572873 -0.174429 0.800869 0.195646 -0.919749 -0.340270 0.754716 0.433103 -0.492774 0.588000 -0.113427 0.800869 0.290965 -0.894179 -0.340270 0.705676 0.509112 -0.492774 0.596598 -0.051772 0.800869 0.382220 -0.859142 -0.340270 0.648431 0.580268 -0.492774 0.598738 0.011040 0.800869 0.470159 -0.814351 -0.340270 0.584044 0.645033 -0.492774 0.594284 0.073732 0.800869 0.552919 -0.760590 -0.340270 0.513926 0.702178 -0.492774 0.583418 0.135027 0.800869 0.628891 -0.699080 -0.340270 0.437502 0.752174 -0.492774 0.566053 0.195430 0.800869 0.698696 -0.629318 -0.340270 0.356259 0.793885 -0.492774 0.542453 0.253680 0.800869 0.760805 -0.552623 -0.340270 0.271092 0.826851 -0.492774 0.512878 0.309136 0.800869 0.814533 -0.469842 -0.340270 0.183790 0.850527 -0.492774 0.478015 0.360709 0.800869 0.858908 -0.382745 -0.340270 0.093636 0.865105 -0.492774 0.437577 0.408822 0.800869 0.894292 -0.290617 -0.340270 0.002451 0.870154 -0.492774 0.392320 0.452432 0.800869 0.919826 -0.195288 -0.340270 -0.087895 0.865707 -0.492774 0.343232 0.490715 0.800869 0.935129 -0.098744 -0.340270 -0.178143 0.851727 -0.492774 0.289911 0.523985 0.800869 0.940328 -0.000192 -0.340270 -0.266429 0.828366 -0.492774 0.233397 0.551484 0.800869 0.935169 0.098363 -0.340270 -0.351780 0.795880 -0.492774 0.174312 0.572909 0.800869 0.919710 0.195833 -0.340270 -0.432502 0.755060 -0.492774 0.113895 0.587909 0.800869 0.894410 0.290253 -0.340270 -0.509256 0.705573 -0.492774 0.051651 0.596608 0.800869 0.859064 0.382395 -0.340270 -0.580400 0.648313 -0.492774 -0.011162 0.598736 0.800869 0.814255 0.470325 -0.340270 -0.645151 0.583912 -0.492774 -0.073853 0.594269 0.800869 0.760477 0.553074 -0.340270 -0.702283 0.513783 -0.492774 -0.135146 0.583391 0.800869 0.698952 0.629033 -0.340270 -0.752263 0.437349 -0.492774 -0.195545 0.566013 0.800869 0.629175 0.698824 -0.340270 -0.793958 0.356097 -0.492774 -0.253791 0.542402 0.800869 0.552469 0.760917 -0.340270 -0.826635 0.271751 -0.492774 -0.308728 0.513124 0.800869 0.470491 0.814159 -0.340270 -0.850564 0.183617 -0.492774 -0.360806 0.477941 0.800869 0.382570 0.858986 -0.340270 -0.865124 0.093460 -0.492774 -0.408911 0.437494 0.800869 0.290435 0.894351 -0.340270 -0.870155 0.002274 -0.492774 -0.452511 0.392228 0.800869 0.195101 0.919865 -0.340270 -0.865689 -0.088071 -0.492774 -0.490785 0.343132 0.800869 0.098553 0.935149 -0.340270 -0.851691 -0.178316 -0.492774 -0.524044 0.289805 0.800869 0.000000 0.940328 -0.340270 -0.828311 -0.266598 -0.492774 -0.551532 0.233285 0.800869 -0.098553 0.935149 -0.340270 -0.796160 -0.351146 -0.492774 -0.572770 0.174768 0.800869 -0.195101 0.919865 -0.340270 -0.754972 -0.432656 -0.492774 -0.587932 0.113776 0.800869 -0.290435 0.894351 -0.340270 -0.705469 -0.509399 -0.492774 -0.596619 0.051529 0.800869 -0.382570 0.858986 -0.340270 -0.648195 -0.580532 -0.492774 -0.598734 -0.011284 0.800869 -0.470491 0.814159 -0.340270 -0.584426 -0.644686 -0.492774 -0.594327 -0.073379 0.800869 -0.552469 0.760917 -0.340270 -0.513640 -0.702388 -0.492774 -0.583363 -0.135265 0.800869 -0.629175 0.698824 -0.340270 -0.437196 -0.752352 -0.492774 -0.565974 -0.195661 0.800869 -0.698952 0.629033 -0.340270 -0.356730 -0.793674 -0.492774 -0.542604 -0.253359 0.800869 -0.760477 0.553074 -0.340270 -0.271582 -0.826691 -0.492774 -0.513061 -0.308832 0.800869 -0.814255 0.470325 -0.340270 -0.183443 -0.850601 -0.492774 -0.477868 -0.360904 0.800869 -0.859064 0.382395 -0.340270 -0.093284 -0.865143 -0.492774 -0.437411 -0.409000 0.800869 -0.894410 0.290253 -0.340270 -0.002967 -0.870153 -0.492774 -0.392588 -0.452199 0.800869 -0.919710 0.195833 -0.340270 0.088247 -0.865671 -0.492774 -0.343032 -0.490855 0.800869 -0.935169 0.098363 -0.340270 -0.039260 0.996210 0.077617 0.447781 0.086981 -0.889903 -0.893281 -0.000182 -0.449498 -0.143454 0.986609 0.077617 0.436198 0.133433 -0.889903 -0.888342 -0.093803 -0.449498 -0.245101 0.966386 0.077617 0.419989 0.177995 -0.889903 -0.873805 -0.185518 -0.449498 -0.345035 0.935375 0.077617 0.399021 0.221033 -0.889903 -0.849549 -0.276077 -0.449498 -0.441169 0.894061 0.077617 0.373658 0.261636 -0.889903 -0.815935 -0.363595 -0.449498 -0.531600 0.843432 0.077617 0.344478 0.299012 -0.889903 -0.773781 -0.446335 -0.449498 -0.617070 0.783071 0.077617 0.311242 0.333469 -0.889903 -0.722740 -0.524974 -0.449498 -0.695743 0.714085 0.077617 0.274578 0.364253 -0.889903 -0.663738 -0.597831 -0.449498 -0.766752 0.637233 0.077617 0.234889 0.391025 -0.889903 -0.597426 -0.664104 -0.449498 -0.828762 0.554192 0.077617 0.193027 0.413296 -0.889903 -0.525256 -0.722536 -0.449498 -0.882281 0.464279 0.077617 0.148647 0.431251 -0.889903 -0.446636 -0.773607 -0.449498 -0.926082 0.369253 0.077617 0.102630 0.444455 -0.889903 -0.363096 -0.816157 -0.449498 -0.959411 0.271119 0.077617 0.055936 0.452708 -0.889903 -0.276407 -0.849441 -0.449498 -0.982543 0.169072 0.077617 0.008181 0.456077 -0.889903 -0.185857 -0.873732 -0.449498 -0.994851 0.065164 0.077617 -0.039664 0.454423 -0.889903 -0.093260 -0.888400 -0.449498 -0.996234 -0.038651 0.077617 -0.086708 0.447834 -0.889903 -0.000364 -0.893281 -0.449498 -0.986696 -0.142851 0.077617 -0.133167 0.436280 -0.889903 0.093260 -0.888400 -0.449498 -0.966290 -0.245477 0.077617 -0.178158 0.419920 -0.889903 0.185857 -0.873732 -0.449498 -0.935241 -0.345399 0.077617 -0.221188 0.398935 -0.889903 0.276407 -0.849441 -0.449498 -0.894331 -0.440623 0.077617 -0.261407 0.373817 -0.889903 0.363096 -0.816157 -0.449498 -0.843225 -0.531928 0.077617 -0.299146 0.344361 -0.889903 0.446636 -0.773607 -0.449498 -0.782831 -0.617375 0.077617 -0.333590 0.311112 -0.889903 0.525256 -0.722536 -0.449498 -0.714510 -0.695307 0.077617 -0.364085 0.274800 -0.889903 0.597426 -0.664104 -0.449498 -0.637702 -0.766363 0.077617 -0.390881 0.235128 -0.889903 0.663738 -0.597831 -0.449498 -0.553869 -0.828978 0.077617 -0.413371 0.192866 -0.889903 0.722740 -0.524974 -0.449498 -0.463936 -0.882462 0.077617 -0.431308 0.148480 -0.889903 0.773781 -0.446335 -0.449498 -0.369819 -0.925856 0.077617 -0.444392 0.102902 -0.889903 0.815935 -0.363595 -0.449498 -0.270745 -0.959517 0.077617 -0.452730 0.055760 -0.889903 0.849549 -0.276077 -0.449498 -0.168690 -0.982608 0.077617 -0.456080 0.008003 -0.889903 0.873805 -0.185518 -0.449498 -0.065771 -0.994811 0.077617 -0.454447 -0.039387 -0.889903 0.888342 -0.093803 -0.449498 0.038854 -0.996226 0.077617 -0.447816 -0.086799 -0.889903 0.893281 -0.000182 -0.449498 0.143052 -0.986667 0.077617 -0.436252 -0.133255 -0.889903 0.888381 0.093441 -0.449498 0.245674 -0.966240 0.077617 -0.419884 -0.178244 -0.889903 0.873695 0.186035 -0.449498 0.344654 -0.935515 0.077617 -0.399111 -0.220870 -0.889903 0.849661 0.275731 -0.449498 0.440805 -0.894241 0.077617 -0.373764 -0.261483 -0.889903 0.816083 0.363263 -0.449498 0.532100 -0.843116 0.077617 -0.344300 -0.299216 -0.889903 0.773516 0.446793 -0.449498 0.617534 -0.782705 0.077617 -0.311044 -0.333654 -0.889903 0.722429 0.525403 -0.449498 0.695452 -0.714368 0.077617 -0.274726 -0.364141 -0.889903 0.663982 0.597561 -0.449498 0.766493 -0.637545 0.077617 -0.235048 -0.390929 -0.889903 0.597696 0.663860 -0.449498 0.829091 -0.553700 0.077617 -0.192782 -0.413411 -0.889903 0.524827 0.722847 -0.449498 0.882092 -0.464639 0.077617 -0.148823 -0.431190 -0.889903 0.446951 0.773425 -0.449498 0.925932 -0.369630 0.077617 -0.102811 -0.444413 -0.889903 0.363429 0.816009 -0.449498 0.959572 -0.270550 0.077617 -0.055668 -0.452741 -0.889903 0.275904 0.849605 -0.449498 0.982643 -0.168490 0.077617 -0.007911 -0.456082 -0.889903 0.185340 0.873842 -0.449498 0.994825 -0.065569 0.077617 0.039479 -0.454439 -0.889903 0.093622 0.888362 -0.449498 0.996218 0.039057 0.077617 0.086890 -0.447798 -0.889903 0.000000 0.893281 -0.449498 0.986638 0.143253 0.077617 0.133344 -0.436225 -0.889903 -0.093622 0.888362 -0.449498 0.966435 0.244904 0.077617 0.177909 -0.420025 -0.889903 -0.185340 0.873842 -0.449498 0.935445 0.344845 0.077617 0.220951 -0.399066 -0.889903 -0.275904 0.849605 -0.449498 0.894151 0.440987 0.077617 0.261559 -0.373711 -0.889903 -0.363429 0.816009 -0.449498 0.843008 0.532272 0.077617 0.299286 -0.344239 -0.889903 -0.446951 0.773425 -0.449498 0.783197 0.616911 0.077617 0.333406 -0.311310 -0.889903 -0.524827 0.722847 -0.449498 0.714227 0.695598 0.077617 0.364197 -0.274652 -0.889903 -0.597696 0.663860 -0.449498 0.637389 0.766623 0.077617 0.390977 -0.234969 -0.889903 -0.663982 0.597561 -0.449498 0.554360 0.828650 0.077617 0.413257 -0.193111 -0.889903 -0.722429 0.525403 -0.449498 0.464459 0.882187 0.077617 0.431220 -0.148735 -0.889903 -0.773516 0.446793 -0.449498 0.369441 0.926007 0.077617 0.444434 -0.102721 -0.889903 -0.816083 0.363263 -0.449498 0.270355 0.959627 0.077617 0.452752 -0.055575 -0.889903 -0.849661 0.275731 -0.449498 0.169272 0.982508 0.077617 0.456075 -0.008274 -0.889903 -0.873695 0.186035 -0.449498 0.065366 0.994838 0.077617 0.454431 0.039572 -0.889903 -0.888381 0.093441 -0.449498 -0.237048 0.965044 -0.111794 -0.872704 -0.262087 -0.411944 -0.426844 -0.000087 0.904325 -0.336886 0.934885 -0.111794 -0.840429 -0.352109 -0.411944 -0.424484 -0.044823 0.904325 -0.432118 0.894861 -0.111794 -0.799335 -0.437454 -0.411944 -0.417537 -0.088647 0.904325 -0.523526 0.844643 -0.111794 -0.749084 -0.518821 -0.411944 -0.405947 -0.131920 0.904325 -0.609168 0.785122 -0.111794 -0.690583 -0.594473 -0.411944 -0.389885 -0.173740 0.904325 -0.687382 0.717641 -0.111794 -0.625138 -0.662952 -0.411944 -0.369742 -0.213276 0.904325 -0.758810 0.641646 -0.111794 -0.552213 -0.724820 -0.411944 -0.345353 -0.250853 0.904325 -0.821880 0.558583 -0.111794 -0.473205 -0.778704 -0.411944 -0.317160 -0.285667 0.904325 -0.875897 0.469368 -0.111794 -0.388985 -0.824010 -0.411944 -0.285473 -0.317334 0.904325 -0.919891 0.375903 -0.111794 -0.301341 -0.859940 -0.411944 -0.250987 -0.345255 0.904325 -0.954222 0.277421 -0.111794 -0.209553 -0.886786 -0.411944 -0.213420 -0.369659 0.904325 -0.978042 0.175884 -0.111794 -0.115458 -0.903865 -0.411944 -0.173501 -0.389991 0.904325 -0.991017 0.073401 -0.111794 -0.021001 -0.910967 -0.411944 -0.132078 -0.405896 0.904325 -0.993252 -0.030869 -0.111794 0.074590 -0.908151 -0.411944 -0.088810 -0.417503 0.904325 -0.984546 -0.134799 -0.111794 0.169360 -0.895332 -0.411944 -0.044563 -0.424511 0.904325 -0.965189 -0.236458 -0.111794 0.261554 -0.872864 -0.411944 -0.000174 -0.426844 0.904325 -0.935091 -0.336314 -0.111794 0.351596 -0.840644 -0.411944 0.044563 -0.424511 0.904325 -0.894693 -0.432467 -0.111794 0.437765 -0.799165 -0.411944 0.088810 -0.417503 0.904325 -0.844440 -0.523855 -0.111794 0.519112 -0.748882 -0.411944 0.132078 -0.405896 0.904325 -0.785494 -0.608688 -0.111794 0.594051 -0.690946 -0.411944 0.173501 -0.389991 0.904325 -0.717373 -0.687661 -0.111794 0.663195 -0.624880 -0.411944 0.213420 -0.369659 0.904325 -0.641351 -0.759060 -0.111794 0.725034 -0.551931 -0.411944 0.250987 -0.345255 0.904325 -0.559085 -0.821539 -0.111794 0.778414 -0.473681 -0.411944 0.285473 -0.317334 0.904325 -0.469903 -0.875610 -0.111794 0.823772 -0.389488 -0.411944 0.317160 -0.285667 0.904325 -0.375545 -0.920037 -0.111794 0.860057 -0.301006 -0.411944 0.345353 -0.250853 0.904325 -0.277050 -0.954330 -0.111794 0.886868 -0.209208 -0.411944 0.369742 -0.213276 0.904325 -0.176482 -0.977935 -0.111794 0.903794 -0.116010 -0.411944 0.389885 -0.173740 0.904325 -0.073015 -0.991045 -0.111794 0.910975 -0.020647 -0.411944 0.405947 -0.131920 0.904325 0.031256 -0.993240 -0.111794 0.908122 0.074944 -0.411944 0.417537 -0.088647 0.904325 0.134198 -0.984628 -0.111794 0.895435 0.168813 -0.411944 0.424484 -0.044823 0.904325 0.236655 -0.965141 -0.111794 0.872811 0.261732 -0.411944 0.426844 -0.000087 0.904325 0.336505 -0.935022 -0.111794 0.840573 0.351767 -0.411944 0.424502 0.044650 0.904325 0.432649 -0.894604 -0.111794 0.799075 0.437928 -0.411944 0.417485 0.088895 0.904325 0.523182 -0.844856 -0.111794 0.749296 0.518516 -0.411944 0.406001 0.131755 0.904325 0.608848 -0.785370 -0.111794 0.690825 0.594191 -0.411944 0.389956 0.173581 0.904325 0.687807 -0.717233 -0.111794 0.624745 0.663322 -0.411944 0.369616 0.213495 0.904325 0.759190 -0.641196 -0.111794 0.551783 0.725147 -0.411944 0.345204 0.251058 0.904325 0.821652 -0.558918 -0.111794 0.473522 0.778511 -0.411944 0.317276 0.285538 0.904325 0.875706 -0.469725 -0.111794 0.389321 0.823852 -0.411944 0.285602 0.317218 0.904325 0.920113 -0.375357 -0.111794 0.300831 0.860118 -0.411944 0.250783 0.345404 0.904325 0.954109 -0.277810 -0.111794 0.209914 0.886701 -0.411944 0.213570 0.369572 0.904325 0.977971 -0.176283 -0.111794 0.115826 0.903818 -0.411944 0.173660 0.389920 0.904325 0.991060 -0.072813 -0.111794 0.020461 0.910979 -0.411944 0.131837 0.405974 0.904325 0.993233 0.031458 -0.111794 -0.075129 0.908107 -0.411944 0.088562 0.417555 0.904325 0.984601 0.134398 -0.111794 -0.168996 0.895401 -0.411944 0.044736 0.424493 0.904325 0.965092 0.236851 -0.111794 -0.261909 0.872758 -0.411944 0.000000 0.426844 0.904325 0.934954 0.336695 -0.111794 -0.351938 0.840501 -0.411944 -0.044736 0.424493 0.904325 0.894949 0.431936 -0.111794 -0.437291 0.799424 -0.411944 -0.088562 0.417555 0.904325 0.844750 0.523354 -0.111794 -0.518668 0.749190 -0.411944 -0.131837 0.405974 0.904325 0.785246 0.609008 -0.111794 -0.594332 0.690704 -0.411944 -0.173660 0.389920 0.904325 0.717093 0.687953 -0.111794 -0.663449 0.624609 -0.411944 -0.213570 0.369572 0.904325 0.641800 0.758679 -0.111794 -0.724707 0.552360 -0.411944 -0.250783 0.345404 0.904325 0.558751 0.821766 -0.111794 -0.778607 0.473364 -0.411944 -0.285602 0.317218 0.904325 0.469546 0.875802 -0.111794 -0.823931 0.389153 -0.411944 -0.317276 0.285538 0.904325 0.376090 0.919814 -0.111794 -0.859878 0.301516 -0.411944 -0.345204 0.251058 0.904325 0.277616 0.954165 -0.111794 -0.886743 0.209734 -0.411944 -0.369616 0.213495 0.904325 0.176083 0.978006 -0.111794 -0.903841 0.115642 -0.411944 -0.389956 0.173581 0.904325 0.072611 0.991075 -0.111794 -0.910984 0.020276 -0.411944 -0.406001 0.131755 0.904325 -0.030667 0.993258 -0.111794 -0.908166 -0.074405 -0.411944 -0.417485 0.088895 0.904325 -0.134599 0.984574 -0.111794 -0.895366 -0.169178 -0.411944 -0.424502 0.044650 0.904325 0.773582 -0.200671 -0.601084 -0.158381 -0.979659 0.123225 -0.613585 -0.000125 -0.789629 0.790353 -0.118489 -0.601084 -0.054833 -0.990863 0.123225 -0.610193 -0.064432 -0.789629 0.798384 -0.035800 -0.601084 0.048327 -0.991201 0.123225 -0.600207 -0.127430 -0.789629 0.797739 0.048073 -0.601084 0.151946 -0.980677 0.123225 -0.583546 -0.189634 -0.789629 0.788307 0.131417 -0.601084 0.253891 -0.959351 0.123225 -0.560457 -0.249749 -0.789629 0.770405 0.212544 -0.601084 0.352112 -0.927810 0.123225 -0.531501 -0.306583 -0.789629 0.743886 0.292117 -0.601084 0.447414 -0.885797 0.123225 -0.496442 -0.360599 -0.789629 0.709173 0.368473 -0.601084 0.537788 -0.834026 0.123225 -0.455915 -0.410644 -0.789629 0.666648 0.440770 -0.601084 0.622238 -0.773069 0.123225 -0.410365 -0.456165 -0.789629 0.617289 0.507595 -0.601084 0.699130 -0.704296 0.123225 -0.360792 -0.496302 -0.789629 0.560690 0.569495 -0.601084 0.769095 -0.627143 0.123225 -0.306789 -0.531382 -0.789629 0.497915 0.625123 -0.601084 0.830589 -0.543082 0.123225 -0.249407 -0.560609 -0.789629 0.430329 0.673435 -0.601084 0.882479 -0.453922 0.123225 -0.189861 -0.583472 -0.789629 0.357378 0.714828 -0.601084 0.925194 -0.358932 0.123225 -0.127663 -0.600157 -0.789629 0.280490 0.748347 -0.601084 0.957717 -0.259988 0.123225 -0.064060 -0.610232 -0.789629 0.201144 0.773459 -0.601084 0.979562 -0.158979 0.123225 -0.000250 -0.613585 -0.789629 0.118972 0.790281 -0.601084 0.990829 -0.055438 0.123225 0.064060 -0.610232 -0.789629 0.035489 0.798397 -0.601084 0.991182 0.048713 0.123225 0.127663 -0.600157 -0.789629 -0.048384 0.797720 -0.601084 0.980618 0.152328 0.123225 0.189861 -0.583472 -0.789629 -0.130936 0.788387 -0.601084 0.959506 0.253305 0.123225 0.249407 -0.560609 -0.789629 -0.212843 0.770322 -0.601084 0.927674 0.352473 0.123225 0.306789 -0.531382 -0.789629 -0.292406 0.743772 -0.601084 0.885623 0.447759 0.123225 0.360792 -0.496302 -0.789629 -0.368039 0.709398 -0.601084 0.834355 0.537278 0.123225 0.410365 -0.456165 -0.789629 -0.440362 0.666918 -0.601084 0.773449 0.621766 0.123225 0.455915 -0.410644 -0.789629 -0.507835 0.617091 -0.601084 0.704023 0.699404 0.123225 0.496442 -0.360599 -0.789629 -0.569713 0.560468 -0.601084 0.626844 0.769339 0.123225 0.531501 -0.306583 -0.789629 -0.624819 0.498296 -0.601084 0.543590 0.830257 0.123225 0.560457 -0.249749 -0.789629 -0.673603 0.430067 -0.601084 0.453579 0.882656 0.123225 0.583546 -0.189634 -0.789629 -0.714967 0.357100 -0.601084 0.358572 0.925333 0.123225 0.600207 -0.127430 -0.789629 -0.748175 0.280948 -0.601084 0.260574 0.957558 0.123225 0.610193 -0.064432 -0.789629 -0.773500 0.200986 -0.601084 0.158780 0.979594 0.123225 0.613585 -0.000125 -0.789629 -0.790305 0.118811 -0.601084 0.055237 0.990840 0.123225 0.610219 0.064184 -0.789629 -0.798405 0.035327 -0.601084 -0.048915 0.991172 0.123225 0.600131 0.127786 -0.789629 -0.797758 -0.047748 -0.601084 -0.151547 0.980739 0.123225 0.583623 0.189396 -0.789629 -0.788360 -0.131096 -0.601084 -0.253501 0.959454 0.123225 0.560558 0.249521 -0.789629 -0.770279 -0.213000 -0.601084 -0.352662 0.927602 0.123225 0.531320 0.306897 -0.789629 -0.743712 -0.292558 -0.601084 -0.447939 0.885531 0.123225 0.496228 0.360893 -0.789629 -0.709323 -0.368184 -0.601084 -0.537448 0.834245 0.123225 0.456082 0.410458 -0.789629 -0.666828 -0.440498 -0.601084 -0.621923 0.773322 0.123225 0.410551 0.455998 -0.789629 -0.616988 -0.507960 -0.601084 -0.699548 0.703881 0.123225 0.360498 0.496516 -0.789629 -0.560922 -0.569267 -0.601084 -0.768840 0.627456 0.123225 0.307006 0.531257 -0.789629 -0.498169 -0.624920 -0.601084 -0.830367 0.543420 0.123225 0.249635 0.560508 -0.789629 -0.429929 -0.673690 -0.601084 -0.882748 0.453399 0.123225 0.189515 0.583584 -0.789629 -0.356954 -0.715040 -0.601084 -0.925406 0.358384 0.123225 0.127308 0.600233 -0.789629 -0.280795 -0.748233 -0.601084 -0.957611 0.260379 0.123225 0.064308 0.610206 -0.789629 -0.200829 -0.773541 -0.601084 -0.979626 0.158580 0.123225 0.000000 0.613585 -0.789629 -0.118650 -0.790329 -0.601084 -0.990851 0.055035 0.123225 -0.064308 0.610206 -0.789629 -0.035963 -0.798376 -0.601084 -0.991211 -0.048125 0.123225 -0.127308 0.600233 -0.789629 0.047911 -0.797748 -0.601084 -0.980708 -0.151746 0.123225 -0.189515 0.583584 -0.789629 0.131257 -0.788333 -0.601084 -0.959403 -0.253696 0.123225 -0.249635 0.560508 -0.789629 0.213157 -0.770235 -0.601084 -0.927530 -0.352851 0.123225 -0.307006 0.531257 -0.789629 0.291965 -0.743945 -0.601084 -0.885888 -0.447234 0.123225 -0.360498 0.496516 -0.789629 0.368328 -0.709248 -0.601084 -0.834136 -0.537618 0.123225 -0.410551 0.455998 -0.789629 0.440634 -0.666738 -0.601084 -0.773195 -0.622081 0.123225 -0.456082 0.410458 -0.789629 0.507469 -0.617392 -0.601084 -0.704438 -0.698987 0.123225 -0.496228 0.360893 -0.789629 0.569381 -0.560806 -0.601084 -0.627299 -0.768967 0.123225 -0.531320 0.306897 -0.789629 0.625022 -0.498042 -0.601084 -0.543251 -0.830478 0.123225 -0.560558 0.249521 -0.789629 0.673778 -0.429792 -0.601084 -0.453219 -0.882841 0.123225 -0.583623 0.189396 -0.789629 0.714755 -0.357523 -0.601084 -0.359121 -0.925120 0.123225 -0.600131 0.127786 -0.789629 0.748290 -0.280643 -0.601084 -0.260184 -0.957664 0.123225 -0.610219 0.064184 -0.789629 -0.157085 0.963472 0.216902 0.564629 0.267810 -0.780687 -0.810258 -0.000165 -0.586073 -0.257199 0.941702 0.216902 0.533451 0.325512 -0.780687 -0.805779 -0.085085 -0.586073 -0.353570 0.909913 0.216902 0.496776 0.379132 -0.780687 -0.792592 -0.168275 -0.586073 -0.446988 0.867845 0.216902 0.454305 0.429110 -0.780687 -0.770590 -0.250418 -0.586073 -0.535482 0.816218 0.216902 0.406829 0.474361 -0.780687 -0.740101 -0.329802 -0.586073 -0.617323 0.756218 0.216902 0.355386 0.514032 -0.780687 -0.701864 -0.404852 -0.586073 -0.693180 0.687354 0.216902 0.299554 0.548448 -0.780687 -0.655567 -0.476182 -0.586073 -0.761402 0.610918 0.216902 0.240423 0.576823 -0.780687 -0.602050 -0.542268 -0.586073 -0.821237 0.527753 0.216902 0.178644 0.598844 -0.780687 -0.541900 -0.602381 -0.586073 -0.871587 0.439646 0.216902 0.115511 0.614154 -0.780687 -0.476438 -0.655382 -0.586073 -0.912865 0.345876 0.216902 0.050507 0.622878 -0.780687 -0.405125 -0.701707 -0.586073 -0.944088 0.248297 0.216902 -0.015053 0.624741 -0.780687 -0.329350 -0.740302 -0.586073 -0.964763 0.148947 0.216902 -0.079828 0.619803 -0.780687 -0.250718 -0.770493 -0.586073 -0.975061 0.047013 0.216902 -0.144348 0.608023 -0.780687 -0.168584 -0.792526 -0.586073 -0.974618 -0.055440 0.216902 -0.207278 0.589546 -0.780687 -0.084593 -0.805830 -0.586073 -0.963567 -0.156496 0.216902 -0.267465 0.564793 -0.780687 -0.000330 -0.810258 -0.586073 -0.941859 -0.256623 0.216902 -0.325186 0.533650 -0.780687 0.084593 -0.805830 -0.586073 -0.909776 -0.353924 0.216902 -0.379326 0.496629 -0.780687 0.168584 -0.792526 -0.586073 -0.867671 -0.447325 0.216902 -0.429287 0.454138 -0.780687 0.250718 -0.770493 -0.586073 -0.816545 -0.534984 0.216902 -0.474113 0.407118 -0.780687 0.329350 -0.740302 -0.586073 -0.755978 -0.617617 0.216902 -0.514170 0.355186 -0.780687 0.405125 -0.701707 -0.586073 -0.687084 -0.693447 0.216902 -0.548565 0.299341 -0.780687 0.476438 -0.655382 -0.586073 -0.611383 -0.761029 0.216902 -0.576676 0.240776 -0.780687 0.541900 -0.602381 -0.586073 -0.528254 -0.820915 0.216902 -0.598735 0.179010 -0.780687 0.602050 -0.542268 -0.586073 -0.439307 -0.871758 0.216902 -0.614199 0.115272 -0.780687 0.655567 -0.476182 -0.586073 -0.345522 -0.913000 0.216902 -0.622898 0.050265 -0.780687 0.701864 -0.404852 -0.586073 -0.248874 -0.943936 0.216902 -0.624750 -0.014671 -0.780687 0.740101 -0.329802 -0.586073 -0.148572 -0.964821 0.216902 -0.619772 -0.080069 -0.780687 0.770590 -0.250418 -0.586073 -0.046633 -0.975079 0.216902 -0.607967 -0.144584 -0.780687 0.792592 -0.168275 -0.586073 0.054844 -0.974652 0.216902 -0.589672 -0.206918 -0.780687 0.805779 -0.085085 -0.586073 0.156693 -0.963536 0.216902 -0.564738 -0.267580 -0.780687 0.810258 -0.000165 -0.586073 0.256815 -0.941806 0.216902 -0.533583 -0.325295 -0.780687 0.805813 0.084757 -0.586073 0.354109 -0.909703 0.216902 -0.496551 -0.379427 -0.780687 0.792492 0.168745 -0.586073 0.446634 -0.868027 0.216902 -0.454479 -0.428925 -0.780687 0.770692 0.250104 -0.586073 0.535150 -0.816436 0.216902 -0.407022 -0.474195 -0.780687 0.740235 0.329501 -0.586073 0.617771 -0.755852 0.216902 -0.355081 -0.514243 -0.780687 0.701624 0.405268 -0.586073 0.693587 -0.686943 0.216902 -0.299229 -0.548626 -0.780687 0.655285 0.476571 -0.586073 0.761153 -0.611228 0.216902 -0.240658 -0.576725 -0.780687 0.602270 0.542023 -0.586073 0.821022 -0.528087 0.216902 -0.178888 -0.598771 -0.780687 0.542146 0.602160 -0.586073 0.871848 -0.439130 0.216902 -0.115147 -0.614222 -0.780687 0.476049 0.655664 -0.586073 0.912724 -0.346248 0.216902 -0.050761 -0.622857 -0.780687 0.405411 0.701542 -0.586073 0.943987 -0.248681 0.216902 0.014799 -0.624747 -0.780687 0.329651 0.740168 -0.586073 0.964851 -0.148375 0.216902 0.080195 -0.619756 -0.780687 0.250261 0.770641 -0.586073 0.975088 -0.046435 0.216902 0.144708 -0.607937 -0.780687 0.168114 0.792626 -0.586073 0.974640 0.055043 0.216902 0.207038 -0.589630 -0.780687 0.084921 0.805796 -0.586073 0.963504 0.156889 0.216902 0.267695 -0.564683 -0.780687 0.000000 0.810258 -0.586073 0.941754 0.257007 0.216902 0.325404 -0.533517 -0.780687 -0.084921 0.805796 -0.586073 0.909985 0.353384 0.216902 0.379031 -0.496854 -0.780687 -0.168114 0.792626 -0.586073 0.867936 0.446811 0.216902 0.429018 -0.454392 -0.780687 -0.250261 0.770641 -0.586073 0.816327 0.535316 0.216902 0.474278 -0.406925 -0.780687 -0.329651 0.740168 -0.586073 0.755726 0.617925 0.216902 0.514315 -0.354976 -0.780687 -0.405411 0.701542 -0.586073 0.687495 0.693040 0.216902 0.548387 -0.299666 -0.780687 -0.476049 0.655664 -0.586073 0.611073 0.761278 0.216902 0.576774 -0.240541 -0.780687 -0.542146 0.602160 -0.586073 0.527920 0.821130 0.216902 0.598808 -0.178766 -0.780687 -0.602270 0.542023 -0.586073 0.439824 0.871498 0.216902 0.614131 -0.115636 -0.780687 -0.655285 0.476571 -0.586073 0.346062 0.912795 0.216902 0.622868 -0.050634 -0.780687 -0.701624 0.405268 -0.586073 0.248489 0.944037 0.216902 0.624744 0.014926 -0.780687 -0.740235 0.329501 -0.586073 0.148179 0.964882 0.216902 0.619739 0.080321 -0.780687 -0.770692 0.250104 -0.586073 0.047211 0.975051 0.216902 0.608052 0.144224 -0.780687 -0.792492 0.168745 -0.586073 -0.055241 0.974629 0.216902 0.589588 0.207158 -0.780687 -0.805813 0.084757 -0.586073 -0.278438 -0.923977 -0.262181 0.672943 -0.382448 0.633152 -0.685289 -0.000140 0.728272 -0.180065 -0.948071 -0.262181 0.709320 -0.309812 0.633152 -0.681500 -0.071962 0.728272 -0.080670 -0.961641 -0.262181 0.737650 -0.234502 0.633152 -0.670347 -0.142321 0.728272 0.020561 -0.964800 -0.262181 0.758165 -0.155900 0.633152 -0.651739 -0.211795 0.728272 0.121566 -0.957331 -0.262181 0.770329 -0.075580 0.633152 -0.625952 -0.278935 0.728272 0.220292 -0.939538 -0.262181 0.774013 0.004798 0.633152 -0.593613 -0.342410 0.728272 0.317549 -0.911276 -0.262181 0.769247 0.085894 0.633152 -0.554456 -0.402739 0.728272 0.411308 -0.872976 -0.262181 0.756008 0.166043 0.633152 -0.509193 -0.458632 0.728272 0.500537 -0.825060 -0.262181 0.734442 0.244364 0.633152 -0.458321 -0.509473 0.728272 0.583484 -0.768640 -0.262181 0.705105 0.319288 0.633152 -0.402955 -0.554300 0.728272 0.660830 -0.703253 -0.262181 0.667758 0.391430 0.633152 -0.342641 -0.593480 0.728272 0.730896 -0.630120 -0.262181 0.623056 0.459260 0.633152 -0.278553 -0.626122 0.728272 0.792362 -0.550839 -0.262181 0.572013 0.521459 0.633152 -0.212048 -0.651656 0.728272 0.845730 -0.464761 -0.262181 0.514210 0.578538 0.633152 -0.142582 -0.670292 0.728272 0.889782 -0.373562 -0.262181 0.450743 0.629245 0.633152 -0.071546 -0.681544 0.728272 0.923807 -0.279002 -0.262181 0.382859 0.672709 0.633152 -0.000279 -0.685289 0.728272 0.947960 -0.180644 -0.262181 0.310246 0.709130 0.633152 0.071546 -0.681544 0.728272 0.961672 -0.080296 -0.262181 0.234215 0.737741 0.633152 0.142582 -0.670292 0.728272 0.964792 0.020936 -0.262181 0.155605 0.758225 0.633152 0.212048 -0.651656 0.728272 0.957405 0.120981 -0.262181 0.076051 0.770282 0.633152 0.278553 -0.626122 0.728272 0.939453 0.220657 -0.262181 -0.005099 0.774011 0.633152 0.342641 -0.593480 0.728272 0.911152 0.317903 -0.262181 -0.086193 0.769213 0.633152 0.402955 -0.554300 0.728272 0.873227 0.410775 -0.262181 -0.165582 0.756109 0.633152 0.458321 -0.509473 0.728272 0.825365 0.500033 -0.262181 -0.243915 0.734591 0.633152 0.509193 -0.458632 0.728272 0.768413 0.583783 -0.262181 -0.319562 0.704981 0.633152 0.554456 -0.402739 0.728272 0.702996 0.661103 -0.262181 -0.391689 0.667606 0.633152 0.593613 -0.342410 0.728272 0.630567 0.730511 -0.262181 -0.458879 0.623337 0.633152 0.625952 -0.278935 0.728272 0.550531 0.792576 -0.262181 -0.521682 0.571810 0.633152 0.651739 -0.211795 0.728272 0.464431 0.845910 -0.262181 -0.578739 0.513985 0.633152 0.670347 -0.142321 0.728272 0.374106 0.889554 -0.262181 -0.628970 0.451127 0.633152 0.681500 -0.071962 0.728272 0.278814 0.923864 -0.262181 -0.672787 0.382722 0.633152 0.685289 -0.000140 0.728272 0.180451 0.947997 -0.262181 -0.709194 0.310101 0.633152 0.681529 0.071684 0.728272 0.080100 0.961689 -0.262181 -0.737789 0.234065 0.633152 0.670263 0.142719 0.728272 -0.020168 0.964808 -0.262181 -0.758101 0.156208 0.633152 0.651825 0.211529 0.728272 -0.121176 0.957381 -0.262181 -0.770298 0.075894 0.633152 0.626065 0.278680 0.728272 -0.220849 0.939408 -0.262181 -0.774010 -0.005257 0.633152 0.593410 0.342762 0.728272 -0.318089 0.911087 -0.262181 -0.769196 -0.086350 0.633152 0.554218 0.403067 0.728272 -0.410953 0.873143 -0.262181 -0.756076 -0.165735 0.633152 0.509380 0.458424 0.728272 -0.500201 0.825264 -0.262181 -0.734541 -0.244065 0.633152 0.458528 0.509286 0.728272 -0.583940 0.768294 -0.262181 -0.704916 -0.319706 0.633152 0.402626 0.554538 0.728272 -0.660543 0.703522 -0.262181 -0.667918 -0.391158 0.633152 0.342882 0.593340 0.728272 -0.730640 0.630418 -0.262181 -0.623243 -0.459006 0.633152 0.278808 0.626009 0.728272 -0.792688 0.550370 -0.262181 -0.571704 -0.521798 0.633152 0.211662 0.651782 0.728272 -0.846005 0.464259 -0.262181 -0.513867 -0.578843 0.633152 0.142185 0.670376 0.728272 -0.889630 0.373925 -0.262181 -0.450999 -0.629061 0.633152 0.071823 0.681515 0.728272 -0.923920 0.278626 -0.262181 -0.382585 -0.672865 0.633152 0.000000 0.685289 0.728272 -0.948034 0.180258 -0.262181 -0.309957 -0.709257 0.633152 -0.071823 0.681515 0.728272 -0.961625 0.080866 -0.262181 -0.234652 -0.737602 0.633152 -0.142185 0.670376 0.728272 -0.964804 -0.020365 -0.262181 -0.156054 -0.758133 0.633152 -0.211662 0.651782 0.728272 -0.957356 -0.121371 -0.262181 -0.075737 -0.770313 0.633152 -0.278808 0.626009 0.728272 -0.939363 -0.221040 -0.262181 0.005415 -0.774008 0.633152 -0.342882 0.593340 0.728272 -0.911340 -0.317363 -0.262181 0.085737 -0.769264 0.633152 -0.402626 0.554538 0.728272 -0.873059 -0.411131 -0.262181 0.165889 -0.756042 0.633152 -0.458528 0.509286 0.728272 -0.825162 -0.500369 -0.262181 0.244214 -0.734491 0.633152 -0.509380 0.458424 0.728272 -0.768759 -0.583328 -0.262181 0.319144 -0.705170 0.633152 -0.554218 0.403067 0.728272 -0.703388 -0.660687 -0.262181 0.391294 -0.667838 0.633152 -0.593410 0.342762 0.728272 -0.630269 -0.730768 -0.262181 0.459133 -0.623150 0.633152 -0.626065 0.278680 0.728272 -0.550208 -0.792800 -0.262181 0.521915 -0.571597 0.633152 -0.651825 0.211529 0.728272 -0.464933 -0.845635 -0.262181 0.578434 -0.514328 0.633152 -0.670263 0.142719 0.728272 -0.373744 -0.889706 -0.262181 0.629153 -0.450871 0.633152 -0.681529 0.071684 0.728272 0.807980 0.518408 -0.280037 0.489848 -0.855133 -0.169694 -0.327440 -0.000067 -0.944872 0.749197 0.600235 -0.280037 0.576775 -0.799084 -0.169694 -0.325629 -0.034384 -0.944872 0.682837 0.674768 -0.280037 0.656613 -0.734890 -0.169694 -0.320300 -0.068003 -0.944872 0.608356 0.742618 -0.280037 0.730019 -0.662025 -0.169694 -0.311409 -0.101198 -0.944872 0.527174 0.802289 -0.280037 0.795383 -0.581867 -0.169694 -0.299088 -0.133279 -0.944872 0.441038 0.852681 -0.280037 0.851491 -0.496153 -0.169694 -0.283636 -0.163608 -0.944872 0.349242 0.894209 -0.280037 0.898802 -0.404178 -0.169694 -0.264926 -0.192434 -0.944872 0.253599 0.925887 -0.280037 0.936212 -0.307751 -0.169694 -0.243299 -0.219140 -0.944872 0.155162 0.947367 -0.280037 0.963311 -0.207934 -0.169694 -0.218991 -0.243433 -0.944872 0.055975 0.958356 -0.280037 0.979692 -0.106807 -0.169694 -0.192537 -0.264851 -0.944872 -0.044775 0.958944 -0.280037 0.985491 -0.003540 -0.169694 -0.163718 -0.283572 -0.944872 -0.145033 0.948970 -0.280037 0.980434 0.099766 -0.169694 -0.133096 -0.299169 -0.944872 -0.242764 0.928787 -0.280037 0.964780 0.201008 -0.169694 -0.101319 -0.311370 -0.944872 -0.338771 0.898228 -0.280037 0.938399 0.301017 -0.169694 -0.068128 -0.320274 -0.944872 -0.431046 0.857775 -0.280037 0.901682 0.397710 -0.169694 -0.034185 -0.325650 -0.944872 -0.517915 0.808297 -0.280037 0.855432 0.489326 -0.169694 -0.000133 -0.327440 -0.944872 -0.599778 0.749564 -0.280037 0.799436 0.576286 -0.169694 0.034185 -0.325650 -0.944872 -0.675034 0.682575 -0.280037 0.734634 0.656899 -0.169694 0.068128 -0.320274 -0.944872 -0.742855 0.608067 -0.280037 0.661741 0.730276 -0.169694 0.101319 -0.311370 -0.944872 -0.801966 0.527664 -0.280037 0.582353 0.795027 -0.169694 0.133096 -0.299169 -0.944872 -0.852853 0.440706 -0.280037 0.495822 0.851684 -0.169694 0.163718 -0.283572 -0.944872 -0.894345 0.348894 -0.280037 0.403828 0.898959 -0.169694 0.192537 -0.264851 -0.944872 -0.925732 0.254164 -0.280037 0.308323 0.936024 -0.169694 0.218991 -0.243433 -0.944872 -0.947272 0.155741 -0.280037 0.208523 0.963183 -0.169694 0.243299 -0.219140 -0.944872 -0.958378 0.055603 -0.280037 0.106426 0.979733 -0.169694 0.264926 -0.192434 -0.944872 -0.958927 -0.045148 -0.280037 0.003157 0.985492 -0.169694 0.283636 -0.163608 -0.944872 -0.949059 -0.144453 -0.280037 -0.099167 0.980495 -0.169694 0.299088 -0.133279 -0.944872 -0.928692 -0.243126 -0.280037 -0.201384 0.964701 -0.169694 0.311409 -0.101198 -0.944872 -0.898096 -0.339120 -0.280037 -0.301382 0.938282 -0.169694 0.320300 -0.068003 -0.944872 -0.858039 -0.430522 -0.280037 -0.397159 0.901925 -0.169694 0.325629 -0.034384 -0.944872 -0.808191 -0.518079 -0.280037 -0.489500 0.855333 -0.169694 0.327440 -0.000067 -0.944872 -0.749442 -0.599930 -0.280037 -0.576449 0.799319 -0.169694 0.325643 0.034252 -0.944872 -0.682437 -0.675173 -0.280037 -0.657049 0.734501 -0.169694 0.320260 0.068193 -0.944872 -0.608658 -0.742371 -0.280037 -0.729749 0.662322 -0.169694 0.311450 0.101071 -0.944872 -0.527501 -0.802074 -0.280037 -0.795146 0.582191 -0.169694 0.299142 0.133157 -0.944872 -0.440532 -0.852942 -0.280037 -0.851785 0.495648 -0.169694 0.283539 0.163776 -0.944872 -0.348712 -0.894416 -0.280037 -0.899041 0.403645 -0.169694 0.264812 0.192591 -0.944872 -0.253976 -0.925784 -0.280037 -0.936087 0.308132 -0.169694 0.243388 0.219041 -0.944872 -0.155548 -0.947303 -0.280037 -0.963226 0.208327 -0.169694 0.219091 0.243343 -0.944872 -0.055407 -0.958389 -0.280037 -0.979755 0.106226 -0.169694 0.192380 0.264966 -0.944872 0.044385 -0.958963 -0.280037 -0.985489 0.003942 -0.169694 0.163834 0.283505 -0.944872 0.144646 -0.949029 -0.280037 -0.980475 -0.099366 -0.169694 0.133218 0.299115 -0.944872 0.243315 -0.928643 -0.280037 -0.964660 -0.201580 -0.169694 0.101135 0.311430 -0.944872 0.339303 -0.898027 -0.280037 -0.938221 -0.301573 -0.169694 0.067938 0.320314 -0.944872 0.430697 -0.857951 -0.280037 -0.901844 -0.397343 -0.169694 0.034318 0.325636 -0.944872 0.518244 -0.808086 -0.280037 -0.855233 -0.489674 -0.169694 0.000000 0.327440 -0.944872 0.600083 -0.749319 -0.280037 -0.799201 -0.576612 -0.169694 -0.034318 0.325636 -0.944872 0.674629 -0.682975 -0.280037 -0.735024 -0.656464 -0.169694 -0.067938 0.320314 -0.944872 0.742495 -0.608507 -0.280037 -0.662173 -0.729884 -0.169694 -0.101135 0.311430 -0.944872 0.802181 -0.527337 -0.280037 -0.582029 -0.795265 -0.169694 -0.133218 0.299115 -0.944872 0.853032 -0.440359 -0.280037 -0.495475 -0.851886 -0.169694 -0.163834 0.283505 -0.944872 0.894138 -0.349424 -0.280037 -0.404361 -0.898719 -0.169694 -0.192380 0.264966 -0.944872 0.925835 -0.253787 -0.280037 -0.307942 -0.936150 -0.169694 -0.219091 0.243343 -0.944872 0.947335 -0.155355 -0.280037 -0.208131 -0.963268 -0.169694 -0.243388 0.219041 -0.944872 0.958344 -0.056171 -0.280037 -0.107007 -0.979670 -0.169694 -0.264812 0.192591 -0.944872 0.958953 0.044580 -0.280037 -0.003741 -0.985490 -0.169694 -0.283539 0.163776 -0.944872 0.949000 0.144840 -0.280037 0.099566 -0.980454 -0.169694 -0.299142 0.133157 -0.944872 0.928593 0.243504 -0.280037 0.201776 -0.964619 -0.169694 -0.311450 0.101071 -0.944872 0.898297 0.338588 -0.280037 0.300826 -0.938460 -0.169694 -0.320260 0.068193 -0.944872 0.857863 0.430871 -0.280037 0.397526 -0.901763 -0.169694 -0.325643 0.034252 -0.944872 -0.534789 0.685759 0.493694 0.503750 0.727828 -0.465298 -0.678407 -0.000138 -0.734686 -0.603717 0.625933 0.493694 0.424694 0.776616 -0.465298 -0.674657 -0.071239 -0.734686 -0.665434 0.559878 0.493694 0.341776 0.816509 -0.465298 -0.663616 -0.140892 -0.734686 -0.720449 0.487052 0.493694 0.254318 0.847832 -0.465298 -0.645194 -0.209668 -0.734686 -0.767527 0.408861 0.493694 0.164059 0.869817 -0.465298 -0.619666 -0.276134 -0.734686 -0.805825 0.326973 0.493694 0.072874 0.882149 -0.465298 -0.587652 -0.338972 -0.734686 -0.835656 0.240716 0.493694 -0.019983 0.884928 -0.465298 -0.548889 -0.398695 -0.734686 -0.856283 0.151808 0.493694 -0.112620 0.877960 -0.465298 -0.504080 -0.454026 -0.734686 -0.867477 0.061227 0.493694 -0.204016 0.861322 -0.465298 -0.453718 -0.504357 -0.734686 -0.869146 -0.029159 0.493694 -0.292330 0.835488 -0.465298 -0.398908 -0.548734 -0.734686 -0.861304 -0.120091 0.493694 -0.378285 0.800249 -0.465298 -0.339200 -0.587520 -0.734686 -0.843974 -0.209701 0.493694 -0.460073 0.756195 -0.465298 -0.275756 -0.619835 -0.734686 -0.817644 -0.296183 0.493694 -0.536090 0.704347 -0.465298 -0.209919 -0.645113 -0.734686 -0.782099 -0.380246 0.493694 -0.606958 0.644282 -0.465298 -0.141151 -0.663561 -0.734686 -0.737939 -0.460122 0.493694 -0.671141 0.577120 -0.465298 -0.070827 -0.674700 -0.734686 -0.686086 -0.534370 0.493694 -0.727520 0.504194 -0.465298 -0.000276 -0.678407 -0.734686 -0.626302 -0.603334 0.493694 -0.776357 0.425168 -0.465298 0.070827 -0.674700 -0.734686 -0.559619 -0.665652 0.493694 -0.816642 0.341459 -0.465298 0.141151 -0.663561 -0.734686 -0.486771 -0.720638 0.493694 -0.847931 0.253988 -0.465298 0.209919 -0.645113 -0.734686 -0.409330 -0.767277 0.493694 -0.869717 0.164590 -0.465298 0.275756 -0.619835 -0.734686 -0.326660 -0.805952 0.493694 -0.882177 0.072531 -0.465298 0.339200 -0.587520 -0.734686 -0.240391 -0.835750 0.493694 -0.884921 -0.020327 -0.465298 0.398908 -0.548734 -0.734686 -0.152331 -0.856190 0.493694 -0.878029 -0.112083 -0.465298 0.453718 -0.504357 -0.734686 -0.061757 -0.867440 0.493694 -0.861446 -0.203490 -0.465298 0.504080 -0.454026 -0.734686 0.029497 -0.869135 0.493694 -0.835375 -0.292655 -0.465298 0.548889 -0.398695 -0.734686 0.120426 -0.861257 0.493694 -0.800102 -0.378596 -0.465298 0.587652 -0.338972 -0.734686 0.209185 -0.844102 0.493694 -0.756476 -0.459611 -0.465298 0.619666 -0.276134 -0.734686 0.296501 -0.817529 0.493694 -0.704139 -0.536364 -0.465298 0.645194 -0.209668 -0.734686 0.380551 -0.781951 0.493694 -0.644046 -0.607209 -0.465298 0.663616 -0.140892 -0.734686 0.459671 -0.738220 0.493694 -0.577530 -0.670788 -0.465298 0.674657 -0.071239 -0.734686 0.534510 -0.685977 0.493694 -0.504046 -0.727623 -0.465298 0.678407 -0.000138 -0.734686 0.603462 -0.626179 0.493694 -0.425010 -0.776443 -0.465298 0.674686 0.070965 -0.734686 0.665766 -0.559483 0.493694 -0.341292 -0.816711 -0.465298 0.663532 0.141286 -0.734686 0.720250 -0.487345 0.493694 -0.254663 -0.847729 -0.465298 0.645280 0.209405 -0.734686 0.767361 -0.409174 0.493694 -0.164413 -0.869751 -0.465298 0.619779 0.275882 -0.734686 0.806019 -0.326495 0.493694 -0.072351 -0.882192 -0.465298 0.587451 0.339320 -0.734686 0.835799 -0.240221 0.493694 0.020507 -0.884916 -0.465298 0.548653 0.399020 -0.734686 0.856221 -0.152156 0.493694 0.112262 -0.878006 -0.465298 0.504265 0.453821 -0.734686 0.867452 -0.061580 0.493694 0.203665 -0.861405 -0.465298 0.453924 0.504172 -0.734686 0.869129 0.029674 0.493694 0.292825 -0.835315 -0.465298 0.398583 0.548970 -0.734686 0.861352 0.119740 0.493694 0.377959 -0.800403 -0.465298 0.339439 0.587382 -0.734686 0.844059 0.209357 0.493694 0.459765 -0.756382 -0.465298 0.276008 0.619723 -0.734686 0.817468 0.296667 0.493694 0.536507 -0.704030 -0.465298 0.209537 0.645237 -0.734686 0.781873 0.380710 0.493694 0.607340 -0.643922 -0.465298 0.140757 0.663644 -0.734686 0.738126 0.459821 0.493694 0.670906 -0.577394 -0.465298 0.071102 0.674671 -0.734686 0.685868 0.534650 0.493694 0.727726 -0.503898 -0.465298 0.000000 0.678407 -0.734686 0.626056 0.603589 0.493694 0.776530 -0.424852 -0.465298 -0.071102 0.674671 -0.734686 0.560013 0.665320 0.493694 0.816439 -0.341943 -0.465298 -0.140757 0.663644 -0.734686 0.487198 0.720350 0.493694 0.847781 -0.254491 -0.465298 -0.209537 0.645237 -0.734686 0.409017 0.767444 0.493694 0.869784 -0.164236 -0.465298 -0.276008 0.619723 -0.734686 0.326331 0.806085 0.493694 0.882207 -0.072172 -0.465298 -0.339439 0.587382 -0.734686 0.240886 0.835607 0.493694 0.884932 0.019803 -0.465298 -0.398583 0.548970 -0.734686 0.151982 0.856252 0.493694 0.877983 0.112441 -0.465298 -0.453924 0.504172 -0.734686 0.061403 0.867465 0.493694 0.861363 0.203840 -0.465298 -0.504265 0.453821 -0.734686 -0.028982 0.869152 0.493694 0.835548 0.292159 -0.465298 -0.548653 0.399020 -0.734686 -0.119916 0.861328 0.493694 0.800326 0.378122 -0.465298 -0.587451 0.339320 -0.734686 -0.209529 0.844016 0.493694 0.756288 0.459919 -0.465298 -0.619779 0.275882 -0.734686 -0.296834 0.817408 0.493694 0.703920 0.536651 -0.465298 -0.645280 0.209405 -0.734686 -0.380087 0.782176 0.493694 0.644406 0.606827 -0.465298 -0.663532 0.141286 -0.734686 -0.459972 0.738033 0.493694 0.577257 0.671023 -0.465298 -0.674686 0.070965 -0.734686 0.051844 -0.983184 0.175106 0.278090 0.182620 0.943036 -0.959155 -0.000195 0.282881 0.154603 -0.972335 0.175106 0.257418 0.210760 0.943036 -0.953852 -0.100721 0.282881 0.254708 -0.951032 0.175106 0.234148 0.236344 0.943036 -0.938242 -0.199198 0.282881 0.352980 -0.919099 0.175106 0.208088 0.259583 0.943036 -0.912198 -0.296436 0.282881 0.447365 -0.877042 0.175106 0.179735 0.279962 0.943036 -0.876105 -0.390408 0.282881 0.535996 -0.825861 0.175106 0.149701 0.297109 0.943036 -0.830842 -0.479249 0.282881 0.619600 -0.765137 0.175106 0.117737 0.311162 0.943036 -0.776038 -0.563688 0.282881 0.696379 -0.695984 0.175106 0.084477 0.321788 0.943036 -0.712685 -0.641918 0.282881 0.765488 -0.619166 0.175106 0.050286 0.328869 0.943036 -0.641482 -0.713077 0.282881 0.825629 -0.536353 0.175106 0.015873 0.332313 0.943036 -0.563990 -0.775818 0.282881 0.877296 -0.446867 0.175106 -0.019043 0.332146 0.943036 -0.479572 -0.830656 0.282881 0.919299 -0.352459 0.175106 -0.053749 0.328321 0.943036 -0.389873 -0.876343 0.282881 0.950921 -0.255120 0.175106 -0.087543 0.320967 0.943036 -0.296791 -0.912082 0.282881 0.972423 -0.154051 0.175106 -0.120700 0.310025 0.943036 -0.199563 -0.938165 0.282881 0.983213 -0.051286 0.175106 -0.152528 0.295667 0.943036 -0.100138 -0.953913 0.282881 0.983215 0.051243 0.175106 -0.182450 0.278201 0.943036 -0.000391 -0.959155 0.282881 0.972429 0.154009 0.175106 -0.210602 0.257547 0.943036 0.100138 -0.953913 0.282881 0.950933 0.255078 0.175106 -0.236435 0.234056 0.943036 0.199563 -0.938165 0.282881 0.918961 0.353338 0.175106 -0.259664 0.207987 0.943036 0.296791 -0.912082 0.282881 0.877315 0.446829 0.175106 -0.279853 0.179907 0.943036 0.389873 -0.876343 0.282881 0.825653 0.536317 0.175106 -0.297167 0.149585 0.943036 0.479572 -0.830656 0.282881 0.764896 0.619897 0.175106 -0.311208 0.117616 0.943036 0.563990 -0.775818 0.282881 0.696409 0.695954 0.175106 -0.321736 0.084673 0.943036 0.641482 -0.713077 0.282881 0.619633 0.765110 0.175106 -0.328839 0.050487 0.943036 0.712685 -0.641918 0.282881 0.536032 0.825838 0.175106 -0.332319 0.015744 0.943036 0.776038 -0.563688 0.282881 0.446526 0.877469 0.175106 -0.332139 -0.019172 0.943036 0.830842 -0.479249 0.282881 0.353021 0.919083 0.175106 -0.328354 -0.053549 0.943036 0.876105 -0.390408 0.282881 0.254750 0.951021 0.175106 -0.320933 -0.087668 0.943036 0.912198 -0.296436 0.282881 0.153673 0.972483 0.175106 -0.309978 -0.120821 0.943036 0.938242 -0.199198 0.282881 0.051887 0.983181 0.175106 -0.295760 -0.152348 0.943036 0.953852 -0.100721 0.282881 -0.051443 0.983205 0.175106 -0.278164 -0.182506 0.943036 0.959155 -0.000195 0.282881 -0.154207 0.972398 0.175106 -0.257504 -0.210655 0.943036 0.953893 0.100332 0.282881 -0.255272 0.950881 0.175106 -0.234008 -0.236483 0.943036 0.938124 0.199754 0.282881 -0.352606 0.919243 0.175106 -0.208193 -0.259498 0.943036 0.912318 0.296064 0.282881 -0.447007 0.877224 0.175106 -0.179849 -0.279889 0.943036 0.876264 0.390051 0.282881 -0.536485 0.825543 0.175106 -0.149525 -0.297197 0.943036 0.830558 0.479742 0.282881 -0.620053 0.764769 0.175106 -0.117553 -0.311232 0.943036 0.775703 0.564148 0.282881 -0.696096 0.696268 0.175106 -0.084608 -0.321753 0.943036 0.712946 0.641628 0.282881 -0.765236 0.619477 0.175106 -0.050420 -0.328849 0.943036 0.641773 0.712816 0.282881 -0.825947 0.535863 0.175106 -0.015676 -0.332322 0.943036 0.563530 0.776152 0.282881 -0.877114 0.447224 0.175106 0.018908 -0.332154 0.943036 0.479911 0.830460 0.282881 -0.919155 0.352834 0.175106 0.053616 -0.328343 0.943036 0.390230 0.876185 0.282881 -0.951073 0.254556 0.175106 0.087733 -0.320915 0.943036 0.296250 0.912258 0.282881 -0.972514 0.153475 0.175106 0.120884 -0.309953 0.943036 0.199007 0.938283 0.282881 -0.983192 0.051687 0.175106 0.152408 -0.295729 0.943036 0.100526 0.953873 0.282881 -0.983194 -0.051644 0.175106 0.182563 -0.278127 0.943036 0.000000 0.959155 0.282881 -0.972367 -0.154405 0.175106 0.210707 -0.257461 0.943036 -0.100526 0.953873 0.282881 -0.951084 -0.254515 0.175106 0.236297 -0.234196 0.943036 -0.199007 0.938283 0.282881 -0.919171 -0.352793 0.175106 0.259541 -0.208141 0.943036 -0.296250 0.912258 0.282881 -0.877133 -0.447186 0.175106 0.279926 -0.179792 0.943036 -0.390230 0.876185 0.282881 -0.825434 -0.536653 0.175106 0.297228 -0.149464 0.943036 -0.479911 0.830460 0.282881 -0.765263 -0.619444 0.175106 0.311138 -0.117801 0.943036 -0.563530 0.776152 0.282881 -0.696126 -0.696237 0.175106 0.321771 -0.084542 0.943036 -0.641773 0.712816 0.282881 -0.619321 -0.765362 0.175106 0.328859 -0.050353 0.943036 -0.712946 0.641628 0.282881 -0.536521 -0.825520 0.175106 0.332310 -0.015941 0.943036 -0.775703 0.564148 0.282881 -0.447046 -0.877205 0.175106 0.332150 0.018975 0.943036 -0.830558 0.479742 0.282881 -0.352646 -0.919227 0.175106 0.328332 0.053682 0.943036 -0.876264 0.390051 0.282881 -0.254363 -0.951124 0.175106 0.320898 0.087798 0.943036 -0.912318 0.296064 0.282881 -0.154250 -0.972391 0.175106 0.310049 0.120637 0.943036 -0.938124 0.199754 0.282881 -0.051486 -0.983202 0.175106 0.295698 0.152468 0.943036 -0.953893 0.100332 0.282881 -0.432796 0.810875 0.393916 0.599521 0.585219 -0.545979 -0.673248 -0.000137 -0.739417 -0.515398 0.761049 0.393916 0.534884 0.644830 -0.545979 -0.669526 -0.070698 -0.739417 -0.591620 0.703432 0.393916 0.465052 0.696874 -0.545979 -0.658569 -0.139821 -0.739417 -0.662086 0.637552 0.393916 0.389453 0.741777 -0.545979 -0.640288 -0.208073 -0.739417 -0.725260 0.564649 0.393916 0.309565 0.778509 -0.545979 -0.614954 -0.274034 -0.739417 -0.779959 0.486307 0.393916 0.227073 0.806439 -0.545979 -0.583183 -0.336394 -0.739417 -0.826632 0.401884 0.393916 0.141302 0.825797 -0.545979 -0.544714 -0.395663 -0.739417 -0.864199 0.313034 0.393916 0.053975 0.836058 -0.545979 -0.500246 -0.450573 -0.739417 -0.892248 0.220735 0.393916 -0.033948 0.837111 -0.545979 -0.450268 -0.500521 -0.739417 -0.910342 0.126916 0.393916 -0.120667 0.829063 -0.545979 -0.395874 -0.544560 -0.739417 -0.918630 0.030807 0.393916 -0.206894 0.811851 -0.545979 -0.336620 -0.583052 -0.739417 -0.916800 -0.065642 0.393916 -0.290843 0.785695 -0.545979 -0.273658 -0.615121 -0.739417 -0.905032 -0.160463 0.393916 -0.370836 0.751257 -0.545979 -0.208323 -0.640207 -0.739417 -0.883230 -0.254433 0.393916 -0.447531 0.708253 -0.545979 -0.140077 -0.658514 -0.739417 -0.851699 -0.345600 0.393916 -0.519296 0.657448 -0.545979 -0.070289 -0.669569 -0.739417 -0.811139 -0.432300 0.393916 -0.584853 0.599878 -0.545979 -0.000274 -0.673248 -0.739417 -0.761364 -0.514933 0.393916 -0.644503 0.535277 -0.545979 0.070289 -0.669569 -0.739417 -0.703202 -0.591893 0.393916 -0.697055 0.464781 -0.545979 0.140077 -0.658514 -0.739417 -0.637294 -0.662334 0.393916 -0.741928 0.389165 -0.545979 0.208323 -0.640207 -0.739417 -0.565093 -0.724914 0.393916 -0.778320 0.310041 -0.545979 0.273658 -0.615121 -0.739417 -0.486004 -0.780148 0.393916 -0.806528 0.226760 -0.545979 0.336620 -0.583052 -0.739417 -0.401562 -0.826788 0.393916 -0.825852 0.140981 -0.545979 0.395874 -0.544560 -0.739417 -0.313562 -0.864008 0.393916 -0.836025 0.054485 -0.545979 0.450268 -0.500521 -0.739417 -0.221280 -0.892113 0.393916 -0.837131 -0.033436 -0.545979 0.500246 -0.450573 -0.739417 -0.126562 -0.910392 0.393916 -0.829016 -0.120990 -0.545979 0.544714 -0.395663 -0.739417 -0.030449 -0.918642 0.393916 -0.811770 -0.207210 -0.545979 0.583183 -0.336394 -0.739417 0.065082 -0.916840 0.393916 -0.785873 -0.290362 -0.545979 0.614954 -0.274034 -0.739417 0.160815 -0.904969 0.393916 -0.751113 -0.371128 -0.545979 0.640288 -0.208073 -0.739417 0.254776 -0.883131 0.393916 -0.708079 -0.447806 -0.545979 0.658569 -0.139821 -0.739417 0.345080 -0.851910 0.393916 -0.657765 -0.518894 -0.545979 0.669526 -0.070698 -0.739417 0.432466 -0.811051 0.393916 -0.599759 -0.584975 -0.545979 0.673248 -0.000137 -0.739417 0.515088 -0.761259 0.393916 -0.535146 -0.644612 -0.545979 0.669554 0.070425 -0.739417 0.592036 -0.703081 0.393916 -0.464639 -0.697149 -0.545979 0.658486 0.140211 -0.739417 0.661826 -0.637822 0.393916 -0.389756 -0.741618 -0.545979 0.640372 0.207813 -0.739417 0.725030 -0.564945 0.393916 -0.309882 -0.778383 -0.545979 0.615065 0.273784 -0.739417 0.780247 -0.485845 0.393916 -0.226595 -0.806574 -0.545979 0.582983 0.336739 -0.739417 0.826870 -0.401394 0.393916 -0.140813 -0.825880 -0.545979 0.544480 0.395985 -0.739417 0.864072 -0.313386 0.393916 -0.054315 -0.836036 -0.545979 0.500430 0.450370 -0.739417 0.892158 -0.221099 0.393916 0.033607 -0.837124 -0.545979 0.450472 0.500338 -0.739417 0.910417 -0.126377 0.393916 0.121158 -0.828992 -0.545979 0.395552 0.544795 -0.739417 0.918618 -0.031181 0.393916 0.206563 -0.811935 -0.545979 0.336858 0.582915 -0.739417 0.916826 0.065269 0.393916 0.290522 -0.785814 -0.545979 0.273909 0.615009 -0.739417 0.904936 0.160999 0.393916 0.371281 -0.751037 -0.545979 0.207943 0.640330 -0.739417 0.883079 0.254956 0.393916 0.447951 -0.707988 -0.545979 0.139687 0.658597 -0.739417 0.851840 0.345253 0.393916 0.519028 -0.657660 -0.545979 0.070561 0.669540 -0.739417 0.810963 0.432631 0.393916 0.585097 -0.599640 -0.545979 0.000000 0.673248 -0.739417 0.761154 0.515243 0.393916 0.644721 -0.535015 -0.545979 -0.070561 0.669540 -0.739417 0.703553 0.591476 0.393916 0.696779 -0.465194 -0.545979 -0.139687 0.658597 -0.739417 0.637687 0.661956 0.393916 0.741697 -0.389604 -0.545979 -0.207943 0.640330 -0.739417 0.564797 0.725145 0.393916 0.778446 -0.309724 -0.545979 -0.273909 0.615009 -0.739417 0.485686 0.780346 0.393916 0.806620 -0.226431 -0.545979 -0.336858 0.582915 -0.739417 0.402052 0.826550 0.393916 0.825768 -0.141470 -0.545979 -0.395552 0.544795 -0.739417 0.313210 0.864136 0.393916 0.836047 -0.054145 -0.545979 -0.450472 0.500338 -0.739417 0.220917 0.892203 0.393916 0.837118 0.033777 -0.545979 -0.500430 0.450370 -0.739417 0.127101 0.910316 0.393916 0.829088 0.120498 -0.545979 -0.544480 0.395985 -0.739417 0.030994 0.918624 0.393916 0.811893 0.206729 -0.545979 -0.582983 0.336739 -0.739417 -0.065455 0.916813 0.393916 0.785755 0.290682 -0.545979 -0.615065 0.273784 -0.739417 -0.161183 0.904904 0.393916 0.750962 0.371434 -0.545979 -0.640372 0.207813 -0.739417 -0.254253 0.883281 0.393916 0.708345 0.447387 -0.545979 -0.658486 0.140211 -0.739417 -0.345427 0.851769 0.393916 0.657554 0.519162 -0.545979 -0.669554 0.070425 -0.739417 0.866450 -0.356963 0.349059 0.331074 0.934119 0.133465 -0.373705 -0.000076 0.927548 0.899090 -0.264187 0.349059 0.231348 0.963673 0.133465 -0.371639 -0.039243 0.927548 0.921658 -0.169423 0.349059 0.130057 0.982483 0.133465 -0.365557 -0.077611 0.927548 0.934339 -0.071893 0.349059 0.026369 0.990703 0.133465 -0.355409 -0.115497 0.927548 0.936728 0.026428 0.349059 -0.077609 0.988010 0.133465 -0.341347 -0.152110 0.927548 0.928923 0.123530 0.349059 -0.179758 0.974615 0.133465 -0.323712 -0.186725 0.927548 0.910860 0.220207 0.349059 -0.280914 0.950408 0.133465 -0.302359 -0.219623 0.927548 0.882765 0.314459 0.349059 -0.378976 0.915731 0.133465 -0.277675 -0.250103 0.927548 0.844945 0.405247 0.349059 -0.472864 0.870969 0.133465 -0.249934 -0.277828 0.927548 0.798310 0.490773 0.349059 -0.560727 0.817173 0.133465 -0.219741 -0.302273 0.927548 0.742477 0.571739 0.349059 -0.643285 0.753905 0.133465 -0.186850 -0.323639 0.927548 0.678465 0.646407 0.349059 -0.718756 0.682332 0.133465 -0.151902 -0.341440 0.927548 0.607694 0.713348 0.349059 -0.785707 0.604029 0.133465 -0.115635 -0.355364 0.927548 0.529584 0.773110 0.349059 -0.844687 0.518355 0.133465 -0.077754 -0.365527 0.927548 0.445639 0.824356 0.349059 -0.894362 0.426971 0.133465 -0.039016 -0.371663 0.927548 0.357492 0.866231 0.349059 -0.933916 0.331644 0.133465 -0.000152 -0.373705 0.927548 0.264736 0.898928 0.349059 -0.963531 0.231937 0.133465 0.039016 -0.371663 0.927548 0.169064 0.921724 0.349059 -0.982533 0.129674 0.133465 0.077754 -0.365527 0.927548 0.071530 0.934367 0.349059 -0.990713 0.025984 0.133465 0.115635 -0.355364 0.927548 -0.025856 0.936744 0.349059 -0.988057 -0.077005 0.133465 0.151902 -0.341440 0.927548 -0.123891 0.928875 0.349059 -0.974545 -0.180137 0.133465 0.186850 -0.323639 0.927548 -0.220561 0.910775 0.349059 -0.950298 -0.281284 0.133465 0.219741 -0.302273 0.927548 -0.313920 0.882956 0.349059 -0.915963 -0.378417 0.133465 0.249934 -0.277828 0.927548 -0.404731 0.845193 0.349059 -0.871257 -0.472332 0.133465 0.277675 -0.250103 0.927548 -0.491084 0.798119 0.349059 -0.816955 -0.561045 0.133465 0.302359 -0.219623 0.927548 -0.572028 0.742254 0.349059 -0.753654 -0.643578 0.133465 0.323712 -0.186725 0.927548 -0.645993 0.678860 0.349059 -0.682771 -0.718339 0.133465 0.341347 -0.152110 0.927548 -0.713584 0.607417 0.349059 -0.603723 -0.785942 0.133465 0.355409 -0.115497 0.927548 -0.773316 0.529283 0.349059 -0.518026 -0.844888 0.133465 0.365557 -0.077611 0.927548 -0.824084 0.446143 0.349059 -0.427517 -0.894101 0.133465 0.371639 -0.039243 0.927548 -0.866304 0.357316 0.349059 -0.331454 -0.933984 0.133465 0.373705 -0.000076 0.927548 -0.898982 0.264553 0.349059 -0.231741 -0.963578 0.133465 0.371655 0.039091 0.927548 -0.921758 0.168876 0.349059 -0.129474 -0.982560 0.133465 0.365511 0.077828 0.927548 -0.934309 0.072274 0.349059 -0.026773 -0.990692 0.133465 0.355456 0.115352 0.927548 -0.936739 -0.026047 0.349059 0.077206 -0.988042 0.133465 0.341409 0.151971 0.927548 -0.928850 -0.124080 0.349059 0.180335 -0.974508 0.133465 0.323601 0.186916 0.927548 -0.910730 -0.220747 0.349059 0.281477 -0.950241 0.133465 0.302229 0.219803 0.927548 -0.882893 -0.314099 0.349059 0.378603 -0.915886 0.133465 0.277777 0.249990 0.927548 -0.845110 -0.404903 0.349059 0.472510 -0.871161 0.133465 0.250047 0.277726 0.927548 -0.798019 -0.491246 0.349059 0.561211 -0.816841 0.133465 0.219562 0.302403 0.927548 -0.742710 -0.571437 0.349059 0.642977 -0.754167 0.133465 0.186982 0.323563 0.927548 -0.678729 -0.646131 0.349059 0.718478 -0.682624 0.133465 0.152041 0.341378 0.927548 -0.607271 -0.713708 0.349059 0.786065 -0.603563 0.133465 0.115425 0.355433 0.927548 -0.529125 -0.773424 0.349059 0.844994 -0.517854 0.133465 0.077537 0.365573 0.927548 -0.445975 -0.824175 0.349059 0.894188 -0.427335 0.133465 0.039167 0.371647 0.927548 -0.357140 -0.866377 0.349059 0.934051 -0.331264 0.133465 0.000000 0.373705 0.927548 -0.264370 -0.899036 0.349059 0.963626 -0.231544 0.133465 -0.039167 0.371647 0.927548 -0.169610 -0.921624 0.349059 0.982456 -0.130257 0.133465 -0.077537 0.365573 0.927548 -0.072083 -0.934324 0.349059 0.990697 -0.026571 0.133465 -0.115425 0.355433 0.927548 0.026237 -0.936733 0.349059 0.988026 0.077408 0.133465 -0.152041 0.341378 0.927548 0.124269 -0.928824 0.349059 0.974472 0.180534 0.133465 -0.186982 0.323563 0.927548 0.220021 -0.910905 0.349059 0.950465 0.280721 0.133465 -0.219562 0.302403 0.927548 0.314279 -0.882829 0.349059 0.915809 0.378790 0.133465 -0.250047 0.277726 0.927548 0.405075 -0.845028 0.349059 0.871065 0.472687 0.133465 -0.277777 0.249990 0.927548 0.490611 -0.798410 0.349059 0.817288 0.560561 0.133465 -0.302229 0.219803 0.927548 0.571588 -0.742593 0.349059 0.754036 0.643131 0.133465 -0.323601 0.186916 0.927548 0.646269 -0.678597 0.349059 0.682478 0.718617 0.133465 -0.341409 0.151971 0.927548 0.713832 -0.607126 0.349059 0.603403 0.786188 0.133465 -0.355456 0.115352 0.927548 0.773002 -0.529741 0.349059 0.518527 0.844581 0.133465 -0.365511 0.077828 0.927548 0.824265 -0.445807 0.349059 0.427153 0.894275 0.133465 -0.371655 0.039091 0.927548 0.183552 -0.980700 0.067345 0.920564 0.195516 0.338135 -0.344776 -0.000070 0.938685 0.285326 -0.956062 0.067345 0.895003 0.290921 0.338135 -0.342870 -0.036205 0.938685 0.383035 -0.921276 0.067345 0.859966 0.382262 0.338135 -0.337259 -0.071603 0.938685 0.477482 -0.876057 0.067345 0.815166 0.470287 0.338135 -0.327897 -0.106556 0.938685 0.566669 -0.821189 0.067345 0.761387 0.553132 0.338135 -0.314923 -0.140335 0.938685 0.648857 -0.757924 0.067345 0.699851 0.629185 0.338135 -0.298653 -0.172270 0.938685 0.724719 -0.685745 0.067345 0.630053 0.699069 0.338135 -0.278953 -0.202622 0.938685 0.792599 -0.606013 0.067345 0.553316 0.761253 0.338135 -0.256180 -0.230742 0.938685 0.851748 -0.519605 0.067345 0.470484 0.815052 0.338135 -0.230586 -0.256321 0.938685 0.901088 -0.428375 0.067345 0.383329 0.859491 0.338135 -0.202731 -0.278874 0.938685 0.941022 -0.331575 0.067345 0.291137 0.894933 0.338135 -0.172386 -0.298586 0.938685 0.970591 -0.231123 0.067345 0.195738 0.920517 0.338135 -0.140143 -0.315009 0.938685 0.989340 -0.129115 0.067345 0.099119 0.935863 0.338135 -0.106684 -0.327855 0.938685 0.997424 -0.024714 0.067345 0.000488 0.941098 0.338135 -0.071735 -0.337231 0.938685 0.994521 0.079959 0.067345 -0.098148 0.935966 0.338135 -0.035995 -0.342892 0.938685 0.980812 0.182953 0.067345 -0.194954 0.920683 0.338135 -0.000140 -0.344776 0.938685 0.956236 0.284741 0.067345 -0.290374 0.895180 0.338135 0.035995 -0.342892 0.938685 0.921127 0.383394 0.067345 -0.382596 0.859817 0.338135 0.071735 -0.337231 0.938685 0.875871 0.477823 0.067345 -0.470604 0.814982 0.338135 0.106684 -0.327855 0.938685 0.821535 0.566167 0.067345 -0.552667 0.761724 0.338135 0.140143 -0.315009 0.938685 0.757672 0.649152 0.067345 -0.629457 0.699606 0.338135 0.172386 -0.298586 0.938685 0.685463 0.724986 0.067345 -0.699314 0.629781 0.338135 0.202731 -0.278874 0.938685 0.606497 0.792229 0.067345 -0.760915 0.553781 0.338135 0.230586 -0.256321 0.938685 0.520125 0.851431 0.067345 -0.814765 0.470981 0.338135 0.256180 -0.230742 0.938685 0.428025 0.901255 0.067345 -0.859640 0.382994 0.338135 0.278953 -0.202622 0.938685 0.331209 0.941151 0.067345 -0.895046 0.290789 0.338135 0.298653 -0.172270 0.938685 0.231716 0.970449 0.067345 -0.920397 0.196300 0.338135 0.314923 -0.140335 0.938685 0.128730 0.989390 0.067345 -0.935902 0.098755 0.338135 0.327897 -0.106556 0.938685 0.024326 0.997433 0.067345 -0.941098 0.000122 0.338135 0.337259 -0.071603 0.938685 -0.079352 0.994569 0.067345 -0.936026 -0.097577 0.338135 0.342870 -0.036205 0.938685 -0.183153 0.980775 0.067345 -0.920644 -0.195141 0.338135 0.344776 -0.000070 0.938685 -0.284936 0.956178 0.067345 -0.895121 -0.290557 0.338135 0.342884 0.036065 0.938685 -0.383581 0.921048 0.067345 -0.859739 -0.382772 0.338135 0.337216 0.071803 0.938685 -0.477125 0.876251 0.067345 -0.815357 -0.469955 0.338135 0.327940 0.106423 0.938685 -0.566335 0.821419 0.067345 -0.761612 -0.552822 0.338135 0.314980 0.140207 0.938685 -0.649306 0.757540 0.067345 -0.699478 -0.629600 0.338135 0.298551 0.172447 0.938685 -0.725126 0.685315 0.067345 -0.629639 -0.699443 0.338135 0.278833 0.202787 0.938685 -0.792352 0.606335 0.067345 -0.553626 -0.761028 0.338135 0.256274 0.230638 0.938685 -0.851537 0.519952 0.067345 -0.470815 -0.814861 0.338135 0.230690 0.256227 0.938685 -0.901342 0.427841 0.067345 -0.382819 -0.859718 0.338135 0.202565 0.278994 0.938685 -0.940887 0.331959 0.067345 -0.291501 -0.894814 0.338135 0.172508 0.298515 0.938685 -0.970497 0.231519 0.067345 -0.196113 -0.920437 0.338135 0.140271 0.314951 0.938685 -0.989417 0.128529 0.067345 -0.098564 -0.935922 0.338135 0.106489 0.327918 0.938685 -0.997438 0.024123 0.067345 0.000070 -0.941098 0.338135 0.071535 0.337273 0.938685 -0.994553 -0.079554 0.067345 0.097767 -0.936006 0.338135 0.036135 0.342877 0.938685 -0.980738 -0.183352 0.067345 0.195329 -0.920604 0.338135 0.000000 0.344776 0.938685 -0.956120 -0.285131 0.067345 0.290739 -0.895062 0.338135 -0.036135 0.342877 0.938685 -0.921354 -0.382848 0.067345 0.382087 -0.860043 0.338135 -0.071535 0.337273 0.938685 -0.876154 -0.477303 0.067345 0.470121 -0.815261 0.338135 -0.106489 0.327918 0.938685 -0.821304 -0.566502 0.067345 0.552977 -0.761499 0.338135 -0.140271 0.314951 0.938685 -0.757407 -0.649461 0.067345 0.629742 -0.699349 0.338135 -0.172508 0.298515 0.938685 -0.685893 -0.724580 0.067345 0.698941 -0.630195 0.338135 -0.202565 0.278994 0.938685 -0.606174 -0.792476 0.067345 0.761141 -0.553471 0.338135 -0.230690 0.256227 0.938685 -0.519778 -0.851643 0.067345 0.814956 -0.470649 0.338135 -0.256274 0.230638 0.938685 -0.428559 -0.901001 0.067345 0.859412 -0.383504 0.338135 -0.278833 0.202787 0.938685 -0.331767 -0.940954 0.067345 0.894873 -0.291319 0.338135 -0.298551 0.172447 0.938685 -0.231321 -0.970544 0.067345 0.920477 -0.195926 0.338135 -0.314980 0.140207 0.938685 -0.128327 -0.989443 0.067345 0.935942 -0.098374 0.338135 -0.327940 0.106423 0.938685 -0.024917 -0.997419 0.067345 0.941097 -0.000680 0.338135 -0.337216 0.071803 0.938685 0.079757 -0.994537 0.067345 0.935986 0.097958 0.338135 -0.342884 0.036065 0.938685 0.538236 -0.752623 0.379289 0.615112 0.658451 0.433681 -0.576141 -0.000117 0.817350 0.614152 -0.692067 0.379289 0.542714 0.719293 0.433681 -0.572956 -0.060500 0.817350 0.682679 -0.624571 0.379289 0.465110 0.771747 0.433681 -0.563580 -0.119654 0.817350 0.744379 -0.549582 0.379289 0.381664 0.816244 0.433681 -0.547935 -0.178062 0.817350 0.797879 -0.468539 0.379289 0.294014 0.851749 0.433681 -0.526255 -0.234509 0.817350 0.842209 -0.383177 0.379289 0.204003 0.877670 0.433681 -0.499067 -0.287874 0.817350 0.877730 -0.292798 0.379289 0.110893 0.894217 0.433681 -0.466147 -0.338594 0.817350 0.903583 -0.199193 0.379289 0.016562 0.900914 0.433681 -0.428093 -0.385585 0.817350 0.919483 -0.103394 0.379289 -0.077951 0.897689 0.433681 -0.385323 -0.428328 0.817350 0.925249 -0.007381 0.379289 -0.170722 0.884746 0.433681 -0.338775 -0.466015 0.817350 0.920927 0.089632 0.379289 -0.262509 0.861980 0.433681 -0.288068 -0.498955 0.817350 0.906461 0.185658 0.379289 -0.351405 0.829720 0.433681 -0.234187 -0.526399 0.817350 0.882289 0.278757 0.379289 -0.435642 0.788757 0.433681 -0.178275 -0.547866 0.817350 0.848214 0.369692 0.379289 -0.515910 0.738754 0.433681 -0.119873 -0.563533 0.817350 0.804796 0.456555 0.379289 -0.590495 0.680615 0.433681 -0.060150 -0.572993 0.817350 0.752952 0.537776 0.379289 -0.658075 0.615514 0.433681 -0.000235 -0.576141 0.817350 0.692442 0.613729 0.379289 -0.718961 0.543154 0.433681 0.060150 -0.572993 0.817350 0.624306 0.682922 0.379289 -0.771928 0.464810 0.433681 0.119873 -0.563533 0.817350 0.549292 0.744592 0.379289 -0.816392 0.381346 0.433681 0.178275 -0.547866 0.817350 0.469026 0.797593 0.379289 -0.851570 0.294534 0.433681 0.234187 -0.526399 0.817350 0.382850 0.842357 0.379289 -0.877749 0.203661 0.433681 0.288068 -0.498955 0.817350 0.292456 0.877844 0.379289 -0.894260 0.110545 0.433681 0.338775 -0.466015 0.817350 0.199745 0.903461 0.379289 -0.900904 0.017113 0.433681 0.385323 -0.428328 0.817350 0.103955 0.919420 0.379289 -0.897736 -0.077403 0.433681 0.428093 -0.385585 0.817350 0.007021 0.925252 0.379289 -0.884679 -0.171066 0.433681 0.466147 -0.338594 0.817350 -0.089990 0.920892 0.379289 -0.861878 -0.262844 0.433681 0.499067 -0.287874 0.817350 -0.185105 0.906574 0.379289 -0.829935 -0.350898 0.433681 0.526255 -0.234509 0.817350 -0.279101 0.882181 0.379289 -0.788587 -0.435949 0.433681 0.547935 -0.178062 0.817350 -0.370022 0.848070 0.379289 -0.738554 -0.516197 0.433681 0.563580 -0.119654 0.817350 -0.456063 0.805075 0.379289 -0.680975 -0.590079 0.433681 0.572956 -0.060500 0.817350 -0.537929 0.752843 0.379289 -0.615380 -0.658201 0.433681 0.576141 -0.000117 0.817350 -0.613870 0.692317 0.379289 -0.543007 -0.719072 0.433681 0.572981 0.060267 0.817350 -0.683049 0.624167 0.379289 -0.464653 -0.772023 0.433681 0.563509 0.119988 0.817350 -0.744155 0.549885 0.379289 -0.381996 -0.816088 0.433681 0.548008 0.177839 0.817350 -0.797688 0.468864 0.379289 -0.294361 -0.851630 0.433681 0.526351 0.234294 0.817350 -0.842435 0.382678 0.379289 -0.203483 -0.877790 0.433681 0.498896 0.288169 0.817350 -0.877903 0.292277 0.379289 -0.110363 -0.894282 0.433681 0.465946 0.338870 0.817350 -0.903502 0.199561 0.379289 -0.016929 -0.900908 0.433681 0.428250 0.385410 0.817350 -0.919441 0.103768 0.379289 0.077586 -0.897720 0.433681 0.385498 0.428171 0.817350 -0.925253 0.006833 0.379289 0.171246 -0.884645 0.433681 0.338499 0.466216 0.817350 -0.920963 -0.089257 0.379289 0.262158 -0.862087 0.433681 0.288271 0.498838 0.817350 -0.906536 -0.185289 0.379289 0.351067 -0.829863 0.433681 0.234402 0.526303 0.817350 -0.882124 -0.279280 0.379289 0.436109 -0.788498 0.433681 0.177950 0.547971 0.817350 -0.847995 -0.370195 0.379289 0.516348 -0.738449 0.433681 0.119539 0.563604 0.817350 -0.804982 -0.456227 0.379289 0.590218 -0.680855 0.433681 0.060384 0.572968 0.817350 -0.752733 -0.538083 0.379289 0.658326 -0.615246 0.433681 0.000000 0.576141 0.817350 -0.692192 -0.614011 0.379289 0.719182 -0.542861 0.433681 -0.060384 0.572968 0.817350 -0.624710 -0.682552 0.379289 0.771652 -0.465267 0.433681 -0.119539 0.563604 0.817350 -0.549734 -0.744267 0.379289 0.816166 -0.381830 0.433681 -0.177950 0.547971 0.817350 -0.468701 -0.797784 0.379289 0.851689 -0.294187 0.433681 -0.234402 0.526303 0.817350 -0.382507 -0.842513 0.379289 0.877832 -0.203304 0.433681 -0.288271 0.498838 0.817350 -0.292976 -0.877670 0.379289 0.894194 -0.111075 0.433681 -0.338499 0.466216 0.817350 -0.199377 -0.903542 0.379289 0.900911 -0.016746 0.433681 -0.385498 0.428171 0.817350 -0.103581 -0.919462 0.379289 0.897704 0.077769 0.433681 -0.428250 0.385410 0.817350 -0.007569 -0.925247 0.379289 0.884781 0.170541 0.433681 -0.465946 0.338870 0.817350 0.089445 -0.920945 0.379289 0.862034 0.262334 0.433681 -0.498896 0.288169 0.817350 0.185474 -0.906498 0.379289 0.829792 0.351236 0.433681 -0.526351 0.234294 0.817350 0.279460 -0.882067 0.379289 0.788410 0.436270 0.433681 -0.548008 0.177839 0.817350 0.369520 -0.848290 0.379289 0.738859 0.515759 0.433681 -0.563509 0.119988 0.817350 0.456391 -0.804889 0.379289 0.680735 0.590357 0.433681 -0.572981 0.060267 0.817350 -0.808394 -0.124049 0.575422 -0.101130 0.992276 0.071839 -0.579889 -0.000118 -0.814695 -0.790941 -0.208092 0.575422 -0.204571 0.976212 0.071839 -0.576683 -0.060894 -0.814695 -0.765065 -0.289077 0.575422 -0.304809 0.949700 0.071839 -0.567246 -0.120432 -0.814695 -0.730554 -0.367669 0.575422 -0.402665 0.912524 0.071839 -0.551499 -0.179220 -0.814695 -0.687996 -0.442211 0.575422 -0.496087 0.865296 0.071839 -0.529679 -0.236034 -0.814695 -0.638371 -0.511245 0.575422 -0.583235 0.809120 0.071839 -0.502313 -0.289746 -0.814695 -0.581274 -0.575335 0.575422 -0.664824 0.743537 0.071839 -0.469179 -0.340796 -0.814695 -0.517773 -0.633088 0.575422 -0.739091 0.669764 0.071839 -0.430878 -0.388093 -0.814695 -0.448569 -0.683868 0.575422 -0.805217 0.588613 0.071839 -0.387830 -0.431114 -0.814695 -0.375151 -0.726740 0.575422 -0.861971 0.501841 0.071839 -0.340979 -0.469047 -0.814695 -0.296918 -0.762056 0.575422 -0.909821 0.408736 0.071839 -0.289941 -0.502201 -0.814695 -0.215414 -0.788978 0.575422 -0.947648 0.311129 0.071839 -0.235710 -0.529823 -0.814695 -0.132344 -0.807078 0.575422 -0.974827 0.211071 0.071839 -0.179435 -0.551430 -0.814695 -0.047028 -0.816503 0.575422 -0.991580 0.107739 0.071839 -0.120653 -0.567199 -0.814695 0.038807 -0.816935 0.575422 -0.997411 0.003221 0.071839 -0.060542 -0.576720 -0.814695 0.123555 -0.808470 0.575422 -0.992338 -0.100524 0.071839 -0.000236 -0.579889 -0.814695 0.207608 -0.791068 0.575422 -0.976337 -0.203975 0.071839 0.060542 -0.576720 -0.814695 0.289375 -0.764952 0.575422 -0.949582 -0.305178 0.071839 0.120653 -0.567199 -0.814695 0.367953 -0.730411 0.575422 -0.912367 -0.403021 0.071839 0.179435 -0.551430 -0.814695 0.441791 -0.688266 0.575422 -0.865599 -0.495558 0.071839 0.235710 -0.529823 -0.814695 0.511493 -0.638173 0.575422 -0.808894 -0.583550 0.071839 0.289941 -0.502201 -0.814695 0.575561 -0.581050 0.575422 -0.743278 -0.665114 0.071839 0.340979 -0.469047 -0.814695 0.632772 -0.518160 0.575422 -0.670215 -0.738682 0.071839 0.387830 -0.431114 -0.814695 0.683594 -0.448987 0.575422 -0.589105 -0.804857 0.071839 0.430878 -0.388093 -0.814695 0.726886 -0.374869 0.575422 -0.501506 -0.862167 0.071839 0.469179 -0.340796 -0.814695 0.762171 -0.296621 0.575422 -0.408382 -0.909980 0.071839 0.502313 -0.289746 -0.814695 0.788846 -0.215896 0.575422 -0.311708 -0.947458 0.071839 0.529679 -0.236034 -0.814695 0.807129 -0.132030 0.575422 -0.210691 -0.974909 0.071839 0.551499 -0.179220 -0.814695 0.816522 -0.046710 0.575422 -0.107353 -0.991622 0.071839 0.567246 -0.120432 -0.814695 0.816959 0.038308 0.575422 -0.003831 -0.997409 0.071839 0.576683 -0.060894 -0.814695 0.808445 0.123720 0.575422 0.100726 -0.992317 0.071839 0.579889 -0.000118 -0.814695 0.791025 0.207769 0.575422 0.204173 -0.976295 0.071839 0.576708 0.060659 -0.814695 0.764893 0.289530 0.575422 0.305372 -0.949520 0.071839 0.567174 0.120768 -0.814695 0.730704 0.367371 0.575422 0.402294 -0.912688 0.071839 0.551572 0.178995 -0.814695 0.688176 0.441931 0.575422 0.495734 -0.865498 0.071839 0.529775 0.235818 -0.814695 0.638068 0.511623 0.575422 0.583714 -0.808775 0.071839 0.502141 0.290044 -0.814695 0.580932 0.575679 0.575422 0.665265 -0.743143 0.071839 0.468977 0.341074 -0.814695 0.518031 0.632877 0.575422 0.738818 -0.670065 0.071839 0.431036 0.387917 -0.814695 0.448848 0.683685 0.575422 0.804977 -0.588941 0.071839 0.388005 0.430957 -0.814695 0.374721 0.726962 0.575422 0.862269 -0.501330 0.071839 0.340701 0.469249 -0.814695 0.297228 0.761935 0.575422 0.909654 -0.409107 0.071839 0.290146 0.502082 -0.814695 0.215735 0.788890 0.575422 0.947522 -0.311516 0.071839 0.235926 0.529727 -0.814695 0.131866 0.807156 0.575422 0.974952 -0.210493 0.071839 0.179108 0.551536 -0.814695 0.046544 0.816531 0.575422 0.991644 -0.107152 0.071839 0.120316 0.567270 -0.814695 -0.038474 0.816951 0.575422 0.997410 -0.003627 0.071839 0.060777 0.576695 -0.814695 -0.123885 0.808419 0.575422 0.992297 0.100928 0.071839 0.000000 0.579889 -0.814695 -0.207931 0.790983 0.575422 0.976254 0.204372 0.071839 -0.060777 0.576695 -0.814695 -0.288921 0.765124 0.575422 0.949762 0.304615 0.071839 -0.120316 0.567270 -0.814695 -0.367520 0.730629 0.575422 0.912606 0.402480 0.071839 -0.179108 0.551536 -0.814695 -0.442071 0.688086 0.575422 0.865397 0.495911 0.071839 -0.235926 0.529727 -0.814695 -0.511753 0.637964 0.575422 0.808656 0.583879 0.071839 -0.290146 0.502082 -0.814695 -0.575217 0.581391 0.575422 0.743672 0.664673 0.071839 -0.340701 0.469249 -0.814695 -0.632983 0.517902 0.575422 0.669914 0.738955 0.071839 -0.388005 0.430957 -0.814695 -0.683776 0.448709 0.575422 0.588777 0.805097 0.071839 -0.431036 0.387917 -0.814695 -0.726663 0.375300 0.575422 0.502017 0.861869 0.071839 -0.468977 0.341074 -0.814695 -0.761995 0.297073 0.575422 0.408922 0.909737 0.071839 -0.502141 0.290044 -0.814695 -0.788934 0.215574 0.575422 0.311323 0.947585 0.071839 -0.529775 0.235818 -0.814695 -0.807183 0.131701 0.575422 0.210294 0.974995 0.071839 -0.551572 0.178995 -0.814695 -0.816494 0.047194 0.575422 0.107941 0.991558 0.071839 -0.567174 0.120768 -0.814695 -0.816943 -0.038641 0.575422 0.003424 0.997410 0.071839 -0.576708 0.060659 -0.814695 0.855720 -0.300313 -0.421373 -0.269379 -0.953841 0.132752 -0.441790 -0.000090 -0.897119 0.882482 -0.208974 -0.421373 -0.167926 -0.976820 0.132752 -0.439347 -0.046392 -0.897119 0.899408 -0.116232 -0.421373 -0.065612 -0.988975 0.132752 -0.432157 -0.091751 -0.897119 0.906637 -0.021327 -0.421373 0.038401 -0.990405 0.132752 -0.420161 -0.136539 -0.897119 0.903879 0.073812 -0.421373 0.141991 -0.980926 0.132752 -0.403537 -0.179823 -0.897119 0.891332 0.167248 -0.421373 0.243056 -0.960885 0.132752 -0.382688 -0.220744 -0.897119 0.868895 0.259744 -0.421373 0.342425 -0.930119 0.132752 -0.357445 -0.259636 -0.897119 0.836886 0.349380 -0.421373 0.438022 -0.889108 0.132752 -0.328265 -0.295669 -0.897119 0.795660 0.435168 -0.421373 0.528795 -0.838303 0.132752 -0.295469 -0.328445 -0.897119 0.746185 0.515416 -0.421373 0.612964 -0.778878 0.132752 -0.259775 -0.357344 -0.897119 0.688056 0.590783 -0.421373 0.691221 -0.710346 0.132752 -0.220892 -0.382602 -0.897119 0.622348 0.659642 -0.421373 0.761863 -0.633989 0.132752 -0.179576 -0.403646 -0.897119 0.550506 0.720686 -0.421373 0.823563 -0.551472 0.132752 -0.136703 -0.420108 -0.897119 0.471941 0.774414 -0.421373 0.876825 -0.462120 0.132752 -0.091919 -0.432121 -0.897119 0.388178 0.819611 -0.421373 0.920429 -0.367677 0.132752 -0.046124 -0.439375 -0.897119 0.300836 0.855537 -0.421373 0.953676 -0.269961 0.132752 -0.000180 -0.441790 -0.897119 0.209513 0.882354 -0.421373 0.976717 -0.168523 0.132752 0.046124 -0.439375 -0.897119 0.115882 0.899453 -0.421373 0.989001 -0.065227 0.132752 0.091919 -0.432121 -0.897119 0.020974 0.906645 -0.421373 0.990390 0.038786 0.132752 0.136703 -0.420108 -0.897119 -0.073260 0.903924 -0.421373 0.981012 0.141392 0.132752 0.179576 -0.403646 -0.897119 -0.167594 0.891267 -0.421373 0.960791 0.243430 0.132752 0.220892 -0.382602 -0.897119 -0.260082 0.868793 -0.421373 0.929986 0.342787 0.132752 0.259775 -0.357344 -0.897119 -0.348869 0.837099 -0.421373 0.889375 0.437479 0.132752 0.295469 -0.328445 -0.897119 -0.434682 0.795925 -0.421373 0.838626 0.528283 0.132752 0.328265 -0.295669 -0.897119 -0.515706 0.745984 -0.421373 0.778640 0.613267 0.132752 0.357445 -0.259636 -0.897119 -0.591050 0.687826 -0.421373 0.710077 0.691497 0.132752 0.382688 -0.220744 -0.897119 -0.659262 0.622751 -0.421373 0.634454 0.761476 0.132752 0.403537 -0.179823 -0.897119 -0.720900 0.550226 -0.421373 0.551152 0.823777 0.132752 0.420161 -0.136539 -0.897119 -0.774597 0.471640 -0.421373 0.461778 0.877005 0.132752 0.432157 -0.091751 -0.897119 -0.819374 0.388679 -0.421373 0.368239 0.920205 0.132752 0.439347 -0.046392 -0.897119 -0.855598 0.300662 -0.421373 0.269767 0.953731 0.132752 0.441790 -0.000090 -0.897119 -0.882397 0.209333 -0.421373 0.168324 0.976752 0.132752 0.439366 0.046213 -0.897119 -0.899477 0.115699 -0.421373 0.065026 0.989014 0.132752 0.432103 0.092007 -0.897119 -0.906628 0.021696 -0.421373 -0.037997 0.990421 0.132752 0.420217 0.136368 -0.897119 -0.903909 -0.073444 -0.421373 -0.141591 0.980984 0.132752 0.403610 0.179659 -0.897119 -0.891233 -0.167776 -0.421373 -0.243626 0.960741 0.132752 0.382557 0.220970 -0.897119 -0.868740 -0.260259 -0.421373 -0.342977 0.929916 0.132752 0.357291 0.259848 -0.897119 -0.837028 -0.349039 -0.421373 -0.437660 0.889286 0.132752 0.328385 0.295536 -0.897119 -0.795837 -0.434844 -0.421373 -0.528454 0.838519 0.132752 0.295602 0.328325 -0.897119 -0.745879 -0.515858 -0.421373 -0.613426 0.778515 0.132752 0.259564 0.357498 -0.897119 -0.688296 -0.590503 -0.421373 -0.690931 0.710627 0.132752 0.221048 0.382512 -0.897119 -0.622617 -0.659389 -0.421373 -0.761605 0.634299 0.132752 0.179741 0.403573 -0.897119 -0.550079 -0.721012 -0.421373 -0.823889 0.550984 0.132752 0.136454 0.420189 -0.897119 -0.471482 -0.774693 -0.421373 -0.877099 0.461600 0.132752 0.091663 0.432176 -0.897119 -0.388512 -0.819453 -0.421373 -0.920280 0.368052 0.132752 0.046303 0.439357 -0.897119 -0.300487 -0.855659 -0.421373 -0.953786 0.269573 0.132752 0.000000 0.441790 -0.897119 -0.209153 -0.882440 -0.421373 -0.976786 0.168125 0.132752 -0.046303 0.439357 -0.897119 -0.116415 -0.899385 -0.421373 -0.988962 0.065814 0.132752 -0.091663 0.432176 -0.897119 -0.021512 -0.906632 -0.421373 -0.990413 -0.038199 0.132752 -0.136454 0.420189 -0.897119 0.073628 -0.903894 -0.421373 -0.980955 -0.141791 0.132752 -0.179741 0.403573 -0.897119 0.167957 -0.891199 -0.421373 -0.960691 -0.243821 0.132752 -0.221048 0.382512 -0.897119 0.259567 -0.868948 -0.421373 -0.930189 -0.342236 0.132752 -0.259564 0.357498 -0.897119 0.349210 -0.836957 -0.421373 -0.889197 -0.437841 0.132752 -0.295602 0.328325 -0.897119 0.435006 -0.795748 -0.421373 -0.838411 -0.528624 0.132752 -0.328385 0.295536 -0.897119 0.515264 -0.746289 -0.421373 -0.779003 -0.612806 0.132752 -0.357291 0.259848 -0.897119 0.590643 -0.688176 -0.421373 -0.710486 -0.691076 0.132752 -0.382557 0.220970 -0.897119 0.659516 -0.622482 -0.421373 -0.634144 -0.761734 0.132752 -0.403610 0.179659 -0.897119 0.721124 -0.549932 -0.421373 -0.550816 -0.824001 0.132752 -0.420217 0.136368 -0.897119 0.774318 -0.472099 -0.421373 -0.462298 -0.876731 0.132752 -0.432103 0.092007 -0.897119 0.819532 -0.388345 -0.421373 -0.367864 -0.920355 0.132752 -0.439366 0.046213 -0.897119 -0.530931 0.237397 0.813483 0.129603 0.971413 -0.198897 -0.837446 -0.000171 -0.546520 -0.552888 0.180444 0.813483 0.027079 0.979646 -0.198897 -0.832816 -0.087940 -0.546520 -0.568633 0.122072 0.813483 -0.074767 0.977164 -0.198897 -0.819187 -0.173922 -0.546520 -0.578295 0.061803 0.813483 -0.176769 0.963946 -0.198897 -0.796447 -0.258820 -0.546520 -0.581587 0.000853 0.813483 -0.276824 0.940111 -0.198897 -0.764934 -0.340868 -0.546520 -0.578534 -0.059528 0.813483 -0.372924 0.906293 -0.198897 -0.725415 -0.418436 -0.546520 -0.569109 -0.119834 0.813483 -0.465856 0.862217 -0.198897 -0.677564 -0.492160 -0.546520 -0.553415 -0.178821 0.813483 -0.553657 0.808643 -0.198897 -0.622251 -0.560463 -0.546520 -0.531625 -0.235838 0.813483 -0.635359 0.746162 -0.198897 -0.560083 -0.622593 -0.546520 -0.504270 -0.289753 0.813483 -0.709387 0.676172 -0.198897 -0.492424 -0.677373 -0.546520 -0.471124 -0.341008 0.813483 -0.776348 0.598100 -0.198897 -0.418718 -0.725252 -0.546520 -0.432790 -0.388507 0.813483 -0.834758 0.513439 -0.198897 -0.340401 -0.765142 -0.546520 -0.390119 -0.431337 0.813483 -0.883549 0.424006 -0.198897 -0.259130 -0.796346 -0.546520 -0.342763 -0.469849 0.813483 -0.923122 0.329069 -0.198897 -0.174240 -0.819119 -0.546520 -0.291632 -0.503185 0.813483 -0.952526 0.230507 -0.198897 -0.087431 -0.832869 -0.546520 -0.237721 -0.530786 0.813483 -0.971333 0.130197 -0.198897 -0.000341 -0.837446 -0.546520 -0.180782 -0.552777 0.813483 -0.979629 0.027677 -0.198897 0.087431 -0.832869 -0.546520 -0.121851 -0.568680 0.813483 -0.977135 -0.075148 -0.198897 0.174240 -0.819119 -0.546520 -0.061578 -0.578319 0.813483 -0.963877 -0.177144 -0.198897 0.259130 -0.796346 -0.546520 -0.001209 -0.581587 0.813483 -0.940280 -0.276250 -0.198897 0.340401 -0.765142 -0.546520 0.059752 -0.578511 0.813483 -0.906148 -0.373276 -0.198897 0.418718 -0.725252 -0.546520 0.120055 -0.569062 0.813483 -0.862036 -0.466191 -0.198897 0.492424 -0.677373 -0.546520 0.178483 -0.553524 0.813483 -0.808981 -0.553163 -0.198897 0.560083 -0.622593 -0.546520 0.235513 -0.531769 0.813483 -0.746550 -0.634903 -0.198897 0.622251 -0.560463 -0.546520 0.289949 -0.504157 0.813483 -0.675896 -0.709651 -0.198897 0.677564 -0.492160 -0.546520 0.341191 -0.470992 0.813483 -0.597798 -0.776581 -0.198897 0.725415 -0.418436 -0.546520 0.388243 -0.433027 0.813483 -0.513949 -0.834444 -0.198897 0.764934 -0.340868 -0.546520 0.431489 -0.389951 0.813483 -0.423662 -0.883714 -0.198897 0.796447 -0.258820 -0.546520 0.469982 -0.342581 0.813483 -0.328710 -0.923250 -0.198897 0.819187 -0.173922 -0.546520 0.503007 -0.291940 0.813483 -0.231089 -0.952385 -0.198897 0.832816 -0.087940 -0.546520 0.530834 -0.237613 0.813483 -0.129999 -0.971360 -0.198897 0.837446 -0.000171 -0.546520 0.552814 -0.180669 0.813483 -0.027478 -0.979635 -0.198897 0.832851 0.087601 -0.546520 0.568705 -0.121735 0.813483 0.075347 -0.977120 -0.198897 0.819083 0.174407 -0.546520 0.578270 -0.062039 0.813483 0.176377 -0.964018 -0.198897 0.796552 0.258496 -0.546520 0.581587 -0.001090 0.813483 0.276441 -0.940223 -0.198897 0.765073 0.340557 -0.546520 0.578498 0.059870 0.813483 0.373461 -0.906072 -0.198897 0.725167 0.418866 -0.546520 0.569037 0.120171 0.813483 0.466367 -0.861941 -0.198897 0.677273 0.492562 -0.546520 0.553488 0.178595 0.813483 0.553328 -0.808869 -0.198897 0.622479 0.560210 -0.546520 0.531721 0.235621 0.813483 0.635055 -0.746421 -0.198897 0.560337 0.622365 -0.546520 0.504098 0.290052 0.813483 0.709788 -0.675752 -0.198897 0.492022 0.677665 -0.546520 0.471263 0.340816 0.813483 0.776105 -0.598416 -0.198897 0.419014 0.725081 -0.546520 0.432948 0.388331 0.813483 0.834549 -0.513779 -0.198897 0.340712 0.765004 -0.546520 0.389863 0.431568 0.813483 0.883800 -0.423482 -0.198897 0.258658 0.796499 -0.546520 0.342485 0.470052 0.813483 0.923317 -0.328522 -0.198897 0.173755 0.819222 -0.546520 0.291837 0.503066 0.813483 0.952432 -0.230895 -0.198897 0.087770 0.832834 -0.546520 0.237505 0.530882 0.813483 0.971386 -0.129801 -0.198897 0.000000 0.837446 -0.546520 0.180556 0.552851 0.813483 0.979641 -0.027278 -0.198897 -0.087770 0.832834 -0.546520 0.122188 0.568608 0.813483 0.977179 0.074568 -0.198897 -0.173755 0.819222 -0.546520 0.061921 0.578282 0.813483 0.963982 0.176573 -0.198897 -0.258658 0.796499 -0.546520 0.000972 0.581587 0.813483 0.940167 0.276633 -0.198897 -0.340712 0.765004 -0.546520 -0.059988 0.578486 0.813483 0.905996 0.373646 -0.198897 -0.419014 0.725081 -0.546520 -0.119718 0.569133 0.813483 0.862312 0.465681 -0.198897 -0.492022 0.677665 -0.546520 -0.178708 0.553451 0.813483 0.808756 0.553492 -0.198897 -0.560337 0.622365 -0.546520 -0.235729 0.531673 0.813483 0.746292 0.635207 -0.198897 -0.622479 0.560210 -0.546520 -0.289650 0.504329 0.813483 0.676317 0.709250 -0.198897 -0.677273 0.492562 -0.546520 -0.340912 0.471194 0.813483 0.598258 0.776227 -0.198897 -0.725167 0.418866 -0.546520 -0.388419 0.432869 0.813483 0.513609 0.834653 -0.198897 -0.765073 0.340557 -0.546520 -0.431648 0.389776 0.813483 0.423302 0.883886 -0.198897 -0.796552 0.258496 -0.546520 -0.469779 0.342859 0.813483 0.329257 0.923055 -0.198897 -0.819083 0.174407 -0.546520 -0.503126 0.291735 0.813483 0.230701 0.952479 -0.198897 -0.832851 0.087601 -0.546520 0.342203 0.290615 0.893555 -0.104121 0.956840 -0.271322 -0.933839 -0.000190 0.357693 0.309860 0.324879 0.893555 -0.203831 0.940658 -0.271322 -0.928676 -0.098062 0.357693 0.274459 0.355292 0.893555 -0.300382 0.914415 -0.271322 -0.913478 -0.193941 0.357693 0.235711 0.382100 0.893555 -0.394565 0.877897 -0.271322 -0.888121 -0.288612 0.357693 0.194366 0.404700 0.893555 -0.484402 0.831709 -0.271322 -0.852981 -0.380104 0.357693 0.151303 0.422691 0.893555 -0.568126 0.776928 -0.271322 -0.808913 -0.466600 0.357693 0.106168 0.436221 0.893555 -0.646425 0.713105 -0.271322 -0.755555 -0.548810 0.357693 0.059865 0.444945 0.893555 -0.717603 0.641428 -0.271322 -0.693874 -0.624975 0.357693 0.012901 0.448769 0.893555 -0.780877 0.562685 -0.271322 -0.624551 -0.694256 0.357693 -0.033756 0.447684 0.893555 -0.835072 0.478580 -0.271322 -0.549104 -0.755341 0.357693 -0.080491 0.441680 0.893555 -0.880632 0.388423 -0.271322 -0.466915 -0.808731 0.357693 -0.126339 0.430812 0.893555 -0.916491 0.293987 -0.271322 -0.379582 -0.853213 0.357693 -0.170380 0.415368 0.893555 -0.942059 0.197255 -0.271322 -0.288957 -0.888009 0.357693 -0.212975 0.395224 0.893555 -0.957544 0.097435 -0.271322 -0.194296 -0.913403 0.357693 -0.253224 0.370726 0.893555 -0.962482 -0.003460 -0.271322 -0.097495 -0.928736 0.357693 -0.290406 0.342381 0.893555 -0.956904 -0.103536 -0.271322 -0.000380 -0.933839 0.357693 -0.324690 0.310059 0.893555 -0.940782 -0.203256 -0.271322 0.097495 -0.928736 0.357693 -0.355398 0.274321 0.893555 -0.914298 -0.300738 -0.271322 0.194296 -0.913403 0.357693 -0.382192 0.235562 0.893555 -0.877743 -0.394906 -0.271322 0.288957 -0.888009 0.357693 -0.404581 0.194613 0.893555 -0.832004 -0.483893 -0.271322 0.379582 -0.853213 0.357693 -0.422750 0.151138 0.893555 -0.776707 -0.568428 -0.271322 0.466915 -0.808731 0.357693 -0.436262 0.105999 0.893555 -0.712854 -0.646702 -0.271322 0.549104 -0.755341 0.357693 -0.444909 0.060136 0.893555 -0.641866 -0.717211 -0.271322 0.624551 -0.694256 0.357693 -0.448761 0.013176 0.893555 -0.563162 -0.780533 -0.271322 0.693874 -0.624975 0.357693 -0.447670 -0.033930 0.893555 -0.478255 -0.835258 -0.271322 0.755555 -0.548810 0.357693 -0.441649 -0.080662 0.893555 -0.388080 -0.880783 -0.271322 0.808913 -0.466600 0.357693 -0.430889 -0.126075 0.893555 -0.294547 -0.916311 -0.271322 0.852981 -0.380104 0.357693 -0.415302 -0.170541 0.893555 -0.196889 -0.942135 -0.271322 0.888121 -0.288612 0.357693 -0.395141 -0.213129 0.893555 -0.097062 -0.957582 -0.271322 0.913478 -0.193941 0.357693 -0.370880 -0.252998 0.893555 0.002872 -0.962484 -0.271322 0.928676 -0.098062 0.357693 -0.342322 -0.290475 0.893555 0.103731 -0.956882 -0.271322 0.933839 -0.000190 0.357693 -0.309993 -0.324753 0.893555 0.203448 -0.940741 -0.271322 0.928716 0.097684 0.357693 -0.274249 -0.355454 0.893555 0.300924 -0.914237 -0.271322 0.913363 0.194482 0.357693 -0.235866 -0.382004 0.893555 0.394207 -0.878057 -0.271322 0.888239 0.288250 0.357693 -0.194531 -0.404621 0.893555 0.484063 -0.831906 -0.271322 0.853136 0.379756 0.357693 -0.151052 -0.422780 0.893555 0.568587 -0.776591 -0.271322 0.808636 0.467079 0.357693 -0.105910 -0.436283 0.893555 0.646847 -0.712722 -0.271322 0.755229 0.549258 0.357693 -0.060046 -0.444921 0.893555 0.717342 -0.641720 -0.271322 0.694129 0.624692 0.357693 -0.013084 -0.448764 0.893555 0.780648 -0.563003 -0.271322 0.624834 0.694002 0.357693 0.034021 -0.447663 0.893555 0.835356 -0.478085 -0.271322 0.548656 0.755667 0.357693 0.080311 -0.441713 0.893555 0.880473 -0.388781 -0.271322 0.467244 0.808541 0.357693 0.126163 -0.430863 0.893555 0.916371 -0.294360 -0.271322 0.379930 0.853059 0.357693 0.170626 -0.415267 0.893555 0.942175 -0.196697 -0.271322 0.288431 0.888180 0.357693 0.213209 -0.395097 0.893555 0.957602 -0.096867 -0.271322 0.193755 0.913518 0.357693 0.253073 -0.370829 0.893555 0.962484 0.003068 -0.271322 0.097873 0.928696 0.357693 0.290545 -0.342263 0.893555 0.956861 0.103926 -0.271322 0.000000 0.933839 0.357693 0.324816 -0.309926 0.893555 0.940699 0.203639 -0.271322 -0.097873 0.928696 0.357693 0.355236 -0.274532 0.893555 0.914476 0.300196 -0.271322 -0.193755 0.913518 0.357693 0.382052 -0.235789 0.893555 0.877977 0.394386 -0.271322 -0.288431 0.888180 0.357693 0.404660 -0.194448 0.893555 0.831807 0.484232 -0.271322 -0.379930 0.853059 0.357693 0.422811 -0.150966 0.893555 0.776475 0.568745 -0.271322 -0.467244 0.808541 0.357693 0.436199 -0.106257 0.893555 0.713237 0.646280 -0.271322 -0.548656 0.755667 0.357693 0.444933 -0.059955 0.893555 0.641574 0.717473 -0.271322 -0.624834 0.694002 0.357693 0.448766 -0.012993 0.893555 0.562844 0.780763 -0.271322 -0.694129 0.624692 0.357693 0.447690 0.033665 0.893555 0.478750 0.834975 -0.271322 -0.755229 0.549258 0.357693 0.441696 0.080401 0.893555 0.388602 0.880552 -0.271322 -0.808636 0.467079 0.357693 0.430837 0.126251 0.893555 0.294174 0.916431 -0.271322 -0.853136 0.379756 0.357693 0.415232 0.170710 0.893555 0.196505 0.942215 -0.271322 -0.888239 0.288250 0.357693 0.395267 0.212894 0.893555 0.097630 0.957524 -0.271322 -0.913363 0.194482 0.357693 0.370777 0.253149 0.893555 -0.003264 0.962483 -0.271322 -0.928716 0.097684 0.357693 0.566303 0.696822 -0.440159 0.550286 -0.717244 -0.427489 -0.613585 -0.000125 -0.789629 0.490152 0.752337 -0.440159 0.622427 -0.655620 -0.427489 -0.610193 -0.064432 -0.789629 0.409402 0.799156 -0.440159 0.687126 -0.587462 -0.427489 -0.600207 -0.127430 -0.789629 0.323390 0.837663 -0.440159 0.744912 -0.512211 -0.427489 -0.583546 -0.189634 -0.789629 0.233816 0.866943 -0.440159 0.794493 -0.431318 -0.427489 -0.560457 -0.249749 -0.789629 0.142553 0.886532 -0.440159 0.834976 -0.346509 -0.427489 -0.531501 -0.306583 -0.789629 0.048853 0.896590 -0.440159 0.866694 -0.257089 -0.427489 -0.496442 -0.360599 -0.789629 -0.045385 0.896772 -0.440159 0.888866 -0.164837 -0.427489 -0.455915 -0.410644 -0.789629 -0.139124 0.887076 -0.440159 0.901246 -0.070770 -0.427489 -0.410365 -0.456165 -0.789629 -0.230462 0.867841 -0.440159 0.903724 0.023173 -0.427489 -0.360792 -0.496302 -0.789629 -0.320148 0.838907 -0.440159 0.896318 0.117762 -0.427489 -0.306789 -0.531382 -0.789629 -0.406309 0.800733 -0.440159 0.879039 0.211054 -0.427489 -0.249407 -0.560609 -0.789629 -0.487239 0.754227 -0.440159 0.852379 0.301169 -0.427489 -0.189861 -0.583472 -0.789629 -0.563604 0.699007 -0.440159 0.816120 0.388846 -0.427489 -0.127663 -0.600157 -0.789629 -0.633761 0.636087 -0.440159 0.770872 0.472240 -0.427489 -0.064060 -0.610232 -0.789629 -0.696476 0.566729 -0.440159 0.717580 0.549847 -0.427489 -0.000250 -0.613585 -0.789629 -0.752037 0.490612 -0.440159 0.656000 0.622027 -0.427489 0.064060 -0.610232 -0.789629 -0.799315 0.409091 -0.440159 0.587194 0.687354 -0.427489 0.127663 -0.600157 -0.789629 -0.837789 0.323064 -0.440159 0.511921 0.745111 -0.427489 0.189861 -0.583472 -0.789629 -0.866800 0.234345 -0.440159 0.431803 0.794229 -0.427489 0.249407 -0.560609 -0.789629 -0.886587 0.142208 -0.440159 0.346184 0.835111 -0.427489 0.306789 -0.531382 -0.789629 -0.896609 0.048504 -0.440159 0.256752 0.866794 -0.427489 0.360792 -0.496302 -0.789629 -0.896800 -0.044838 -0.440159 0.165380 0.888765 -0.427489 0.410365 -0.456165 -0.789629 -0.887161 -0.138582 -0.440159 0.071320 0.901203 -0.427489 0.455915 -0.410644 -0.789629 -0.867751 -0.230799 -0.440159 -0.023525 0.903715 -0.427489 0.496442 -0.360599 -0.789629 -0.838783 -0.320475 -0.440159 -0.118111 0.896272 -0.427489 0.531501 -0.306583 -0.789629 -0.800981 -0.405819 -0.440159 -0.210517 0.879168 -0.427489 0.560457 -0.249749 -0.789629 -0.754037 -0.487533 -0.440159 -0.301501 0.852262 -0.427489 0.583546 -0.189634 -0.789629 -0.698787 -0.563876 -0.440159 -0.389163 0.815969 -0.427489 0.600207 -0.127430 -0.789629 -0.636474 -0.633373 -0.440159 -0.471769 0.771160 -0.427489 0.610193 -0.064432 -0.789629 -0.566587 -0.696591 -0.440159 -0.549994 0.717468 -0.427489 0.613585 -0.000125 -0.789629 -0.490459 -0.752137 -0.440159 -0.622160 0.655873 -0.427489 0.610219 0.064184 -0.789629 -0.408928 -0.799398 -0.440159 -0.687474 0.587054 -0.427489 0.600131 0.127786 -0.789629 -0.323731 -0.837531 -0.440159 -0.744703 0.512514 -0.427489 0.583623 0.189396 -0.789629 -0.234169 -0.866848 -0.440159 -0.794317 0.431641 -0.427489 0.560558 0.249521 -0.789629 -0.142027 -0.886616 -0.440159 -0.835181 0.346014 -0.427489 0.531320 0.306897 -0.789629 -0.048321 -0.896619 -0.440159 -0.866846 0.256575 -0.427489 0.496228 0.360893 -0.789629 0.045020 -0.896791 -0.440159 -0.888798 0.165199 -0.427489 0.456082 0.410458 -0.789629 0.138762 -0.887133 -0.440159 -0.901217 0.071137 -0.427489 0.410551 0.455998 -0.789629 0.230976 -0.867704 -0.440159 -0.903710 -0.023709 -0.427489 0.360498 0.496516 -0.789629 0.319807 -0.839037 -0.440159 -0.896366 -0.117397 -0.427489 0.307006 0.531257 -0.789629 0.405982 -0.800898 -0.440159 -0.879125 -0.210696 -0.427489 0.249635 0.560508 -0.789629 0.487686 -0.753938 -0.440159 -0.852201 -0.301674 -0.427489 0.189515 0.583584 -0.789629 0.564019 -0.698672 -0.440159 -0.815890 -0.389330 -0.427489 0.127308 0.600233 -0.789629 0.633502 -0.636345 -0.440159 -0.771064 -0.471926 -0.427489 0.064308 0.610206 -0.789629 0.696707 -0.566445 -0.440159 -0.717356 -0.550140 -0.427489 0.000000 0.613585 -0.789629 0.752237 -0.490305 -0.440159 -0.655747 -0.622294 -0.427489 -0.064308 0.610206 -0.789629 0.799073 -0.409565 -0.440159 -0.587602 -0.687006 -0.427489 -0.127308 0.600233 -0.789629 0.837597 -0.323560 -0.440159 -0.512362 -0.744807 -0.427489 -0.189515 0.583584 -0.789629 0.866895 -0.233992 -0.440159 -0.431479 -0.794405 -0.427489 -0.249635 0.560508 -0.789629 0.886645 -0.141847 -0.440159 -0.345844 -0.835252 -0.427489 -0.307006 0.531257 -0.789629 0.896580 -0.049035 -0.440159 -0.257265 -0.866642 -0.427489 -0.360498 0.496516 -0.789629 0.896781 0.045203 -0.440159 -0.165018 -0.888832 -0.427489 -0.410551 0.455998 -0.789629 0.887105 0.138943 -0.440159 -0.070953 -0.901232 -0.427489 -0.456082 0.410458 -0.789629 0.867888 0.230285 -0.440159 0.022989 -0.903728 -0.427489 -0.496228 0.360893 -0.789629 0.838972 0.319978 -0.440159 0.117580 -0.896342 -0.427489 -0.531320 0.306897 -0.789629 0.800816 0.406146 -0.440159 0.210875 -0.879082 -0.427489 -0.560558 0.249521 -0.789629 0.753838 0.487840 -0.440159 0.301848 -0.852139 -0.427489 -0.583623 0.189396 -0.789629 0.699121 0.563462 -0.440159 0.388680 -0.816199 -0.427489 -0.600131 0.127786 -0.789629 0.636216 0.633632 -0.440159 0.472083 -0.770968 -0.427489 -0.610219 0.064184 -0.789629 0.526227 0.126564 -0.840873 0.067289 -0.991958 -0.107195 -0.847678 -0.000173 -0.530511 0.510064 0.181019 -0.840873 0.170883 -0.979443 -0.107195 -0.842991 -0.089014 -0.530511 0.488516 0.232992 -0.840873 0.271638 -0.956411 -0.107195 -0.829196 -0.176047 -0.530511 0.461406 0.282909 -0.840873 0.370381 -0.922674 -0.107195 -0.806178 -0.261983 -0.530511 0.429214 0.329710 -0.840873 0.465044 -0.878774 -0.107195 -0.774280 -0.345033 -0.530511 0.392667 0.372486 -0.840873 0.553759 -0.825748 -0.107195 -0.734278 -0.423549 -0.530511 0.351465 0.411589 -0.840873 0.637253 -0.763163 -0.107195 -0.685843 -0.498174 -0.530511 0.306392 0.446158 -0.840873 0.713729 -0.692171 -0.107195 -0.629854 -0.567311 -0.530511 0.257944 0.475813 -0.840873 0.782342 -0.613555 -0.107195 -0.566926 -0.630200 -0.530511 0.207155 0.500020 -0.840873 0.841810 -0.529023 -0.107195 -0.498440 -0.685649 -0.530511 0.153608 0.518977 -0.840873 0.892619 -0.437882 -0.107195 -0.423834 -0.734113 -0.530511 0.098370 0.532218 -0.840873 0.933596 -0.341917 -0.107195 -0.344560 -0.774491 -0.530511 0.042587 0.539555 -0.840873 0.964047 -0.243151 -0.107195 -0.262296 -0.806076 -0.530511 -0.014196 0.541047 -0.840873 0.984222 -0.140773 -0.107195 -0.176369 -0.829127 -0.530511 -0.070824 0.536579 -0.840873 0.993555 -0.036844 -0.107195 -0.088499 -0.843045 -0.530511 -0.126242 0.526304 -0.840873 0.991999 0.066683 -0.107195 -0.000345 -0.847678 -0.530511 -0.180708 0.510174 -0.840873 0.979547 0.170284 -0.107195 0.088499 -0.843045 -0.530511 -0.233182 0.488425 -0.840873 0.956305 0.272010 -0.107195 0.176369 -0.829127 -0.530511 -0.283089 0.461296 -0.840873 0.922530 0.370740 -0.107195 0.262296 -0.806076 -0.530511 -0.329447 0.429415 -0.840873 0.879058 0.464506 -0.107195 0.344560 -0.774491 -0.530511 -0.372639 0.392522 -0.840873 0.825533 0.554080 -0.107195 0.423834 -0.734113 -0.530511 -0.411726 0.351305 -0.840873 0.762915 0.637550 -0.107195 0.498440 -0.685649 -0.530511 -0.445971 0.306664 -0.840873 0.692607 0.713306 -0.107195 0.566926 -0.630200 -0.530511 -0.475655 0.258235 -0.840873 0.614033 0.781967 -0.107195 0.629854 -0.567311 -0.530511 -0.500100 0.206960 -0.840873 0.528695 0.842016 -0.107195 0.685843 -0.498174 -0.530511 -0.519037 0.153406 -0.840873 0.437535 0.892789 -0.107195 0.734278 -0.423549 -0.530511 -0.532158 0.098695 -0.840873 0.342488 0.933387 -0.107195 0.774280 -0.345033 -0.530511 -0.539571 0.042377 -0.840873 0.242776 0.964142 -0.107195 0.806178 -0.261983 -0.530511 -0.541041 -0.014407 -0.840873 0.140390 0.984276 -0.107195 0.829196 -0.176047 -0.530511 -0.536622 -0.070496 -0.840873 0.037451 0.993532 -0.107195 0.842991 -0.089014 -0.530511 -0.526278 -0.126350 -0.840873 -0.066885 0.991986 -0.107195 0.847678 -0.000173 -0.530511 -0.510137 -0.180812 -0.840873 -0.170484 0.979512 -0.107195 0.843027 0.088671 -0.530511 -0.488378 -0.233282 -0.840873 -0.272205 0.956250 -0.107195 0.829091 0.176538 -0.530511 -0.461521 -0.282721 -0.840873 -0.370005 0.922825 -0.107195 0.806284 0.261654 -0.530511 -0.429348 -0.329535 -0.840873 -0.464686 0.878963 -0.107195 0.774421 0.344718 -0.530511 -0.392446 -0.372719 -0.840873 -0.554248 0.825420 -0.107195 0.734027 0.423984 -0.530511 -0.351221 -0.411797 -0.840873 -0.637706 0.762785 -0.107195 0.685548 0.498580 -0.530511 -0.306574 -0.446033 -0.840873 -0.713447 0.692462 -0.107195 0.630085 0.567055 -0.530511 -0.258138 -0.475708 -0.840873 -0.782092 0.613874 -0.107195 0.567183 0.629969 -0.530511 -0.206858 -0.500143 -0.840873 -0.842123 0.528524 -0.107195 0.498034 0.685944 -0.530511 -0.153820 -0.518915 -0.840873 -0.892441 0.438245 -0.107195 0.424133 0.733940 -0.530511 -0.098587 -0.532178 -0.840873 -0.933457 0.342297 -0.107195 0.344875 0.774350 -0.530511 -0.042267 -0.539580 -0.840873 -0.964191 0.242579 -0.107195 0.261818 0.806231 -0.530511 0.014517 -0.541038 -0.840873 -0.984305 0.140189 -0.107195 0.175878 0.829231 -0.530511 0.070605 -0.536608 -0.840873 -0.993540 0.037248 -0.107195 0.088843 0.843009 -0.530511 0.126457 -0.526253 -0.840873 -0.991972 -0.067087 -0.107195 0.000000 0.847678 -0.530511 0.180915 -0.510101 -0.840873 -0.979478 -0.170683 -0.107195 -0.088843 0.843009 -0.530511 0.232893 -0.488563 -0.840873 -0.956466 -0.271443 -0.107195 -0.175878 0.829231 -0.530511 0.282815 -0.461464 -0.840873 -0.922750 -0.370193 -0.107195 -0.261818 0.806231 -0.530511 0.329622 -0.429281 -0.840873 -0.878869 -0.464865 -0.107195 -0.344875 0.774350 -0.530511 0.372799 -0.392370 -0.840873 -0.825307 -0.554416 -0.107195 -0.424133 0.733940 -0.530511 0.411517 -0.351549 -0.840873 -0.763293 -0.637098 -0.107195 -0.498034 0.685944 -0.530511 0.446096 -0.306483 -0.840873 -0.692316 -0.713588 -0.107195 -0.567183 0.629969 -0.530511 0.475760 -0.258041 -0.840873 -0.613714 -0.782217 -0.107195 -0.630085 0.567055 -0.530511 0.499978 -0.207257 -0.840873 -0.529194 -0.841702 -0.107195 -0.685548 0.498580 -0.530511 0.518946 -0.153714 -0.840873 -0.438063 -0.892530 -0.107195 -0.734027 0.423984 -0.530511 0.532198 -0.098478 -0.840873 -0.342107 -0.933527 -0.107195 -0.774421 0.344718 -0.530511 0.539589 -0.042158 -0.840873 -0.242383 -0.964241 -0.107195 -0.806284 0.261654 -0.530511 0.541050 0.014086 -0.840873 -0.140973 -0.984193 -0.107195 -0.829091 0.176538 -0.530511 0.536593 0.070715 -0.840873 -0.037046 -0.993548 -0.107195 -0.843027 0.088671 -0.530511 0.009740 -0.988378 0.151701 0.061995 0.152014 0.986432 -0.998029 -0.000203 0.062755 0.113276 -0.981914 0.151701 0.045721 0.157674 0.986432 -0.992511 -0.104803 0.062755 0.214599 -0.964849 0.151701 0.029106 0.161569 0.986432 -0.976269 -0.207272 0.062755 0.314540 -0.937044 0.151701 0.012012 0.163729 0.986432 -0.949168 -0.308450 0.062755 0.411017 -0.898917 0.151701 -0.005214 0.164086 0.986432 -0.911613 -0.406231 0.062755 0.502115 -0.851391 0.151701 -0.022220 0.162659 0.986432 -0.864515 -0.498673 0.062755 0.588581 -0.794077 0.151701 -0.039146 0.159434 0.986432 -0.807490 -0.586534 0.062755 0.668565 -0.728016 0.151701 -0.055640 0.154453 0.986432 -0.741570 -0.667934 0.062755 0.741184 -0.653937 0.151701 -0.071521 0.147771 0.986432 -0.667481 -0.741978 0.062755 0.805066 -0.573459 0.151701 -0.086475 0.139548 0.986432 -0.586848 -0.807262 0.062755 0.860735 -0.485924 0.151701 -0.100625 0.129716 0.986432 -0.499009 -0.864322 0.062755 0.906923 -0.393037 0.151701 -0.113666 0.118455 0.986432 -0.405674 -0.911861 0.062755 0.942825 -0.296763 0.151701 -0.125349 0.106015 0.986432 -0.308819 -0.949048 0.062755 0.968735 -0.196314 0.151701 -0.135769 0.092294 0.986432 -0.207651 -0.976188 0.062755 0.983975 -0.093702 0.151701 -0.144695 0.077556 0.986432 -0.104196 -0.992575 0.062755 0.988384 0.009136 0.151701 -0.151976 0.062088 0.986432 -0.000407 -0.998029 0.062755 0.981983 0.112676 0.151701 -0.157646 0.045818 0.986432 0.104196 -0.992575 0.062755 0.964766 0.214974 0.151701 -0.161580 0.029043 0.986432 0.207651 -0.976188 0.062755 0.936921 0.314904 0.151701 -0.163734 0.011948 0.986432 0.308819 -0.949048 0.062755 0.899168 0.410467 0.151701 -0.164090 -0.005114 0.986432 0.405674 -0.911861 0.062755 0.851196 0.502446 0.151701 -0.162650 -0.022284 0.986432 0.499009 -0.864322 0.062755 0.793848 0.588890 0.151701 -0.159419 -0.039208 0.986432 0.586848 -0.807262 0.062755 0.728425 0.668120 0.151701 -0.154487 -0.055546 0.986432 0.667481 -0.741978 0.062755 0.654389 0.740784 0.151701 -0.147815 -0.071431 0.986432 0.741570 -0.667934 0.062755 0.573146 0.805289 0.151701 -0.139514 -0.086530 0.986432 0.807490 -0.586534 0.062755 0.485589 0.860924 0.151701 -0.129677 -0.100675 0.986432 0.864515 -0.498673 0.062755 0.393591 0.906682 0.151701 -0.118525 -0.113593 0.986432 0.911613 -0.406231 0.062755 0.296396 0.942940 0.151701 -0.105967 -0.125390 0.986432 0.949168 -0.308450 0.062755 0.195937 0.968811 0.151701 -0.092241 -0.135805 0.986432 0.976269 -0.207272 0.062755 0.094303 0.983917 0.151701 -0.077645 -0.144647 0.986432 0.992511 -0.104803 0.062755 -0.009338 0.988382 0.151701 -0.062057 -0.151988 0.986432 0.998029 -0.000203 0.062755 -0.112876 0.981960 0.151701 -0.045786 -0.157655 0.986432 0.992554 0.104398 0.062755 -0.215171 0.964722 0.151701 -0.029010 -0.161586 0.986432 0.976146 0.207850 0.062755 -0.314158 0.937172 0.151701 -0.012079 -0.163724 0.986432 0.949294 0.308063 0.062755 -0.410650 0.899085 0.151701 0.005147 -0.164089 0.986432 0.911778 0.405860 0.062755 -0.502619 0.851094 0.151701 0.022317 -0.162645 0.986432 0.864220 0.499185 0.062755 -0.589052 0.793728 0.151701 0.039240 -0.159411 0.986432 0.807142 0.587012 0.062755 -0.668268 0.728289 0.151701 0.055577 -0.154476 0.986432 0.741842 0.667632 0.062755 -0.740918 0.654238 0.151701 0.071461 -0.147800 0.986432 0.667783 0.741706 0.062755 -0.805406 0.572982 0.151701 0.086558 -0.139496 0.986432 0.586370 0.807609 0.062755 -0.860537 0.486275 0.151701 0.100572 -0.129757 0.986432 0.499361 0.864118 0.062755 -0.906763 0.393406 0.151701 0.113617 -0.118502 0.986432 0.406045 0.911696 0.062755 -0.943000 0.296204 0.151701 0.125411 -0.105941 0.986432 0.308257 0.949231 0.062755 -0.968851 0.195740 0.151701 0.135824 -0.092214 0.986432 0.207073 0.976311 0.062755 -0.983937 0.094103 0.151701 0.144663 -0.077615 0.986432 0.104601 0.992532 0.062755 -0.988380 -0.009539 0.151701 0.152001 -0.062026 0.986432 0.000000 0.998029 0.062755 -0.981937 -0.113076 0.151701 0.157665 -0.045753 0.986432 -0.104601 0.992532 0.062755 -0.964893 -0.214402 0.151701 0.161563 -0.029139 0.986432 -0.207073 0.976311 0.062755 -0.937108 -0.314349 0.151701 0.163727 -0.012045 0.986432 -0.308257 0.949231 0.062755 -0.899001 -0.410833 0.151701 0.164087 0.005181 0.986432 -0.406045 0.911696 0.062755 -0.850991 -0.502792 0.151701 0.162641 0.022350 0.986432 -0.499361 0.864118 0.062755 -0.794197 -0.588420 0.151701 0.159442 0.039113 0.986432 -0.586370 0.807609 0.062755 -0.728153 -0.668416 0.151701 0.154464 0.055608 0.986432 -0.667783 0.741706 0.062755 -0.654087 -0.741051 0.151701 0.147785 0.071491 0.986432 -0.741842 0.667632 0.062755 -0.573623 -0.804949 0.151701 0.139565 0.086447 0.986432 -0.807142 0.587012 0.062755 -0.486099 -0.860636 0.151701 0.129736 0.100598 0.986432 -0.864220 0.499185 0.062755 -0.393221 -0.906843 0.151701 0.118478 0.113642 0.986432 -0.911778 0.405860 0.062755 -0.296012 -0.943061 0.151701 0.105916 0.125433 0.986432 -0.949294 0.308063 0.062755 -0.196511 -0.968695 0.151701 0.092322 0.135751 0.986432 -0.976146 0.207850 0.062755 -0.093903 -0.983956 0.151701 0.077586 0.144679 0.986432 -0.992554 0.104398 0.062755 -0.894397 -0.387023 0.224203 -0.375421 0.922070 0.094053 -0.243131 -0.000050 -0.969993 -0.848908 -0.478631 0.224203 -0.469993 0.877645 0.094053 -0.241787 -0.025531 -0.969993 -0.794634 -0.564172 0.224203 -0.558564 0.824112 0.094053 -0.237830 -0.050494 -0.969993 -0.731128 -0.644349 0.224203 -0.641861 0.761031 0.094053 -0.231228 -0.075142 -0.969993 -0.659569 -0.717427 0.224203 -0.718087 0.689568 0.094053 -0.222079 -0.098963 -0.969993 -0.581527 -0.782023 0.224203 -0.785793 0.611296 0.094053 -0.210606 -0.121482 -0.969993 -0.496363 -0.838664 0.224203 -0.845534 0.525573 0.094053 -0.196714 -0.142886 -0.969993 -0.405731 -0.886067 0.224203 -0.895961 0.434060 0.094053 -0.180655 -0.162716 -0.969993 -0.310631 -0.923711 0.224203 -0.936519 0.337766 0.094053 -0.162606 -0.180754 -0.969993 -0.213059 -0.950967 0.224203 -0.966523 0.238719 0.094053 -0.142963 -0.196658 -0.969993 -0.112218 -0.968060 0.224203 -0.986220 0.136105 0.094053 -0.121564 -0.210559 -0.969993 -0.010140 -0.974490 0.224203 -0.995053 0.031993 0.094053 -0.098827 -0.222140 -0.969993 0.091079 -0.970277 0.224203 -0.992998 -0.071479 0.094053 -0.075232 -0.231199 -0.969993 0.192270 -0.955388 0.224203 -0.980037 -0.175159 0.094053 -0.050586 -0.237811 -0.969993 0.291342 -0.929975 0.224203 -0.956282 -0.276909 0.094053 -0.025383 -0.241803 -0.969993 0.386477 -0.894633 0.224203 -0.922299 -0.374858 0.094053 -0.000099 -0.243131 -0.969993 0.478112 -0.849201 0.224203 -0.877932 -0.469457 0.094053 0.025383 -0.241803 -0.969993 0.564482 -0.794414 0.224203 -0.823894 -0.558885 0.094053 0.050586 -0.237811 -0.969993 0.644633 -0.730877 0.224203 -0.760781 -0.642157 0.094053 0.075232 -0.231199 -0.969993 0.717024 -0.660007 0.224203 -0.690007 -0.717666 0.094053 0.098827 -0.222140 -0.969993 0.782249 -0.581223 0.224203 -0.610990 -0.786031 0.094053 0.121564 -0.210559 -0.969993 0.838857 -0.496037 0.224203 -0.525244 -0.845738 0.094053 0.142963 -0.196658 -0.969993 0.885819 -0.406272 0.224203 -0.434607 -0.895696 0.094053 0.162606 -0.180754 -0.969993 0.923521 -0.311195 0.224203 -0.338338 -0.936313 0.094053 0.180655 -0.162716 -0.969993 0.951050 -0.212689 0.224203 -0.238343 -0.966616 0.094053 0.196714 -0.142886 -0.969993 0.968104 -0.111841 0.224203 -0.135722 -0.986273 0.094053 0.210606 -0.121482 -0.969993 0.974483 -0.010735 0.224203 -0.032601 -0.995033 0.094053 0.222079 -0.098963 -0.969993 0.970242 0.091457 0.224203 0.071865 -0.992970 0.094053 0.231228 -0.075142 -0.969993 0.955313 0.192641 0.224203 0.175540 -0.979969 0.094053 0.237830 -0.050494 -0.969993 0.930153 0.290774 0.224203 0.276325 -0.956451 0.094053 0.241787 -0.025531 -0.969993 0.894555 0.386659 0.224203 0.375046 -0.922223 0.094053 0.243131 -0.000050 -0.969993 0.849103 0.478285 0.224203 0.469636 -0.877836 0.094053 0.241797 0.025433 -0.969993 0.794299 0.564643 0.224203 0.559053 -0.823780 0.094053 0.237800 0.050635 -0.969993 0.731390 0.644051 0.224203 0.641551 -0.761293 0.094053 0.231259 0.075048 -0.969993 0.659861 0.717159 0.224203 0.717807 -0.689861 0.094053 0.222120 0.098872 -0.969993 0.581064 0.782367 0.224203 0.786156 -0.610830 0.094053 0.210534 0.121607 -0.969993 0.495866 0.838958 0.224203 0.845845 -0.525071 0.094053 0.196629 0.143003 -0.969993 0.406092 0.885902 0.224203 0.895784 -0.434425 0.094053 0.180721 0.162643 -0.969993 0.311007 0.923584 0.224203 0.936381 -0.338148 0.094053 0.162680 0.180688 -0.969993 0.212496 0.951093 0.224203 0.966665 -0.238146 0.094053 0.142846 0.196743 -0.969993 0.112612 0.968014 0.224203 0.986164 -0.136507 0.094053 0.121650 0.210509 -0.969993 0.010537 0.974486 0.224203 0.995040 -0.032398 0.094053 0.098917 0.222100 -0.969993 -0.091654 0.970223 0.224203 0.992955 0.072068 0.094053 0.075095 0.231244 -0.969993 -0.192836 0.955274 0.224203 0.979934 0.175739 0.094053 0.050445 0.237841 -0.969993 -0.290963 0.930093 0.224203 0.956395 0.276519 0.094053 0.025482 0.241792 -0.969993 -0.386841 0.894476 0.224203 0.922146 0.375234 0.094053 0.000000 0.243131 -0.969993 -0.478458 0.849006 0.224203 0.877741 0.469814 0.094053 -0.025482 0.241792 -0.969993 -0.564011 0.794748 0.224203 0.824225 0.558397 0.094053 -0.050445 0.237841 -0.969993 -0.644200 0.731259 0.224203 0.761162 0.641706 0.094053 -0.075095 0.231244 -0.969993 -0.717293 0.659715 0.224203 0.689714 0.717947 0.094053 -0.098917 0.222100 -0.969993 -0.782485 0.580904 0.224203 0.610670 0.786280 0.094053 -0.121650 0.210509 -0.969993 -0.838563 0.496534 0.224203 0.525745 0.845427 0.094053 -0.142846 0.196743 -0.969993 -0.885985 0.405912 0.224203 0.434242 0.895873 0.094053 -0.162680 0.180688 -0.969993 -0.923648 0.310819 0.224203 0.337957 0.936450 0.094053 -0.180721 0.162643 -0.969993 -0.950924 0.213253 0.224203 0.238916 0.966475 0.094053 -0.196629 0.143003 -0.969993 -0.968037 0.112415 0.224203 0.136306 0.986192 0.094053 -0.210534 0.121607 -0.969993 -0.974488 0.010338 0.224203 0.032196 0.995046 0.094053 -0.222120 0.098872 -0.969993 -0.970204 -0.091852 0.224203 -0.072270 0.992941 0.094053 -0.231259 0.075048 -0.969993 -0.955427 -0.192075 0.224203 -0.174959 0.980073 0.094053 -0.237800 0.050635 -0.969993 -0.930034 -0.291153 0.224203 -0.276714 0.956338 0.094053 -0.241797 0.025433 -0.969993 0.068354 0.384634 -0.920535 0.028702 -0.923069 -0.383562 -0.997248 -0.000203 -0.074136 0.027665 0.389680 -0.920535 0.125288 -0.914977 -0.383562 -0.991735 -0.104721 -0.074136 -0.012938 0.390446 -0.920535 0.219597 -0.897027 -0.383562 -0.975505 -0.207109 -0.074136 -0.053788 0.386940 -0.920535 0.312403 -0.869071 -0.383562 -0.948426 -0.308209 -0.074136 -0.094046 0.379172 -0.920535 0.401767 -0.831543 -0.383562 -0.910900 -0.405913 -0.074136 -0.132901 0.367360 -0.920535 0.485921 -0.785341 -0.383562 -0.863839 -0.498283 -0.074136 -0.170670 0.351408 -0.920535 0.565554 -0.730088 -0.383562 -0.806858 -0.586075 -0.074136 -0.206561 0.331585 -0.920535 0.638958 -0.666793 -0.383562 -0.740990 -0.667412 -0.074136 -0.240175 0.308110 -0.920535 0.705324 -0.596153 -0.383562 -0.666959 -0.741397 -0.074136 -0.270863 0.281512 -0.920535 0.763401 -0.519711 -0.383562 -0.586389 -0.806630 -0.074136 -0.298876 0.251573 -0.920535 0.813666 -0.436839 -0.383562 -0.498619 -0.863645 -0.074136 -0.323597 0.218863 -0.920535 0.854969 -0.349155 -0.383562 -0.405356 -0.911148 -0.074136 -0.344569 0.184087 -0.920535 0.886596 -0.258512 -0.383562 -0.308578 -0.948306 -0.074136 -0.361965 0.146960 -0.920535 0.908807 -0.164166 -0.383562 -0.207489 -0.975424 -0.074136 -0.375374 0.108214 -0.920535 0.921007 -0.068013 -0.383562 -0.104115 -0.991798 -0.074136 -0.384592 0.068589 -0.920535 0.923086 0.028138 -0.383562 -0.000406 -0.997248 -0.074136 -0.389663 0.027904 -0.920535 0.915054 0.124729 -0.383562 0.104115 -0.991798 -0.074136 -0.390441 -0.013090 -0.920535 0.896941 0.219946 -0.383562 0.207489 -0.975424 -0.074136 -0.386919 -0.053939 -0.920535 0.868950 0.312741 -0.383562 0.308578 -0.948306 -0.074136 -0.379229 -0.093814 -0.920535 0.831788 0.401259 -0.383562 0.405356 -0.911148 -0.074136 -0.367308 -0.133043 -0.920535 0.785152 0.486226 -0.383562 0.498619 -0.863645 -0.074136 -0.351341 -0.170807 -0.920535 0.729868 0.565838 -0.383562 0.586389 -0.806630 -0.074136 -0.331711 -0.206358 -0.920535 0.667183 0.638551 -0.383562 0.666959 -0.741397 -0.074136 -0.308256 -0.239987 -0.920535 0.596584 0.704959 -0.383562 0.740990 -0.667412 -0.074136 -0.281406 -0.270973 -0.920535 0.519414 0.763603 -0.383562 0.806858 -0.586075 -0.074136 -0.251456 -0.298974 -0.920535 0.436522 0.813836 -0.383562 0.863839 -0.498283 -0.074136 -0.219061 -0.323463 -0.920535 0.349677 0.854755 -0.383562 0.910900 -0.405913 -0.074136 -0.183953 -0.344641 -0.920535 0.258167 0.886696 -0.383562 0.948426 -0.308209 -0.074136 -0.146819 -0.362022 -0.920535 0.163813 0.908871 -0.383562 0.975505 -0.207109 -0.074136 -0.108443 -0.375308 -0.920535 0.068575 0.920966 -0.383562 0.991735 -0.104721 -0.074136 -0.068511 -0.384606 -0.920535 -0.028326 0.923081 -0.383562 0.997248 -0.000203 -0.074136 -0.027824 -0.389668 -0.920535 -0.124916 0.915028 -0.383562 0.991777 0.104317 -0.074136 0.013169 -0.390439 -0.920535 -0.220129 0.896897 -0.383562 0.975382 0.207688 -0.074136 0.053630 -0.386962 -0.920535 -0.312049 0.869198 -0.383562 0.948551 0.307822 -0.074136 0.093891 -0.379210 -0.920535 -0.401429 0.831706 -0.383562 0.911065 0.405542 -0.074136 0.133118 -0.367281 -0.920535 -0.486386 0.785053 -0.383562 0.863544 0.498795 -0.074136 0.170879 -0.351306 -0.920535 -0.565987 0.729753 -0.383562 0.806511 0.586553 -0.074136 0.206426 -0.331669 -0.920535 -0.638686 0.667053 -0.383562 0.741261 0.667110 -0.074136 0.240050 -0.308207 -0.920535 -0.705081 0.596441 -0.383562 0.667261 0.741125 -0.074136 0.271030 -0.281351 -0.920535 -0.763709 0.519258 -0.383562 0.585911 0.806977 -0.074136 0.298774 -0.251694 -0.920535 -0.813488 0.437170 -0.383562 0.498971 0.863442 -0.074136 0.323507 -0.218995 -0.920535 -0.854826 0.349503 -0.383562 0.405728 0.910982 -0.074136 0.344678 -0.183883 -0.920535 -0.886749 0.257986 -0.383562 0.308016 0.948488 -0.074136 0.362052 -0.146745 -0.920535 -0.908904 0.163628 -0.383562 0.206911 0.975547 -0.074136 0.375330 -0.108367 -0.920535 -0.920980 0.068388 -0.383562 0.104519 0.991756 -0.074136 0.384620 -0.068433 -0.920535 -0.923075 -0.028514 -0.383562 0.000000 0.997248 -0.074136 0.389674 -0.027745 -0.920535 -0.915003 -0.125102 -0.383562 -0.104519 0.991756 -0.074136 0.390449 0.012858 -0.920535 -0.897072 -0.219415 -0.383562 -0.206911 0.975547 -0.074136 0.386951 0.053709 -0.920535 -0.869135 -0.312226 -0.383562 -0.308016 0.948488 -0.074136 0.379191 0.093969 -0.920535 -0.831625 -0.401598 -0.383562 -0.405728 0.910982 -0.074136 0.367254 0.133193 -0.920535 -0.784954 -0.486546 -0.383562 -0.498971 0.863442 -0.074136 0.351442 0.170599 -0.920535 -0.730203 -0.565406 -0.383562 -0.585911 0.806977 -0.074136 0.331627 0.206493 -0.920535 -0.666923 -0.638822 -0.383562 -0.667261 0.741125 -0.074136 0.308158 0.240113 -0.920535 -0.596297 -0.705202 -0.383562 -0.741261 0.667110 -0.074136 0.281567 0.270806 -0.920535 -0.519866 -0.763295 -0.383562 -0.806511 0.586553 -0.074136 0.251634 0.298825 -0.920535 -0.437004 -0.813577 -0.383562 -0.863544 0.498795 -0.074136 0.218929 0.323552 -0.920535 -0.349329 -0.854897 -0.383562 -0.911065 0.405542 -0.074136 0.183812 0.344715 -0.920535 -0.257806 -0.886801 -0.383562 -0.948551 0.307822 -0.074136 0.147033 0.361935 -0.920535 -0.164351 -0.908773 -0.383562 -0.975382 0.207688 -0.074136 0.108290 0.375352 -0.920535 -0.068200 -0.920994 -0.383562 -0.991777 0.104317 -0.074136 0.028182 -0.043184 -0.998670 -0.001014 -0.999067 0.043173 -0.999602 -0.000204 -0.028200 0.032553 -0.039993 -0.998670 0.103701 -0.993671 0.043173 -0.994076 -0.104968 -0.028200 0.036529 -0.036397 -0.998670 0.206296 -0.977537 0.043173 -0.977808 -0.207598 -0.028200 0.040143 -0.032368 -0.998670 0.307613 -0.950532 0.043173 -0.950665 -0.308936 -0.028200 0.043314 -0.027983 -0.998670 0.405541 -0.913057 0.043173 -0.913050 -0.406871 -0.028200 0.045985 -0.023335 -0.998670 0.498137 -0.866023 0.043173 -0.865878 -0.499459 -0.028200 0.048177 -0.018387 -0.998670 0.586158 -0.809045 0.043173 -0.808763 -0.587458 -0.028200 0.049839 -0.013237 -0.998670 0.667724 -0.743156 0.043173 -0.742739 -0.668987 -0.028200 0.050952 -0.007940 -0.998670 0.741935 -0.669081 0.043173 -0.668533 -0.743147 -0.028200 0.051501 -0.002608 -0.998670 0.807385 -0.588443 0.043173 -0.587773 -0.808534 -0.028200 0.051491 0.002804 -0.998670 0.864611 -0.500583 0.043173 -0.499796 -0.865684 -0.028200 0.050913 0.008185 -0.998670 0.912314 -0.407208 0.043173 -0.406313 -0.913299 -0.028200 0.049788 0.013427 -0.998670 0.949658 -0.310299 0.043173 -0.309306 -0.950544 -0.028200 0.048107 0.018571 -0.998670 0.976950 -0.209059 0.043173 -0.207979 -0.977727 -0.028200 0.045896 0.023510 -0.998670 0.993480 -0.105516 0.043173 -0.104361 -0.994140 -0.028200 0.043202 0.028156 -0.998670 0.999066 -0.001625 0.043173 -0.000407 -0.999602 -0.028200 0.040013 0.032529 -0.998670 0.993734 0.103093 0.043173 0.104361 -0.994140 -0.028200 0.036383 0.036543 -0.998670 0.977456 0.206676 0.043173 0.207979 -0.977727 -0.028200 0.032353 0.040155 -0.998670 0.950412 0.307982 0.043173 0.309306 -0.950544 -0.028200 0.028009 0.043297 -0.998670 0.913304 0.404983 0.043173 0.406313 -0.913299 -0.028200 0.023317 0.045994 -0.998670 0.865829 0.498473 0.043173 0.499796 -0.865684 -0.028200 0.018368 0.048185 -0.998670 0.808817 0.586473 0.043173 0.587773 -0.808534 -0.028200 0.013267 0.049831 -0.998670 0.743564 0.667270 0.043173 0.668533 -0.743147 -0.028200 0.007971 0.050947 -0.998670 0.669534 0.741526 0.043173 0.742739 -0.668987 -0.028200 0.002588 0.051502 -0.998670 0.588129 0.807614 0.043173 0.808763 -0.587458 -0.028200 -0.002824 0.051489 -0.998670 0.500247 0.864806 0.043173 0.865878 -0.499459 -0.028200 -0.008154 0.050918 -0.998670 0.407766 0.912065 0.043173 0.913050 -0.406871 -0.028200 -0.013446 0.049783 -0.998670 0.309929 0.949779 0.043173 0.950665 -0.308936 -0.028200 -0.018590 0.048100 -0.998670 0.208679 0.977031 0.043173 0.977808 -0.207598 -0.028200 -0.023482 0.045910 -0.998670 0.106123 0.993415 0.043173 0.994076 -0.104968 -0.028200 -0.028165 0.043196 -0.998670 0.001421 0.999067 0.043173 0.999602 -0.000204 -0.028200 -0.032537 0.040006 -0.998670 -0.103296 0.993713 0.043173 0.994118 0.104563 -0.028200 -0.036551 0.036376 -0.998670 -0.206875 0.977414 0.043173 0.977684 0.208178 -0.028200 -0.040129 0.032385 -0.998670 -0.307225 0.950657 0.043173 0.950790 0.308549 -0.028200 -0.043303 0.028001 -0.998670 -0.405169 0.913222 0.043173 0.913216 0.406499 -0.028200 -0.045999 0.023308 -0.998670 -0.498650 0.865728 0.043173 0.865582 0.499972 -0.028200 -0.048188 0.018359 -0.998670 -0.586638 0.808698 0.043173 0.808414 0.587938 -0.028200 -0.049834 0.013257 -0.998670 -0.667421 0.743428 0.043173 0.743011 0.668685 -0.028200 -0.050949 0.007961 -0.998670 -0.741662 0.669383 0.043173 0.668836 0.742875 -0.028200 -0.051502 0.002577 -0.998670 -0.807733 0.587965 0.043173 0.587294 0.808882 -0.028200 -0.051492 -0.002783 -0.998670 -0.864407 0.500935 0.043173 0.500148 0.865480 -0.028200 -0.050916 -0.008165 -0.998670 -0.912148 0.407580 0.043173 0.406685 0.913133 -0.028200 -0.049780 -0.013456 -0.998670 -0.949842 0.309736 0.043173 0.308743 0.950727 -0.028200 -0.048096 -0.018599 -0.998670 -0.977073 0.208480 0.043173 0.207399 0.977850 -0.028200 -0.045905 -0.023492 -0.998670 -0.993437 0.105921 0.043173 0.104765 0.994097 -0.028200 -0.043190 -0.028174 -0.998670 -0.999067 0.001218 0.043173 0.000000 0.999602 -0.028200 -0.040000 -0.032545 -0.998670 -0.993692 -0.103498 0.043173 -0.104765 0.994097 -0.028200 -0.036405 -0.036522 -0.998670 -0.977579 -0.206097 0.043173 -0.207399 0.977850 -0.028200 -0.032377 -0.040136 -0.998670 -0.950594 -0.307419 0.043173 -0.308743 0.950727 -0.028200 -0.027992 -0.043308 -0.998670 -0.913139 -0.405355 0.043173 -0.406685 0.913133 -0.028200 -0.023299 -0.046004 -0.998670 -0.865626 -0.498826 0.043173 -0.500148 0.865480 -0.028200 -0.018397 -0.048174 -0.998670 -0.809165 -0.585994 0.043173 -0.587294 0.808882 -0.028200 -0.013247 -0.049836 -0.998670 -0.743292 -0.667573 0.043173 -0.668836 0.742875 -0.028200 -0.007950 -0.050950 -0.998670 -0.669232 -0.741798 0.043173 -0.743011 0.668685 -0.028200 -0.002618 -0.051500 -0.998670 -0.588608 -0.807265 0.043173 -0.808414 0.587938 -0.028200 0.002794 -0.051491 -0.998670 -0.500759 -0.864509 0.043173 -0.865582 0.499972 -0.028200 0.008175 -0.050915 -0.998670 -0.407394 -0.912231 0.043173 -0.913216 0.406499 -0.028200 0.013466 -0.049778 -0.998670 -0.309542 -0.949905 0.043173 -0.950790 0.308549 -0.028200 0.018561 -0.048111 -0.998670 -0.209258 -0.976907 0.043173 -0.977684 0.208178 -0.028200 0.023501 -0.045900 -0.998670 -0.105718 -0.993458 0.043173 -0.994118 0.104563 -0.028200 -0.070709 0.769957 -0.634166 -0.085006 -0.638096 -0.765250 -0.993868 -0.000202 0.110570 -0.151017 0.758306 -0.634166 -0.017660 -0.643491 -0.765250 -0.988373 -0.104366 0.110570 -0.228922 0.738531 -0.634166 0.049237 -0.641847 -0.765250 -0.972199 -0.206408 0.110570 -0.305065 0.710471 -0.634166 0.116236 -0.633152 -0.765250 -0.945211 -0.307164 0.110570 -0.377847 0.674585 -0.634166 0.181955 -0.617482 -0.765250 -0.907813 -0.404537 0.110570 -0.445836 0.631715 -0.634166 0.245075 -0.595257 -0.765250 -0.860911 -0.496594 0.110570 -0.509589 0.581509 -0.634166 0.306112 -0.566293 -0.765250 -0.804124 -0.584089 0.110570 -0.567729 0.524898 -0.634166 0.363778 -0.531091 -0.765250 -0.738478 -0.665150 0.110570 -0.619615 0.462505 -0.634166 0.417436 -0.490040 -0.765250 -0.664699 -0.738884 0.110570 -0.664281 0.395682 -0.634166 0.466053 -0.444057 -0.765250 -0.584402 -0.803896 0.110570 -0.702093 0.323881 -0.634166 0.510027 -0.392766 -0.765250 -0.496929 -0.860718 0.110570 -0.732171 0.248513 -0.634166 0.548382 -0.337148 -0.765250 -0.403983 -0.908060 0.110570 -0.754014 0.171162 -0.634166 0.580420 -0.278397 -0.765250 -0.307532 -0.945092 0.110570 -0.767800 0.091193 -0.634166 0.606401 -0.216032 -0.765250 -0.206786 -0.972118 0.110570 -0.773129 0.010220 -0.634166 0.625703 -0.151287 -0.765250 -0.103762 -0.988437 0.110570 -0.770000 -0.070239 -0.634166 0.638044 -0.085395 -0.765250 -0.000405 -0.993868 0.110570 -0.758398 -0.150553 -0.634166 0.643480 -0.018054 -0.765250 0.103762 -0.988437 0.110570 -0.738442 -0.229210 -0.634166 0.641828 0.049487 -0.765250 0.206786 -0.972118 0.110570 -0.710352 -0.305341 -0.634166 0.633106 0.116483 -0.765250 0.307532 -0.945092 0.110570 -0.674816 -0.377435 -0.634166 0.617593 0.181578 -0.765250 0.403983 -0.908060 0.110570 -0.631541 -0.446082 -0.634166 0.595161 0.245306 -0.765250 0.496929 -0.860718 0.110570 -0.581311 -0.509815 -0.634166 0.566174 0.306332 -0.765250 0.584402 -0.803896 0.110570 -0.525245 -0.567408 -0.634166 0.531313 0.363453 -0.765250 0.664699 -0.738884 0.110570 -0.462883 -0.619332 -0.634166 0.490295 0.417137 -0.765250 0.738478 -0.665150 0.110570 -0.395424 -0.664435 -0.634166 0.443876 0.466226 -0.765250 0.804124 -0.584089 0.110570 -0.323608 -0.702219 -0.634166 0.392567 0.510179 -0.765250 0.860911 -0.496594 0.110570 -0.248961 -0.732019 -0.634166 0.337483 0.548176 -0.765250 0.907813 -0.404537 0.110570 -0.170869 -0.754081 -0.634166 0.278172 0.580528 -0.765250 0.945211 -0.307164 0.110570 -0.090895 -0.767836 -0.634166 0.215796 0.606485 -0.765250 0.972199 -0.206408 0.110570 -0.010692 -0.773123 -0.634166 0.151669 0.625611 -0.765250 0.988373 -0.104366 0.110570 0.070395 -0.769986 -0.634166 0.085265 0.638061 -0.765250 0.993868 -0.000202 0.110570 0.150708 -0.758367 -0.634166 0.017923 0.643483 -0.765250 0.988416 0.103963 0.110570 0.229360 -0.738395 -0.634166 -0.049618 0.641818 -0.765250 0.972076 0.206984 0.110570 0.304775 -0.710595 -0.634166 -0.115979 0.633199 -0.765250 0.945336 0.306779 0.110570 0.377572 -0.674739 -0.634166 -0.181704 0.617556 -0.765250 0.907977 0.404168 0.110570 0.446210 -0.631451 -0.634166 -0.245427 0.595111 -0.765250 0.860617 0.497104 0.110570 0.509934 -0.581207 -0.634166 -0.306448 0.566111 -0.765250 0.803777 0.584565 0.110570 0.567515 -0.525129 -0.634166 -0.363561 0.531239 -0.765250 0.738749 0.664849 0.110570 0.619427 -0.462757 -0.634166 -0.417237 0.490210 -0.765250 0.664999 0.738614 0.110570 0.664515 -0.395288 -0.634166 -0.466316 0.443781 -0.765250 0.583925 0.804242 0.110570 0.701961 -0.324167 -0.634166 -0.509867 0.392973 -0.765250 0.497279 0.860516 0.110570 0.732070 -0.248812 -0.634166 -0.548245 0.337371 -0.765250 0.404353 0.907895 0.110570 0.754115 -0.170715 -0.634166 -0.580585 0.278053 -0.765250 0.306972 0.945274 0.110570 0.767854 -0.090738 -0.634166 -0.606529 0.215673 -0.765250 0.206210 0.972241 0.110570 0.773125 -0.010535 -0.634166 -0.625641 0.151542 -0.765250 0.104165 0.988395 0.110570 0.769971 0.070552 -0.634166 -0.638078 0.085136 -0.765250 0.000000 0.993868 0.110570 0.758336 0.150862 -0.634166 -0.643487 0.017791 -0.765250 -0.104165 0.988395 0.110570 0.738578 0.228772 -0.634166 -0.641857 -0.049107 -0.765250 -0.206210 0.972241 0.110570 0.710533 0.304920 -0.634166 -0.633175 -0.116108 -0.765250 -0.306972 0.945274 0.110570 0.674662 0.377710 -0.634166 -0.617519 -0.181829 -0.765250 -0.404353 0.907895 0.110570 0.631360 0.446339 -0.634166 -0.595061 -0.245548 -0.765250 -0.497279 0.860516 0.110570 0.581613 0.509471 -0.634166 -0.566355 -0.305997 -0.765250 -0.583925 0.804242 0.110570 0.525013 0.567622 -0.634166 -0.531165 -0.363669 -0.765250 -0.664999 0.738614 0.110570 0.462631 0.619521 -0.634166 -0.490125 -0.417336 -0.765250 -0.738749 0.664849 0.110570 0.395817 0.664200 -0.634166 -0.444152 -0.465963 -0.765250 -0.803777 0.584565 0.110570 0.324024 0.702027 -0.634166 -0.392869 -0.509947 -0.765250 -0.860617 0.497104 0.110570 0.248662 0.732121 -0.634166 -0.337260 -0.548314 -0.765250 -0.907977 0.404168 0.110570 0.170561 0.754150 -0.634166 -0.277935 -0.580641 -0.765250 -0.945336 0.306779 0.110570 0.091350 0.767782 -0.634166 -0.216155 -0.606357 -0.765250 -0.972076 0.206984 0.110570 0.010377 0.773127 -0.634166 -0.151414 -0.625672 -0.765250 -0.988416 0.103963 0.110570 -0.365254 -0.801218 -0.473961 0.489286 -0.598373 0.634468 -0.791952 -0.000161 0.610583 -0.279269 -0.835087 -0.473961 0.549305 -0.543796 0.634468 -0.787574 -0.083163 0.610583 -0.191067 -0.859566 -0.473961 0.602790 -0.483833 0.634468 -0.774685 -0.164473 0.610583 -0.099926 -0.874857 -0.473961 0.650180 -0.417992 0.634468 -0.753181 -0.244760 0.610583 -0.007685 -0.880512 -0.473961 0.690407 -0.347546 0.634468 -0.723380 -0.322351 0.610583 0.083765 -0.876552 -0.473961 0.722757 -0.273995 0.634468 -0.686007 -0.395705 0.610583 0.175173 -0.862946 -0.473961 0.747493 -0.196736 0.634468 -0.640756 -0.465424 0.610583 0.264651 -0.839834 -0.473961 0.763996 -0.117310 0.634468 -0.588448 -0.530017 0.610583 0.351214 -0.807471 -0.473961 0.772083 -0.036592 0.634468 -0.529657 -0.588771 0.610583 0.433142 -0.766648 -0.473961 0.771710 0.043758 0.634468 -0.465674 -0.640575 0.610583 0.511107 -0.717029 -0.473961 0.762874 0.124398 0.634468 -0.395972 -0.685853 0.610583 0.583442 -0.659512 -0.473961 0.745634 0.203667 0.634468 -0.321909 -0.723577 0.610583 0.648755 -0.595380 -0.473961 0.720462 0.279973 0.634468 -0.245053 -0.753085 0.610583 0.707582 -0.524107 -0.473961 0.687151 0.353940 0.634468 -0.164775 -0.774621 0.610583 0.758615 -0.447061 -0.473961 0.646271 0.424010 0.634468 -0.082682 -0.787624 0.610583 0.800995 -0.365743 -0.473961 0.598671 0.488921 0.634468 -0.000323 -0.791952 0.610583 0.834916 -0.279779 -0.473961 0.544132 0.548973 0.634468 0.082682 -0.787624 0.610583 0.859640 -0.190733 -0.473961 0.483599 0.602979 0.634468 0.164775 -0.774621 0.610583 0.874896 -0.099586 -0.473961 0.417739 0.650342 0.634468 0.245053 -0.753085 0.610583 0.880507 -0.008223 -0.473961 0.347968 0.690195 0.634468 0.321909 -0.723577 0.610583 0.876520 0.084106 -0.473961 0.273714 0.722863 0.634468 0.395972 -0.685853 0.610583 0.862877 0.175509 -0.473961 0.196446 0.747569 0.634468 0.465674 -0.640575 0.610583 0.839995 0.264138 -0.473961 0.117777 0.763924 0.634468 0.529657 -0.588771 0.610583 0.807685 0.350721 -0.473961 0.037064 0.772060 0.634468 0.588448 -0.530017 0.610583 0.766479 0.433440 -0.473961 -0.044058 0.771693 0.634468 0.640756 -0.465424 0.610583 0.716830 0.511386 -0.473961 -0.124694 0.762825 0.634468 0.686007 -0.395705 0.610583 0.659869 0.583039 -0.473961 -0.203211 0.745759 0.634468 0.723380 -0.322351 0.610583 0.595128 0.648986 -0.473961 -0.280253 0.720353 0.634468 0.753181 -0.244760 0.610583 0.523832 0.707786 -0.473961 -0.354208 0.687014 0.634468 0.774685 -0.164473 0.610583 0.447524 0.758342 -0.473961 -0.423615 0.646530 0.634468 0.787574 -0.083163 0.610583 0.365580 0.801069 -0.473961 -0.489043 0.598572 0.634468 0.791952 -0.000161 0.610583 0.279609 0.834973 -0.473961 -0.549084 0.544020 0.634468 0.787608 0.082842 0.610583 0.190558 0.859679 -0.473961 -0.603077 0.483476 0.634468 0.774588 0.164933 0.610583 0.100283 0.874817 -0.473961 -0.650009 0.418257 0.634468 0.753280 0.244453 0.610583 0.008043 0.880509 -0.473961 -0.690266 0.347827 0.634468 0.723511 0.322056 0.610583 -0.084285 0.876503 -0.473961 -0.722919 0.273567 0.634468 0.685773 0.396112 0.610583 -0.175684 0.862842 -0.473961 -0.747609 0.196293 0.634468 0.640480 0.465804 0.610583 -0.264309 0.839941 -0.473961 -0.763948 0.117621 0.634468 0.588664 0.529777 0.610583 -0.350885 0.807614 -0.473961 -0.772068 0.036906 0.634468 0.529897 0.588556 0.610583 -0.433596 0.766391 -0.473961 -0.771684 -0.044215 0.634468 0.465294 0.640851 0.610583 -0.510815 0.717237 -0.473961 -0.762924 -0.124087 0.634468 0.396251 0.685692 0.610583 -0.583173 0.659750 -0.473961 -0.745717 -0.203363 0.634468 0.322204 0.723446 0.610583 -0.649108 0.594996 -0.473961 -0.720296 -0.280400 0.634468 0.244607 0.753230 0.610583 -0.707892 0.523688 -0.473961 -0.686941 -0.354348 0.634468 0.164316 0.774719 0.610583 -0.758433 0.447370 -0.473961 -0.646444 -0.423746 0.634468 0.083002 0.787591 0.610583 -0.801144 0.365417 -0.473961 -0.598472 -0.489165 0.634468 0.000000 0.791952 0.610583 -0.835030 0.279439 -0.473961 -0.543908 -0.549195 0.634468 -0.083002 0.787591 0.610583 -0.859527 0.191242 -0.473961 -0.483956 -0.602692 0.634468 -0.164316 0.774719 0.610583 -0.874837 0.100104 -0.473961 -0.418124 -0.650095 0.634468 -0.244607 0.753230 0.610583 -0.880511 0.007864 -0.473961 -0.347687 -0.690337 0.634468 -0.322204 0.723446 0.610583 -0.876485 -0.084463 -0.473961 -0.273420 -0.722975 0.634468 -0.396251 0.685692 0.610583 -0.862981 -0.174997 -0.473961 -0.196889 -0.747453 0.634468 -0.465294 0.640851 0.610583 -0.839887 -0.264480 -0.473961 -0.117466 -0.763972 0.634468 -0.529897 0.588556 0.610583 -0.807542 -0.351050 -0.473961 -0.036749 -0.772075 0.634468 -0.588664 0.529777 0.610583 -0.766736 -0.432986 -0.473961 0.043601 -0.771719 0.634468 -0.640480 0.465804 0.610583 -0.717133 -0.510961 -0.473961 0.124242 -0.762899 0.634468 -0.685773 0.396112 0.610583 -0.659631 -0.583307 -0.473961 0.203515 -0.745676 0.634468 -0.723511 0.322056 0.610583 -0.594863 -0.649229 -0.473961 0.280546 -0.720239 0.634468 -0.753280 0.244453 0.610583 -0.524251 -0.707475 -0.473961 0.353801 -0.687223 0.634468 -0.774588 0.164933 0.610583 -0.447215 -0.758524 -0.473961 0.423878 -0.646358 0.634468 -0.787608 0.082842 0.610583 0.247468 -0.960841 0.124674 0.857946 0.277100 0.432603 -0.450210 -0.000092 0.892923 0.346809 -0.929613 0.124674 0.824179 0.365493 0.432603 -0.447720 -0.047276 0.892923 0.441440 -0.888587 0.124674 0.781783 0.449078 0.432603 -0.440393 -0.093500 0.892923 0.532139 -0.837427 0.124674 0.730410 0.528541 0.432603 -0.428169 -0.139141 0.892923 0.616977 -0.777043 0.124674 0.670993 0.602182 0.432603 -0.411227 -0.183250 0.892923 0.694310 -0.708794 0.124674 0.604853 0.668586 0.432603 -0.389982 -0.224951 0.892923 0.764773 -0.632122 0.124674 0.531449 0.728297 0.432603 -0.364258 -0.264585 0.892923 0.826812 -0.548487 0.124674 0.452192 0.779986 0.432603 -0.334521 -0.301304 0.892923 0.879744 -0.458811 0.124674 0.367953 0.823083 0.432603 -0.301100 -0.334705 0.892923 0.922621 -0.365003 0.124674 0.280519 0.856834 0.432603 -0.264726 -0.364155 0.892923 0.955794 -0.266295 0.124674 0.189171 0.881515 0.432603 -0.225102 -0.389894 0.892923 0.978440 -0.164655 0.124674 0.095740 0.896487 0.432603 -0.182999 -0.411339 0.892923 0.990247 -0.062191 0.124674 0.002157 0.901582 0.432603 -0.139308 -0.428114 0.892923 0.991311 0.041937 0.124674 -0.092348 0.896843 0.432603 -0.093671 -0.440357 0.892923 0.981456 0.145602 0.124674 -0.185835 0.882225 0.432603 -0.047003 -0.447749 0.892923 0.960992 0.246881 0.124674 -0.276576 0.858115 0.432603 -0.000183 -0.450210 0.892923 0.929825 0.346241 0.124674 -0.364989 0.824402 0.432603 0.047003 -0.447749 0.892923 0.888415 0.441786 0.124674 -0.449382 0.781608 0.432603 0.093671 -0.440357 0.892923 0.837220 0.532465 0.124674 -0.528825 0.730205 0.432603 0.139308 -0.428114 0.892923 0.777420 0.616502 0.124674 -0.601772 0.671361 0.432603 0.182999 -0.411339 0.892923 0.708524 0.694586 0.124674 -0.668822 0.604593 0.432603 0.225102 -0.389894 0.892923 0.631825 0.765019 0.124674 -0.728504 0.531166 0.432603 0.264726 -0.364155 0.892923 0.548992 0.826477 0.124674 -0.779709 0.452668 0.432603 0.301100 -0.334705 0.892923 0.459348 0.879463 0.124674 -0.822858 0.368456 0.432603 0.334521 -0.301304 0.892923 0.364644 0.922763 0.124674 -0.856943 0.280185 0.432603 0.364258 -0.264585 0.892923 0.265924 0.955898 0.124674 -0.881589 0.188829 0.432603 0.389982 -0.224951 0.892923 0.165252 0.978339 0.124674 -0.896428 0.096288 0.432603 0.411227 -0.183250 0.892923 0.061805 0.990271 0.124674 -0.901583 0.001806 0.432603 0.428169 -0.139141 0.892923 -0.042323 0.991295 0.124674 -0.896807 -0.092697 0.432603 0.440393 -0.093500 0.892923 -0.145003 0.981545 0.124674 -0.882338 -0.185295 0.432603 0.447720 -0.047276 0.892923 -0.247077 0.960942 0.124674 -0.858058 -0.276750 0.432603 0.450210 -0.000092 0.892923 -0.346430 0.929754 0.124674 -0.824327 -0.365157 0.432603 0.447740 0.047094 0.892923 -0.441967 0.888325 0.124674 -0.781516 -0.449541 0.432603 0.440338 0.093761 0.892923 -0.531798 0.837644 0.124674 -0.730626 -0.528244 0.432603 0.428225 0.138967 0.892923 -0.616660 0.777294 0.124674 -0.671238 -0.601909 0.432603 0.411302 0.183083 0.892923 -0.694730 0.708383 0.124674 -0.604457 -0.668945 0.432603 0.389848 0.225182 0.892923 -0.765148 0.631669 0.124674 -0.531018 -0.728612 0.432603 0.364101 0.264801 0.892923 -0.826589 0.548824 0.124674 -0.452509 -0.779801 0.432603 0.334644 0.301168 0.892923 -0.879557 0.459169 0.124674 -0.368288 -0.822933 0.432603 0.301236 0.334582 0.892923 -0.922837 0.364456 0.124674 -0.280011 -0.857000 0.432603 0.264511 0.364311 0.892923 -0.955686 0.266685 0.124674 -0.189531 -0.881438 0.432603 0.225261 0.389803 0.892923 -0.978373 0.165053 0.124674 -0.096106 -0.896448 0.432603 0.183166 0.411265 0.892923 -0.990283 0.061604 0.124674 -0.001622 -0.901583 0.432603 0.139054 0.428197 0.892923 -0.991286 -0.042524 0.124674 0.092879 -0.896788 0.432603 0.093410 0.440412 0.892923 -0.981515 -0.145203 0.124674 0.185475 -0.882300 0.432603 0.047185 0.447730 0.892923 -0.960891 -0.247273 0.124674 0.276925 -0.858002 0.432603 0.000000 0.450210 0.892923 -0.929684 -0.346619 0.124674 0.365325 -0.824253 0.432603 -0.047185 0.447730 0.892923 -0.888677 -0.441259 0.124674 0.448919 -0.781874 0.432603 -0.093410 0.440412 0.892923 -0.837535 -0.531969 0.124674 0.528392 -0.730518 0.432603 -0.139054 0.428197 0.892923 -0.777169 -0.616819 0.124674 0.602046 -0.671115 0.432603 -0.183166 0.411265 0.892923 -0.708241 -0.694874 0.124674 0.669068 -0.604321 0.432603 -0.225261 0.389803 0.892923 -0.632278 -0.764644 0.124674 0.728189 -0.531598 0.432603 -0.264511 0.364311 0.892923 -0.548655 -0.826700 0.124674 0.779894 -0.452351 0.432603 -0.301236 0.334582 0.892923 -0.458990 -0.879650 0.124674 0.823008 -0.368121 0.432603 -0.334644 0.301168 0.892923 -0.365191 -0.922546 0.124674 0.856777 -0.280693 0.432603 -0.364101 0.264801 0.892923 -0.266490 -0.955740 0.124674 0.881477 -0.189351 0.432603 -0.389848 0.225182 0.892923 -0.164854 -0.978407 0.124674 0.896467 -0.095923 0.432603 -0.411302 0.183083 0.892923 -0.061402 -0.990296 0.124674 0.901584 -0.001439 0.432603 -0.428225 0.138967 0.892923 0.041735 -0.991320 0.124674 0.896862 0.092165 0.432603 -0.440338 0.093761 0.892923 0.145402 -0.981486 0.124674 0.882263 0.185655 0.432603 -0.447740 0.047094 0.892923 0.309606 0.703908 -0.639263 0.307056 -0.710291 -0.633406 -0.899923 -0.000183 -0.436049 0.234126 0.732481 -0.639263 0.379808 -0.674197 -0.633406 -0.894947 -0.094501 -0.436049 0.156820 0.752828 -0.639263 0.447746 -0.631126 -0.633406 -0.880301 -0.186897 -0.436049 0.077055 0.765118 -0.639263 0.511427 -0.580723 -0.633406 -0.855865 -0.278129 -0.436049 -0.003560 0.768980 -0.639263 0.569474 -0.523923 -0.633406 -0.822002 -0.366298 -0.436049 -0.083370 0.764455 -0.639263 0.620787 -0.461974 -0.633406 -0.779534 -0.449654 -0.436049 -0.163031 0.751507 -0.639263 0.665786 -0.394367 -0.633406 -0.728114 -0.528878 -0.436049 -0.240897 0.730282 -0.639263 0.703452 -0.322415 -0.633406 -0.668673 -0.602276 -0.436049 -0.316109 0.701012 -0.639263 0.733369 -0.246913 -0.633406 -0.601868 -0.669041 -0.436049 -0.387175 0.664408 -0.639263 0.755039 -0.169446 -0.633406 -0.529161 -0.727908 -0.436049 -0.454677 0.620170 -0.639263 0.768640 -0.089379 -0.633406 -0.449957 -0.779359 -0.436049 -0.517171 0.569101 -0.639263 0.773774 -0.008328 -0.633406 -0.365796 -0.822225 -0.436049 -0.573457 0.512338 -0.639263 0.770458 0.072045 -0.633406 -0.278462 -0.855757 -0.436049 -0.623995 0.449413 -0.639263 0.758664 0.152397 -0.633406 -0.187239 -0.880229 -0.436049 -0.667660 0.381539 -0.639263 0.738513 0.231072 -0.633406 -0.093954 -0.895005 -0.436049 -0.703719 0.310036 -0.639263 0.710478 0.306622 -0.633406 -0.000367 -0.899923 -0.436049 -0.732337 0.234573 -0.639263 0.674429 0.379396 -0.633406 0.093954 -0.895005 -0.436049 -0.752889 0.156527 -0.639263 0.630951 0.447992 -0.633406 0.187239 -0.880229 -0.436049 -0.765148 0.076757 -0.639263 0.580524 0.511653 -0.633406 0.278462 -0.855757 -0.436049 -0.768982 -0.003090 -0.639263 0.524271 0.569154 -0.633406 0.365796 -0.822225 -0.436049 -0.764423 -0.083668 -0.639263 0.461732 0.620967 -0.633406 0.449957 -0.779359 -0.436049 -0.751444 -0.163324 -0.639263 0.394108 0.665940 -0.633406 0.529161 -0.727908 -0.436049 -0.730429 -0.240451 -0.639263 0.322845 0.703255 -0.633406 0.601868 -0.669041 -0.436049 -0.701205 -0.315681 -0.639263 0.247361 0.733218 -0.633406 0.668673 -0.602276 -0.436049 -0.664258 -0.387433 -0.639263 0.169152 0.755105 -0.633406 0.728114 -0.528878 -0.436049 -0.619993 -0.454918 -0.639263 0.089080 0.768675 -0.633406 0.779534 -0.449654 -0.436049 -0.569417 -0.516824 -0.639263 0.008801 0.773769 -0.633406 0.822002 -0.366298 -0.436049 -0.512114 -0.573656 -0.639263 -0.072344 0.770430 -0.633406 0.855865 -0.278129 -0.436049 -0.449171 -0.624170 -0.639263 -0.152693 0.758605 -0.633406 0.880301 -0.186897 -0.436049 -0.381947 -0.667427 -0.639263 -0.230620 0.738655 -0.633406 0.894947 -0.094501 -0.436049 -0.309892 -0.703782 -0.639263 -0.306766 0.710416 -0.633406 0.899923 -0.000183 -0.436049 -0.234424 -0.732385 -0.639263 -0.379534 0.674352 -0.633406 0.894986 0.094136 -0.436049 -0.156374 -0.752921 -0.639263 -0.448120 0.630860 -0.633406 0.880191 0.187419 -0.436049 -0.077366 -0.765086 -0.639263 -0.511190 0.580931 -0.633406 0.855978 0.277781 -0.436049 0.003246 -0.768981 -0.639263 -0.569261 0.524155 -0.633406 0.822151 0.365964 -0.436049 0.083823 -0.764406 -0.639263 -0.621061 0.461606 -0.633406 0.779267 0.450115 -0.436049 0.163477 -0.751411 -0.639263 -0.666020 0.393972 -0.633406 0.727800 0.529309 -0.436049 0.240599 -0.730380 -0.639263 -0.703321 0.322702 -0.633406 0.668919 0.602004 -0.436049 0.315823 -0.701141 -0.639263 -0.733268 0.247212 -0.633406 0.602140 0.668796 -0.436049 0.387569 -0.664179 -0.639263 -0.755140 0.168998 -0.633406 0.528729 0.728221 -0.436049 0.454425 -0.620355 -0.639263 -0.768604 0.089692 -0.633406 0.450274 0.779175 -0.436049 0.516940 -0.569312 -0.639263 -0.773771 0.008643 -0.633406 0.366131 0.822076 -0.436049 0.573761 -0.511998 -0.639263 -0.770415 -0.072501 -0.633406 0.277955 0.855922 -0.436049 0.624262 -0.449044 -0.639263 -0.758574 -0.152847 -0.633406 0.186718 0.880340 -0.436049 0.667505 -0.381811 -0.639263 -0.738608 -0.230771 -0.633406 0.094318 0.894967 -0.436049 0.703845 -0.309749 -0.639263 -0.710353 -0.306911 -0.633406 0.000000 0.899923 -0.436049 0.732433 -0.234275 -0.639263 -0.674275 -0.379671 -0.633406 -0.094318 0.894967 -0.436049 0.752796 -0.156973 -0.639263 -0.631217 -0.447618 -0.633406 -0.186718 0.880340 -0.436049 0.765102 -0.077210 -0.639263 -0.580827 -0.511309 -0.633406 -0.277955 0.855922 -0.436049 0.768981 0.003403 -0.639263 -0.524039 -0.569367 -0.633406 -0.366131 0.822076 -0.436049 0.764389 0.083979 -0.639263 -0.461479 -0.621155 -0.633406 -0.450274 0.779175 -0.436049 0.751541 0.162878 -0.639263 -0.394502 -0.665706 -0.633406 -0.528729 0.728221 -0.436049 0.730331 0.240748 -0.639263 -0.322559 -0.703386 -0.633406 -0.602140 0.668796 -0.436049 0.701076 0.315966 -0.639263 -0.247062 -0.733319 -0.633406 -0.668919 0.602004 -0.436049 0.664487 0.387039 -0.639263 -0.169600 -0.755005 -0.633406 -0.727800 0.529309 -0.436049 0.620263 0.454551 -0.639263 -0.089536 -0.768622 -0.633406 -0.779267 0.450115 -0.436049 0.569207 0.517055 -0.639263 -0.008485 -0.773773 -0.633406 -0.822151 0.365964 -0.436049 0.511881 0.573865 -0.639263 0.072658 -0.770401 -0.633406 -0.855978 0.277781 -0.436049 0.449541 0.623904 -0.639263 0.152243 -0.758695 -0.633406 -0.880191 0.187419 -0.436049 0.381675 0.667583 -0.639263 0.230921 -0.738561 -0.633406 -0.894986 0.094136 -0.436049 -0.590117 -0.214643 -0.778261 0.129820 -0.976692 0.170935 -0.796812 -0.000162 0.604228 -0.564371 -0.275310 -0.778261 0.231469 -0.957707 0.170935 -0.792406 -0.083673 0.604228 -0.532741 -0.332411 -0.778261 0.329641 -0.928503 0.170935 -0.779438 -0.165483 0.604228 -0.494968 -0.386415 -0.778261 0.425139 -0.888841 0.170935 -0.757802 -0.246262 0.604228 -0.451743 -0.436163 -0.778261 0.515954 -0.839388 0.170935 -0.727818 -0.324329 0.604228 -0.404022 -0.480703 -0.778261 0.600306 -0.781290 0.170935 -0.690216 -0.398133 0.604228 -0.351416 -0.520400 -0.778261 0.678884 -0.714071 0.170935 -0.644688 -0.468280 0.604228 -0.294939 -0.554365 -0.778261 0.749985 -0.638986 0.170935 -0.592058 -0.533269 0.604228 -0.235213 -0.582224 -0.778261 0.812825 -0.556863 0.170935 -0.532907 -0.592384 0.604228 -0.173500 -0.603496 -0.778261 0.866243 -0.469473 0.170935 -0.468531 -0.644506 0.604228 -0.109294 -0.618356 -0.778261 0.910676 -0.376099 0.170935 -0.398402 -0.690062 0.604228 -0.043884 -0.626406 -0.778261 0.945078 -0.278582 0.170935 -0.323884 -0.728016 0.604228 0.021382 -0.627577 -0.778261 0.968892 -0.178966 0.170935 -0.246557 -0.757706 0.604228 0.087039 -0.621879 -0.778261 0.982313 -0.076433 0.170935 -0.165786 -0.779374 0.604228 0.151737 -0.609332 -0.778261 0.984914 0.026941 0.170935 -0.083189 -0.792457 0.604228 0.214283 -0.590248 -0.778261 0.976772 0.129223 0.170935 -0.000325 -0.796812 0.604228 0.274965 -0.564539 -0.778261 0.957849 0.230884 0.170935 0.083189 -0.792457 0.604228 0.332618 -0.532611 -0.778261 0.928375 0.330002 0.170935 0.165786 -0.779374 0.604228 0.386608 -0.494817 -0.778261 0.888675 0.425485 0.170935 0.246557 -0.757706 0.604228 0.435887 -0.452009 -0.778261 0.839703 0.515441 0.170935 0.323884 -0.728016 0.604228 0.480860 -0.403836 -0.778261 0.781057 0.600610 0.170935 0.398402 -0.690062 0.604228 0.520537 -0.351214 -0.778261 0.713807 0.679162 0.170935 0.468531 -0.644506 0.604228 0.554185 -0.295278 -0.778261 0.639444 0.749595 0.170935 0.532907 -0.592384 0.604228 0.582080 -0.235569 -0.778261 0.557360 0.812485 0.170935 0.592058 -0.533269 0.604228 0.603563 -0.173265 -0.778261 0.469136 0.866425 0.170935 0.644688 -0.468280 0.604228 0.618399 -0.109054 -0.778261 0.375745 0.910822 0.170935 0.690216 -0.398133 0.604228 0.626379 -0.044267 -0.778261 0.279160 0.944908 0.170935 0.727818 -0.324329 0.604228 0.627568 0.021626 -0.778261 0.178589 0.968962 0.170935 0.757802 -0.246262 0.604228 0.621846 0.087281 -0.778261 0.076051 0.982343 0.170935 0.779438 -0.165483 0.604228 0.609425 0.151365 -0.778261 -0.026339 0.984930 0.170935 0.792406 -0.083673 0.604228 0.590204 0.214403 -0.778261 -0.129422 0.976745 0.170935 0.796812 -0.000162 0.604228 0.564483 0.275080 -0.778261 -0.231079 0.957802 0.170935 0.792440 0.083350 0.604228 0.532544 0.332727 -0.778261 -0.330191 0.928308 0.170935 0.779340 0.165945 0.604228 0.495125 0.386214 -0.778261 -0.424777 0.889014 0.170935 0.757902 0.245953 0.604228 0.451920 0.435979 -0.778261 -0.515613 0.839598 0.170935 0.727950 0.324032 0.604228 0.403738 0.480943 -0.778261 -0.600769 0.780934 0.170935 0.689980 0.398542 0.604228 0.351108 0.520608 -0.778261 -0.679308 0.713668 0.170935 0.644410 0.468662 0.604228 0.295165 0.554245 -0.778261 -0.749725 0.639292 0.170935 0.592275 0.533028 0.604228 0.235450 0.582128 -0.778261 -0.812598 0.557194 0.170935 0.533148 0.592167 0.604228 0.173143 0.603599 -0.778261 -0.866521 0.468960 0.170935 0.468149 0.644783 0.604228 0.109546 0.618312 -0.778261 -0.910523 0.376470 0.170935 0.398683 0.689899 0.604228 0.044139 0.626388 -0.778261 -0.944965 0.278967 0.170935 0.324181 0.727884 0.604228 -0.021754 0.627564 -0.778261 -0.968998 0.178392 0.170935 0.246108 0.757852 0.604228 -0.087407 0.621828 -0.778261 -0.982358 0.075851 0.170935 0.165324 0.779472 0.604228 -0.151489 0.609394 -0.778261 -0.984925 -0.026540 0.170935 0.083512 0.792423 0.604228 -0.214523 0.590161 -0.778261 -0.976719 -0.129621 0.170935 0.000000 0.796812 0.604228 -0.275195 0.564427 -0.778261 -0.957754 -0.231274 0.170935 -0.083512 0.792423 0.604228 -0.332302 0.532808 -0.778261 -0.928570 -0.329452 0.170935 -0.165324 0.779472 0.604228 -0.386315 0.495046 -0.778261 -0.888928 -0.424958 0.170935 -0.246108 0.757852 0.604228 -0.436071 0.451831 -0.778261 -0.839493 -0.515783 0.170935 -0.324181 0.727884 0.604228 -0.481025 0.403640 -0.778261 -0.780812 -0.600928 0.170935 -0.398683 0.689899 0.604228 -0.520329 0.351522 -0.778261 -0.714209 -0.678739 0.170935 -0.468149 0.644783 0.604228 -0.554305 0.295052 -0.778261 -0.639139 -0.749855 0.170935 -0.533148 0.592167 0.604228 -0.582176 0.235332 -0.778261 -0.557029 -0.812712 0.170935 -0.592275 0.533028 0.604228 -0.603461 0.173623 -0.778261 -0.469649 -0.866147 0.170935 -0.644410 0.468662 0.604228 -0.618334 0.109420 -0.778261 -0.376284 -0.910600 0.170935 -0.689980 0.398542 0.604228 -0.626397 0.044012 -0.778261 -0.278775 -0.945022 0.170935 -0.727950 0.324032 0.604228 -0.627560 -0.021882 -0.778261 -0.178194 -0.969035 0.170935 -0.757902 0.245953 0.604228 -0.621897 -0.086912 -0.778261 -0.076634 -0.982298 0.170935 -0.779340 0.165945 0.604228 -0.609363 -0.151613 -0.778261 0.026740 -0.984919 0.170935 -0.792440 0.083350 0.604228 -0.203871 0.959901 -0.192424 -0.697725 -0.280340 -0.659235 -0.686744 -0.000140 0.726900 -0.303353 0.933247 -0.192424 -0.664500 -0.351922 -0.659235 -0.682947 -0.072115 0.726900 -0.398596 0.896713 -0.192424 -0.624376 -0.419004 -0.659235 -0.671771 -0.142624 0.726900 -0.490383 0.849998 -0.192424 -0.577022 -0.482136 -0.659235 -0.653123 -0.212245 0.726900 -0.576768 0.793921 -0.192424 -0.523313 -0.539957 -0.659235 -0.627281 -0.279528 0.726900 -0.656071 0.729756 -0.192424 -0.464431 -0.591366 -0.659235 -0.594873 -0.343137 0.726900 -0.728941 0.656976 -0.192424 -0.399894 -0.636784 -0.659235 -0.555634 -0.403594 0.726900 -0.793783 0.576959 -0.192424 -0.330952 -0.675189 -0.659235 -0.510274 -0.459606 0.726900 -0.849880 0.490588 -0.192424 -0.258365 -0.706157 -0.659235 -0.459294 -0.510555 0.726900 -0.896218 0.399709 -0.192424 -0.183661 -0.729163 -0.659235 -0.403810 -0.555477 0.726900 -0.933174 0.303577 -0.192424 -0.106228 -0.744396 -0.659235 -0.343368 -0.594740 0.726900 -0.959852 0.204102 -0.192424 -0.027625 -0.751430 -0.659235 -0.279144 -0.627452 0.726900 -0.975854 0.103355 -0.192424 0.050532 -0.750238 -0.659235 -0.212499 -0.653040 0.726900 -0.981312 0.000509 -0.192424 0.128884 -0.740810 -0.659235 -0.142885 -0.671715 0.726900 -0.975961 -0.102342 -0.192424 0.205817 -0.723222 -0.659235 -0.071698 -0.682991 0.726900 -0.960025 -0.203285 -0.192424 0.279913 -0.697896 -0.659235 -0.000280 -0.686744 0.726900 -0.933432 -0.302783 -0.192424 0.351516 -0.664715 -0.659235 0.071698 -0.682991 0.726900 -0.896558 -0.398945 -0.192424 0.419247 -0.624213 -0.659235 0.142885 -0.671715 0.726900 -0.849808 -0.490714 -0.192424 0.482360 -0.576835 -0.659235 0.212499 -0.653040 0.726900 -0.794274 -0.576283 -0.192424 0.539637 -0.523643 -0.659235 0.279144 -0.627452 0.726900 -0.729501 -0.656355 -0.192424 0.591546 -0.464201 -0.659235 0.343368 -0.594740 0.726900 -0.656692 -0.729197 -0.192424 0.636940 -0.399647 -0.659235 0.403810 -0.555477 0.726900 -0.577444 -0.793430 -0.192424 0.674987 -0.331365 -0.659235 0.459294 -0.510555 0.726900 -0.491107 -0.849581 -0.192424 0.705999 -0.258796 -0.659235 0.510274 -0.459606 0.726900 -0.399360 -0.896373 -0.192424 0.729234 -0.183377 -0.659235 0.555634 -0.403594 0.726900 -0.303214 -0.933292 -0.192424 0.744437 -0.105938 -0.659235 0.594873 -0.343137 0.726900 -0.204688 -0.959727 -0.192424 0.751413 -0.028084 -0.659235 0.627281 -0.279528 0.726900 -0.102975 -0.975894 -0.192424 0.750218 0.050824 -0.659235 0.653123 -0.212245 0.726900 -0.000127 -0.981312 -0.192424 0.740759 0.129172 -0.659235 0.671771 -0.142624 0.726900 0.101746 -0.976023 -0.192424 0.723347 0.205375 -0.659235 0.682947 -0.072115 0.726900 0.203480 -0.959984 -0.192424 0.697839 0.280056 -0.659235 0.686744 -0.000140 0.726900 0.302973 -0.933371 -0.192424 0.664644 0.351652 -0.659235 0.682976 0.071837 0.726900 0.399128 -0.896476 -0.192424 0.624127 0.419374 -0.659235 0.671686 0.143022 0.726900 0.490037 -0.850198 -0.192424 0.577219 0.481901 -0.659235 0.653209 0.211978 0.726900 0.576445 -0.794156 -0.192424 0.523533 0.539743 -0.659235 0.627395 0.279272 0.726900 0.656503 -0.729367 -0.192424 0.464081 0.591641 -0.659235 0.594670 0.343489 0.726900 0.729331 -0.656544 -0.192424 0.399517 0.637021 -0.659235 0.555395 0.403923 0.726900 0.793548 -0.577283 -0.192424 0.331227 0.675054 -0.659235 0.510461 0.459398 0.726900 0.849681 -0.490934 -0.192424 0.258653 0.706052 -0.659235 0.459502 0.510368 0.726900 0.896454 -0.399177 -0.192424 0.183229 0.729272 -0.659235 0.403481 0.555716 0.726900 0.933050 -0.303957 -0.192424 0.106531 0.744353 -0.659235 0.343611 0.594600 0.726900 0.959769 -0.204493 -0.192424 0.027931 0.751418 -0.659235 0.279400 0.627338 0.726900 0.975915 -0.102776 -0.192424 -0.050977 0.750207 -0.659235 0.212112 0.653166 0.726900 0.981312 0.000073 -0.192424 -0.129323 0.740733 -0.659235 0.142487 0.671800 0.726900 0.976002 0.101945 -0.192424 -0.205522 0.723305 -0.659235 0.071976 0.682962 0.726900 0.959942 0.203676 -0.192424 -0.280198 0.697782 -0.659235 0.000000 0.686744 0.726900 0.933309 0.303163 -0.192424 -0.351787 0.664572 -0.659235 -0.071976 0.682962 0.726900 0.896794 0.398414 -0.192424 -0.418877 0.624461 -0.659235 -0.142487 0.671800 0.726900 0.850098 0.490210 -0.192424 -0.482018 0.577121 -0.659235 -0.212112 0.653166 0.726900 0.794039 0.576607 -0.192424 -0.539850 0.523423 -0.659235 -0.279400 0.627338 0.726900 0.729233 0.656652 -0.192424 -0.591735 0.463960 -0.659235 -0.343611 0.594600 0.726900 0.657124 0.728808 -0.192424 -0.636703 0.400024 -0.659235 -0.403481 0.555716 0.726900 0.577121 0.793665 -0.192424 -0.675122 0.331090 -0.659235 -0.459502 0.510368 0.726900 0.490761 0.849780 -0.192424 -0.706104 0.258509 -0.659235 -0.510461 0.459398 0.726900 0.399891 0.896136 -0.192424 -0.729125 0.183809 -0.659235 -0.555395 0.403923 0.726900 0.303767 0.933112 -0.192424 -0.744374 0.106380 -0.659235 -0.594670 0.343489 0.726900 0.204298 0.959810 -0.192424 -0.751424 0.027778 -0.659235 -0.627395 0.279272 0.726900 0.102577 0.975936 -0.192424 -0.750197 -0.051130 -0.659235 -0.653209 0.211978 0.726900 0.000709 0.981312 -0.192424 -0.740836 -0.128733 -0.659235 -0.671686 0.143022 0.726900 -0.102144 0.975981 -0.192424 -0.723263 -0.205669 -0.659235 -0.682976 0.071837 0.726900 -0.851126 0.050601 0.522518 0.043067 0.998719 -0.026565 -0.523192 -0.000107 -0.852215 -0.851742 -0.038882 0.522518 -0.061843 0.997732 -0.026565 -0.520300 -0.054940 -0.852215 -0.843103 -0.127093 0.522518 -0.165086 0.985921 -0.026565 -0.511785 -0.108657 -0.852215 -0.825140 -0.214756 0.522518 -0.267508 0.963189 -0.026565 -0.497578 -0.161697 -0.852215 -0.798087 -0.300054 0.522518 -0.366984 0.929848 -0.026565 -0.477891 -0.212957 -0.852215 -0.762625 -0.381284 0.522518 -0.461531 0.886726 -0.026565 -0.453201 -0.261417 -0.852215 -0.718464 -0.459113 0.522518 -0.551924 0.833471 -0.026565 -0.423307 -0.307476 -0.852215 -0.666389 -0.531885 0.522518 -0.636239 0.771035 -0.026565 -0.388750 -0.350148 -0.852215 -0.606973 -0.598798 0.522518 -0.713544 0.700106 -0.026565 -0.349911 -0.388964 -0.852215 -0.541531 -0.658574 0.522518 -0.782369 0.622248 -0.026565 -0.307641 -0.423187 -0.852215 -0.469525 -0.711703 0.522518 -0.843276 0.536823 -0.026565 -0.261593 -0.453099 -0.852215 -0.392348 -0.756993 0.522518 -0.894895 0.445486 -0.026565 -0.212665 -0.478021 -0.852215 -0.311643 -0.793634 0.522518 -0.936307 0.350177 -0.026565 -0.161891 -0.497515 -0.852215 -0.226748 -0.821925 0.522518 -0.967851 0.250117 -0.026565 -0.108856 -0.511743 -0.852215 -0.139355 -0.841163 0.522518 -0.988735 0.147302 -0.026565 -0.054622 -0.520333 -0.852215 -0.051121 -0.851095 0.522518 -0.998692 0.043678 -0.026565 -0.000213 -0.523192 -0.852215 0.038361 -0.851765 0.522518 -0.997770 -0.061233 -0.026565 0.054622 -0.520333 -0.852215 0.127421 -0.843054 0.522518 -0.985857 -0.165469 -0.026565 0.108856 -0.511743 -0.852215 0.215077 -0.825056 0.522518 -0.963085 -0.267883 -0.026565 0.161891 -0.497515 -0.852215 0.299566 -0.798270 0.522518 -0.930072 -0.366416 -0.026565 0.212665 -0.478021 -0.852215 0.381581 -0.762477 0.522518 -0.886547 -0.461876 -0.026565 0.261593 -0.453099 -0.852215 0.459393 -0.718285 0.522518 -0.833256 -0.552249 -0.026565 0.307641 -0.423187 -0.852215 0.531478 -0.666714 0.522518 -0.771423 -0.635767 -0.026565 0.349911 -0.388964 -0.852215 0.598427 -0.607339 0.522518 -0.700542 -0.713117 -0.026565 0.388750 -0.350148 -0.852215 0.658785 -0.541275 0.522518 -0.621944 -0.782611 -0.026565 0.423307 -0.307476 -0.852215 0.711886 -0.469249 0.522518 -0.536496 -0.843485 -0.026565 0.453201 -0.261417 -0.852215 0.756753 -0.392810 0.522518 -0.446032 -0.894623 -0.026565 0.477891 -0.212957 -0.852215 0.793755 -0.311334 0.522518 -0.349813 -0.936443 -0.026565 0.497578 -0.161697 -0.852215 0.822013 -0.226428 0.522518 -0.249740 -0.967948 -0.026565 0.511785 -0.108657 -0.852215 0.841078 -0.139869 0.522518 -0.147906 -0.988645 -0.026565 0.520300 -0.054940 -0.852215 0.851105 -0.050948 0.522518 -0.043474 -0.998701 -0.026565 0.523192 -0.000107 -0.852215 0.851757 0.038535 0.522518 0.061436 -0.997757 -0.026565 0.520322 0.054728 -0.852215 0.843028 0.127593 0.522518 0.165670 -0.985823 -0.026565 0.511720 0.108960 -0.852215 0.825227 0.214420 0.522518 0.267116 -0.963298 -0.026565 0.497644 0.161495 -0.852215 0.798209 0.299729 0.522518 0.366605 -0.929997 -0.026565 0.477978 0.212762 -0.852215 0.762399 0.381736 0.522518 0.462057 -0.886452 -0.026565 0.453046 0.261686 -0.852215 0.718192 0.459539 0.522518 0.552418 -0.833144 -0.026565 0.423124 0.307727 -0.852215 0.666605 0.531613 0.522518 0.635924 -0.771294 -0.026565 0.388892 0.349990 -0.852215 0.607217 0.598550 0.522518 0.713259 -0.700397 -0.026565 0.350069 0.388821 -0.852215 0.541141 0.658895 0.522518 0.782738 -0.621785 -0.026565 0.307390 0.423369 -0.852215 0.469815 0.711512 0.522518 0.843058 -0.537167 -0.026565 0.261778 0.452993 -0.852215 0.392656 0.756833 0.522518 0.894713 -0.445850 -0.026565 0.212859 0.477934 -0.852215 0.311172 0.793818 0.522518 0.936514 -0.349622 -0.026565 0.161596 0.497611 -0.852215 0.226261 0.822059 0.522518 0.967999 -0.249543 -0.026565 0.108553 0.511807 -0.852215 0.139698 0.841106 0.522518 0.988675 -0.147704 -0.026565 0.054834 0.520311 -0.852215 0.050775 0.851115 0.522518 0.998710 -0.043271 -0.026565 0.000000 0.523192 -0.852215 -0.038708 0.851749 0.522518 0.997745 0.061640 -0.026565 -0.054834 0.520311 -0.852215 -0.126921 0.843129 0.522518 0.985955 0.164885 -0.026565 -0.108553 0.511807 -0.852215 -0.214588 0.825183 0.522518 0.963244 0.267312 -0.026565 -0.161596 0.497611 -0.852215 -0.299892 0.798148 0.522518 0.929923 0.366795 -0.026565 -0.212859 0.477934 -0.852215 -0.381892 0.762322 0.522518 0.886358 0.462237 -0.026565 -0.261778 0.452993 -0.852215 -0.458967 0.718558 0.522518 0.833583 0.551755 -0.026565 -0.307390 0.423369 -0.852215 -0.531749 0.666497 0.522518 0.771164 0.636082 -0.026565 -0.350069 0.388821 -0.852215 -0.598674 0.607095 0.522518 0.700251 0.713402 -0.026565 -0.388892 0.349990 -0.852215 -0.658464 0.541665 0.522518 0.622408 0.782242 -0.026565 -0.423124 0.307727 -0.852215 -0.711608 0.469670 0.522518 0.536995 0.843167 -0.026565 -0.453046 0.261686 -0.852215 -0.756913 0.392502 0.522518 0.445668 0.894804 -0.026565 -0.477978 0.212762 -0.852215 -0.793882 0.311010 0.522518 0.349431 0.936585 -0.026565 -0.497644 0.161495 -0.852215 -0.821879 0.226915 0.522518 0.250314 0.967800 -0.026565 -0.511720 0.108960 -0.852215 -0.841135 0.139527 0.522518 0.147503 0.988705 -0.026565 -0.520322 0.054728 -0.852215 -0.535032 -0.788509 0.303306 -0.686034 0.615023 0.388721 -0.493051 -0.000100 -0.870001 -0.449443 -0.840241 0.303306 -0.746714 0.539735 0.388721 -0.490325 -0.051775 -0.870001 -0.359787 -0.882359 0.303306 -0.798711 0.459300 0.388721 -0.482300 -0.102397 -0.870001 -0.265328 -0.915208 0.303306 -0.842450 0.373060 0.388721 -0.468912 -0.152382 -0.870001 -0.167947 -0.937976 0.303306 -0.876910 0.282710 0.388721 -0.450359 -0.200688 -0.870001 -0.069665 -0.950343 0.303306 -0.901521 0.190149 0.388721 -0.427092 -0.246357 -0.870001 0.030321 -0.952411 0.303306 -0.916484 0.094616 0.388721 -0.398920 -0.289762 -0.870001 0.129973 -0.943987 0.303306 -0.921353 -0.001960 0.388721 -0.366353 -0.329976 -0.870001 0.228194 -0.925166 0.303306 -0.916074 -0.098513 0.388721 -0.329752 -0.366555 -0.870001 0.323005 -0.896478 0.303306 -0.900897 -0.193081 0.388721 -0.289917 -0.398807 -0.870001 0.415184 -0.857687 0.303306 -0.875699 -0.286438 0.388721 -0.246523 -0.426996 -0.870001 0.502789 -0.809450 0.303306 -0.840856 -0.376640 0.388721 -0.200413 -0.450482 -0.870001 0.584103 -0.752880 0.303306 -0.797212 -0.461896 0.388721 -0.152564 -0.468853 -0.870001 0.659794 -0.687516 0.303306 -0.744412 -0.542906 0.388721 -0.102585 -0.482261 -0.870001 0.728216 -0.614578 0.303306 -0.683411 -0.617936 0.388721 -0.051476 -0.490356 -0.870001 0.788182 -0.535513 0.303306 -0.615442 -0.685658 0.388721 -0.000201 -0.493051 -0.870001 0.839967 -0.449957 0.303306 -0.540191 -0.746384 0.388721 0.051476 -0.490356 -0.870001 0.882499 -0.359444 0.303306 -0.458989 -0.798890 0.388721 0.102585 -0.482261 -0.870001 0.915311 -0.264972 0.303306 -0.372732 -0.842595 0.388721 0.152564 -0.468853 -0.870001 0.937873 -0.168520 0.303306 -0.283246 -0.876737 0.388721 0.200413 -0.450482 -0.870001 0.950370 -0.069296 0.303306 -0.189798 -0.901594 0.388721 0.246523 -0.426996 -0.870001 0.952399 0.030691 0.303306 -0.094259 -0.916521 0.388721 0.289917 -0.398807 -0.870001 0.944067 0.129397 0.303306 0.001397 -0.921354 0.388721 0.329752 -0.366555 -0.870001 0.925305 0.227629 0.303306 0.097954 -0.916134 0.388721 0.366353 -0.329976 -0.870001 0.896352 0.323354 0.303306 0.193432 -0.900822 0.388721 0.398920 -0.289762 -0.870001 0.857526 0.415517 0.303306 0.286779 -0.875588 0.388721 0.427092 -0.246357 -0.870001 0.809757 0.502294 0.303306 0.376126 -0.841086 0.388721 0.450359 -0.200688 -0.870001 0.752653 0.584396 0.303306 0.462207 -0.797033 0.388721 0.468912 -0.152382 -0.870001 0.687259 0.660061 0.303306 0.543196 -0.744200 0.388721 0.482300 -0.102397 -0.870001 0.615023 0.727841 0.303306 0.617518 -0.683789 0.388721 0.490325 -0.051775 -0.870001 0.535353 0.788291 0.303306 0.685783 -0.615303 0.388721 0.493051 -0.000100 -0.870001 0.449786 0.840058 0.303306 0.746494 -0.540039 0.388721 0.490346 0.051575 -0.870001 0.359264 0.882573 0.303306 0.798983 -0.458827 0.388721 0.482240 0.102683 -0.870001 0.265701 0.915100 0.303306 0.842298 -0.373403 0.388721 0.468974 0.152191 -0.870001 0.168329 0.937908 0.303306 0.876795 -0.283068 0.388721 0.450441 0.200505 -0.870001 0.069102 0.950384 0.303306 0.901633 -0.189614 0.388721 0.426946 0.246610 -0.870001 -0.030885 0.952392 0.303306 0.916540 -0.094072 0.388721 0.398748 0.289998 -0.870001 -0.129589 0.944040 0.303306 0.921354 0.001584 0.388721 0.366488 0.329827 -0.870001 -0.227817 0.925259 0.303306 0.916114 0.098140 0.388721 0.329901 0.366421 -0.870001 -0.323536 0.896286 0.303306 0.900783 0.193615 0.388721 0.289681 0.398979 -0.870001 -0.414834 0.857857 0.303306 0.875816 0.286081 0.388721 0.246697 0.426895 -0.870001 -0.502459 0.809654 0.303306 0.841009 0.376298 0.388721 0.200596 0.450400 -0.870001 -0.584549 0.752534 0.303306 0.796938 0.462369 0.388721 0.152286 0.468943 -0.870001 -0.660201 0.687124 0.303306 0.744090 0.543347 0.388721 0.102299 0.482321 -0.870001 -0.727966 0.614875 0.303306 0.683663 0.617657 0.388721 0.051675 0.490335 -0.870001 -0.788400 0.535192 0.303306 0.615163 0.685909 0.388721 0.000000 0.493051 -0.870001 -0.840150 0.449615 0.303306 0.539887 0.746604 0.388721 -0.051675 0.490335 -0.870001 -0.882286 0.359967 0.303306 0.459463 0.798617 0.388721 -0.102299 0.482321 -0.870001 -0.915154 0.265515 0.303306 0.373231 0.842374 0.388721 -0.152286 0.468943 -0.870001 -0.937942 0.168138 0.303306 0.282889 0.876852 0.388721 -0.200596 0.450400 -0.870001 -0.950398 0.068909 0.303306 0.189431 0.901672 0.388721 -0.246697 0.426895 -0.870001 -0.952417 -0.030127 0.303306 0.094802 0.916465 0.388721 -0.289681 0.398979 -0.870001 -0.944014 -0.129781 0.303306 -0.001772 0.921354 0.388721 -0.329901 0.366421 -0.870001 -0.925213 -0.228006 0.303306 -0.098327 0.916094 0.388721 -0.366488 0.329827 -0.870001 -0.896544 -0.322823 0.303306 -0.192898 0.900936 0.388721 -0.398748 0.289998 -0.870001 -0.857772 -0.415009 0.303306 -0.286260 0.875758 0.388721 -0.426946 0.246610 -0.870001 -0.809552 -0.502624 0.303306 -0.376469 0.840932 0.388721 -0.450441 0.200505 -0.870001 -0.752415 -0.584703 0.303306 -0.462531 0.796844 0.388721 -0.468974 0.152191 -0.870001 -0.687650 -0.659654 0.303306 -0.542755 0.744522 0.388721 -0.482240 0.102683 -0.870001 -0.614726 -0.728091 0.303306 -0.617797 0.683537 0.388721 -0.490346 0.051575 -0.870001 -0.011032 -0.994433 -0.104796 0.106021 -0.105375 0.988765 -0.994303 -0.000202 0.106593 0.093252 -0.990112 -0.104796 0.116481 -0.093683 0.988765 -0.988805 -0.104411 0.106593 0.195535 -0.975082 -0.104796 0.125577 -0.081084 0.988765 -0.972624 -0.206498 0.106593 0.296653 -0.949218 -0.104796 0.133384 -0.067476 0.988765 -0.945624 -0.307298 0.106593 0.394504 -0.912899 -0.104796 0.139721 -0.053125 0.988765 -0.908209 -0.404714 0.106593 0.487143 -0.867012 -0.104796 0.144482 -0.038333 0.988765 -0.861288 -0.496811 0.106593 0.575329 -0.811181 -0.104796 0.147703 -0.022979 0.988765 -0.804475 -0.584344 0.106593 0.657178 -0.746414 -0.104796 0.149298 -0.007373 0.988765 -0.738801 -0.665440 0.106593 0.731788 -0.673427 -0.104796 0.149249 0.008316 0.988765 -0.664989 -0.739207 0.106593 0.797745 -0.593819 -0.104796 0.147579 0.023765 0.988765 -0.584657 -0.804248 0.106593 0.855588 -0.506939 -0.104796 0.144276 0.039101 0.988765 -0.497146 -0.861094 0.106593 0.904006 -0.414476 -0.104796 0.139383 0.054007 0.988765 -0.404159 -0.908457 0.106593 0.942150 -0.318389 -0.104796 0.133023 0.068185 0.988765 -0.307666 -0.945505 0.106593 0.970330 -0.217891 -0.104796 0.125144 0.081751 0.988765 -0.206876 -0.972543 0.106593 0.987823 -0.114994 -0.104796 0.115887 0.094417 0.988765 -0.103807 -0.988869 0.106593 0.994426 -0.011640 -0.104796 0.105440 0.105957 0.988765 -0.000405 -0.994303 0.106593 0.990169 0.092647 -0.104796 0.093754 0.116424 0.988765 0.103807 -0.988869 0.106593 0.975005 0.195914 -0.104796 0.081036 0.125609 0.988765 0.206876 -0.972543 0.106593 0.949102 0.297023 -0.104796 0.067425 0.133410 0.988765 0.307666 -0.945505 0.106593 0.913140 0.393946 -0.104796 0.053211 0.139689 0.988765 0.404159 -0.908457 0.106593 0.866822 0.487480 -0.104796 0.038277 0.144497 0.988765 0.497146 -0.861094 0.106593 0.810957 0.575645 -0.104796 0.022922 0.147712 0.988765 0.584657 -0.804248 0.106593 0.746816 0.656722 -0.104796 0.007464 0.149294 0.988765 0.664989 -0.739207 0.106593 0.673874 0.731377 -0.104796 -0.008224 0.149254 0.988765 0.738801 -0.665440 0.106593 0.593509 0.797976 -0.104796 -0.023822 0.147570 0.988765 0.804475 -0.584344 0.106593 0.506607 0.855785 -0.104796 -0.039157 0.144260 0.988765 0.861288 -0.496811 0.106593 0.415028 0.903753 -0.104796 -0.053922 0.139416 0.988765 0.908209 -0.404714 0.106593 0.318022 0.942274 -0.104796 -0.068237 0.132997 0.988765 0.945624 -0.307298 0.106593 0.217514 0.970415 -0.104796 -0.081800 0.125113 0.988765 0.972624 -0.206498 0.106593 0.115597 0.987752 -0.104796 -0.094346 0.115945 0.988765 0.988805 -0.104411 0.106593 0.011437 0.994428 -0.104796 -0.105978 0.105418 0.988765 0.994303 -0.000202 0.106593 -0.092849 0.990150 -0.104796 -0.116443 0.093730 0.988765 0.988848 0.104009 0.106593 -0.196113 0.974965 -0.104796 -0.125625 0.081010 0.988765 0.972501 0.207074 0.106593 -0.296267 0.949339 -0.104796 -0.133357 0.067531 0.988765 0.945750 0.306913 0.106593 -0.394132 0.913059 -0.104796 -0.139700 0.053182 0.988765 0.908374 0.404344 0.106593 -0.487657 0.866723 -0.104796 -0.144504 0.038248 0.988765 0.860993 0.497321 0.106593 -0.575810 0.810839 -0.104796 -0.147717 0.022892 0.988765 0.804128 0.584821 0.106593 -0.656874 0.746682 -0.104796 -0.149295 0.007433 0.988765 0.739072 0.665140 0.106593 -0.731514 0.673725 -0.104796 -0.149252 -0.008255 0.988765 0.665290 0.738936 0.106593 -0.798096 0.593346 -0.104796 -0.147565 -0.023852 0.988765 0.584180 0.804594 0.106593 -0.855381 0.507288 -0.104796 -0.144292 -0.039042 0.988765 0.497497 0.860892 0.106593 -0.903838 0.414844 -0.104796 -0.139405 -0.053950 0.988765 0.404529 0.908292 0.106593 -0.942338 0.317831 -0.104796 -0.132983 -0.068264 0.988765 0.307106 0.945687 0.106593 -0.970459 0.217316 -0.104796 -0.125096 -0.081825 0.988765 0.206300 0.972666 0.106593 -0.987776 0.115396 -0.104796 -0.115926 -0.094370 0.988765 0.104210 0.988827 0.106593 -0.994430 0.011235 -0.104796 -0.105397 -0.106000 0.988765 0.000000 0.994303 0.106593 -0.990131 -0.093051 -0.104796 -0.093707 -0.116462 0.988765 -0.104210 0.988827 0.106593 -0.975121 -0.195336 -0.104796 -0.081110 -0.125561 0.988765 -0.206300 0.972666 0.106593 -0.949278 -0.296460 -0.104796 -0.067504 -0.133370 0.988765 -0.307106 0.945687 0.106593 -0.912979 -0.394318 -0.104796 -0.053154 -0.139711 0.988765 -0.404529 0.908292 0.106593 -0.866624 -0.487833 -0.104796 -0.038218 -0.144512 0.988765 -0.497497 0.860892 0.106593 -0.811298 -0.575164 -0.104796 -0.023010 -0.147699 0.988765 -0.584180 0.804594 0.106593 -0.746548 -0.657026 -0.104796 -0.007403 -0.149297 0.988765 -0.665290 0.738936 0.106593 -0.673576 -0.731651 -0.104796 0.008285 -0.149251 0.988765 -0.739072 0.665140 0.106593 -0.593982 -0.797624 -0.104796 0.023735 -0.147584 0.988765 -0.804128 0.584821 0.106593 -0.507114 -0.855484 -0.104796 0.039072 -0.144284 0.988765 -0.860993 0.497321 0.106593 -0.414660 -0.903922 -0.104796 0.053978 -0.139394 0.988765 -0.908374 0.404344 0.106593 -0.317639 -0.942403 -0.104796 0.068291 -0.132969 0.988765 -0.945750 0.306913 0.106593 -0.218089 -0.970286 -0.104796 0.081726 -0.125161 0.988765 -0.972501 0.207074 0.106593 -0.115195 -0.987800 -0.104796 0.094393 -0.115906 0.988765 -0.988848 0.104009 0.106593 -0.552980 -0.360986 -0.750935 0.214192 -0.932571 0.290572 -0.805192 -0.000164 0.593014 -0.512100 -0.416954 -0.750935 0.310753 -0.904986 0.290572 -0.800741 -0.084553 0.593014 -0.466048 -0.467863 -0.750935 0.403023 -0.867837 0.290572 -0.787637 -0.167223 0.593014 -0.414446 -0.514132 -0.750935 0.491759 -0.820817 0.290572 -0.765773 -0.248852 0.593014 -0.358279 -0.554737 -0.750935 0.575078 -0.764757 0.290572 -0.735474 -0.327740 0.593014 -0.298754 -0.588934 -0.750935 0.651362 -0.700924 0.290572 -0.697476 -0.402321 0.593014 -0.235385 -0.617002 -0.750935 0.721237 -0.628797 0.290572 -0.651469 -0.473205 0.593014 -0.169422 -0.638274 -0.750935 0.783167 -0.549743 0.290572 -0.598286 -0.538878 0.593014 -0.101593 -0.652515 -0.750935 0.836471 -0.464634 0.290572 -0.538512 -0.598615 0.593014 -0.033305 -0.659536 -0.750935 0.880186 -0.375287 0.290572 -0.473459 -0.651285 0.593014 0.036003 -0.659394 -0.750935 0.914671 -0.280970 0.290572 -0.402592 -0.697320 0.593014 0.104914 -0.651990 -0.750935 0.939081 -0.183559 0.290572 -0.327291 -0.735674 0.593014 0.172031 -0.637575 -0.750935 0.953063 -0.085079 0.290572 -0.249150 -0.765676 0.593014 0.237906 -0.616034 -0.750935 0.956731 0.015278 0.290572 -0.167530 -0.787571 0.593014 0.301161 -0.587707 -0.750935 0.949861 0.115466 0.290572 -0.084064 -0.800792 0.593014 0.360648 -0.553200 -0.750935 0.932702 0.213623 0.290572 -0.000328 -0.805192 0.593014 0.416641 -0.512355 -0.750935 0.905176 0.310200 0.290572 0.084064 -0.800792 0.593014 0.468045 -0.465866 -0.750935 0.867680 0.403361 0.290572 0.167530 -0.787571 0.593014 0.514293 -0.414246 -0.750935 0.820626 0.492078 0.290572 0.249150 -0.765676 0.593014 0.554518 -0.358618 -0.750935 0.765108 0.574611 0.290572 0.327291 -0.735674 0.593014 0.589050 -0.298525 -0.750935 0.700671 0.651635 0.290572 0.402592 -0.697320 0.593014 0.617093 -0.235145 -0.750935 0.628516 0.721481 0.290572 0.473459 -0.651285 0.593014 0.638170 -0.169812 -0.750935 0.550221 0.782831 0.290572 0.538512 -0.598615 0.593014 0.652453 -0.101992 -0.750935 0.465145 0.836187 0.290572 0.598286 -0.538878 0.593014 0.659549 -0.033048 -0.750935 0.374944 0.880332 0.290572 0.651469 -0.473205 0.593014 0.659380 0.036259 -0.750935 0.280615 0.914780 0.290572 0.697476 -0.402321 0.593014 0.652054 0.104515 -0.750935 0.184133 0.938969 0.290572 0.735474 -0.327740 0.593014 0.637508 0.172279 -0.750935 0.084708 0.953096 0.290572 0.765773 -0.248852 0.593014 0.615941 0.238146 -0.750935 -0.015650 0.956725 0.290572 0.787637 -0.167223 0.593014 0.587891 0.300802 -0.750935 -0.114886 0.949931 0.290572 0.800741 -0.084553 0.593014 0.553127 0.360760 -0.750935 -0.213813 0.932659 0.290572 0.805192 -0.000164 0.593014 0.512270 0.416745 -0.750935 -0.310384 0.905113 0.290572 0.800775 0.084227 0.593014 0.465771 0.468139 -0.750935 -0.403537 0.867598 0.290572 0.787537 0.167690 0.593014 0.414656 0.513963 -0.750935 -0.491424 0.821018 0.290572 0.765874 0.248540 0.593014 0.358505 0.554591 -0.750935 -0.574767 0.764991 0.290572 0.735607 0.327441 0.593014 0.298405 0.589111 -0.750935 -0.651778 0.700538 0.290572 0.697238 0.402734 0.593014 0.235019 0.617141 -0.750935 -0.721609 0.628369 0.290572 0.651188 0.473591 0.593014 0.169682 0.638205 -0.750935 -0.782943 0.550062 0.290572 0.598505 0.538634 0.593014 0.101859 0.652474 -0.750935 -0.836281 0.464974 0.290572 0.538756 0.598395 0.593014 0.032914 0.659556 -0.750935 -0.880408 0.374765 0.290572 0.473073 0.651565 0.593014 -0.035734 0.659409 -0.750935 -0.914557 0.281343 0.290572 0.402876 0.697156 0.593014 -0.104648 0.652032 -0.750935 -0.939007 0.183941 0.290572 0.327590 0.735540 0.593014 -0.172409 0.637473 -0.750935 -0.953113 0.084514 0.290572 0.248696 0.765823 0.593014 -0.238271 0.615893 -0.750935 -0.956722 -0.015845 0.290572 0.167063 0.787671 0.593014 -0.300921 0.587829 -0.750935 -0.949908 -0.115079 0.290572 0.084390 0.800758 0.593014 -0.360873 0.553053 -0.750935 -0.932615 -0.214003 0.290572 0.000000 0.805192 0.593014 -0.416849 0.512185 -0.750935 -0.905050 -0.310569 0.290572 -0.084390 0.800758 0.593014 -0.467768 0.466144 -0.750935 -0.867919 -0.402846 0.290572 -0.167063 0.787671 0.593014 -0.514047 0.414551 -0.750935 -0.820917 -0.491592 0.290572 -0.248696 0.765823 0.593014 -0.554664 0.358392 -0.750935 -0.764874 -0.574922 0.290572 -0.327590 0.735540 0.593014 -0.589172 0.298285 -0.750935 -0.700405 -0.651920 0.290572 -0.402876 0.697156 0.593014 -0.616954 0.235510 -0.750935 -0.628944 -0.721109 0.290572 -0.473073 0.651565 0.593014 -0.638239 0.169552 -0.750935 -0.549902 -0.783055 0.290572 -0.538756 0.598395 0.593014 -0.652494 0.101726 -0.750935 -0.464804 -0.836376 0.290572 -0.598505 0.538634 0.593014 -0.659529 0.033439 -0.750935 -0.375466 -0.880110 0.290572 -0.651188 0.473591 0.593014 -0.659402 -0.035868 -0.750935 -0.281157 -0.914614 0.290572 -0.697238 0.402734 0.593014 -0.652011 -0.104781 -0.750935 -0.183750 -0.939044 0.290572 -0.735607 0.327441 0.593014 -0.637438 -0.172539 -0.750935 -0.084319 -0.953131 0.290572 -0.765874 0.248540 0.593014 -0.616082 -0.237781 -0.750935 0.015083 -0.956734 0.290572 -0.787537 0.167690 0.593014 -0.587768 -0.301041 -0.750935 0.115273 -0.949884 0.290572 -0.800775 0.084227 0.593014 -0.248868 0.715070 -0.653254 -0.254315 -0.699053 -0.668318 -0.934553 -0.000190 0.355825 -0.322441 0.685048 -0.653254 -0.179649 -0.721857 -0.668318 -0.929386 -0.098137 0.355825 -0.391816 0.647874 -0.653254 -0.103740 -0.736607 -0.668318 -0.914176 -0.194089 0.355825 -0.457560 0.603240 -0.653254 -0.025967 -0.743423 -0.668318 -0.888800 -0.288832 0.355825 -0.518264 0.551962 -0.653254 0.052092 -0.742050 -0.668318 -0.853633 -0.380394 0.355825 -0.572764 0.495178 -0.653254 0.128845 -0.732633 -0.668318 -0.809531 -0.466957 0.355825 -0.621508 0.432421 -0.653254 0.204920 -0.715094 -0.668318 -0.756132 -0.549229 0.355825 -0.663406 0.364901 -0.653254 0.278738 -0.689678 -0.668318 -0.694405 -0.625453 0.355825 -0.697996 0.293362 -0.653254 0.349487 -0.656666 -0.668318 -0.625028 -0.694787 0.355825 -0.724680 0.219316 -0.653254 0.415769 -0.616837 -0.668318 -0.549524 -0.755918 0.355825 -0.743674 0.142156 -0.653254 0.478128 -0.569864 -0.668318 -0.467271 -0.809349 0.355825 -0.754478 0.063431 -0.653254 0.535220 -0.516615 -0.668318 -0.379872 -0.853865 0.355825 -0.756986 -0.015236 -0.653254 0.585959 -0.458261 -0.668318 -0.289178 -0.888687 0.355825 -0.751220 -0.094490 -0.653254 0.630761 -0.394324 -0.668318 -0.194445 -0.914101 0.355825 -0.737179 -0.172703 -0.653254 0.668615 -0.326044 -0.668318 -0.097569 -0.929446 0.355825 -0.715222 -0.248431 -0.653254 0.698898 -0.254742 -0.668318 -0.000381 -0.934553 0.355825 -0.685245 -0.322023 -0.653254 0.721747 -0.180090 -0.668318 0.097569 -0.929446 0.355825 -0.647721 -0.392068 -0.653254 0.736647 -0.103454 -0.668318 0.194445 -0.914101 0.355825 -0.603062 -0.457794 -0.653254 0.743433 -0.025678 -0.668318 0.289178 -0.888687 0.355825 -0.552279 -0.517926 -0.653254 0.742081 0.051638 -0.668318 0.379872 -0.853865 0.355825 -0.494955 -0.572957 -0.653254 0.732582 0.129130 -0.668318 0.467271 -0.809349 0.355825 -0.432179 -0.621676 -0.653254 0.715014 0.205198 -0.668318 0.549524 -0.755918 0.355825 -0.365306 -0.663183 -0.653254 0.689849 0.278317 -0.668318 0.625028 -0.694787 0.355825 -0.293788 -0.697817 -0.653254 0.656880 0.349085 -0.668318 0.694405 -0.625453 0.355825 -0.219034 -0.724765 -0.653254 0.616675 0.416009 -0.668318 0.756132 -0.549229 0.355825 -0.141867 -0.743729 -0.653254 0.569678 0.478349 -0.668318 0.809531 -0.466957 0.355825 -0.063892 -0.754439 -0.653254 0.516942 0.534904 -0.668318 0.853633 -0.380394 0.355825 0.015531 -0.756980 -0.653254 0.458033 0.586138 -0.668318 0.888800 -0.288832 0.355825 0.094782 -0.751183 -0.653254 0.394079 0.630915 -0.668318 0.914176 -0.194089 0.355825 0.172252 -0.737285 -0.653254 0.326453 0.668416 -0.668318 0.929386 -0.098137 0.355825 0.248576 -0.715171 -0.653254 0.254600 0.698949 -0.668318 0.934553 -0.000190 0.355825 0.322162 -0.685180 -0.653254 0.179943 0.721784 -0.668318 0.929426 0.097759 0.355825 0.392200 -0.647641 -0.653254 0.103304 0.736668 -0.668318 0.914061 0.194631 0.355825 0.457314 -0.603427 -0.653254 0.026270 0.743412 -0.668318 0.888917 0.288470 0.355825 0.518039 -0.552173 -0.653254 -0.051790 0.742071 -0.668318 0.853788 0.380046 0.355825 0.573057 -0.494838 -0.653254 -0.129279 0.732556 -0.668318 0.809254 0.467436 0.355825 0.621764 -0.432052 -0.653254 -0.205344 0.714972 -0.668318 0.755807 0.549678 0.355825 0.663257 -0.365171 -0.653254 -0.278458 0.689792 -0.668318 0.694659 0.625170 0.355825 0.697877 -0.293646 -0.653254 -0.349219 0.656809 -0.668318 0.625311 0.694532 0.355825 0.724809 -0.218886 -0.653254 -0.416134 0.616591 -0.668318 0.549075 0.756244 0.355825 0.743616 -0.142459 -0.653254 -0.477895 0.570059 -0.668318 0.467601 0.809159 0.355825 0.754452 -0.063738 -0.653254 -0.535010 0.516833 -0.668318 0.380220 0.853710 0.355825 0.756977 0.015685 -0.653254 -0.586231 0.457913 -0.668318 0.288651 0.888858 0.355825 0.751164 0.094935 -0.653254 -0.630995 0.393950 -0.668318 0.193903 0.914216 0.355825 0.737250 0.172402 -0.653254 -0.668483 0.326316 -0.668318 0.097948 0.929406 0.355825 0.715120 0.248722 -0.653254 -0.699001 0.254457 -0.668318 0.000000 0.934553 0.355825 0.685114 0.322302 -0.653254 -0.721821 0.179796 -0.668318 -0.097948 0.929406 0.355825 0.647953 0.391684 -0.653254 -0.736586 0.103890 -0.668318 -0.193903 0.914216 0.355825 0.603333 0.457437 -0.653254 -0.743417 0.026119 -0.668318 -0.288651 0.888858 0.355825 0.552068 0.518151 -0.653254 -0.742060 -0.051941 -0.668318 -0.380220 0.853710 0.355825 0.494722 0.573158 -0.653254 -0.732530 -0.129428 -0.668318 -0.467601 0.809159 0.355825 0.432547 0.621420 -0.653254 -0.715136 -0.204774 -0.668318 -0.549075 0.756244 0.355825 0.365036 0.663331 -0.653254 -0.689735 -0.278598 -0.668318 -0.625311 0.694532 0.355825 0.293504 0.697936 -0.653254 -0.656737 -0.349353 -0.668318 -0.694659 0.625170 0.355825 0.219463 0.724635 -0.653254 -0.616922 -0.415643 -0.668318 -0.755807 0.549678 0.355825 0.142308 0.743645 -0.653254 -0.569962 -0.478012 -0.668318 -0.809254 0.467436 0.355825 0.063585 0.754465 -0.653254 -0.516724 -0.535115 -0.668318 -0.853788 0.380046 0.355825 -0.015839 0.756974 -0.653254 -0.457794 -0.586324 -0.668318 -0.888917 0.288470 0.355825 -0.094337 0.751239 -0.653254 -0.394453 -0.630681 -0.668318 -0.914061 0.194631 0.355825 -0.172552 0.737215 -0.653254 -0.326180 -0.668549 -0.668318 -0.929426 0.097759 0.355825 -0.504480 -0.007306 -0.863393 0.003838 -0.999973 0.006220 -0.863415 -0.000176 0.504494 -0.500936 -0.060139 -0.863393 0.108621 -0.994064 0.006220 -0.858641 -0.090667 0.504494 -0.491986 -0.111818 -0.863393 0.211231 -0.977417 0.006220 -0.844590 -0.179315 0.504494 -0.477557 -0.162765 -0.863393 0.312507 -0.949895 0.006220 -0.821145 -0.266846 0.504494 -0.457868 -0.211920 -0.863393 0.410342 -0.911910 0.006220 -0.788655 -0.351439 0.504494 -0.433394 -0.258308 -0.863393 0.502793 -0.864385 0.006220 -0.747910 -0.431412 0.504494 -0.403935 -0.302308 -0.863393 0.590617 -0.806928 0.006220 -0.698576 -0.507422 0.504494 -0.370026 -0.342978 -0.863393 0.671936 -0.740583 0.006220 -0.641547 -0.577843 0.504494 -0.332041 -0.379871 -0.863393 0.745854 -0.666080 0.006220 -0.577451 -0.641900 0.504494 -0.290812 -0.412288 -0.863393 0.810972 -0.585052 0.006220 -0.507694 -0.698378 0.504494 -0.245999 -0.440497 -0.863393 0.867823 -0.496834 0.006220 -0.431703 -0.747742 0.504494 -0.198477 -0.463853 -0.863393 0.915115 -0.403144 0.006220 -0.350957 -0.788869 0.504494 -0.149251 -0.481952 -0.863393 0.952022 -0.305965 0.006220 -0.267166 -0.821041 0.504494 -0.097917 -0.494940 -0.863393 0.978846 -0.204502 0.006220 -0.179643 -0.844520 0.504494 -0.045505 -0.502476 -0.863393 0.994889 -0.100785 0.006220 -0.090142 -0.858697 0.504494 0.006998 -0.504484 -0.863393 0.999975 0.003227 0.006220 -0.000352 -0.863415 0.504494 0.059833 -0.500972 -0.863393 0.994130 0.108014 0.006220 0.090142 -0.858697 0.504494 0.112009 -0.491942 -0.863393 0.977334 0.211611 0.006220 0.179643 -0.844520 0.504494 0.162951 -0.477494 -0.863393 0.949773 0.312877 0.006220 0.267166 -0.821041 0.504494 0.211641 -0.457997 -0.863393 0.912161 0.409785 0.006220 0.350957 -0.788869 0.504494 0.258476 -0.433293 -0.863393 0.864189 0.503129 0.006220 0.431703 -0.747742 0.504494 0.302465 -0.403817 -0.863393 0.806698 0.590931 0.006220 0.507694 -0.698378 0.504494 0.342752 -0.370235 -0.863393 0.740993 0.671484 0.006220 0.577451 -0.641900 0.504494 0.379668 -0.332273 -0.863393 0.666536 0.745447 0.006220 0.641547 -0.577843 0.504494 0.412402 -0.290651 -0.863393 0.584737 0.811199 0.006220 0.698576 -0.507422 0.504494 0.440593 -0.245828 -0.863393 0.496497 0.868016 0.006220 0.747910 -0.431412 0.504494 0.463732 -0.198761 -0.863393 0.403703 0.914869 0.006220 0.788655 -0.351439 0.504494 0.482010 -0.149064 -0.863393 0.305595 0.952141 0.006220 0.821145 -0.266846 0.504494 0.494978 -0.097725 -0.863393 0.204121 0.978926 0.006220 0.844590 -0.179315 0.504494 0.502449 -0.045812 -0.863393 0.101393 0.994827 0.006220 0.858641 -0.090667 0.504494 0.504483 0.007101 -0.863393 -0.003431 0.999975 0.006220 0.863415 -0.000176 0.504494 0.500960 0.059935 -0.863393 -0.108216 0.994108 0.006220 0.858678 0.090317 0.504494 0.491919 0.112109 -0.863393 -0.211810 0.977291 0.006220 0.844483 0.179815 0.504494 0.477623 0.162571 -0.863393 -0.312121 0.950022 0.006220 0.821253 0.266512 0.504494 0.457954 0.211734 -0.863393 -0.409971 0.912077 0.006220 0.788798 0.351117 0.504494 0.433241 0.258565 -0.863393 -0.503305 0.864086 0.006220 0.747654 0.431855 0.504494 0.403755 0.302547 -0.863393 -0.591096 0.806578 0.006220 0.698275 0.507836 0.504494 0.370165 0.342828 -0.863393 -0.671635 0.740856 0.006220 0.641782 0.577582 0.504494 0.332196 0.379736 -0.863393 -0.745583 0.666384 0.006220 0.577713 0.641665 0.504494 0.290568 0.412461 -0.863393 -0.811318 0.584572 0.006220 0.507280 0.698679 0.504494 0.246179 0.440397 -0.863393 -0.867621 0.497188 0.006220 0.432007 0.747566 0.504494 0.198666 0.463773 -0.863393 -0.914951 0.403517 0.006220 0.351278 0.788726 0.504494 0.148966 0.482040 -0.863393 -0.952204 0.305401 0.006220 0.266679 0.821199 0.504494 0.097624 0.494998 -0.863393 -0.978968 0.203921 0.006220 0.179143 0.844626 0.504494 0.045709 0.502458 -0.863393 -0.994848 0.101190 0.006220 0.090492 0.858660 0.504494 -0.007204 0.504481 -0.863393 -0.999974 -0.003634 0.006220 0.000000 0.863415 0.504494 -0.060037 0.500948 -0.863393 -0.994086 -0.108419 0.006220 -0.090492 0.858660 0.504494 -0.111717 0.492009 -0.863393 -0.977459 -0.211031 0.006220 -0.179143 0.844626 0.504494 -0.162668 0.477590 -0.863393 -0.949959 -0.312314 0.006220 -0.266679 0.821199 0.504494 -0.211827 0.457911 -0.863393 -0.911994 -0.410156 0.006220 -0.351278 0.788726 0.504494 -0.258653 0.433188 -0.863393 -0.863984 -0.503481 0.006220 -0.432007 0.747566 0.504494 -0.302226 0.403996 -0.863393 -0.807048 -0.590453 0.006220 -0.507280 0.698679 0.504494 -0.342903 0.370096 -0.863393 -0.740720 -0.671786 0.006220 -0.577713 0.641665 0.504494 -0.379803 0.332119 -0.863393 -0.666232 -0.745718 0.006220 -0.641782 0.577582 0.504494 -0.412229 0.290896 -0.863393 -0.585217 -0.810853 0.006220 -0.698275 0.507836 0.504494 -0.440447 0.246089 -0.863393 -0.497011 -0.867722 0.006220 -0.747654 0.431855 0.504494 -0.463813 0.198572 -0.863393 -0.403331 -0.915033 0.006220 -0.788798 0.351117 0.504494 -0.482070 0.148867 -0.863393 -0.305207 -0.952266 0.006220 -0.821253 0.266512 0.504494 -0.494920 0.098018 -0.863393 -0.204701 -0.978805 0.006220 -0.844483 0.179815 0.504494 -0.502467 0.045607 -0.863393 -0.100988 -0.994868 0.006220 -0.858678 0.090317 0.504494 -0.125628 -0.956946 0.261671 -0.414738 0.290266 0.862402 -0.901227 -0.000184 -0.433347 -0.024641 -0.964842 0.261671 -0.442876 0.245200 0.862402 -0.896244 -0.094638 -0.433347 0.075655 -0.962187 0.261671 -0.465938 0.197899 0.862402 -0.881577 -0.187168 -0.433347 0.176083 -0.948959 0.261671 -0.484113 0.147975 0.862402 -0.857105 -0.278533 -0.433347 0.274570 -0.925278 0.261671 -0.496955 0.096422 0.862402 -0.823193 -0.366829 -0.433347 0.369143 -0.891775 0.261671 -0.504280 0.044310 0.862402 -0.780663 -0.450305 -0.433347 0.460574 -0.848174 0.261671 -0.506147 -0.008786 0.862402 -0.729169 -0.529644 -0.433347 0.546932 -0.795232 0.261671 -0.502439 -0.061785 0.862402 -0.669642 -0.603149 -0.433347 0.627266 -0.733530 0.261671 -0.493196 -0.114104 0.862402 -0.602740 -0.670011 -0.433347 0.700026 -0.664448 0.261671 -0.478686 -0.164688 0.862402 -0.529928 -0.728963 -0.433347 0.765810 -0.587421 0.261671 -0.458789 -0.213950 0.862402 -0.450609 -0.780488 -0.433347 0.823158 -0.503923 0.261671 -0.433839 -0.260856 0.862402 -0.366326 -0.823417 -0.433347 0.871024 -0.415747 0.261671 -0.404414 -0.304485 0.862402 -0.278866 -0.856997 -0.433347 0.909800 -0.322167 0.261671 -0.370275 -0.345193 0.862402 -0.187511 -0.881504 -0.433347 0.938555 -0.225039 0.261671 -0.332057 -0.382100 0.862402 -0.094090 -0.896302 -0.433347 0.956869 -0.126212 0.261671 -0.290519 -0.414561 0.862402 -0.000367 -0.901227 -0.433347 0.964827 -0.025230 0.261671 -0.245470 -0.442726 0.862402 0.094090 -0.896302 -0.433347 0.962158 0.076029 0.261671 -0.197717 -0.466015 0.862402 0.187511 -0.881504 -0.433347 0.948890 0.176452 0.261671 -0.147787 -0.484170 0.862402 0.278866 -0.856997 -0.433347 0.925445 0.274005 0.261671 -0.096725 -0.496896 0.862402 0.366326 -0.823417 -0.433347 0.891631 0.369489 0.261671 -0.044114 -0.504297 0.862402 0.450609 -0.780488 -0.433347 0.847995 0.460904 0.261671 0.008983 -0.506143 0.862402 0.529928 -0.728963 -0.433347 0.795566 0.546446 0.261671 0.061478 -0.502476 0.862402 0.602740 -0.670011 -0.433347 0.733913 0.626818 0.261671 0.113803 -0.493265 0.862402 0.669642 -0.603149 -0.433347 0.664176 0.700285 0.261671 0.164874 -0.478621 0.862402 0.729169 -0.529644 -0.433347 0.587123 0.766038 0.261671 0.214129 -0.458706 0.862402 0.780663 -0.450305 -0.433347 0.504426 0.822850 0.261671 0.260591 -0.433998 0.862402 0.823193 -0.366829 -0.433347 0.415408 0.871186 0.261671 0.304642 -0.404296 0.862402 0.857105 -0.278533 -0.433347 0.321813 0.909925 0.261671 0.345337 -0.370140 0.862402 0.881577 -0.187168 -0.433347 0.225613 0.938417 0.261671 0.381897 -0.332290 0.862402 0.896244 -0.094638 -0.433347 0.126017 0.956895 0.261671 0.414620 -0.290435 0.862402 0.901227 -0.000184 -0.433347 0.025034 0.964832 0.261671 0.442776 -0.245380 0.862402 0.896283 0.094273 -0.433347 -0.076225 0.962142 0.261671 0.466055 -0.197622 0.862402 0.881466 0.187690 -0.433347 -0.175696 0.949031 0.261671 0.484053 -0.148172 0.862402 0.857219 0.278183 -0.433347 -0.274194 0.925390 0.261671 0.496916 -0.096624 0.862402 0.823342 0.366494 -0.433347 -0.369671 0.891556 0.261671 0.504306 -0.044012 0.862402 0.780396 0.450768 -0.433347 -0.461076 0.847901 0.261671 0.506142 0.009086 0.862402 0.728855 0.530076 -0.433347 -0.546608 0.795454 0.261671 0.502464 0.061581 0.862402 0.669888 0.602876 -0.433347 -0.626967 0.733785 0.261671 0.493242 0.113903 0.862402 0.603013 0.669765 -0.433347 -0.700420 0.664033 0.261671 0.478588 0.164971 0.862402 0.529496 0.729277 -0.433347 -0.765570 0.587733 0.261671 0.458876 0.213763 0.862402 0.450927 0.780305 -0.433347 -0.822953 0.504259 0.261671 0.433945 0.260680 0.862402 0.366662 0.823267 -0.433347 -0.871270 0.415230 0.261671 0.404234 0.304724 0.862402 0.278358 0.857162 -0.433347 -0.909991 0.321628 0.261671 0.370070 0.345413 0.862402 0.186988 0.881615 -0.433347 -0.938463 0.225422 0.261671 0.332212 0.381964 0.862402 0.094455 0.896264 -0.433347 -0.956920 0.125822 0.261671 0.290350 0.414679 0.862402 0.000000 0.901227 -0.433347 -0.964837 0.024837 0.261671 0.245290 0.442826 0.862402 -0.094455 0.896264 -0.433347 -0.962203 -0.075459 0.261671 0.197994 0.465897 0.862402 -0.186988 0.881615 -0.433347 -0.948995 -0.175889 0.261671 0.148074 0.484083 0.862402 -0.278358 0.857162 -0.433347 -0.925334 -0.274382 0.261671 0.096523 0.496936 0.862402 -0.366662 0.823267 -0.433347 -0.891480 -0.369852 0.261671 0.043909 0.504315 0.862402 -0.450927 0.780305 -0.433347 -0.848268 -0.460401 0.261671 -0.008683 0.506149 0.862402 -0.529496 0.729277 -0.433347 -0.795343 -0.546770 0.261671 -0.061683 0.502451 0.862402 -0.603013 0.669765 -0.433347 -0.733657 -0.627116 0.261671 -0.114004 0.493219 0.862402 -0.669888 0.602876 -0.433347 -0.664591 -0.699891 0.261671 -0.164590 0.478719 0.862402 -0.728855 0.530076 -0.433347 -0.587577 -0.765690 0.261671 -0.213857 0.458832 0.862402 -0.780396 0.450768 -0.433347 -0.504091 -0.823055 0.261671 -0.260768 0.433892 0.862402 -0.823342 0.366494 -0.433347 -0.415053 -0.871355 0.261671 -0.304807 0.404172 0.862402 -0.857219 0.278183 -0.433347 -0.322353 -0.909734 0.261671 -0.345118 0.370345 0.862402 -0.881466 0.187690 -0.433347 -0.225231 -0.938509 0.261671 -0.382032 0.332135 0.862402 -0.896283 0.094273 -0.433347 -0.068003 -0.365545 0.928306 -0.026924 0.930794 0.364552 -0.997322 -0.000203 -0.073138 -0.029316 -0.370659 0.928306 -0.124329 0.922845 0.364552 -0.991808 -0.104728 -0.073138 0.009321 -0.371700 0.928306 -0.219461 0.904952 0.364552 -0.975577 -0.207125 -0.073138 0.048227 -0.368676 0.928306 -0.313098 0.876967 0.364552 -0.948496 -0.308232 -0.073138 0.086601 -0.361591 0.928306 -0.403286 0.839322 0.364552 -0.910967 -0.405943 -0.073138 0.123671 -0.350647 0.928306 -0.488239 0.792921 0.364552 -0.863903 -0.498320 -0.073138 0.159740 -0.335754 0.928306 -0.568654 0.737383 0.364552 -0.806918 -0.586118 -0.073138 0.194050 -0.317163 0.928306 -0.642805 0.673723 0.364552 -0.741044 -0.667461 -0.073138 0.226222 -0.295079 0.928306 -0.709876 0.602642 0.364552 -0.667008 -0.741452 -0.073138 0.255632 -0.270000 0.928306 -0.768602 0.525692 0.364552 -0.586432 -0.806690 -0.073138 0.282522 -0.241721 0.928306 -0.819465 0.442242 0.364552 -0.498656 -0.863709 -0.073138 0.306301 -0.210779 0.928306 -0.861302 0.353920 0.364552 -0.405386 -0.911215 -0.073138 0.326527 -0.177842 0.928306 -0.893390 0.262594 0.364552 -0.308601 -0.948376 -0.073138 0.343368 -0.142640 0.928306 -0.915992 0.167514 0.364552 -0.207504 -0.975496 -0.073138 0.356427 -0.105867 0.928306 -0.928503 0.070589 0.364552 -0.104123 -0.991872 -0.073138 0.365504 -0.068226 0.928306 -0.930810 -0.026355 0.364552 -0.000406 -0.997322 -0.073138 0.370641 -0.029543 0.928306 -0.922921 -0.123766 0.364552 0.104123 -0.991872 -0.073138 0.371696 0.009466 0.928306 -0.904867 -0.219813 0.364552 0.207504 -0.975496 -0.073138 0.368657 0.048370 0.928306 -0.876845 -0.313439 0.364552 0.308601 -0.948376 -0.073138 0.361644 0.086380 0.928306 -0.839569 -0.402773 0.364552 0.405386 -0.911215 -0.073138 0.350599 0.123807 0.928306 -0.792731 -0.488547 0.364552 0.498656 -0.863709 -0.073138 0.335692 0.159870 0.928306 -0.737162 -0.568941 0.364552 0.586432 -0.806690 -0.073138 0.317282 0.193856 0.928306 -0.674116 -0.642393 0.364552 0.667008 -0.741452 -0.073138 0.295217 0.226042 0.928306 -0.603076 -0.709508 0.364552 0.741044 -0.667461 -0.073138 0.269900 0.255737 0.928306 -0.525393 -0.768807 0.364552 0.806918 -0.586118 -0.073138 0.241611 0.282616 0.928306 -0.441923 -0.819637 0.364552 0.863903 -0.498320 -0.073138 0.210966 0.306172 0.928306 -0.354447 -0.861086 0.364552 0.910967 -0.405943 -0.073138 0.177715 0.326596 0.928306 -0.262246 -0.893492 0.364552 0.948496 -0.308232 -0.073138 0.142507 0.343423 0.928306 -0.167158 -0.916057 0.364552 0.975577 -0.207125 -0.073138 0.106085 0.356362 0.928306 -0.071156 -0.928460 0.364552 0.991808 -0.104728 -0.073138 0.068152 0.365518 0.928306 0.026545 -0.930804 0.364552 0.997322 -0.000203 -0.073138 0.029467 0.370647 0.928306 0.123954 -0.922896 0.364552 0.991850 0.104325 -0.073138 -0.009541 0.371694 0.928306 0.219997 -0.904822 0.364552 0.975454 0.207703 -0.073138 -0.048076 0.368696 0.928306 0.312740 -0.877095 0.364552 0.948621 0.307845 -0.073138 -0.086454 0.361626 0.928306 0.402944 -0.839487 0.364552 0.911132 0.405572 -0.073138 -0.123878 0.350574 0.928306 0.488709 -0.792632 0.364552 0.863608 0.498831 -0.073138 -0.159939 0.335660 0.928306 0.569091 -0.737046 0.364552 0.806570 0.586596 -0.073138 -0.193920 0.317242 0.928306 0.642531 -0.673985 0.364552 0.741316 0.667159 -0.073138 -0.226102 0.295171 0.928306 0.709630 -0.602931 0.364552 0.667310 0.741180 -0.073138 -0.255792 0.269848 0.928306 0.768914 -0.525236 0.364552 0.585954 0.807037 -0.073138 -0.282424 0.241836 0.928306 0.819285 -0.442576 0.364552 0.499007 0.863506 -0.073138 -0.306215 0.210904 0.928306 0.861158 -0.354271 0.364552 0.405758 0.911050 -0.073138 -0.326632 0.177649 0.928306 0.893546 -0.262065 0.364552 0.308038 0.948558 -0.073138 -0.343452 0.142437 0.928306 0.916091 -0.166971 0.364552 0.206926 0.975619 -0.073138 -0.356383 0.106013 0.928306 0.928475 -0.070967 0.364552 0.104526 0.991829 -0.073138 -0.365531 0.068077 0.928306 0.930799 0.026734 0.364552 0.000000 0.997322 -0.073138 -0.370653 0.029392 0.928306 0.922871 0.124142 0.364552 -0.104526 0.991829 -0.073138 -0.371702 -0.009245 0.928306 0.904997 0.219276 0.364552 -0.206926 0.975619 -0.073138 -0.368686 -0.048152 0.928306 0.877031 0.312919 0.364552 -0.308038 0.948558 -0.073138 -0.361609 -0.086527 0.928306 0.839405 0.403115 0.364552 -0.405758 0.911050 -0.073138 -0.350548 -0.123950 0.928306 0.792532 0.488870 0.364552 -0.499007 0.863506 -0.073138 -0.335787 -0.159672 0.928306 0.737499 0.568504 0.364552 -0.585954 0.807037 -0.073138 -0.317203 -0.193985 0.928306 0.673854 0.642668 0.364552 -0.667310 0.741180 -0.073138 -0.295125 -0.226162 0.928306 0.602787 0.709753 0.364552 -0.741316 0.667159 -0.073138 -0.270052 -0.255577 0.928306 0.525849 0.768495 0.364552 -0.806570 0.586596 -0.073138 -0.241778 -0.282473 0.928306 0.442409 0.819375 0.364552 -0.863608 0.498831 -0.073138 -0.210841 -0.306258 0.928306 0.354096 0.861230 0.364552 -0.911132 0.405572 -0.073138 -0.177582 -0.326669 0.928306 0.261883 0.893599 0.364552 -0.948621 0.307845 -0.073138 -0.142710 -0.343339 0.928306 0.167701 0.915957 0.364552 -0.975454 0.207703 -0.073138 -0.105940 -0.356405 0.928306 0.070778 0.928489 0.364552 -0.991850 0.104325 -0.073138 0.808803 0.432243 0.398751 -0.387732 0.901757 -0.191046 -0.442155 -0.000090 0.896939 0.759047 0.514631 0.398751 -0.480107 0.856154 -0.191046 -0.439711 -0.046431 0.896939 0.701520 0.590649 0.398751 -0.566392 0.801687 -0.191046 -0.432515 -0.091827 0.896939 0.635752 0.660921 0.398751 -0.647295 0.737909 -0.191046 -0.420508 -0.136652 0.896939 0.562982 0.723912 0.398751 -0.721069 0.666004 -0.191046 -0.403870 -0.179972 0.896939 0.484789 0.778445 0.398751 -0.786312 0.587550 -0.191046 -0.383005 -0.220926 0.896939 0.400532 0.824967 0.398751 -0.843561 0.501903 -0.191046 -0.357741 -0.259851 0.896939 0.311864 0.862403 0.398751 -0.891518 0.410727 -0.191046 -0.328536 -0.295914 0.896939 0.219760 0.890339 0.398751 -0.929655 0.315028 -0.191046 -0.295713 -0.328717 0.896939 0.126145 0.908342 0.398751 -0.957336 0.216815 -0.191046 -0.259990 -0.357640 0.896939 0.030249 0.916560 0.398751 -0.974788 0.115286 -0.191046 -0.221075 -0.382919 0.896939 -0.065980 0.914682 0.398751 -0.981502 0.012486 -0.191046 -0.179725 -0.403980 0.896939 -0.160579 0.902891 0.398751 -0.977495 -0.089474 -0.191046 -0.136816 -0.420455 0.896939 -0.254324 0.881088 0.398751 -0.962734 -0.191429 -0.191046 -0.091995 -0.432479 0.896939 -0.345267 0.849581 0.398751 -0.937368 -0.291277 -0.191046 -0.046162 -0.439739 0.896939 -0.431749 0.809067 0.398751 -0.901994 -0.387181 -0.191046 -0.000180 -0.442155 0.896939 -0.514167 0.759361 0.398751 -0.856447 -0.479584 -0.191046 0.046162 -0.439739 0.896939 -0.590922 0.701291 0.398751 -0.801466 -0.566704 -0.191046 0.091995 -0.432479 0.896939 -0.661168 0.635495 0.398751 -0.737657 -0.647582 -0.191046 0.136816 -0.420455 0.896939 -0.723568 0.563424 0.398751 -0.666445 -0.720662 -0.191046 0.179725 -0.403980 0.896939 -0.778634 0.484486 0.398751 -0.587244 -0.786541 -0.191046 0.221075 -0.382919 0.896939 -0.825123 0.400211 0.398751 -0.501574 -0.843756 -0.191046 0.259990 -0.357640 0.896939 -0.862212 0.312391 0.398751 -0.411272 -0.891267 -0.191046 0.295713 -0.328717 0.896939 -0.890204 0.220304 0.398751 -0.315595 -0.929463 -0.191046 0.328536 -0.295914 0.896939 -0.908391 0.125791 0.398751 -0.216443 -0.957420 -0.191046 0.357741 -0.259851 0.896939 -0.916572 0.029893 0.398751 -0.114907 -0.974832 -0.191046 0.383005 -0.220926 0.896939 -0.914723 -0.065421 0.398751 -0.013086 -0.981494 -0.191046 0.403870 -0.179972 0.896939 -0.902828 -0.160930 0.398751 0.089854 -0.977460 -0.191046 0.420508 -0.136652 0.896939 -0.880989 -0.254666 0.398751 0.191804 -0.962659 -0.191046 0.432515 -0.091827 0.896939 -0.849792 -0.344748 0.398751 0.290704 -0.937546 -0.191046 0.439711 -0.046431 0.896939 -0.808979 -0.431914 0.398751 0.387364 -0.901915 -0.191046 0.442155 -0.000090 0.896939 -0.759256 -0.514322 0.398751 0.479758 -0.856349 -0.191046 0.439729 0.046251 0.896939 -0.701170 -0.591065 0.398751 0.566867 -0.801351 -0.191046 0.432460 0.092084 0.896939 -0.636022 -0.660662 0.398751 0.646995 -0.738173 -0.191046 0.420564 0.136481 0.896939 -0.563277 -0.723683 0.398751 0.720797 -0.666298 -0.191046 0.403944 0.179807 0.896939 -0.484327 -0.778732 0.398751 0.786660 -0.587084 -0.191046 0.382874 0.221153 0.896939 -0.400043 -0.825205 0.398751 0.843858 -0.501402 -0.191046 0.357587 0.260063 0.896939 -0.312215 -0.862275 0.398751 0.891351 -0.411090 -0.191046 0.328657 0.295780 0.896939 -0.220123 -0.890249 0.398751 0.929527 -0.315406 -0.191046 0.295847 0.328597 0.896939 -0.125606 -0.908416 0.398751 0.957465 -0.216248 -0.191046 0.259778 0.357794 0.896939 -0.030622 -0.916548 0.398751 0.974741 -0.115683 -0.191046 0.221231 0.382829 0.896939 0.065607 -0.914709 0.398751 0.981497 -0.012886 -0.191046 0.179890 0.403907 0.896939 0.161114 -0.902795 0.398751 0.977442 0.090053 -0.191046 0.136566 0.420536 0.896939 0.254846 -0.880938 0.398751 0.962620 0.192000 -0.191046 0.091739 0.432533 0.896939 0.344921 -0.849721 0.398751 0.937487 0.290895 -0.191046 0.046341 0.439720 0.896939 0.432079 -0.808891 0.398751 0.901836 0.387548 -0.191046 0.000000 0.442155 0.896939 0.514477 -0.759152 0.398751 0.856251 0.479932 -0.191046 -0.046341 0.439720 0.896939 0.590506 -0.701641 0.398751 0.801802 0.566229 -0.191046 -0.091739 0.432533 0.896939 0.660791 -0.635887 0.398751 0.738041 0.647145 -0.191046 -0.136566 0.420536 0.896939 0.723797 -0.563129 0.398751 0.666151 0.720933 -0.191046 -0.179890 0.403907 0.896939 0.778831 -0.484169 0.398751 0.586923 0.786780 -0.191046 -0.221231 0.382829 0.896939 0.824886 -0.400700 0.398751 0.502074 0.843459 -0.191046 -0.259778 0.357794 0.896939 0.862339 -0.312040 0.398751 0.410909 0.891435 -0.191046 -0.295847 0.328597 0.896939 0.890294 -0.219942 0.398751 0.315217 0.929591 -0.191046 -0.328657 0.295780 0.896939 0.908316 -0.126330 0.398751 0.217010 0.957292 -0.191046 -0.357587 0.260063 0.896939 0.916554 -0.030436 0.398751 0.115484 0.974764 -0.191046 -0.382874 0.221153 0.896939 0.914696 0.065793 0.398751 0.012686 0.981499 -0.191046 -0.403944 0.179807 0.896939 0.902763 0.161298 0.398751 -0.090252 0.977423 -0.191046 -0.420564 0.136481 0.896939 0.881140 0.254144 0.398751 -0.191233 0.962773 -0.191046 -0.432460 0.092084 0.896939 0.849651 0.345094 0.398751 -0.291086 0.937428 -0.191046 -0.439729 0.046251 0.896939 0.631028 -0.097917 0.769556 0.061965 0.995195 0.075817 -0.773281 -0.000157 0.634063 0.637815 -0.031242 0.769556 -0.042680 0.996208 0.075817 -0.769006 -0.081202 0.634063 0.637612 0.035140 0.769556 -0.145868 0.986395 0.075817 -0.756421 -0.160596 0.634063 0.630418 0.101773 0.769556 -0.248446 0.965674 0.075817 -0.735424 -0.238990 0.634063 0.616279 0.167285 0.769556 -0.348288 0.934317 0.075817 -0.706325 -0.314751 0.634063 0.595583 0.230359 0.769556 -0.443400 0.893112 0.075817 -0.669834 -0.386376 0.634063 0.568160 0.291511 0.769556 -0.534562 0.841722 0.075817 -0.625650 -0.454451 0.634063 0.534478 0.349453 0.769556 -0.619836 0.781060 0.075817 -0.574574 -0.517521 0.634063 0.494909 0.403545 0.769556 -0.698283 0.711795 0.075817 -0.517170 -0.574890 0.634063 0.450342 0.452743 0.769556 -0.768404 0.635458 0.075817 -0.454695 -0.625473 0.634063 0.400411 0.497449 0.769556 -0.830773 0.551424 0.075817 -0.386637 -0.669684 0.634063 0.346070 0.536675 0.769556 -0.883990 0.461316 0.075817 -0.314319 -0.706518 0.634063 0.288486 0.569701 0.769556 -0.927104 0.367055 0.075817 -0.239276 -0.735331 0.634063 0.227189 0.596799 0.769556 -0.960468 0.267866 0.075817 -0.160890 -0.756359 0.634063 0.163389 0.617324 0.769556 -0.983253 0.165727 0.075817 -0.080732 -0.769055 0.634063 0.098303 0.630968 0.769556 -0.995156 0.062573 0.075817 -0.000315 -0.773281 0.634063 0.031632 0.637796 0.769556 -0.996234 -0.042072 0.075817 0.080732 -0.769055 0.634063 -0.035388 0.637599 0.769556 -0.986338 -0.146252 0.075817 0.160890 -0.756359 0.634063 -0.102018 0.630378 0.769556 -0.965577 -0.248822 0.075817 0.239276 -0.735331 0.634063 -0.166908 0.616381 0.769556 -0.934529 -0.347717 0.075817 0.314319 -0.706518 0.634063 -0.230590 0.595493 0.769556 -0.892939 -0.443747 0.075817 0.386637 -0.669684 0.634063 -0.291732 0.568046 0.769556 -0.841514 -0.534890 0.075817 0.454695 -0.625473 0.634063 -0.349126 0.534692 0.769556 -0.781438 -0.619359 0.075817 0.517170 -0.574890 0.634063 -0.403243 0.495156 0.769556 -0.712221 -0.697848 0.075817 0.574574 -0.517521 0.634063 -0.452918 0.450166 0.769556 -0.635159 -0.768651 0.075817 0.625650 -0.454451 0.634063 -0.497604 0.400218 0.769556 -0.551101 -0.830987 0.075817 0.669834 -0.386376 0.634063 -0.536463 0.346398 0.769556 -0.461857 -0.883708 0.075817 0.706325 -0.314751 0.634063 -0.569814 0.288265 0.769556 -0.366694 -0.927247 0.075817 0.735424 -0.238990 0.634063 -0.596888 0.226957 0.769556 -0.267492 -0.960573 0.075817 0.756421 -0.160596 0.634063 -0.617224 0.163766 0.769556 -0.166327 -0.983152 0.075817 0.769006 -0.081202 0.634063 -0.630988 0.098174 0.769556 -0.062370 -0.995169 0.075817 0.773281 -0.000157 0.634063 -0.637802 0.031502 0.769556 0.042274 -0.996225 0.075817 0.769039 0.080889 0.634063 -0.637591 -0.035518 0.769556 0.146453 -0.986308 0.075817 0.756326 0.161044 0.634063 -0.630459 -0.101516 0.769556 0.248053 -0.965775 0.075817 0.735521 0.238690 0.634063 -0.616347 -0.167034 0.769556 0.347907 -0.934458 0.075817 0.706454 0.314463 0.634063 -0.595446 -0.230711 0.769556 0.443929 -0.892849 0.075817 0.669605 0.386773 0.634063 -0.567987 -0.291848 0.769556 0.535061 -0.841404 0.075817 0.625380 0.454822 0.634063 -0.534620 -0.349235 0.769556 0.619518 -0.781312 0.075817 0.574785 0.517287 0.634063 -0.495074 -0.403344 0.769556 0.697994 -0.712079 0.075817 0.517404 0.574680 0.634063 -0.450074 -0.453010 0.769556 0.768780 -0.635003 0.075817 0.454324 0.625742 0.634063 -0.400614 -0.497285 0.769556 0.830548 -0.551763 0.075817 0.386909 0.669526 0.634063 -0.346288 -0.536534 0.769556 0.883802 -0.461677 0.075817 0.314607 0.706390 0.634063 -0.288149 -0.569872 0.769556 0.927322 -0.366505 0.075817 0.238840 0.735472 0.634063 -0.226835 -0.596934 0.769556 0.960627 -0.267297 0.075817 0.160442 0.756454 0.634063 -0.163640 -0.617257 0.769556 0.983185 -0.166127 0.075817 0.081045 0.769023 0.634063 -0.098046 -0.631008 0.769556 0.995182 -0.062167 0.075817 0.000000 0.773281 0.634063 -0.031372 -0.637809 0.769556 0.996217 0.042477 0.075817 -0.081045 0.769023 0.634063 0.035010 -0.637619 0.769556 0.986424 0.145668 0.075817 -0.160442 0.756454 0.634063 0.101645 -0.630438 0.769556 0.965725 0.248250 0.075817 -0.238840 0.735472 0.634063 0.167159 -0.616313 0.769556 0.934388 0.348097 0.075817 -0.314607 0.706390 0.634063 0.230833 -0.595399 0.769556 0.892758 0.444111 0.075817 -0.386909 0.669526 0.634063 0.291395 -0.568219 0.769556 0.841830 0.534391 0.075817 -0.454324 0.625742 0.634063 0.349344 -0.534549 0.769556 0.781186 0.619677 0.075817 -0.517404 0.574680 0.634063 0.403445 -0.494992 0.769556 0.711937 0.698138 0.075817 -0.574785 0.517287 0.634063 0.452651 -0.450434 0.769556 0.635615 0.768274 0.075817 -0.625380 0.454822 0.634063 0.497367 -0.400513 0.769556 0.551593 0.830660 0.075817 -0.669605 0.386773 0.634063 0.536604 -0.346179 0.769556 0.461497 0.883896 0.075817 -0.706454 0.314463 0.634063 0.569931 -0.288033 0.769556 0.366316 0.927396 0.075817 -0.735521 0.238690 0.634063 0.596753 -0.227310 0.769556 0.268062 0.960414 0.075817 -0.756326 0.161044 0.634063 0.617290 -0.163514 0.769556 0.165927 0.983219 0.075817 -0.769039 0.080889 0.634063 0.066316 -0.819868 0.568699 0.094611 0.572553 0.814391 -0.993303 -0.000202 0.115538 0.151879 -0.808402 0.568699 0.034082 0.579315 0.814391 -0.987811 -0.104306 0.115538 0.234981 -0.788267 0.568699 -0.026242 0.579723 0.814391 -0.971646 -0.206290 0.115538 0.316303 -0.759298 0.568699 -0.086857 0.573780 0.814391 -0.944674 -0.306989 0.115538 0.394140 -0.721966 0.568699 -0.146515 0.561517 0.814391 -0.907296 -0.404307 0.115538 0.466960 -0.677148 0.568699 -0.204016 0.543273 0.814391 -0.860422 -0.496312 0.115538 0.535358 -0.624478 0.568699 -0.259831 0.518898 0.814391 -0.803666 -0.583757 0.115538 0.597860 -0.564929 0.568699 -0.312784 0.488808 0.814391 -0.738058 -0.664771 0.115538 0.653776 -0.499158 0.568699 -0.362292 0.453334 0.814391 -0.664321 -0.738464 0.115538 0.702062 -0.428591 0.568699 -0.407397 0.413274 0.814391 -0.584069 -0.803439 0.115538 0.743115 -0.352649 0.568699 -0.448467 0.368300 0.814391 -0.496646 -0.860229 0.115538 0.775982 -0.272823 0.568699 -0.484598 0.319269 0.814391 -0.403753 -0.907543 0.115538 0.800112 -0.190793 0.568699 -0.515124 0.267237 0.814391 -0.307357 -0.944554 0.115538 0.815702 -0.105884 0.568699 -0.540295 0.211776 0.814391 -0.206668 -0.971565 0.115538 0.822307 -0.019810 0.568699 -0.559515 0.153983 0.814391 -0.103703 -0.987875 0.115538 0.819908 0.065815 0.568699 -0.572495 0.094960 0.814391 -0.000405 -0.993303 0.115538 0.808495 0.151385 0.568699 -0.579294 0.034436 0.814391 0.103703 -0.987875 0.115538 0.788176 0.235287 0.568699 -0.579713 -0.026468 0.814391 0.206668 -0.971565 0.115538 0.759175 0.316598 0.568699 -0.573746 -0.087080 0.814391 0.307357 -0.944554 0.115538 0.722206 0.393699 0.568699 -0.561606 -0.146172 0.814391 0.403753 -0.907543 0.115538 0.676966 0.467223 0.568699 -0.543193 -0.204227 0.814391 0.496646 -0.860229 0.115538 0.624270 0.535601 0.568699 -0.518797 -0.260033 0.814391 0.584069 -0.803439 0.115538 0.565294 0.597514 0.568699 -0.488999 -0.312486 0.814391 0.664321 -0.738464 0.115538 0.499557 0.653470 0.568699 -0.453556 -0.362015 0.814391 0.738058 -0.664771 0.115538 0.428318 0.702229 0.568699 -0.413116 -0.407558 0.814391 0.803666 -0.583757 0.115538 0.352360 0.743252 0.568699 -0.368126 -0.448610 0.814391 0.860422 -0.496312 0.115538 0.273297 0.775815 0.568699 -0.319565 -0.484403 0.814391 0.907296 -0.404307 0.115538 0.190481 0.800186 0.568699 -0.267036 -0.515228 0.814391 0.944674 -0.306989 0.115538 0.105567 0.815743 0.568699 -0.211566 -0.540377 0.814391 0.971646 -0.206290 0.115538 0.020312 0.822295 0.568699 -0.154325 -0.559421 0.814391 0.987811 -0.104306 0.115538 -0.065982 0.819895 0.568699 -0.094844 -0.572514 0.814391 0.993303 -0.000202 0.115538 -0.151550 0.808464 0.568699 -0.034318 -0.579301 0.814391 0.987854 0.103904 0.115538 -0.235448 0.788128 0.568699 0.026586 -0.579708 0.814391 0.971523 0.206866 0.115538 -0.315993 0.759427 0.568699 0.086623 -0.573815 0.814391 0.944799 0.306605 0.115538 -0.393846 0.722126 0.568699 0.146286 -0.561576 0.814391 0.907461 0.403938 0.115538 -0.467361 0.676871 0.568699 0.204338 -0.543152 0.814391 0.860128 0.496821 0.115538 -0.535728 0.624161 0.568699 0.260139 -0.518744 0.814391 0.803320 0.584233 0.115538 -0.597629 0.565173 0.568699 0.312585 -0.488936 0.814391 0.738329 0.664471 0.115538 -0.653572 0.499424 0.568699 0.362108 -0.453482 0.814391 0.664621 0.738194 0.115538 -0.702316 0.428175 0.568699 0.407642 -0.413033 0.814391 0.583593 0.803785 0.115538 -0.742971 0.352952 0.568699 0.448317 -0.368483 0.814391 0.496997 0.860026 0.115538 -0.775871 0.273139 0.568699 0.484468 -0.319467 0.814391 0.404123 0.907379 0.115538 -0.800225 0.190318 0.568699 0.515282 -0.266931 0.814391 0.306797 0.944736 0.115538 -0.815765 0.105401 0.568699 0.540420 -0.211456 0.814391 0.206092 0.971688 0.115538 -0.822299 0.020145 0.568699 0.559452 -0.154211 0.814391 0.104105 0.987833 0.115538 -0.819881 -0.066149 0.568699 0.572533 -0.094727 0.814391 0.000000 0.993303 0.115538 -0.808433 -0.151714 0.568699 0.579308 -0.034200 0.814391 -0.104105 0.987833 0.115538 -0.788315 -0.234820 0.568699 0.579729 0.026124 0.814391 -0.206092 0.971688 0.115538 -0.759363 -0.316148 0.568699 0.573798 0.086740 0.814391 -0.306797 0.944736 0.115538 -0.722046 -0.393993 0.568699 0.561547 0.146401 0.814391 -0.404123 0.907379 0.115538 -0.676776 -0.467499 0.568699 0.543110 0.204449 0.814391 -0.496997 0.860026 0.115538 -0.624587 -0.535231 0.568699 0.518951 0.259726 0.814391 -0.583593 0.803785 0.115538 -0.565051 -0.597744 0.568699 0.488872 0.312685 0.814391 -0.664621 0.738194 0.115538 -0.499291 -0.653674 0.568699 0.453408 0.362200 0.814391 -0.738329 0.664471 0.115538 -0.428734 -0.701975 0.568699 0.413357 0.407313 0.814391 -0.803320 0.584233 0.115538 -0.352801 -0.743043 0.568699 0.368391 0.448392 0.814391 -0.860128 0.496821 0.115538 -0.272981 -0.775927 0.568699 0.319368 0.484533 0.814391 -0.907461 0.403938 0.115538 -0.190155 -0.800264 0.568699 0.266826 0.515336 0.814391 -0.944799 0.306605 0.115538 -0.106050 -0.815680 0.568699 0.211886 0.540252 0.814391 -0.971523 0.206866 0.115538 -0.019977 -0.822303 0.568699 0.154097 0.559484 0.814391 -0.987854 0.103904 0.115538 -0.314281 0.915857 -0.249867 -0.716698 -0.401505 -0.570209 -0.622552 -0.000127 0.782578 -0.408539 0.877874 -0.249867 -0.670670 -0.474409 -0.570209 -0.619110 -0.065374 0.782578 -0.497466 0.830719 -0.249867 -0.617797 -0.541469 -0.570209 -0.608979 -0.129292 0.782578 -0.581791 0.774006 -0.249867 -0.557644 -0.603237 -0.570209 -0.592074 -0.192406 0.782578 -0.659708 0.708767 -0.249867 -0.491350 -0.658360 -0.570209 -0.568648 -0.253399 0.782578 -0.729723 0.636452 -0.249867 -0.420349 -0.705811 -0.570209 -0.539269 -0.311063 0.782578 -0.792409 0.556466 -0.249867 -0.344060 -0.745979 -0.570209 -0.503698 -0.365869 0.782578 -0.846366 0.470352 -0.249867 -0.263981 -0.777931 -0.570209 -0.462578 -0.416645 0.782578 -0.891001 0.379056 -0.249867 -0.180994 -0.801313 -0.570209 -0.416363 -0.462832 0.782578 -0.925538 0.284511 -0.249867 -0.096830 -0.815773 -0.570209 -0.366065 -0.503555 0.782578 -0.950259 0.185941 -0.249867 -0.010798 -0.821429 -0.570209 -0.311273 -0.539148 0.782578 -0.964514 0.085323 -0.249867 0.075353 -0.818037 -0.570209 -0.253052 -0.568802 0.782578 -0.968160 -0.015267 -0.249867 0.159869 -0.805794 -0.570209 -0.192636 -0.591999 0.782578 -0.961228 -0.116653 -0.249867 0.243441 -0.784601 -0.570209 -0.129529 -0.608928 0.782578 -0.943708 -0.216754 -0.249867 0.324332 -0.754765 -0.570209 -0.064996 -0.619150 0.782578 -0.916049 -0.313722 -0.249867 0.401067 -0.716943 -0.570209 -0.000254 -0.622552 0.782578 -0.878123 -0.408002 -0.249867 0.473999 -0.670960 -0.570209 0.064996 -0.619150 0.782578 -0.830526 -0.497789 -0.249867 0.541710 -0.617586 -0.570209 0.129529 -0.608928 0.782578 -0.773780 -0.582092 -0.249867 0.603454 -0.557410 -0.570209 0.192636 -0.591999 0.782578 -0.709170 -0.659275 -0.249867 0.658059 -0.491752 -0.570209 0.253052 -0.568802 0.782578 -0.636168 -0.729971 -0.249867 0.705974 -0.420074 -0.570209 0.311273 -0.539148 0.782578 -0.556158 -0.792625 -0.249867 0.746113 -0.343770 -0.570209 0.366065 -0.503555 0.782578 -0.470868 -0.846079 -0.249867 0.777769 -0.264456 -0.570209 0.416363 -0.462832 0.782578 -0.379600 -0.890769 -0.249867 0.801203 -0.181484 -0.570209 0.462578 -0.416645 0.782578 -0.284150 -0.925648 -0.249867 0.815811 -0.096513 -0.570209 0.503698 -0.365869 0.782578 -0.185571 -0.950331 -0.249867 0.821433 -0.010478 -0.570209 0.539269 -0.311063 0.782578 -0.085912 -0.964461 -0.249867 0.818083 0.074853 -0.570209 0.568648 -0.253399 0.782578 0.015644 -0.968154 -0.249867 0.805732 0.160182 -0.570209 0.592074 -0.192406 0.782578 0.117027 -0.961182 -0.249867 0.784506 0.243746 -0.570209 0.608979 -0.129292 0.782578 0.216178 -0.943840 -0.249867 0.754963 0.323871 -0.570209 0.619110 -0.065374 0.782578 0.313908 -0.915985 -0.249867 0.716861 0.401213 -0.570209 0.622552 -0.000127 0.782578 0.408181 -0.878040 -0.249867 0.670863 0.474135 -0.570209 0.619137 0.065122 0.782578 0.497958 -0.830424 -0.249867 0.617476 0.541835 -0.570209 0.608902 0.129653 0.782578 0.581476 -0.774243 -0.249867 0.557890 0.603010 -0.570209 0.592152 0.192164 0.782578 0.659420 -0.709036 -0.249867 0.491618 0.658159 -0.570209 0.568751 0.253168 0.782578 0.730100 -0.636019 -0.249867 0.419931 0.706060 -0.570209 0.539085 0.311383 0.782578 0.792738 -0.555997 -0.249867 0.343618 0.746183 -0.570209 0.503481 0.366168 0.782578 0.846175 -0.470696 -0.249867 0.264298 0.777823 -0.570209 0.462747 0.416457 0.782578 0.890847 -0.379419 -0.249867 0.181321 0.801240 -0.570209 0.416551 0.462663 0.782578 0.925706 -0.283962 -0.249867 0.096347 0.815830 -0.570209 0.365767 0.503772 0.782578 0.950183 -0.186328 -0.249867 0.011132 0.821424 -0.570209 0.311492 0.539021 0.782578 0.964479 -0.085715 -0.249867 -0.075020 0.818067 -0.570209 0.253284 0.568699 0.782578 0.968151 0.015841 -0.249867 -0.160346 0.805699 -0.570209 0.192285 0.592113 0.782578 0.961158 0.117223 -0.249867 -0.243906 0.784456 -0.570209 0.129168 0.609005 0.782578 0.943796 0.216370 -0.249867 -0.324025 0.754897 -0.570209 0.065248 0.619124 0.782578 0.915921 0.314095 -0.249867 -0.401359 0.716780 -0.570209 0.000000 0.622552 0.782578 0.877957 0.408360 -0.249867 -0.474272 0.670767 -0.570209 -0.065248 0.619124 0.782578 0.830821 0.497297 -0.249867 -0.541344 0.617907 -0.570209 -0.129168 0.609005 0.782578 0.774125 0.581634 -0.249867 -0.603123 0.557767 -0.570209 -0.192285 0.592113 0.782578 0.708902 0.659564 -0.249867 -0.658260 0.491484 -0.570209 -0.253284 0.568699 0.782578 0.635870 0.730230 -0.249867 -0.706145 0.419787 -0.570209 -0.311492 0.539021 0.782578 0.556628 0.792295 -0.249867 -0.745909 0.344212 -0.570209 -0.365767 0.503772 0.782578 0.470524 0.846271 -0.249867 -0.777877 0.264139 -0.570209 -0.416551 0.462663 0.782578 0.379237 0.890924 -0.249867 -0.801276 0.181158 -0.570209 -0.462747 0.416457 0.782578 0.284699 0.925480 -0.249867 -0.815754 0.096996 -0.570209 -0.503481 0.366168 0.782578 0.186134 0.950221 -0.249867 -0.821427 0.010965 -0.570209 -0.539085 0.311383 0.782578 0.085519 0.964496 -0.249867 -0.818052 -0.075187 -0.570209 -0.568751 0.253168 0.782578 -0.016038 0.968147 -0.249867 -0.805666 -0.160510 -0.570209 -0.592152 0.192164 0.782578 -0.116457 0.961251 -0.249867 -0.784650 -0.243281 -0.570209 -0.608902 0.129653 0.782578 -0.216562 0.943752 -0.249867 -0.754831 -0.324178 -0.570209 -0.619137 0.065122 0.782578 0.273226 0.701767 0.657929 -0.269389 0.712407 -0.648001 -0.923459 -0.000188 0.383697 0.198171 0.726538 0.657929 -0.342571 0.680249 -0.648001 -0.918353 -0.096972 0.383697 0.121677 0.743185 0.657929 -0.411339 0.641011 -0.648001 -0.903325 -0.191785 0.383697 0.043116 0.751845 0.657929 -0.476256 0.594369 -0.648001 -0.878249 -0.285404 0.383697 -0.035921 0.752223 0.657929 -0.535927 0.541181 -0.648001 -0.843500 -0.375879 0.383697 -0.113817 0.744429 0.657929 -0.589213 0.482620 -0.648001 -0.799921 -0.461414 0.383697 -0.191211 0.728401 0.657929 -0.636550 0.418209 -0.648001 -0.747157 -0.542710 0.383697 -0.266500 0.704349 0.657929 -0.676875 0.349191 -0.648001 -0.686162 -0.618028 0.383697 -0.338853 0.672538 0.657929 -0.709745 0.276326 -0.648001 -0.617609 -0.686539 0.383697 -0.406840 0.633727 0.657929 -0.734596 0.201153 -0.648001 -0.543000 -0.746945 0.383697 -0.471019 0.587597 0.657929 -0.751633 0.123054 -0.648001 -0.461725 -0.799742 0.383697 -0.530009 0.534995 0.657929 -0.760390 0.043599 -0.648001 -0.375363 -0.843729 0.383697 -0.582684 0.477083 0.657929 -0.760808 -0.035574 -0.648001 -0.285745 -0.878138 0.383697 -0.629477 0.413386 0.657929 -0.752889 -0.115116 -0.648001 -0.192136 -0.903250 0.383697 -0.669336 0.345136 0.657929 -0.736678 -0.193390 -0.648001 -0.096411 -0.918413 0.383697 -0.701600 0.273655 0.657929 -0.712571 -0.268954 -0.648001 -0.000376 -0.923459 0.383697 -0.726417 0.198615 0.657929 -0.680458 -0.342155 -0.648001 0.096411 -0.918413 0.383697 -0.743232 0.121388 0.657929 -0.640850 -0.411588 -0.648001 0.192136 -0.903250 0.383697 -0.751861 0.042823 0.657929 -0.594184 -0.476487 -0.648001 0.285745 -0.878138 0.383697 -0.752244 -0.035461 0.657929 -0.541508 -0.535596 -0.648001 0.375363 -0.843729 0.383697 -0.744385 -0.114106 0.657929 -0.482391 -0.589400 -0.648001 0.461725 -0.799742 0.383697 -0.728326 -0.191495 0.657929 -0.417961 -0.636712 -0.648001 0.543000 -0.746945 0.383697 -0.704511 -0.266070 0.657929 -0.349604 -0.676662 -0.648001 0.617609 -0.686539 0.383697 -0.672745 -0.338442 0.657929 -0.276760 -0.709576 -0.648001 0.686162 -0.618028 0.383697 -0.633569 -0.407087 0.657929 -0.200867 -0.734675 -0.648001 0.747157 -0.542710 0.383697 -0.587414 -0.471247 0.657929 -0.122761 -0.751681 -0.648001 0.799921 -0.461414 0.383697 -0.535319 -0.529682 0.657929 -0.044064 -0.760363 -0.648001 0.843500 -0.375879 0.383697 -0.476856 -0.582870 0.657929 0.035870 -0.760794 -0.648001 0.878249 -0.285404 0.383697 -0.413141 -0.629638 0.657929 0.115409 -0.752844 -0.648001 0.903325 -0.191785 0.383697 -0.345544 -0.669125 0.657929 0.192940 -0.736796 -0.648001 0.918353 -0.096972 0.383697 -0.273512 -0.701655 0.657929 0.269099 -0.712516 -0.648001 0.923459 -0.000188 0.383697 -0.198467 -0.726457 0.657929 0.342294 -0.680389 -0.648001 0.918393 0.096598 0.383697 -0.121236 -0.743257 0.657929 0.411719 -0.640767 -0.648001 0.903211 0.192320 0.383697 -0.043422 -0.751827 0.657929 0.476014 -0.594563 -0.648001 0.878365 0.285046 0.383697 0.035614 -0.752237 0.657929 0.535706 -0.541399 -0.648001 0.843653 0.375535 0.383697 0.114258 -0.744362 0.657929 0.589499 -0.482271 -0.648001 0.799648 0.461887 0.383697 0.191643 -0.728287 0.657929 0.636797 -0.417831 -0.648001 0.746835 0.543153 0.383697 0.266213 -0.704457 0.657929 0.676733 -0.349466 -0.648001 0.686413 0.617749 0.383697 0.338579 -0.672676 0.657929 0.709632 -0.276615 -0.648001 0.617888 0.686288 0.383697 0.407216 -0.633486 0.657929 0.734715 -0.200717 -0.648001 0.542558 0.747267 0.383697 0.470779 -0.587789 0.657929 0.751583 -0.123360 -0.648001 0.462050 0.799554 0.383697 0.529791 -0.535211 0.657929 0.760372 -0.043909 -0.648001 0.375707 0.843576 0.383697 0.582967 -0.476737 0.657929 0.760787 0.036025 -0.648001 0.285225 0.878307 0.383697 0.629722 -0.413013 0.657929 0.752821 0.115563 -0.648001 0.191601 0.903364 0.383697 0.669195 -0.345408 0.657929 0.736757 0.193090 -0.648001 0.096785 0.918373 0.383697 0.701711 -0.273369 0.657929 0.712462 0.269244 -0.648001 0.000000 0.923459 0.383697 0.726498 -0.198319 0.657929 0.680319 0.342433 -0.648001 -0.096785 0.918373 0.383697 0.743160 -0.121828 0.657929 0.641094 0.411208 -0.648001 -0.191601 0.903364 0.383697 0.751836 -0.043269 0.657929 0.594466 0.476135 -0.648001 -0.285225 0.878307 0.383697 0.752230 0.035767 0.657929 0.541290 0.535817 -0.648001 -0.375707 0.843576 0.383697 0.744338 0.114409 0.657929 0.482151 0.589597 -0.648001 -0.462050 0.799554 0.383697 0.728440 0.191063 0.657929 0.418338 0.636464 -0.648001 -0.542558 0.747267 0.383697 0.704403 0.266356 0.657929 0.349328 0.676804 -0.648001 -0.617888 0.686288 0.383697 0.672607 0.338716 0.657929 0.276471 0.709689 -0.648001 -0.686413 0.617749 0.383697 0.633810 0.406711 0.657929 0.201302 0.734555 -0.648001 -0.746835 0.543153 0.383697 0.587693 0.470899 0.657929 0.123207 0.751608 -0.648001 -0.799648 0.461887 0.383697 0.535103 0.529900 0.657929 0.043754 0.760381 -0.648001 -0.843653 0.375535 0.383697 0.476619 0.583064 0.657929 -0.036180 0.760779 -0.648001 -0.878365 0.285046 0.383697 0.413514 0.629393 0.657929 -0.114963 0.752913 -0.648001 -0.903211 0.192320 0.383697 0.345272 0.669266 0.657929 -0.193240 0.736717 -0.648001 -0.918393 0.096598 0.383697 0.720846 -0.142568 0.678274 0.103733 0.989785 0.097801 -0.685289 -0.000140 0.728272 0.731818 -0.066233 0.678274 -0.000574 0.995206 0.097801 -0.681500 -0.071962 0.728272 0.734740 0.010097 0.678274 -0.103886 0.989769 0.097801 -0.670347 -0.142321 0.728272 0.729635 0.087047 0.678274 -0.207049 0.973430 0.097801 -0.651739 -0.211795 0.728272 0.716493 0.163039 0.678274 -0.307931 0.946369 0.097801 -0.625952 -0.278935 0.728272 0.695697 0.236539 0.678274 -0.404512 0.909288 0.097801 -0.593613 -0.342410 0.728272 0.667074 0.308150 0.678274 -0.497584 0.861884 0.097801 -0.554456 -0.402739 0.728272 0.631104 0.376367 0.678274 -0.585176 0.804987 0.097801 -0.509193 -0.458632 0.728272 0.588182 0.440439 0.678274 -0.666321 0.739223 0.097801 -0.458321 -0.509473 0.728272 0.539281 0.499120 0.678274 -0.739462 0.666057 0.097801 -0.402955 -0.554300 0.728272 0.484000 0.552891 0.678274 -0.805197 0.584887 0.097801 -0.342641 -0.593480 0.728272 0.423387 0.600573 0.678274 -0.862063 0.497276 0.097801 -0.278553 -0.626122 0.728272 0.358752 0.641281 0.678274 -0.909028 0.405096 0.097801 -0.212048 -0.651656 0.728272 0.289566 0.675349 0.678274 -0.946479 0.307592 0.097801 -0.142582 -0.670292 0.728272 0.217190 0.701978 0.678274 -0.973504 0.206701 0.097801 -0.071546 -0.681544 0.728272 0.143008 0.720759 0.678274 -0.989721 0.104338 0.097801 -0.000279 -0.685289 0.728272 0.066680 0.731777 0.678274 -0.995206 0.000034 0.097801 0.071546 -0.681544 0.728272 -0.010383 0.734736 0.678274 -0.989729 -0.104271 0.097801 0.142582 -0.670292 0.728272 -0.087331 0.729601 0.678274 -0.973349 -0.207428 0.097801 0.212048 -0.651656 0.728272 -0.162601 0.716593 0.678274 -0.946557 -0.307353 0.097801 0.278553 -0.626122 0.728272 -0.236810 0.695605 0.678274 -0.909131 -0.404866 0.097801 0.342641 -0.593480 0.728272 -0.308410 0.666954 0.678274 -0.861691 -0.497920 0.097801 0.402955 -0.554300 0.728272 -0.375982 0.631334 0.678274 -0.805345 -0.584684 0.097801 0.458321 -0.509473 0.728272 -0.440079 0.588451 0.678274 -0.739630 -0.665870 0.097801 0.509193 -0.458632 0.728272 -0.499329 0.539087 0.678274 -0.665769 -0.739721 0.097801 0.554456 -0.402739 0.728272 -0.553079 0.483785 0.678274 -0.584574 -0.805424 0.097801 0.593613 -0.342410 0.728272 -0.600314 0.423754 0.678274 -0.497802 -0.861759 0.097801 0.625952 -0.278935 0.728272 -0.641420 0.358503 0.678274 -0.404742 -0.909186 0.097801 0.651739 -0.211795 0.728272 -0.675461 0.289303 0.678274 -0.307224 -0.946598 0.097801 0.670347 -0.142321 0.728272 -0.701845 0.217618 0.678274 -0.207295 -0.973377 0.097801 0.681500 -0.071962 0.728272 -0.720788 0.142862 0.678274 -0.104137 -0.989743 0.097801 0.685289 -0.000140 0.728272 -0.731791 0.066531 0.678274 0.000169 -0.995206 0.097801 0.681529 0.071684 0.728272 -0.734734 -0.010532 0.678274 0.104473 -0.989707 0.097801 0.670263 0.142719 0.728272 -0.729670 -0.086750 0.678274 0.206652 -0.973514 0.097801 0.651825 0.211529 0.728272 -0.716560 -0.162747 0.678274 0.307546 -0.946494 0.097801 0.626065 0.278680 0.728272 -0.695556 -0.236951 0.678274 0.405051 -0.909048 0.097801 0.593410 0.342762 0.728272 -0.666891 -0.308546 0.678274 0.498095 -0.861589 0.097801 0.554218 0.403067 0.728272 -0.631257 -0.376110 0.678274 0.584848 -0.805226 0.097801 0.509380 0.458424 0.728272 -0.588361 -0.440199 0.678274 0.666020 -0.739495 0.097801 0.458528 0.509286 0.728272 -0.538985 -0.499439 0.678274 0.739856 -0.665618 0.097801 0.402626 0.554538 0.728272 -0.484225 -0.552694 0.678274 0.804958 -0.585215 0.097801 0.342882 0.593340 0.728272 -0.423632 -0.600400 0.678274 0.861860 -0.497627 0.097801 0.278808 0.626009 0.728272 -0.358372 -0.641493 0.678274 0.909268 -0.404557 0.097801 0.211662 0.651782 0.728272 -0.289165 -0.675520 0.678274 0.946661 -0.307031 0.097801 0.142185 0.670376 0.728272 -0.217475 -0.701889 0.678274 0.973420 -0.207097 0.097801 0.071823 0.681515 0.728272 -0.142715 -0.720817 0.678274 0.989764 -0.103935 0.097801 0.000000 0.685289 0.728272 -0.066382 -0.731805 0.678274 0.995206 0.000372 0.097801 -0.071823 0.681515 0.728272 0.009947 -0.734742 0.678274 0.989790 0.103685 0.097801 -0.142185 0.670376 0.728272 0.086899 -0.729653 0.678274 0.973472 0.206851 0.097801 -0.211662 0.651782 0.728272 0.162893 -0.716527 0.678274 0.946431 0.307738 0.097801 -0.278808 0.626009 0.728272 0.237093 -0.695508 0.678274 0.908966 0.405236 0.097801 -0.342882 0.593340 0.728272 0.308014 -0.667137 0.678274 0.861986 0.497409 0.097801 -0.402626 0.554538 0.728272 0.376239 -0.631181 0.678274 0.805106 0.585012 0.097801 -0.458528 0.509286 0.728272 0.440319 -0.588272 0.678274 0.739359 0.666171 0.097801 -0.509380 0.458424 0.728272 0.499010 -0.539383 0.678274 0.666207 0.739326 0.097801 -0.554218 0.403067 0.728272 0.552793 -0.484112 0.678274 0.585051 0.805078 0.097801 -0.593410 0.342762 0.728272 0.600487 -0.423509 0.678274 0.497451 0.861961 0.097801 -0.626065 0.278680 0.728272 0.641566 -0.358242 0.678274 0.404372 0.909350 0.097801 -0.651825 0.211529 0.728272 0.675290 -0.289703 0.678274 0.307785 0.946416 0.097801 -0.670263 0.142719 0.728272 0.701934 -0.217333 0.678274 0.206899 0.973462 0.097801 -0.681529 0.071684 0.728272 -0.148234 -0.721002 -0.676892 0.154519 -0.692933 0.704250 -0.976806 -0.000199 0.214125 -0.071852 -0.732567 -0.676892 0.226293 -0.672922 0.704250 -0.971406 -0.102574 0.214125 0.004586 -0.736068 -0.676892 0.294928 -0.645794 0.704250 -0.955509 -0.202864 0.214125 0.081706 -0.731534 -0.676892 0.360987 -0.611327 0.704250 -0.928985 -0.301891 0.214125 0.157926 -0.718941 -0.676892 0.423071 -0.570126 0.704250 -0.892228 -0.397593 0.214125 0.231708 -0.698662 -0.676892 0.479971 -0.523125 0.704250 -0.846132 -0.488069 0.214125 0.303657 -0.670530 -0.676892 0.532155 -0.469940 0.704250 -0.790319 -0.574061 0.214125 0.372260 -0.635011 -0.676892 0.578477 -0.411578 0.704250 -0.725800 -0.653731 0.214125 0.436764 -0.592498 -0.676892 0.618428 -0.348683 0.704250 -0.653287 -0.726200 0.214125 0.495913 -0.543955 -0.676892 0.651284 -0.282598 0.704250 -0.574369 -0.790095 0.214125 0.550192 -0.488984 -0.676892 0.677315 -0.212783 0.704250 -0.488398 -0.845942 0.214125 0.598411 -0.428627 -0.676892 0.695886 -0.140623 0.704250 -0.397047 -0.892471 0.214125 0.639675 -0.364189 -0.676892 0.706725 -0.067622 0.704250 -0.302252 -0.928867 0.214125 0.674321 -0.295141 -0.676892 0.709920 0.006821 0.704250 -0.203236 -0.955429 0.214125 0.701540 -0.222841 -0.676892 0.705295 0.081188 0.704250 -0.101981 -0.971468 0.214125 0.720911 -0.148675 -0.676892 0.693027 0.154096 0.704250 -0.000398 -0.976806 0.214125 0.732523 -0.072299 -0.676892 0.673060 0.225882 0.704250 0.101981 -0.971468 0.214125 0.736066 0.004872 -0.676892 0.645679 0.295179 0.704250 0.203236 -0.955429 0.214125 0.731502 0.081991 -0.676892 0.611186 0.361225 0.704250 0.302252 -0.928867 0.214125 0.719038 0.157487 -0.676892 0.570384 0.422722 0.704250 0.397047 -0.892471 0.214125 0.698572 0.231980 -0.676892 0.522939 0.480175 0.704250 0.488398 -0.845942 0.214125 0.670411 0.303917 -0.676892 0.469733 0.532338 0.704250 0.574369 -0.790095 0.214125 0.635239 0.371873 -0.676892 0.411931 0.578226 0.704250 0.653287 -0.726200 0.214125 0.592765 0.436402 -0.676892 0.349060 0.618215 0.704250 0.725800 -0.653731 0.214125 0.543762 0.496125 -0.676892 0.282345 0.651394 0.704250 0.790319 -0.574061 0.214125 0.488770 0.550382 -0.676892 0.212519 0.677398 0.704250 0.846132 -0.488069 0.214125 0.428993 0.598149 -0.676892 0.141048 0.695800 0.704250 0.892228 -0.397593 0.214125 0.363940 0.639816 -0.676892 0.067347 0.706751 0.704250 0.928985 -0.301891 0.214125 0.294878 0.674436 -0.676892 -0.007097 0.709917 0.704250 0.955509 -0.202864 0.214125 0.223270 0.701404 -0.676892 -0.080757 0.705344 0.704250 0.971406 -0.102574 0.214125 0.148528 0.720941 -0.676892 -0.154237 0.692996 0.704250 0.976806 -0.000199 0.214125 0.072150 0.732538 -0.676892 -0.226019 0.673014 0.704250 0.971447 0.102178 0.214125 -0.005022 0.736065 -0.676892 -0.295311 0.645619 0.704250 0.955388 0.203430 0.214125 -0.081408 0.731567 -0.676892 -0.360738 0.611474 0.704250 0.929107 0.301513 0.214125 -0.157633 0.719006 -0.676892 -0.422839 0.570298 0.704250 0.892390 0.397229 0.214125 -0.232122 0.698525 -0.676892 -0.480281 0.522841 0.704250 0.845842 0.488570 0.214125 -0.304054 0.670349 -0.676892 -0.532433 0.469624 0.704250 0.789978 0.574530 0.214125 -0.372002 0.635163 -0.676892 -0.578310 0.411814 0.704250 0.726067 0.653435 0.214125 -0.436523 0.592676 -0.676892 -0.618286 0.348935 0.704250 0.653583 0.725933 0.214125 -0.496235 0.543661 -0.676892 -0.651451 0.282212 0.704250 0.573901 0.790436 0.214125 -0.549993 0.489209 -0.676892 -0.677229 0.213058 0.704250 0.488742 0.845743 0.214125 -0.598237 0.428871 -0.676892 -0.695829 0.140907 0.704250 0.397411 0.892309 0.214125 -0.639890 0.363810 -0.676892 -0.706765 0.067203 0.704250 0.301702 0.929046 0.214125 -0.674496 0.294741 -0.676892 -0.709915 -0.007241 0.704250 0.202669 0.955550 0.214125 -0.701450 0.223127 -0.676892 -0.705328 -0.080900 0.704250 0.102376 0.971426 0.214125 -0.720972 0.148381 -0.676892 -0.692964 -0.154378 0.704250 0.000000 0.976806 0.214125 -0.732552 0.072001 -0.676892 -0.672968 -0.226156 0.704250 -0.102376 0.971426 0.214125 -0.736069 -0.004436 -0.676892 -0.645854 -0.294796 0.704250 -0.202669 0.955550 0.214125 -0.731550 -0.081557 -0.676892 -0.611400 -0.360863 0.704250 -0.301702 0.929046 0.214125 -0.718973 -0.157780 -0.676892 -0.570212 -0.422955 0.704250 -0.397411 0.892309 0.214125 -0.698477 -0.232264 -0.676892 -0.522743 -0.480388 0.704250 -0.488742 0.845743 0.214125 -0.670591 -0.303520 -0.676892 -0.470048 -0.532059 0.704250 -0.573901 0.790436 0.214125 -0.635087 -0.372131 -0.676892 -0.411696 -0.578393 0.704250 -0.653583 0.725933 0.214125 -0.592587 -0.436643 -0.676892 -0.348809 -0.618357 0.704250 -0.726067 0.653435 0.214125 -0.544056 -0.495802 -0.676892 -0.282731 -0.651226 0.704250 -0.789978 0.574530 0.214125 -0.489096 -0.550093 -0.676892 -0.212920 -0.677272 0.704250 -0.845842 0.488570 0.214125 -0.428749 -0.598324 -0.676892 -0.140765 -0.695857 0.704250 -0.892390 0.397229 0.214125 -0.363679 -0.639965 -0.676892 -0.067059 -0.706778 0.704250 -0.929107 0.301513 0.214125 -0.295278 -0.674261 -0.676892 0.006676 -0.709921 0.704250 -0.955388 0.203430 0.214125 -0.222984 -0.701495 -0.676892 0.081044 -0.705311 0.704250 -0.971447 0.102178 0.214125 -0.005407 -0.999620 -0.027013 0.203296 -0.027548 0.978730 -0.979102 -0.000199 0.203368 0.099390 -0.994682 -0.027013 0.205063 -0.006089 0.978730 -0.973689 -0.102815 0.203368 0.202114 -0.978989 -0.027013 0.204588 0.015232 0.978730 -0.957755 -0.203341 0.203368 0.303606 -0.952415 -0.027013 0.201864 0.036590 0.978730 -0.931168 -0.302601 0.203368 0.401753 -0.915349 -0.027013 0.196918 0.057546 0.978730 -0.894325 -0.398527 0.203368 0.494608 -0.868697 -0.027013 0.189880 0.077677 0.978730 -0.848121 -0.489216 0.203368 0.582929 -0.812074 -0.027013 0.180693 0.097150 0.978730 -0.792177 -0.575411 0.203368 0.664830 -0.746506 -0.027013 0.169516 0.115553 0.978730 -0.727507 -0.655268 0.203368 0.739407 -0.672716 -0.027013 0.156471 0.132683 0.978730 -0.654823 -0.727907 0.203368 0.805249 -0.592321 -0.027013 0.141852 0.148210 0.978730 -0.575719 -0.791953 0.203368 0.862894 -0.504663 -0.027013 0.125537 0.162261 0.978730 -0.489546 -0.847931 0.203368 0.911034 -0.411447 -0.027013 0.107839 0.174524 0.978730 -0.397981 -0.894569 0.203368 0.948824 -0.314647 -0.027013 0.089139 0.184776 0.978730 -0.302963 -0.931051 0.203368 0.976576 -0.213470 -0.027013 0.069282 0.193101 0.978730 -0.203714 -0.957676 0.203368 0.993571 -0.109942 -0.027013 0.048662 0.199299 0.978730 -0.102220 -0.973752 0.203368 0.999617 -0.006018 -0.027013 0.027672 0.203279 0.978730 -0.000399 -0.979102 0.203368 0.994742 0.098782 -0.027013 0.006214 0.205060 0.978730 0.102220 -0.973752 0.203368 0.978911 0.202494 -0.027013 -0.015312 0.204582 0.978730 0.203714 -0.957676 0.203368 0.952297 0.303976 -0.027013 -0.036669 0.201850 0.978730 0.302963 -0.931051 0.203368 0.915595 0.401194 -0.027013 -0.057425 0.196953 0.978730 0.397981 -0.894569 0.203368 0.868504 0.494945 -0.027013 -0.077751 0.189850 0.978730 0.489546 -0.847931 0.203368 0.811847 0.583245 -0.027013 -0.097221 0.180655 0.978730 0.575719 -0.791953 0.203368 0.746912 0.664374 -0.027013 -0.115450 0.169586 0.978730 0.654823 -0.727907 0.203368 0.673168 0.738996 -0.027013 -0.132588 0.156552 0.978730 0.727507 -0.655268 0.203368 0.592008 0.805479 -0.027013 -0.148265 0.141794 0.978730 0.792177 -0.575411 0.203368 0.504328 0.863090 -0.027013 -0.162310 0.125474 0.978730 0.848121 -0.489216 0.203368 0.412003 0.910782 -0.027013 -0.174458 0.107946 0.978730 0.894325 -0.398527 0.203368 0.314278 0.948947 -0.027013 -0.184811 0.089067 0.978730 0.931168 -0.302601 0.203368 0.213090 0.976659 -0.027013 -0.193128 0.069207 0.978730 0.957755 -0.203341 0.203368 0.110549 0.993503 -0.027013 -0.199269 0.048784 0.978730 0.973689 -0.102815 0.203368 0.005814 0.999618 -0.027013 -0.203285 0.027630 0.978730 0.979102 -0.000199 0.203368 -0.098985 0.994722 -0.027013 -0.205061 0.006173 0.978730 0.973731 0.102419 0.203368 -0.202694 0.978870 -0.027013 -0.204579 -0.015353 0.978730 0.957634 0.203909 0.203368 -0.303218 0.952538 -0.027013 -0.201879 -0.036508 0.978730 0.931292 0.302221 0.203368 -0.401381 0.915513 -0.027013 -0.196941 -0.057465 0.978730 0.894488 0.398163 0.203368 -0.495122 0.868403 -0.027013 -0.189834 -0.077790 0.978730 0.847831 0.489719 0.203368 -0.583410 0.811728 -0.027013 -0.180635 -0.097257 0.978730 0.791835 0.575880 0.203368 -0.664526 0.746777 -0.027013 -0.169563 -0.115484 0.978730 0.727773 0.654971 0.203368 -0.739133 0.673017 -0.027013 -0.156525 -0.132619 0.978730 0.655120 0.727640 0.203368 -0.805600 0.591844 -0.027013 -0.141764 -0.148294 0.978730 0.575250 0.792294 0.203368 -0.862688 0.505015 -0.027013 -0.125603 -0.162210 0.978730 0.489891 0.847731 0.203368 -0.910866 0.411818 -0.027013 -0.107911 -0.174480 0.978730 0.398345 0.894406 0.203368 -0.949011 0.314084 -0.027013 -0.089029 -0.184829 0.978730 0.302411 0.931230 0.203368 -0.976702 0.212891 -0.027013 -0.069168 -0.193142 0.978730 0.203146 0.957796 0.203368 -0.993526 0.110347 -0.027013 -0.048743 -0.199279 0.978730 0.102617 0.973710 0.203368 -0.999619 0.005611 -0.027013 -0.027589 -0.203290 0.978730 0.000000 0.979102 0.203368 -0.994702 -0.099187 -0.027013 -0.006131 -0.205062 0.978730 -0.102617 0.973710 0.203368 -0.979031 -0.201914 -0.027013 0.015190 -0.204591 0.978730 -0.203146 0.957796 0.203368 -0.952477 -0.303412 -0.027013 0.036549 -0.201872 0.978730 -0.302411 0.931230 0.203368 -0.915431 -0.401567 -0.027013 0.057506 -0.196929 0.978730 -0.398345 0.894406 0.203368 -0.868302 -0.495299 -0.027013 0.077828 -0.189818 0.978730 -0.489891 0.847731 0.203368 -0.812193 -0.582764 -0.027013 0.097113 -0.180713 0.978730 -0.575250 0.792294 0.203368 -0.746642 -0.664678 -0.027013 0.115519 -0.169539 0.978730 -0.655120 0.727640 0.203368 -0.672867 -0.739270 -0.027013 0.132651 -0.156498 0.978730 -0.727773 0.654971 0.203368 -0.592485 -0.805128 -0.027013 0.148181 -0.141882 0.978730 -0.791835 0.575880 0.203368 -0.504839 -0.862791 -0.027013 0.162235 -0.125570 0.978730 -0.847831 0.489719 0.203368 -0.411632 -0.910950 -0.027013 0.174502 -0.107875 0.978730 -0.894488 0.398163 0.203368 -0.313891 -0.949075 -0.027013 0.184847 -0.088992 0.978730 -0.931292 0.302221 0.203368 -0.213669 -0.976533 -0.027013 0.193087 -0.069322 0.978730 -0.957634 0.203909 0.203368 -0.110145 -0.993548 -0.027013 0.199289 -0.048703 0.978730 -0.973731 0.102419 0.203368 0.323340 0.817416 -0.476742 0.459064 -0.576048 -0.676335 -0.827473 -0.000169 -0.561505 0.235888 0.846802 -0.476742 0.516909 -0.524762 -0.676335 -0.822898 -0.086893 -0.561505 0.146705 0.866715 -0.476742 0.568593 -0.468265 -0.676335 -0.809431 -0.171850 -0.561505 0.055059 0.877317 -0.476742 0.614539 -0.406094 -0.676335 -0.786962 -0.255738 -0.561505 -0.037193 0.878256 -0.476742 0.653716 -0.339449 -0.676335 -0.755825 -0.336809 -0.561505 -0.128167 0.869650 -0.476742 0.685423 -0.269751 -0.676335 -0.716776 -0.413453 -0.561505 -0.218606 0.851427 -0.476742 0.709920 -0.196428 -0.676335 -0.669496 -0.486300 -0.561505 -0.306638 0.823827 -0.476742 0.726597 -0.120941 -0.676335 -0.614841 -0.553789 -0.561505 -0.391292 0.787152 -0.476742 0.735271 -0.044123 -0.676335 -0.553414 -0.615179 -0.561505 -0.470894 0.742278 -0.476742 0.735879 0.032446 -0.676335 -0.486560 -0.669307 -0.561505 -0.546097 0.688836 -0.476742 0.728426 0.109393 -0.676335 -0.413732 -0.716615 -0.561505 -0.615284 0.627808 -0.476742 0.712949 0.185135 -0.676335 -0.336347 -0.756031 -0.561505 -0.677134 0.560542 -0.476742 0.689877 0.258147 -0.676335 -0.256044 -0.786863 -0.561505 -0.732154 0.486486 -0.476742 0.659022 0.329030 -0.676335 -0.172165 -0.809365 -0.561505 -0.779109 0.407072 -0.476742 0.620908 0.396288 -0.676335 -0.086390 -0.822951 -0.561505 -0.817218 0.323839 -0.476742 0.576328 0.458712 -0.676335 -0.000337 -0.827473 -0.561505 -0.846658 0.236405 -0.476742 0.525078 0.516589 -0.676335 0.086390 -0.822951 -0.561505 -0.866772 0.146368 -0.476742 0.468044 0.568775 -0.676335 0.172165 -0.809365 -0.561505 -0.877339 0.054718 -0.476742 0.405854 0.614697 -0.676335 0.256044 -0.786863 -0.561505 -0.878279 -0.036657 -0.476742 0.339848 0.653509 -0.676335 0.336347 -0.756031 -0.561505 -0.869600 -0.128505 -0.476742 0.269484 0.685528 -0.676335 0.413732 -0.716615 -0.561505 -0.851342 -0.218937 -0.476742 0.196152 0.709997 -0.676335 0.486560 -0.669307 -0.561505 -0.824014 -0.306135 -0.476742 0.121385 0.726523 -0.676335 0.553414 -0.615179 -0.561505 -0.787391 -0.390811 -0.476742 0.044572 0.735244 -0.676335 0.614841 -0.553789 -0.561505 -0.742094 -0.471183 -0.476742 -0.032732 0.735866 -0.676335 0.669496 -0.486300 -0.561505 -0.688624 -0.546365 -0.476742 -0.109676 0.728383 -0.676335 0.716776 -0.413453 -0.561505 -0.628184 -0.614901 -0.476742 -0.184699 0.713062 -0.676335 0.755825 -0.336809 -0.561505 -0.560278 -0.677352 -0.476742 -0.258416 0.689777 -0.676335 0.786962 -0.255738 -0.561505 -0.486201 -0.732343 -0.476742 -0.329286 0.658894 -0.676335 0.809431 -0.171850 -0.561505 -0.407548 -0.778860 -0.476742 -0.395908 0.621150 -0.676335 0.822898 -0.086893 -0.561505 -0.323673 -0.817284 -0.476742 -0.458829 0.576235 -0.676335 0.827473 -0.000169 -0.561505 -0.236233 -0.846706 -0.476742 -0.516695 0.524973 -0.676335 0.822934 0.086558 -0.561505 -0.146191 -0.866802 -0.476742 -0.568871 0.467928 -0.676335 0.809329 0.172330 -0.561505 -0.055416 -0.877295 -0.476742 -0.614374 0.406344 -0.676335 0.787067 0.255418 -0.561505 0.036836 -0.878271 -0.476742 -0.653578 0.339715 -0.676335 0.755962 0.336501 -0.561505 0.128682 -0.869574 -0.476742 -0.685583 0.269345 -0.676335 0.716531 0.413878 -0.561505 0.219111 -0.851298 -0.476742 -0.710037 0.196007 -0.676335 0.669207 0.486696 -0.561505 0.306302 -0.823952 -0.476742 -0.726548 0.121237 -0.676335 0.615066 0.553539 -0.561505 0.390972 -0.787311 -0.476742 -0.735253 0.044422 -0.676335 0.553664 0.614954 -0.561505 0.471334 -0.741998 -0.476742 -0.735860 -0.032882 -0.676335 0.486163 0.669595 -0.561505 0.545816 -0.689059 -0.476742 -0.728470 -0.109096 -0.676335 0.414024 0.716447 -0.561505 0.615028 -0.628058 -0.476742 -0.713024 -0.184844 -0.676335 0.336655 0.755894 -0.561505 0.677466 -0.560140 -0.476742 -0.689724 -0.258556 -0.676335 0.255578 0.787014 -0.561505 0.732442 -0.486052 -0.476742 -0.658827 -0.329420 -0.676335 0.171686 0.809466 -0.561505 0.778943 -0.407389 -0.476742 -0.621069 -0.396035 -0.676335 0.086725 0.822916 -0.561505 0.817350 -0.323506 -0.476742 -0.576141 -0.458946 -0.676335 0.000000 0.827473 -0.561505 0.846754 -0.236061 -0.476742 -0.524868 -0.516802 -0.676335 -0.086725 0.822916 -0.561505 0.866685 -0.146881 -0.476742 -0.468381 -0.568498 -0.676335 -0.171686 0.809466 -0.561505 0.877306 -0.055238 -0.476742 -0.406219 -0.614457 -0.676335 -0.255578 0.787014 -0.561505 0.878264 0.037015 -0.476742 -0.339582 -0.653647 -0.676335 -0.336655 0.755894 -0.561505 0.869547 0.128859 -0.476742 -0.269205 -0.685638 -0.676335 -0.414024 0.716447 -0.561505 0.851472 0.218433 -0.476742 -0.196573 -0.709880 -0.676335 -0.486163 0.669595 -0.561505 0.823889 0.306470 -0.476742 -0.121089 -0.726573 -0.676335 -0.553664 0.614954 -0.561505 0.787231 0.391132 -0.476742 -0.044272 -0.735262 -0.676335 -0.615066 0.553539 -0.561505 0.742373 0.470743 -0.476742 0.032296 -0.735886 -0.676335 -0.669207 0.486696 -0.561505 0.688948 0.545957 -0.476742 0.109245 -0.728448 -0.676335 -0.716531 0.413878 -0.561505 0.627933 0.615156 -0.476742 0.184989 -0.712986 -0.676335 -0.755962 0.336501 -0.561505 0.560002 0.677580 -0.476742 0.258697 -0.689671 -0.676335 -0.787067 0.255418 -0.561505 0.486635 0.732055 -0.476742 0.328895 -0.659089 -0.676335 -0.809329 0.172330 -0.561505 0.407230 0.779026 -0.476742 0.396161 -0.620989 -0.676335 -0.822934 0.086558 -0.561505 -0.214631 -0.833981 -0.508340 0.324706 -0.551794 0.768173 -0.921140 -0.000188 0.389231 -0.126042 -0.851882 -0.508340 0.380750 -0.514723 0.768173 -0.916048 -0.096729 0.389231 -0.036925 -0.860364 -0.508340 0.432127 -0.472415 0.768173 -0.901056 -0.191303 0.389231 0.053451 -0.859496 -0.508340 0.479260 -0.424524 0.768173 -0.876044 -0.284687 0.389231 0.143238 -0.849160 -0.508340 0.521114 -0.371956 0.768173 -0.841382 -0.374935 0.389231 0.230618 -0.829702 -0.508340 0.556912 -0.315848 0.768173 -0.797913 -0.460255 0.389231 0.316306 -0.800962 -0.508340 0.586948 -0.255740 0.768173 -0.745280 -0.541347 0.389231 0.398511 -0.763400 -0.508340 0.610518 -0.192815 0.768173 -0.684439 -0.616476 0.389231 0.476326 -0.717429 -0.508340 0.627364 -0.127767 0.768173 -0.616058 -0.684815 0.389231 0.548230 -0.664104 -0.508340 0.637239 -0.061948 0.768173 -0.541637 -0.745070 0.389231 0.614814 -0.602988 -0.508340 0.640221 0.005181 0.768173 -0.460565 -0.797734 0.389231 0.674625 -0.535230 -0.508340 0.636153 0.072252 0.768173 -0.374420 -0.841611 0.389231 0.726544 -0.462303 -0.508340 0.625215 0.137902 0.768173 -0.285028 -0.875933 0.389231 0.770995 -0.383610 -0.508340 0.607318 0.202670 0.768173 -0.191654 -0.900982 0.389231 0.806954 -0.300692 -0.508340 0.582732 0.265205 0.768173 -0.096169 -0.916106 0.389231 0.833849 -0.215140 -0.508340 0.551992 0.324369 0.768173 -0.000375 -0.921140 0.389231 0.851805 -0.126562 -0.508340 0.514956 0.380435 0.768173 0.096169 -0.916106 0.389231 0.860379 -0.036590 -0.508340 0.472247 0.432311 0.768173 0.191654 -0.900982 0.389231 0.859475 0.053786 -0.508340 0.424337 0.479425 0.768173 0.285028 -0.875933 0.389231 0.849248 0.142719 -0.508340 0.372274 0.520886 0.768173 0.374420 -0.841611 0.389231 0.829612 0.230940 -0.508340 0.315631 0.557034 0.768173 0.460565 -0.797734 0.389231 0.800839 0.316618 -0.508340 0.255512 0.587047 0.768173 0.541637 -0.745070 0.389231 0.763643 0.398044 -0.508340 0.193188 0.610400 0.768173 0.616058 -0.684815 0.389231 0.717719 0.475887 -0.508340 0.128150 0.627286 0.768173 0.684439 -0.616476 0.389231 0.663890 0.548489 -0.508340 0.061700 0.637263 0.768173 0.745280 -0.541347 0.389231 0.602749 0.615048 -0.508340 -0.005430 0.640219 0.768173 0.797913 -0.460255 0.389231 0.535642 0.674298 -0.508340 -0.071863 0.636197 0.768173 0.841382 -0.374935 0.389231 0.462021 0.726724 -0.508340 -0.138145 0.625161 0.768173 0.876044 -0.284687 0.389231 0.383310 0.771144 -0.508340 -0.202906 0.607239 0.768173 0.901056 -0.191303 0.389231 0.301185 0.806770 -0.508340 -0.264849 0.582894 0.768173 0.916048 -0.096729 0.389231 0.214971 0.833893 -0.508340 -0.324481 0.551926 0.768173 0.921140 -0.000188 0.389231 0.126389 0.851831 -0.508340 -0.380540 0.514878 0.768173 0.916087 0.096356 0.389231 0.036415 0.860386 -0.508340 -0.432407 0.472159 0.768173 0.900943 0.191837 0.389231 -0.053101 0.859518 -0.508340 -0.479087 0.424719 0.768173 0.876160 0.284330 0.389231 -0.142892 0.849218 -0.508340 -0.520962 0.372168 0.768173 0.841534 0.374592 0.389231 -0.231109 0.829565 -0.508340 -0.557099 0.315518 0.768173 0.797640 0.460728 0.389231 -0.316781 0.800775 -0.508340 -0.587099 0.255392 0.768173 0.744959 0.541789 0.389231 -0.398200 0.763562 -0.508340 -0.610440 0.193064 0.768173 0.684690 0.616198 0.389231 -0.476034 0.717623 -0.508340 -0.627312 0.128022 0.768173 0.616337 0.684564 0.389231 -0.548624 0.663779 -0.508340 -0.637275 0.061570 0.768173 0.541195 0.745391 0.389231 -0.614568 0.603238 -0.508340 -0.640224 -0.004920 0.768173 0.460890 0.797546 0.389231 -0.674407 0.535505 -0.508340 -0.636182 -0.071993 0.768173 0.374763 0.841458 0.389231 -0.726818 0.461873 -0.508340 -0.625133 -0.138273 0.768173 0.284508 0.876102 0.389231 -0.771222 0.383153 -0.508340 -0.607198 -0.203029 0.768173 0.191120 0.901095 0.389231 -0.806831 0.301020 -0.508340 -0.582840 -0.264967 0.768173 0.096542 0.916067 0.389231 -0.833937 0.214801 -0.508340 -0.551860 -0.324594 0.768173 0.000000 0.921140 0.389231 -0.851857 0.126215 -0.508340 -0.514801 -0.380645 0.768173 -0.096542 0.916067 0.389231 -0.860357 0.037100 -0.508340 -0.472503 -0.432031 0.768173 -0.191120 0.901095 0.389231 -0.859507 -0.053276 -0.508340 -0.424621 -0.479174 0.768173 -0.284508 0.876102 0.389231 -0.849189 -0.143065 -0.508340 -0.372062 -0.521038 0.768173 -0.374763 0.841458 0.389231 -0.829518 -0.231278 -0.508340 -0.315404 -0.557163 0.768173 -0.460890 0.797546 0.389231 -0.801027 -0.316143 -0.508340 -0.255859 -0.586896 0.768173 -0.541195 0.745391 0.389231 -0.763481 -0.398355 -0.508340 -0.192939 -0.610479 0.768173 -0.616337 0.684564 0.389231 -0.717526 -0.476180 -0.508340 -0.127894 -0.627338 0.768173 -0.684690 0.616198 0.389231 -0.664215 -0.548095 -0.508340 -0.062078 -0.637226 0.768173 -0.744959 0.541789 0.389231 -0.603113 -0.614691 -0.508340 0.005050 -0.640223 0.768173 -0.797640 0.460728 0.389231 -0.535367 -0.674516 -0.508340 0.072122 -0.636167 0.768173 -0.841534 0.374592 0.389231 -0.461725 -0.726912 -0.508340 0.138400 -0.625105 0.768173 -0.876160 0.284330 0.389231 -0.383767 -0.770917 -0.508340 0.202546 -0.607360 0.768173 -0.900943 0.191837 0.389231 -0.300856 -0.806893 -0.508340 0.265086 -0.582786 0.768173 -0.916087 0.096356 0.389231 -0.161191 -0.914910 0.370077 -0.365770 0.403658 0.838613 -0.916640 -0.000187 -0.399713 -0.064414 -0.926765 0.370077 -0.406062 0.363099 0.838613 -0.911572 -0.096256 -0.399713 0.032144 -0.928445 0.370077 -0.441563 0.318983 0.838613 -0.896654 -0.190369 -0.399713 0.129275 -0.919962 0.370077 -0.472562 0.270947 0.838613 -0.871764 -0.283296 -0.399713 0.224982 -0.901347 0.370077 -0.498357 0.219927 0.838613 -0.837272 -0.373103 -0.399713 0.317337 -0.873121 0.370077 -0.518496 0.167003 0.838613 -0.794015 -0.458007 -0.399713 0.407099 -0.835053 0.370077 -0.533143 0.111741 0.838613 -0.741640 -0.538702 -0.399713 0.492376 -0.787787 0.370077 -0.541918 0.055249 0.838613 -0.681095 -0.613465 -0.399713 0.572230 -0.731844 0.370077 -0.544724 -0.001853 0.838613 -0.613049 -0.681470 -0.399713 0.645113 -0.668485 0.370077 -0.541588 -0.058392 0.838613 -0.538991 -0.741430 -0.399713 0.711622 -0.597191 0.370077 -0.532486 -0.114833 0.838613 -0.458315 -0.793837 -0.399713 0.770293 -0.519319 0.370077 -0.517518 -0.170008 0.838613 -0.372591 -0.837499 -0.399713 0.820043 -0.436547 0.370077 -0.497073 -0.222815 0.838613 -0.283635 -0.871654 -0.399713 0.861279 -0.348196 0.370077 -0.470982 -0.273684 0.838613 -0.190718 -0.896580 -0.399713 0.893030 -0.256010 0.370077 -0.439704 -0.321539 0.838613 -0.095699 -0.911631 -0.399713 0.914811 -0.161750 0.370077 -0.403881 -0.365524 0.838613 -0.000373 -0.916640 -0.399713 0.926726 -0.064980 0.370077 -0.363347 -0.405840 0.838613 0.095699 -0.911631 -0.399713 0.928432 0.032505 0.370077 -0.318811 -0.441687 0.838613 0.190718 -0.896580 -0.399713 0.919912 0.129633 0.370077 -0.270763 -0.472668 0.838613 0.283635 -0.871654 -0.399713 0.901484 0.224431 0.370077 -0.220232 -0.498222 0.838613 0.372591 -0.837499 -0.399713 0.872997 0.317677 0.370077 -0.166801 -0.518560 0.838613 0.458315 -0.793837 -0.399713 0.834895 0.407423 0.370077 -0.111534 -0.533186 0.838613 0.538991 -0.741430 -0.399713 0.788088 0.491895 0.370077 -0.055580 -0.541884 0.838613 0.613049 -0.681470 -0.399713 0.732193 0.571783 0.370077 0.001520 -0.544725 0.838613 0.681095 -0.613465 -0.399713 0.668234 0.645373 0.370077 0.058602 -0.541566 0.838613 0.741640 -0.538702 -0.399713 0.596914 0.711854 0.370077 0.115040 -0.532441 0.838613 0.794015 -0.458007 -0.399713 0.519789 0.769975 0.370077 0.169692 -0.517622 0.838613 0.837272 -0.373103 -0.399713 0.436228 0.820212 0.370077 0.223008 -0.496986 0.838613 0.871764 -0.283296 -0.399713 0.347861 0.861415 0.370077 0.273868 -0.470876 0.838613 0.896654 -0.190369 -0.399713 0.256556 0.892873 0.370077 0.321271 -0.439901 0.838613 0.911572 -0.096256 -0.399713 0.161563 0.914844 0.370077 0.365606 -0.403807 0.838613 0.916640 -0.000187 -0.399713 0.064791 0.926739 0.370077 0.405914 -0.363265 0.838613 0.911612 0.095885 -0.399713 -0.032695 0.928426 0.370077 0.441752 -0.318721 0.838613 0.896541 0.190900 -0.399713 -0.128900 0.920015 0.370077 0.472452 -0.271140 0.838613 0.871880 0.282941 -0.399713 -0.224614 0.901438 0.370077 0.498267 -0.220130 0.838613 0.837423 0.372762 -0.399713 -0.317854 0.872933 0.370077 0.518594 -0.166696 0.838613 0.793743 0.458477 -0.399713 -0.407594 0.834812 0.370077 0.533209 -0.111425 0.838613 0.741320 0.539142 -0.399713 -0.492055 0.787988 0.370077 0.541895 -0.055469 0.838613 0.681345 0.613187 -0.399713 -0.571932 0.732077 0.370077 0.544725 0.001631 0.838613 0.613326 0.681220 -0.399713 -0.645509 0.668103 0.370077 0.541554 0.058713 0.838613 0.538551 0.741749 -0.399713 -0.711379 0.597481 0.370077 0.532532 0.114616 0.838613 0.458639 0.793650 -0.399713 -0.770081 0.519632 0.370077 0.517587 0.169798 0.838613 0.372933 0.837348 -0.399713 -0.820301 0.436061 0.370077 0.496940 0.223109 0.838613 0.283119 0.871822 -0.399713 -0.861486 0.347686 0.370077 0.470820 0.273963 0.838613 0.190186 0.896693 -0.399713 -0.892925 0.256374 0.370077 0.439835 0.321360 0.838613 0.096070 0.911592 -0.399713 -0.914877 0.161377 0.370077 0.403732 0.365688 0.838613 0.000000 0.916640 -0.399713 -0.926752 0.064603 0.370077 0.363182 0.405988 0.838613 -0.096070 0.911592 -0.399713 -0.928451 -0.031955 0.370077 0.319073 0.441498 0.838613 -0.190186 0.896693 -0.399713 -0.919989 -0.129087 0.370077 0.271043 0.472507 0.838613 -0.283119 0.871822 -0.399713 -0.901393 -0.224798 0.370077 0.220029 0.498312 0.838613 -0.372933 0.837348 -0.399713 -0.872868 -0.318032 0.370077 0.166590 0.518628 0.838613 -0.458639 0.793650 -0.399713 -0.835136 -0.406929 0.370077 0.111850 0.533120 0.838613 -0.538551 0.741749 -0.399713 -0.787887 -0.492216 0.370077 0.055359 0.541907 0.838613 -0.613326 0.681220 -0.399713 -0.731960 -0.572081 0.370077 -0.001742 0.544724 0.838613 -0.681345 0.613187 -0.399713 -0.668616 -0.644977 0.370077 -0.058281 0.541600 0.838613 -0.741320 0.539142 -0.399713 -0.597336 -0.711500 0.370077 -0.114724 0.532509 0.838613 -0.793743 0.458477 -0.399713 -0.519476 -0.770187 0.370077 -0.169903 0.517552 0.838613 -0.837423 0.372762 -0.399713 -0.435894 -0.820390 0.370077 -0.223210 0.496895 0.838613 -0.871880 0.282941 -0.399713 -0.348372 -0.861209 0.370077 -0.273588 0.471038 0.838613 -0.896541 0.190900 -0.399713 -0.256192 -0.892977 0.370077 -0.321450 0.439770 0.838613 -0.911612 0.095885 -0.399713 -0.096702 -0.871986 0.479885 -0.172652 0.489531 0.854722 -0.980224 -0.000200 -0.197889 -0.004779 -0.877318 0.479885 -0.223008 0.468740 0.854722 -0.974805 -0.102933 -0.197889 0.086323 -0.873074 0.479885 -0.270464 0.443056 0.854722 -0.958852 -0.203574 -0.197889 0.177352 -0.859219 0.479885 -0.315410 0.412270 0.854722 -0.932235 -0.302947 -0.197889 0.266428 -0.835899 0.479885 -0.356881 0.376942 0.854722 -0.895350 -0.398984 -0.197889 0.351765 -0.803724 0.479885 -0.394085 0.337857 0.854722 -0.849093 -0.489777 -0.197889 0.434064 -0.762430 0.479885 -0.427324 0.294693 0.854722 -0.793085 -0.576070 -0.197889 0.511581 -0.712738 0.479885 -0.455856 0.248283 0.854722 -0.728340 -0.656019 -0.197889 0.583464 -0.655195 0.479885 -0.479368 0.199139 0.854722 -0.655574 -0.728741 -0.197889 0.648329 -0.591084 0.479885 -0.497451 0.148299 0.854722 -0.576379 -0.792860 -0.197889 0.706708 -0.519879 0.479885 -0.510254 0.095345 0.854722 -0.490107 -0.848902 -0.197889 0.757303 -0.442948 0.479885 -0.517436 0.041342 0.854722 -0.398437 -0.895594 -0.197889 0.799195 -0.361937 0.479885 -0.518933 -0.012598 0.854722 -0.303310 -0.932117 -0.197889 0.832727 -0.276182 0.479885 -0.514754 -0.066916 0.854722 -0.203947 -0.958773 -0.197889 0.857086 -0.187385 0.479885 -0.504906 -0.120498 0.854722 -0.102338 -0.974868 -0.197889 0.871926 -0.097235 0.479885 -0.489637 -0.172353 0.854722 -0.000399 -0.980224 -0.197889 0.877315 -0.005315 0.479885 -0.468876 -0.222721 0.854722 0.102338 -0.974868 -0.197889 0.873041 0.086663 0.479885 -0.442951 -0.270636 0.854722 0.203947 -0.958773 -0.197889 0.859149 0.177687 0.479885 -0.412147 -0.315570 0.854722 0.303310 -0.932117 -0.197889 0.836061 0.265917 0.479885 -0.377160 -0.356651 0.854722 0.398437 -0.895594 -0.197889 0.803587 0.352078 0.479885 -0.337703 -0.394216 0.854722 0.490107 -0.848902 -0.197889 0.762261 0.434360 0.479885 -0.294527 -0.427438 0.854722 0.576379 -0.792860 -0.197889 0.713050 0.511146 0.479885 -0.248562 -0.455705 0.854722 0.655574 -0.728741 -0.197889 0.655551 0.583063 0.479885 -0.199432 -0.479246 0.854722 0.728340 -0.656019 -0.197889 0.590832 0.648559 0.479885 -0.148105 -0.497508 0.854722 0.793085 -0.576070 -0.197889 0.519604 0.706910 0.479885 -0.095147 -0.510291 0.854722 0.849093 -0.489777 -0.197889 0.443410 0.757032 0.479885 -0.041658 -0.517411 0.854722 0.895350 -0.398984 -0.197889 0.361626 0.799335 0.479885 0.012800 -0.518928 0.854722 0.932235 -0.302947 -0.197889 0.275858 0.832834 0.479885 0.067116 -0.514728 0.854722 0.958852 -0.203574 -0.197889 0.187909 0.856972 0.479885 0.120189 -0.504979 0.854722 0.974805 -0.102933 -0.197889 0.097057 0.871946 0.479885 0.172453 -0.489602 0.854722 0.980224 -0.000200 -0.197889 0.005137 0.877316 0.479885 0.222817 -0.468831 0.854722 0.974847 0.102536 -0.197889 -0.086841 0.873023 0.479885 0.270726 -0.442896 0.854722 0.958731 0.204142 -0.197889 -0.177002 0.859291 0.479885 0.315242 -0.412398 0.854722 0.932359 0.302568 -0.197889 -0.266087 0.836007 0.479885 0.356728 -0.377087 0.854722 0.895513 0.398619 -0.197889 -0.352241 0.803515 0.479885 0.394285 -0.337623 0.854722 0.848803 0.490280 -0.197889 -0.434516 0.762172 0.479885 0.427498 -0.294440 0.854722 0.792743 0.576540 -0.197889 -0.511291 0.712946 0.479885 0.455755 -0.248469 0.854722 0.728607 0.655722 -0.197889 -0.583197 0.655432 0.479885 0.479286 -0.199334 0.854722 0.655870 0.728474 -0.197889 -0.648679 0.590699 0.479885 0.497538 -0.148004 0.854722 0.575909 0.793202 -0.197889 -0.706496 0.520167 0.479885 0.510215 -0.095553 0.854722 0.490453 0.848703 -0.197889 -0.757122 0.443256 0.479885 0.517420 -0.041553 0.854722 0.398802 0.895431 -0.197889 -0.799409 0.361463 0.479885 0.518925 0.012905 0.854722 0.302758 0.932297 -0.197889 -0.832890 0.275689 0.479885 0.514714 0.067221 0.854722 0.203379 0.958894 -0.197889 -0.857010 0.187734 0.479885 0.504955 0.120292 0.854722 0.102735 0.974826 -0.197889 -0.871966 0.096880 0.479885 0.489567 0.172552 0.854722 0.000000 0.980224 -0.197889 -0.877317 0.004958 0.479885 0.468786 0.222912 0.854722 -0.102735 0.974826 -0.197889 -0.873092 -0.086146 0.479885 0.443112 0.270373 0.854722 -0.203379 0.958894 -0.197889 -0.859255 -0.177177 0.479885 0.412334 0.315326 0.854722 -0.302758 0.932297 -0.197889 -0.835953 -0.266258 0.479885 0.377015 0.356805 0.854722 -0.398802 0.895431 -0.197889 -0.803443 -0.352405 0.479885 0.337543 0.394353 0.854722 -0.490453 0.848703 -0.197889 -0.762518 -0.433909 0.479885 0.294780 0.427264 0.854722 -0.575909 0.793202 -0.197889 -0.712842 -0.511436 0.479885 0.248376 0.455806 0.854722 -0.655870 0.728474 -0.197889 -0.655314 -0.583330 0.479885 0.199237 0.479327 0.854722 -0.728607 0.655722 -0.197889 -0.591216 -0.648208 0.479885 0.148400 0.497420 0.854722 -0.792743 0.576540 -0.197889 -0.520023 -0.706602 0.479885 0.095449 0.510234 0.854722 -0.848803 0.490280 -0.197889 -0.443102 -0.757213 0.479885 0.041448 0.517428 0.854722 -0.895513 0.398619 -0.197889 -0.361300 -0.799483 0.479885 -0.013011 0.518922 0.854722 -0.932359 0.302568 -0.197889 -0.276352 -0.832670 0.479885 -0.066811 0.514768 0.854722 -0.958731 0.204142 -0.197889 -0.187560 -0.857048 0.479885 -0.120395 0.504930 0.854722 -0.974847 0.102536 -0.197889 0.179057 0.481038 0.858220 -0.098470 0.876700 -0.470851 -0.978899 -0.000199 0.204347 0.127655 0.497155 0.858220 -0.189812 0.861551 -0.470851 -0.973486 -0.102794 0.204347 0.075354 0.507721 0.858220 -0.278226 0.837191 -0.470851 -0.957555 -0.203299 0.204347 0.021726 0.512822 0.858220 -0.364437 0.803420 -0.470851 -0.930974 -0.302538 0.204347 -0.032141 0.512275 0.858220 -0.446634 0.760800 -0.470851 -0.894139 -0.398444 0.204347 -0.085148 0.506170 0.858220 -0.523202 0.710323 -0.470851 -0.847944 -0.489114 0.204347 -0.137729 0.494459 0.858220 -0.594767 0.651576 -0.470851 -0.792012 -0.575291 0.204347 -0.188793 0.477300 0.858220 -0.659781 0.585651 -0.470851 -0.727355 -0.655131 0.204347 -0.237778 0.454885 0.858220 -0.717528 0.513276 -0.470851 -0.654687 -0.727755 0.204347 -0.283716 0.427743 0.858220 -0.766936 0.436014 -0.470851 -0.575599 -0.791788 0.204347 -0.326984 0.395651 0.858220 -0.808409 0.353232 -0.470851 -0.489444 -0.847754 0.204347 -0.366650 0.359202 0.858220 -0.840978 0.266560 -0.470851 -0.397898 -0.894382 0.204347 -0.401959 0.319198 0.858220 -0.864107 0.177816 -0.470851 -0.302900 -0.930857 0.204347 -0.433200 0.275312 0.858220 -0.877984 0.086272 -0.470851 -0.203671 -0.957476 0.204347 -0.459668 0.228393 0.858220 -0.882191 -0.006222 -0.470851 -0.102199 -0.973549 0.204347 -0.480928 0.179351 0.858220 -0.876760 -0.097934 -0.470851 -0.000399 -0.978898 0.204347 -0.497077 0.127958 0.858220 -0.861667 -0.189285 -0.470851 0.102199 -0.973549 0.204347 -0.507750 0.075156 0.858220 -0.837083 -0.278552 -0.470851 0.203671 -0.957476 0.204347 -0.512831 0.021527 0.858220 -0.803279 -0.364750 -0.470851 0.302900 -0.930857 0.204347 -0.512294 -0.031828 0.858220 -0.761073 -0.446169 -0.470851 0.397898 -0.894382 0.204347 -0.506137 -0.085345 0.858220 -0.710119 -0.523478 -0.470851 0.489444 -0.847754 0.204347 -0.494405 -0.137922 0.858220 -0.651344 -0.595021 -0.470851 0.575599 -0.791788 0.204347 -0.477416 -0.188502 0.858220 -0.586054 -0.659424 -0.470851 0.654687 -0.727755 0.204347 -0.455030 -0.237500 0.858220 -0.513714 -0.717215 -0.470851 0.727355 -0.655131 0.204347 -0.427632 -0.283883 0.858220 -0.435716 -0.767105 -0.470851 0.792012 -0.575291 0.204347 -0.395524 -0.327138 0.858220 -0.352918 -0.808547 -0.470851 0.847944 -0.489114 0.204347 -0.359426 -0.366431 0.858220 -0.267074 -0.840815 -0.470851 0.894139 -0.398444 0.204347 -0.319042 -0.402083 0.858220 -0.177479 -0.864176 -0.470851 0.930974 -0.302538 0.204347 -0.275143 -0.433307 0.858220 -0.085930 -0.878018 -0.470851 0.957555 -0.203299 0.204347 -0.228674 -0.459529 0.858220 0.005683 -0.882194 -0.470851 0.973486 -0.102794 0.204347 -0.179253 -0.480965 0.858220 0.098112 -0.876740 -0.470851 0.978899 -0.000199 0.204347 -0.127857 -0.497103 0.858220 0.189461 -0.861628 -0.470851 0.973528 0.102397 0.204347 -0.075053 -0.507765 0.858220 0.278722 -0.837026 -0.470851 0.957435 0.203866 0.204347 -0.021935 -0.512813 0.858220 0.364110 -0.803569 -0.470851 0.931098 0.302158 0.204347 0.031932 -0.512288 0.858220 0.446325 -0.760982 -0.470851 0.894301 0.398080 0.204347 0.085448 -0.506120 0.858220 0.523623 -0.710013 -0.470851 0.847654 0.489617 0.204347 0.138022 -0.494377 0.858220 0.595153 -0.651223 -0.470851 0.791671 0.575760 0.204347 0.188599 -0.477377 0.858220 0.659543 -0.585920 -0.470851 0.727622 0.654835 0.204347 0.237593 -0.454982 0.858220 0.717319 -0.513568 -0.470851 0.654983 0.727489 0.204347 0.283970 -0.427574 0.858220 0.767194 -0.435560 -0.470851 0.575130 0.792129 0.204347 0.326823 -0.395784 0.858220 0.808265 -0.353562 -0.470851 0.489789 0.847555 0.204347 0.366504 -0.359351 0.858220 0.840870 -0.266903 -0.470851 0.398262 0.894220 0.204347 0.402148 -0.318960 0.858220 0.864212 -0.177303 -0.470851 0.302348 0.931036 0.204347 0.433363 -0.275055 0.858220 0.878035 -0.085751 -0.470851 0.203104 0.957597 0.204347 0.459575 -0.228581 0.858220 0.882193 0.005863 -0.470851 0.102596 0.973507 0.204347 0.481001 -0.179155 0.858220 0.876720 0.098291 -0.470851 0.000000 0.978899 0.204347 0.497129 -0.127756 0.858220 0.861590 0.189636 -0.470851 -0.102596 0.973507 0.204347 0.507705 -0.075457 0.858220 0.837248 0.278056 -0.470851 -0.203104 0.957597 0.204347 0.512818 -0.021831 0.858220 0.803495 0.364274 -0.470851 -0.302348 0.931036 0.204347 0.512281 0.032037 0.858220 0.760891 0.446479 -0.470851 -0.398262 0.894220 0.204347 0.506102 0.085551 0.858220 0.709906 0.523767 -0.470851 -0.489789 0.847555 0.204347 0.494487 0.137629 0.858220 0.651697 0.594635 -0.470851 -0.575130 0.792129 0.204347 0.477339 0.188696 0.858220 0.585786 0.659662 -0.470851 -0.654983 0.727489 0.204347 0.454933 0.237686 0.858220 0.513422 0.717424 -0.470851 -0.727622 0.654835 0.204347 0.427800 0.283629 0.858220 0.436170 0.766847 -0.470851 -0.791671 0.575760 0.204347 0.395718 0.326904 0.858220 0.353397 0.808337 -0.470851 -0.847654 0.489617 0.204347 0.359277 0.366577 0.858220 0.266731 0.840924 -0.470851 -0.894301 0.398080 0.204347 0.318878 0.402213 0.858220 0.177127 0.864248 -0.470851 -0.931098 0.302158 0.204347 0.275400 0.433143 0.858220 0.086451 0.877967 -0.470851 -0.957435 0.203866 0.204347 0.228487 0.459622 0.858220 -0.006043 0.882192 -0.470851 -0.973528 0.102397 0.204347 0.282458 -0.728493 0.624112 0.300122 0.685053 0.663799 -0.911123 -0.000186 0.412135 0.357253 -0.694877 0.624112 0.226670 0.712735 0.663799 -0.906085 -0.095677 0.412135 0.427460 -0.654036 0.624112 0.151455 0.732415 0.663799 -0.891257 -0.189223 0.412135 0.493654 -0.605633 0.624112 0.073858 0.744255 0.663799 -0.866517 -0.281591 0.412135 0.554409 -0.550559 0.624112 -0.004552 0.747897 0.663799 -0.832232 -0.370857 0.412135 0.608569 -0.490029 0.624112 -0.082168 0.743384 0.663799 -0.789235 -0.455250 0.412135 0.656576 -0.423548 0.624112 -0.159628 0.730678 0.663799 -0.737175 -0.535460 0.412135 0.697351 -0.352402 0.624112 -0.235329 0.709923 0.663799 -0.676995 -0.609772 0.412135 0.730444 -0.277373 0.624112 -0.308438 0.681349 0.663799 -0.609358 -0.677368 0.412135 0.755292 -0.200045 0.624112 -0.377504 0.645648 0.663799 -0.535747 -0.736967 0.412135 0.772099 -0.119784 0.624112 -0.443093 0.602527 0.663799 -0.455557 -0.789058 0.412135 0.780401 -0.038202 0.624112 -0.503802 0.552769 0.663799 -0.370349 -0.832458 0.412135 0.780150 0.043019 0.624112 -0.558465 0.497482 0.663799 -0.281928 -0.866407 0.412135 0.771345 0.124548 0.624112 -0.607529 0.436211 0.663799 -0.189570 -0.891183 0.412135 0.754043 0.204704 0.624112 -0.649901 0.370135 0.663799 -0.095123 -0.906144 0.412135 0.728666 0.282012 0.624112 -0.684870 0.300540 0.663799 -0.000371 -0.911123 0.412135 0.695096 0.356829 0.624112 -0.712596 0.227106 0.663799 0.095123 -0.906144 0.412135 0.653869 0.427715 0.624112 -0.732474 0.151170 0.663799 0.189570 -0.891183 0.412135 0.605440 0.493889 0.624112 -0.744284 0.073569 0.663799 0.281928 -0.866407 0.412135 0.550897 0.554073 0.624112 -0.747900 -0.004095 0.663799 0.370349 -0.832458 0.412135 0.489793 0.608759 0.624112 -0.743352 -0.082457 0.663799 0.455557 -0.789058 0.412135 0.423293 0.656740 0.624112 -0.730615 -0.159912 0.663799 0.535747 -0.736967 0.412135 0.352828 0.697135 0.624112 -0.710067 -0.234895 0.663799 0.609358 -0.677368 0.412135 0.277820 0.730275 0.624112 -0.681538 -0.308021 0.663799 0.676995 -0.609772 0.412135 0.199752 0.755370 0.624112 -0.645501 -0.377755 0.663799 0.737175 -0.535460 0.412135 0.119483 0.772145 0.624112 -0.602355 -0.443328 0.663799 0.789235 -0.455250 0.412135 0.038679 0.780377 0.624112 -0.553077 -0.503464 0.663799 0.832232 -0.370857 0.412135 -0.043323 0.780133 0.624112 -0.497264 -0.558658 0.663799 0.866517 -0.281591 0.412135 -0.124848 0.771296 0.624112 -0.435974 -0.607698 0.663799 0.891257 -0.189223 0.412135 -0.204244 0.754168 0.624112 -0.370532 -0.649674 0.663799 0.906085 -0.095677 0.412135 -0.282161 0.728608 0.624112 -0.300401 -0.684931 0.663799 0.911123 -0.000186 0.412135 -0.356970 0.695023 0.624112 -0.226961 -0.712643 0.663799 0.906124 0.095308 0.412135 -0.427848 0.653782 0.624112 -0.151021 -0.732505 0.663799 0.891145 0.189751 0.412135 -0.493407 0.605834 0.624112 -0.074161 -0.744225 0.663799 0.866631 0.281238 0.412135 -0.554185 0.550784 0.624112 0.004247 -0.747899 0.663799 0.832383 0.370518 0.412135 -0.608859 0.489669 0.624112 0.082609 -0.743335 0.663799 0.788965 0.455717 0.412135 -0.656827 0.423159 0.624112 0.160061 -0.730583 0.663799 0.736858 0.535897 0.412135 -0.697207 0.352686 0.624112 0.235040 -0.710019 0.663799 0.677244 0.609496 0.412135 -0.730331 0.277671 0.624112 0.308160 -0.681475 0.663799 0.609634 0.677119 0.412135 -0.755411 0.199598 0.624112 0.377886 -0.645424 0.663799 0.535310 0.737284 0.412135 -0.772050 0.120098 0.624112 0.442848 -0.602708 0.663799 0.455878 0.788873 0.412135 -0.780385 0.038520 0.624112 0.503577 -0.552975 0.663799 0.370688 0.832307 0.412135 -0.780124 -0.043482 0.624112 0.558759 -0.497151 0.663799 0.281414 0.866574 0.412135 -0.771271 -0.125005 0.624112 0.607787 -0.435851 0.663799 0.189041 0.891296 0.412135 -0.754126 -0.204397 0.624112 0.649750 -0.370400 0.663799 0.095492 0.906105 0.412135 -0.728551 -0.282309 0.624112 0.684992 -0.300261 0.663799 0.000000 0.911123 0.412135 -0.694950 -0.357112 0.624112 0.712689 -0.226816 0.663799 -0.095492 0.906105 0.412135 -0.654123 -0.427327 0.624112 0.732384 -0.151604 0.663799 -0.189041 0.891296 0.412135 -0.605733 -0.493530 0.624112 0.744240 -0.074010 0.663799 -0.281414 0.866574 0.412135 -0.550672 -0.554297 0.624112 0.747898 0.004399 0.663799 -0.370688 0.832307 0.412135 -0.489544 -0.608959 0.624112 0.743318 0.082760 0.663799 -0.455878 0.788873 0.412135 -0.423682 -0.656489 0.624112 0.730710 0.159479 0.663799 -0.535310 0.737284 0.412135 -0.352544 -0.697279 0.624112 0.709971 0.235184 0.663799 -0.609634 0.677119 0.412135 -0.277522 -0.730388 0.624112 0.681412 0.308299 0.663799 -0.677244 0.609496 0.412135 -0.200199 -0.755252 0.624112 0.645725 0.377372 0.663799 -0.736858 0.535897 0.412135 -0.119941 -0.772074 0.624112 0.602617 0.442971 0.663799 -0.788965 0.455717 0.412135 -0.038361 -0.780393 0.624112 0.552872 0.503690 0.663799 -0.832383 0.370518 0.412135 0.043641 -0.780115 0.624112 0.497037 0.558861 0.663799 -0.866631 0.281238 0.412135 0.124391 -0.771370 0.624112 0.436335 0.607440 0.663799 -0.891145 0.189751 0.412135 0.204551 -0.754085 0.624112 0.370267 0.649825 0.663799 -0.906124 0.095308 0.412135 -0.092305 -0.772795 0.627907 -0.112710 0.634656 0.764532 -0.989331 -0.000201 -0.145683 -0.010802 -0.778213 0.627907 -0.178606 0.619348 0.764532 -0.983861 -0.103889 -0.145683 0.070045 -0.775130 0.627907 -0.241937 0.597460 0.764532 -0.967761 -0.205465 -0.145683 0.150898 -0.763519 0.627907 -0.303222 0.568812 0.764532 -0.940896 -0.305762 -0.145683 0.230089 -0.743499 0.627907 -0.361168 0.533900 0.764532 -0.903668 -0.402691 -0.145683 0.306031 -0.715596 0.627907 -0.414642 0.493521 0.764532 -0.856981 -0.494327 -0.145683 0.379345 -0.679581 0.627907 -0.464083 0.447346 0.764532 -0.800453 -0.581422 -0.145683 0.448481 -0.636080 0.627907 -0.508412 0.396243 0.764532 -0.735107 -0.662113 -0.145683 0.512676 -0.585573 0.627907 -0.547141 0.340775 0.764532 -0.661664 -0.735511 -0.145683 0.570696 -0.529186 0.627907 -0.579562 0.282134 0.764532 -0.581734 -0.800226 -0.145683 0.623016 -0.466459 0.627907 -0.605940 0.219838 0.764532 -0.494660 -0.856789 -0.145683 0.668473 -0.398593 0.627907 -0.625643 0.155120 0.764532 -0.402138 -0.903914 -0.145683 0.706240 -0.327044 0.627907 -0.638366 0.089333 0.764532 -0.306128 -0.940777 -0.145683 0.736627 -0.251224 0.627907 -0.644213 0.021935 0.764532 -0.205842 -0.967680 -0.145683 0.758900 -0.172636 0.627907 -0.642964 -0.045704 0.764532 -0.103288 -0.983925 -0.145683 0.772738 -0.092777 0.627907 -0.634724 -0.112322 0.764532 -0.000403 -0.989331 -0.145683 0.778206 -0.011277 0.627907 -0.619457 -0.178227 0.764532 0.103288 -0.983925 -0.145683 0.775102 0.070346 0.627907 -0.597365 -0.242169 0.764532 0.205842 -0.967680 -0.145683 0.763461 0.151195 0.627907 -0.568694 -0.303444 0.764532 0.306128 -0.940777 -0.145683 0.743640 0.229635 0.627907 -0.534121 -0.360842 0.764532 0.402138 -0.903914 -0.145683 0.715477 0.306309 0.627907 -0.493360 -0.414834 0.764532 0.494660 -0.856789 -0.145683 0.679433 0.379609 0.627907 -0.447165 -0.464257 0.764532 0.581734 -0.800226 -0.145683 0.636354 0.448092 0.627907 -0.396553 -0.508170 0.764532 0.661664 -0.735511 -0.145683 0.585886 0.512318 0.627907 -0.341110 -0.546933 0.764532 0.735107 -0.662113 -0.145683 0.528964 0.570902 0.627907 -0.281908 -0.579672 0.764532 0.800453 -0.581422 -0.145683 0.466217 0.623197 0.627907 -0.219602 -0.606025 0.764532 0.856981 -0.494327 -0.145683 0.399002 0.668229 0.627907 -0.155503 -0.625548 0.764532 0.903668 -0.402691 -0.145683 0.326769 0.706367 0.627907 -0.089084 -0.638401 0.764532 0.940896 -0.305762 -0.145683 0.250937 0.736724 0.627907 -0.021685 -0.644221 0.764532 0.967761 -0.205465 -0.145683 0.173100 0.758794 0.627907 0.045311 -0.642992 0.764532 0.983861 -0.103889 -0.145683 0.092620 0.772757 0.627907 0.112451 -0.634702 0.764532 0.989331 -0.000201 -0.145683 0.011119 0.778209 0.627907 0.178353 -0.619420 0.764532 0.983904 0.103489 -0.145683 -0.070504 0.775088 0.627907 0.242291 -0.597316 0.764532 0.967639 0.206039 -0.145683 -0.150587 0.763581 0.627907 0.302991 -0.568936 0.764532 0.941021 0.305379 -0.145683 -0.229787 0.743593 0.627907 0.360950 -0.534047 0.764532 0.903832 0.402323 -0.145683 -0.306455 0.715414 0.627907 0.414934 -0.493276 0.764532 0.856688 0.494835 -0.145683 -0.379748 0.679356 0.627907 0.464348 -0.447071 0.764532 0.800108 0.581897 -0.145683 -0.448221 0.636262 0.627907 0.508251 -0.396450 0.764532 0.735377 0.661814 -0.145683 -0.512438 0.585781 0.627907 0.547002 -0.340998 0.764532 0.661964 0.735242 -0.145683 -0.571010 0.528848 0.627907 0.579729 -0.281790 0.764532 0.581259 0.800571 -0.145683 -0.622826 0.466713 0.627907 0.605850 -0.220085 0.764532 0.495009 0.856587 -0.145683 -0.668310 0.398866 0.627907 0.625580 -0.155375 0.764532 0.402507 0.903750 -0.145683 -0.706433 0.326625 0.627907 0.638419 -0.088954 0.764532 0.305570 0.940959 -0.145683 -0.736775 0.250787 0.627907 0.644226 -0.021554 0.764532 0.205268 0.967802 -0.145683 -0.758829 0.172945 0.627907 0.642982 0.045442 0.764532 0.103689 0.983883 -0.145683 -0.772776 0.092462 0.627907 0.634679 0.112581 0.764532 0.000000 0.989331 -0.145683 -0.778211 0.010960 0.627907 0.619384 0.178479 0.764532 -0.103689 0.983883 -0.145683 -0.775144 -0.069887 0.627907 0.597509 0.241815 0.764532 -0.205268 0.967802 -0.145683 -0.763550 -0.150743 0.627907 0.568874 0.303106 0.764532 -0.305570 0.940959 -0.145683 -0.743546 -0.229938 0.627907 0.533973 0.361059 0.764532 -0.402507 0.903750 -0.145683 -0.715352 -0.306601 0.627907 0.493191 0.415035 0.764532 -0.495009 0.856587 -0.145683 -0.679658 -0.379207 0.627907 0.447440 0.463992 0.764532 -0.581259 0.800571 -0.145683 -0.636171 -0.448351 0.627907 0.396347 0.508331 0.764532 -0.661964 0.735242 -0.145683 -0.585677 -0.512557 0.627907 0.340887 0.547072 0.764532 -0.735377 0.661814 -0.145683 -0.529303 -0.570588 0.627907 0.282252 0.579504 0.764532 -0.800108 0.581897 -0.145683 -0.466586 -0.622921 0.627907 0.219961 0.605895 0.764532 -0.856688 0.494835 -0.145683 -0.398730 -0.668391 0.627907 0.155248 0.625611 0.764532 -0.903832 0.402323 -0.145683 -0.326481 -0.706500 0.627907 0.088824 0.638437 0.764532 -0.941021 0.305379 -0.145683 -0.251374 -0.736575 0.627907 0.022067 0.644208 0.764532 -0.967639 0.206039 -0.145683 -0.172791 -0.758865 0.627907 -0.045573 0.642973 0.764532 -0.983904 0.103489 -0.145683 0.059679 0.996486 0.058767 -0.711222 0.083756 -0.697960 -0.700430 -0.000143 0.713721 -0.045088 0.997253 0.058767 -0.716083 0.008754 -0.697960 -0.696558 -0.073552 0.713721 -0.148372 0.987184 0.058767 -0.713122 -0.065632 -0.697960 -0.685158 -0.145466 0.713721 -0.251019 0.966197 0.058767 -0.702316 -0.140011 -0.697960 -0.666139 -0.216474 0.713721 -0.350901 0.934567 0.058767 -0.683774 -0.212847 -0.697960 -0.639782 -0.285098 0.713721 -0.446025 0.893089 0.058767 -0.657983 -0.282682 -0.697960 -0.606729 -0.349975 0.713721 -0.537170 0.841424 0.058767 -0.624733 -0.350086 -0.697960 -0.566707 -0.411637 0.713721 -0.622399 0.780491 0.058767 -0.584600 -0.413635 -0.697960 -0.520444 -0.468765 0.713721 -0.700772 0.710960 0.058767 -0.538029 -0.472627 -0.697960 -0.468447 -0.520730 0.713721 -0.770793 0.634370 0.058767 -0.486057 -0.525927 -0.697960 -0.411858 -0.566547 0.713721 -0.833034 0.550091 0.058767 -0.428259 -0.573973 -0.697960 -0.350211 -0.606592 0.713721 -0.886100 0.459754 0.058767 -0.365744 -0.615697 -0.697960 -0.284707 -0.639956 0.713721 -0.929040 0.365281 0.058767 -0.299851 -0.650339 -0.697960 -0.216734 -0.666055 0.713721 -0.962208 0.265900 0.058767 -0.230039 -0.678184 -0.697960 -0.145733 -0.685102 0.713721 -0.984777 0.163589 0.058767 -0.157694 -0.698558 -0.697960 -0.073126 -0.696602 0.713721 -0.996450 0.060288 0.058767 -0.084191 -0.711170 -0.697960 -0.000285 -0.700430 0.713721 -0.997280 -0.044479 0.058767 -0.009191 -0.716077 -0.697960 0.073126 -0.696602 0.713721 -0.987126 -0.148756 0.058767 0.065909 -0.713097 -0.697960 0.145733 -0.685102 0.713721 -0.966099 -0.251395 0.058767 0.140284 -0.702262 -0.697960 0.216734 -0.666055 0.713721 -0.934781 -0.350330 0.058767 0.212429 -0.683904 -0.697960 0.284707 -0.639956 0.713721 -0.892916 -0.446372 0.058767 0.282938 -0.657873 -0.697960 0.350211 -0.606592 0.713721 -0.841215 -0.537498 0.058767 0.350329 -0.624596 -0.697960 0.411858 -0.566547 0.713721 -0.780871 -0.621922 0.058767 0.413277 -0.584853 -0.697960 0.468447 -0.520730 0.713721 -0.711388 -0.700338 0.058767 0.472298 -0.538318 -0.697960 0.520444 -0.468765 0.713721 -0.634070 -0.771040 0.058767 0.526116 -0.485853 -0.697960 0.566707 -0.411637 0.713721 -0.549767 -0.833248 0.058767 0.574140 -0.428036 -0.697960 0.606729 -0.349975 0.713721 -0.460295 -0.885819 0.058767 0.615473 -0.366120 -0.697960 0.639782 -0.285098 0.713721 -0.364920 -0.929182 0.058767 0.650455 -0.299598 -0.697960 0.666139 -0.216474 0.713721 -0.265525 -0.962311 0.058767 0.678273 -0.229776 -0.697960 0.685158 -0.145466 0.713721 -0.164190 -0.984677 0.058767 0.698462 -0.158121 -0.697960 0.696558 -0.073552 0.713721 -0.060085 -0.996462 0.058767 0.711187 -0.084046 -0.697960 0.700430 -0.000143 0.713721 0.044682 -0.997271 0.058767 0.716079 -0.009046 -0.697960 0.696588 0.073268 0.713721 0.148957 -0.987096 0.058767 0.713083 0.066054 -0.697960 0.685072 0.145872 0.713721 0.250626 -0.966299 0.058767 0.702373 0.139725 -0.697960 0.666227 0.216203 0.713721 0.350520 -0.934710 0.058767 0.683861 0.212569 -0.697960 0.639898 0.284838 0.713721 0.446554 -0.892825 0.058767 0.657816 0.283072 -0.697960 0.606521 0.350335 0.713721 0.537669 -0.841105 0.058767 0.624525 0.350456 -0.697960 0.566463 0.411973 0.713721 0.622081 -0.780744 0.058767 0.584769 0.413396 -0.697960 0.520634 0.468553 0.713721 0.700483 -0.711246 0.058767 0.538221 0.472408 -0.697960 0.468659 0.520539 0.713721 0.771169 -0.633913 0.058767 0.485745 0.526215 -0.697960 0.411522 0.566791 0.713721 0.832810 -0.550431 0.058767 0.428493 0.573799 -0.697960 0.350458 0.606450 0.713721 0.885912 -0.460115 0.058767 0.365995 0.615548 -0.697960 0.284968 0.639840 0.713721 0.929257 -0.364731 0.058767 0.299465 0.650516 -0.697960 0.216339 0.666183 0.713721 0.962365 -0.265329 0.058767 0.229637 0.678320 -0.697960 0.145326 0.685188 0.713721 0.984710 -0.163990 0.058767 0.157978 0.698494 -0.697960 0.073410 0.696573 0.713721 0.996474 -0.059882 0.058767 0.083901 0.711204 -0.697960 0.000000 0.700430 0.713721 0.997262 0.044885 0.058767 0.008900 0.716081 -0.697960 -0.073410 0.696573 0.713721 0.987214 0.148171 0.058767 -0.065486 0.713136 -0.697960 -0.145326 0.685188 0.713721 0.966248 0.250822 0.058767 -0.139868 0.702345 -0.697960 -0.216339 0.666183 0.713721 0.934638 0.350711 0.058767 -0.212708 0.683818 -0.697960 -0.284968 0.639840 0.713721 0.892734 0.446736 0.058767 -0.283206 0.657758 -0.697960 -0.350458 0.606450 0.713721 0.841533 0.536999 0.058767 -0.349959 0.624804 -0.697960 -0.411522 0.566791 0.713721 0.780617 0.622240 0.058767 -0.413515 0.584685 -0.697960 -0.468659 0.520539 0.713721 0.711103 0.700628 0.058767 -0.472517 0.538125 -0.697960 -0.520634 0.468553 0.713721 0.634527 0.770664 0.058767 -0.525828 0.486164 -0.697960 -0.566463 0.411973 0.713721 0.550261 0.832922 0.058767 -0.573886 0.428376 -0.697960 -0.606521 0.350335 0.713721 0.459934 0.886006 0.058767 -0.615622 0.365870 -0.697960 -0.639898 0.284838 0.713721 0.364541 0.929331 0.058767 -0.650577 0.299333 -0.697960 -0.666227 0.216203 0.713721 0.266096 0.962154 0.058767 -0.678137 0.230178 -0.697960 -0.685072 0.145872 0.713721 0.163789 0.984743 0.058767 -0.698526 0.157836 -0.697960 -0.696588 0.073268 0.713721 0.268150 -0.073084 -0.960601 -0.019460 -0.997326 0.070445 -0.963181 -0.000196 -0.268855 0.274332 -0.044577 -0.960601 0.085174 -0.993873 0.070445 -0.957856 -0.101143 -0.268855 0.277478 -0.015857 -0.960601 0.187890 -0.979661 0.070445 -0.942180 -0.200034 -0.268855 0.277612 0.013312 -0.960601 0.289531 -0.954573 0.070445 -0.916026 -0.297680 -0.268855 0.274687 0.042334 -0.960601 0.387982 -0.918971 0.070445 -0.879782 -0.392047 -0.268855 0.268809 0.070621 -0.960601 0.481287 -0.873728 0.070445 -0.834329 -0.481261 -0.268855 0.259926 0.098406 -0.960601 0.570209 -0.818474 0.070445 -0.779295 -0.566054 -0.268855 0.248181 0.125106 -0.960601 0.652850 -0.754204 0.070445 -0.715676 -0.644612 -0.268855 0.233702 0.150428 -0.960601 0.728301 -0.681627 0.070445 -0.644175 -0.716070 -0.268855 0.216823 0.173876 -0.960601 0.795127 -0.602337 0.070445 -0.566357 -0.779074 -0.268855 0.197406 0.195643 -0.960601 0.853877 -0.515685 0.070445 -0.481585 -0.834142 -0.268855 0.175814 0.215255 -0.960601 0.903222 -0.423352 0.070445 -0.391509 -0.880022 -0.268855 0.152518 0.232344 -0.960601 0.942291 -0.327299 0.070445 -0.298036 -0.915910 -0.268855 0.127326 0.247049 -0.960601 0.971405 -0.226738 0.070445 -0.200401 -0.942102 -0.268855 0.100732 0.259034 -0.960601 0.989819 -0.123679 0.070445 -0.100558 -0.957917 -0.268855 0.073248 0.268105 -0.960601 0.997314 -0.020070 0.070445 -0.000392 -0.963181 -0.268855 0.044745 0.274305 -0.960601 0.993924 0.084566 0.070445 0.100558 -0.957917 -0.268855 0.015749 0.277484 -0.960601 0.979587 0.188271 0.070445 0.200401 -0.942102 -0.268855 -0.013420 0.277606 -0.960601 0.954460 0.289902 0.070445 0.298036 -0.915910 -0.268855 -0.042166 0.274713 -0.960601 0.919208 0.387420 0.070445 0.391509 -0.880022 -0.268855 -0.070726 0.268781 -0.960601 0.873541 0.481626 0.070445 0.481585 -0.834142 -0.268855 -0.098507 0.259888 -0.960601 0.818252 0.570527 0.070445 0.566357 -0.779074 -0.268855 -0.124954 0.248258 -0.960601 0.754603 0.652390 0.070445 0.644175 -0.716070 -0.268855 -0.150285 0.233794 -0.960601 0.682072 0.727884 0.070445 0.715676 -0.644612 -0.268855 -0.173961 0.216756 -0.960601 0.602028 0.795362 0.070445 0.779295 -0.566054 -0.268855 -0.195720 0.197330 -0.960601 0.515353 0.854078 0.070445 0.834329 -0.481261 -0.268855 -0.215148 0.175945 -0.960601 0.423904 0.902963 0.070445 0.879782 -0.392047 -0.268855 -0.232403 0.152427 -0.960601 0.326932 0.942419 0.070445 0.916026 -0.297680 -0.268855 -0.247099 0.127230 -0.960601 0.226360 0.971493 0.070445 0.942180 -0.200034 -0.268855 -0.258972 0.100891 -0.960601 0.124283 0.989743 0.070445 0.957856 -0.101143 -0.268855 -0.268120 0.073193 -0.960601 0.019867 0.997318 0.070445 0.963181 -0.000196 -0.268855 -0.274314 0.044689 -0.960601 -0.084769 0.993907 0.070445 0.957897 0.100753 -0.268855 -0.277487 0.015693 -0.960601 -0.188471 0.979549 0.070445 0.942061 0.200593 -0.268855 -0.277617 -0.013199 -0.960601 -0.289142 0.954691 0.070445 0.916147 0.297307 -0.268855 -0.274705 -0.042222 -0.960601 -0.387608 0.919129 0.070445 0.879942 0.391688 -0.268855 -0.268767 -0.070781 -0.960601 -0.481804 0.873443 0.070445 0.834044 0.481755 -0.268855 -0.259868 -0.098560 -0.960601 -0.570694 0.818136 0.070445 0.778959 0.566516 -0.268855 -0.248232 -0.125005 -0.960601 -0.652543 0.754470 0.070445 0.715939 0.644320 -0.268855 -0.233764 -0.150333 -0.960601 -0.728023 0.681924 0.070445 0.644466 0.715807 -0.268855 -0.216720 -0.174005 -0.960601 -0.795484 0.601866 0.070445 0.565895 0.779410 -0.268855 -0.197485 -0.195563 -0.960601 -0.853667 0.516033 0.070445 0.481925 0.833946 -0.268855 -0.175901 -0.215184 -0.960601 -0.903050 0.423720 0.070445 0.391867 0.879862 -0.268855 -0.152380 -0.232434 -0.960601 -0.942485 0.326740 0.070445 0.297493 0.916087 -0.268855 -0.127180 -0.247125 -0.960601 -0.971539 0.226162 0.070445 0.199842 0.942221 -0.268855 -0.100838 -0.258992 -0.960601 -0.989768 0.124082 0.070445 0.100948 0.957876 -0.268855 -0.073138 -0.268135 -0.960601 -0.997322 0.019664 0.070445 0.000000 0.963181 -0.268855 -0.044633 -0.274323 -0.960601 -0.993890 -0.084971 0.070445 -0.100948 0.957876 -0.268855 -0.015914 -0.277475 -0.960601 -0.979699 -0.187690 0.070445 -0.199842 0.942221 -0.268855 0.013255 -0.277614 -0.960601 -0.954632 -0.289336 0.070445 -0.297493 0.916087 -0.268855 0.042278 -0.274696 -0.960601 -0.919050 -0.387795 0.070445 -0.391867 0.879862 -0.268855 0.070835 -0.268752 -0.960601 -0.873344 -0.481982 0.070445 -0.481925 0.833946 -0.268855 0.098353 -0.259946 -0.960601 -0.818590 -0.570042 0.070445 -0.565895 0.779410 -0.268855 0.125055 -0.248207 -0.960601 -0.754337 -0.652697 0.070445 -0.644466 0.715807 -0.268855 0.150380 -0.233733 -0.960601 -0.681775 -0.728162 0.070445 -0.715939 0.644320 -0.268855 0.173832 -0.216859 -0.960601 -0.602499 -0.795005 0.070445 -0.778959 0.566516 -0.268855 0.195603 -0.197446 -0.960601 -0.515859 -0.853772 0.070445 -0.834044 0.481755 -0.268855 0.215220 -0.175858 -0.960601 -0.423536 -0.903136 0.070445 -0.879942 0.391688 -0.268855 0.232465 -0.152333 -0.960601 -0.326549 -0.942552 0.070445 -0.916147 0.297307 -0.268855 0.247023 -0.127377 -0.960601 -0.226935 -0.971359 0.070445 -0.942061 0.200593 -0.268855 0.259013 -0.100785 -0.960601 -0.123880 -0.989793 0.070445 -0.957897 0.100753 -0.268855 -0.018104 0.998696 -0.047732 -0.350681 -0.051049 -0.935103 -0.936320 -0.000191 0.351147 -0.122675 0.991298 -0.047732 -0.343399 -0.087522 -0.935103 -0.931143 -0.098323 0.351147 -0.224921 0.973207 -0.047732 -0.332457 -0.122698 -0.935103 -0.915905 -0.194456 0.351147 -0.325682 0.944274 -0.047732 -0.317767 -0.156866 -0.935103 -0.890481 -0.289378 0.351147 -0.422855 0.904940 -0.047732 -0.299576 -0.189307 -0.935103 -0.855247 -0.381113 0.351147 -0.514514 0.856152 -0.047732 -0.278305 -0.219384 -0.935103 -0.811062 -0.467840 0.351147 -0.601411 0.797512 -0.047732 -0.253779 -0.247344 -0.935103 -0.757562 -0.550268 0.351147 -0.681684 0.730088 -0.047732 -0.226458 -0.272579 -0.935103 -0.695718 -0.626635 0.351147 -0.754448 0.654622 -0.047732 -0.196643 -0.294813 -0.935103 -0.626210 -0.696101 0.351147 -0.818330 0.572763 -0.047732 -0.164975 -0.313634 -0.935103 -0.550563 -0.757348 0.351147 -0.873853 0.483842 -0.047732 -0.131195 -0.329197 -0.935103 -0.468155 -0.810880 0.351147 -0.919750 0.389591 -0.047732 -0.095971 -0.341134 -0.935103 -0.380591 -0.855480 0.351147 -0.955225 0.292005 -0.047732 -0.060038 -0.349254 -0.935103 -0.289725 -0.890368 0.351147 -0.980568 0.190282 -0.047732 -0.023103 -0.353623 -0.935103 -0.194812 -0.915829 0.351147 -0.995111 0.086463 -0.047732 0.014086 -0.354097 -0.935103 -0.097754 -0.931203 0.351147 -0.998707 -0.017494 -0.047732 0.050835 -0.350712 -0.935103 -0.000381 -0.936320 0.351147 -0.991373 -0.122069 -0.047732 0.087312 -0.343452 -0.935103 0.097754 -0.931203 0.351147 -0.973119 -0.225300 -0.047732 0.122828 -0.332410 -0.935103 0.194812 -0.915829 0.351147 -0.944147 -0.326049 -0.047732 0.156990 -0.317706 -0.935103 0.289725 -0.890368 0.351147 -0.905198 -0.422302 -0.047732 0.189124 -0.299692 -0.935103 0.380591 -0.855480 0.351147 -0.855952 -0.514847 -0.047732 0.219492 -0.278220 -0.935103 0.468155 -0.810880 0.351147 -0.797278 -0.601722 -0.047732 0.247442 -0.253683 -0.935103 0.550563 -0.757348 0.351147 -0.730504 -0.681238 -0.047732 0.272441 -0.226625 -0.935103 0.626210 -0.696101 0.351147 -0.655082 -0.754048 -0.047732 0.294692 -0.196823 -0.935103 0.695718 -0.626635 0.351147 -0.572445 -0.818553 -0.047732 0.313698 -0.164853 -0.935103 0.757562 -0.550268 0.351147 -0.483502 -0.874041 -0.047732 0.329248 -0.131067 -0.935103 0.811062 -0.467840 0.351147 -0.390153 -0.919512 -0.047732 0.341075 -0.096179 -0.935103 0.855247 -0.381113 0.351147 -0.291633 -0.955339 -0.047732 0.349277 -0.059902 -0.935103 0.890481 -0.289378 0.351147 -0.189900 -0.980642 -0.047732 0.353632 -0.022965 -0.935103 0.915905 -0.194456 0.351147 -0.087071 -0.995058 -0.047732 0.354105 0.013870 -0.935103 0.931143 -0.098323 0.351147 0.017697 -0.998703 -0.047732 0.350701 0.050906 -0.935103 0.936320 -0.000191 0.351147 0.122271 -0.991348 -0.047732 0.343434 0.087382 -0.935103 0.931183 0.097943 0.351147 0.225498 -0.973074 -0.047732 0.332385 0.122895 -0.935103 0.915790 0.194999 0.351147 0.325297 -0.944406 -0.047732 0.317831 0.156737 -0.935103 0.890598 0.289016 0.351147 0.422486 -0.905112 -0.047732 0.299653 0.189185 -0.935103 0.855403 0.380765 0.351147 0.515021 -0.855847 -0.047732 0.278175 0.219549 -0.935103 0.810785 0.468320 0.351147 0.601884 -0.797156 -0.047732 0.253633 0.247494 -0.935103 0.757236 0.550717 0.351147 0.681387 -0.730366 -0.047732 0.226569 0.272487 -0.935103 0.695973 0.626352 0.351147 0.754182 -0.654929 -0.047732 0.196763 0.294733 -0.935103 0.626494 0.695845 0.351147 0.818669 -0.572278 -0.047732 0.164789 0.313731 -0.935103 0.550114 0.757674 0.351147 0.873656 -0.484198 -0.047732 0.131329 0.329143 -0.935103 0.468485 0.810689 0.351147 0.919591 -0.389966 -0.047732 0.096109 0.341095 -0.935103 0.380939 0.855325 0.351147 0.955398 -0.291438 -0.047732 0.059831 0.349289 -0.935103 0.289197 0.890539 0.351147 0.980681 -0.189701 -0.047732 0.022893 0.353636 -0.935103 0.194269 0.915945 0.351147 0.995076 -0.086869 -0.047732 -0.013942 0.354102 -0.935103 0.098133 0.931163 0.351147 0.998700 0.017901 -0.047732 -0.050978 0.350691 -0.935103 0.000000 0.936320 0.351147 0.991323 0.122473 -0.047732 -0.087452 0.343417 -0.935103 -0.098133 0.931163 0.351147 0.973253 0.224723 -0.047732 -0.122631 0.332482 -0.935103 -0.194269 0.915945 0.351147 0.944340 0.325489 -0.047732 -0.156802 0.317799 -0.935103 -0.289197 0.890539 0.351147 0.905026 0.422670 -0.047732 -0.189246 0.299615 -0.935103 -0.380939 0.855325 0.351147 0.855742 0.515196 -0.047732 -0.219605 0.278130 -0.935103 -0.468485 0.810689 0.351147 0.797635 0.601249 -0.047732 -0.247292 0.253830 -0.935103 -0.550114 0.757674 0.351147 0.730227 0.681535 -0.047732 -0.272533 0.226514 -0.935103 -0.626494 0.695845 0.351147 0.654775 0.754315 -0.047732 -0.294773 0.196703 -0.935103 -0.695973 0.626352 0.351147 0.572930 0.818213 -0.047732 -0.313600 0.165039 -0.935103 -0.757236 0.550717 0.351147 0.484020 0.873754 -0.047732 -0.329170 0.131262 -0.935103 -0.810785 0.468320 0.351147 0.389779 0.919671 -0.047732 -0.341115 0.096040 -0.935103 -0.855403 0.380765 0.351147 0.291244 0.955457 -0.047732 -0.349302 0.059760 -0.935103 -0.890598 0.289016 0.351147 0.190482 0.980530 -0.047732 -0.353618 0.023175 -0.935103 -0.915790 0.194999 0.351147 0.086666 0.995093 -0.047732 -0.354099 -0.014014 -0.935103 -0.931183 0.097943 0.351147 -0.080525 -0.996608 0.017003 -0.975211 0.082300 0.205402 -0.206105 -0.000042 -0.978530 0.024371 -0.999558 0.017003 -0.978466 -0.020362 0.205402 -0.204965 -0.021643 -0.978530 0.128006 -0.991628 0.017003 -0.971065 -0.121829 0.205402 -0.201611 -0.042804 -0.978530 0.231230 -0.972750 0.017003 -0.952949 -0.222933 0.205402 -0.196015 -0.063699 -0.978530 0.331908 -0.943158 0.017003 -0.924335 -0.321581 0.205402 -0.188259 -0.083892 -0.978530 0.428027 -0.903606 0.017003 -0.885957 -0.415801 0.205402 -0.178533 -0.102982 -0.978530 0.520374 -0.853769 0.017003 -0.837499 -0.506366 0.205402 -0.166756 -0.121126 -0.978530 0.606989 -0.794528 0.017003 -0.779815 -0.591353 0.205402 -0.153143 -0.137936 -0.978530 0.686918 -0.726536 0.017003 -0.713543 -0.669826 0.205402 -0.137843 -0.153227 -0.978530 0.758630 -0.651299 0.017003 -0.640151 -0.740282 0.205402 -0.121191 -0.166709 -0.978530 0.822713 -0.568203 0.017003 -0.559038 -0.803297 0.205402 -0.103051 -0.178493 -0.978530 0.877734 -0.478847 0.017003 -0.471768 -0.857464 0.205402 -0.083776 -0.188310 -0.978530 0.922701 -0.385140 0.017003 -0.380204 -0.901807 0.205402 -0.063775 -0.195990 -0.978530 0.957985 -0.286313 0.017003 -0.283594 -0.936688 0.205402 -0.042882 -0.201594 -0.978530 0.982717 -0.184333 0.017003 -0.183860 -0.961252 0.205402 -0.021518 -0.204978 -0.978530 0.996558 -0.081133 0.017003 -0.082896 -0.975161 0.205402 -0.000084 -0.206105 -0.978530 0.999573 0.023760 0.017003 0.019764 -0.978478 0.205402 0.021518 -0.204978 -0.978530 0.991578 0.128391 0.017003 0.122207 -0.971018 0.205402 0.042882 -0.201594 -0.978530 0.972660 0.231609 0.017003 0.223304 -0.952862 0.205402 0.063775 -0.195990 -0.978530 0.943361 0.331332 0.017003 0.321016 -0.924532 0.205402 0.083776 -0.188310 -0.978530 0.903440 0.428378 0.017003 0.416146 -0.885795 0.205402 0.103051 -0.178493 -0.978530 0.853567 0.520706 0.017003 0.506691 -0.837301 0.205402 0.121191 -0.166709 -0.978530 0.794899 0.606503 0.017003 0.590876 -0.780176 0.205402 0.137843 -0.153227 -0.978530 0.726955 0.686474 0.017003 0.669390 -0.713952 0.205402 0.153143 -0.137936 -0.978530 0.651004 0.758884 0.017003 0.740531 -0.639863 0.205402 0.166756 -0.121126 -0.978530 0.567883 0.822934 0.017003 0.803514 -0.558726 0.205402 0.178533 -0.102982 -0.978530 0.479383 0.877441 0.017003 0.857176 -0.472292 0.205402 0.188259 -0.083892 -0.978530 0.384781 0.922851 0.017003 0.901954 -0.379853 0.205402 0.196015 -0.063699 -0.978530 0.285940 0.958097 0.017003 0.936798 -0.283229 0.205402 0.201611 -0.042804 -0.978530 0.184933 0.982604 0.017003 0.961139 -0.184448 0.205402 0.204965 -0.021643 -0.978530 0.080930 0.996575 0.017003 0.975177 -0.082697 0.205402 0.206105 -0.000042 -0.978530 -0.023963 0.999568 0.017003 0.978474 0.019964 0.205402 0.204974 0.021560 -0.978530 -0.128593 0.991552 0.017003 0.970993 0.122405 0.205402 0.201586 0.042924 -0.978530 -0.230834 0.972845 0.017003 0.953039 0.222545 0.205402 0.196040 0.063619 -0.978530 -0.331524 0.943294 0.017003 0.924466 0.321204 0.205402 0.188293 0.083815 -0.978530 -0.428562 0.903352 0.017003 0.885710 0.416326 0.205402 0.178472 0.103088 -0.978530 -0.520880 0.853461 0.017003 0.837198 0.506862 0.205402 0.166684 0.121225 -0.978530 -0.606665 0.794776 0.017003 0.780056 0.591035 0.205402 0.153199 0.137874 -0.978530 -0.686622 0.726816 0.017003 0.713815 0.669535 0.205402 0.137905 0.153171 -0.978530 -0.759016 0.650850 0.017003 0.639712 0.740661 0.205402 0.121092 0.166781 -0.978530 -0.822481 0.568538 0.017003 0.559365 0.803069 0.205402 0.103124 0.178451 -0.978530 -0.877539 0.479205 0.017003 0.472117 0.857272 0.205402 0.083853 0.188276 -0.978530 -0.922930 0.384593 0.017003 0.379669 0.902032 0.205402 0.063659 0.196027 -0.978530 -0.958155 0.285745 0.017003 0.283039 0.936856 0.205402 0.042763 0.201620 -0.978530 -0.982642 0.184733 0.017003 0.184252 0.961177 0.205402 0.021601 0.204970 -0.978530 -0.996591 0.080728 0.017003 0.082499 0.975194 0.205402 0.000000 0.206105 -0.978530 -0.999563 -0.024167 0.017003 -0.020163 0.978470 0.205402 -0.021601 0.204970 -0.978530 -0.991654 -0.127804 0.017003 -0.121632 0.971090 0.205402 -0.042763 0.201620 -0.978530 -0.972798 -0.231032 0.017003 -0.222739 0.952994 0.205402 -0.063659 0.196027 -0.978530 -0.943226 -0.331716 0.017003 -0.321393 0.924401 0.205402 -0.083853 0.188276 -0.978530 -0.903265 -0.428746 0.017003 -0.416506 0.885625 0.205402 -0.103124 0.178451 -0.978530 -0.853875 -0.520200 0.017003 -0.506195 0.837602 0.205402 -0.121092 0.166781 -0.978530 -0.794652 -0.606827 0.017003 -0.591194 0.779936 0.205402 -0.137905 0.153171 -0.978530 -0.726676 -0.686770 0.017003 -0.669681 0.713679 0.205402 -0.153199 0.137874 -0.978530 -0.651454 -0.758498 0.017003 -0.740151 0.640301 0.205402 -0.166684 0.121225 -0.978530 -0.568370 -0.822597 0.017003 -0.803183 0.559202 0.205402 -0.178472 0.103088 -0.978530 -0.479026 -0.877636 0.017003 -0.857368 0.471943 0.205402 -0.188293 0.083815 -0.978530 -0.384405 -0.923008 0.017003 -0.902109 0.379485 0.205402 -0.196040 0.063619 -0.978530 -0.286508 -0.957927 0.017003 -0.936630 0.283785 0.205402 -0.201586 0.042924 -0.978530 -0.184533 -0.982679 0.017003 -0.961214 0.184056 0.205402 -0.204974 0.021560 -0.978530 0.849187 -0.041019 0.526496 0.034806 0.999158 0.021706 -0.526943 -0.000107 0.849900 0.848810 0.048208 0.526496 -0.070105 0.997303 0.021706 -0.524030 -0.055334 0.849900 0.839219 0.136064 0.526496 -0.173259 0.984637 0.021706 -0.515454 -0.109436 0.849900 0.820336 0.223271 0.526496 -0.275502 0.961055 0.021706 -0.501146 -0.162857 0.849900 0.792418 0.308019 0.526496 -0.374710 0.926888 0.021706 -0.481317 -0.214483 0.849900 0.756160 0.388618 0.526496 -0.468908 0.882980 0.021706 -0.456450 -0.263291 0.849900 0.711266 0.465728 0.526496 -0.558868 0.828972 0.021706 -0.426342 -0.309680 0.849900 0.658537 0.537709 0.526496 -0.642672 0.765833 0.021706 -0.391537 -0.352659 0.849900 0.598554 0.603767 0.526496 -0.719398 0.694259 0.021706 -0.352419 -0.391752 0.849900 0.532642 0.662642 0.526496 -0.787584 0.615825 0.021706 -0.309846 -0.426221 0.849900 0.460258 0.714817 0.526496 -0.847789 0.529889 0.021706 -0.263469 -0.456348 0.849900 0.382806 0.759119 0.526496 -0.898656 0.438116 0.021706 -0.214189 -0.481448 0.849900 0.301931 0.794757 0.526496 -0.939283 0.342458 0.021706 -0.163052 -0.501082 0.849900 0.216972 0.822025 0.526496 -0.970002 0.242128 0.021706 -0.109637 -0.515412 0.849900 0.129623 0.840238 0.526496 -0.990036 0.139131 0.021706 -0.055014 -0.524064 0.849900 0.041538 0.849162 0.526496 -0.999137 0.035416 0.021706 -0.000215 -0.526943 0.849900 -0.047689 0.848839 0.526496 -0.997346 -0.069496 0.021706 0.055014 -0.524064 0.849900 -0.136391 0.839166 0.526496 -0.984570 -0.173642 0.021706 0.109637 -0.515412 0.849900 -0.223590 0.820249 0.526496 -0.960948 -0.275876 0.021706 0.163052 -0.501082 0.849900 -0.307534 0.792606 0.526496 -0.927117 -0.374143 0.021706 0.214189 -0.481448 0.849900 -0.388912 0.756009 0.526496 -0.882798 -0.469251 0.021706 0.263469 -0.456348 0.849900 -0.466005 0.711085 0.526496 -0.828755 -0.559191 0.021706 0.309846 -0.426221 0.849900 -0.537307 0.658865 0.526496 -0.766226 -0.642205 0.021706 0.352419 -0.391752 0.849900 -0.603401 0.598923 0.526496 -0.694698 -0.718974 0.021706 0.391537 -0.352659 0.849900 -0.662849 0.532384 0.526496 -0.615519 -0.787823 0.021706 0.426342 -0.309680 0.849900 -0.714996 0.459980 0.526496 -0.529559 -0.847995 0.021706 0.456450 -0.263291 0.849900 -0.758885 0.383269 0.526496 -0.438666 -0.898388 0.021706 0.481317 -0.214483 0.849900 -0.794875 0.301622 0.526496 -0.342092 -0.939416 0.021706 0.501146 -0.162857 0.849900 -0.822109 0.216652 0.526496 -0.241750 -0.970096 0.021706 0.515454 -0.109436 0.849900 -0.840159 0.130136 0.526496 -0.139736 -0.989951 0.021706 0.524030 -0.055334 0.849900 -0.849171 0.041365 0.526496 -0.035213 -0.999144 0.021706 0.526943 -0.000107 0.849900 -0.848829 -0.047862 0.526496 0.069699 -0.997332 0.021706 0.524052 0.055121 0.849900 -0.839138 -0.136562 0.526496 0.173843 -0.984534 0.021706 0.515389 0.109742 0.849900 -0.820427 -0.222937 0.526496 0.275110 -0.961168 0.021706 0.501212 0.162653 0.849900 -0.792543 -0.307696 0.526496 0.374332 -0.927041 0.021706 0.481404 0.214287 0.849900 -0.755930 -0.389066 0.526496 0.469431 -0.882702 0.021706 0.456294 0.263562 0.849900 -0.710990 -0.466150 0.526496 0.559359 -0.828641 0.021706 0.426158 0.309933 0.849900 -0.658756 -0.537441 0.526496 0.642361 -0.766095 0.021706 0.391680 0.352499 0.849900 -0.598800 -0.603523 0.526496 0.719115 -0.694552 0.021706 0.352579 0.391609 0.849900 -0.532249 -0.662958 0.526496 0.787949 -0.615358 0.021706 0.309594 0.426405 0.849900 -0.460550 -0.714630 0.526496 0.847573 -0.530235 0.021706 0.263655 0.456241 0.849900 -0.383115 -0.758963 0.526496 0.898478 -0.438483 0.021706 0.214385 0.481361 0.849900 -0.301460 -0.794936 0.526496 0.939485 -0.341901 0.021706 0.162755 0.501179 0.849900 -0.216485 -0.822153 0.526496 0.970145 -0.241553 0.021706 0.109331 0.515476 0.849900 -0.129965 -0.840185 0.526496 0.989979 -0.139535 0.021706 0.055227 0.524041 0.849900 -0.041192 -0.849179 0.526496 0.999151 -0.035009 0.021706 0.000000 0.526943 0.849900 0.048035 -0.848819 0.526496 0.997318 0.069902 0.021706 -0.055227 0.524041 0.849900 0.135894 -0.839247 0.526496 0.984672 0.173058 0.021706 -0.109331 0.515476 0.849900 0.223104 -0.820382 0.526496 0.961112 0.275306 0.021706 -0.162755 0.501179 0.849900 0.307857 -0.792481 0.526496 0.926964 0.374521 0.021706 -0.214385 0.481361 0.849900 0.389220 -0.755851 0.526496 0.882607 0.469611 0.021706 -0.263655 0.456241 0.849900 0.465583 -0.711361 0.526496 0.829086 0.558699 0.021706 -0.309594 0.426405 0.849900 0.537575 -0.658646 0.526496 0.765964 0.642516 0.021706 -0.352579 0.391609 0.849900 0.603645 -0.598677 0.526496 0.694405 0.719256 0.021706 -0.391680 0.352499 0.849900 0.662534 -0.532777 0.526496 0.615986 0.787458 0.021706 -0.426158 0.309933 0.849900 0.714724 -0.460404 0.526496 0.530062 0.847681 0.021706 -0.456294 0.263562 0.849900 0.759041 -0.382960 0.526496 0.438300 0.898567 0.021706 -0.481404 0.214287 0.849900 0.794998 -0.301298 0.526496 0.341709 0.939555 0.021706 -0.501212 0.162653 0.849900 0.821981 -0.217139 0.526496 0.242325 0.969952 0.021706 -0.515389 0.109742 0.849900 0.840212 -0.129794 0.526496 0.139333 0.990008 0.021706 -0.524052 0.055121 0.849900 0.775547 -0.595596 -0.209266 -0.575013 -0.803284 0.155224 -0.260551 -0.000053 -0.965460 0.833699 -0.511033 -0.209266 -0.487656 -0.859126 0.155224 -0.259110 -0.027360 -0.965460 0.882246 -0.421723 -0.209266 -0.395833 -0.905109 0.155224 -0.254870 -0.054111 -0.965460 0.921586 -0.326935 -0.209266 -0.298791 -0.941610 0.155224 -0.247795 -0.080526 -0.965460 0.950776 -0.228545 -0.209266 -0.198458 -0.967740 0.155224 -0.237991 -0.106053 -0.965460 0.969365 -0.128608 -0.209266 -0.096922 -0.983113 0.155224 -0.225695 -0.130186 -0.965460 0.977505 -0.026303 -0.209266 0.006649 -0.987857 0.155224 -0.210808 -0.153124 -0.965460 0.974878 0.076291 -0.209266 0.110147 -0.981719 0.155224 -0.193598 -0.174374 -0.965460 0.961513 0.178045 -0.209266 0.212431 -0.964769 0.155224 -0.174256 -0.193705 -0.965460 0.937835 0.276900 -0.209266 0.311439 -0.937503 0.155224 -0.153206 -0.210748 -0.965460 0.903648 0.373667 -0.209266 0.407980 -0.899698 0.155224 -0.130274 -0.225644 -0.965460 0.859509 0.466318 -0.209266 0.500028 -0.851984 0.155224 -0.105907 -0.238055 -0.965460 0.806455 0.553026 -0.209266 0.585773 -0.795472 0.155224 -0.080622 -0.247764 -0.965460 0.744052 0.634503 -0.209266 0.665918 -0.729697 0.155224 -0.054211 -0.254849 -0.965460 0.673454 0.708990 -0.209266 0.738728 -0.655886 0.155224 -0.027202 -0.259127 -0.965460 0.596070 0.775183 -0.209266 0.802933 -0.575504 0.155224 -0.000106 -0.260551 -0.965460 0.511542 0.833386 -0.209266 0.858828 -0.488181 0.155224 0.027202 -0.259127 -0.965460 0.421380 0.882410 -0.209266 0.905263 -0.395481 0.155224 0.054211 -0.254849 -0.965460 0.326576 0.921714 -0.209266 0.941726 -0.298425 0.155224 0.080622 -0.247764 -0.965460 0.229126 0.950636 -0.209266 0.967618 -0.199050 0.155224 0.105907 -0.238055 -0.965460 0.128231 0.969415 -0.209266 0.983151 -0.096540 0.155224 0.130274 -0.225644 -0.965460 0.025923 0.977515 -0.209266 0.987854 0.007033 0.155224 0.153206 -0.210748 -0.965460 -0.075696 0.974925 -0.209266 0.981787 0.109547 0.155224 0.174256 -0.193705 -0.965460 -0.177458 0.961622 -0.209266 0.964898 0.211842 0.155224 0.193598 -0.174374 -0.965460 -0.277265 0.937727 -0.209266 0.937382 0.311803 0.155224 0.210808 -0.153124 -0.965460 -0.374019 0.903503 -0.209266 0.899540 0.408330 0.155224 0.225695 -0.130186 -0.965460 -0.465793 0.859794 -0.209266 0.852290 0.499508 0.155224 0.237991 -0.106053 -0.965460 -0.553340 0.806240 -0.209266 0.795244 0.586083 0.155224 0.247795 -0.080526 -0.965460 -0.634792 0.743805 -0.209266 0.729438 0.666202 0.155224 0.254870 -0.054111 -0.965460 -0.708579 0.673887 -0.209266 0.656337 0.738328 0.155224 0.259110 -0.027360 -0.965460 -0.775305 0.595912 -0.209266 0.575340 0.803050 0.155224 0.260551 -0.000053 -0.965460 -0.833490 0.511372 -0.209266 0.488006 0.858927 0.155224 0.259121 0.027255 -0.965460 -0.882496 0.421200 -0.209266 0.395297 0.905343 0.155224 0.254838 0.054263 -0.965460 -0.921453 0.327310 -0.209266 0.299175 0.941488 0.155224 0.247828 0.080425 -0.965460 -0.950683 0.228933 -0.209266 0.198852 0.967659 0.155224 0.238034 0.105956 -0.965460 -0.969441 0.128033 -0.209266 0.096340 0.983170 0.155224 0.225618 0.130320 -0.965460 -0.977520 0.025724 -0.209266 -0.007234 0.987853 0.155224 0.210717 0.153249 -0.965460 -0.974909 -0.075894 -0.209266 -0.109747 0.981764 0.155224 0.193669 0.174296 -0.965460 -0.961586 -0.177654 -0.209266 -0.212038 0.964855 0.155224 0.174335 0.193634 -0.965460 -0.937670 -0.277456 -0.209266 -0.311994 0.937318 0.155224 0.153081 0.210839 -0.965460 -0.903801 -0.373299 -0.209266 -0.407614 0.899865 0.155224 0.130366 0.225591 -0.965460 -0.859699 -0.465968 -0.209266 -0.499681 0.852188 0.155224 0.106004 0.238012 -0.965460 -0.806127 -0.553504 -0.209266 -0.586245 0.795124 0.155224 0.080475 0.247811 -0.965460 -0.743676 -0.634944 -0.209266 -0.666351 0.729303 0.155224 0.054060 0.254881 -0.965460 -0.673743 -0.708716 -0.209266 -0.738461 0.656186 0.155224 0.027308 0.259116 -0.965460 -0.595754 -0.775426 -0.209266 -0.803167 0.575176 0.155224 0.000000 0.260551 -0.965460 -0.511202 -0.833595 -0.209266 -0.859026 0.487831 0.155224 -0.027308 0.259116 -0.965460 -0.421903 -0.882160 -0.209266 -0.905028 0.396017 0.155224 -0.054060 0.254881 -0.965460 -0.327122 -0.921520 -0.209266 -0.941549 0.298983 0.155224 -0.080475 0.247811 -0.965460 -0.228739 -0.950729 -0.209266 -0.967699 0.198655 0.155224 -0.106004 0.238012 -0.965460 -0.127836 -0.969467 -0.209266 -0.983190 0.096139 0.155224 -0.130366 0.225591 -0.965460 -0.026502 -0.977500 -0.209266 -0.987858 -0.006448 0.155224 -0.153081 0.210839 -0.965460 0.076093 -0.974894 -0.209266 -0.981742 -0.109947 0.155224 -0.174335 0.193634 -0.965460 0.177849 -0.961550 -0.209266 -0.964812 -0.212235 0.155224 -0.193669 0.174296 -0.965460 0.276709 -0.937891 -0.209266 -0.937566 -0.311248 0.155224 -0.210717 0.153249 -0.965460 0.373483 -0.903725 -0.209266 -0.899782 -0.407797 0.155224 -0.225618 0.130320 -0.965460 0.466143 -0.859604 -0.209266 -0.852086 -0.499855 0.155224 -0.238034 0.105956 -0.965460 0.553668 -0.806014 -0.209266 -0.795005 -0.586407 0.155224 -0.247828 0.080425 -0.965460 0.634351 -0.744182 -0.209266 -0.729833 -0.665770 0.155224 -0.254838 0.054263 -0.965460 0.708853 -0.673599 -0.209266 -0.656036 -0.738595 0.155224 -0.259121 0.027255 -0.965460 0.527991 -0.071036 0.846274 0.037454 0.997474 0.060360 -0.848424 -0.000173 0.529318 0.532528 -0.015307 0.846274 -0.067294 0.995906 0.060360 -0.843733 -0.089093 0.529318 0.531240 0.040058 0.846274 -0.170318 0.983539 0.060360 -0.829925 -0.176201 0.529318 0.524116 0.095516 0.846274 -0.272462 0.960271 0.060360 -0.806887 -0.262213 0.529318 0.511219 0.149921 0.846274 -0.371605 0.926427 0.060360 -0.774961 -0.345337 0.529318 0.492893 0.202182 0.846274 -0.465772 0.882844 0.060360 -0.734924 -0.423922 0.529318 0.468988 0.252727 0.846274 -0.555735 0.829165 0.060360 -0.686446 -0.498612 0.529318 0.439918 0.300488 0.846274 -0.639577 0.766354 0.060360 -0.630408 -0.567810 0.529318 0.406002 0.344940 0.846274 -0.716374 0.695101 0.060360 -0.567425 -0.630755 0.529318 0.367999 0.385224 0.846274 -0.784663 0.616977 0.060360 -0.498879 -0.686252 0.529318 0.325598 0.421671 0.846274 -0.845006 0.531340 0.060360 -0.424207 -0.734759 0.529318 0.279610 0.453474 0.846274 -0.896040 0.439851 0.060360 -0.344863 -0.775172 0.529318 0.231023 0.480051 0.846274 -0.936861 0.344455 0.060360 -0.262527 -0.806785 0.529318 0.179438 0.501620 0.846274 -0.967802 0.244368 0.060360 -0.176524 -0.829857 0.529318 0.125877 0.517664 0.846274 -0.988084 0.141589 0.060360 -0.088577 -0.843787 0.529318 0.071359 0.527948 0.846274 -0.997451 0.038064 0.060360 -0.000346 -0.848424 0.529318 0.015633 0.532519 0.846274 -0.995947 -0.066686 0.060360 0.088577 -0.843787 0.529318 -0.040265 0.531224 0.846274 -0.983472 -0.170701 0.060360 0.176524 -0.829857 0.529318 -0.095719 0.524079 0.846274 -0.960165 -0.272836 0.060360 0.262527 -0.806785 0.529318 -0.149608 0.511310 0.846274 -0.926654 -0.371039 0.060360 0.344863 -0.775172 0.529318 -0.202373 0.492814 0.846274 -0.882663 -0.466115 0.060360 0.424207 -0.734759 0.529318 -0.252909 0.468890 0.846274 -0.828949 -0.556058 0.060360 0.498879 -0.686252 0.529318 -0.300219 0.440101 0.846274 -0.766744 -0.639109 0.060360 0.567425 -0.630755 0.529318 -0.344692 0.406212 0.846274 -0.695538 -0.715949 0.060360 0.630408 -0.567810 0.529318 -0.385367 0.367849 0.846274 -0.616671 -0.784903 0.060360 0.686446 -0.498612 0.529318 -0.421798 0.325434 0.846274 -0.531012 -0.845212 0.060360 0.734924 -0.423922 0.529318 -0.453303 0.279887 0.846274 -0.440399 -0.895771 0.060360 0.774961 -0.345337 0.529318 -0.480141 0.230837 0.846274 -0.344090 -0.936995 0.060360 0.806887 -0.262213 0.529318 -0.501690 0.179243 0.846274 -0.243991 -0.967897 0.060360 0.829925 -0.176201 0.529318 -0.517587 0.126193 0.846274 -0.142193 -0.987997 0.060360 0.843733 -0.089093 0.529318 -0.527962 0.071251 0.846274 -0.037861 -0.997458 0.060360 0.848424 -0.000173 0.529318 -0.532522 0.015524 0.846274 0.066889 -0.995933 0.060360 0.843769 0.088749 0.529318 -0.531216 -0.040373 0.846274 0.170901 -0.983438 0.060360 0.829821 0.176693 0.529318 -0.524155 -0.095302 0.846274 0.272071 -0.960382 0.060360 0.806994 0.261884 0.529318 -0.511280 -0.149712 0.846274 0.371228 -0.926578 0.060360 0.775102 0.345021 0.529318 -0.492773 -0.202474 0.846274 0.466295 -0.882568 0.060360 0.734673 0.424357 0.529318 -0.468838 -0.253005 0.846274 0.556226 -0.828836 0.060360 0.686151 0.499019 0.529318 -0.440040 -0.300309 0.846274 0.639265 -0.766614 0.060360 0.630639 0.567554 0.529318 -0.406142 -0.344774 0.846274 0.716091 -0.695393 0.060360 0.567682 0.630523 0.529318 -0.367770 -0.385442 0.846274 0.785029 -0.616511 0.060360 0.498472 0.686548 0.529318 -0.325770 -0.421539 0.846274 0.844789 -0.531684 0.060360 0.424507 0.734586 0.529318 -0.279795 -0.453360 0.846274 0.895861 -0.440216 0.060360 0.345179 0.775032 0.529318 -0.230739 -0.480188 0.846274 0.937065 -0.343899 0.060360 0.262049 0.806941 0.529318 -0.179141 -0.501726 0.846274 0.967947 -0.243794 0.060360 0.176032 0.829961 0.529318 -0.126087 -0.517612 0.846274 0.988026 -0.141992 0.060360 0.088921 0.843751 0.529318 -0.071143 -0.527977 0.846274 0.997466 -0.037658 0.060360 0.000000 0.848424 0.529318 -0.015416 -0.532525 0.846274 0.995919 0.067091 0.060360 -0.088921 0.843751 0.529318 0.039950 -0.531248 0.846274 0.983573 0.170118 0.060360 -0.176032 0.829961 0.529318 0.095409 -0.524135 0.846274 0.960327 0.272267 0.060360 -0.262049 0.806941 0.529318 0.149816 -0.511249 0.846274 0.926502 0.371416 0.060360 -0.345179 0.775032 0.529318 0.202574 -0.492732 0.846274 0.882473 0.466475 0.060360 -0.424507 0.734586 0.529318 0.252631 -0.469040 0.846274 0.829279 0.555566 0.060360 -0.498472 0.686548 0.529318 0.300399 -0.439979 0.846274 0.766484 0.639421 0.060360 -0.567682 0.630523 0.529318 0.344857 -0.406072 0.846274 0.695247 0.716232 0.060360 -0.630639 0.567554 0.529318 0.385149 -0.368077 0.846274 0.617136 0.784538 0.060360 -0.686151 0.499019 0.529318 0.421605 -0.325684 0.846274 0.531512 0.844897 0.060360 -0.734673 0.424357 0.529318 0.453417 -0.279703 0.846274 0.440034 0.895950 0.060360 -0.775102 0.345021 0.529318 0.480235 -0.230641 0.846274 0.343708 0.937135 0.060360 -0.806994 0.261884 0.529318 0.501583 -0.179540 0.846274 0.244565 0.967752 0.060360 -0.829821 0.176693 0.529318 0.517638 -0.125982 0.846274 0.141791 0.988055 0.060360 -0.843769 0.088749 0.529318 0.266594 -0.935986 0.229909 0.708564 0.352037 0.611561 -0.653349 -0.000133 0.757057 0.363223 -0.902890 0.229909 0.667765 0.424361 0.611561 -0.649737 -0.068608 0.757057 0.454992 -0.860305 0.229909 0.620103 0.491391 0.611561 -0.639104 -0.135688 0.757057 0.542652 -0.807880 0.229909 0.565187 0.553676 0.611561 -0.621363 -0.201924 0.757057 0.624335 -0.746557 0.229909 0.504045 0.609862 0.611561 -0.596778 -0.265935 0.757057 0.698464 -0.677709 0.229909 0.438010 0.658893 0.611561 -0.565946 -0.326451 0.757057 0.765646 -0.600773 0.229909 0.366541 0.701171 0.611561 -0.528615 -0.383968 0.757057 0.824395 -0.517219 0.229909 0.291035 0.735725 0.611561 -0.485461 -0.437256 0.757057 0.874063 -0.427968 0.229909 0.212323 0.762176 0.611561 -0.436960 -0.485728 0.757057 0.913768 -0.334917 0.229909 0.132052 0.780100 0.611561 -0.384174 -0.528465 0.757057 0.943838 -0.237303 0.229909 0.049565 0.789643 0.611561 -0.326671 -0.565819 0.757057 0.963510 -0.137075 0.229909 -0.033469 0.790489 0.611561 -0.265570 -0.596940 0.757057 0.972535 -0.036310 0.229909 -0.115350 0.782743 0.611561 -0.202165 -0.621284 0.757057 0.970984 0.065819 0.229909 -0.196752 0.766343 0.611561 -0.135937 -0.639051 0.757057 0.958738 0.167222 0.229909 -0.275987 0.741501 0.611561 -0.068211 -0.649779 0.757057 0.936149 0.266022 0.229909 -0.351604 0.708779 0.611561 -0.000266 -0.653349 0.757057 0.903112 0.362672 0.229909 -0.423953 0.668025 0.611561 0.068211 -0.649779 0.757057 0.860128 0.455327 0.229909 -0.491632 0.619912 0.611561 0.135937 -0.639051 0.757057 0.807669 0.542967 0.229909 -0.553895 0.564972 0.611561 0.202165 -0.621284 0.757057 0.746938 0.623879 0.229909 -0.609554 0.504418 0.611561 0.265570 -0.596940 0.757057 0.677437 0.698728 0.229909 -0.659063 0.437754 0.611561 0.326671 -0.565819 0.757057 0.600475 0.765880 0.229909 -0.701313 0.366269 0.611561 0.384174 -0.528465 0.757057 0.517722 0.824079 0.229909 -0.735547 0.291484 0.611561 0.436960 -0.485728 0.757057 0.428502 0.873801 0.229909 -0.762046 0.212788 0.611561 0.485461 -0.437256 0.757057 0.334561 0.913899 0.229909 -0.780151 0.131748 0.611561 0.528615 -0.383968 0.757057 0.236936 0.943930 0.229909 -0.789662 0.049258 0.611561 0.565946 -0.326451 0.757057 0.137664 0.963427 0.229909 -0.790509 -0.032985 0.611561 0.596778 -0.265935 0.757057 0.035931 0.972549 0.229909 -0.782698 -0.115655 0.611561 0.621363 -0.201924 0.757057 -0.066197 0.970958 0.229909 -0.766266 -0.197050 0.611561 0.639104 -0.135688 0.757057 -0.166637 0.958840 0.229909 -0.741670 -0.275534 0.611561 0.649737 -0.068608 0.757057 -0.266212 0.936095 0.229909 -0.708707 -0.351749 0.611561 0.653349 -0.000133 0.757057 -0.362856 0.903038 0.229909 -0.667938 -0.424089 0.611561 0.649765 0.068343 0.757057 -0.455502 0.860035 0.229909 -0.619812 -0.491758 0.611561 0.639023 0.136067 0.757057 -0.542323 0.808101 0.229909 -0.565412 -0.553445 0.611561 0.621445 0.201670 0.757057 -0.624031 0.746811 0.229909 -0.504293 -0.609657 0.611561 0.596886 0.265692 0.757057 -0.698866 0.677295 0.229909 -0.437620 -0.659152 0.611561 0.565752 0.326786 0.757057 -0.766002 0.600319 0.229909 -0.366126 -0.701388 0.611561 0.528387 0.384282 0.757057 -0.824184 0.517555 0.229909 -0.291335 -0.735607 0.611561 0.485639 0.437058 0.757057 -0.873888 0.428324 0.229909 -0.212633 -0.762089 0.611561 0.437157 0.485550 0.757057 -0.913967 0.334375 0.229909 -0.131590 -0.780178 0.611561 0.383861 0.528693 0.757057 -0.943741 0.237687 0.229909 -0.049886 -0.789623 0.611561 0.326902 0.565686 0.757057 -0.963455 0.137467 0.229909 0.033146 -0.790503 0.611561 0.265813 0.596832 0.757057 -0.972556 0.035733 0.229909 0.115814 -0.782675 0.611561 0.201797 0.621404 0.757057 -0.970945 -0.066394 0.229909 0.197206 -0.766226 0.611561 0.135558 0.639132 0.757057 -0.958806 -0.166832 0.229909 0.275685 -0.741614 0.611561 0.068476 0.649751 0.757057 -0.936040 -0.266403 0.229909 0.351893 -0.708636 0.611561 0.000000 0.653349 0.757057 -0.902964 -0.363039 0.229909 0.424225 -0.667852 0.611561 -0.068476 0.649751 0.757057 -0.860397 -0.454817 0.229909 0.491264 -0.620203 0.611561 -0.135558 0.639132 0.757057 -0.807991 -0.542488 0.229909 0.553560 -0.565300 0.611561 -0.201797 0.621404 0.757057 -0.746684 -0.624183 0.229909 0.609759 -0.504169 0.611561 -0.265813 0.596832 0.757057 -0.677153 -0.699004 0.229909 0.659242 -0.437485 0.611561 -0.326902 0.565686 0.757057 -0.600929 -0.765524 0.229909 0.701096 -0.366684 0.611561 -0.383861 0.528693 0.757057 -0.517387 -0.824289 0.229909 0.735666 -0.291185 0.611561 -0.437157 0.485550 0.757057 -0.428146 -0.873975 0.229909 0.762133 -0.212478 0.611561 -0.485639 0.437058 0.757057 -0.335103 -0.913700 0.229909 0.780073 -0.132211 0.611561 -0.528387 0.384282 0.757057 -0.237495 -0.943789 0.229909 0.789633 -0.049726 0.611561 -0.565752 0.326786 0.757057 -0.137271 -0.963482 0.229909 0.790496 0.033307 0.611561 -0.596886 0.265692 0.757057 -0.035535 -0.972563 0.229909 0.782651 0.115974 0.611561 -0.621445 0.201670 0.757057 0.065621 -0.970997 0.229909 0.766383 0.196596 0.611561 -0.639023 0.136067 0.757057 0.167027 -0.958772 0.229909 0.741558 0.275836 0.611561 -0.649765 0.068343 0.757057 -0.316914 -0.919721 -0.231689 0.742645 -0.392574 0.542553 -0.589952 -0.000120 0.807438 -0.218775 -0.947870 -0.231689 0.779700 -0.312577 0.542553 -0.586691 -0.061951 0.807438 -0.119192 -0.965460 -0.231689 0.807936 -0.229946 0.542553 -0.577089 -0.122522 0.807438 -0.017348 -0.972635 -0.231689 0.827587 -0.144002 0.542553 -0.561070 -0.182330 0.807438 0.084686 -0.969097 -0.231689 0.838121 -0.056472 0.542553 -0.538870 -0.240130 0.807438 0.184833 -0.955069 -0.231689 0.839455 0.030841 0.542553 -0.511030 -0.294774 0.807438 0.283913 -0.930437 -0.231689 0.831599 0.118652 0.542553 -0.477321 -0.346710 0.807438 0.379866 -0.895557 -0.231689 0.814584 0.205156 0.542553 -0.438355 -0.394828 0.807438 0.471635 -0.850812 -0.231689 0.788596 0.289401 0.542553 -0.394560 -0.438596 0.807438 0.557411 -0.797253 -0.231689 0.754291 0.369703 0.542553 -0.346896 -0.477187 0.807438 0.637899 -0.734442 -0.231689 0.711390 0.446722 0.542553 -0.294973 -0.510916 0.807438 0.711361 -0.663540 -0.231689 0.660652 0.518821 0.542553 -0.239801 -0.539017 0.807438 0.776401 -0.586107 -0.231689 0.603222 0.584601 0.542553 -0.182549 -0.560999 0.807438 0.833553 -0.501507 -0.231689 0.538630 0.644604 0.542553 -0.122746 -0.577042 0.807438 0.881524 -0.411382 -0.231689 0.468104 0.697506 0.542553 -0.061592 -0.586729 0.807438 0.919527 -0.317476 -0.231689 0.393027 0.742405 0.542553 -0.000240 -0.589952 0.807438 0.947736 -0.219354 -0.231689 0.313053 0.779508 0.542553 0.061592 -0.586729 0.807438 0.965506 -0.118816 -0.231689 0.229631 0.808026 0.542553 0.122746 -0.577042 0.807438 0.972642 -0.016970 -0.231689 0.143680 0.827643 0.542553 0.182549 -0.560999 0.807438 0.969148 0.084094 -0.231689 0.056984 0.838086 0.542553 0.239801 -0.539017 0.807438 0.954997 0.185205 -0.231689 -0.031168 0.839443 0.542553 0.294973 -0.510916 0.807438 0.930327 0.284275 -0.231689 -0.118976 0.831553 0.542553 0.346896 -0.477187 0.807438 0.895789 0.379319 -0.231689 -0.204659 0.814709 0.542553 0.394560 -0.438596 0.807438 0.851100 0.471115 -0.231689 -0.288919 0.788772 0.542553 0.438355 -0.394828 0.807438 0.797036 0.557722 -0.231689 -0.369997 0.754147 0.542553 0.477321 -0.346710 0.807438 0.734194 0.638185 -0.231689 -0.446999 0.711216 0.542553 0.511030 -0.294774 0.807438 0.663975 0.710955 -0.231689 -0.518417 0.660969 0.542553 0.538870 -0.240130 0.807438 0.585805 0.776629 -0.231689 -0.584836 0.602995 0.542553 0.561070 -0.182330 0.807438 0.501182 0.833749 -0.231689 -0.644813 0.538379 0.542553 0.577089 -0.122522 0.807438 0.411921 0.881273 -0.231689 -0.697220 0.468530 0.542553 0.586691 -0.061951 0.807438 0.317288 0.919591 -0.231689 -0.742485 0.392876 0.542553 0.589952 -0.000120 0.807438 0.219161 0.947781 -0.231689 -0.779572 0.312895 0.542553 0.586716 0.061712 0.807438 0.118620 0.965531 -0.231689 -0.808072 0.229467 0.542553 0.577017 0.122864 0.807438 0.017745 0.972628 -0.231689 -0.827528 0.144339 0.542553 0.561144 0.182102 0.807438 -0.084291 0.969131 -0.231689 -0.838098 0.056813 0.542553 0.538968 0.239911 0.807438 -0.185399 0.954959 -0.231689 -0.839437 -0.031339 0.542553 0.510856 0.295077 0.807438 -0.284465 0.930269 -0.231689 -0.831529 -0.119145 0.542553 0.477116 0.346993 0.807438 -0.379501 0.895711 -0.231689 -0.814667 -0.204824 0.542553 0.438516 0.394649 0.807438 -0.471288 0.851004 -0.231689 -0.788714 -0.289079 0.542553 0.394738 0.438435 0.807438 -0.557884 0.796923 -0.231689 -0.754072 -0.370150 0.542553 0.346613 0.477392 0.807438 -0.637600 0.734701 -0.231689 -0.711572 -0.446432 0.542553 0.295181 0.510795 0.807438 -0.711091 0.663830 -0.231689 -0.660863 -0.518551 0.542553 0.240020 0.538919 0.807438 -0.776748 0.585647 -0.231689 -0.602876 -0.584959 0.542553 0.182216 0.561107 0.807438 -0.833851 0.501012 -0.231689 -0.538248 -0.644923 0.542553 0.122404 0.577114 0.807438 -0.881357 0.411741 -0.231689 -0.468388 -0.697315 0.542553 0.061831 0.586703 0.807438 -0.919656 0.317101 -0.231689 -0.392725 -0.742565 0.542553 0.000000 0.589952 0.807438 -0.947825 0.218968 -0.231689 -0.312736 -0.779636 0.542553 -0.061831 0.586703 0.807438 -0.965436 0.119389 -0.231689 -0.230110 -0.807889 0.542553 -0.122404 0.577114 0.807438 -0.972632 0.017547 -0.231689 -0.144170 -0.827557 0.542553 -0.182216 0.561107 0.807438 -0.969114 -0.084489 -0.231689 -0.056642 -0.838109 0.542553 -0.240020 0.538919 0.807438 -0.954922 -0.185594 -0.231689 0.031510 -0.839430 0.542553 -0.295181 0.510795 0.807438 -0.930495 -0.283724 -0.231689 0.118483 -0.831624 0.542553 -0.346613 0.477392 0.807438 -0.895634 -0.379684 -0.231689 0.204990 -0.814626 0.542553 -0.394738 0.438435 0.807438 -0.850908 -0.471461 -0.231689 0.289240 -0.788655 0.542553 -0.438516 0.394649 0.807438 -0.797367 -0.557249 -0.231689 0.369549 -0.754367 0.542553 -0.477116 0.346993 0.807438 -0.734572 -0.637750 -0.231689 0.446577 -0.711481 0.542553 -0.510856 0.295077 0.807438 -0.663685 -0.711226 -0.231689 0.518686 -0.660758 0.542553 -0.538968 0.239911 0.807438 -0.585488 -0.776868 -0.231689 0.585082 -0.602757 0.542553 -0.561144 0.182102 0.807438 -0.501676 -0.833451 -0.231689 0.644494 -0.538761 0.542553 -0.577017 0.122864 0.807438 -0.411562 -0.881440 -0.231689 0.697411 -0.468246 0.542553 -0.586716 0.061712 0.807438 0.136295 -0.988353 -0.067697 -0.884910 -0.152181 0.440199 -0.445375 -0.000091 -0.895344 0.239130 -0.968625 -0.067697 -0.864086 -0.244088 0.440199 -0.442912 -0.046769 -0.895344 0.338394 -0.938566 -0.067697 -0.834078 -0.332472 0.440199 -0.435664 -0.092496 -0.895344 0.434899 -0.897931 -0.067697 -0.794639 -0.418059 0.440199 -0.423570 -0.137647 -0.895344 0.526613 -0.847405 -0.067697 -0.746447 -0.499040 0.440199 -0.406811 -0.181282 -0.895344 0.611739 -0.788158 -0.067697 -0.690607 -0.573834 0.440199 -0.385794 -0.222535 -0.895344 0.690974 -0.719702 -0.067697 -0.626662 -0.643055 0.440199 -0.360346 -0.261743 -0.895344 0.762599 -0.643319 -0.067697 -0.555814 -0.705192 0.440199 -0.330929 -0.298068 -0.895344 0.825823 -0.559851 -0.067697 -0.478844 -0.759561 0.440199 -0.297866 -0.331111 -0.895344 0.879481 -0.471095 -0.067697 -0.397404 -0.805167 0.440199 -0.261883 -0.360244 -0.895344 0.924011 -0.376324 -0.067697 -0.310828 -0.842384 0.440199 -0.222685 -0.385707 -0.895344 0.958364 -0.277409 -0.067697 -0.220829 -0.870321 0.440199 -0.181034 -0.406922 -0.895344 0.981984 -0.176420 -0.067697 -0.129285 -0.888544 0.440199 -0.137812 -0.423517 -0.895344 0.995066 -0.072529 -0.067697 -0.035447 -0.897200 0.440199 -0.092665 -0.435628 -0.895344 0.997187 0.032161 -0.067697 0.058781 -0.895974 0.440199 -0.046498 -0.442941 -0.895344 0.988436 0.135691 -0.067697 0.151641 -0.885003 0.440199 -0.000181 -0.445375 -0.895344 0.968771 0.238539 -0.067697 0.243560 -0.864235 0.440199 0.046498 -0.442941 -0.895344 0.938435 0.338759 -0.067697 0.332797 -0.833949 0.440199 0.092665 -0.435628 -0.895344 0.897762 0.435248 -0.067697 0.418368 -0.794476 0.440199 0.137812 -0.423517 -0.895344 0.847727 0.526095 -0.067697 0.498584 -0.746752 0.440199 0.181034 -0.406922 -0.895344 0.787920 0.612046 -0.067697 0.574103 -0.690384 0.440199 0.222685 -0.385707 -0.895344 0.719433 0.691254 -0.067697 0.643298 -0.626412 0.440199 0.261883 -0.360244 -0.895344 0.643785 0.762206 -0.067697 0.704852 -0.556245 0.440199 0.297866 -0.331111 -0.895344 0.560355 0.825481 -0.067697 0.759268 -0.479308 0.440199 0.330929 -0.298068 -0.895344 0.470752 0.879664 -0.067697 0.805322 -0.397091 0.440199 0.360346 -0.261743 -0.895344 0.375965 0.924158 -0.067697 0.842504 -0.310501 0.440199 0.385794 -0.222535 -0.895344 0.277994 0.958194 -0.067697 0.870186 -0.221360 0.440199 0.406811 -0.181282 -0.895344 0.176037 0.982053 -0.067697 0.888594 -0.128940 0.440199 0.423570 -0.137647 -0.895344 0.072142 0.995094 -0.067697 0.897214 -0.035098 0.440199 0.435664 -0.092496 -0.895344 -0.031551 0.997207 -0.067697 0.896010 0.058233 0.440199 0.442912 -0.046769 -0.895344 -0.135892 0.988408 -0.067697 0.884972 0.151821 0.440199 0.445375 -0.000091 -0.895344 -0.238736 0.968722 -0.067697 0.864186 0.243736 0.440199 0.442931 0.046588 -0.895344 -0.338950 0.938366 -0.067697 0.833881 0.332967 0.440199 0.435609 0.092754 -0.895344 -0.434533 0.898108 -0.067697 0.794809 0.417735 0.440199 0.423626 0.137475 -0.895344 -0.526268 0.847620 -0.067697 0.746650 0.498736 0.440199 0.406885 0.181117 -0.895344 -0.612206 0.787795 -0.067697 0.690267 0.574243 0.440199 0.385662 0.222763 -0.895344 -0.691401 0.719293 -0.067697 0.626281 0.643426 0.440199 0.360190 0.261957 -0.895344 -0.762337 0.643630 -0.067697 0.556101 0.704965 0.440199 0.331050 0.297934 -0.895344 -0.825595 0.560187 -0.067697 0.479153 0.759366 0.440199 0.298001 0.330989 -0.895344 -0.879760 0.470573 -0.067697 0.396927 0.805403 0.440199 0.261670 0.360399 -0.895344 -0.923858 0.376701 -0.067697 0.311172 0.842257 0.440199 0.222842 0.385616 -0.895344 -0.958251 0.277799 -0.067697 0.221183 0.870231 0.440199 0.181199 0.406848 -0.895344 -0.982089 0.175837 -0.067697 0.128759 0.888620 0.440199 0.137561 0.423598 -0.895344 -0.995109 0.071939 -0.067697 0.034916 0.897221 0.440199 0.092407 0.435683 -0.895344 -0.997200 -0.031754 -0.067697 -0.058416 0.895998 0.440199 0.046678 0.442922 -0.895344 -0.988380 -0.136093 -0.067697 -0.152001 0.884941 0.440199 0.000000 0.445375 -0.895344 -0.968673 -0.238933 -0.067697 -0.243912 0.864136 0.440199 -0.046678 0.442922 -0.895344 -0.938635 -0.338203 -0.067697 -0.332302 0.834146 0.440199 -0.092407 0.435683 -0.895344 -0.898020 -0.434716 -0.067697 -0.417897 0.794724 0.440199 -0.137561 0.423598 -0.895344 -0.847513 -0.526440 -0.067697 -0.498888 0.746549 0.440199 -0.181199 0.406848 -0.895344 -0.787670 -0.612366 -0.067697 -0.574384 0.690150 0.440199 -0.222842 0.385616 -0.895344 -0.719843 -0.690828 -0.067697 -0.642927 0.626793 0.440199 -0.261670 0.360399 -0.895344 -0.643475 -0.762468 -0.067697 -0.705078 0.555958 0.440199 -0.298001 0.330989 -0.895344 -0.560019 -0.825709 -0.067697 -0.759464 0.478998 0.440199 -0.331050 0.297934 -0.895344 -0.471274 -0.879385 -0.067697 -0.805086 0.397568 0.440199 -0.360190 0.261957 -0.895344 -0.376512 -0.923935 -0.067697 -0.842320 0.311000 0.440199 -0.385662 0.222763 -0.895344 -0.277604 -0.958307 -0.067697 -0.870276 0.221006 0.440199 -0.406885 0.181117 -0.895344 -0.175637 -0.982125 -0.067697 -0.888646 0.128578 0.440199 -0.423626 0.137475 -0.895344 -0.072732 -0.995051 -0.067697 -0.897193 0.035630 0.440199 -0.435609 0.092754 -0.895344 0.031958 -0.997194 -0.067697 -0.895986 -0.058598 0.440199 -0.442931 0.046588 -0.895344 0.420259 0.753866 -0.505043 0.482383 -0.657028 -0.579328 -0.768563 -0.000157 -0.639774 0.338933 0.793760 -0.505043 0.548587 -0.602852 -0.579328 -0.764314 -0.080707 -0.639774 0.254700 0.824657 -0.505043 0.608207 -0.542645 -0.579328 -0.751806 -0.159616 -0.639774 0.166867 0.846810 -0.505043 0.661730 -0.475912 -0.579328 -0.730937 -0.237532 -0.639774 0.077196 0.859635 -0.505043 0.707965 -0.403937 -0.579328 -0.702016 -0.312831 -0.639774 -0.012462 0.863004 -0.505043 0.746073 -0.328258 -0.579328 -0.665747 -0.384019 -0.639774 -0.102842 0.856945 -0.505043 0.776368 -0.248257 -0.579328 -0.621833 -0.451679 -0.639774 -0.192090 0.841447 -0.505043 0.798111 -0.165521 -0.579328 -0.571069 -0.514364 -0.639774 -0.279221 0.816680 -0.505043 0.811064 -0.080961 -0.579328 -0.514015 -0.571383 -0.639774 -0.362494 0.783281 -0.505043 0.815086 0.003675 -0.579328 -0.451921 -0.621657 -0.639774 -0.442592 0.740975 -0.505043 0.810212 0.089082 -0.579328 -0.384278 -0.665598 -0.639774 -0.517814 0.690507 -0.505043 0.796413 0.173507 -0.579328 -0.312402 -0.702207 -0.639774 -0.586699 0.633021 -0.505043 0.774098 0.255247 -0.579328 -0.237816 -0.730844 -0.639774 -0.649813 0.568044 -0.505043 0.743083 0.334973 -0.579328 -0.159908 -0.751744 -0.639774 -0.705769 0.496811 -0.505043 0.703883 0.411008 -0.579328 -0.080240 -0.764363 -0.639774 -0.753609 0.420719 -0.505043 0.657323 0.481981 -0.579328 -0.000313 -0.768563 -0.639774 -0.793553 0.339418 -0.505043 0.603187 0.548219 -0.579328 0.080240 -0.764363 -0.639774 -0.824756 0.254379 -0.505043 0.542408 0.608418 -0.579328 0.159908 -0.751744 -0.639774 -0.846875 0.166538 -0.505043 0.475654 0.661915 -0.579328 0.237816 -0.730844 -0.639774 -0.859588 0.077722 -0.505043 0.404369 0.707718 -0.579328 0.312402 -0.702207 -0.639774 -0.862999 -0.012797 -0.505043 0.327968 0.746201 -0.579328 0.384278 -0.665598 -0.639774 -0.856905 -0.103175 -0.505043 0.247955 0.776465 -0.579328 0.451921 -0.621657 -0.639774 -0.841564 -0.191576 -0.505043 0.166008 0.798010 -0.579328 0.514015 -0.571383 -0.639774 -0.816851 -0.278722 -0.505043 0.081457 0.811014 -0.579328 0.571069 -0.514364 -0.639774 -0.783140 -0.362799 -0.505043 -0.003992 0.815085 -0.579328 0.621833 -0.451679 -0.639774 -0.740803 -0.442880 -0.505043 -0.089397 0.810177 -0.579328 0.665747 -0.384019 -0.639774 -0.690824 -0.517392 -0.505043 -0.173020 0.796519 -0.579328 0.702016 -0.312831 -0.639774 -0.632793 -0.586945 -0.505043 -0.255548 0.773999 -0.579328 0.730937 -0.237532 -0.639774 -0.567792 -0.650034 -0.505043 -0.335262 0.742953 -0.579328 0.751806 -0.159616 -0.639774 -0.497242 -0.705466 -0.505043 -0.410578 0.704134 -0.579328 0.764314 -0.080707 -0.639774 -0.420566 -0.753695 -0.505043 -0.482115 0.657224 -0.579328 0.768563 -0.000157 -0.639774 -0.339257 -0.793622 -0.505043 -0.548342 0.603076 -0.579328 0.764347 0.080395 -0.639774 -0.254211 -0.824808 -0.505043 -0.608528 0.542284 -0.579328 0.751711 0.160062 -0.639774 -0.167212 -0.846742 -0.505043 -0.661536 0.476181 -0.579328 0.731033 0.237234 -0.639774 -0.077546 -0.859603 -0.505043 -0.707800 0.404225 -0.579328 0.702143 0.312545 -0.639774 0.012973 -0.862997 -0.505043 -0.746268 0.327816 -0.579328 0.665519 0.384413 -0.639774 0.103350 -0.856884 -0.505043 -0.776515 0.247797 -0.579328 0.621565 0.452047 -0.639774 0.191747 -0.841525 -0.505043 -0.798044 0.165846 -0.579328 0.571278 0.514131 -0.639774 0.278889 -0.816794 -0.505043 -0.811031 0.081291 -0.579328 0.514247 0.571174 -0.639774 0.362959 -0.783066 -0.505043 -0.815084 -0.004158 -0.579328 0.451552 0.621925 -0.639774 0.442290 -0.741155 -0.505043 -0.810248 -0.088752 -0.579328 0.384549 0.665441 -0.639774 0.517532 -0.690718 -0.505043 -0.796484 -0.173183 -0.579328 0.312688 0.702080 -0.639774 0.587074 -0.632673 -0.505043 -0.773947 -0.255706 -0.579328 0.237383 0.730985 -0.639774 0.650150 -0.567659 -0.505043 -0.742884 -0.335413 -0.579328 0.159463 0.751839 -0.639774 0.705567 -0.497098 -0.505043 -0.704050 -0.410721 -0.579328 0.080551 0.764331 -0.639774 0.753780 -0.420412 -0.505043 -0.657126 -0.482249 -0.579328 0.000000 0.768563 -0.639774 0.793691 -0.339095 -0.505043 -0.602964 -0.548465 -0.579328 -0.080551 0.764331 -0.639774 0.824605 -0.254868 -0.505043 -0.542769 -0.608096 -0.579328 -0.159463 0.751839 -0.639774 0.846776 -0.167040 -0.505043 -0.476047 -0.661633 -0.579328 -0.237383 0.730985 -0.639774 0.859619 -0.077371 -0.505043 -0.404081 -0.707883 -0.579328 -0.312688 0.702080 -0.639774 0.862994 0.013149 -0.505043 -0.327664 -0.746334 -0.579328 -0.384549 0.665441 -0.639774 0.856966 0.102668 -0.505043 -0.248415 -0.776318 -0.579328 -0.451552 0.621925 -0.639774 0.841486 0.191918 -0.505043 -0.165683 -0.798078 -0.579328 -0.514247 0.571174 -0.639774 0.816737 0.279055 -0.505043 -0.081126 -0.811047 -0.579328 -0.571278 0.514131 -0.639774 0.783355 0.362335 -0.505043 0.003509 -0.815087 -0.579328 -0.621565 0.452047 -0.639774 0.741065 0.442441 -0.505043 0.088917 -0.810230 -0.579328 -0.665519 0.384413 -0.639774 0.690613 0.517673 -0.505043 0.173345 -0.796449 -0.579328 -0.702143 0.312545 -0.639774 0.632554 0.587203 -0.505043 0.255864 -0.773895 -0.579328 -0.731033 0.237234 -0.639774 0.568177 0.649697 -0.505043 0.334821 -0.743151 -0.579328 -0.751711 0.160062 -0.639774 0.496955 0.705668 -0.505043 0.410865 -0.703967 -0.579328 -0.764347 0.080395 -0.639774 -0.412066 -0.651314 0.637175 -0.353881 0.758809 0.546789 -0.839625 -0.000171 -0.543166 -0.341534 -0.690914 0.637175 -0.431460 0.717540 0.546789 -0.834983 -0.088169 -0.543166 -0.267963 -0.722636 0.637175 -0.503619 0.668872 0.546789 -0.821318 -0.174374 -0.543166 -0.190750 -0.746741 0.637175 -0.570948 0.612406 0.546789 -0.798519 -0.259494 -0.543166 -0.111435 -0.762620 0.637175 -0.631988 0.549194 0.546789 -0.766925 -0.341755 -0.543166 -0.031664 -0.770068 0.637175 -0.685586 0.480618 0.546789 -0.727302 -0.419525 -0.543166 0.049219 -0.769146 0.637175 -0.732183 0.406117 0.546789 -0.679328 -0.493441 -0.543166 0.129560 -0.759751 0.637175 -0.770714 0.327142 0.546789 -0.623870 -0.561922 -0.543166 0.208474 -0.741988 0.637175 -0.800756 0.244564 0.546789 -0.561541 -0.624213 -0.543166 0.284375 -0.716337 0.637175 -0.821818 0.160114 0.546789 -0.493705 -0.679136 -0.543166 0.357886 -0.682587 0.637175 -0.834073 0.073100 0.546789 -0.419808 -0.727139 -0.543166 0.427455 -0.641319 0.637175 -0.837141 -0.014720 0.546789 -0.341287 -0.767133 -0.543166 0.491723 -0.593478 0.637175 -0.831090 -0.101546 0.546789 -0.259805 -0.798418 -0.543166 0.551215 -0.538674 0.637175 -0.815870 -0.188091 0.546789 -0.174694 -0.821251 -0.543166 0.604636 -0.477936 0.637175 -0.791663 -0.272564 0.546789 -0.087659 -0.835037 -0.543166 0.651062 -0.412464 0.637175 -0.759025 -0.353417 0.546789 -0.000342 -0.839625 -0.543166 0.690705 -0.341956 0.637175 -0.717804 -0.431022 0.546789 0.087659 -0.835037 -0.543166 0.722741 -0.267682 0.637175 -0.668676 -0.503879 0.546789 0.174694 -0.821251 -0.543166 0.746815 -0.190459 0.637175 -0.612184 -0.571186 0.546789 0.259805 -0.798418 -0.543166 0.762552 -0.111901 0.637175 -0.549580 -0.631652 0.546789 0.341287 -0.767133 -0.543166 0.770080 -0.031364 0.637175 -0.480351 -0.685773 0.546789 0.419808 -0.727139 -0.543166 0.769126 0.049518 0.637175 -0.405832 -0.732341 0.546789 0.493705 -0.679136 -0.543166 0.759830 0.129096 0.637175 -0.327613 -0.770514 0.546789 0.561541 -0.624213 -0.543166 0.742115 0.208021 0.637175 -0.245053 -0.800607 0.546789 0.623870 -0.561922 -0.543166 0.716226 0.284654 0.637175 -0.159794 -0.821881 0.546789 0.679328 -0.493441 -0.543166 0.682448 0.358152 0.637175 -0.072775 -0.834102 0.546789 0.727302 -0.419525 -0.543166 0.641580 0.427063 0.637175 0.014208 -0.837150 0.546789 0.766925 -0.341755 -0.543166 0.593287 0.491954 0.637175 0.101869 -0.831050 0.546789 0.798519 -0.259494 -0.543166 0.538459 0.551425 0.637175 0.188408 -0.815797 0.546789 0.821318 -0.174374 -0.543166 0.478305 0.604344 0.637175 0.272080 -0.791830 0.546789 0.834983 -0.088169 -0.543166 0.412331 0.651146 0.637175 0.353571 -0.758953 0.546789 0.839625 -0.000171 -0.543166 0.341815 0.690775 0.637175 0.431168 -0.717716 0.546789 0.835019 0.087829 -0.543166 0.267535 0.722795 0.637175 0.504015 -0.668574 0.546789 0.821215 0.174861 -0.543166 0.191054 0.746663 0.637175 0.570698 -0.612638 0.546789 0.798625 0.259169 -0.543166 0.111746 0.762575 0.637175 0.631764 -0.549451 0.546789 0.767064 0.341443 -0.543166 0.031207 0.770087 0.637175 0.685871 -0.480212 0.546789 0.727054 0.419956 -0.543166 -0.049675 0.769116 0.637175 0.732423 -0.405683 0.546789 0.679035 0.493844 -0.543166 -0.129251 0.759804 0.637175 0.770581 -0.327456 0.546789 0.624099 0.561668 -0.543166 -0.208172 0.742073 0.637175 0.800657 -0.244890 0.546789 0.561795 0.623985 -0.543166 -0.284800 0.716168 0.637175 0.821913 -0.159627 0.546789 0.493303 0.679428 -0.543166 -0.357608 0.682733 0.637175 0.834044 -0.073439 0.546789 0.420104 0.726968 -0.543166 -0.427194 0.641493 0.637175 0.837147 0.014379 0.546789 0.341599 0.766994 -0.543166 -0.492074 0.593187 0.637175 0.831030 0.102039 0.546789 0.259331 0.798572 -0.543166 -0.551534 0.538347 0.637175 0.815758 0.188575 0.546789 0.174207 0.821354 -0.543166 -0.604442 0.478182 0.637175 0.791774 0.272242 0.546789 0.087999 0.835001 -0.543166 -0.651230 0.412198 0.637175 0.758881 0.353726 0.546789 0.000000 0.839625 -0.543166 -0.690844 0.341675 0.637175 0.717628 0.431314 0.546789 -0.087999 0.835001 -0.543166 -0.722582 0.268110 0.637175 0.668975 0.503482 0.546789 -0.174207 0.821354 -0.543166 -0.746702 0.190902 0.637175 0.612522 0.570823 0.546789 -0.259331 0.798572 -0.543166 -0.762598 0.111591 0.637175 0.549322 0.631876 0.546789 -0.341599 0.766994 -0.543166 -0.770093 0.031051 0.637175 0.480072 0.685969 0.546789 -0.420104 0.726968 -0.543166 -0.769156 -0.049063 0.637175 0.406266 0.732100 0.546789 -0.493303 0.679428 -0.543166 -0.759777 -0.129405 0.637175 0.327299 0.770647 0.546789 -0.561795 0.623985 -0.543166 -0.742030 -0.208323 0.637175 0.244727 0.800706 0.546789 -0.624099 0.561668 -0.543166 -0.716395 -0.284229 0.637175 0.160281 0.821786 0.546789 -0.679035 0.493844 -0.543166 -0.682660 -0.357747 0.637175 0.073269 0.834059 0.546789 -0.727054 0.419956 -0.543166 -0.641406 -0.427325 0.637175 -0.014549 0.837144 0.546789 -0.767064 0.341443 -0.543166 -0.593086 -0.492195 0.637175 -0.102208 0.831009 0.546789 -0.798625 0.259169 -0.543166 -0.538786 -0.551106 0.637175 -0.187925 0.815908 0.546789 -0.821215 0.174861 -0.543166 -0.478059 -0.604539 0.637175 -0.272403 0.791719 0.546789 -0.835019 0.087829 -0.543166 0.764650 0.221113 -0.605326 0.173446 -0.975248 -0.137141 -0.620667 -0.000126 -0.784074 0.737264 0.300036 -0.605326 0.274704 -0.951699 -0.137141 -0.617235 -0.065176 -0.784074 0.702133 0.374953 -0.605326 0.372018 -0.918039 -0.137141 -0.607134 -0.128901 -0.784074 0.658969 0.446476 -0.605326 0.466186 -0.873993 -0.137141 -0.590281 -0.191823 -0.784074 0.608545 0.513082 -0.605326 0.555219 -0.820319 -0.137141 -0.566925 -0.252632 -0.784074 0.551993 0.573484 -0.605326 0.637379 -0.758248 -0.137141 -0.537636 -0.310121 -0.784074 0.488848 0.628179 -0.605326 0.713338 -0.687271 -0.137141 -0.502172 -0.364761 -0.784074 0.420318 0.675954 -0.605326 0.781440 -0.608723 -0.137141 -0.461177 -0.415383 -0.784074 0.347158 0.716283 -0.605326 0.840935 -0.523470 -0.137141 -0.415102 -0.461430 -0.784074 0.270923 0.748453 -0.605326 0.890734 -0.433341 -0.137141 -0.364956 -0.502030 -0.784074 0.190988 0.772725 -0.605326 0.931246 -0.337599 -0.137141 -0.310330 -0.537515 -0.784074 0.108949 0.788486 -0.605326 0.961500 -0.238139 -0.137141 -0.252286 -0.567080 -0.784074 0.026505 0.795536 -0.605326 0.981027 -0.137036 -0.137141 -0.192052 -0.590206 -0.784074 -0.057019 0.793933 -0.605326 0.989986 -0.033463 -0.137141 -0.129137 -0.607084 -0.784074 -0.139914 0.783584 -0.605326 0.988041 0.070479 -0.137141 -0.064799 -0.617275 -0.784074 -0.220646 0.764785 -0.605326 0.975354 0.172850 -0.137141 -0.000253 -0.620667 -0.784074 -0.299586 0.737447 -0.605326 0.951866 0.274122 -0.137141 0.064799 -0.617275 -0.784074 -0.375226 0.701987 -0.605326 0.917894 0.372375 -0.137141 0.129137 -0.607084 -0.784074 -0.446733 0.658795 -0.605326 0.873811 0.466526 -0.137141 0.192052 -0.590206 -0.784074 -0.512710 0.608859 -0.605326 0.820659 0.554718 -0.137141 0.252286 -0.567080 -0.784074 -0.573699 0.551770 -0.605326 0.758000 0.637674 -0.137141 0.310330 -0.537515 -0.784074 -0.628369 0.488603 -0.605326 0.686993 0.713606 -0.137141 0.364956 -0.502030 -0.784074 -0.675697 0.420731 -0.605326 0.609200 0.781068 -0.137141 0.415102 -0.461430 -0.784074 -0.716071 0.347596 -0.605326 0.523983 0.840615 -0.137141 0.461177 -0.415383 -0.784074 -0.748558 0.270632 -0.605326 0.432995 0.890903 -0.137141 0.502172 -0.364761 -0.784074 -0.772799 0.190687 -0.605326 0.337237 0.931377 -0.137141 0.537636 -0.310121 -0.784074 -0.788420 0.109431 -0.605326 0.238726 0.961354 -0.137141 0.566925 -0.252632 -0.784074 -0.795547 0.026196 -0.605326 0.136655 0.981080 -0.137141 0.590281 -0.191823 -0.784074 -0.793911 -0.057327 -0.605326 0.033078 0.989999 -0.137141 0.607134 -0.128901 -0.784074 -0.783670 -0.139436 -0.605326 -0.069875 0.988084 -0.137141 0.617235 -0.065176 -0.784074 -0.764740 -0.220802 -0.605326 -0.173049 0.975319 -0.137141 0.620667 -0.000126 -0.784074 -0.737386 -0.299736 -0.605326 -0.274316 0.951810 -0.137141 0.617262 0.064925 -0.784074 -0.701911 -0.375369 -0.605326 -0.372562 0.917818 -0.137141 0.607058 0.129261 -0.784074 -0.659150 -0.446208 -0.605326 -0.465830 0.874182 -0.137141 0.590359 0.191582 -0.784074 -0.608754 -0.512834 -0.605326 -0.554885 0.820546 -0.137141 0.567028 0.252401 -0.784074 -0.551653 -0.573811 -0.605326 -0.637828 0.757871 -0.137141 0.537452 0.310440 -0.784074 -0.488475 -0.628468 -0.605326 -0.713745 0.686848 -0.137141 0.501956 0.365059 -0.784074 -0.420593 -0.675783 -0.605326 -0.781192 0.609041 -0.137141 0.461346 0.415195 -0.784074 -0.347450 -0.716142 -0.605326 -0.840722 0.523812 -0.137141 0.415289 0.461261 -0.784074 -0.270479 -0.748613 -0.605326 -0.890991 0.432813 -0.137141 0.364659 0.502246 -0.784074 -0.191302 -0.772647 -0.605326 -0.931108 0.337979 -0.137141 0.310549 0.537389 -0.784074 -0.109270 -0.788442 -0.605326 -0.961403 0.238531 -0.137141 0.252517 0.566977 -0.784074 -0.026034 -0.795552 -0.605326 -0.981108 0.136455 -0.137141 0.191703 0.590320 -0.784074 0.057489 -0.793899 -0.605326 -0.990006 0.032876 -0.137141 0.128777 0.607160 -0.784074 0.139595 -0.783641 -0.605326 -0.988070 -0.070076 -0.137141 0.065050 0.617248 -0.784074 0.220958 -0.764695 -0.605326 -0.975283 -0.173247 -0.137141 0.000000 0.620667 -0.784074 0.299886 -0.737325 -0.605326 -0.951755 -0.274510 -0.137141 -0.065050 0.617248 -0.784074 0.374810 -0.702210 -0.605326 -0.918114 -0.371831 -0.137141 -0.128777 0.607160 -0.784074 0.446342 -0.659059 -0.605326 -0.874088 -0.466008 -0.137141 -0.191703 0.590320 -0.784074 0.512958 -0.608650 -0.605326 -0.820433 -0.555052 -0.137141 -0.252517 0.566977 -0.784074 0.573924 -0.551536 -0.605326 -0.757741 -0.637982 -0.137141 -0.310549 0.537389 -0.784074 0.628079 -0.488976 -0.605326 -0.687416 -0.713198 -0.137141 -0.364659 0.502246 -0.784074 0.675868 -0.420455 -0.605326 -0.608882 -0.781316 -0.137141 -0.415289 0.461261 -0.784074 0.716213 -0.347304 -0.605326 -0.523641 -0.840829 -0.137141 -0.461346 0.415195 -0.784074 0.748397 -0.271075 -0.605326 -0.433523 -0.890646 -0.137141 -0.501956 0.365059 -0.784074 0.772686 -0.191145 -0.605326 -0.337789 -0.931177 -0.137141 -0.537452 0.310440 -0.784074 0.788464 -0.109109 -0.605326 -0.238335 -0.961451 -0.137141 -0.567028 0.252401 -0.784074 0.795557 -0.025872 -0.605326 -0.136255 -0.981135 -0.137141 -0.590359 0.191582 -0.784074 0.793944 0.056857 -0.605326 -0.033665 -0.989979 -0.137141 -0.607058 0.129261 -0.784074 0.783613 0.139755 -0.605326 0.070278 -0.988055 -0.137141 -0.617262 0.064925 -0.784074 -0.172404 -0.729954 0.661395 -0.184402 0.683496 0.706278 -0.967612 -0.000197 -0.252442 -0.094950 -0.744003 0.661395 -0.255021 0.660405 0.706278 -0.962262 -0.101609 -0.252442 -0.017200 -0.749840 0.661395 -0.322202 0.630362 0.706278 -0.946515 -0.200955 -0.252442 0.061483 -0.747513 0.661395 -0.386494 0.593122 0.706278 -0.920240 -0.299049 -0.252442 0.139489 -0.736953 0.661395 -0.446529 0.549348 0.706278 -0.883830 -0.393850 -0.252442 0.215241 -0.718490 0.661395 -0.501145 0.500024 0.706278 -0.838168 -0.483475 -0.252442 0.289358 -0.691974 0.661395 -0.550791 0.444747 0.706278 -0.782880 -0.568658 -0.252442 0.360288 -0.657836 0.661395 -0.594371 0.384570 0.706278 -0.718969 -0.647578 -0.252442 0.427250 -0.616453 0.661395 -0.631403 0.320158 0.706278 -0.647138 -0.719364 -0.252442 0.488937 -0.568768 0.661395 -0.661228 0.252881 0.706278 -0.568963 -0.782659 -0.252442 0.545855 -0.514391 0.661395 -0.684090 0.182186 0.706278 -0.483801 -0.837979 -0.252442 0.596761 -0.454349 0.661395 -0.699417 0.109486 0.706278 -0.393310 -0.884070 -0.252442 0.640704 -0.389943 0.661395 -0.707004 0.036286 0.706278 -0.299407 -0.920124 -0.252442 0.678044 -0.320645 0.661395 -0.706913 -0.038013 0.706278 -0.201323 -0.946436 -0.252442 0.707915 -0.247815 0.661395 -0.699036 -0.111893 0.706278 -0.101021 -0.962324 -0.252442 0.729849 -0.172850 0.661395 -0.683609 -0.183984 0.706278 -0.000394 -0.967612 -0.252442 0.743945 -0.095405 0.661395 -0.660561 -0.254618 0.706278 0.101021 -0.962324 -0.252442 0.749847 -0.016909 0.661395 -0.630237 -0.322447 0.706278 0.201323 -0.946436 -0.252442 0.747489 0.061774 0.661395 -0.592971 -0.386725 0.706278 0.299407 -0.920124 -0.252442 0.737038 0.139039 0.661395 -0.549620 -0.446193 0.706278 0.393310 -0.884070 -0.252442 0.718406 0.215520 0.661395 -0.499829 -0.501340 0.706278 0.483801 -0.837979 -0.252442 0.691862 0.289627 0.661395 -0.444532 -0.550964 0.706278 0.568963 -0.782659 -0.252442 0.658056 0.359886 0.661395 -0.384933 -0.594136 0.706278 0.647138 -0.719364 -0.252442 0.616714 0.426873 0.661395 -0.320544 -0.631207 0.706278 0.718969 -0.647578 -0.252442 0.568578 0.489158 0.661395 -0.252623 -0.661326 0.706278 0.782880 -0.568658 -0.252442 0.514179 0.546055 0.661395 -0.181920 -0.684161 0.706278 0.838168 -0.483475 -0.252442 0.454713 0.596483 0.661395 -0.109913 -0.699350 0.706278 0.883830 -0.393850 -0.252442 0.389693 0.640855 0.661395 -0.036011 -0.707018 0.706278 0.920240 -0.299049 -0.252442 0.320381 0.678168 0.661395 0.038288 -0.706898 0.706278 0.946515 -0.200955 -0.252442 0.248247 0.707764 0.661395 0.111466 -0.699104 0.706278 0.962262 -0.101609 -0.252442 0.172702 0.729884 0.661395 0.184123 -0.683571 0.706278 0.967612 -0.000197 -0.252442 0.095253 0.743965 0.661395 0.254752 -0.660509 0.706278 0.962303 0.101217 -0.252442 0.016756 0.749850 0.661395 0.322576 -0.630171 0.706278 0.946395 0.201516 -0.252442 -0.061179 0.747538 0.661395 0.386252 -0.593279 0.706278 0.920362 0.298675 -0.252442 -0.139189 0.737009 0.661395 0.446305 -0.549529 0.706278 0.883990 0.393490 -0.252442 -0.215666 0.718362 0.661395 0.501442 -0.499727 0.706278 0.837881 0.483971 -0.252442 -0.289768 0.691803 0.661395 0.551055 -0.444420 0.706278 0.782543 0.569122 -0.252442 -0.360020 0.657983 0.661395 0.594214 -0.384812 0.706278 0.719232 0.647285 -0.252442 -0.426999 0.616627 0.661395 0.631272 -0.320415 0.706278 0.647431 0.719101 -0.252442 -0.489274 0.568478 0.661395 0.661378 -0.252489 0.706278 0.568499 0.782996 -0.252442 -0.545646 0.514614 0.661395 0.684016 -0.182465 0.706278 0.484142 0.837782 -0.252442 -0.596576 0.454592 0.661395 0.699372 -0.109770 0.706278 0.393670 0.883910 -0.252442 -0.640935 0.389563 0.661395 0.707025 -0.035867 0.706278 0.298862 0.920301 -0.252442 -0.678234 0.320243 0.661395 0.706890 0.038432 0.706278 0.200762 0.946556 -0.252442 -0.707814 0.248103 0.661395 0.699081 0.111609 0.706278 0.101413 0.962283 -0.252442 -0.729919 0.172553 0.661395 0.683534 0.184263 0.706278 0.000000 0.967612 -0.252442 -0.743984 0.095102 0.661395 0.660457 0.254887 0.706278 -0.101413 0.962283 -0.252442 -0.749837 0.017353 0.661395 0.630428 0.322074 0.706278 -0.200762 0.946556 -0.252442 -0.747526 -0.061331 0.661395 0.593200 0.386373 0.706278 -0.298862 0.920301 -0.252442 -0.736981 -0.139339 0.661395 0.549439 0.446417 0.706278 -0.393670 0.883910 -0.252442 -0.718318 -0.215813 0.661395 0.499625 0.501543 0.706278 -0.484142 0.837782 -0.252442 -0.692033 -0.289217 0.661395 0.444859 0.550701 0.706278 -0.568499 0.782996 -0.252442 -0.657910 -0.360154 0.661395 0.384691 0.594292 0.706278 -0.647431 0.719101 -0.252442 -0.616540 -0.427124 0.661395 0.320287 0.631338 0.706278 -0.719232 0.647285 -0.252442 -0.568868 -0.488821 0.661395 0.253015 0.661176 0.706278 -0.782543 0.569122 -0.252442 -0.514503 -0.545750 0.661395 0.182326 0.684053 0.706278 -0.837881 0.483971 -0.252442 -0.454470 -0.596668 0.661395 0.109628 0.699394 0.706278 -0.883990 0.393490 -0.252442 -0.389432 -0.641014 0.661395 0.035723 0.707032 0.706278 -0.920362 0.298675 -0.252442 -0.320783 -0.677978 0.661395 -0.037869 0.706921 0.706278 -0.946395 0.201516 -0.252442 -0.247959 -0.707865 0.661395 -0.111751 0.699058 0.706278 -0.962303 0.101217 -0.252442 0.388413 -0.545604 0.742598 0.252683 0.838043 0.483564 -0.886164 -0.000180 0.463372 0.443457 -0.501890 0.742598 0.163459 0.859911 0.483564 -0.881265 -0.093056 0.463372 0.493163 -0.453142 0.742598 0.073306 0.872234 0.483564 -0.866843 -0.184039 0.463372 0.537940 -0.398959 0.742598 -0.018514 0.875113 0.483564 -0.842780 -0.273877 0.463372 0.576791 -0.340382 0.742598 -0.110130 0.868353 0.483564 -0.809434 -0.360698 0.463372 0.609011 -0.278665 0.742598 -0.199681 0.852228 0.483564 -0.767615 -0.442779 0.463372 0.634862 -0.213302 0.742598 -0.287901 0.826607 0.483564 -0.716982 -0.520792 0.463372 0.653722 -0.145589 0.742598 -0.372950 0.791880 0.483564 -0.658450 -0.593068 0.463372 0.665380 -0.076272 0.742598 -0.453890 0.748431 0.483564 -0.592666 -0.658812 0.463372 0.669703 -0.006785 0.742598 -0.529135 0.697267 0.483564 -0.521071 -0.716779 0.463372 0.666726 0.063442 0.742598 -0.599299 0.637970 0.483564 -0.443077 -0.767443 0.463372 0.656404 0.132970 0.742598 -0.662862 0.571646 0.483564 -0.360203 -0.809654 0.463372 0.639054 0.200395 0.742598 -0.718625 0.499744 0.483564 -0.274205 -0.842673 0.463372 0.614532 0.266268 0.742598 -0.767044 0.421674 0.483564 -0.184377 -0.866771 0.463372 0.583240 0.329209 0.742598 -0.807014 0.338960 0.483564 -0.092517 -0.881321 0.463372 0.545841 0.388079 0.742598 -0.837889 0.253195 0.483564 -0.000361 -0.886164 0.463372 0.502161 0.443150 0.742598 -0.859811 0.163984 0.483564 0.092517 -0.881321 0.463372 0.452950 0.493340 0.742598 -0.872262 0.072967 0.483564 0.184377 -0.866771 0.463372 0.398750 0.538095 0.742598 -0.875106 -0.018855 0.483564 0.274205 -0.842673 0.463372 0.340735 0.576583 0.742598 -0.868420 -0.109600 0.483564 0.360203 -0.809654 0.463372 0.278428 0.609119 0.742598 -0.852150 -0.200013 0.483564 0.443077 -0.767443 0.463372 0.213055 0.634945 0.742598 -0.826495 -0.288223 0.483564 0.521071 -0.716779 0.463372 0.145988 0.653633 0.742598 -0.792108 -0.372466 0.483564 0.592666 -0.658812 0.463372 0.076679 0.665333 0.742598 -0.748708 -0.453433 0.483564 0.658450 -0.593068 0.463372 0.006525 0.669705 0.742598 -0.697062 -0.529406 0.483564 0.716982 -0.520792 0.463372 -0.063701 0.666701 0.742598 -0.637737 -0.599547 0.483564 0.767615 -0.442779 0.463372 -0.132569 0.656486 0.742598 -0.572051 -0.662513 0.483564 0.809434 -0.360698 0.463372 -0.200643 0.638976 0.742598 -0.499464 -0.718819 0.483564 0.842780 -0.273877 0.463372 -0.266508 0.614428 0.742598 -0.421376 -0.767208 0.483564 0.866843 -0.184039 0.463372 -0.328853 0.583441 0.742598 -0.339453 -0.806807 0.483564 0.881265 -0.093056 0.463372 -0.388191 0.545762 0.742598 -0.253025 -0.837940 0.483564 0.886164 -0.000180 0.463372 -0.443252 0.502071 0.742598 -0.163809 -0.859844 0.483564 0.881302 0.092697 0.463372 -0.493432 0.452850 0.742598 -0.072789 -0.872277 0.483564 0.866733 0.184553 0.463372 -0.537777 0.399179 0.742598 0.018158 -0.875120 0.483564 0.842891 0.273534 0.463372 -0.576652 0.340617 0.742598 0.109777 -0.868398 0.483564 0.809581 0.360368 0.463372 -0.609176 0.278304 0.742598 0.200186 -0.852110 0.483564 0.767353 0.443234 0.463372 -0.634989 0.212925 0.742598 0.288391 -0.826436 0.483564 0.716673 0.521217 0.463372 -0.653662 0.145855 0.742598 0.372627 -0.792032 0.483564 0.658692 0.592800 0.463372 -0.665349 0.076543 0.742598 0.453586 -0.748616 0.483564 0.592934 0.658571 0.463372 -0.669707 0.006388 0.742598 0.529548 -0.696954 0.483564 0.520646 0.717088 0.463372 -0.666751 -0.063170 0.742598 0.599039 -0.638214 0.483564 0.443390 0.767263 0.463372 -0.656459 -0.132703 0.742598 0.662629 -0.571916 0.483564 0.360533 0.809507 0.463372 -0.638935 -0.200773 0.742598 0.718921 -0.499318 0.483564 0.273706 0.842836 0.463372 -0.614374 -0.266633 0.742598 0.767294 -0.421220 0.483564 0.183863 0.866880 0.463372 -0.583374 -0.328972 0.742598 0.806876 -0.339289 0.483564 0.092876 0.881283 0.463372 -0.545683 -0.388302 0.742598 0.837992 -0.252854 0.483564 0.000000 0.886164 0.463372 -0.501981 -0.443355 0.742598 0.859878 -0.163634 0.483564 -0.092876 0.881283 0.463372 -0.453243 -0.493071 0.742598 0.872219 -0.073484 0.483564 -0.183863 0.866880 0.463372 -0.399069 -0.537859 0.742598 0.875117 0.018336 0.483564 -0.273706 0.842836 0.463372 -0.340500 -0.576722 0.742598 0.868375 0.109953 0.483564 -0.360533 0.809507 0.463372 -0.278180 -0.609232 0.742598 0.852069 0.200360 0.483564 -0.443390 0.767263 0.463372 -0.213431 -0.634819 0.742598 0.826665 0.287733 0.483564 -0.520646 0.717088 0.463372 -0.145722 -0.653692 0.742598 0.791956 0.372789 0.483564 -0.592934 0.658571 0.463372 -0.076408 -0.665364 0.742598 0.748523 0.453738 0.483564 -0.658692 0.592800 0.463372 -0.006922 -0.669701 0.742598 0.697375 0.528993 0.483564 -0.716673 0.521217 0.463372 0.063306 -0.666739 0.742598 0.638092 0.599169 0.483564 -0.767353 0.443234 0.463372 0.132836 -0.656432 0.742598 0.571781 0.662746 0.483564 -0.809581 0.360368 0.463372 0.200904 -0.638894 0.742598 0.499171 0.719023 0.483564 -0.842891 0.273534 0.463372 0.266143 -0.614586 0.742598 0.421831 0.766958 0.483564 -0.866733 0.184553 0.463372 0.329091 -0.583307 0.742598 0.339125 0.806945 0.483564 -0.881302 0.092697 0.463372 0.022914 0.996964 -0.074413 0.295784 -0.077861 -0.952076 -0.954980 -0.000194 -0.296670 -0.081701 0.993875 -0.074413 0.302315 -0.046432 -0.952076 -0.949700 -0.100282 -0.296670 -0.184437 0.980023 -0.074413 0.305502 -0.014797 -0.952076 -0.934158 -0.198331 -0.296670 -0.286134 0.955296 -0.074413 0.305370 0.017304 -0.952076 -0.908227 -0.295145 -0.296670 -0.384680 0.920045 -0.074413 0.301875 0.049213 -0.952076 -0.872292 -0.388709 -0.296670 -0.478114 0.875140 -0.074413 0.295135 0.080286 -0.952076 -0.827226 -0.477163 -0.296670 -0.567202 0.820210 -0.074413 0.285095 0.110776 -0.952076 -0.772660 -0.561234 -0.296670 -0.650042 0.756246 -0.074413 0.271915 0.140046 -0.952076 -0.709583 -0.639124 -0.296670 -0.725722 0.683952 -0.074413 0.255739 0.167773 -0.952076 -0.638690 -0.709973 -0.296670 -0.792804 0.604917 -0.074413 0.236940 0.193416 -0.952076 -0.561535 -0.772441 -0.296670 -0.851837 0.518494 -0.074413 0.215364 0.217183 -0.952076 -0.477485 -0.827040 -0.296670 -0.901488 0.426360 -0.074413 0.191416 0.238559 -0.952076 -0.388176 -0.872529 -0.296670 -0.940878 0.330471 -0.074413 0.165616 0.257141 -0.952076 -0.295499 -0.908112 -0.296670 -0.970332 0.230040 -0.074413 0.137754 0.273083 -0.952076 -0.198695 -0.934081 -0.296670 -0.989098 0.127075 -0.074413 0.108374 0.286016 -0.952076 -0.099702 -0.949761 -0.296670 -0.996950 0.023523 -0.074413 0.078041 0.295736 -0.952076 -0.000389 -0.954980 -0.296670 -0.993925 -0.081094 -0.074413 0.046616 0.302287 -0.952076 0.099702 -0.949761 -0.296670 -0.979952 -0.184818 -0.074413 0.014678 0.305508 -0.952076 0.198695 -0.934081 -0.296670 -0.955184 -0.286506 -0.074413 -0.017422 0.305363 -0.952076 0.295499 -0.908112 -0.296670 -0.920280 -0.384118 -0.074413 -0.049029 0.301905 -0.952076 0.388176 -0.872529 -0.296670 -0.874954 -0.478455 -0.074413 -0.080401 0.295103 -0.952076 0.477485 -0.827040 -0.296670 -0.819989 -0.567521 -0.074413 -0.110887 0.285052 -0.952076 0.561535 -0.772441 -0.296670 -0.756643 -0.649580 -0.074413 -0.139880 0.272000 -0.952076 0.638690 -0.709973 -0.296670 -0.684395 -0.725304 -0.074413 -0.167617 0.255842 -0.952076 0.709583 -0.639124 -0.296670 -0.604609 -0.793039 -0.074413 -0.193508 0.236865 -0.952076 0.772660 -0.561234 -0.296670 -0.518163 -0.852039 -0.074413 -0.217267 0.215280 -0.952076 0.827226 -0.477163 -0.296670 -0.426911 -0.901227 -0.074413 -0.238442 0.191561 -0.952076 0.872292 -0.388709 -0.296670 -0.330105 -0.941007 -0.074413 -0.257206 0.165516 -0.952076 0.908227 -0.295145 -0.296670 -0.229662 -0.970422 -0.074413 -0.273136 0.137647 -0.952076 0.934158 -0.198331 -0.296670 -0.127679 -0.989020 -0.074413 -0.285950 0.108549 -0.952076 0.949700 -0.100282 -0.296670 -0.023320 -0.996955 -0.074413 -0.295752 0.077981 -0.952076 0.954980 -0.000194 -0.296670 0.081297 -0.993908 -0.074413 -0.302296 0.046555 -0.952076 0.949741 0.099895 -0.296670 0.185018 -0.979914 -0.074413 -0.305511 0.014616 -0.952076 0.934041 0.198885 -0.296670 0.285745 -0.955412 -0.074413 -0.305377 -0.017179 -0.952076 0.908347 0.294775 -0.296670 0.384306 -0.920202 -0.074413 -0.301895 -0.049090 -0.952076 0.872450 0.388353 -0.296670 0.478633 -0.874856 -0.074413 -0.295087 -0.080461 -0.952076 0.826943 0.477653 -0.296670 0.567688 -0.819874 -0.074413 -0.285029 -0.110945 -0.952076 0.772327 0.561692 -0.296670 0.649734 -0.756511 -0.074413 -0.271972 -0.139935 -0.952076 0.709843 0.638835 -0.296670 0.725443 -0.684247 -0.074413 -0.255807 -0.167669 -0.952076 0.638979 0.709713 -0.296670 0.793162 -0.604447 -0.074413 -0.236826 -0.193556 -0.952076 0.561077 0.772774 -0.296670 0.851626 -0.518841 -0.074413 -0.215453 -0.217096 -0.952076 0.477822 0.826845 -0.296670 0.901314 -0.426727 -0.074413 -0.191513 -0.238481 -0.952076 0.388531 0.872371 -0.296670 0.941074 -0.329913 -0.074413 -0.165464 -0.257239 -0.952076 0.294960 0.908287 -0.296670 0.970468 -0.229465 -0.074413 -0.137592 -0.273164 -0.952076 0.198141 0.934199 -0.296670 0.989046 -0.127478 -0.074413 -0.108490 -0.285972 -0.952076 0.100089 0.949721 -0.296670 0.996960 -0.023117 -0.074413 -0.077921 -0.295768 -0.952076 0.000000 0.954980 -0.296670 0.993892 0.081499 -0.074413 -0.046493 -0.302306 -0.952076 -0.100089 0.949721 -0.296670 0.980061 0.184237 -0.074413 -0.014859 -0.305499 -0.952076 -0.198141 0.934199 -0.296670 0.955354 0.285940 -0.074413 0.017241 -0.305374 -0.952076 -0.294960 0.908287 -0.296670 0.920124 0.384493 -0.074413 0.049152 -0.301885 -0.952076 -0.388531 0.872371 -0.296670 0.874759 0.478811 -0.074413 0.080521 -0.295071 -0.952076 -0.477822 0.826845 -0.296670 0.820326 0.567035 -0.074413 0.110718 -0.285117 -0.952076 -0.561077 0.772774 -0.296670 0.756378 0.649888 -0.074413 0.139990 -0.271943 -0.952076 -0.638979 0.709713 -0.296670 0.684100 0.725583 -0.074413 0.167721 -0.255773 -0.952076 -0.709843 0.638835 -0.296670 0.605079 0.792680 -0.074413 0.193367 -0.236980 -0.952076 -0.772327 0.561692 -0.296670 0.518668 0.851731 -0.074413 0.217139 -0.215408 -0.952076 -0.826943 0.477653 -0.296670 0.426544 0.901401 -0.074413 0.238520 -0.191464 -0.952076 -0.872450 0.388353 -0.296670 0.329721 0.941141 -0.074413 0.257273 -0.165411 -0.952076 -0.908347 0.294775 -0.296670 0.230237 0.970285 -0.074413 0.273055 -0.137809 -0.952076 -0.934041 0.198885 -0.296670 0.127277 0.989072 -0.074413 0.285994 -0.108432 -0.952076 -0.949741 0.099895 -0.296670 -0.070540 0.996626 -0.041971 -0.855833 -0.082082 -0.510698 -0.512420 -0.000104 0.858735 -0.174605 0.983744 -0.041971 -0.842517 -0.171328 -0.510698 -0.509586 -0.053809 0.858735 -0.275787 0.960302 -0.041971 -0.820179 -0.257866 -0.510698 -0.501247 -0.106420 0.858735 -0.374915 0.926109 -0.041971 -0.788635 -0.342406 -0.510698 -0.487333 -0.158368 0.858735 -0.469913 0.881715 -0.041971 -0.748405 -0.423175 -0.510698 -0.468051 -0.208572 0.858735 -0.558907 0.828168 -0.041971 -0.700431 -0.498583 -0.510698 -0.443870 -0.256034 0.858735 -0.642626 0.765029 -0.041971 -0.644318 -0.569247 -0.510698 -0.414591 -0.301145 0.858735 -0.719268 0.693464 -0.041971 -0.581108 -0.633641 -0.510698 -0.380745 -0.342939 0.858735 -0.787986 0.614260 -0.041971 -0.511498 -0.691056 -0.510698 -0.342706 -0.380955 0.858735 -0.847497 0.529138 -0.041971 -0.436994 -0.740422 -0.510698 -0.301306 -0.414474 0.858735 -0.898287 0.437400 -0.041971 -0.356986 -0.782144 -0.510698 -0.256207 -0.443770 0.858735 -0.939182 0.340845 -0.041971 -0.273045 -0.815251 -0.510698 -0.208286 -0.468178 0.858735 -0.969492 0.241504 -0.041971 -0.186937 -0.839192 -0.510698 -0.158558 -0.487271 0.858735 -0.989464 0.138564 -0.041971 -0.097954 -0.854162 -0.510698 -0.106615 -0.501206 0.858735 -0.998537 0.034098 -0.041971 -0.007892 -0.859724 -0.510698 -0.053498 -0.509619 0.858735 -0.996668 -0.069931 -0.041971 0.081560 -0.855883 -0.510698 -0.000209 -0.512420 0.858735 -0.983850 -0.174004 -0.041971 0.170813 -0.842621 -0.510698 0.053498 -0.509619 0.858735 -0.960195 -0.276161 -0.041971 0.258185 -0.820078 -0.510698 0.106615 -0.501206 0.858735 -0.925963 -0.375275 -0.041971 0.342713 -0.788502 -0.510698 0.158558 -0.487271 0.858735 -0.882002 -0.469374 -0.041971 0.422718 -0.748664 -0.510698 0.208286 -0.468178 0.858735 -0.827950 -0.559229 -0.041971 0.498855 -0.700237 -0.510698 0.256207 -0.443770 0.858735 -0.764779 -0.642924 -0.041971 0.569498 -0.644097 -0.510698 0.301306 -0.414474 0.858735 -0.693903 -0.718844 -0.041971 0.633286 -0.581495 -0.510698 0.342706 -0.380955 0.858735 -0.614742 -0.787611 -0.041971 0.690743 -0.511920 -0.510698 0.380745 -0.342939 0.858735 -0.528809 -0.847703 -0.041971 0.740592 -0.436706 -0.510698 0.414591 -0.301145 0.858735 -0.437051 -0.898457 -0.041971 0.782283 -0.356681 -0.510698 0.443870 -0.256034 0.858735 -0.341418 -0.938974 -0.041971 0.815084 -0.273543 -0.510698 0.468051 -0.208572 0.858735 -0.241127 -0.969586 -0.041971 0.839264 -0.186610 -0.510698 0.487333 -0.158368 0.858735 -0.138179 -0.989518 -0.041971 0.854200 -0.097621 -0.510698 0.501247 -0.106420 0.858735 -0.034708 -0.998516 -0.041971 0.859719 -0.008417 -0.510698 0.509586 -0.053809 0.858735 0.070134 -0.996654 -0.041971 0.855866 0.081734 -0.510698 0.512420 -0.000104 0.858735 0.174205 -0.983815 -0.041971 0.842587 0.170985 -0.510698 0.509608 0.053601 0.858735 0.276356 -0.960138 -0.041971 0.820026 0.258352 -0.510698 0.501184 0.106717 0.858735 0.374537 -0.926261 -0.041971 0.788775 0.342085 -0.510698 0.487397 0.158169 0.858735 0.469554 -0.881906 -0.041971 0.748578 0.422870 -0.510698 0.468136 0.208381 0.858735 0.559397 -0.827836 -0.041971 0.700135 0.498998 -0.510698 0.443718 0.256297 0.858735 0.643080 -0.764648 -0.041971 0.643981 0.569629 -0.510698 0.414412 0.301391 0.858735 0.718985 -0.693757 -0.041971 0.581366 0.633404 -0.510698 0.380885 0.342783 0.858735 0.787736 -0.614581 -0.041971 0.511779 0.690847 -0.510698 0.342861 0.380815 0.858735 0.847810 -0.528636 -0.041971 0.436555 0.740681 -0.510698 0.301061 0.414652 0.858735 0.898109 -0.437766 -0.041971 0.357304 0.781998 -0.510698 0.256388 0.443666 0.858735 0.939043 -0.341227 -0.041971 0.273377 0.815140 -0.510698 0.208476 0.468093 0.858735 0.969635 -0.240929 -0.041971 0.186439 0.839302 -0.510698 0.158269 0.487365 0.858735 0.989546 -0.137978 -0.041971 0.097448 0.854220 -0.510698 0.106318 0.501269 0.858735 0.998523 -0.034505 -0.041971 0.008242 0.859721 -0.510698 0.053705 0.509597 0.858735 0.996640 0.070337 -0.041971 -0.081908 0.855850 -0.510698 0.000000 0.512420 0.858735 0.983779 0.174405 -0.041971 -0.171156 0.842552 -0.510698 -0.053705 0.509597 0.858735 0.960358 0.275591 -0.041971 -0.257699 0.820231 -0.510698 -0.106318 0.501269 0.858735 0.926185 0.374726 -0.041971 -0.342246 0.788705 -0.510698 -0.158269 0.487365 0.858735 0.881810 0.469733 -0.041971 -0.423023 0.748491 -0.510698 -0.208476 0.468093 0.858735 0.827722 0.559566 -0.041971 -0.499140 0.700033 -0.510698 -0.256388 0.443666 0.858735 0.765160 0.642471 -0.041971 -0.569116 0.644434 -0.510698 -0.301061 0.414652 0.858735 0.693610 0.719127 -0.041971 -0.633523 0.581237 -0.510698 -0.342861 0.380815 0.858735 0.614421 0.787861 -0.041971 -0.690951 0.511639 -0.510698 -0.380885 0.342783 0.858735 0.529311 0.847389 -0.041971 -0.740333 0.437145 -0.510698 -0.414412 0.301391 0.858735 0.437583 0.898198 -0.041971 -0.782071 0.357145 -0.510698 -0.443718 0.256297 0.858735 0.341036 0.939113 -0.041971 -0.815195 0.273211 -0.510698 -0.468136 0.208381 0.858735 0.240732 0.969684 -0.041971 -0.839340 0.186268 -0.510698 -0.487397 0.158169 0.858735 0.138766 0.989435 -0.041971 -0.854142 0.098128 -0.510698 -0.501184 0.106717 0.858735 0.034302 0.998530 -0.041971 -0.859722 0.008067 -0.510698 -0.509608 0.053601 0.858735 -0.883472 0.437302 -0.168061 -0.429590 -0.899315 -0.081763 -0.186895 -0.000038 0.982380 -0.924439 0.342299 -0.168061 -0.332970 -0.939386 -0.081763 -0.185861 -0.019626 0.982380 -0.954979 0.244481 -0.168061 -0.233650 -0.968877 -0.081763 -0.182820 -0.038814 0.982380 -0.975343 0.143046 -0.168061 -0.130818 -0.988029 -0.081763 -0.177745 -0.057761 0.982380 -0.984963 0.040035 -0.168061 -0.026545 -0.996298 -0.081763 -0.170712 -0.076072 0.982380 -0.983798 -0.062433 -0.168061 0.077027 -0.993671 -0.081763 -0.161892 -0.093383 0.982380 -0.971836 -0.165198 -0.168061 0.180746 -0.980125 -0.081763 -0.151213 -0.109836 0.982380 -0.949170 -0.266143 -0.168061 0.282475 -0.955784 -0.081763 -0.138869 -0.125080 0.982380 -0.916049 -0.364157 -0.168061 0.381092 -0.920915 -0.081763 -0.124995 -0.138945 0.982380 -0.873295 -0.457287 -0.168061 0.474636 -0.876377 -0.081763 -0.109895 -0.151171 0.982380 -0.820558 -0.546296 -0.168061 0.563872 -0.821805 -0.081763 -0.093446 -0.161856 0.982380 -0.758783 -0.629288 -0.168061 0.646898 -0.758181 -0.081763 -0.075968 -0.170758 0.982380 -0.689356 -0.704659 -0.168061 0.722111 -0.686928 -0.081763 -0.057831 -0.177722 0.982380 -0.611706 -0.773028 -0.168061 0.790129 -0.607463 -0.081763 -0.038886 -0.182804 0.982380 -0.527318 -0.832881 -0.168061 0.849444 -0.521306 -0.081763 -0.019512 -0.185873 0.982380 -0.437842 -0.883205 -0.168061 0.899052 -0.430140 -0.081763 -0.000076 -0.186894 0.982380 -0.342864 -0.924229 -0.168061 0.939182 -0.333543 -0.081763 0.019512 -0.185873 0.982380 -0.244110 -0.955074 -0.168061 0.968968 -0.233273 -0.081763 0.038886 -0.182804 0.982380 -0.142667 -0.975398 -0.168061 0.988080 -0.130434 -0.081763 0.057831 -0.177722 0.982380 -0.040637 -0.984939 -0.168061 0.996282 -0.027154 -0.081763 0.075968 -0.170758 0.982380 0.062815 -0.983773 -0.168061 0.993641 0.077413 -0.081763 0.093446 -0.161856 0.982380 0.165576 -0.971772 -0.168061 0.980055 0.181127 -0.081763 0.109895 -0.151171 0.982380 0.265563 -0.949332 -0.168061 0.955956 0.281891 -0.081763 0.124995 -0.138945 0.982380 0.363598 -0.916271 -0.168061 0.921147 0.380529 -0.081763 0.138869 -0.125080 0.982380 0.457627 -0.873117 -0.168061 0.876192 0.474976 -0.081763 0.151213 -0.109836 0.982380 0.546615 -0.820346 -0.168061 0.821585 0.564192 -0.081763 0.161892 -0.093383 0.982380 0.628824 -0.759168 -0.168061 0.758576 0.646434 -0.081763 0.170712 -0.076072 0.982380 0.704927 -0.689081 -0.168061 0.686647 0.722378 -0.081763 0.177745 -0.057761 0.982380 0.773266 -0.611405 -0.168061 0.607155 0.790365 -0.081763 0.182820 -0.038814 0.982380 0.832559 -0.527827 -0.168061 0.521825 0.849125 -0.081763 0.185861 -0.019626 0.982380 0.883294 -0.437662 -0.168061 0.429956 0.899140 -0.081763 0.186895 -0.000038 0.982380 0.924299 -0.342676 -0.168061 0.333352 0.939250 -0.081763 0.185869 0.019550 0.982380 0.955124 -0.243915 -0.168061 0.233076 0.969015 -0.081763 0.182797 0.038923 0.982380 0.975284 -0.143443 -0.168061 0.131221 0.987976 -0.081763 0.177768 0.057689 0.982380 0.984947 -0.040437 -0.168061 0.026951 0.996287 -0.081763 0.170743 0.076003 0.982380 0.983760 0.063015 -0.168061 -0.077615 0.993625 -0.081763 0.161837 0.093479 0.982380 0.971738 0.165774 -0.168061 -0.181327 0.980018 -0.081763 0.151148 0.109926 0.982380 0.949278 0.265757 -0.168061 -0.282085 0.955899 -0.081763 0.138920 0.125023 0.982380 0.916197 0.363784 -0.168061 -0.380717 0.921070 -0.081763 0.125052 0.138894 0.982380 0.873024 0.457805 -0.168061 -0.475155 0.876095 -0.081763 0.109806 0.151236 0.982380 0.820781 0.545962 -0.168061 -0.563537 0.822034 -0.081763 0.093512 0.161818 0.982380 0.759040 0.628979 -0.168061 -0.646589 0.758444 -0.081763 0.076037 0.170727 0.982380 0.688938 0.705068 -0.168061 -0.722518 0.686500 -0.081763 0.057725 0.177756 0.982380 0.611247 0.773390 -0.168061 -0.790489 0.606994 -0.081763 0.038777 0.182827 0.982380 0.527657 0.832667 -0.168061 -0.849232 0.521652 -0.081763 0.019588 0.185865 0.982380 0.437482 0.883383 -0.168061 -0.899227 0.429773 -0.081763 0.000000 0.186895 0.982380 0.342487 0.924369 -0.168061 -0.939318 0.333161 -0.081763 -0.019588 0.185865 0.982380 0.244676 0.954929 -0.168061 -0.968829 0.233848 -0.081763 -0.038777 0.182827 0.982380 0.143245 0.975314 -0.168061 -0.988002 0.131020 -0.081763 -0.057725 0.177756 0.982380 0.040236 0.984955 -0.168061 -0.996293 0.026748 -0.081763 -0.076037 0.170727 0.982380 -0.063216 0.983748 -0.168061 -0.993609 -0.077818 -0.081763 -0.093512 0.161818 0.982380 -0.165000 0.971870 -0.168061 -0.980162 -0.180546 -0.081763 -0.109806 0.151236 0.982380 -0.265950 0.949224 -0.168061 -0.955841 -0.282280 -0.081763 -0.125052 0.138894 0.982380 -0.363971 0.916123 -0.168061 -0.920992 -0.380904 -0.081763 -0.138920 0.125023 0.982380 -0.457109 0.873388 -0.168061 -0.876473 -0.474457 -0.081763 -0.151148 0.109926 0.982380 -0.546129 0.820670 -0.168061 -0.821920 -0.563705 -0.081763 -0.161837 0.093479 0.982380 -0.629133 0.758912 -0.168061 -0.758313 -0.646743 -0.081763 -0.170743 0.076003 0.982380 -0.705208 0.688794 -0.168061 -0.686353 -0.722658 -0.081763 -0.177768 0.057689 0.982380 -0.772903 0.611863 -0.168061 -0.607624 -0.790005 -0.081763 -0.182797 0.038923 0.982380 -0.832774 0.527488 -0.168061 -0.521479 -0.849338 -0.081763 -0.185869 0.019550 0.982380 -0.333595 0.813811 0.475843 0.466929 0.581130 -0.666532 -0.818958 -0.000167 -0.573854 -0.417051 0.774365 0.475843 0.403451 0.626867 -0.666532 -0.814430 -0.085999 -0.573854 -0.495186 0.726886 0.475843 0.336194 0.665363 -0.666532 -0.801102 -0.170082 -0.573854 -0.568642 0.670984 0.475843 0.264607 0.696935 -0.666532 -0.778864 -0.253107 -0.573854 -0.635834 0.607691 0.475843 0.190106 0.720829 -0.666532 -0.748047 -0.333343 -0.573854 -0.695485 0.538400 0.475843 0.114248 0.736670 -0.666532 -0.709400 -0.409199 -0.573854 -0.748082 0.462543 0.475843 0.036411 0.744587 -0.666532 -0.662606 -0.481295 -0.573854 -0.792440 0.381591 0.475843 -0.041828 0.744302 -0.666532 -0.608514 -0.548090 -0.573854 -0.828069 0.296436 0.475843 -0.119606 0.735819 -0.666532 -0.547719 -0.608848 -0.573854 -0.854369 0.208870 0.475843 -0.195347 0.719426 -0.666532 -0.481553 -0.662419 -0.573854 -0.871555 0.118176 0.475843 -0.269672 0.694991 -0.666532 -0.409475 -0.709241 -0.573854 -0.879140 0.026180 0.475843 -0.341027 0.662899 -0.666532 -0.332886 -0.748251 -0.573854 -0.877108 -0.065227 0.475843 -0.408001 0.623915 -0.666532 -0.253410 -0.778765 -0.573854 -0.865441 -0.156795 0.475843 -0.471145 0.577717 -0.666532 -0.170394 -0.801036 -0.573854 -0.844241 -0.246636 0.475843 -0.529099 0.525156 -0.666532 -0.085501 -0.814482 -0.573854 -0.814014 -0.333098 0.475843 -0.580845 0.467284 -0.666532 -0.000334 -0.818958 -0.573854 -0.774620 -0.416578 0.475843 -0.626621 0.403833 -0.666532 0.085501 -0.814482 -0.573854 -0.726694 -0.495469 0.475843 -0.665494 0.335935 -0.666532 0.170394 -0.801036 -0.573854 -0.670763 -0.568903 0.475843 -0.697037 0.264336 -0.666532 0.253410 -0.778765 -0.573854 -0.608079 -0.635463 0.475843 -0.720713 0.190547 -0.666532 0.332886 -0.748251 -0.573854 -0.538129 -0.695694 0.475843 -0.736714 0.113962 -0.666532 0.409475 -0.709241 -0.573854 -0.462252 -0.748262 0.475843 -0.744601 0.036121 -0.666532 0.481553 -0.662419 -0.573854 -0.382075 -0.792207 0.475843 -0.744327 -0.041373 -0.666532 0.547719 -0.608848 -0.573854 -0.296942 -0.827888 0.475843 -0.735892 -0.119156 -0.666532 0.608514 -0.548090 -0.573854 -0.208538 -0.854450 0.475843 -0.719350 -0.195627 -0.666532 0.662606 -0.481295 -0.573854 -0.117837 -0.871601 0.475843 -0.694886 -0.269942 -0.666532 0.709400 -0.409199 -0.573854 -0.026717 -0.879124 0.475843 -0.663108 -0.340622 -0.666532 0.748047 -0.333343 -0.573854 0.065569 -0.877083 0.475843 -0.623756 -0.408244 -0.666532 0.778864 -0.253107 -0.573854 0.157132 -0.865380 0.475843 -0.577534 -0.471370 -0.666532 0.801102 -0.170082 -0.573854 0.246120 -0.844392 0.475843 -0.525479 -0.528778 -0.666532 0.814430 -0.085999 -0.573854 0.333263 -0.813946 0.475843 -0.467165 -0.580940 -0.666532 0.818958 -0.000167 -0.573854 0.416735 -0.774535 0.475843 -0.403706 -0.626703 -0.666532 0.814465 0.085667 -0.573854 0.495617 -0.726593 0.475843 -0.335799 -0.665563 -0.666532 0.801001 0.170557 -0.573854 0.568369 -0.671215 0.475843 -0.264891 -0.696827 -0.666532 0.778967 0.252789 -0.573854 0.635587 -0.607950 0.475843 -0.190400 -0.720751 -0.666532 0.748183 0.333038 -0.573854 0.695804 -0.537987 0.475843 -0.113812 -0.736737 -0.666532 0.709157 0.409619 -0.573854 0.748356 -0.462099 0.475843 -0.035969 -0.744608 -0.666532 0.662321 0.481688 -0.573854 0.792285 -0.381914 0.475843 0.041525 -0.744319 -0.666532 0.608737 0.547843 -0.573854 0.827949 -0.296773 0.475843 0.119306 -0.735867 -0.666532 0.547966 0.608625 -0.573854 0.854493 -0.208364 0.475843 0.195773 -0.719311 -0.666532 0.481160 0.662704 -0.573854 0.871506 -0.118531 0.475843 0.269389 -0.695100 -0.666532 0.409763 0.709074 -0.573854 0.879130 -0.026538 0.475843 0.340757 -0.663038 -0.666532 0.333191 0.748115 -0.573854 0.877069 0.065747 0.475843 0.408371 -0.623673 -0.666532 0.252948 0.778916 -0.573854 0.865348 0.157308 0.475843 0.471487 -0.577438 -0.666532 0.169919 0.801136 -0.573854 0.844342 0.246292 0.475843 0.528885 -0.525371 -0.666532 0.085833 0.814448 -0.573854 0.813878 0.333429 0.475843 0.581035 -0.467047 -0.666532 0.000000 0.818958 -0.573854 0.774450 0.416893 0.475843 0.626785 -0.403578 -0.666532 -0.085833 0.814448 -0.573854 0.726987 0.495038 0.475843 0.665295 -0.336329 -0.666532 -0.169919 0.801136 -0.573854 0.671100 0.568505 0.475843 0.696881 -0.264749 -0.666532 -0.252948 0.778916 -0.573854 0.607820 0.635710 0.475843 0.720790 -0.190253 -0.666532 -0.333191 0.748115 -0.573854 0.537846 0.695913 0.475843 0.736760 -0.113661 -0.666532 -0.409763 0.709074 -0.573854 0.462695 0.747988 0.475843 0.744579 -0.036562 -0.666532 -0.481160 0.662704 -0.573854 0.381752 0.792362 0.475843 0.744310 0.041676 -0.666532 -0.547966 0.608625 -0.573854 0.296605 0.828009 0.475843 0.735843 0.119456 -0.666532 -0.608737 0.547843 -0.573854 0.209044 0.854326 0.475843 0.719466 0.195200 -0.666532 -0.662321 0.481688 -0.573854 0.118353 0.871531 0.475843 0.695045 0.269530 -0.666532 -0.709157 0.409619 -0.573854 0.026359 0.879135 0.475843 0.662969 0.340892 -0.666532 -0.748183 0.333038 -0.573854 -0.065926 0.877056 0.475843 0.623590 0.408498 -0.666532 -0.778967 0.252789 -0.573854 -0.156619 0.865473 0.475843 0.577813 0.471027 -0.666532 -0.801001 0.170557 -0.573854 -0.246464 0.844292 0.475843 0.525264 0.528992 -0.666532 -0.814465 0.085667 -0.573854 -0.076440 0.627841 0.774579 0.061400 0.778342 -0.624832 -0.995182 -0.000203 -0.098046 -0.141821 0.616372 0.774579 -0.020514 0.780490 -0.624832 -0.989680 -0.104504 -0.098046 -0.205042 0.598319 0.774579 -0.101428 0.774143 -0.624832 -0.973484 -0.206680 -0.098046 -0.266621 0.573534 0.774579 -0.182005 0.759250 -0.624832 -0.946461 -0.307570 -0.098046 -0.325263 0.542431 0.774579 -0.260577 0.735993 -0.624832 -0.909012 -0.405072 -0.098046 -0.379817 0.505734 0.774579 -0.335575 0.704965 -0.624832 -0.862049 -0.497250 -0.098046 -0.430729 0.463141 0.774579 -0.407612 0.665912 -0.624832 -0.805186 -0.584861 -0.098046 -0.476898 0.415447 0.774579 -0.475159 0.619524 -0.624832 -0.739454 -0.666029 -0.098046 -0.517813 0.363177 0.774579 -0.537473 0.566311 -0.624832 -0.665577 -0.739861 -0.098046 -0.552717 0.307459 0.774579 -0.593359 0.507455 -0.624832 -0.585174 -0.804959 -0.098046 -0.581897 0.247837 0.774579 -0.643276 0.442472 -0.624832 -0.497586 -0.861856 -0.098046 -0.604668 0.185485 0.774579 -0.686107 0.372615 -0.624832 -0.404517 -0.909260 -0.098046 -0.620656 0.121710 0.774579 -0.721082 0.299375 -0.624832 -0.307938 -0.946341 -0.098046 -0.629994 0.055991 0.774579 -0.748488 0.222152 -0.624832 -0.207059 -0.973403 -0.098046 -0.632393 -0.010345 0.774579 -0.767649 0.142482 -0.624832 -0.103899 -0.989743 -0.098046 -0.627888 -0.076056 0.774579 -0.778304 0.061876 -0.624832 -0.000405 -0.995182 -0.098046 -0.616458 -0.141445 0.774579 -0.780502 -0.020037 -0.624832 0.103899 -0.989743 -0.098046 -0.598239 -0.205275 0.774579 -0.774104 -0.101729 -0.624832 0.207059 -0.973403 -0.098046 -0.573430 -0.266844 0.774579 -0.759179 -0.182300 -0.624832 0.307938 -0.946341 -0.098046 -0.542630 -0.324931 0.774579 -0.736152 -0.260127 -0.624832 0.404517 -0.909260 -0.098046 -0.505586 -0.380013 0.774579 -0.704834 -0.335849 -0.624832 0.497586 -0.861856 -0.098046 -0.462974 -0.430909 0.774579 -0.665753 -0.407871 -0.624832 0.585174 -0.804959 -0.098046 -0.415738 -0.476644 0.774579 -0.619814 -0.474781 -0.624832 0.665577 -0.739861 -0.098046 -0.363493 -0.517591 0.774579 -0.566640 -0.537127 -0.624832 0.739454 -0.666029 -0.098046 -0.307244 -0.552837 0.774579 -0.507224 -0.593556 -0.624832 0.805186 -0.584861 -0.098046 -0.247610 -0.581994 0.774579 -0.442222 -0.643448 -0.624832 0.862049 -0.497250 -0.098046 -0.185854 -0.604554 0.774579 -0.373034 -0.685880 -0.624832 0.909012 -0.405072 -0.098046 -0.121469 -0.620703 0.774579 -0.299095 -0.721199 -0.624832 0.946461 -0.307570 -0.098046 -0.055746 -0.630016 0.774579 -0.221861 -0.748574 -0.624832 0.973484 -0.206680 -0.098046 0.009959 -0.632399 0.774579 -0.142951 -0.767562 -0.624832 0.989680 -0.104504 -0.098046 0.076184 -0.627872 0.774579 -0.061717 -0.778316 -0.624832 0.995182 -0.000203 -0.098046 0.141570 -0.616430 0.774579 0.020196 -0.780498 -0.624832 0.989722 0.104101 -0.098046 0.205397 -0.598197 0.774579 0.101886 -0.774083 -0.624832 0.973361 0.207257 -0.098046 0.266387 -0.573642 0.774579 0.181695 -0.759324 -0.624832 0.946586 0.307185 -0.098046 0.325042 -0.542564 0.774579 0.260277 -0.736099 -0.624832 0.909177 0.404702 -0.098046 0.380116 -0.505509 0.774579 0.335992 -0.704766 -0.624832 0.861755 0.497761 -0.098046 0.431004 -0.462886 0.774579 0.408006 -0.665670 -0.624832 0.804839 0.585338 -0.098046 0.476728 -0.415641 0.774579 0.474907 -0.619717 -0.624832 0.739725 0.665728 -0.098046 0.517665 -0.363387 0.774579 0.537242 -0.566530 -0.624832 0.665878 0.739590 -0.098046 0.552900 -0.307131 0.774579 0.593660 -0.507103 -0.624832 0.584697 0.805305 -0.098046 0.581796 -0.248074 0.774579 0.643096 -0.442734 -0.624832 0.497937 0.861653 -0.098046 0.604592 -0.185731 0.774579 0.685956 -0.372895 -0.624832 0.404887 0.909095 -0.098046 0.620728 -0.121342 0.774579 0.721260 -0.298948 -0.624832 0.307377 0.946523 -0.098046 0.630027 -0.055617 0.774579 0.748619 -0.221708 -0.624832 0.206482 0.973526 -0.098046 0.632397 0.010088 0.774579 0.767591 -0.142794 -0.624832 0.104302 0.989701 -0.098046 0.627857 0.076312 0.774579 0.778329 -0.061559 -0.624832 0.000000 0.995182 -0.098046 0.616401 0.141696 0.774579 0.780494 0.020355 -0.624832 -0.104302 0.989701 -0.098046 0.598360 0.204920 0.774579 0.774164 0.101270 -0.624832 -0.206482 0.973526 -0.098046 0.573588 0.266504 0.774579 0.759287 0.181850 -0.624832 -0.307377 0.946523 -0.098046 0.542497 0.325152 0.774579 0.736046 0.260427 -0.624832 -0.404887 0.909095 -0.098046 0.505431 0.380219 0.774579 0.704697 0.336136 -0.624832 -0.497937 0.861653 -0.098046 0.463229 0.430635 0.774579 0.665995 0.407476 -0.624832 -0.584697 0.805305 -0.098046 0.415544 0.476813 0.774579 0.619620 0.475033 -0.624832 -0.665878 0.739590 -0.098046 0.363282 0.517739 0.774579 0.566421 0.537357 -0.624832 -0.739725 0.665728 -0.098046 0.307571 0.552655 0.774579 0.507576 0.593256 -0.624832 -0.804839 0.585338 -0.098046 0.247955 0.581847 0.774579 0.442603 0.643186 -0.624832 -0.861755 0.497761 -0.098046 0.185608 0.604630 0.774579 0.372755 0.686032 -0.624832 -0.909177 0.404702 -0.098046 0.121216 0.620753 0.774579 0.298801 0.721321 -0.624832 -0.946586 0.307185 -0.098046 0.056119 0.629983 0.774579 0.222304 0.748443 -0.624832 -0.973361 0.207257 -0.098046 -0.010217 0.632395 0.774579 0.142638 0.767620 -0.624832 -0.989722 0.104101 -0.098046 0.459268 0.010890 -0.888231 0.005162 -0.999941 -0.009590 -0.888283 -0.000181 -0.459297 0.455597 0.058964 -0.888231 0.109935 -0.993893 -0.009590 -0.883372 -0.093278 -0.459297 0.447015 0.105942 -0.888231 0.212519 -0.977110 -0.009590 -0.868915 -0.184479 -0.459297 0.433449 0.152209 -0.888231 0.313757 -0.949455 -0.009590 -0.844795 -0.274532 -0.459297 0.415109 0.196800 -0.888231 0.411539 -0.911342 -0.009590 -0.811369 -0.361561 -0.459297 0.392436 0.238830 -0.888231 0.503924 -0.863695 -0.009590 -0.769451 -0.443837 -0.459297 0.365244 0.278645 -0.888231 0.591670 -0.806123 -0.009590 -0.718696 -0.522037 -0.459297 0.334028 0.315390 -0.888231 0.672899 -0.739672 -0.009590 -0.660024 -0.594486 -0.459297 0.299133 0.348662 -0.888231 0.746716 -0.665074 -0.009590 -0.594083 -0.660387 -0.459297 0.261322 0.377832 -0.888231 0.811724 -0.583962 -0.009590 -0.522316 -0.718493 -0.459297 0.220283 0.403139 -0.888231 0.868457 -0.495671 -0.009590 -0.444137 -0.769278 -0.459297 0.176818 0.424006 -0.888231 0.915624 -0.401921 -0.009590 -0.361065 -0.811590 -0.459297 0.131845 0.440071 -0.888231 0.952401 -0.304696 -0.009590 -0.274861 -0.844688 -0.459297 0.084997 0.451466 -0.888231 0.979090 -0.203199 -0.009590 -0.184817 -0.868843 -0.459297 0.037212 0.457888 -0.888231 0.994995 -0.099464 -0.009590 -0.092739 -0.883428 -0.459297 -0.010609 0.459275 -0.888231 0.999944 0.004551 -0.009590 -0.000362 -0.888283 -0.459297 -0.058686 0.455633 -0.888231 0.993959 0.109328 -0.009590 0.092739 -0.883428 -0.459297 -0.106116 0.446973 -0.888231 0.977027 0.212900 -0.009590 0.184817 -0.868843 -0.459297 -0.152378 0.433390 -0.888231 0.949333 0.314126 -0.009590 0.274861 -0.844688 -0.459297 -0.196546 0.415229 -0.888231 0.911593 0.410982 -0.009590 0.361065 -0.811590 -0.459297 -0.238983 0.392343 -0.888231 0.863499 0.504260 -0.009590 0.444137 -0.769278 -0.459297 -0.278787 0.365135 -0.888231 0.805893 0.591984 -0.009590 0.522316 -0.718493 -0.459297 -0.315186 0.334221 -0.888231 0.740083 0.672447 -0.009590 0.594083 -0.660387 -0.459297 -0.348479 0.299346 -0.888231 0.665530 0.746310 -0.009590 0.660024 -0.594486 -0.459297 -0.377933 0.261175 -0.888231 0.583646 0.811952 -0.009590 0.718696 -0.522037 -0.459297 -0.403225 0.220126 -0.888231 0.495333 0.868650 -0.009590 0.769451 -0.443837 -0.459297 -0.423898 0.177077 -0.888231 0.402480 0.915378 -0.009590 0.811369 -0.361561 -0.459297 -0.440122 0.131674 -0.888231 0.304325 0.952520 -0.009590 0.844795 -0.274532 -0.459297 -0.451499 0.084821 -0.888231 0.202818 0.979169 -0.009590 0.868915 -0.184479 -0.459297 -0.457865 0.037491 -0.888231 0.100072 0.994934 -0.009590 0.883372 -0.093278 -0.459297 -0.459273 -0.010703 -0.888231 -0.004755 0.999943 -0.009590 0.888283 -0.000181 -0.459297 -0.455621 -0.058779 -0.888231 -0.109530 0.993937 -0.009590 0.883410 0.092919 -0.459297 -0.446952 -0.106207 -0.888231 -0.213099 0.976984 -0.009590 0.868806 0.184994 -0.459297 -0.433511 -0.152033 -0.888231 -0.313370 0.949583 -0.009590 0.844907 0.274188 -0.459297 -0.415189 -0.196631 -0.888231 -0.411168 0.911509 -0.009590 0.811516 0.361230 -0.459297 -0.392294 -0.239062 -0.888231 -0.504436 0.863396 -0.009590 0.769188 0.444293 -0.459297 -0.365078 -0.278861 -0.888231 -0.592148 0.805772 -0.009590 0.718386 0.522463 -0.459297 -0.334157 -0.315254 -0.888231 -0.672598 0.739946 -0.009590 0.660266 0.594217 -0.459297 -0.299275 -0.348540 -0.888231 -0.746445 0.665378 -0.009590 0.594352 0.660145 -0.459297 -0.261098 -0.377987 -0.888231 -0.812070 0.583481 -0.009590 0.521891 0.718802 -0.459297 -0.220447 -0.403049 -0.888231 -0.868255 0.496025 -0.009590 0.444450 0.769097 -0.459297 -0.176991 -0.423934 -0.888231 -0.915460 0.402294 -0.009590 0.361395 0.811443 -0.459297 -0.131584 -0.440149 -0.888231 -0.952582 0.304131 -0.009590 0.274360 0.844851 -0.459297 -0.084729 -0.451516 -0.888231 -0.979211 0.202619 -0.009590 0.184302 0.868953 -0.459297 -0.037398 -0.457872 -0.888231 -0.994954 0.099870 -0.009590 0.093098 0.883391 -0.459297 0.010796 -0.459270 -0.888231 -0.999942 -0.004959 -0.009590 0.000000 0.888283 -0.459297 0.058872 -0.455609 -0.888231 -0.993915 -0.109732 -0.009590 -0.093098 0.883391 -0.459297 0.105851 -0.447036 -0.888231 -0.977153 -0.212320 -0.009590 -0.184302 0.868953 -0.459297 0.152121 -0.433480 -0.888231 -0.949519 -0.313564 -0.009590 -0.274360 0.844851 -0.459297 0.196715 -0.415149 -0.888231 -0.911426 -0.411353 -0.009590 -0.361395 0.811443 -0.459297 0.239142 -0.392246 -0.888231 -0.863293 -0.504612 -0.009590 -0.444450 0.769097 -0.459297 0.278570 -0.365300 -0.888231 -0.806244 -0.591506 -0.009590 -0.521891 0.718802 -0.459297 0.315322 -0.334092 -0.888231 -0.739809 -0.672748 -0.009590 -0.594352 0.660145 -0.459297 0.348601 -0.299204 -0.888231 -0.665226 -0.746580 -0.009590 -0.660266 0.594217 -0.459297 0.377779 -0.261399 -0.888231 -0.584127 -0.811605 -0.009590 -0.718386 0.522463 -0.459297 0.403094 -0.220365 -0.888231 -0.495848 -0.868356 -0.009590 -0.769188 0.444293 -0.459297 0.423970 -0.176904 -0.888231 -0.402107 -0.915542 -0.009590 -0.811516 0.361230 -0.459297 0.440176 -0.131495 -0.888231 -0.303937 -0.952644 -0.009590 -0.844907 0.274188 -0.459297 0.451449 -0.085089 -0.888231 -0.203399 -0.979049 -0.009590 -0.868806 0.184994 -0.459297 0.457880 -0.037305 -0.888231 -0.099667 -0.994975 -0.009590 -0.883410 0.092919 -0.459297 -0.096737 0.777553 0.621332 0.119302 0.628817 -0.768346 -0.988134 -0.000201 -0.153593 -0.177697 0.763132 0.621332 0.052740 0.637858 -0.768346 -0.982671 -0.103764 -0.153593 -0.255960 0.740561 0.621332 -0.013762 0.639887 -0.768346 -0.966589 -0.205217 -0.153593 -0.332166 0.709656 0.621332 -0.080751 0.634920 -0.768346 -0.939758 -0.305392 -0.153593 -0.404714 0.670935 0.621332 -0.146851 0.622960 -0.768346 -0.902575 -0.402203 -0.153593 -0.472179 0.625295 0.621332 -0.210728 0.604349 -0.768346 -0.855944 -0.493729 -0.153593 -0.535114 0.572364 0.621332 -0.272908 0.578935 -0.768346 -0.799484 -0.580719 -0.153593 -0.592154 0.513128 0.621332 -0.332081 0.547144 -0.768346 -0.734217 -0.661312 -0.153593 -0.642672 0.448240 0.621332 -0.387597 0.509326 -0.768346 -0.660864 -0.734621 -0.153593 -0.685733 0.379100 0.621332 -0.438377 0.466336 -0.768346 -0.581030 -0.799258 -0.153593 -0.721689 0.305143 0.621332 -0.484838 0.417823 -0.768346 -0.494062 -0.855752 -0.153593 -0.749695 0.227824 0.621332 -0.525959 0.364707 -0.768346 -0.401652 -0.902821 -0.153593 -0.769296 0.148765 0.621332 -0.560978 0.308136 -0.768346 -0.305758 -0.939639 -0.153593 -0.780650 0.067318 0.621332 -0.590184 0.247644 -0.768346 -0.205593 -0.966510 -0.153593 -0.783406 -0.014870 0.621332 -0.612888 0.184425 -0.768346 -0.103163 -0.982734 -0.153593 -0.777612 -0.096262 0.621332 -0.628744 0.119686 -0.768346 -0.000402 -0.988134 -0.153593 -0.763240 -0.177231 0.621332 -0.637826 0.053130 -0.768346 0.103163 -0.982734 -0.153593 -0.740462 -0.256248 0.621332 -0.639881 -0.014011 -0.768346 0.205593 -0.966510 -0.153593 -0.709527 -0.332442 0.621332 -0.634889 -0.080998 -0.768346 0.305758 -0.939639 -0.153593 -0.671182 -0.404304 0.621332 -0.623050 -0.146470 -0.768346 0.401652 -0.902821 -0.153593 -0.625111 -0.472422 0.621332 -0.604267 -0.210963 -0.768346 0.494062 -0.855752 -0.153593 -0.572155 -0.535336 0.621332 -0.578829 -0.273133 -0.768346 0.581030 -0.799258 -0.153593 -0.513489 -0.591841 0.621332 -0.547346 -0.331747 -0.768346 0.660864 -0.734621 -0.153593 -0.448632 -0.642399 0.621332 -0.509562 -0.387286 -0.768346 0.734217 -0.661312 -0.153593 -0.378833 -0.685880 0.621332 -0.466166 -0.438559 -0.768346 0.799484 -0.580719 -0.153593 -0.304862 -0.721807 0.621332 -0.417634 -0.485001 -0.768346 0.855944 -0.493729 -0.153593 -0.228282 -0.749556 0.621332 -0.365029 -0.525736 -0.768346 0.902575 -0.402203 -0.153593 -0.148466 -0.769353 0.621332 -0.307917 -0.561098 -0.768346 0.939758 -0.305392 -0.153593 -0.067014 -0.780676 0.621332 -0.247414 -0.590280 -0.768346 0.966589 -0.205217 -0.153593 0.014392 -0.783415 0.621332 -0.184799 -0.612775 -0.768346 0.982671 -0.103764 -0.153593 0.096420 -0.777592 0.621332 -0.119558 -0.628769 -0.768346 0.988134 -0.000201 -0.153593 0.177386 -0.763204 0.621332 -0.053000 -0.637836 -0.768346 0.982713 0.103363 -0.153593 0.256399 -0.740410 0.621332 0.014142 -0.639878 -0.768346 0.966468 0.205790 -0.153593 0.331877 -0.709792 0.621332 0.080493 -0.634953 -0.768346 0.939882 0.305009 -0.153593 0.404441 -0.671099 0.621332 0.146597 -0.623020 -0.768346 0.902739 0.401836 -0.153593 0.472549 -0.625015 0.621332 0.211086 -0.604224 -0.768346 0.855652 0.494236 -0.153593 0.535453 -0.572046 0.621332 0.273251 -0.578773 -0.768346 0.799140 0.581193 -0.153593 0.591945 -0.513369 0.621332 0.331858 -0.547279 -0.768346 0.734487 0.661013 -0.153593 0.642490 -0.448501 0.621332 0.387390 -0.509484 -0.768346 0.661163 0.734352 -0.153593 0.685958 -0.378694 0.621332 0.438654 -0.466076 -0.768346 0.580556 0.799602 -0.153593 0.721564 -0.305437 0.621332 0.484668 -0.418020 -0.768346 0.494410 0.855551 -0.153593 0.749602 -0.228129 0.621332 0.525810 -0.364921 -0.768346 0.402020 0.902657 -0.153593 0.769384 -0.148309 0.621332 0.561161 -0.307803 -0.768346 0.305201 0.939820 -0.153593 0.780690 -0.066855 0.621332 0.590330 -0.247294 -0.768346 0.205020 0.966631 -0.153593 0.783412 0.014551 0.621332 0.612813 -0.184674 -0.768346 0.103564 0.982692 -0.153593 0.777573 0.096578 0.621332 0.628793 -0.119430 -0.768346 0.000000 0.988134 -0.153593 0.763168 0.177542 0.621332 0.637847 -0.052870 -0.768346 -0.103564 0.982692 -0.153593 0.740614 0.255809 0.621332 0.639889 0.013632 -0.768346 -0.205020 0.966631 -0.153593 0.709724 0.332022 0.621332 0.634936 0.080622 -0.768346 -0.305201 0.939820 -0.153593 0.671017 0.404577 0.621332 0.622990 0.146724 -0.768346 -0.402020 0.902657 -0.153593 0.624919 0.472676 0.621332 0.604181 0.211210 -0.768346 -0.494410 0.855551 -0.153593 0.572473 0.534997 0.621332 0.578990 0.272790 -0.768346 -0.580556 0.799602 -0.153593 0.513248 0.592050 0.621332 0.547211 0.331970 -0.768346 -0.661163 0.734352 -0.153593 0.448371 0.642581 0.621332 0.509405 0.387493 -0.768346 -0.734487 0.661013 -0.153593 0.379240 0.685656 0.621332 0.466426 0.438282 -0.768346 -0.799140 0.581193 -0.153593 0.305290 0.721627 0.621332 0.417922 0.484753 -0.768346 -0.855652 0.494236 -0.153593 0.227977 0.749649 0.621332 0.364814 0.525885 -0.768346 -0.902739 0.401836 -0.153593 0.148152 0.769414 0.621332 0.307689 0.561224 -0.768346 -0.939882 0.305009 -0.153593 0.067477 0.780637 0.621332 0.247764 0.590133 -0.768346 -0.966468 0.205790 -0.153593 -0.014711 0.783409 0.621332 0.184549 0.612850 -0.768346 -0.982713 0.103363 -0.153593 0.265290 0.916776 0.298569 -0.609224 0.399402 -0.685073 -0.747307 -0.000152 0.664479 0.167744 0.939531 0.298569 -0.647729 0.333351 -0.685073 -0.743175 -0.078474 0.664479 0.069303 0.951869 0.298569 -0.678835 0.264308 -0.685073 -0.731013 -0.155201 0.664479 -0.030842 0.953890 0.298569 -0.702798 0.191706 -0.685073 -0.710721 -0.230962 0.664479 -0.130646 0.945404 0.298569 -0.719019 0.116991 -0.685073 -0.682600 -0.304179 0.664479 -0.228085 0.926733 0.298569 -0.727279 0.041716 -0.685073 -0.647334 -0.373398 0.664479 -0.323957 0.897724 0.298569 -0.727646 -0.034738 -0.685073 -0.604635 -0.439187 0.664479 -0.416261 0.858827 0.298569 -0.719998 -0.110809 -0.685073 -0.555275 -0.500138 0.664479 -0.503980 0.810470 0.298569 -0.704419 -0.185660 -0.685073 -0.499799 -0.555580 0.664479 -0.585394 0.753771 0.298569 -0.681339 -0.257784 -0.685073 -0.439422 -0.604464 0.664479 -0.661170 0.688266 0.298569 -0.650569 -0.327774 -0.685073 -0.373650 -0.647189 0.664479 -0.729664 0.615180 0.298569 -0.612633 -0.394153 -0.685073 -0.303762 -0.682786 0.664479 -0.789585 0.536108 0.298569 -0.568405 -0.455622 -0.685073 -0.231239 -0.710631 0.664479 -0.841424 0.450402 0.298569 -0.517522 -0.512686 -0.685073 -0.155486 -0.730953 0.664479 -0.883996 0.359734 0.298569 -0.460939 -0.564102 -0.685073 -0.078020 -0.743223 0.664479 -0.916614 0.265850 0.298569 -0.399774 -0.608980 -0.685073 -0.000304 -0.747307 0.664479 -0.939428 0.168318 0.298569 -0.333747 -0.647525 -0.685073 0.078020 -0.743223 0.664479 -0.951895 0.068932 0.298569 -0.264044 -0.678938 -0.685073 0.155486 -0.730953 0.664479 -0.953878 -0.031213 0.298569 -0.191432 -0.702872 -0.685073 0.231239 -0.710631 0.664479 -0.945483 -0.130068 0.298569 -0.117431 -0.718948 -0.685073 0.303762 -0.682786 0.664479 -0.926644 -0.228446 0.298569 -0.041433 -0.727296 -0.685073 0.373650 -0.647189 0.664479 -0.897598 -0.324306 0.298569 0.035021 -0.727633 -0.685073 0.439422 -0.604464 0.664479 -0.859081 -0.415736 0.298569 0.110369 -0.720065 -0.685073 0.499799 -0.555580 0.664479 -0.810777 -0.503484 0.298569 0.185229 -0.704532 -0.685073 0.555275 -0.500138 0.664479 -0.753543 -0.585687 0.298569 0.258049 -0.681239 -0.685073 0.604635 -0.439187 0.664479 -0.688009 -0.661438 0.298569 0.328027 -0.650442 -0.685073 0.647334 -0.373398 0.664479 -0.615626 -0.729288 0.298569 0.393778 -0.612874 -0.685073 0.682600 -0.304179 0.664479 -0.535801 -0.789794 0.298569 0.455843 -0.568228 -0.685073 0.710721 -0.230962 0.664479 -0.450074 -0.841600 0.298569 0.512887 -0.517322 -0.685073 0.731013 -0.155201 0.664479 -0.360274 -0.883776 0.298569 0.563820 -0.461283 -0.685073 0.743175 -0.078474 0.664479 -0.265663 -0.916668 0.298569 0.609061 -0.399650 -0.685073 0.747307 -0.000152 0.664479 -0.168127 -0.939463 0.298569 0.647593 -0.333615 -0.685073 0.743207 0.078172 0.664479 -0.068739 -0.951909 0.298569 0.678991 -0.263906 -0.685073 0.730921 0.155635 0.664479 0.030453 -0.953902 0.298569 0.702720 -0.191992 -0.685073 0.710815 0.230673 0.664479 0.130261 -0.945457 0.298569 0.718971 -0.117284 -0.685073 0.682724 0.303901 0.664479 0.228634 -0.926598 0.298569 0.727304 -0.041285 -0.685073 0.647113 0.373781 0.664479 0.324489 -0.897532 0.298569 0.727625 0.035169 -0.685073 0.604374 0.439545 0.664479 0.415911 -0.858996 0.298569 0.720043 0.110516 -0.685073 0.555478 0.499912 0.664479 0.503649 -0.810675 0.298569 0.704495 0.185373 -0.685073 0.500025 0.555376 0.664479 0.585840 -0.753424 0.298569 0.681186 0.258188 -0.685073 0.439063 0.604724 0.664479 0.660890 -0.688536 0.298569 0.650702 0.327509 -0.685073 0.373913 0.647037 0.664479 0.729413 -0.615478 0.298569 0.612794 0.393903 -0.685073 0.304040 0.682662 0.664479 0.789903 -0.535640 0.298569 0.568135 0.455959 -0.685073 0.230817 0.710768 0.664479 0.841691 -0.449903 0.298569 0.517218 0.512992 -0.685073 0.155053 0.731045 0.664479 0.883849 -0.360094 0.298569 0.461168 0.563914 -0.685073 0.078323 0.743191 0.664479 0.916722 -0.265477 0.298569 0.399526 0.609142 -0.685073 0.000000 0.747307 0.664479 0.939497 -0.167936 0.298569 0.333483 0.647661 -0.685073 -0.078323 0.743191 0.664479 0.951854 -0.069497 0.298569 0.264446 0.678781 -0.685073 -0.155053 0.731045 0.664479 0.953896 0.030647 0.298569 0.191849 0.702759 -0.685073 -0.230817 0.710768 0.664479 0.945430 0.130454 0.298569 0.117138 0.718995 -0.685073 -0.304040 0.682662 0.664479 0.926551 0.228823 0.298569 0.041137 0.727312 -0.685073 -0.373913 0.647037 0.664479 0.897790 0.323774 0.298569 -0.034590 0.727653 -0.685073 -0.439063 0.604724 0.664479 0.858912 0.416086 0.298569 -0.110662 0.720020 -0.685073 -0.500025 0.555376 0.664479 0.810572 0.503815 0.298569 -0.185516 0.704457 -0.685073 -0.555478 0.499912 0.664479 0.753890 0.585240 0.298569 -0.257645 0.681392 -0.685073 -0.604374 0.439545 0.664479 0.688401 0.661030 0.298569 -0.327641 0.650636 -0.685073 -0.647113 0.373781 0.664479 0.615329 0.729539 0.298569 -0.394028 0.612713 -0.685073 -0.682724 0.303901 0.664479 0.535479 0.790012 0.298569 -0.456075 0.568042 -0.685073 -0.710815 0.230673 0.664479 0.450573 0.841333 0.298569 -0.512580 0.517626 -0.685073 -0.730921 0.155635 0.664479 0.359914 0.883922 0.298569 -0.564008 0.461054 -0.685073 -0.743207 0.078172 0.664479 0.177459 -0.175257 -0.968397 -0.031390 -0.984523 0.172423 -0.983627 -0.000200 -0.180214 0.194850 -0.155693 -0.968397 0.071968 -0.982390 0.172423 -0.978189 -0.103290 -0.180214 0.209960 -0.134624 -0.968397 0.173564 -0.969611 0.172423 -0.962181 -0.204281 -0.180214 0.222913 -0.111877 -0.968397 0.274230 -0.946080 0.172423 -0.935472 -0.303999 -0.180214 0.233411 -0.087898 -0.968397 0.371876 -0.912129 0.172423 -0.898458 -0.400369 -0.180214 0.241275 -0.063192 -0.968397 0.464557 -0.868595 0.172423 -0.852041 -0.491477 -0.180214 0.246569 -0.037557 -0.968397 0.553033 -0.815122 0.172423 -0.795838 -0.578070 -0.180214 0.249147 -0.011508 -0.968397 0.635418 -0.752671 0.172423 -0.730869 -0.658296 -0.180214 0.248981 0.014668 -0.968397 0.710804 -0.681929 0.172423 -0.657849 -0.731271 -0.180214 0.246113 0.040436 -0.968397 0.777756 -0.604454 0.172423 -0.578380 -0.795613 -0.180214 0.240520 0.066008 -0.968397 0.836824 -0.519611 0.172423 -0.491809 -0.851849 -0.180214 0.232277 0.090853 -0.968397 0.886674 -0.429044 0.172423 -0.399820 -0.898703 -0.180214 0.221590 0.114475 -0.968397 0.926424 -0.334678 0.172423 -0.304363 -0.935353 -0.180214 0.208372 0.137069 -0.968397 0.956398 -0.235739 0.172423 -0.204655 -0.962102 -0.180214 0.192859 0.158153 -0.968397 0.975838 -0.134203 0.172423 -0.102693 -0.978252 -0.180214 0.175366 0.177352 -0.968397 0.984503 -0.031991 0.172423 -0.000401 -0.983627 -0.180214 0.155812 0.194755 -0.968397 0.982434 0.071368 0.172423 0.102693 -0.978252 -0.180214 0.134542 0.210012 -0.968397 0.969544 0.173941 0.172423 0.204655 -0.962102 -0.180214 0.111790 0.222957 -0.968397 0.945974 0.274598 0.172423 0.304363 -0.935353 -0.180214 0.088041 0.233357 -0.968397 0.912356 0.371318 0.172423 0.399820 -0.898703 -0.180214 0.063098 0.241299 -0.968397 0.868414 0.464895 0.172423 0.491809 -0.851849 -0.180214 0.037461 0.246584 -0.968397 0.814907 0.553351 0.172423 0.578380 -0.795613 -0.180214 0.011660 0.249140 -0.968397 0.753059 0.634958 0.172423 0.657849 -0.731271 -0.180214 -0.014516 0.248990 -0.968397 0.682364 0.710387 0.172423 0.730869 -0.658296 -0.180214 -0.040532 0.246097 -0.968397 0.604152 0.777992 0.172423 0.795838 -0.578070 -0.180214 -0.066101 0.240494 -0.968397 0.519286 0.837026 0.172423 0.852041 -0.491477 -0.180214 -0.090711 0.232332 -0.968397 0.429586 0.886412 0.172423 0.898458 -0.400369 -0.180214 -0.114561 0.221546 -0.968397 0.334318 0.926554 0.172423 0.935472 -0.303999 -0.180214 -0.137150 0.208319 -0.968397 0.235367 0.956490 0.172423 0.962181 -0.204281 -0.180214 -0.158035 0.192955 -0.968397 0.134799 0.975756 0.172423 0.978189 -0.103290 -0.180214 -0.177388 0.175329 -0.968397 0.031791 0.984510 0.172423 0.983627 -0.000200 -0.180214 -0.194786 0.155772 -0.968397 -0.071568 0.982420 0.172423 0.978231 0.102892 -0.180214 -0.210040 0.134499 -0.968397 -0.174139 0.969508 0.172423 0.962060 0.204851 -0.180214 -0.222868 0.111968 -0.968397 -0.273845 0.946192 0.172423 0.935596 0.303618 -0.180214 -0.233375 0.087993 -0.968397 -0.371504 0.912280 0.172423 0.898621 0.400003 -0.180214 -0.241312 0.063049 -0.968397 -0.465072 0.868319 0.172423 0.851749 0.491982 -0.180214 -0.246591 0.037411 -0.968397 -0.553517 0.814794 0.172423 0.795495 0.578542 -0.180214 -0.249142 0.011609 -0.968397 -0.635112 0.752930 0.172423 0.731137 0.657998 -0.180214 -0.248987 -0.014567 -0.968397 -0.710526 0.682219 0.172423 0.658147 0.731003 -0.180214 -0.246089 -0.040582 -0.968397 -0.778114 0.603993 0.172423 0.577908 0.795955 -0.180214 -0.240547 -0.065910 -0.968397 -0.836612 0.519952 0.172423 0.492155 0.851649 -0.180214 -0.232314 -0.090758 -0.968397 -0.886500 0.429405 0.172423 0.400186 0.898540 -0.180214 -0.221522 -0.114606 -0.968397 -0.926622 0.334129 0.172423 0.303809 0.935534 -0.180214 -0.208291 -0.137192 -0.968397 -0.956538 0.235172 0.172423 0.204085 0.962223 -0.180214 -0.192923 -0.158074 -0.968397 -0.975783 0.134601 0.172423 0.103091 0.978210 -0.180214 -0.175293 -0.177423 -0.968397 -0.984516 0.031590 0.172423 0.000000 0.983627 -0.180214 -0.155733 -0.194818 -0.968397 -0.982405 -0.071768 0.172423 -0.103091 0.978210 -0.180214 -0.134667 -0.209932 -0.968397 -0.969647 -0.173366 0.172423 -0.204085 0.962223 -0.180214 -0.111923 -0.222890 -0.968397 -0.946136 -0.274037 0.172423 -0.303809 0.935534 -0.180214 -0.087946 -0.233393 -0.968397 -0.912204 -0.371690 0.172423 -0.400186 0.898540 -0.180214 -0.063000 -0.241325 -0.968397 -0.868225 -0.465249 0.172423 -0.492155 0.851649 -0.180214 -0.037607 -0.246561 -0.968397 -0.815235 -0.552867 0.172423 -0.577908 0.795955 -0.180214 -0.011559 -0.249145 -0.968397 -0.752801 -0.635265 0.172423 -0.658147 0.731003 -0.180214 0.014617 -0.248984 -0.968397 -0.682074 -0.710665 0.172423 -0.731137 0.657998 -0.180214 0.040386 -0.246121 -0.968397 -0.604613 -0.777633 0.172423 -0.795495 0.578542 -0.180214 0.065959 -0.240533 -0.968397 -0.519781 -0.836718 0.172423 -0.851749 0.491982 -0.180214 0.090805 -0.232295 -0.968397 -0.429225 -0.886587 0.172423 -0.898621 0.400003 -0.180214 0.114651 -0.221499 -0.968397 -0.333940 -0.926690 0.172423 -0.935596 0.303618 -0.180214 0.137026 -0.208400 -0.968397 -0.235934 -0.956350 0.172423 -0.962060 0.204851 -0.180214 0.158113 -0.192891 -0.968397 -0.134402 -0.975811 0.172423 -0.978231 0.102892 -0.180214 -0.191066 -0.951578 0.240816 -0.591853 0.307406 0.745125 -0.783074 -0.000159 -0.621929 -0.090281 -0.966363 0.240816 -0.620811 0.243683 0.745125 -0.778744 -0.082230 -0.621929 0.010527 -0.970514 0.240816 -0.642754 0.177918 0.745125 -0.766000 -0.162629 -0.621929 0.112186 -0.964065 0.240816 -0.657862 0.109573 0.745125 -0.744736 -0.242016 -0.621929 0.212609 -0.946998 0.240816 -0.665723 0.040021 0.745125 -0.715270 -0.318737 -0.621929 0.309771 -0.919810 0.240816 -0.666280 -0.029306 0.745125 -0.678316 -0.391269 -0.621929 0.404467 -0.882278 0.240816 -0.659539 -0.098975 0.745125 -0.633573 -0.460206 -0.621929 0.494708 -0.835028 0.240816 -0.645534 -0.167555 0.745125 -0.581850 -0.524075 -0.621929 0.579501 -0.778580 0.240816 -0.624417 -0.234288 0.745125 -0.523719 -0.582170 -0.621929 0.657196 -0.714213 0.240816 -0.596721 -0.297845 0.745125 -0.460453 -0.633394 -0.621929 0.728431 -0.641401 0.240816 -0.562219 -0.358745 0.745125 -0.391533 -0.678164 -0.621929 0.791643 -0.561524 0.240816 -0.521523 -0.415694 0.745125 -0.318300 -0.715464 -0.621929 0.845659 -0.476307 0.240816 -0.475551 -0.467589 0.745125 -0.242306 -0.744642 -0.621929 0.890922 -0.385053 0.240816 -0.423925 -0.514855 0.745125 -0.162928 -0.765937 -0.621929 0.926372 -0.289557 0.240816 -0.367630 -0.556450 0.745125 -0.081755 -0.778794 -0.621929 0.951461 -0.191647 0.240816 -0.307768 -0.591665 0.745125 -0.000319 -0.783073 -0.621929 0.966307 -0.090872 0.240816 -0.244062 -0.620662 0.745125 0.081755 -0.778794 -0.621929 0.970510 0.010905 0.240816 -0.177668 -0.642824 0.745125 0.162928 -0.765937 -0.621929 0.964022 0.112561 0.240816 -0.109317 -0.657904 0.745125 0.242306 -0.744642 -0.621929 0.947128 0.212030 0.240816 -0.040428 -0.665698 0.745125 0.318300 -0.715464 -0.621929 0.919689 0.310128 0.240816 0.029565 -0.666269 0.745125 0.391533 -0.678164 -0.621929 0.882120 0.404810 0.240816 0.099232 -0.659501 0.745125 0.460453 -0.633394 -0.621929 0.835330 0.494198 0.240816 0.167160 -0.645636 0.745125 0.523719 -0.582170 -0.621929 0.778934 0.579025 0.240816 0.233907 -0.624560 0.745125 0.581850 -0.524075 -0.621929 0.713958 0.657474 0.240816 0.298077 -0.596606 0.745125 0.633573 -0.460206 -0.621929 0.641118 0.728681 0.240816 0.358964 -0.562079 0.745125 0.678316 -0.391269 -0.621929 0.562007 0.791300 0.240816 0.415375 -0.521777 0.745125 0.715270 -0.318737 -0.621929 0.475978 0.845844 0.240816 0.467774 -0.475369 0.745125 0.744736 -0.242016 -0.621929 0.384706 0.891072 0.240816 0.515020 -0.423725 0.745125 0.766000 -0.162629 -0.621929 0.290123 0.926194 0.240816 0.556225 -0.367970 0.745125 0.778744 -0.082230 -0.621929 0.191454 0.951500 0.240816 0.591727 -0.307647 0.745125 0.783074 -0.000159 -0.621929 0.090675 0.966326 0.240816 0.620712 -0.243936 0.745125 0.778778 0.081913 -0.621929 -0.011102 0.970507 0.240816 0.642860 -0.177537 0.745125 0.765903 0.163083 -0.621929 -0.111793 0.964111 0.240816 0.657817 -0.109841 0.745125 0.744835 0.241713 -0.621929 -0.212223 0.947084 0.240816 0.665706 -0.040292 0.745125 0.715400 0.318446 -0.621929 -0.310316 0.919626 0.240816 0.666263 0.029701 0.745125 0.678084 0.391671 -0.621929 -0.404990 0.882038 0.240816 0.659480 0.099366 0.745125 0.633300 0.460582 -0.621929 -0.494368 0.835229 0.240816 0.645602 0.167292 0.745125 0.582064 0.523838 -0.621929 -0.579184 0.778816 0.240816 0.624513 0.234034 0.745125 0.523956 0.581957 -0.621929 -0.657619 0.713824 0.240816 0.596545 0.298199 0.745125 0.460077 0.633666 -0.621929 -0.728170 0.641698 0.240816 0.562365 0.358516 0.745125 0.391809 0.678004 -0.621929 -0.791414 0.561846 0.240816 0.521693 0.415482 0.745125 0.318591 0.715335 -0.621929 -0.845941 0.475806 0.240816 0.475274 0.467871 0.745125 0.241864 0.744786 -0.621929 -0.891150 0.384525 0.240816 0.423620 0.515106 0.745125 0.162473 0.766033 -0.621929 -0.926253 0.289935 0.240816 0.367857 0.556300 0.745125 0.082072 0.778761 -0.621929 -0.951539 0.191260 0.240816 0.307527 0.591790 0.745125 0.000000 0.783074 -0.621929 -0.966344 0.090478 0.240816 0.243809 0.620762 0.745125 -0.082072 0.778761 -0.621929 -0.970516 -0.010329 0.240816 0.178049 0.642718 0.745125 -0.162473 0.766033 -0.621929 -0.964088 -0.111989 0.240816 0.109707 0.657839 0.745125 -0.241864 0.744786 -0.621929 -0.947041 -0.212416 0.240816 0.040156 0.665714 0.745125 -0.318591 0.715335 -0.621929 -0.919563 -0.310503 0.240816 -0.029836 0.666257 0.745125 -0.391809 0.678004 -0.621929 -0.882360 -0.404287 0.240816 -0.098841 0.659559 0.745125 -0.460077 0.633666 -0.621929 -0.835128 -0.494538 0.240816 -0.167423 0.645568 0.745125 -0.523956 0.581957 -0.621929 -0.778698 -0.579342 0.240816 -0.234161 0.624465 0.745125 -0.582064 0.523838 -0.621929 -0.714347 -0.657051 0.240816 -0.297723 0.596782 0.745125 -0.633300 0.460582 -0.621929 -0.641549 -0.728301 0.240816 -0.358631 0.562292 0.745125 -0.678084 0.391671 -0.621929 -0.561685 -0.791529 0.240816 -0.415588 0.521608 0.745125 -0.715400 0.318446 -0.621929 -0.475634 -0.846038 0.240816 -0.467967 0.475179 0.745125 -0.744835 0.241713 -0.621929 -0.385234 -0.890843 0.240816 -0.514768 0.424030 0.745125 -0.765903 0.163083 -0.621929 -0.289746 -0.926313 0.240816 -0.556375 0.367744 0.745125 -0.778778 0.081913 -0.621929 -0.550851 0.347287 -0.758917 -0.203858 -0.937759 -0.281159 -0.809324 -0.000165 0.587363 -0.584215 0.287641 -0.758917 -0.104452 -0.953960 -0.281159 -0.804849 -0.084987 0.587363 -0.610919 0.225438 -0.758917 -0.004854 -0.959649 -0.281159 -0.791678 -0.168081 0.587363 -0.631182 0.160168 -0.758917 0.095750 -0.954873 -0.281159 -0.769702 -0.250129 0.587363 -0.644493 0.093133 -0.758917 0.195301 -0.939578 -0.281159 -0.739247 -0.329422 0.587363 -0.650679 0.025724 -0.758917 0.291786 -0.914227 -0.281159 -0.701055 -0.404385 0.587363 -0.649792 -0.042614 -0.758917 0.385996 -0.878611 -0.281159 -0.654811 -0.475633 0.587363 -0.641747 -0.110482 -0.758917 0.475955 -0.833317 -0.281159 -0.601355 -0.541643 0.587363 -0.626633 -0.177133 -0.758917 0.560671 -0.778844 -0.281159 -0.541275 -0.601686 0.587363 -0.604859 -0.241228 -0.758917 0.638496 -0.716431 -0.281159 -0.475888 -0.654626 0.587363 -0.576245 -0.303293 -0.758917 0.710066 -0.645566 -0.281159 -0.404658 -0.700898 0.587363 -0.541284 -0.362018 -0.758917 0.773816 -0.567591 -0.281159 -0.328970 -0.739448 0.587363 -0.500777 -0.416254 -0.758917 0.828558 -0.484192 -0.281159 -0.250428 -0.769604 0.587363 -0.454393 -0.466446 -0.758917 0.874741 -0.394687 -0.281159 -0.168389 -0.791612 0.587363 -0.403004 -0.511501 -0.758917 0.911290 -0.300834 -0.281159 -0.084495 -0.804901 0.587363 -0.347624 -0.550639 -0.758917 0.937634 -0.204431 -0.281159 -0.000330 -0.809324 0.587363 -0.287998 -0.584039 -0.758917 0.953896 -0.105035 -0.281159 0.084495 -0.804901 0.587363 -0.225201 -0.611007 -0.758917 0.959651 -0.004481 -0.281159 0.168389 -0.791612 0.587363 -0.159922 -0.631245 -0.758917 0.954835 0.096122 -0.281159 0.250428 -0.769604 0.587363 -0.093527 -0.644436 -0.758917 0.939698 0.194726 -0.281159 0.328970 -0.739448 0.587363 -0.025471 -0.650689 -0.758917 0.914113 0.292141 -0.281159 0.404658 -0.700898 0.587363 0.042867 -0.649775 -0.758917 0.878461 0.386338 -0.281159 0.475888 -0.654626 0.587363 0.110090 -0.641814 -0.758917 0.833607 0.475446 -0.281159 0.541275 -0.601686 0.587363 0.176750 -0.626741 -0.758917 0.779186 0.560195 -0.281159 0.601355 -0.541643 0.587363 0.241464 -0.604765 -0.758917 0.716182 0.638774 -0.281159 0.654811 -0.475633 0.587363 0.303517 -0.576127 -0.758917 0.645290 0.710317 -0.281159 0.701055 -0.404385 0.587363 0.361687 -0.541505 -0.758917 0.568064 0.773469 -0.281159 0.739247 -0.329422 0.587363 0.416448 -0.500615 -0.758917 0.483870 0.828746 -0.281159 0.769702 -0.250129 0.587363 0.466623 -0.454212 -0.758917 0.394347 0.874895 -0.281159 0.791678 -0.168081 0.587363 0.511255 -0.403316 -0.758917 0.301391 0.911106 -0.281159 0.804849 -0.084987 0.587363 0.550709 -0.347512 -0.758917 0.204240 0.937676 -0.281159 0.809324 -0.000165 0.587363 0.584098 -0.287879 -0.758917 0.104840 0.953917 -0.281159 0.804884 0.084659 0.587363 0.611053 -0.225076 -0.758917 0.004286 0.959652 -0.281159 0.791578 0.168550 0.587363 0.631117 -0.160425 -0.758917 -0.095361 0.954912 -0.281159 0.769803 0.249815 0.587363 0.644455 -0.093396 -0.758917 -0.194918 0.939658 -0.281159 0.739381 0.329121 0.587363 0.650694 -0.025338 -0.758917 -0.292327 0.914054 -0.281159 0.700815 0.404800 0.587363 0.649766 0.042999 -0.758917 -0.386517 0.878382 -0.281159 0.654529 0.476021 0.587363 0.641792 0.110220 -0.758917 -0.475615 0.833511 -0.281159 0.601576 0.541398 0.587363 0.626705 0.176878 -0.758917 -0.560354 0.779072 -0.281159 0.541520 0.601466 0.587363 0.604716 0.241587 -0.758917 -0.638920 0.716052 -0.281159 0.475500 0.654908 0.587363 0.576368 0.303059 -0.758917 -0.709803 0.645855 -0.281159 0.404943 0.700733 0.587363 0.541431 0.361797 -0.758917 -0.773584 0.567906 -0.281159 0.329271 0.739314 0.587363 0.500531 0.416550 -0.758917 -0.828844 0.483701 -0.281159 0.249972 0.769753 0.587363 0.454116 0.466715 -0.758917 -0.874975 0.394168 -0.281159 0.167920 0.791712 0.587363 0.403212 0.511337 -0.758917 -0.911167 0.301205 -0.281159 0.084823 0.804867 0.587363 0.347399 0.550780 -0.758917 -0.937717 0.204049 -0.281159 0.000000 0.809324 0.587363 0.287760 0.584157 -0.758917 -0.953939 0.104646 -0.281159 -0.084823 0.804867 0.587363 0.225563 0.610874 -0.758917 -0.959648 0.005050 -0.281159 -0.167920 0.791712 0.587363 0.160297 0.631150 -0.758917 -0.954892 -0.095556 -0.281159 -0.249972 0.769753 0.587363 0.093265 0.644474 -0.758917 -0.939618 -0.195109 -0.281159 -0.329271 0.739314 0.587363 0.025206 0.650699 -0.758917 -0.913994 -0.292513 -0.281159 -0.404943 0.700733 0.587363 -0.042481 0.649800 -0.758917 -0.878689 -0.385817 -0.281159 -0.475500 0.654908 0.587363 -0.110351 0.641769 -0.758917 -0.833414 -0.475785 -0.281159 -0.541520 0.601466 0.587363 -0.177005 0.626669 -0.758917 -0.778958 -0.560512 -0.281159 -0.601576 0.541398 0.587363 -0.241105 0.604908 -0.758917 -0.716561 -0.638350 -0.281159 -0.654529 0.476021 0.587363 -0.303176 0.576307 -0.758917 -0.645711 -0.709935 -0.281159 -0.700815 0.404800 0.587363 -0.361907 0.541358 -0.758917 -0.567748 -0.773700 -0.281159 -0.739381 0.329121 0.587363 -0.416652 0.500446 -0.758917 -0.483532 -0.828943 -0.281159 -0.769803 0.249815 0.587363 -0.466354 0.454488 -0.758917 -0.394865 -0.874661 -0.281159 -0.791578 0.168550 0.587363 -0.511419 0.403108 -0.758917 -0.301020 -0.911228 -0.281159 -0.804884 0.084659 0.587363 0.585447 0.390271 -0.710592 0.248294 -0.920700 -0.301101 -0.771753 -0.000157 -0.635923 0.541319 0.449481 -0.710592 0.343422 -0.889606 -0.301101 -0.767486 -0.081042 -0.635923 0.491733 0.503248 -0.710592 0.433919 -0.849148 -0.301101 -0.754926 -0.160278 -0.635923 0.436281 0.552013 -0.710592 0.520526 -0.798994 -0.301101 -0.733970 -0.238517 -0.635923 0.376023 0.594698 -0.710592 0.601400 -0.740038 -0.301101 -0.704929 -0.314129 -0.635923 0.312254 0.630521 -0.710592 0.674976 -0.673607 -0.301101 -0.668510 -0.385612 -0.635923 0.244451 0.659775 -0.710592 0.741857 -0.599155 -0.301101 -0.624413 -0.453553 -0.635923 0.173956 0.681762 -0.710592 0.800567 -0.518103 -0.301101 -0.573439 -0.516498 -0.635923 0.101544 0.696239 -0.710592 0.850459 -0.431345 -0.301101 -0.516148 -0.573754 -0.635923 0.028717 0.703018 -0.710592 0.890643 -0.340725 -0.301101 -0.453796 -0.624237 -0.635923 -0.045122 0.702156 -0.710592 0.921448 -0.245503 -0.301101 -0.385872 -0.668360 -0.635923 -0.118465 0.693560 -0.710592 0.942104 -0.147577 -0.301101 -0.313698 -0.705121 -0.635923 -0.189825 0.677514 -0.710592 0.952334 -0.048977 -0.301101 -0.238803 -0.733877 -0.635923 -0.259788 0.653888 -0.710592 0.952222 0.051104 -0.301101 -0.160572 -0.754863 -0.635923 -0.326889 0.623059 -0.710592 0.941622 0.150622 -0.301101 -0.080573 -0.767535 -0.635923 -0.389913 0.585685 -0.710592 0.920852 0.247731 -0.301101 -0.000314 -0.771753 -0.635923 -0.449150 0.541594 -0.710592 0.889816 0.342879 -0.301101 0.080573 -0.767535 -0.635923 -0.503439 0.491537 -0.710592 0.848979 0.434250 -0.301101 0.160572 -0.754863 -0.635923 -0.552183 0.436066 -0.710592 0.798791 0.520837 -0.301101 0.238803 -0.733877 -0.635923 -0.594469 0.376386 -0.710592 0.740406 0.600947 -0.301101 0.313698 -0.705121 -0.635923 -0.630643 0.312009 -0.710592 0.673344 0.675238 -0.301101 0.385872 -0.668360 -0.635923 -0.659870 0.244194 -0.710592 0.598866 0.742090 -0.301101 0.453796 -0.624237 -0.635923 -0.681655 0.174372 -0.710592 0.518592 0.800250 -0.301101 0.516148 -0.573754 -0.635923 -0.696176 0.101969 -0.710592 0.431864 0.850195 -0.301101 0.573439 -0.516498 -0.635923 -0.703029 0.028444 -0.710592 0.340379 0.890775 -0.301101 0.624413 -0.453553 -0.635923 -0.702139 -0.045396 -0.710592 0.245145 0.921543 -0.301101 0.668510 -0.385612 -0.635923 -0.693632 -0.118041 -0.710592 0.148152 0.942013 -0.301101 0.704929 -0.314129 -0.635923 -0.677441 -0.190089 -0.710592 0.048607 0.952353 -0.301101 0.733970 -0.238517 -0.635923 -0.653787 -0.260042 -0.710592 -0.051474 0.952202 -0.301101 0.754926 -0.160278 -0.635923 -0.623259 -0.326509 -0.710592 -0.150047 0.941714 -0.301101 0.767486 -0.081042 -0.635923 -0.585606 -0.390032 -0.710592 -0.247919 0.920801 -0.301101 0.771753 -0.000157 -0.635923 -0.541502 -0.449260 -0.710592 -0.343060 0.889746 -0.301101 0.767519 0.080729 -0.635923 -0.491434 -0.503539 -0.710592 -0.434422 0.848891 -0.301101 0.754831 0.160726 -0.635923 -0.436505 -0.551836 -0.710592 -0.520201 0.799206 -0.301101 0.734067 0.238218 -0.635923 -0.376265 -0.594545 -0.710592 -0.601098 0.740283 -0.301101 0.705057 0.313842 -0.635923 -0.311880 -0.630706 -0.710592 -0.675375 0.673207 -0.301101 0.668281 0.386008 -0.635923 -0.244060 -0.659920 -0.710592 -0.742212 0.598715 -0.301101 0.624144 0.453923 -0.635923 -0.174233 -0.681691 -0.710592 -0.800356 0.518429 -0.301101 0.573649 0.516265 -0.635923 -0.101828 -0.696197 -0.710592 -0.850283 0.431691 -0.301101 0.516381 0.573544 -0.635923 -0.028300 -0.703035 -0.710592 -0.890845 0.340198 -0.301101 0.453426 0.624505 -0.635923 0.044836 -0.702175 -0.710592 -0.921348 0.245879 -0.301101 0.386144 0.668203 -0.635923 0.118182 -0.693608 -0.710592 -0.942044 0.147961 -0.301101 0.313985 0.704993 -0.635923 0.190227 -0.677402 -0.710592 -0.952363 0.048413 -0.301101 0.238368 0.734018 -0.635923 0.260176 -0.653734 -0.710592 -0.952192 -0.051668 -0.301101 0.160125 0.754958 -0.635923 0.326636 -0.623192 -0.710592 -0.941683 -0.150239 -0.301101 0.080885 0.767502 -0.635923 0.390152 -0.585526 -0.710592 -0.920751 -0.248106 -0.301101 0.000000 0.771753 -0.635923 0.449370 -0.541411 -0.710592 -0.889676 -0.343241 -0.301101 -0.080885 0.767502 -0.635923 0.503148 -0.491835 -0.710592 -0.849236 -0.433746 -0.301101 -0.160125 0.754958 -0.635923 0.551924 -0.436393 -0.710592 -0.799100 -0.520364 -0.301101 -0.238368 0.734018 -0.635923 0.594622 -0.376144 -0.710592 -0.740161 -0.601249 -0.301101 -0.313985 0.704993 -0.635923 0.630770 -0.311752 -0.710592 -0.673069 -0.675512 -0.301101 -0.386144 0.668203 -0.635923 0.659725 -0.244585 -0.710592 -0.599306 -0.741735 -0.301101 -0.453426 0.624505 -0.635923 0.681726 -0.174094 -0.710592 -0.518266 -0.800462 -0.301101 -0.516381 0.573544 -0.635923 0.696218 -0.101686 -0.710592 -0.431518 -0.850371 -0.301101 -0.573649 0.516265 -0.635923 0.703012 -0.028860 -0.710592 -0.340907 -0.890573 -0.301101 -0.624144 0.453923 -0.635923 0.702165 0.044979 -0.710592 -0.245691 -0.921398 -0.301101 -0.668281 0.386008 -0.635923 0.693584 0.118324 -0.710592 -0.147769 -0.942074 -0.301101 -0.705057 0.313842 -0.635923 0.677363 0.190365 -0.710592 -0.048219 -0.952372 -0.301101 -0.734067 0.238218 -0.635923 0.653941 0.259655 -0.710592 0.050910 -0.952232 -0.301101 -0.754831 0.160726 -0.635923 0.623126 0.326763 -0.710592 0.150430 -0.941652 -0.301101 -0.767519 0.080729 -0.635923 0.152537 0.584152 -0.797182 0.110025 -0.811644 -0.573697 -0.982154 -0.000200 -0.188077 0.090473 0.596922 -0.797182 0.194485 -0.795643 -0.573697 -0.976724 -0.103136 -0.188077 0.028017 0.603089 -0.797182 0.276032 -0.771154 -0.573697 -0.960740 -0.203975 -0.188077 -0.035346 0.602703 -0.797182 0.355334 -0.737977 -0.573697 -0.934071 -0.303544 -0.188077 -0.098319 0.595680 -0.797182 0.430723 -0.696671 -0.573697 -0.897113 -0.399769 -0.188077 -0.159627 0.582254 -0.797182 0.500719 -0.648192 -0.573697 -0.850765 -0.490741 -0.188077 -0.219772 0.562318 -0.797182 0.565896 -0.592143 -0.573697 -0.794646 -0.577204 -0.188077 -0.277496 0.536187 -0.797182 0.624840 -0.529572 -0.573697 -0.729774 -0.657310 -0.188077 -0.332164 0.504150 -0.797182 0.676902 -0.461168 -0.573697 -0.656864 -0.730176 -0.188077 -0.382707 0.466944 -0.797182 0.721120 -0.388405 -0.573697 -0.577514 -0.794421 -0.188077 -0.429538 0.424261 -0.797182 0.757856 -0.310688 -0.573697 -0.491072 -0.850574 -0.188077 -0.471638 0.376906 -0.797182 0.786244 -0.229548 -0.573697 -0.399221 -0.897357 -0.188077 -0.508217 0.325908 -0.797182 0.805826 -0.146686 -0.573697 -0.303907 -0.933953 -0.188077 -0.539576 0.270848 -0.797182 0.816762 -0.061421 -0.573697 -0.204349 -0.960661 -0.188077 -0.564991 0.212805 -0.797182 0.818701 0.024519 -0.573697 -0.102539 -0.976787 -0.188077 -0.584058 0.152894 -0.797182 0.811711 0.109529 -0.573697 -0.000400 -0.982154 -0.188077 -0.596866 0.090838 -0.797182 0.795762 0.193999 -0.573697 0.102539 -0.976787 -0.188077 -0.603099 0.027782 -0.797182 0.771047 0.276332 -0.573697 0.204349 -0.960661 -0.188077 -0.602690 -0.035580 -0.797182 0.737838 0.355621 -0.573697 0.303907 -0.933953 -0.188077 -0.595740 -0.097955 -0.797182 0.696934 0.430297 -0.573697 0.399221 -0.897357 -0.188077 -0.582192 -0.159853 -0.797182 0.647997 0.500971 -0.573697 0.491072 -0.850574 -0.188077 -0.562232 -0.219991 -0.797182 0.591923 0.566126 -0.573697 0.577514 -0.794421 -0.188077 -0.536356 -0.277169 -0.797182 0.529954 0.624517 -0.573697 0.656864 -0.730176 -0.188077 -0.504353 -0.331856 -0.797182 0.461581 0.676620 -0.573697 0.729774 -0.657310 -0.188077 -0.466795 -0.382888 -0.797182 0.388125 0.721271 -0.573697 0.794646 -0.577204 -0.188077 -0.424094 -0.429703 -0.797182 0.310393 0.757977 -0.573697 0.850765 -0.490741 -0.188077 -0.377194 -0.471408 -0.797182 0.230028 0.786104 -0.573697 0.897113 -0.399769 -0.188077 -0.325710 -0.508344 -0.797182 0.146372 0.805883 -0.573697 0.934071 -0.303544 -0.188077 -0.270638 -0.539681 -0.797182 0.061103 0.816785 -0.573697 0.960740 -0.203975 -0.188077 -0.213150 -0.564861 -0.797182 -0.024019 0.818716 -0.573697 0.976724 -0.103136 -0.188077 -0.152775 -0.584090 -0.797182 -0.109694 0.811689 -0.573697 0.982154 -0.000200 -0.188077 -0.090716 -0.596885 -0.797182 -0.194161 0.795722 -0.573697 0.976766 0.102738 -0.188077 -0.027659 -0.603105 -0.797182 -0.276489 0.770990 -0.573697 0.960619 0.204544 -0.188077 0.035100 -0.602718 -0.797182 -0.355034 0.738121 -0.573697 0.934194 0.303163 -0.188077 0.098076 -0.595720 -0.797182 -0.430439 0.696846 -0.573697 0.897276 0.399404 -0.188077 0.159972 -0.582160 -0.797182 -0.501103 0.647895 -0.573697 0.850474 0.491245 -0.188077 0.220105 -0.562187 -0.797182 -0.566247 0.591808 -0.573697 0.794304 0.577675 -0.188077 0.277278 -0.536300 -0.797182 -0.624624 0.529827 -0.573697 0.730042 0.657013 -0.188077 0.331959 -0.504286 -0.797182 -0.676714 0.461444 -0.573697 0.657162 0.729908 -0.188077 0.382983 -0.466717 -0.797182 -0.721350 0.387978 -0.573697 0.577043 0.794763 -0.188077 0.429365 -0.424436 -0.797182 -0.757729 0.310996 -0.573697 0.491418 0.850374 -0.188077 0.471485 -0.377098 -0.797182 -0.786151 0.229868 -0.573697 0.399587 0.897194 -0.188077 0.508410 -0.325606 -0.797182 -0.805913 0.146208 -0.573697 0.303354 0.934133 -0.188077 0.539736 -0.270528 -0.797182 -0.816798 0.060937 -0.573697 0.203779 0.960782 -0.188077 0.564904 -0.213035 -0.797182 -0.818711 -0.024186 -0.573697 0.102937 0.976745 -0.188077 0.584121 -0.152656 -0.797182 -0.811667 -0.109860 -0.573697 0.000000 0.982154 -0.188077 0.596903 -0.090595 -0.797182 -0.795683 -0.194323 -0.573697 -0.102937 0.976745 -0.188077 0.603083 -0.028139 -0.797182 -0.771210 -0.275875 -0.573697 -0.203779 0.960782 -0.188077 0.602711 0.035223 -0.797182 -0.738049 -0.355184 -0.573697 -0.303354 0.934133 -0.188077 0.595700 0.098197 -0.797182 -0.696759 -0.430581 -0.573697 -0.399587 0.897194 -0.188077 0.582127 0.160090 -0.797182 -0.647793 -0.501235 -0.573697 -0.491418 0.850374 -0.188077 0.562362 0.219657 -0.797182 -0.592259 -0.565775 -0.573697 -0.577043 0.794763 -0.188077 0.536243 0.277387 -0.797182 -0.529700 -0.624732 -0.573697 -0.657162 0.729908 -0.188077 0.504218 0.332062 -0.797182 -0.461306 -0.676808 -0.573697 -0.730042 0.657013 -0.188077 0.467021 0.382612 -0.797182 -0.388552 -0.721040 -0.573697 -0.794304 0.577675 -0.188077 0.424349 0.429452 -0.797182 -0.310842 -0.757792 -0.573697 -0.850474 0.491245 -0.188077 0.377002 0.471561 -0.797182 -0.229708 -0.786197 -0.573697 -0.897276 0.399404 -0.188077 0.325503 0.508477 -0.797182 -0.146044 -0.805943 -0.573697 -0.934194 0.303163 -0.188077 0.270958 0.539521 -0.797182 -0.061588 -0.816749 -0.573697 -0.960619 0.204544 -0.188077 0.212920 0.564948 -0.797182 0.024353 -0.818706 -0.573697 -0.976766 0.102738 -0.188077 0.282130 0.499362 0.819170 -0.162821 0.866393 -0.472072 -0.945459 -0.000193 0.325742 0.228239 0.526181 0.819170 -0.252729 0.844557 -0.472072 -0.940231 -0.099282 0.325742 0.172382 0.547032 0.819170 -0.339039 0.813757 -0.472072 -0.924845 -0.196354 0.325742 0.114099 0.562087 0.819170 -0.422459 0.773742 -0.472072 -0.899172 -0.292203 0.325742 0.054560 0.570949 0.819170 -0.501226 0.725204 -0.472072 -0.863595 -0.384833 0.325742 -0.005006 0.573528 0.819170 -0.573803 0.669252 -0.472072 -0.818978 -0.472406 0.325742 -0.065089 0.569845 0.819170 -0.640785 0.605427 -0.472072 -0.764956 -0.555639 0.325742 -0.124454 0.559885 0.819170 -0.700709 0.534934 -0.472072 -0.702508 -0.632751 0.325742 -0.182448 0.543758 0.819170 -0.752915 0.458549 -0.472072 -0.632322 -0.702895 0.325742 -0.237912 0.521879 0.819170 -0.796450 0.377909 -0.472072 -0.555936 -0.764740 0.325742 -0.291298 0.494070 0.819170 -0.831671 0.292354 -0.472072 -0.472724 -0.818794 0.325742 -0.341476 0.460819 0.819170 -0.857732 0.203578 -0.472072 -0.384305 -0.863830 0.325742 -0.387470 0.422880 0.819170 -0.874231 0.113435 -0.472072 -0.292553 -0.899058 0.325742 -0.429656 0.379941 0.819170 -0.881305 0.021185 -0.472072 -0.196714 -0.924768 0.325742 -0.467111 0.332818 0.819170 -0.878672 -0.071299 -0.472072 -0.098708 -0.940292 0.325742 -0.499190 0.282435 0.819170 -0.866493 -0.162292 -0.472072 -0.000385 -0.945459 0.325742 -0.526042 0.228561 0.819170 -0.844711 -0.252212 -0.472072 0.098708 -0.940292 0.325742 -0.547099 0.172169 0.819170 -0.813625 -0.339355 -0.472072 0.196714 -0.924768 0.325742 -0.562131 0.113881 0.819170 -0.773577 -0.422760 -0.472072 0.292553 -0.899058 0.325742 -0.570916 0.054909 0.819170 -0.725510 -0.500783 -0.472072 0.384305 -0.863830 0.325742 -0.573527 -0.005229 0.819170 -0.669028 -0.574063 -0.472072 0.472724 -0.818794 0.325742 -0.569820 -0.065310 0.819170 -0.605178 -0.641021 -0.472072 0.555936 -0.764740 0.325742 -0.559961 -0.124112 0.819170 -0.535362 -0.700382 -0.472072 0.632322 -0.702895 0.325742 -0.543869 -0.182116 0.819170 -0.459008 -0.752635 -0.472072 0.702508 -0.632751 0.325742 -0.521787 -0.238115 0.819170 -0.377599 -0.796597 -0.472072 0.764956 -0.555639 0.325742 -0.493957 -0.291490 0.819170 -0.292030 -0.831785 -0.472072 0.818978 -0.472406 0.325742 -0.461028 -0.341194 0.819170 -0.204103 -0.857607 -0.472072 0.863595 -0.384833 0.325742 -0.422729 -0.387634 0.819170 -0.113095 -0.874275 -0.472072 0.899172 -0.292203 0.325742 -0.379774 -0.429804 0.819170 -0.020842 -0.881314 -0.472072 0.924845 -0.196354 0.325742 -0.333103 -0.466907 0.819170 0.070762 -0.878715 -0.472072 0.940231 -0.099282 0.325742 -0.282333 -0.499247 0.819170 0.162468 -0.866459 -0.472072 0.945459 -0.000193 0.325742 -0.228453 -0.526088 0.819170 0.252384 -0.844660 -0.472072 0.940272 0.098899 0.325742 -0.172057 -0.547135 0.819170 0.339521 -0.813556 -0.472072 0.924728 0.196902 0.325742 -0.114328 -0.562040 0.819170 0.422144 -0.773914 -0.472072 0.899291 0.291836 0.325742 -0.054793 -0.570927 0.819170 0.500931 -0.725408 -0.472072 0.863751 0.384481 0.325742 0.005346 -0.573525 0.819170 0.574200 -0.668912 -0.472072 0.818698 0.472891 0.325742 0.065426 -0.569806 0.819170 0.641144 -0.605047 -0.472072 0.764627 0.556092 0.325742 0.124226 -0.559936 0.819170 0.700491 -0.535219 -0.472072 0.702766 0.632465 0.325742 0.182227 -0.543832 0.819170 0.752728 -0.458855 -0.472072 0.632608 0.702637 0.325742 0.238221 -0.521738 0.819170 0.796674 -0.377437 -0.472072 0.555483 0.765069 0.325742 0.291097 -0.494189 0.819170 0.831552 -0.292693 -0.472072 0.473058 0.818602 0.325742 0.341288 -0.460958 0.819170 0.857649 -0.203928 -0.472072 0.384657 0.863673 0.325742 0.387720 -0.422650 0.819170 0.874298 -0.112917 -0.472072 0.292020 0.899231 0.325742 0.429882 -0.379686 0.819170 0.881318 -0.020662 -0.472072 0.196165 0.924884 0.325742 0.466975 -0.333008 0.819170 0.878701 0.070941 -0.472072 0.099091 0.940252 0.325742 0.499305 -0.282231 0.819170 0.866426 0.162645 -0.472072 0.000000 0.945459 0.325742 0.526135 -0.228346 0.819170 0.844608 0.252556 -0.472072 -0.099091 0.940252 0.325742 0.546997 -0.172493 0.819170 0.813826 0.338873 -0.472072 -0.196165 0.924884 0.325742 0.562063 -0.114214 0.819170 0.773828 0.422301 -0.472072 -0.292020 0.899231 0.325742 0.570938 -0.054677 0.819170 0.725306 0.501078 -0.472072 -0.384657 0.863673 0.325742 0.573524 0.005463 0.819170 0.668795 0.574336 -0.472072 -0.473058 0.818602 0.325742 0.569858 0.064973 0.819170 0.605558 0.640662 -0.472072 -0.555483 0.765069 0.325742 0.559910 0.124340 0.819170 0.535077 0.700600 -0.472072 -0.632608 0.702637 0.325742 0.543795 0.182338 0.819170 0.458702 0.752822 -0.472072 -0.702766 0.632465 0.325742 0.521928 0.237805 0.819170 0.378071 0.796373 -0.472072 -0.764627 0.556092 0.325742 0.494130 0.291197 0.819170 0.292523 0.831612 -0.472072 -0.818698 0.472891 0.325742 0.460889 0.341382 0.819170 0.203753 0.857690 -0.472072 -0.863751 0.384481 0.325742 0.422571 0.387806 0.819170 0.112739 0.874321 -0.472072 -0.899291 0.291836 0.325742 0.380029 0.429579 0.819170 0.021364 0.881301 -0.472072 -0.924728 0.196902 0.325742 0.332913 0.467043 0.819170 -0.071120 0.878686 -0.472072 -0.940272 0.098899 0.325742 0.967355 0.237702 -0.087880 0.236729 -0.971338 -0.021487 -0.090469 -0.000018 -0.995899 0.937114 0.337778 -0.087880 0.337228 -0.941178 -0.021487 -0.089968 -0.009500 -0.995899 0.896985 0.433238 -0.087880 0.433112 -0.901084 -0.021487 -0.088496 -0.018789 -0.995899 0.846639 0.524862 -0.087880 0.525167 -0.850728 -0.021487 -0.086040 -0.027960 -0.995899 0.786967 0.610705 -0.087880 0.611437 -0.791001 -0.021487 -0.082635 -0.036824 -0.995899 0.719315 0.689103 -0.087880 0.690249 -0.723253 -0.021487 -0.078366 -0.045203 -0.995899 0.643131 0.760697 -0.087880 0.762250 -0.646926 -0.021487 -0.073197 -0.053168 -0.995899 0.559863 0.823912 -0.087880 0.825854 -0.563474 -0.021487 -0.067221 -0.060546 -0.995899 0.470427 0.878052 -0.087880 0.880362 -0.473815 -0.021487 -0.060505 -0.067258 -0.995899 0.376733 0.922144 -0.087880 0.924793 -0.379863 -0.021487 -0.053196 -0.073176 -0.995899 0.278010 0.956550 -0.087880 0.959512 -0.280846 -0.021487 -0.045234 -0.078348 -0.995899 0.176226 0.980419 -0.087880 0.983663 -0.178735 -0.021487 -0.036773 -0.082658 -0.995899 0.073494 0.993416 -0.087880 0.996903 -0.075653 -0.021487 -0.027994 -0.086029 -0.995899 -0.031028 0.995648 -0.087880 0.999341 0.029246 -0.021487 -0.018823 -0.088489 -0.995899 -0.135208 0.986912 -0.087880 0.990772 0.133823 -0.021487 -0.009445 -0.089974 -0.995899 -0.237111 0.967500 -0.087880 0.971483 0.236135 -0.021487 -0.000037 -0.090469 -0.995899 -0.337206 0.937320 -0.087880 0.941384 0.336653 -0.021487 0.009445 -0.089974 -0.995899 -0.433587 0.896816 -0.087880 0.900915 0.433463 -0.021487 0.018823 -0.088489 -0.995899 -0.525191 0.846434 -0.087880 0.850524 0.525498 -0.021487 0.027994 -0.086029 -0.995899 -0.610224 0.787340 -0.087880 0.791375 0.610954 -0.021487 0.036773 -0.082658 -0.995899 -0.689382 0.719047 -0.087880 0.722984 0.690530 -0.021487 0.045234 -0.078348 -0.995899 -0.760947 0.642835 -0.087880 0.646630 0.762501 -0.021487 0.053196 -0.073176 -0.995899 -0.823570 0.560366 -0.087880 0.563979 0.825510 -0.021487 0.060505 -0.067258 -0.995899 -0.877764 0.470964 -0.087880 0.474353 0.880072 -0.021487 0.067221 -0.060546 -0.995899 -0.922291 0.376374 -0.087880 0.379503 0.924941 -0.021487 0.073197 -0.053168 -0.995899 -0.956658 0.277638 -0.087880 0.280472 0.959622 -0.021487 0.078366 -0.045203 -0.995899 -0.980311 0.176825 -0.087880 0.179336 0.983553 -0.021487 0.082635 -0.036824 -0.995899 -0.993445 0.073108 -0.087880 0.075265 0.996932 -0.021487 0.086040 -0.027960 -0.995899 -0.995636 -0.031415 -0.087880 -0.029635 0.999330 -0.021487 0.088496 -0.018789 -0.995899 -0.986995 -0.134605 -0.087880 -0.133218 0.990854 -0.021487 0.089968 -0.009500 -0.995899 -0.967451 -0.237308 -0.087880 -0.236333 0.971435 -0.021487 0.090469 -0.000018 -0.995899 -0.937252 -0.337397 -0.087880 -0.336845 0.941315 -0.021487 0.089972 0.009463 -0.995899 -0.896728 -0.433769 -0.087880 -0.433646 0.900827 -0.021487 0.088485 0.018841 -0.995899 -0.846852 -0.524517 -0.087880 -0.524820 0.850942 -0.021487 0.086051 0.027925 -0.995899 -0.787215 -0.610385 -0.087880 -0.611115 0.791250 -0.021487 0.082650 0.036790 -0.995899 -0.718907 -0.689529 -0.087880 -0.690678 0.722843 -0.021487 0.078339 0.045250 -0.995899 -0.642680 -0.761078 -0.087880 -0.762633 0.646474 -0.021487 0.073165 0.053211 -0.995899 -0.560198 -0.823684 -0.087880 -0.825625 0.563810 -0.021487 0.067246 0.060519 -0.995899 -0.470785 -0.877860 -0.087880 -0.880169 0.474174 -0.021487 0.060533 0.067234 -0.995899 -0.376186 -0.922367 -0.087880 -0.925018 0.379314 -0.021487 0.053153 0.073208 -0.995899 -0.278400 -0.956436 -0.087880 -0.959398 0.281236 -0.021487 0.045266 0.078330 -0.995899 -0.176625 -0.980347 -0.087880 -0.983590 0.179136 -0.021487 0.036807 0.082643 -0.995899 -0.072905 -0.993460 -0.087880 -0.996947 0.075062 -0.021487 0.027943 0.086045 -0.995899 0.031618 -0.995629 -0.087880 -0.999324 -0.029839 -0.021487 0.018771 0.088500 -0.995899 0.134806 -0.986967 -0.087880 -0.990827 -0.133420 -0.021487 0.009482 0.089970 -0.995899 0.237505 -0.967403 -0.087880 -0.971386 -0.236531 -0.021487 0.000000 0.090469 -0.995899 0.337588 -0.937183 -0.087880 -0.941246 -0.337036 -0.021487 -0.009482 0.089970 -0.995899 0.433055 -0.897073 -0.087880 -0.901172 -0.432929 -0.021487 -0.018771 0.088500 -0.995899 0.524690 -0.846745 -0.087880 -0.850835 -0.524994 -0.021487 -0.027943 0.086045 -0.995899 0.610545 -0.787091 -0.087880 -0.791126 -0.611276 -0.021487 -0.036807 0.082643 -0.995899 0.689675 -0.718767 -0.087880 -0.722703 -0.690825 -0.021487 -0.045266 0.078330 -0.995899 0.760566 -0.643286 -0.087880 -0.647081 -0.762118 -0.021487 -0.053153 0.073208 -0.995899 0.823798 -0.560030 -0.087880 -0.563642 -0.825739 -0.021487 -0.060533 0.067234 -0.995899 0.877956 -0.470606 -0.087880 -0.473995 -0.880266 -0.021487 -0.067246 0.060519 -0.995899 0.922067 -0.376920 -0.087880 -0.380051 -0.924716 -0.021487 -0.073165 0.053211 -0.995899 0.956493 -0.278205 -0.087880 -0.281041 -0.959455 -0.021487 -0.078339 0.045250 -0.995899 0.980383 -0.176426 -0.087880 -0.178935 -0.983626 -0.021487 -0.082650 0.036790 -0.995899 0.993474 -0.072703 -0.087880 -0.074859 -0.996963 -0.021487 -0.086051 0.027925 -0.995899 0.995654 0.030825 -0.087880 0.029043 -0.999347 -0.021487 -0.088485 0.018841 -0.995899 0.986940 0.135007 -0.087880 0.133622 -0.990799 -0.021487 -0.089972 0.009463 -0.995899 -0.257352 0.952281 -0.164105 -0.802735 -0.305222 -0.512305 -0.537947 -0.000110 0.842979 -0.355740 0.920064 -0.164105 -0.766324 -0.387673 -0.512305 -0.534973 -0.056490 0.842979 -0.449333 0.878163 -0.164105 -0.721938 -0.465133 -0.512305 -0.526218 -0.111721 0.842979 -0.538896 0.826233 -0.164105 -0.669213 -0.538236 -0.512305 -0.511611 -0.166258 0.842979 -0.622523 0.765202 -0.164105 -0.609116 -0.605410 -0.512305 -0.491368 -0.218962 0.842979 -0.698597 0.696442 -0.164105 -0.542976 -0.665372 -0.512305 -0.465982 -0.268790 0.842979 -0.767742 0.619389 -0.164105 -0.470250 -0.718616 -0.512305 -0.435245 -0.316147 0.842979 -0.828430 0.535513 -0.164105 -0.392344 -0.763943 -0.512305 -0.399713 -0.360023 0.842979 -0.879993 0.445738 -0.164105 -0.310116 -0.800857 -0.512305 -0.359779 -0.399933 0.842979 -0.921511 0.351975 -0.164105 -0.225302 -0.828723 -0.512305 -0.316317 -0.435122 0.842979 -0.953326 0.253456 -0.164105 -0.137205 -0.847773 -0.512305 -0.268971 -0.465878 0.842979 -0.974639 0.152144 -0.164105 -0.047596 -0.857484 -0.512305 -0.218662 -0.491502 0.842979 -0.985168 0.050143 -0.164105 0.041678 -0.857792 -0.512305 -0.166457 -0.511546 0.842979 -0.984997 -0.053386 -0.164105 0.131352 -0.848699 -0.512305 -0.111926 -0.526175 0.842979 -0.973977 -0.156327 -0.164105 0.219578 -0.830258 -0.512305 -0.056163 -0.535007 0.842979 -0.952438 -0.256770 -0.164105 0.304732 -0.802921 -0.512305 -0.000219 -0.537947 0.842979 -0.920281 -0.355178 -0.164105 0.387205 -0.766561 -0.512305 0.056163 -0.535007 0.842979 -0.877988 -0.449674 -0.164105 0.465414 -0.721757 -0.512305 0.111926 -0.526175 0.842979 -0.826023 -0.539217 -0.164105 0.538496 -0.669003 -0.512305 0.166457 -0.511546 0.842979 -0.765583 -0.622055 -0.164105 0.605037 -0.609486 -0.512305 0.218662 -0.491502 0.842979 -0.696170 -0.698868 -0.164105 0.665584 -0.542717 -0.512305 0.268971 -0.465878 0.842979 -0.619090 -0.767982 -0.164105 0.718799 -0.469970 -0.512305 0.316317 -0.435122 0.842979 -0.536019 -0.828102 -0.164105 0.763704 -0.392810 -0.512305 0.359779 -0.399933 0.842979 -0.446275 -0.879720 -0.164105 0.800667 -0.310605 -0.512305 0.399713 -0.360023 0.842979 -0.351617 -0.921648 -0.164105 0.828811 -0.224979 -0.512305 0.435245 -0.316147 0.842979 -0.253085 -0.953424 -0.164105 0.847826 -0.136875 -0.512305 0.465982 -0.268790 0.842979 -0.152740 -0.974546 -0.164105 0.857454 -0.048120 -0.512305 0.491368 -0.218962 0.842979 -0.049759 -0.985187 -0.164105 0.857775 0.042012 -0.512305 0.511611 -0.166258 0.842979 0.053769 -0.984976 -0.164105 0.848648 0.131682 -0.512305 0.526218 -0.111721 0.842979 0.155732 -0.974072 -0.164105 0.830392 0.219071 -0.512305 0.534973 -0.056490 0.842979 0.256964 -0.952386 -0.164105 0.802859 0.304895 -0.512305 0.537947 -0.000110 0.842979 0.355366 -0.920209 -0.164105 0.766482 0.387361 -0.512305 0.534996 0.056272 0.842979 0.449853 -0.877896 -0.164105 0.721662 0.465561 -0.512305 0.526152 0.112033 0.842979 0.538559 -0.826452 -0.164105 0.669432 0.537963 -0.512305 0.511678 0.166049 0.842979 0.622211 -0.765456 -0.164105 0.609363 0.605161 -0.512305 0.491457 0.218762 0.842979 0.699010 -0.696028 -0.164105 0.542582 0.665694 -0.512305 0.465823 0.269066 0.842979 0.768109 -0.618933 -0.164105 0.469824 0.718894 -0.512305 0.435057 0.316405 0.842979 0.828211 -0.535850 -0.164105 0.392655 0.763784 -0.512305 0.399860 0.359860 0.842979 0.879811 -0.446096 -0.164105 0.310442 0.800730 -0.512305 0.359942 0.399786 0.842979 0.921720 -0.351429 -0.164105 0.224810 0.828857 -0.512305 0.316059 0.435309 0.842979 0.953222 -0.253844 -0.164105 0.137550 0.847717 -0.512305 0.269160 0.465768 0.842979 0.974577 -0.152541 -0.164105 0.047946 0.857464 -0.512305 0.218862 0.491413 0.842979 0.985197 -0.049559 -0.164105 -0.042187 0.857767 -0.512305 0.166153 0.511645 0.842979 0.984965 0.053970 -0.164105 -0.131855 0.848621 -0.512305 0.111614 0.526241 0.842979 0.974041 0.155930 -0.164105 -0.219240 0.830348 -0.512305 0.056381 0.534984 0.842979 0.952334 0.257158 -0.164105 -0.305059 0.802797 -0.512305 0.000000 0.537947 0.842979 0.920137 0.355553 -0.164105 -0.387517 0.766403 -0.512305 -0.056381 0.534984 0.842979 0.878254 0.449154 -0.164105 -0.464986 0.722033 -0.512305 -0.111614 0.526241 0.842979 0.826343 0.538727 -0.164105 -0.538099 0.669322 -0.512305 -0.166153 0.511645 0.842979 0.765329 0.622367 -0.164105 -0.605286 0.609240 -0.512305 -0.218862 0.491413 0.842979 0.695886 0.699151 -0.164105 -0.665805 0.542446 -0.512305 -0.269160 0.465768 0.842979 0.619545 0.767615 -0.164105 -0.718520 0.470396 -0.512305 -0.316059 0.435309 0.842979 0.535681 0.828321 -0.164105 -0.763864 0.392499 -0.512305 -0.359942 0.399786 0.842979 0.445917 0.879902 -0.164105 -0.800793 0.310279 -0.512305 -0.399860 0.359860 0.842979 0.352163 0.921439 -0.164105 -0.828678 0.225470 -0.512305 -0.435057 0.316405 0.842979 0.253650 0.953274 -0.164105 -0.847745 0.137377 -0.512305 -0.465823 0.269066 0.842979 0.152343 0.974608 -0.164105 -0.857474 0.047771 -0.512305 -0.491457 0.218762 0.842979 0.049358 0.985207 -0.164105 -0.857758 -0.042361 -0.512305 -0.511678 0.166049 0.842979 -0.053186 0.985008 -0.164105 -0.848726 -0.131179 -0.512305 -0.526152 0.112033 0.842979 -0.156129 0.974009 -0.164105 -0.830303 -0.219409 -0.512305 -0.534996 0.056272 0.842979 -0.409802 0.692307 -0.593948 -0.392972 -0.721603 -0.569966 -0.823186 -0.000168 0.567772 -0.480103 0.645544 -0.593948 -0.315179 -0.758816 -0.569966 -0.818635 -0.086443 0.567772 -0.544525 0.592215 -0.593948 -0.234701 -0.787435 -0.569966 -0.805238 -0.170960 0.567772 -0.603594 0.531883 -0.593948 -0.150880 -0.807697 -0.569966 -0.782885 -0.254413 0.567772 -0.656015 0.465693 -0.593948 -0.065397 -0.819062 -0.569966 -0.751909 -0.335064 0.567772 -0.700815 0.395074 -0.593948 0.019986 -0.821425 -0.569966 -0.713063 -0.411311 0.567772 -0.738362 0.319448 -0.593948 0.105967 -0.814807 -0.569966 -0.666027 -0.483780 0.567772 -0.767776 0.240303 -0.593948 0.190781 -0.799213 -0.569966 -0.611655 -0.550920 0.567772 -0.788733 0.158511 -0.593948 0.273493 -0.774816 -0.569966 -0.550546 -0.611992 0.567772 -0.800927 0.075774 -0.593948 0.352451 -0.742238 -0.569966 -0.484039 -0.665839 0.567772 -0.804458 -0.008586 -0.593948 0.428302 -0.701210 -0.569966 -0.411589 -0.712903 0.567772 -0.799127 -0.092852 -0.593948 0.499435 -0.652459 -0.569966 -0.334605 -0.752114 0.567772 -0.785170 -0.175310 -0.593948 0.564470 -0.597087 -0.569966 -0.254718 -0.782786 0.567772 -0.762472 -0.256636 -0.593948 0.623940 -0.534638 -0.569966 -0.171273 -0.805171 0.567772 -0.731376 -0.335135 -0.593948 0.676538 -0.466300 -0.569966 -0.085942 -0.818688 0.567772 -0.692557 -0.409378 -0.593948 0.721363 -0.393413 -0.569966 -0.000335 -0.823186 0.567772 -0.645837 -0.479709 -0.593948 0.758623 -0.315643 -0.569966 0.085942 -0.818688 0.567772 -0.592003 -0.544755 -0.593948 0.787526 -0.234395 -0.569966 0.171273 -0.805171 0.567772 -0.531648 -0.603801 -0.593948 0.807755 -0.150566 -0.569966 0.254718 -0.782786 0.567772 -0.466094 -0.655730 -0.593948 0.819022 -0.065897 -0.569966 0.334605 -0.752114 0.567772 -0.394801 -0.700969 -0.593948 0.821417 0.020305 -0.569966 0.411589 -0.712903 0.567772 -0.319160 -0.738486 -0.593948 0.814765 0.106284 -0.569966 0.484039 -0.665839 0.567772 -0.240772 -0.767629 -0.593948 0.799329 0.190293 -0.569966 0.550546 -0.611992 0.567772 -0.158993 -0.788636 -0.593948 0.774983 0.273020 -0.569966 0.611655 -0.550920 0.567772 -0.075462 -0.800956 -0.593948 0.742101 0.352740 -0.569966 0.666027 -0.483780 0.567772 0.008899 -0.804454 -0.593948 0.701044 0.428575 -0.569966 0.713063 -0.411311 0.567772 0.092364 -0.799184 -0.593948 0.652765 0.499036 -0.569966 0.751909 -0.335064 0.567772 0.175615 -0.785102 -0.593948 0.596867 0.564702 -0.569966 0.782885 -0.254413 0.567772 0.256932 -0.762372 -0.593948 0.534395 0.624148 -0.569966 0.805238 -0.170960 0.567772 0.334688 -0.731580 -0.593948 0.466713 0.676253 -0.569966 0.818635 -0.086443 0.567772 0.409519 -0.692473 -0.593948 0.393266 0.721443 -0.569966 0.823186 -0.000168 0.567772 0.479840 -0.645739 -0.593948 0.315488 0.758687 -0.569966 0.818670 0.086109 0.567772 0.544876 -0.591892 -0.593948 0.234235 0.787574 -0.569966 0.805136 0.171437 0.567772 0.603378 -0.532129 -0.593948 0.151209 0.807635 -0.569966 0.782989 0.254094 0.567772 0.655825 -0.465960 -0.593948 0.065730 0.819035 -0.569966 0.752046 0.334758 0.567772 0.701049 -0.394659 -0.593948 -0.020473 0.821413 -0.569966 0.712819 0.411734 0.567772 0.738551 -0.319010 -0.593948 -0.106450 0.814744 -0.569966 0.665740 0.484175 0.567772 0.767678 -0.240615 -0.593948 -0.190455 0.799291 -0.569966 0.611880 0.550671 0.567772 0.788669 -0.158832 -0.593948 -0.273178 0.774928 -0.569966 0.550796 0.611768 0.567772 0.800972 -0.075299 -0.593948 -0.352891 0.742029 -0.569966 0.483645 0.666126 0.567772 0.804461 0.008259 -0.593948 -0.428016 0.701385 -0.569966 0.411879 0.712735 0.567772 0.799165 0.092526 -0.593948 -0.499169 0.652663 -0.569966 0.334911 0.751977 0.567772 0.785066 0.175775 -0.593948 -0.564824 0.596752 -0.569966 0.254254 0.782937 0.567772 0.762320 0.257088 -0.593948 -0.624257 0.534268 -0.569966 0.170796 0.805273 0.567772 0.731512 0.334837 -0.593948 -0.676348 0.466575 -0.569966 0.086276 0.818652 0.567772 0.692390 0.409661 -0.593948 -0.721523 0.393119 -0.569966 0.000000 0.823186 0.567772 0.645641 0.479972 -0.593948 -0.758751 0.315334 -0.569966 -0.086276 0.818652 0.567772 0.592326 0.544404 -0.593948 -0.787387 0.234862 -0.569966 -0.170796 0.805273 0.567772 0.532006 0.603486 -0.593948 -0.807666 0.151044 -0.569966 -0.254254 0.782937 0.567772 0.465827 0.655920 -0.593948 -0.819048 0.065563 -0.569966 -0.334911 0.751977 0.567772 0.394516 0.701130 -0.593948 -0.821409 -0.020640 -0.569966 -0.411879 0.712735 0.567772 0.319598 0.738297 -0.593948 -0.814828 -0.105801 -0.569966 -0.483645 0.666126 0.567772 0.240459 0.767727 -0.593948 -0.799252 -0.190618 -0.569966 -0.550796 0.611768 0.567772 0.158671 0.788701 -0.593948 -0.774872 -0.273336 -0.569966 -0.611880 0.550671 0.567772 0.075937 0.800912 -0.593948 -0.742310 -0.352300 -0.569966 -0.665740 0.484175 0.567772 -0.008423 0.804459 -0.593948 -0.701298 -0.428159 -0.569966 -0.712819 0.411734 0.567772 -0.092689 0.799146 -0.593948 -0.652561 -0.499302 -0.569966 -0.752046 0.334758 0.567772 -0.175935 0.785030 -0.593948 -0.596637 -0.564946 -0.569966 -0.782989 0.254094 0.567772 -0.256480 0.762524 -0.593948 -0.534765 -0.623831 -0.569966 -0.805136 0.171437 0.567772 -0.334986 0.731444 -0.593948 -0.466437 -0.676443 -0.569966 -0.818670 0.086109 0.567772 0.169699 0.843551 0.509534 -0.266889 0.537050 -0.800217 -0.948669 -0.000193 0.316271 0.080354 0.856691 0.509534 -0.321706 0.506120 -0.800217 -0.943424 -0.099619 0.316271 -0.009015 0.860403 0.509534 -0.372509 0.469988 -0.800217 -0.927985 -0.197020 0.316271 -0.099142 0.854720 0.509534 -0.419716 0.428358 -0.800217 -0.902225 -0.293195 0.316271 -0.188177 0.839622 0.509534 -0.462299 0.382010 -0.800217 -0.866527 -0.386140 0.316271 -0.274324 0.815550 0.509534 -0.499459 0.331953 -0.800217 -0.821759 -0.474010 0.316271 -0.358288 0.782307 0.509534 -0.531499 0.277778 -0.800217 -0.767553 -0.557525 0.316271 -0.438306 0.740448 0.509534 -0.557685 0.220543 -0.800217 -0.704893 -0.634900 0.316271 -0.513497 0.690432 0.509534 -0.577728 0.160879 -0.800217 -0.634469 -0.705281 0.316271 -0.582398 0.633394 0.509534 -0.591308 0.100034 -0.800217 -0.557824 -0.767336 0.316271 -0.645575 0.568866 0.509534 -0.598536 0.037510 -0.800217 -0.474329 -0.821574 0.316271 -0.701640 0.498072 0.509534 -0.599171 -0.025427 -0.800217 -0.385610 -0.866763 0.316271 -0.749556 0.422542 0.509534 -0.593294 -0.087491 -0.800217 -0.293546 -0.902111 0.316271 -0.789713 0.341656 0.509534 -0.580856 -0.149191 -0.800217 -0.197382 -0.927908 0.316271 -0.821172 0.257007 0.509534 -0.562021 -0.209247 -0.800217 -0.099043 -0.943484 0.316271 -0.843447 0.170214 0.509534 -0.537212 -0.266561 -0.800217 -0.000386 -0.948669 0.316271 -0.856641 0.080877 0.509534 -0.506316 -0.321397 -0.800217 0.099043 -0.943484 0.316271 -0.860400 -0.009350 0.509534 -0.469843 -0.372692 -0.800217 0.197382 -0.927908 0.316271 -0.854681 -0.099475 0.509534 -0.428195 -0.419883 -0.800217 0.293546 -0.902111 0.316271 -0.839737 -0.187664 0.509534 -0.382292 -0.462066 -0.800217 0.385610 -0.866763 0.316271 -0.815443 -0.274641 0.509534 -0.331759 -0.499588 -0.800217 0.474329 -0.821574 0.316271 -0.782168 -0.358593 0.509534 -0.277571 -0.531607 -0.800217 0.557824 -0.767336 0.316271 -0.740715 -0.437854 0.509534 -0.220884 -0.557550 -0.800217 0.634469 -0.705281 0.316271 -0.690746 -0.513075 0.509534 -0.161232 -0.577630 -0.800217 0.704893 -0.634900 0.316271 -0.633167 -0.582644 0.509534 -0.099804 -0.591347 -0.800217 0.767553 -0.557525 0.316271 -0.568615 -0.645796 0.509534 -0.037277 -0.598550 -0.800217 0.821759 -0.474010 0.316271 -0.498501 -0.701336 0.509534 0.025061 -0.599186 -0.800217 0.866527 -0.386140 0.316271 -0.422251 -0.749720 0.509534 0.087722 -0.593260 -0.800217 0.902225 -0.293195 0.316271 -0.341349 -0.789846 0.509534 0.149417 -0.580798 -0.800217 0.927985 -0.197020 0.316271 -0.257509 -0.821014 0.509534 0.208904 -0.562149 -0.800217 0.943424 -0.099619 0.316271 -0.170042 -0.843481 0.509534 0.266670 -0.537158 -0.800217 0.948669 -0.000193 0.316271 -0.080703 -0.856658 0.509534 0.321500 -0.506251 -0.800217 0.943464 0.099235 0.316271 0.009525 -0.860398 0.509534 0.372788 -0.469767 -0.800217 0.927868 0.197570 0.316271 0.098794 -0.854760 0.509534 0.419541 -0.428529 -0.800217 0.902344 0.292827 0.316271 0.187835 -0.839698 0.509534 0.462144 -0.382198 -0.800217 0.866684 0.385787 0.316271 0.274807 -0.815387 0.509534 0.499656 -0.331657 -0.800217 0.821478 0.474497 0.316271 0.358752 -0.782095 0.509534 0.531664 -0.277463 -0.800217 0.767223 0.557980 0.316271 0.438005 -0.740626 0.509534 0.557595 -0.220770 -0.800217 0.705152 0.634613 0.316271 0.513216 -0.690641 0.509534 0.577663 -0.161114 -0.800217 0.634756 0.705023 0.316271 0.582773 -0.633049 0.509534 0.591367 -0.099684 -0.800217 0.557369 0.767667 0.316271 0.645343 -0.569129 0.509534 0.598520 -0.037754 -0.800217 0.474664 0.821381 0.316271 0.701437 -0.498358 0.509534 0.599181 0.025183 -0.800217 0.385963 0.866605 0.316271 0.749806 -0.422098 0.509534 0.593242 0.087843 -0.800217 0.293011 0.902284 0.316271 0.789915 -0.341188 0.509534 0.580768 0.149535 -0.800217 0.196831 0.928025 0.316271 0.821067 -0.257342 0.509534 0.562106 0.209018 -0.800217 0.099427 0.943444 0.316271 0.843516 -0.169871 0.509534 0.537104 0.266780 -0.800217 0.000000 0.948669 0.316271 0.856674 -0.080528 0.509534 0.506185 0.321603 -0.800217 -0.099427 0.943444 0.316271 0.860405 0.008840 0.509534 0.470064 0.372414 -0.800217 -0.196831 0.928025 0.316271 0.854740 0.098968 0.509534 0.428443 0.419629 -0.800217 -0.293011 0.902284 0.316271 0.839660 0.188006 0.509534 0.382104 0.462222 -0.800217 -0.385963 0.866605 0.316271 0.815331 0.274973 0.509534 0.331555 0.499723 -0.800217 -0.474664 0.821381 0.316271 0.782380 0.358129 0.509534 0.277886 0.531443 -0.800217 -0.557369 0.767667 0.316271 0.740537 0.438156 0.509534 0.220657 0.557640 -0.800217 -0.634756 0.705023 0.316271 0.690537 0.513356 0.509534 0.160997 0.577696 -0.800217 -0.705152 0.634613 0.316271 0.633513 0.582269 0.509534 0.100155 0.591288 -0.800217 -0.767223 0.557980 0.316271 0.568998 0.645459 0.509534 0.037632 0.598528 -0.800217 -0.821478 0.474497 0.316271 0.498215 0.701539 0.509534 -0.025305 0.599176 -0.800217 -0.866684 0.385787 0.316271 0.421945 0.749892 0.509534 -0.087964 0.593224 -0.800217 -0.902344 0.292827 0.316271 0.341817 0.789643 0.509534 -0.149073 0.580887 -0.800217 -0.927868 0.197570 0.316271 0.257174 0.821119 0.509534 -0.209133 0.562064 -0.800217 -0.943464 0.099235 0.316271 0.320253 -0.315644 -0.893200 -0.106342 -0.948878 0.297191 -0.941344 -0.000192 -0.337447 0.351571 -0.280340 -0.893200 -0.006307 -0.954797 0.297191 -0.936140 -0.098850 -0.337447 0.378774 -0.242328 -0.893200 0.092847 -0.950293 0.297191 -0.920820 -0.195499 -0.337447 0.402086 -0.201295 -0.893200 0.191933 -0.935328 0.297191 -0.895259 -0.290931 -0.337447 0.420969 -0.158045 -0.893200 0.288905 -0.910061 0.297191 -0.859837 -0.383158 -0.337447 0.435101 -0.113489 -0.893200 0.381820 -0.875152 0.297191 -0.815414 -0.470350 -0.337447 0.444599 -0.067263 -0.893200 0.471440 -0.830315 0.297191 -0.761627 -0.553221 -0.337447 0.449200 -0.020295 -0.893200 0.555866 -0.776331 0.297191 -0.699451 -0.629998 -0.337447 0.448854 0.026896 -0.893200 0.634170 -0.713797 0.297191 -0.629571 -0.699836 -0.337447 0.443636 0.073348 -0.893200 0.704844 -0.644105 0.297191 -0.553517 -0.761412 -0.337447 0.433506 0.119440 -0.893200 0.768469 -0.566685 0.297191 -0.470667 -0.815231 -0.337447 0.418600 0.164217 -0.893200 0.823630 -0.483023 0.297191 -0.382633 -0.860071 -0.337447 0.399290 0.206785 -0.893200 0.869324 -0.394910 0.297191 -0.291279 -0.895146 -0.337447 0.375419 0.247495 -0.893200 0.905925 -0.301624 0.297191 -0.195858 -0.920744 -0.337447 0.347412 0.285478 -0.893200 0.932548 -0.205015 0.297191 -0.098278 -0.936200 -0.337447 0.315839 0.320060 -0.893200 0.948813 -0.106922 0.297191 -0.000383 -0.941344 -0.337447 0.280555 0.351400 -0.893200 0.954793 -0.006890 0.297191 0.098278 -0.936200 -0.337447 0.242181 0.378869 -0.893200 0.950257 0.093217 0.297191 0.195858 -0.920744 -0.337447 0.201139 0.402164 -0.893200 0.935254 0.192297 0.297191 0.291279 -0.895146 -0.337447 0.158302 0.420872 -0.893200 0.910238 0.288349 0.297191 0.382633 -0.860071 -0.337447 0.113320 0.435145 -0.893200 0.875003 0.382161 0.297191 0.470667 -0.815231 -0.337447 0.067090 0.444626 -0.893200 0.830131 0.471763 0.297191 0.553517 -0.761412 -0.337447 0.020569 0.449188 -0.893200 0.776671 0.555392 0.297191 0.629571 -0.699836 -0.337447 -0.026622 0.448870 -0.893200 0.714184 0.633734 0.297191 0.699451 -0.629998 -0.337447 -0.073520 0.443608 -0.893200 0.643831 0.705095 0.297191 0.761627 -0.553221 -0.337447 -0.119608 0.433459 -0.893200 0.566387 0.768690 0.297191 0.815414 -0.470350 -0.337447 -0.163961 0.418700 -0.893200 0.483526 0.823335 0.297191 0.859837 -0.383158 -0.337447 -0.206940 0.399210 -0.893200 0.394572 0.869477 0.297191 0.895259 -0.290931 -0.337447 -0.247641 0.375322 -0.893200 0.301272 0.906043 0.297191 0.920820 -0.195499 -0.337447 -0.285266 0.347586 -0.893200 0.205585 0.932423 0.297191 0.936140 -0.098850 -0.337447 -0.320124 0.315774 -0.893200 0.106728 0.948834 0.297191 0.941344 -0.000192 -0.337447 -0.351457 0.280484 -0.893200 0.006696 0.954795 0.297191 0.936180 0.098469 -0.337447 -0.378918 0.242104 -0.893200 -0.093410 0.950238 0.297191 0.920704 0.196045 -0.337447 -0.402004 0.201459 -0.893200 -0.191552 0.935407 0.297191 0.895377 0.290567 -0.337447 -0.420904 0.158217 -0.893200 -0.288535 0.910179 0.297191 0.859993 0.382808 -0.337447 -0.435168 0.113232 -0.893200 -0.382339 0.874925 0.297191 0.815135 0.470833 -0.337447 -0.444639 0.066999 -0.893200 -0.471932 0.830035 0.297191 0.761299 0.553672 -0.337447 -0.449192 0.020478 -0.893200 -0.555550 0.776558 0.297191 0.699708 0.629713 -0.337447 -0.448864 -0.026713 -0.893200 -0.633879 0.714055 0.297191 0.629856 0.699579 -0.337447 -0.443593 -0.073610 -0.893200 -0.705226 0.643688 0.297191 0.553066 0.761740 -0.337447 -0.433554 -0.119263 -0.893200 -0.768239 0.566998 0.297191 0.470999 0.815039 -0.337447 -0.418667 -0.164046 -0.893200 -0.823433 0.483359 0.297191 0.382983 0.859915 -0.337447 -0.399168 -0.207022 -0.893200 -0.869557 0.394395 0.297191 0.290749 0.895318 -0.337447 -0.375272 -0.247717 -0.893200 -0.906104 0.301087 0.297191 0.195312 0.920860 -0.337447 -0.347528 -0.285337 -0.893200 -0.932465 0.205395 0.297191 0.098660 0.936160 -0.337447 -0.315709 -0.320189 -0.893200 -0.948856 0.106535 0.297191 0.000000 0.941344 -0.337447 -0.280412 -0.351514 -0.893200 -0.954796 0.006501 0.297191 -0.098660 0.936160 -0.337447 -0.242405 -0.378725 -0.893200 -0.950312 -0.092654 0.297191 -0.195312 0.920860 -0.337447 -0.201377 -0.402045 -0.893200 -0.935367 -0.191743 0.297191 -0.290749 0.895318 -0.337447 -0.158131 -0.420936 -0.893200 -0.910120 -0.288720 0.297191 -0.382983 0.859915 -0.337447 -0.113143 -0.435191 -0.893200 -0.874848 -0.382517 0.297191 -0.470999 0.815039 -0.337447 -0.067353 -0.444586 -0.893200 -0.830411 -0.471271 0.297191 -0.553066 0.761740 -0.337447 -0.020387 -0.449196 -0.893200 -0.776445 -0.555708 0.297191 -0.629856 0.699579 -0.337447 0.026805 -0.448859 -0.893200 -0.713926 -0.634024 0.297191 -0.699708 0.629713 -0.337447 0.073257 -0.443651 -0.893200 -0.644249 -0.704713 0.297191 -0.761299 0.553672 -0.337447 0.119352 -0.433530 -0.893200 -0.566842 -0.768354 0.297191 -0.815135 0.470833 -0.337447 0.164131 -0.418633 -0.893200 -0.483191 -0.823531 0.297191 -0.859993 0.382808 -0.337447 0.207103 -0.399126 -0.893200 -0.394218 -0.869638 0.297191 -0.895377 0.290567 -0.337447 0.247418 -0.375469 -0.893200 -0.301809 -0.905864 0.297191 -0.920704 0.196045 -0.337447 0.285408 -0.347470 -0.893200 -0.205205 -0.932507 0.297191 -0.936180 0.098469 -0.337447 -0.500887 0.637049 0.585901 0.413807 0.770823 -0.484351 -0.760182 -0.000155 -0.649711 -0.564896 0.581044 0.585901 0.330740 0.809948 -0.484351 -0.755979 -0.079826 -0.649711 -0.622163 0.519261 0.585901 0.244870 0.839907 -0.484351 -0.743607 -0.157875 -0.649711 -0.673159 0.451194 0.585901 0.155493 0.860945 -0.484351 -0.722965 -0.234941 -0.649711 -0.716740 0.378158 0.585901 0.064404 0.872500 -0.484351 -0.694360 -0.309419 -0.649711 -0.752125 0.301708 0.585901 -0.026521 0.874472 -0.484351 -0.658487 -0.379831 -0.649711 -0.779604 0.221218 0.585901 -0.118025 0.866876 -0.484351 -0.615051 -0.446753 -0.649711 -0.798495 0.138292 0.585901 -0.208230 0.849732 -0.484351 -0.564841 -0.508754 -0.649711 -0.808592 0.053842 0.585901 -0.296142 0.823228 -0.484351 -0.508409 -0.565152 -0.649711 -0.809812 -0.030391 0.585901 -0.380003 0.788037 -0.484351 -0.446992 -0.614877 -0.649711 -0.802167 -0.115098 0.585901 -0.460502 0.743870 -0.484351 -0.380087 -0.658339 -0.649711 -0.785686 -0.198537 0.585901 -0.535929 0.691509 -0.484351 -0.308995 -0.694549 -0.649711 -0.760830 -0.279028 0.585901 -0.604820 0.632137 -0.484351 -0.235222 -0.722874 -0.649711 -0.727396 -0.357232 0.585901 -0.667742 0.565266 -0.484351 -0.158165 -0.743546 -0.649711 -0.685949 -0.431501 0.585901 -0.723308 0.492168 -0.484351 -0.079365 -0.756027 -0.649711 -0.637355 -0.500498 0.585901 -0.770570 0.414278 -0.484351 -0.000310 -0.760181 -0.649711 -0.581389 -0.564541 0.585901 -0.809746 0.331235 -0.484351 0.079365 -0.756027 -0.649711 -0.519019 -0.622365 0.585901 -0.840002 0.244543 -0.484351 0.158165 -0.743546 -0.649711 -0.450932 -0.673335 0.585901 -0.861005 0.155158 -0.484351 0.235222 -0.722874 -0.649711 -0.378595 -0.716509 0.585901 -0.872461 0.064937 -0.484351 0.308995 -0.694549 -0.649711 -0.301415 -0.752242 0.585901 -0.874462 -0.026861 -0.484351 0.380087 -0.658339 -0.649711 -0.220915 -0.779690 0.585901 -0.866830 -0.118363 -0.484351 0.446992 -0.614877 -0.649711 -0.138779 -0.798411 0.585901 -0.849859 -0.207711 -0.484351 0.508409 -0.565152 -0.649711 -0.054336 -0.808559 0.585901 -0.823409 -0.295639 -0.484351 0.564841 -0.508754 -0.649711 0.030706 -0.809800 0.585901 -0.787889 -0.380310 -0.484351 0.615051 -0.446753 -0.649711 0.115410 -0.802122 0.585901 -0.743691 -0.460791 -0.484351 0.658487 -0.379831 -0.649711 0.198057 -0.785807 0.585901 -0.691836 -0.535506 -0.484351 0.694360 -0.309419 -0.649711 0.279324 -0.760722 0.585901 -0.631901 -0.605066 -0.484351 0.722965 -0.234941 -0.649711 0.357515 -0.727257 0.585901 -0.565006 -0.667962 -0.484351 0.743607 -0.157875 -0.649711 0.431082 -0.686213 0.585901 -0.492610 -0.723007 -0.484351 0.755979 -0.079826 -0.649711 0.500628 -0.637253 0.585901 -0.414121 -0.770655 -0.484351 0.760182 -0.000155 -0.649711 0.564659 -0.581274 0.585901 -0.331070 -0.809813 -0.484351 0.756011 0.079519 -0.649711 0.622471 -0.518892 0.585901 -0.244372 -0.840052 -0.484351 0.743513 0.158316 -0.649711 0.672975 -0.451468 0.585901 -0.155844 -0.860882 -0.484351 0.723061 0.234647 -0.649711 0.716586 -0.378449 0.585901 -0.064759 -0.872474 -0.484351 0.694486 0.309136 -0.649711 0.752304 -0.301262 0.585901 0.027039 -0.874456 -0.484351 0.658261 0.380221 -0.649711 0.779735 -0.220756 0.585901 0.118539 -0.866806 -0.484351 0.614786 0.447117 -0.649711 0.798439 -0.138617 0.585901 0.207884 -0.849817 -0.484351 0.565048 0.508524 -0.649711 0.808570 -0.054171 0.585901 0.295806 -0.823349 -0.484351 0.508639 0.564945 -0.649711 0.809794 0.030871 0.585901 0.380470 -0.787812 -0.484351 0.446628 0.615142 -0.649711 0.802214 0.114771 0.585901 0.460199 -0.744057 -0.484351 0.380355 0.658184 -0.649711 0.785767 0.198217 0.585901 0.535647 -0.691727 -0.484351 0.309278 0.694423 -0.649711 0.760665 0.279479 0.585901 0.605195 -0.631778 -0.484351 0.234794 0.723013 -0.649711 0.727184 0.357663 0.585901 0.668077 -0.564870 -0.484351 0.157724 0.743639 -0.649711 0.686125 0.431221 0.585901 0.723108 -0.492463 -0.484351 0.079672 0.755995 -0.649711 0.637151 0.500757 0.585901 0.770739 -0.413964 -0.484351 0.000000 0.760182 -0.649711 0.581159 0.564777 0.585901 0.809880 -0.330905 -0.484351 -0.079672 0.755995 -0.649711 0.519388 0.622057 0.585901 0.839857 -0.245041 -0.484351 -0.157724 0.743639 -0.649711 0.451331 0.673067 0.585901 0.860913 -0.155669 -0.484351 -0.234794 0.723013 -0.649711 0.378303 0.716663 0.585901 0.872487 -0.064582 -0.484351 -0.309278 0.694423 -0.649711 0.301109 0.752365 0.585901 0.874451 0.027217 -0.484351 -0.380355 0.658184 -0.649711 0.221377 0.779559 0.585901 0.866900 0.117849 -0.484351 -0.446628 0.615142 -0.649711 0.138454 0.798467 0.585901 0.849774 0.208057 -0.484351 -0.508639 0.564945 -0.649711 0.054007 0.808581 0.585901 0.823289 0.295974 -0.484351 -0.565048 0.508524 -0.649711 -0.030226 0.809818 0.585901 0.788114 0.379842 -0.484351 -0.614786 0.447117 -0.649711 -0.114935 0.802190 0.585901 0.743964 0.460351 -0.484351 -0.658261 0.380221 -0.649711 -0.198377 0.785726 0.585901 0.691618 0.535788 -0.484351 -0.694486 0.309136 -0.649711 -0.279634 0.760608 0.585901 0.631655 0.605324 -0.484351 -0.723061 0.234647 -0.649711 -0.357084 0.727469 0.585901 0.565402 0.667627 -0.484351 -0.743513 0.158316 -0.649711 -0.431361 0.686037 0.585901 0.492316 0.723208 -0.484351 -0.756011 0.079519 -0.649711 0.423331 -0.871390 0.247933 0.751816 0.490591 0.440560 -0.505533 -0.000103 0.862807 0.512328 -0.822222 0.247933 0.696258 0.566685 0.440560 -0.502738 -0.053086 0.862807 0.594916 -0.764594 0.247933 0.633667 0.635904 0.440560 -0.494511 -0.104990 0.862807 0.671775 -0.698031 0.247933 0.563529 0.698814 0.440560 -0.480784 -0.156240 0.862807 0.741234 -0.623780 0.247933 0.487185 0.754028 0.440560 -0.461761 -0.205769 0.862807 0.801985 -0.543460 0.247933 0.406275 0.800529 0.440560 -0.437905 -0.252594 0.862807 0.854527 -0.456414 0.247933 0.320136 0.838701 0.440560 -0.409019 -0.297098 0.862807 0.897656 -0.364339 0.247933 0.230471 0.867635 0.440560 -0.375629 -0.338330 0.862807 0.930897 -0.268252 0.247933 0.138268 0.887011 0.440560 -0.338100 -0.375835 0.862807 0.953716 -0.170164 0.247933 0.045438 0.896572 0.440560 -0.297257 -0.408904 0.862807 0.966298 -0.069270 0.247933 -0.048780 0.896397 0.440560 -0.252764 -0.437806 0.862807 0.968236 0.032386 0.247933 -0.142460 0.886348 0.440560 -0.205487 -0.461887 0.862807 0.959642 0.132726 0.247933 -0.233704 0.866769 0.440560 -0.156427 -0.480723 0.862807 0.940446 0.232573 0.247933 -0.323261 0.837502 0.440560 -0.105182 -0.494470 0.862807 0.910892 0.329857 0.247933 -0.409257 0.799009 0.440560 -0.052779 -0.502771 0.862807 0.871648 0.422799 0.247933 -0.490132 0.752115 0.440560 -0.000206 -0.505533 0.862807 0.822535 0.511825 0.247933 -0.566260 0.696604 0.440560 0.052779 -0.502771 0.862807 0.764362 0.595214 0.247933 -0.636150 0.633419 0.440560 0.105182 -0.494470 0.862807 0.697770 0.672046 0.247933 -0.699033 0.563257 0.440560 0.156427 -0.480723 0.862807 0.624233 0.740853 0.247933 -0.753730 0.487646 0.440560 0.205487 -0.461887 0.862807 0.543148 0.802196 0.247933 -0.800687 0.405964 0.440560 0.252764 -0.437806 0.862807 0.456081 0.854704 0.247933 -0.838826 0.319810 0.440560 0.297257 -0.408904 0.862807 0.364888 0.897433 0.247933 -0.867494 0.231001 0.440560 0.338100 -0.375835 0.862807 0.268821 0.930733 0.247933 -0.886927 0.138810 0.440560 0.375629 -0.338330 0.862807 0.169792 0.953782 0.247933 -0.896590 0.045089 0.440560 0.409019 -0.297098 0.862807 0.068894 0.966324 0.247933 -0.896378 -0.049128 0.440560 0.437905 -0.252594 0.862807 -0.031795 0.968255 0.247933 -0.886434 -0.141918 0.440560 0.461761 -0.205769 0.862807 -0.133100 0.959590 0.247933 -0.866678 -0.234041 0.440560 0.480784 -0.156240 0.862807 -0.232939 0.940356 0.247933 -0.837376 -0.323587 0.440560 0.494511 -0.104990 0.862807 -0.329301 0.911093 0.247933 -0.799259 -0.408768 0.440560 0.502738 -0.053086 0.862807 -0.422976 0.871562 0.247933 -0.752015 -0.490285 0.440560 0.505533 -0.000103 0.862807 -0.511993 0.822431 0.247933 -0.696488 -0.566402 0.440560 0.502760 0.052881 0.862807 -0.595370 0.764241 0.247933 -0.633290 -0.636279 0.440560 0.494449 0.105283 0.862807 -0.671491 0.698305 0.247933 -0.563814 -0.698585 0.440560 0.480847 0.156044 0.862807 -0.740980 0.624082 0.247933 -0.487492 -0.753829 0.440560 0.461845 0.205581 0.862807 -0.802307 0.542985 0.247933 -0.405801 -0.800770 0.440560 0.437755 0.252853 0.862807 -0.854797 0.455907 0.247933 -0.319639 -0.838891 0.440560 0.408843 0.297340 0.862807 -0.897507 0.364705 0.247933 -0.230825 -0.867541 0.440560 0.375766 0.338177 0.862807 -0.930788 0.268631 0.247933 -0.138629 -0.886955 0.440560 0.338253 0.375697 0.862807 -0.953816 0.169598 0.247933 -0.044906 -0.896599 0.440560 0.297015 0.409080 0.862807 -0.966269 0.069664 0.247933 0.048415 -0.896417 0.440560 0.252942 0.437703 0.862807 -0.968249 -0.031992 0.247933 0.142099 -0.886406 0.440560 0.205675 0.461803 0.862807 -0.959563 -0.133295 0.247933 0.234218 -0.866631 0.440560 0.156142 0.480816 0.862807 -0.940308 -0.233130 0.247933 0.323757 -0.837310 0.440560 0.104889 0.494532 0.862807 -0.911026 -0.329486 0.247933 0.408931 -0.799176 0.440560 0.052984 0.502749 0.862807 -0.871476 -0.423154 0.247933 0.490438 -0.751916 0.440560 0.000000 0.505533 0.862807 -0.822327 -0.512160 0.247933 0.566543 -0.696373 0.440560 -0.052984 0.502749 0.862807 -0.764715 -0.594761 0.247933 0.635775 -0.633796 0.440560 -0.104889 0.494532 0.862807 -0.698168 -0.671633 0.247933 0.698700 -0.563672 0.440560 -0.156142 0.480816 0.862807 -0.623931 -0.741107 0.247933 0.753928 -0.487339 0.440560 -0.205675 0.461803 0.862807 -0.542822 -0.802418 0.247933 0.800853 -0.405638 0.440560 -0.252942 0.437703 0.862807 -0.456587 -0.854434 0.247933 0.838636 -0.320307 0.440560 -0.297015 0.409080 0.862807 -0.364522 -0.897582 0.247933 0.867588 -0.230648 0.440560 -0.338253 0.375697 0.862807 -0.268441 -0.930843 0.247933 0.886983 -0.138448 0.440560 -0.375766 0.338177 0.862807 -0.170358 -0.953681 0.247933 0.896563 -0.045620 0.440560 -0.408843 0.297340 0.862807 -0.069467 -0.966283 0.247933 0.896407 0.048597 0.440560 -0.437755 0.252853 0.862807 0.032189 -0.968242 0.247933 0.886377 0.142279 0.440560 -0.461845 0.205581 0.862807 0.133490 -0.959536 0.247933 0.866583 0.234394 0.440560 -0.480847 0.156044 0.862807 0.232381 -0.940494 0.247933 0.837568 0.323090 0.440560 -0.494449 0.105283 0.862807 0.329672 -0.910959 0.247933 0.799093 0.409094 0.440560 -0.502760 0.052881 0.862807 -0.303411 0.908487 0.287391 0.659344 0.417914 -0.624991 -0.687901 -0.000140 -0.725805 -0.396956 0.871684 0.287391 0.611912 0.484716 -0.624991 -0.684097 -0.072236 -0.725805 -0.485303 0.825765 0.287391 0.558286 0.545621 -0.624991 -0.672902 -0.142864 -0.725805 -0.569177 0.770353 0.287391 0.498026 0.601129 -0.624991 -0.654223 -0.212602 -0.725805 -0.646780 0.706457 0.287391 0.432281 0.650015 -0.624991 -0.628338 -0.279998 -0.725805 -0.716625 0.635496 0.287391 0.362465 0.691379 -0.624991 -0.595875 -0.343715 -0.725805 -0.779283 0.556889 0.287391 0.288008 0.725560 -0.624991 -0.556570 -0.404274 -0.725805 -0.833357 0.472147 0.287391 0.210378 0.751749 -0.624991 -0.511134 -0.460380 -0.725805 -0.878251 0.382205 0.287391 0.130430 0.769658 -0.624991 -0.460068 -0.511415 -0.725805 -0.913184 0.288966 0.287391 0.049825 0.779040 -0.624991 -0.404490 -0.556413 -0.725805 -0.938440 0.191667 0.287391 -0.032098 0.779972 -0.624991 -0.343947 -0.595742 -0.725805 -0.953360 0.092256 0.287391 -0.113668 0.772312 -0.624991 -0.279614 -0.628509 -0.725805 -0.957786 -0.007213 0.287391 -0.193229 0.756339 -0.624991 -0.212857 -0.654140 -0.725805 -0.951755 -0.107556 0.287391 -0.271435 0.731922 -0.624991 -0.143126 -0.672847 -0.725805 -0.935241 -0.206715 0.287391 -0.346651 0.699442 -0.624991 -0.071818 -0.684141 -0.725805 -0.908672 -0.302856 0.287391 -0.417511 0.659599 -0.624991 -0.000280 -0.687901 -0.725805 -0.871926 -0.396424 0.287391 -0.484342 0.612208 -0.624991 0.071818 -0.684141 -0.725805 -0.825576 -0.485625 0.287391 -0.545839 0.558074 -0.624991 0.143126 -0.672847 -0.725805 -0.770132 -0.569476 0.287391 -0.601323 0.497792 -0.624991 0.212857 -0.654140 -0.725805 -0.706852 -0.646349 0.287391 -0.649751 0.432678 -0.624991 0.279614 -0.628509 -0.725805 -0.635217 -0.716872 0.287391 -0.691520 0.362197 -0.624991 0.343947 -0.595742 -0.725805 -0.556585 -0.779499 0.287391 -0.725672 0.287726 -0.624991 0.404490 -0.556413 -0.725805 -0.472656 -0.833068 0.287391 -0.751621 0.210837 -0.624991 0.460068 -0.511415 -0.725805 -0.382742 -0.878018 0.287391 -0.769579 0.130900 -0.624991 0.511134 -0.460380 -0.725805 -0.288611 -0.913296 0.287391 -0.779059 0.049522 -0.624991 0.556570 -0.404274 -0.725805 -0.191302 -0.938515 0.287391 -0.779959 -0.032401 -0.624991 0.595875 -0.343715 -0.725805 -0.092838 -0.953303 0.287391 -0.772381 -0.113196 -0.624991 0.628338 -0.279998 -0.725805 0.007586 -0.957783 0.287391 -0.756264 -0.193524 -0.624991 0.654223 -0.212602 -0.725805 0.107927 -0.951713 0.287391 -0.731816 -0.271720 -0.624991 0.672902 -0.142864 -0.725805 0.206143 -0.935367 0.287391 -0.699654 -0.346223 -0.624991 0.684097 -0.072236 -0.725805 0.303041 -0.908610 0.287391 -0.659514 -0.417645 -0.624991 0.687901 -0.000140 -0.725805 0.396601 -0.871845 0.287391 -0.612109 -0.484467 -0.624991 0.684127 0.071958 -0.725805 0.485793 -0.825477 0.287391 -0.557963 -0.545952 -0.624991 0.672817 0.143263 -0.725805 0.568863 -0.770585 0.287391 -0.498271 -0.600926 -0.624991 0.654310 0.212336 -0.725805 0.646493 -0.706720 0.287391 -0.432546 -0.649839 -0.624991 0.628452 0.279743 -0.725805 0.717001 -0.635071 0.287391 -0.362056 -0.691594 -0.624991 0.595672 0.344068 -0.725805 0.779613 -0.556427 0.287391 -0.287578 -0.725731 -0.624991 0.556330 0.404604 -0.725805 0.833164 -0.472487 0.287391 -0.210684 -0.751664 -0.624991 0.511321 0.460172 -0.725805 0.878096 -0.382563 0.287391 -0.130744 -0.769605 -0.624991 0.460276 0.511227 -0.725805 0.913355 -0.288425 0.287391 -0.049364 -0.779070 -0.624991 0.404161 0.556652 -0.725805 0.938362 -0.192049 0.287391 0.031780 -0.779985 -0.624991 0.344189 0.595601 -0.725805 0.953322 -0.092644 0.287391 0.113353 -0.772358 -0.624991 0.279870 0.628395 -0.725805 0.957782 0.007781 0.287391 0.193678 -0.756224 -0.624991 0.212469 0.654266 -0.725805 0.951691 0.108121 0.287391 0.271869 -0.731761 -0.624991 0.142727 0.672931 -0.725805 0.935325 0.206334 0.287391 0.346366 -0.699583 -0.624991 0.072097 0.684112 -0.725805 0.908548 0.303226 0.287391 0.417780 -0.659429 -0.624991 0.000000 0.687901 -0.725805 0.871764 0.396779 0.287391 0.484592 -0.612011 -0.624991 -0.072097 0.684112 -0.725805 0.825863 0.485135 0.287391 0.545508 -0.558397 -0.624991 -0.142727 0.672931 -0.725805 0.770469 0.569020 0.287391 0.601027 -0.498149 -0.624991 -0.212469 0.654266 -0.725805 0.706589 0.646637 0.287391 0.649927 -0.432413 -0.624991 -0.279870 0.628395 -0.725805 0.634925 0.717131 0.287391 0.691667 -0.361915 -0.624991 -0.344189 0.595601 -0.725805 0.557047 0.779169 0.287391 0.725502 -0.288156 -0.624991 -0.404161 0.556652 -0.725805 0.472317 0.833261 0.287391 0.751707 -0.210531 -0.624991 -0.460276 0.511227 -0.725805 0.382384 0.878174 0.287391 0.769632 -0.130587 -0.624991 -0.511321 0.460172 -0.725805 0.289152 0.913125 0.287391 0.779030 -0.049984 -0.624991 -0.556330 0.404604 -0.725805 0.191858 0.938401 0.287391 0.779978 0.031939 -0.624991 -0.595672 0.344068 -0.725805 0.092450 0.953341 0.287391 0.772335 0.113511 -0.624991 -0.628452 0.279743 -0.725805 -0.007976 0.957780 0.287391 0.756185 0.193832 -0.624991 -0.654310 0.212336 -0.725805 -0.107363 0.951777 0.287391 0.731977 0.271286 -0.624991 -0.672817 0.143263 -0.725805 -0.206524 0.935283 0.287391 0.699513 0.346508 -0.624991 -0.684127 0.071958 -0.725805 0.002026 -0.999893 -0.014478 -0.124861 -0.014617 0.992067 -0.992172 -0.000202 -0.124877 0.106811 -0.994174 -0.014478 -0.122641 -0.027623 0.992067 -0.986687 -0.104188 -0.124877 0.209441 -0.977714 -0.014478 -0.119111 -0.040206 0.992067 -0.970540 -0.206055 -0.124877 0.310759 -0.950378 -0.014478 -0.114241 -0.052468 0.992067 -0.943598 -0.306640 -0.124877 0.408654 -0.912574 -0.014478 -0.108113 -0.064152 0.992067 -0.906263 -0.403847 -0.124877 0.501183 -0.865220 -0.014478 -0.100869 -0.075029 0.992067 -0.859442 -0.495747 -0.124877 0.589104 -0.807928 -0.014478 -0.092450 -0.085188 0.992067 -0.802751 -0.583092 -0.124877 0.670536 -0.741736 -0.014478 -0.083012 -0.094408 0.992067 -0.737218 -0.664015 -0.124877 0.744582 -0.667374 -0.014478 -0.072660 -0.102588 0.992067 -0.663564 -0.737623 -0.124877 0.809841 -0.586470 -0.014478 -0.061618 -0.109577 0.992067 -0.583404 -0.802524 -0.124877 0.866847 -0.498363 -0.014478 -0.049794 -0.115431 0.992067 -0.496081 -0.859249 -0.124877 0.914305 -0.404767 -0.014478 -0.037422 -0.120014 0.992067 -0.403293 -0.906510 -0.124877 0.951385 -0.307664 -0.014478 -0.024761 -0.123251 0.992067 -0.307007 -0.943479 -0.124877 0.978391 -0.206257 -0.014478 -0.011707 -0.125167 0.992067 -0.206433 -0.970459 -0.124877 0.994620 -0.102579 -0.014478 0.001476 -0.125705 0.992067 -0.103585 -0.986750 -0.124877 0.999894 0.001415 -0.014478 0.014541 -0.124869 0.992067 -0.000404 -0.992172 -0.124877 0.994239 0.106203 -0.014478 0.027548 -0.122658 0.992067 0.103585 -0.986750 -0.124877 0.977632 0.209822 -0.014478 0.040252 -0.119095 0.992067 0.206433 -0.970459 -0.124877 0.950257 0.311129 -0.014478 0.052512 -0.114220 0.992067 0.307007 -0.943479 -0.124877 0.912824 0.408097 -0.014478 0.064086 -0.108152 0.992067 0.403293 -0.906510 -0.124877 0.865025 0.501520 -0.014478 0.075068 -0.100839 0.992067 0.496081 -0.859249 -0.124877 0.807698 0.589418 -0.014478 0.085223 -0.092416 0.992067 0.583404 -0.802524 -0.124877 0.742145 0.670083 -0.014478 0.094357 -0.083070 0.992067 0.663564 -0.737623 -0.124877 0.667828 0.744175 -0.014478 0.102544 -0.072723 0.992067 0.737218 -0.664015 -0.124877 0.586155 0.810069 -0.014478 0.109601 -0.061575 0.992067 0.802751 -0.583092 -0.124877 0.498026 0.867041 -0.014478 0.115451 -0.049749 0.992067 0.859442 -0.495747 -0.124877 0.405325 0.914058 -0.014478 0.119991 -0.037495 0.992067 0.906263 -0.403847 -0.124877 0.307293 0.951505 -0.014478 0.123260 -0.024713 0.992067 0.943598 -0.306640 -0.124877 0.205876 0.978471 -0.014478 0.125172 -0.011658 0.992067 0.970540 -0.206055 -0.124877 0.103186 0.994557 -0.014478 0.125705 0.001399 0.992067 0.986687 -0.104188 -0.124877 -0.001619 0.999894 -0.014478 0.124866 0.014567 0.992067 0.992172 -0.000202 -0.124877 -0.106406 0.994217 -0.014478 0.122652 0.027573 0.992067 0.986729 0.103786 -0.124877 -0.210021 0.977590 -0.014478 0.119087 0.040276 0.992067 0.970417 0.206631 -0.124877 -0.310372 0.950505 -0.014478 0.114262 0.052421 0.992067 0.943723 0.306256 -0.124877 -0.408283 0.912741 -0.014478 0.108139 0.064108 0.992067 0.906428 0.403478 -0.124877 -0.501696 0.864923 -0.014478 0.100824 0.075089 0.992067 0.859148 0.496256 -0.124877 -0.589583 0.807578 -0.014478 0.092399 0.085242 0.992067 0.802405 0.583568 -0.124877 -0.670234 0.742009 -0.014478 0.083051 0.094374 0.992067 0.737488 0.663714 -0.124877 -0.744311 0.667677 -0.014478 0.072702 0.102558 0.992067 0.663865 0.737353 -0.124877 -0.810189 0.585990 -0.014478 0.061553 0.109613 0.992067 0.582929 0.802870 -0.124877 -0.866644 0.498716 -0.014478 0.049841 0.115411 0.992067 0.496431 0.859047 -0.124877 -0.914140 0.405139 -0.014478 0.037471 0.119999 0.992067 0.403662 0.906346 -0.124877 -0.951567 0.307100 -0.014478 0.024687 0.123265 0.992067 0.306448 0.943661 -0.124877 -0.978513 0.205677 -0.014478 0.011632 0.125174 0.992067 0.205858 0.970581 -0.124877 -0.994578 0.102984 -0.014478 -0.001425 0.125705 0.992067 0.103987 0.986708 -0.124877 -0.999894 -0.001822 -0.014478 -0.014592 0.124863 0.992067 0.000000 0.992172 -0.124877 -0.994196 -0.106608 -0.014478 -0.027598 0.122646 0.992067 -0.103987 0.986708 -0.124877 -0.977757 -0.209242 -0.014478 -0.040181 0.119119 0.992067 -0.205858 0.970581 -0.124877 -0.950442 -0.310566 -0.014478 -0.052445 0.114251 0.992067 -0.306448 0.943661 -0.124877 -0.912658 -0.408468 -0.014478 -0.064130 0.108126 0.992067 -0.403662 0.906346 -0.124877 -0.864821 -0.501872 -0.014478 -0.075109 0.100809 0.992067 -0.496431 0.859047 -0.124877 -0.808047 -0.588940 -0.014478 -0.085169 0.092467 0.992067 -0.582929 0.802870 -0.124877 -0.741872 -0.670385 -0.014478 -0.094391 0.083031 0.992067 -0.663865 0.737353 -0.124877 -0.667525 -0.744447 -0.014478 -0.102573 0.072681 0.992067 -0.737488 0.663714 -0.124877 -0.586635 -0.809722 -0.014478 -0.109564 0.061640 0.992067 -0.802405 0.583568 -0.124877 -0.498540 -0.866746 -0.014478 -0.115421 0.049817 0.992067 -0.859148 0.496256 -0.124877 -0.404953 -0.914223 -0.014478 -0.120007 0.037446 0.992067 -0.906428 0.403478 -0.124877 -0.306906 -0.951630 -0.014478 -0.123270 0.024662 0.992067 -0.943723 0.306256 -0.124877 -0.206456 -0.978349 -0.014478 -0.125165 0.011732 0.992067 -0.970417 0.206631 -0.124877 -0.102781 -0.994599 -0.014478 -0.125705 -0.001451 0.992067 -0.986729 0.103786 -0.124877 -0.009818 0.713018 -0.701077 -0.009694 -0.701146 -0.712952 -0.999905 -0.000204 0.013796 -0.084493 0.708062 -0.701077 0.063845 -0.698300 -0.712952 -0.994377 -0.105000 0.013796 -0.157543 0.695465 -0.701077 0.135992 -0.687899 -0.712952 -0.978104 -0.207661 0.013796 -0.229565 0.675123 -0.701077 0.207340 -0.669858 -0.712952 -0.950952 -0.309030 0.013796 -0.299058 0.647345 -0.701077 0.276404 -0.644438 -0.712952 -0.913326 -0.406994 0.013796 -0.364645 0.612801 -0.701077 0.341811 -0.612262 -0.712952 -0.866140 -0.499610 0.013796 -0.426863 0.571209 -0.701077 0.404098 -0.573065 -0.712952 -0.809008 -0.587636 0.013796 -0.484378 0.523325 -0.701077 0.461934 -0.527557 -0.712952 -0.742963 -0.669190 0.013796 -0.536559 0.469676 -0.701077 0.514681 -0.476237 -0.712952 -0.668736 -0.743372 0.013796 -0.582418 0.411437 -0.701077 0.561340 -0.420234 -0.712952 -0.587951 -0.808779 0.013796 -0.622332 0.348129 -0.701077 0.602292 -0.359087 -0.712952 -0.499947 -0.865946 0.013796 -0.655391 0.280987 -0.701077 0.636610 -0.293985 -0.712952 -0.406436 -0.913575 0.013796 -0.681020 0.211431 -0.701077 0.663689 -0.226308 -0.712952 -0.309400 -0.950832 0.013796 -0.699429 0.138891 -0.701077 0.683753 -0.155502 -0.712952 -0.208042 -0.978023 0.013796 -0.710133 0.064821 -0.701077 0.696285 -0.082984 -0.712952 -0.104392 -0.994440 0.013796 -0.713024 -0.009382 -0.701077 0.701139 -0.010122 -0.712952 -0.000407 -0.999905 0.013796 -0.708114 -0.084061 -0.701077 0.698339 0.063418 -0.712952 0.104392 -0.994440 0.013796 -0.695404 -0.157813 -0.701077 0.687846 0.136260 -0.712952 0.208042 -0.978023 0.013796 -0.675034 -0.229827 -0.701077 0.669777 0.207600 -0.712952 0.309400 -0.950832 0.013796 -0.647528 -0.298663 -0.701077 0.644607 0.276010 -0.712952 0.406436 -0.913575 0.013796 -0.612659 -0.364883 -0.701077 0.612129 0.342049 -0.712952 0.499947 -0.865946 0.013796 -0.571043 -0.427085 -0.701077 0.572908 0.404321 -0.712952 0.587951 -0.808779 0.013796 -0.523621 -0.484059 -0.701077 0.527839 0.461611 -0.712952 0.668736 -0.743372 0.013796 -0.470004 -0.536272 -0.701077 0.476552 0.514390 -0.712952 0.742963 -0.669190 0.013796 -0.411210 -0.582578 -0.701077 0.420015 0.561503 -0.712952 0.809008 -0.587636 0.013796 -0.347887 -0.622467 -0.701077 0.358853 0.602432 -0.712952 0.866140 -0.499610 0.013796 -0.281388 -0.655219 -0.701077 0.294374 0.636430 -0.712952 0.913326 -0.406994 0.013796 -0.211166 -0.681102 -0.701077 0.226050 0.663777 -0.712952 0.950952 -0.309030 0.013796 -0.138619 -0.699483 -0.701077 0.155236 0.683813 -0.712952 0.978104 -0.207661 0.013796 -0.065255 -0.710094 -0.701077 0.083409 0.696234 -0.712952 0.994377 -0.105000 0.013796 0.009528 -0.713022 -0.701077 0.009980 0.701141 -0.712952 0.999905 -0.000204 0.013796 0.084205 -0.708097 -0.701077 -0.063560 0.698326 -0.712952 0.994419 0.104595 0.013796 0.157955 -0.695372 -0.701077 -0.136400 0.687818 -0.712952 0.977980 0.208241 0.013796 0.229290 -0.675217 -0.701077 -0.207067 0.669942 -0.712952 0.951078 0.308642 0.013796 0.298795 -0.647467 -0.701077 -0.276141 0.644550 -0.712952 0.913492 0.406622 0.013796 0.365008 -0.612585 -0.701077 -0.342174 0.612059 -0.712952 0.865844 0.500123 0.013796 0.427201 -0.570956 -0.701077 -0.404438 0.572826 -0.712952 0.808659 0.588116 0.013796 0.484165 -0.523522 -0.701077 -0.461719 0.527745 -0.712952 0.743236 0.668887 0.013796 0.536368 -0.469895 -0.701077 -0.514487 0.476447 -0.712952 0.669038 0.743100 0.013796 0.582662 -0.411092 -0.701077 -0.561589 0.419901 -0.712952 0.587472 0.809127 0.013796 0.622190 -0.348383 -0.701077 -0.602146 0.359332 -0.712952 0.500300 0.865742 0.013796 0.655277 -0.281254 -0.701077 -0.636490 0.294244 -0.712952 0.406808 0.913409 0.013796 0.681145 -0.211027 -0.701077 -0.663823 0.225915 -0.712952 0.308836 0.951015 0.013796 0.699511 -0.138476 -0.701077 -0.683845 0.155097 -0.712952 0.207462 0.978146 0.013796 0.710107 -0.065110 -0.701077 -0.696251 0.083267 -0.712952 0.104797 0.994398 0.013796 0.713020 0.009673 -0.701077 -0.701144 0.009837 -0.712952 0.000000 0.999905 0.013796 0.708079 0.084349 -0.701077 -0.698313 -0.063702 -0.712952 -0.104797 0.994398 0.013796 0.695497 0.157401 -0.701077 -0.687927 -0.135852 -0.712952 -0.207462 0.978146 0.013796 0.675170 0.229427 -0.701077 -0.669900 -0.207203 -0.712952 -0.308836 0.951015 0.013796 0.647406 0.298926 -0.701077 -0.644494 -0.276272 -0.712952 -0.406808 0.913409 0.013796 0.612511 0.365133 -0.701077 -0.611989 -0.342298 -0.712952 -0.500300 0.865742 0.013796 0.571296 0.426746 -0.701077 -0.573148 -0.403981 -0.712952 -0.587472 0.809127 0.013796 0.523423 0.484272 -0.701077 -0.527651 -0.461826 -0.712952 -0.669038 0.743100 0.013796 0.469785 0.536463 -0.701077 -0.476342 -0.514584 -0.712952 -0.743236 0.668887 0.013796 0.411556 0.582334 -0.701077 -0.420348 -0.561254 -0.712952 -0.808659 0.588116 0.013796 0.348256 0.622261 -0.701077 -0.359210 -0.602219 -0.712952 -0.865844 0.500123 0.013796 0.281121 0.655334 -0.701077 -0.294114 -0.636550 -0.712952 -0.913492 0.406622 0.013796 0.210889 0.681188 -0.701077 -0.225780 -0.663869 -0.712952 -0.951078 0.308642 0.013796 0.139033 0.699400 -0.701077 -0.155642 -0.683721 -0.712952 -0.977980 0.208241 0.013796 0.064965 0.710120 -0.701077 -0.083126 -0.696268 -0.712952 -0.994419 0.104595 0.013796 -0.589806 -0.667142 -0.455028 0.528318 -0.744931 0.407379 -0.610744 -0.000124 0.791828 -0.516637 -0.725283 -0.455028 0.603482 -0.685457 0.407379 -0.607367 -0.064134 0.791828 -0.438552 -0.774998 -0.455028 0.671381 -0.619104 0.407379 -0.597428 -0.126840 0.791828 -0.354911 -0.816693 -0.455028 0.732570 -0.545329 0.407379 -0.580844 -0.188756 0.791828 -0.267361 -0.849392 -0.455028 0.785690 -0.465547 0.407379 -0.557862 -0.248593 0.791828 -0.177739 -0.872559 -0.455028 0.829774 -0.381467 0.407379 -0.529041 -0.305163 0.791828 -0.085310 -0.886381 -0.455028 0.865185 -0.292400 0.407379 -0.494144 -0.358930 0.791828 0.008059 -0.890441 -0.455028 0.891065 -0.200112 0.407379 -0.453804 -0.408743 0.791828 0.101339 -0.884692 -0.455028 0.907131 -0.105620 0.407379 -0.408465 -0.454053 0.791828 0.192634 -0.869392 -0.455028 0.913194 -0.010877 0.407379 -0.359122 -0.494004 0.791828 0.282692 -0.844414 -0.455028 0.909305 0.084892 0.407379 -0.305369 -0.528922 0.791828 0.369635 -0.810135 -0.455028 0.895400 0.179726 0.407379 -0.248252 -0.558014 0.791828 0.451740 -0.767385 -0.455028 0.871904 0.271709 0.407379 -0.188982 -0.580770 0.791828 0.529680 -0.715813 -0.455028 0.838625 0.361594 0.407379 -0.127072 -0.597378 0.791828 0.601785 -0.656357 -0.455028 0.796109 0.447496 0.407379 -0.063763 -0.607406 0.791828 0.666781 -0.590214 -0.455028 0.745254 0.527863 0.407379 -0.000249 -0.610744 0.791828 0.724968 -0.517080 -0.455028 0.685825 0.603064 0.407379 0.063763 -0.607406 0.791828 0.775169 -0.438250 -0.455028 0.618843 0.671622 0.407379 0.127072 -0.597378 0.791828 0.816831 -0.354593 -0.455028 0.545044 0.732782 0.407379 0.188982 -0.580770 0.791828 0.849229 -0.267880 -0.455028 0.466027 0.785405 0.407379 0.248252 -0.558014 0.791828 0.872628 -0.177400 -0.455028 0.381144 0.829922 0.407379 0.305369 -0.528922 0.791828 0.886414 -0.084965 -0.455028 0.292063 0.865298 0.407379 0.359122 -0.494004 0.791828 0.890445 0.007515 -0.455028 0.200656 0.890943 0.407379 0.408465 -0.454053 0.791828 0.884754 0.100799 -0.455028 0.106174 0.907066 0.407379 0.453804 -0.408743 0.791828 0.869317 0.192972 -0.455028 0.010522 0.913198 0.407379 0.494144 -0.358930 0.791828 0.844304 0.283020 -0.455028 -0.085245 0.909272 0.407379 0.529041 -0.305163 0.791828 0.810361 0.369140 -0.455028 -0.179179 0.895509 0.407379 0.557862 -0.248593 0.791828 0.767210 0.452039 -0.455028 -0.272048 0.871798 0.407379 0.580844 -0.188756 0.791828 0.715607 0.529958 -0.455028 -0.361920 0.838484 0.407379 0.597428 -0.126840 0.791828 0.656724 0.601384 -0.455028 -0.447010 0.796382 0.407379 0.607367 -0.064134 0.791828 0.590078 0.666901 -0.455028 -0.528015 0.745146 0.407379 0.610744 -0.000124 0.791828 0.516932 0.725073 -0.455028 -0.603203 0.685702 0.407379 0.607394 0.063887 0.791828 0.438092 0.775258 -0.455028 -0.671748 0.618706 0.407379 0.597353 0.127194 0.791828 0.355244 0.816548 -0.455028 -0.732348 0.545627 0.407379 0.580921 0.188520 0.791828 0.267707 0.849284 -0.455028 -0.785500 0.465867 0.407379 0.557963 0.248366 0.791828 0.177222 0.872664 -0.455028 -0.830000 0.380975 0.407379 0.528860 0.305477 0.791828 0.084784 0.886432 -0.455028 -0.865358 0.291887 0.407379 0.493931 0.359222 0.791828 -0.007696 0.890444 -0.455028 -0.890984 0.200475 0.407379 0.453970 0.408558 0.791828 -0.100979 0.884733 -0.455028 -0.907088 0.105989 0.407379 0.408650 0.453887 0.791828 -0.193149 0.869277 -0.455028 -0.913200 0.010336 0.407379 0.358829 0.494217 0.791828 -0.282348 0.844529 -0.455028 -0.909339 -0.084521 0.407379 0.305584 0.528797 0.791828 -0.369305 0.810286 -0.455028 -0.895473 -0.179361 0.407379 0.248480 0.557912 0.791828 -0.452195 0.767118 -0.455028 -0.871743 -0.272225 0.407379 0.188638 0.580882 0.791828 -0.530104 0.715499 -0.455028 -0.838410 -0.362091 0.407379 0.126718 0.597454 0.791828 -0.601518 0.656602 -0.455028 -0.796291 -0.447172 0.407379 0.064010 0.607381 0.791828 -0.667021 0.589942 -0.455028 -0.745039 -0.528166 0.407379 0.000000 0.610744 0.791828 -0.725178 0.516785 -0.455028 -0.685580 -0.603343 0.407379 -0.064010 0.607381 0.791828 -0.774909 0.438710 -0.455028 -0.619241 -0.671255 0.407379 -0.126718 0.597454 0.791828 -0.816621 0.355078 -0.455028 -0.545478 -0.732459 0.407379 -0.188638 0.580882 0.791828 -0.849338 0.267534 -0.455028 -0.465707 -0.785595 0.407379 -0.248480 0.557912 0.791828 -0.872700 0.177044 -0.455028 -0.380806 -0.830078 0.407379 -0.305584 0.528797 0.791828 -0.886364 0.085490 -0.455028 -0.292576 -0.865125 0.407379 -0.358829 0.494217 0.791828 -0.890442 -0.007878 -0.455028 -0.200293 -0.891024 0.407379 -0.408650 0.453887 0.791828 -0.884713 -0.101159 -0.455028 -0.105805 -0.907109 0.407379 -0.453970 0.408558 0.791828 -0.869431 -0.192457 -0.455028 -0.011063 -0.913192 0.407379 -0.493931 0.359222 0.791828 -0.844472 -0.282520 -0.455028 0.084707 -0.909322 0.407379 -0.528860 0.305477 0.791828 -0.810211 -0.369470 -0.455028 0.179543 -0.895436 0.407379 -0.557963 0.248366 0.791828 -0.767025 -0.452351 -0.455028 0.272403 -0.871687 0.407379 -0.580921 0.188520 0.791828 -0.715921 -0.529534 -0.455028 0.361423 -0.838699 0.407379 -0.597353 0.127194 0.791828 -0.656479 -0.601651 -0.455028 0.447334 -0.796200 0.407379 -0.607394 0.063887 0.791828 -0.119320 -0.991247 0.056502 -0.896164 0.132022 0.423629 -0.427380 -0.000087 -0.904072 -0.014774 -0.998293 0.056502 -0.905065 0.037370 0.423629 -0.425017 -0.044879 -0.904072 0.088942 -0.994433 0.056502 -0.904054 -0.056789 0.423629 -0.418061 -0.088759 -0.904072 0.192676 -0.979634 0.056502 -0.893123 -0.151227 0.423629 -0.406457 -0.132086 -0.904072 0.294287 -0.954045 0.056502 -0.872355 -0.244000 0.423629 -0.390374 -0.173958 -0.904072 0.391739 -0.918340 0.056502 -0.842311 -0.333243 0.423629 -0.370206 -0.213544 -0.904072 0.485830 -0.872225 0.056502 -0.802746 -0.419688 0.423629 -0.345786 -0.251168 -0.904072 0.574570 -0.816503 0.056502 -0.754338 -0.501510 0.423629 -0.317558 -0.286025 -0.904072 0.656981 -0.751787 0.056502 -0.697622 -0.577808 0.423629 -0.285831 -0.317733 -0.904072 0.731476 -0.679522 0.056502 -0.633869 -0.647108 0.423629 -0.251302 -0.345689 -0.904072 0.798666 -0.599116 0.056502 -0.562556 -0.709978 0.423629 -0.213688 -0.370123 -0.904072 0.857059 -0.512110 0.056502 -0.485047 -0.765028 0.423629 -0.173719 -0.390481 -0.904072 0.905592 -0.420370 0.056502 -0.403007 -0.811249 0.423629 -0.132244 -0.406405 -0.904072 0.944662 -0.323142 0.056502 -0.315763 -0.849019 0.423629 -0.088921 -0.418027 -0.904072 0.973327 -0.222355 0.056502 -0.225041 -0.877437 0.423629 -0.044619 -0.425044 -0.904072 0.991174 -0.119926 0.056502 -0.132569 -0.896083 0.423629 -0.000174 -0.427380 -0.904072 0.998284 -0.015383 0.056502 -0.037923 -0.905042 0.423629 0.044619 -0.425044 -0.904072 0.994398 0.089329 0.056502 0.057140 -0.904032 0.423629 0.088921 -0.418027 -0.904072 0.979559 0.193057 0.056502 0.151575 -0.893064 0.423629 0.132244 -0.406405 -0.904072 0.954225 0.293704 0.056502 0.243467 -0.872504 0.423629 0.173719 -0.390481 -0.904072 0.918187 0.392096 0.056502 0.333571 -0.842181 0.423629 0.213688 -0.370123 -0.904072 0.872036 0.486169 0.056502 0.420000 -0.802583 0.423629 0.251302 -0.345689 -0.904072 0.816854 0.574071 0.056502 0.501049 -0.754645 0.423629 0.285831 -0.317733 -0.904072 0.752188 0.656521 0.056502 0.577382 -0.697975 0.423629 0.317558 -0.286025 -0.904072 0.679237 0.731740 0.056502 0.647355 -0.633617 0.423629 0.345786 -0.251168 -0.904072 0.598805 0.798899 0.056502 0.710197 -0.562280 0.423629 0.370206 -0.213544 -0.904072 0.512634 0.856746 0.056502 0.764732 -0.485515 0.423629 0.390374 -0.173958 -0.904072 0.420017 0.905756 0.056502 0.811405 -0.402691 0.423629 0.406457 -0.132086 -0.904072 0.322774 0.944788 0.056502 0.849141 -0.315432 0.423629 0.418061 -0.088759 -0.904072 0.222950 0.973191 0.056502 0.877299 -0.225577 0.423629 0.425017 -0.044879 -0.904072 0.119724 0.991198 0.056502 0.896110 -0.132387 0.423629 0.427380 -0.000087 -0.904072 0.015180 0.998287 0.056502 0.905050 -0.037739 0.423629 0.425035 0.044706 -0.904072 -0.089531 0.994380 0.056502 0.904020 0.057324 0.423629 0.418009 0.089006 -0.904072 -0.192277 0.979713 0.056502 0.893185 0.150863 0.423629 0.406510 0.131920 -0.904072 -0.293899 0.954165 0.056502 0.872454 0.243645 0.423629 0.390445 0.173799 -0.904072 -0.392283 0.918108 0.056502 0.842113 0.333742 0.423629 0.370080 0.213763 -0.904072 -0.486347 0.871937 0.056502 0.802497 0.420164 0.423629 0.345637 0.251373 -0.904072 -0.574237 0.816737 0.056502 0.754543 0.501203 0.423629 0.317674 0.285896 -0.904072 -0.656675 0.752055 0.056502 0.697857 0.577524 0.423629 0.285961 0.317616 -0.904072 -0.731879 0.679088 0.056502 0.633485 0.647484 0.423629 0.251097 0.345838 -0.904072 -0.798422 0.599441 0.056502 0.562846 0.709749 0.423629 0.213838 0.370036 -0.904072 -0.856851 0.512459 0.056502 0.485359 0.764830 0.423629 0.173878 0.390410 -0.904072 -0.905841 0.419833 0.056502 0.402526 0.811487 0.423629 0.132003 0.406483 -0.904072 -0.944854 0.322582 0.056502 0.315260 0.849206 0.423629 0.088674 0.418080 -0.904072 -0.973237 0.222751 0.056502 0.225398 0.877345 0.423629 0.044792 0.425026 -0.904072 -0.991223 0.119522 0.056502 0.132204 0.896137 0.423629 0.000000 0.427380 -0.904072 -0.998290 0.014977 0.056502 0.037555 0.905057 0.423629 -0.044792 0.425026 -0.904072 -0.994451 -0.088739 0.056502 -0.056605 0.904066 0.423629 -0.088674 0.418080 -0.904072 -0.979674 -0.192476 0.056502 -0.151045 0.893154 0.423629 -0.132003 0.406483 -0.904072 -0.954105 -0.294093 0.056502 -0.243822 0.872404 0.423629 -0.173878 0.390410 -0.904072 -0.918028 -0.392470 0.056502 -0.333914 0.842045 0.423629 -0.213838 0.370036 -0.904072 -0.872324 -0.485653 0.056502 -0.419525 0.802831 0.423629 -0.251097 0.345838 -0.904072 -0.816620 -0.574404 0.056502 -0.501357 0.754441 0.423629 -0.285961 0.317616 -0.904072 -0.751921 -0.656828 0.056502 -0.577666 0.697740 0.423629 -0.317674 0.285896 -0.904072 -0.679671 -0.731338 0.056502 -0.646979 0.634001 0.423629 -0.345637 0.251373 -0.904072 -0.599278 -0.798544 0.056502 -0.709864 0.562701 0.423629 -0.370080 0.213763 -0.904072 -0.512285 -0.856955 0.056502 -0.764929 0.485203 0.423629 -0.390445 0.173799 -0.904072 -0.419648 -0.905927 0.056502 -0.811569 0.402361 0.423629 -0.406510 0.131920 -0.904072 -0.323334 -0.944596 0.056502 -0.848954 0.315936 0.423629 -0.418009 0.089006 -0.904072 -0.222553 -0.973282 0.056502 -0.877391 0.225219 0.423629 -0.425035 0.044706 -0.904072 0.625991 -0.649583 -0.431482 -0.534753 -0.760291 0.368778 -0.567604 -0.000116 -0.823302 0.690625 -0.580397 -0.431482 -0.452124 -0.812149 0.368778 -0.564466 -0.059604 -0.823302 0.747146 -0.505566 -0.431482 -0.365370 -0.854697 0.368778 -0.555228 -0.117881 -0.823302 0.796018 -0.424475 -0.431482 -0.273779 -0.888283 0.368778 -0.539816 -0.175423 -0.823302 0.836122 -0.338709 -0.431482 -0.179173 -0.912085 0.368778 -0.518457 -0.231034 -0.823302 0.866766 -0.250079 -0.431482 -0.083519 -0.925758 0.368778 -0.491671 -0.283608 -0.823302 0.888203 -0.157859 -0.431482 0.013967 -0.929412 0.368778 -0.459240 -0.333576 -0.823302 0.899856 -0.063899 -0.431482 0.111299 -0.922830 0.368778 -0.421749 -0.379871 -0.823302 0.901597 0.030764 -0.431482 0.207405 -0.906083 0.368778 -0.379613 -0.421981 -0.823302 0.893532 0.124195 -0.431482 0.300348 -0.879656 0.368778 -0.333755 -0.459110 -0.823302 0.875594 0.217160 -0.431482 0.390888 -0.843332 0.368778 -0.283799 -0.491561 -0.823302 0.848012 0.307732 -0.431482 0.477122 -0.797720 0.368778 -0.230717 -0.518598 -0.823302 0.811484 0.394104 -0.431482 0.557358 -0.743878 0.368778 -0.175633 -0.539747 -0.823302 0.765709 0.476983 -0.431482 0.632252 -0.681366 0.368778 -0.118097 -0.555182 -0.823302 0.711501 0.554607 -0.431482 0.700182 -0.611349 0.368778 -0.059259 -0.564502 -0.823302 0.649966 0.625594 -0.431482 0.759964 -0.535218 0.368778 -0.000231 -0.567604 -0.823302 0.580819 0.690270 -0.431482 0.811873 -0.452620 0.368778 0.059259 -0.564502 -0.823302 0.505275 0.747342 -0.431482 0.854839 -0.365037 0.368778 0.118097 -0.555182 -0.823302 0.424165 0.796183 -0.431482 0.888390 -0.273434 0.368778 0.175633 -0.539747 -0.823302 0.339220 0.835915 -0.431482 0.911976 -0.179730 0.368778 0.230717 -0.518598 -0.823302 0.249742 0.866863 -0.431482 0.925790 -0.083159 0.368778 0.283799 -0.491561 -0.823302 0.157513 0.888264 -0.431482 0.929407 0.014329 0.368778 0.333755 -0.459110 -0.823302 0.064449 0.899816 -0.431482 0.922898 0.110735 0.368778 0.379613 -0.421981 -0.823302 -0.030213 0.901615 -0.431482 0.906209 0.206852 0.368778 0.421749 -0.379871 -0.823302 -0.124543 0.893483 -0.431482 0.879539 0.300690 0.368778 0.459240 -0.333576 -0.823302 -0.217500 0.875510 -0.431482 0.843180 0.391216 0.368778 0.491671 -0.283608 -0.823302 -0.307214 0.848200 -0.431482 0.798011 0.476635 0.368778 0.518457 -0.231034 -0.823302 -0.394419 0.811330 -0.431482 0.743662 0.557647 0.368778 0.539816 -0.175423 -0.823302 -0.477280 0.765524 -0.431482 0.681120 0.632517 0.368778 0.555228 -0.117881 -0.823302 -0.554173 0.711840 -0.431482 0.611777 0.699808 0.368778 0.564466 -0.059604 -0.823302 -0.625727 0.649838 -0.431482 0.535063 0.760073 0.368778 0.567604 -0.000116 -0.823302 -0.690388 0.580679 -0.431482 0.452455 0.811965 0.368778 0.564490 0.059374 -0.823302 -0.747445 0.505123 -0.431482 0.364863 0.854914 0.368778 0.555158 0.118210 -0.823302 -0.795845 0.424799 -0.431482 0.274141 0.888172 0.368778 0.539887 0.175203 -0.823302 -0.835984 0.339050 -0.431482 0.179544 0.912012 0.368778 0.518551 0.230822 -0.823302 -0.866914 0.249565 -0.431482 0.082970 0.925807 0.368778 0.491503 0.283899 -0.823302 -0.888296 0.157332 -0.431482 -0.014518 0.929404 0.368778 0.459042 0.333849 -0.823302 -0.899830 0.064266 -0.431482 -0.110923 0.922875 0.368778 0.421904 0.379699 -0.823302 -0.901609 -0.030397 -0.431482 -0.207036 0.906167 0.368778 0.379785 0.421826 -0.823302 -0.893458 -0.124725 -0.431482 -0.300869 0.879477 0.368778 0.333483 0.459307 -0.823302 -0.875682 -0.216803 -0.431482 -0.390544 0.843491 0.368778 0.283999 0.491445 -0.823302 -0.848137 -0.307387 -0.431482 -0.476797 0.797914 0.368778 0.230928 0.518504 -0.823302 -0.811250 -0.394585 -0.431482 -0.557798 0.743548 0.368778 0.175313 0.539851 -0.823302 -0.765427 -0.477436 -0.431482 -0.632656 0.680992 0.368778 0.117767 0.555252 -0.823302 -0.711727 -0.554318 -0.431482 -0.699933 0.611634 0.368778 0.059489 0.564478 -0.823302 -0.649711 -0.625859 -0.431482 -0.760182 0.534908 0.368778 0.000000 0.567604 -0.823302 -0.580538 -0.690506 -0.431482 -0.812057 0.452290 0.368778 -0.059489 0.564478 -0.823302 -0.505718 -0.747043 -0.431482 -0.854623 0.365544 0.368778 -0.117767 0.555252 -0.823302 -0.424637 -0.795931 -0.431482 -0.888228 0.273960 0.368778 -0.175313 0.539851 -0.823302 -0.338879 -0.836053 -0.431482 -0.912049 0.179359 0.368778 -0.230928 0.518504 -0.823302 -0.249389 -0.866965 -0.431482 -0.925824 0.082782 0.368778 -0.283999 0.491445 -0.823302 -0.158039 -0.888171 -0.431482 -0.929415 -0.013778 0.368778 -0.333483 0.459307 -0.823302 -0.064082 -0.899843 -0.431482 -0.922853 -0.111111 0.368778 -0.379785 0.421826 -0.823302 0.030581 -0.901603 -0.431482 -0.906125 -0.207221 0.368778 -0.421904 0.379699 -0.823302 0.124013 -0.893557 -0.431482 -0.879717 -0.300168 0.368778 -0.459042 0.333849 -0.823302 0.216981 -0.875638 -0.431482 -0.843412 -0.390716 0.368778 -0.491503 0.283899 -0.823302 0.307559 -0.848075 -0.431482 -0.797817 -0.476960 0.368778 -0.518551 0.230822 -0.823302 0.394750 -0.811169 -0.431482 -0.743434 -0.557950 0.368778 -0.539887 0.175203 -0.823302 0.476827 -0.765807 -0.431482 -0.681495 -0.632113 0.368778 -0.555158 0.118210 -0.823302 0.554463 -0.711614 -0.431482 -0.611492 -0.700057 0.368778 -0.564490 0.059374 -0.823302 -0.000027 0.998016 0.062958 -0.002804 0.062958 -0.998012 -0.999996 -0.000204 0.002796 -0.104626 0.992517 0.062958 -0.009387 0.062317 -0.998012 -0.994467 -0.105009 0.002796 -0.207097 0.976293 0.062958 -0.015805 0.061006 -0.998012 -0.978193 -0.207680 0.002796 -0.308279 0.949210 0.062958 -0.022112 0.059014 -0.998012 -0.951039 -0.309058 0.002796 -0.406065 0.911673 0.062958 -0.028175 0.056371 -0.998012 -0.913410 -0.407032 0.002796 -0.498514 0.864592 0.062958 -0.033875 0.053141 -0.998012 -0.866219 -0.499656 0.002796 -0.586384 0.807583 0.062958 -0.039258 0.049298 -0.998012 -0.809081 -0.587690 0.002796 -0.667795 0.741678 0.062958 -0.044209 0.044912 -0.998012 -0.743031 -0.669251 0.002796 -0.741850 0.667604 0.062958 -0.048672 0.040032 -0.998012 -0.668797 -0.743440 0.002796 -0.807148 0.586983 0.062958 -0.052565 0.034763 -0.998012 -0.588005 -0.808853 0.002796 -0.864222 0.499155 0.062958 -0.055919 0.029062 -0.998012 -0.499993 -0.866025 0.002796 -0.911778 0.405829 0.062958 -0.058657 0.023041 -0.998012 -0.406473 -0.913658 0.002796 -0.948982 0.308983 0.062958 -0.060732 0.016827 -0.998012 -0.309428 -0.950919 0.002796 -0.976139 0.207821 0.062958 -0.062161 0.010369 -0.998012 -0.208061 -0.978112 0.002796 -0.992544 0.104370 0.062958 -0.062906 0.003797 -0.998012 -0.104402 -0.994531 0.002796 -0.998016 0.000583 0.062958 -0.062959 -0.002765 -0.998012 -0.000407 -0.999996 0.002796 -0.992581 -0.104020 0.062958 -0.062323 -0.009349 -0.998012 0.104402 -0.994531 0.002796 -0.976212 -0.207477 0.062958 -0.061000 -0.015829 -0.998012 0.208061 -0.978112 0.002796 -0.949090 -0.308648 0.062958 -0.059005 -0.022135 -0.998012 0.309428 -0.950919 0.002796 -0.911921 -0.405508 0.062958 -0.056388 -0.028141 -0.998012 0.406473 -0.913658 0.002796 -0.864398 -0.498850 0.062958 -0.053128 -0.033896 -0.998012 0.499993 -0.866025 0.002796 -0.807355 -0.586698 0.062958 -0.049283 -0.039277 -0.998012 0.588005 -0.808853 0.002796 -0.742086 -0.667342 0.062958 -0.044939 -0.044181 -0.998012 0.668797 -0.743440 0.002796 -0.668057 -0.741442 0.062958 -0.040061 -0.048648 -0.998012 0.743031 -0.669251 0.002796 -0.586669 -0.807376 0.062958 -0.034742 -0.052579 -0.998012 0.809081 -0.587690 0.002796 -0.498819 -0.864416 0.062958 -0.029040 -0.055930 -0.998012 0.866219 -0.499656 0.002796 -0.406387 -0.911530 0.062958 -0.023077 -0.058643 -0.998012 0.913410 -0.407032 0.002796 -0.308614 -0.949102 0.062958 -0.016804 -0.060739 -0.998012 0.951039 -0.309058 0.002796 -0.207441 -0.976219 0.062958 -0.010345 -0.062165 -0.998012 0.978193 -0.207680 0.002796 -0.104976 -0.992480 0.062958 -0.003836 -0.062903 -0.998012 0.994467 -0.105009 0.002796 -0.000379 -0.998016 0.062958 0.002778 -0.062959 -0.998012 0.999996 -0.000204 0.002796 0.104222 -0.992559 0.062958 0.009361 -0.062321 -0.998012 0.994510 0.104604 0.002796 0.207675 -0.976170 0.062958 0.015841 -0.060997 -0.998012 0.978070 0.208260 0.002796 0.307892 -0.949336 0.062958 0.022088 -0.059023 -0.998012 0.951165 0.308671 0.002796 0.405694 -0.911838 0.062958 0.028152 -0.056382 -0.998012 0.913575 0.406660 0.002796 0.499026 -0.864297 0.062958 0.033907 -0.053121 -0.998012 0.865923 0.500169 0.002796 0.586863 -0.807235 0.062958 0.039287 -0.049275 -0.998012 0.808733 0.588169 0.002796 0.667493 -0.741950 0.062958 0.044190 -0.044930 -0.998012 0.743304 0.668948 0.002796 0.741578 -0.667906 0.062958 0.048656 -0.040052 -0.998012 0.669100 0.743168 0.002796 0.807495 -0.586504 0.062958 0.052586 -0.034731 -0.998012 0.587525 0.809201 0.002796 0.864019 -0.499507 0.062958 0.055907 -0.029085 -0.998012 0.500345 0.865821 0.002796 0.911612 -0.406201 0.062958 0.058648 -0.023065 -0.998012 0.406846 0.913493 0.002796 0.949165 -0.308420 0.062958 0.060742 -0.016791 -0.998012 0.308864 0.951102 0.002796 0.976262 -0.207242 0.062958 0.062167 -0.010333 -0.998012 0.207481 0.978235 0.002796 0.992501 -0.104774 0.062958 0.062904 -0.003823 -0.998012 0.104807 0.994489 0.002796 0.998016 -0.000176 0.062958 0.062958 0.002791 -0.998012 0.000000 0.999996 0.002796 0.992538 0.104424 0.062958 0.062319 0.009374 -0.998012 -0.104807 0.994489 0.002796 0.976335 0.206898 0.062958 0.061009 0.015793 -0.998012 -0.207481 0.978235 0.002796 0.949273 0.308085 0.062958 0.059018 0.022100 -0.998012 -0.308864 0.951102 0.002796 0.911756 0.405879 0.062958 0.056377 0.028164 -0.998012 -0.406846 0.913493 0.002796 0.864195 0.499202 0.062958 0.053115 0.033917 -0.998012 -0.500345 0.865821 0.002796 0.807702 0.586219 0.062958 0.049306 0.039248 -0.998012 -0.587525 0.809201 0.002796 0.741814 0.667644 0.062958 0.044921 0.044200 -0.998012 -0.669100 0.743168 0.002796 0.667755 0.741714 0.062958 0.040042 0.048664 -0.998012 -0.743304 0.668948 0.002796 0.587147 0.807028 0.062958 0.034773 0.052558 -0.998012 -0.808733 0.588169 0.002796 0.499331 0.864121 0.062958 0.029073 0.055913 -0.998012 -0.865923 0.500169 0.002796 0.406015 0.911695 0.062958 0.023053 0.058652 -0.998012 -0.913575 0.406660 0.002796 0.308227 0.949227 0.062958 0.016779 0.060745 -0.998012 -0.951165 0.308671 0.002796 0.208020 0.976096 0.062958 0.010382 0.062159 -0.998012 -0.978070 0.208260 0.002796 0.104572 0.992523 0.062958 0.003810 0.062905 -0.998012 -0.994510 0.104604 0.002796 -0.027644 -0.996760 0.075536 -0.344799 0.080435 0.935224 -0.938269 -0.000191 -0.345906 0.076976 -0.994168 0.075536 -0.351330 0.043855 0.935224 -0.933082 -0.098527 -0.345906 0.179767 -0.980805 0.075536 -0.353985 0.007145 0.935224 -0.917812 -0.194861 -0.345906 0.281572 -0.956562 0.075536 -0.352784 -0.029994 0.935224 -0.892334 -0.289981 -0.345906 0.380276 -0.921783 0.075536 -0.347698 -0.066803 0.935224 -0.857028 -0.381907 -0.345906 0.473914 -0.877325 0.075536 -0.338884 -0.102538 0.935224 -0.812750 -0.468814 -0.345906 0.563254 -0.822824 0.075536 -0.326271 -0.137491 0.935224 -0.759139 -0.551414 -0.345906 0.646390 -0.759259 0.075536 -0.310064 -0.170929 0.935224 -0.697166 -0.627940 -0.345906 0.722406 -0.687331 0.075536 -0.290442 -0.202484 0.935224 -0.627514 -0.697550 -0.345906 0.789856 -0.608623 0.075536 -0.267852 -0.231542 0.935224 -0.551709 -0.758925 -0.345906 0.849294 -0.522488 0.075536 -0.242109 -0.258339 0.935224 -0.469130 -0.812568 -0.345906 0.899377 -0.430599 0.075536 -0.213700 -0.282291 0.935224 -0.381383 -0.857261 -0.345906 0.939219 -0.334905 0.075536 -0.183240 -0.302951 0.935224 -0.290328 -0.892221 -0.345906 0.969147 -0.234624 0.075536 -0.150480 -0.320487 0.935224 -0.195218 -0.917736 -0.345906 0.988400 -0.131758 0.075536 -0.116061 -0.334494 0.935224 -0.097957 -0.933142 -0.345906 0.996743 -0.028253 0.075536 -0.080646 -0.344750 0.935224 -0.000382 -0.938269 -0.345906 0.994214 0.076368 0.075536 -0.044069 -0.351304 0.935224 0.097957 -0.933142 -0.345906 0.980735 0.180148 0.075536 -0.007007 -0.353988 0.935224 0.195218 -0.917736 -0.345906 0.956453 0.281944 0.075536 0.030132 -0.352772 0.935224 0.290328 -0.892221 -0.345906 0.922016 0.379713 0.075536 0.066591 -0.347738 0.935224 0.381383 -0.857261 -0.345906 0.877141 0.474255 0.075536 0.102670 -0.338844 0.935224 0.469130 -0.812568 -0.345906 0.822605 0.563574 0.075536 0.137617 -0.326217 0.935224 0.551709 -0.758925 -0.345906 0.759654 0.645926 0.075536 0.170739 -0.310168 0.935224 0.627514 -0.697550 -0.345906 0.687773 0.721986 0.075536 0.202307 -0.290565 0.935224 0.697166 -0.627940 -0.345906 0.608315 0.790093 0.075536 0.231646 -0.267762 0.935224 0.759139 -0.551414 -0.345906 0.522158 0.849497 0.075536 0.258434 -0.242009 0.935224 0.812750 -0.468814 -0.345906 0.431148 0.899114 0.075536 0.282161 -0.213873 0.935224 0.857028 -0.381907 -0.345906 0.334540 0.939349 0.075536 0.303022 -0.183122 0.935224 0.892334 -0.289981 -0.345906 0.234247 0.969238 0.075536 0.320546 -0.150355 0.935224 0.917812 -0.194861 -0.345906 0.132362 0.988319 0.075536 0.334423 -0.116266 0.935224 0.933082 -0.098527 -0.345906 0.028050 0.996749 0.075536 0.344766 -0.080576 0.935224 0.938269 -0.000191 -0.345906 -0.076571 0.994199 0.075536 0.351312 -0.043998 0.935224 0.933122 0.098147 -0.345906 -0.180348 0.980698 0.075536 0.353989 -0.006935 0.935224 0.917696 0.195405 -0.345906 -0.281183 0.956677 0.075536 0.352796 0.029851 0.935224 0.892452 0.289617 -0.345906 -0.379901 0.921938 0.075536 0.347725 0.066662 0.935224 0.857183 0.381558 -0.345906 -0.474434 0.877044 0.075536 0.338823 0.102739 0.935224 0.812472 0.469295 -0.345906 -0.563742 0.822490 0.075536 0.326189 0.137684 0.935224 0.758812 0.551864 -0.345906 -0.646080 0.759522 0.075536 0.310133 0.170803 0.935224 0.697422 0.627656 -0.345906 -0.722126 0.687626 0.075536 0.290524 0.202366 0.935224 0.627798 0.697294 -0.345906 -0.790217 0.608155 0.075536 0.267715 0.231701 0.935224 0.551259 0.759251 -0.345906 -0.849081 0.522834 0.075536 0.242215 0.258241 0.935224 0.469461 0.812377 -0.345906 -0.899202 0.430965 0.075536 0.213815 0.282204 0.935224 0.381732 0.857106 -0.345906 -0.939418 0.334349 0.075536 0.183061 0.303060 0.935224 0.289799 0.892393 -0.345906 -0.969286 0.234050 0.075536 0.150290 0.320577 0.935224 0.194674 0.917852 -0.345906 -0.988346 0.132161 0.075536 0.116198 0.334446 0.935224 0.098337 0.933102 -0.345906 -0.996754 0.027847 0.075536 0.080505 0.344783 0.935224 0.000000 0.938269 -0.345906 -0.994183 -0.076773 0.075536 0.043926 0.351321 0.935224 -0.098337 0.933102 -0.345906 -0.980842 -0.179567 0.075536 0.007217 0.353983 0.935224 -0.194674 0.917852 -0.345906 -0.956620 -0.281377 0.075536 -0.029922 0.352790 0.935224 -0.289799 0.892393 -0.345906 -0.921861 -0.380088 0.075536 -0.066733 0.347711 0.935224 -0.381732 0.857106 -0.345906 -0.876948 -0.474613 0.075536 -0.102808 0.338802 0.935224 -0.469461 0.812377 -0.345906 -0.822939 -0.563086 0.075536 -0.137424 0.326299 0.935224 -0.551259 0.759251 -0.345906 -0.759391 -0.646235 0.075536 -0.170866 0.310099 0.935224 -0.627798 0.697294 -0.345906 -0.687479 -0.722266 0.075536 -0.202425 0.290483 0.935224 -0.697422 0.627656 -0.345906 -0.608784 -0.789732 0.075536 -0.231487 0.267899 0.935224 -0.758812 0.551864 -0.345906 -0.522661 -0.849188 0.075536 -0.258290 0.242162 0.935224 -0.812472 0.469295 -0.345906 -0.430782 -0.899289 0.075536 -0.282248 0.213758 0.935224 -0.857183 0.381558 -0.345906 -0.334157 -0.939486 0.075536 -0.303097 0.182999 0.935224 -0.892452 0.289617 -0.345906 -0.234821 -0.969099 0.075536 -0.320457 0.150545 0.935224 -0.917696 0.195405 -0.345906 -0.131960 -0.988373 0.075536 -0.334470 0.116130 0.935224 -0.933122 0.098147 -0.345906 0.018947 -0.994426 0.103716 0.176833 0.105433 0.978578 -0.984058 -0.000200 0.177845 0.123065 -0.986964 0.103716 0.164809 0.123385 0.978578 -0.978618 -0.103336 0.177845 0.224860 -0.968856 0.103716 0.151110 0.139828 0.978578 -0.962603 -0.204370 0.177845 0.325164 -0.939953 0.103716 0.135623 0.154895 0.978578 -0.935882 -0.304132 0.177845 0.421887 -0.900696 0.103716 0.118642 0.168256 0.978578 -0.898852 -0.400544 0.177845 0.513112 -0.852032 0.103716 0.100533 0.179664 0.978578 -0.852414 -0.491693 0.177845 0.599585 -0.793562 0.103716 0.081150 0.189211 0.978578 -0.796187 -0.578324 0.177845 0.679453 -0.726351 0.103716 0.060872 0.196674 0.978578 -0.731189 -0.658584 0.177845 0.751838 -0.651139 0.103716 0.039924 0.201971 0.978578 -0.658138 -0.731591 0.177845 0.815373 -0.569571 0.103716 0.018741 0.205024 0.978578 -0.578633 -0.795961 0.177845 0.870577 -0.480977 0.103716 -0.002850 0.205859 0.978578 -0.492024 -0.852223 0.177845 0.916192 -0.387085 0.103716 -0.024410 0.204426 0.978578 -0.399995 -0.899097 0.177845 0.951426 -0.289881 0.103716 -0.045500 0.200788 0.978578 -0.304496 -0.935763 0.177845 0.976568 -0.188569 0.103716 -0.066293 0.194913 0.978578 -0.204745 -0.962523 0.177845 0.990953 -0.085179 0.103716 -0.086357 0.186892 0.978578 -0.102738 -0.978681 0.177845 0.994438 0.018339 0.103716 -0.105324 0.176898 0.978578 -0.000401 -0.984058 0.177845 0.987039 0.122462 0.103716 -0.123285 0.164885 0.978578 0.102738 -0.978681 0.177845 0.968768 0.225237 0.103716 -0.139887 0.151055 0.978578 0.204745 -0.962523 0.177845 0.939826 0.325530 0.103716 -0.154948 0.135562 0.978578 0.304496 -0.935763 0.177845 0.900954 0.421337 0.103716 -0.168184 0.118744 0.978578 0.399995 -0.899097 0.177845 0.851833 0.513443 0.103716 -0.179703 0.100464 0.978578 0.492024 -0.852223 0.177845 0.793329 0.599893 0.103716 -0.189242 0.081076 0.978578 0.578633 -0.795961 0.177845 0.726766 0.679010 0.103716 -0.196637 0.060992 0.978578 0.658138 -0.731591 0.177845 0.651598 0.751440 0.103716 -0.201946 0.040047 0.978578 0.731189 -0.658584 0.177845 0.569253 0.815594 0.103716 -0.205031 0.018661 0.978578 0.796187 -0.578324 0.177845 0.480638 0.870764 0.103716 -0.205858 -0.002930 0.978578 0.852414 -0.491693 0.177845 0.387645 0.915955 0.103716 -0.204441 -0.024285 0.978578 0.898852 -0.400544 0.177845 0.289511 0.951539 0.103716 -0.200770 -0.045578 0.978578 0.935882 -0.304132 0.177845 0.188189 0.976641 0.103716 -0.194888 -0.066369 0.978578 0.962603 -0.204370 0.177845 0.085784 0.990901 0.103716 -0.186945 -0.086242 0.978578 0.978618 -0.103336 0.177845 -0.018542 0.994434 0.103716 -0.176876 -0.105361 0.978578 0.984058 -0.000200 0.177845 -0.122663 0.987014 0.103716 -0.164859 -0.123318 0.978578 0.978660 0.102937 0.177845 -0.225434 0.968722 0.103716 -0.151027 -0.139917 0.978578 0.962481 0.204941 0.177845 -0.324782 0.940085 0.103716 -0.135686 -0.154840 0.978578 0.936006 0.303751 0.177845 -0.421521 0.900868 0.103716 -0.118710 -0.168208 0.978578 0.899015 0.400178 0.177845 -0.513616 0.851728 0.103716 -0.100427 -0.179723 0.978578 0.852122 0.492198 0.177845 -0.600055 0.793207 0.103716 -0.081038 -0.189259 0.978578 0.795844 0.578795 0.177845 -0.679158 0.726628 0.103716 -0.060952 -0.196649 0.978578 0.731457 0.658287 0.177845 -0.751573 0.651445 0.103716 -0.040006 -0.201954 0.978578 0.658436 0.731323 0.177845 -0.815710 0.569087 0.103716 -0.018620 -0.205035 0.978578 0.578161 0.796304 0.177845 -0.870381 0.481331 0.103716 0.002766 -0.205860 0.978578 0.492371 0.852022 0.177845 -0.916034 0.387458 0.103716 0.024326 -0.204436 0.978578 0.400361 0.898934 0.177845 -0.951598 0.289317 0.103716 0.045619 -0.200761 0.978578 0.303942 0.935944 0.177845 -0.976679 0.187990 0.103716 0.066409 -0.194874 0.978578 0.204174 0.962644 0.177845 -0.990918 0.085582 0.103716 0.086280 -0.186927 0.978578 0.103136 0.978639 0.177845 -0.994430 -0.018744 0.103716 0.105397 -0.176855 0.978578 0.000000 0.984058 0.177845 -0.986989 -0.122864 0.103716 0.123352 -0.164834 0.978578 -0.103136 0.978639 0.177845 -0.968901 -0.224663 0.103716 0.139797 -0.151138 0.978578 -0.204174 0.962644 0.177845 -0.940019 -0.324973 0.103716 0.154868 -0.135654 0.978578 -0.303942 0.935944 0.177845 -0.900782 -0.421704 0.103716 0.168232 -0.118676 0.978578 -0.400361 0.898934 0.177845 -0.851624 -0.513790 0.103716 0.179744 -0.100390 0.978578 -0.492371 0.852022 0.177845 -0.793684 -0.599423 0.103716 0.189194 -0.081188 0.978578 -0.578161 0.796304 0.177845 -0.726489 -0.679306 0.103716 0.196661 -0.060912 0.978578 -0.658436 0.731323 0.177845 -0.651292 -0.751706 0.103716 0.201962 -0.039965 0.978578 -0.731457 0.658287 0.177845 -0.569737 -0.815256 0.103716 0.205020 -0.018783 0.978578 -0.795844 0.578795 0.177845 -0.481154 -0.870479 0.103716 0.205859 0.002808 0.978578 -0.852122 0.492198 0.177845 -0.387272 -0.916113 0.103716 0.204431 0.024368 0.978578 -0.899015 0.400178 0.177845 -0.289124 -0.951657 0.103716 0.200752 0.045660 0.978578 -0.936006 0.303751 0.177845 -0.188768 -0.976529 0.103716 0.194927 0.066254 0.978578 -0.962481 0.204941 0.177845 -0.085381 -0.990935 0.103716 0.186909 0.086318 0.978578 -0.978660 0.102937 0.177845 0.072284 0.747186 -0.660672 0.081567 -0.664614 -0.742721 -0.994043 -0.000202 -0.108987 -0.006425 0.750647 -0.660672 0.150774 -0.652405 -0.742721 -0.988547 -0.104384 -0.108987 -0.084317 0.745924 -0.660672 0.217688 -0.633228 -0.742721 -0.972370 -0.206444 -0.108987 -0.162031 0.732979 -0.660672 0.282855 -0.606925 -0.742721 -0.945378 -0.307218 -0.108987 -0.237960 0.711960 -0.660672 0.344908 -0.573937 -0.742721 -0.907972 -0.404609 -0.108987 -0.310585 0.683410 -0.660672 0.402626 -0.535031 -0.742721 -0.861063 -0.496682 -0.108987 -0.380500 0.647095 -0.660672 0.456484 -0.489886 -0.742721 -0.804265 -0.584191 -0.108987 -0.446225 0.603652 -0.660672 0.505313 -0.439345 -0.742721 -0.738608 -0.665267 -0.108987 -0.507034 0.553560 -0.660672 0.548577 -0.383965 -0.742721 -0.664816 -0.739014 -0.108987 -0.561761 0.497932 -0.660672 0.585473 -0.324941 -0.742721 -0.584504 -0.804038 -0.108987 -0.610854 0.436313 -0.660672 0.616305 -0.261790 -0.742721 -0.497016 -0.860870 -0.108987 -0.653219 0.369889 -0.660672 0.640348 -0.195755 -0.742721 -0.404054 -0.908219 -0.108987 -0.688089 0.300078 -0.660672 0.657210 -0.128221 -0.742721 -0.307586 -0.945258 -0.108987 -0.715749 0.226308 -0.660672 0.667029 -0.058634 -0.742721 -0.206822 -0.972289 -0.108987 -0.735526 0.150046 -0.660672 0.669501 0.011598 -0.742721 -0.103780 -0.988611 -0.108987 -0.747142 0.072740 -0.660672 0.664664 0.081161 -0.742721 -0.000405 -0.994043 -0.108987 -0.750651 -0.005966 -0.660672 0.652497 0.150376 -0.742721 0.103780 -0.988611 -0.108987 -0.745892 -0.084607 -0.660672 0.633143 0.217934 -0.742721 0.206822 -0.972289 -0.108987 -0.732916 -0.162316 -0.660672 0.606815 0.283092 -0.742721 0.307586 -0.945258 -0.108987 -0.712106 -0.237525 -0.660672 0.574148 0.344557 -0.742721 0.404054 -0.908219 -0.108987 -0.683290 -0.310850 -0.660672 0.534874 0.402834 -0.742721 0.497016 -0.860870 -0.108987 -0.646947 -0.380752 -0.660672 0.489708 0.456674 -0.742721 0.584504 -0.804038 -0.108987 -0.603925 -0.445856 -0.660672 0.439654 0.505045 -0.742721 0.664816 -0.739014 -0.108987 -0.553870 -0.506696 -0.660672 0.384300 0.548342 -0.742721 0.738608 -0.665267 -0.108987 -0.497714 -0.561955 -0.660672 0.324713 0.585600 -0.742721 0.804265 -0.584191 -0.108987 -0.436076 -0.611024 -0.660672 0.261550 0.616407 -0.742721 0.861063 -0.496682 -0.108987 -0.370288 -0.652993 -0.660672 0.196146 0.640228 -0.742721 0.907972 -0.404609 -0.108987 -0.299810 -0.688205 -0.660672 0.127965 0.657260 -0.742721 0.945378 -0.307218 -0.108987 -0.226030 -0.715837 -0.660672 0.058375 0.667052 -0.742721 0.972370 -0.206444 -0.108987 -0.150496 -0.735434 -0.660672 -0.011189 0.669508 -0.742721 0.988547 -0.104384 -0.108987 -0.072588 -0.747157 -0.660672 -0.081296 0.664648 -0.742721 0.994043 -0.000202 -0.108987 0.006119 -0.750650 -0.660672 -0.150509 0.652467 -0.742721 0.988590 0.103982 -0.108987 0.084759 -0.745874 -0.660672 -0.218063 0.633099 -0.742721 0.972247 0.207020 -0.108987 0.161732 -0.733045 -0.660672 -0.282608 0.607041 -0.742721 0.945503 0.306833 -0.108987 0.237670 -0.712057 -0.660672 -0.344674 0.574078 -0.742721 0.908137 0.404239 -0.108987 0.310989 -0.683226 -0.660672 -0.402943 0.534792 -0.742721 0.860768 0.497192 -0.108987 0.380884 -0.646869 -0.660672 -0.456774 0.489615 -0.742721 0.803919 0.584668 -0.108987 0.445979 -0.603834 -0.660672 -0.505134 0.439551 -0.742721 0.738879 0.664966 -0.108987 0.506809 -0.553766 -0.660672 -0.548420 0.384188 -0.742721 0.665116 0.738744 -0.108987 0.562056 -0.497599 -0.660672 -0.585666 0.324594 -0.742721 0.584028 0.804384 -0.108987 0.610677 -0.436562 -0.660672 -0.616198 0.262041 -0.742721 0.497367 0.860667 -0.108987 0.653068 -0.370155 -0.660672 -0.640268 0.196016 -0.742721 0.404424 0.908055 -0.108987 0.688266 -0.299670 -0.660672 -0.657286 0.127831 -0.742721 0.307026 0.945440 -0.108987 0.715883 -0.225884 -0.660672 -0.667064 0.058239 -0.742721 0.206246 0.972412 -0.108987 0.735465 -0.150346 -0.660672 -0.669505 -0.011325 -0.742721 0.104183 0.988569 -0.108987 0.747172 -0.072436 -0.660672 -0.664631 -0.081432 -0.742721 0.000000 0.994043 -0.108987 0.750648 0.006272 -0.660672 -0.652436 -0.150641 -0.742721 -0.104183 0.988569 -0.108987 0.745942 0.084165 -0.660672 -0.633272 -0.217559 -0.742721 -0.206246 0.972412 -0.108987 0.733012 0.161881 -0.660672 -0.606983 -0.282732 -0.742721 -0.307026 0.945440 -0.108987 0.712009 0.237815 -0.660672 -0.574008 -0.344791 -0.742721 -0.404424 0.908055 -0.108987 0.683163 0.311129 -0.660672 -0.534710 -0.403052 -0.742721 -0.497367 0.860667 -0.108987 0.647173 0.380368 -0.660672 -0.489979 -0.456384 -0.742721 -0.584028 0.804384 -0.108987 0.603743 0.446102 -0.660672 -0.439448 -0.505224 -0.742721 -0.665116 0.738744 -0.108987 0.553663 0.506922 -0.660672 -0.384077 -0.548499 -0.742721 -0.738879 0.664966 -0.108987 0.498047 0.561660 -0.660672 -0.325060 -0.585407 -0.742721 -0.803919 0.584668 -0.108987 0.436438 0.610765 -0.660672 -0.261915 -0.616252 -0.742721 -0.860768 0.497192 -0.108987 0.370022 0.653144 -0.660672 -0.195885 -0.640308 -0.742721 -0.908137 0.404239 -0.108987 0.299530 0.688327 -0.660672 -0.127698 -0.657312 -0.742721 -0.945503 0.306833 -0.108987 0.226454 0.715703 -0.660672 -0.058770 -0.667017 -0.742721 -0.972247 0.207020 -0.108987 0.150196 0.735495 -0.660672 0.011462 -0.669503 -0.742721 -0.988590 0.103982 -0.108987 0.039140 0.733059 0.679038 -0.042483 0.680165 -0.731827 -0.998330 -0.000203 0.057764 -0.037905 0.733124 0.679038 -0.113535 0.671967 -0.731827 -0.992811 -0.104834 0.057764 -0.113808 0.725227 0.679038 -0.182680 0.656550 -0.731827 -0.976563 -0.207334 0.057764 -0.189190 0.709305 0.679038 -0.250485 0.633788 -0.731827 -0.949455 -0.308543 0.057764 -0.262488 0.685570 0.679038 -0.315531 0.604045 -0.731827 -0.911888 -0.406354 0.057764 -0.332241 0.654617 0.679038 -0.376534 0.568025 -0.731827 -0.864776 -0.498824 0.057764 -0.399020 0.616190 0.679038 -0.433993 0.525433 -0.731827 -0.807734 -0.586711 0.057764 -0.461403 0.570976 0.679038 -0.486672 0.477054 -0.731827 -0.741794 -0.668136 0.057764 -0.518704 0.519473 0.679038 -0.533990 0.423420 -0.731827 -0.667683 -0.742202 0.057764 -0.569830 0.462819 0.679038 -0.575061 0.365697 -0.731827 -0.587025 -0.807505 0.057764 -0.615198 0.400547 0.679038 -0.610222 0.303412 -0.731827 -0.499160 -0.864582 0.057764 -0.653790 0.333864 0.679038 -0.638661 0.237786 -0.731827 -0.405796 -0.912136 0.057764 -0.684917 0.264189 0.679038 -0.659895 0.170200 -0.731827 -0.308913 -0.949335 0.057764 -0.708834 0.190950 0.679038 -0.674099 0.100101 -0.731827 -0.207714 -0.976483 0.057764 -0.724943 0.115607 0.679038 -0.680878 0.028899 -0.731827 -0.104228 -0.992875 0.057764 -0.733035 0.039588 0.679038 -0.680191 -0.042067 -0.731827 -0.000407 -0.998330 0.057764 -0.733147 -0.037457 0.679038 -0.672036 -0.113124 -0.731827 0.104228 -0.992875 0.057764 -0.725183 -0.114090 0.679038 -0.656479 -0.182935 -0.731827 0.207714 -0.976483 0.057764 -0.709232 -0.189466 0.679038 -0.633690 -0.250732 -0.731827 0.308913 -0.949335 0.057764 -0.685731 -0.262069 0.679038 -0.604237 -0.315162 -0.731827 0.405796 -0.912136 0.057764 -0.654487 -0.332495 0.679038 -0.567878 -0.376755 -0.731827 0.499160 -0.864582 0.057764 -0.616035 -0.399259 0.679038 -0.525264 -0.434197 -0.731827 0.587025 -0.807505 0.057764 -0.571258 -0.461054 0.679038 -0.477351 -0.486380 -0.731827 0.667683 -0.742202 0.057764 -0.519790 -0.518387 0.679038 -0.423746 -0.533731 -0.731827 0.741794 -0.668136 0.057764 -0.462597 -0.570010 0.679038 -0.365473 -0.575204 -0.731827 0.807734 -0.586711 0.057764 -0.400308 -0.615354 0.679038 -0.303175 -0.610340 -0.731827 0.864776 -0.498824 0.057764 -0.334264 -0.653586 0.679038 -0.238176 -0.638515 -0.731827 0.911888 -0.406354 0.057764 -0.263922 -0.685020 0.679038 -0.169943 -0.659961 -0.731827 0.949455 -0.308543 0.057764 -0.190674 -0.708908 0.679038 -0.099838 -0.674138 -0.731827 0.976563 -0.207334 0.057764 -0.116050 -0.724872 0.679038 -0.029315 -0.680860 -0.731827 0.992811 -0.104834 0.057764 -0.039439 -0.733043 0.679038 0.042206 -0.680183 -0.731827 0.998330 -0.000203 0.057764 0.037606 -0.733139 0.679038 0.113261 -0.672013 -0.731827 0.992853 0.104430 0.057764 0.114238 -0.725160 0.679038 0.183069 -0.656442 -0.731827 0.976440 0.207913 0.057764 0.188901 -0.709382 0.679038 0.250227 -0.633890 -0.731827 0.949580 0.308156 0.057764 0.262209 -0.685677 0.679038 0.315285 -0.604173 -0.731827 0.912054 0.405982 0.057764 0.332629 -0.654420 0.679038 0.376870 -0.567802 -0.731827 0.864481 0.499336 0.057764 0.399385 -0.615954 0.679038 0.434304 -0.525176 -0.731827 0.807386 0.587190 0.057764 0.461171 -0.571164 0.679038 0.486478 -0.477252 -0.731827 0.742066 0.667834 0.057764 0.518493 -0.519685 0.679038 0.533818 -0.423637 -0.731827 0.667985 0.741930 0.057764 0.570104 -0.462481 0.679038 0.575278 -0.365356 -0.731827 0.586547 0.807853 0.057764 0.615035 -0.400798 0.679038 0.610098 -0.303661 -0.731827 0.499512 0.864379 0.057764 0.653654 -0.334131 0.679038 0.638564 -0.238046 -0.731827 0.406168 0.911971 0.057764 0.685073 -0.263783 0.679038 0.659996 -0.169809 -0.731827 0.308350 0.949518 0.057764 0.708947 -0.190529 0.679038 0.674158 -0.099701 -0.731827 0.207135 0.976605 0.057764 0.724896 -0.115902 0.679038 0.680866 -0.029176 -0.731827 0.104632 0.992832 0.057764 0.733051 -0.039290 0.679038 0.680174 0.042344 -0.731827 0.000000 0.998330 0.057764 0.733131 0.037756 0.679038 0.671990 0.113398 -0.731827 -0.104632 0.992832 0.057764 0.725251 0.113660 0.679038 0.656587 0.182546 -0.731827 -0.207135 0.976605 0.057764 0.709344 0.189045 0.679038 0.633839 0.250356 -0.731827 -0.308350 0.949518 0.057764 0.685624 0.262349 0.679038 0.604109 0.315408 -0.731827 -0.406168 0.911971 0.057764 0.654352 0.332762 0.679038 0.567725 0.376986 -0.731827 -0.499512 0.864379 0.057764 0.616271 0.398894 0.679038 0.525521 0.433886 -0.731827 -0.586547 0.807853 0.057764 0.571070 0.461287 0.679038 0.477153 0.486575 -0.731827 -0.667985 0.741930 0.057764 0.519579 0.518599 0.679038 0.423528 0.533904 -0.731827 -0.742066 0.667834 0.057764 0.462935 0.569735 0.679038 0.365814 0.574987 -0.731827 -0.807386 0.587190 0.057764 0.400673 0.615117 0.679038 0.303537 0.610160 -0.731827 -0.864481 0.499336 0.057764 0.333997 0.653722 0.679038 0.237916 0.638612 -0.731827 -0.912054 0.405982 0.057764 0.263643 0.685127 0.679038 0.169674 0.660031 -0.731827 -0.949580 0.308156 0.057764 0.191094 0.708795 0.679038 0.100238 0.674079 -0.731827 -0.976440 0.207913 0.057764 0.115755 0.724919 0.679038 0.029038 0.680872 -0.731827 -0.992853 0.104430 0.057764 -0.302148 -0.947523 0.104436 -0.895605 0.319688 0.309341 -0.326495 -0.000066 -0.945199 -0.201177 -0.973972 0.104436 -0.924178 0.224062 0.309341 -0.324690 -0.034285 -0.945199 -0.098979 -0.989594 0.104436 -0.942445 0.126910 0.309341 -0.319376 -0.067807 -0.945199 0.005282 -0.994518 0.104436 -0.950555 0.027436 0.309341 -0.310510 -0.100906 -0.945199 0.109486 -0.988487 0.104436 -0.948196 -0.072340 0.309341 -0.298225 -0.132894 -0.945199 0.211512 -0.971780 0.104436 -0.935563 -0.170384 0.309341 -0.282817 -0.163136 -0.945199 0.312196 -0.944260 0.104436 -0.912553 -0.267499 0.309341 -0.264162 -0.191878 -0.945199 0.409442 -0.906339 0.104436 -0.879491 -0.361668 0.309341 -0.242597 -0.218508 -0.945199 0.502178 -0.858435 0.104436 -0.836742 -0.451853 0.309341 -0.218359 -0.242730 -0.945199 0.588581 -0.801664 0.104436 -0.785313 -0.536276 0.309341 -0.191981 -0.264087 -0.945199 0.669360 -0.735562 0.104436 -0.724782 -0.615629 0.309341 -0.163246 -0.282754 -0.945199 0.742765 -0.661357 0.104436 -0.656268 -0.688201 0.309341 -0.132712 -0.298306 -0.945199 0.807409 -0.580675 0.104436 -0.581278 -0.752611 0.309341 -0.101027 -0.310471 -0.945199 0.863821 -0.492855 0.104436 -0.499198 -0.809389 0.309341 -0.067931 -0.319350 -0.945199 0.910719 -0.399606 0.104436 -0.411619 -0.857250 0.309341 -0.034087 -0.324710 -0.945199 0.947338 -0.302727 0.104436 -0.320235 -0.895409 0.309341 -0.000133 -0.326495 -0.945199 0.973849 -0.201772 0.104436 -0.224626 -0.924041 0.309341 0.034087 -0.324710 -0.945199 0.989632 -0.098594 0.104436 -0.126543 -0.942494 0.309341 0.067931 -0.319350 -0.945199 0.994515 0.005669 0.104436 -0.027066 -0.950566 0.309341 0.101027 -0.310471 -0.945199 0.988553 0.108882 0.104436 0.071761 -0.948240 0.309341 0.132712 -0.298306 -0.945199 0.971697 0.211890 0.104436 0.170748 -0.935496 0.309341 0.163246 -0.282754 -0.945199 0.944138 0.312563 0.104436 0.267854 -0.912448 0.309341 0.191981 -0.264087 -0.945199 0.906589 0.408888 0.104436 0.361131 -0.879712 0.309341 0.218359 -0.242730 -0.945199 0.858742 0.501653 0.104436 0.451342 -0.837018 0.309341 0.242597 -0.218508 -0.945199 0.801435 0.588893 0.104436 0.536582 -0.785104 0.309341 0.264162 -0.191878 -0.945199 0.735301 0.669645 0.104436 0.615911 -0.724542 0.309341 0.282817 -0.163136 -0.945199 0.661811 0.742361 0.104436 0.687800 -0.656688 0.309341 0.298225 -0.132894 -0.945199 0.580361 0.807635 0.104436 0.752838 -0.580985 0.309341 0.310510 -0.100906 -0.945199 0.492519 0.864013 0.104436 0.809583 -0.498883 0.309341 0.319376 -0.067807 -0.945199 0.400162 0.910474 0.104436 0.856999 -0.412142 0.309341 0.324690 -0.034285 -0.945199 0.302534 0.947400 0.104436 0.895474 -0.320053 0.309341 0.326495 -0.000066 -0.945199 0.201574 0.973890 0.104436 0.924086 -0.224438 0.309341 0.324703 0.034153 -0.945199 0.098393 0.989652 0.104436 0.942520 -0.126351 0.309341 0.319336 0.067996 -0.945199 -0.004877 0.994520 0.104436 0.950544 -0.027823 0.309341 0.310551 0.100780 -0.945199 -0.109083 0.988531 0.104436 0.948225 0.071954 0.309341 0.298279 0.132773 -0.945199 -0.212087 0.971654 0.104436 0.935461 0.170939 0.309341 0.282720 0.163303 -0.945199 -0.312756 0.944075 0.104436 0.912394 0.268040 0.309341 0.264048 0.192035 -0.945199 -0.409073 0.906506 0.104436 0.879638 0.361310 0.309341 0.242686 0.218409 -0.945199 -0.501828 0.858639 0.104436 0.836926 0.451513 0.309341 0.218458 0.242641 -0.945199 -0.589056 0.801315 0.104436 0.784995 0.536742 0.309341 0.191825 0.264201 -0.945199 -0.669060 0.735834 0.104436 0.725033 0.615334 0.309341 0.163361 0.282687 -0.945199 -0.742496 0.661659 0.104436 0.656548 0.687934 0.309341 0.132833 0.298252 -0.945199 -0.807753 0.580197 0.104436 0.580832 0.752956 0.309341 0.100843 0.310531 -0.945199 -0.864113 0.492343 0.104436 0.498718 0.809684 0.309341 0.067742 0.319390 -0.945199 -0.910556 0.399977 0.104436 0.411968 0.857083 0.309341 0.034219 0.324697 -0.945199 -0.947461 0.302341 0.104436 0.319870 0.895540 0.309341 0.000000 0.326495 -0.945199 -0.973931 0.201375 0.104436 0.224250 0.924132 0.309341 -0.034219 0.324697 -0.945199 -0.989574 0.099181 0.104436 0.127102 0.942419 0.309341 -0.067742 0.319390 -0.945199 -0.994519 -0.005080 0.104436 0.027629 0.950550 0.309341 -0.100843 0.310531 -0.945199 -0.988509 -0.109284 0.104436 -0.072147 0.948210 0.309341 -0.132833 0.298252 -0.945199 -0.971611 -0.212285 0.104436 -0.171129 0.935427 0.309341 -0.163361 0.282687 -0.945199 -0.944323 -0.312004 0.104436 -0.267314 0.912607 0.309341 -0.191825 0.264201 -0.945199 -0.906422 -0.409257 0.104436 -0.361489 0.879564 0.309341 -0.218458 0.242641 -0.945199 -0.858537 -0.502003 0.104436 -0.451683 0.836834 0.309341 -0.242686 0.218409 -0.945199 -0.801784 -0.588418 0.104436 -0.536116 0.785422 0.309341 -0.264048 0.192035 -0.945199 -0.735698 -0.669210 0.104436 -0.615482 0.724907 0.309341 -0.282720 0.163303 -0.945199 -0.661508 -0.742630 0.104436 -0.688067 0.656408 0.309341 -0.298279 0.132773 -0.945199 -0.580032 -0.807871 0.104436 -0.753074 0.580678 0.309341 -0.310551 0.100780 -0.945199 -0.493031 -0.863721 0.104436 -0.809287 0.499362 0.309341 -0.319336 0.067996 -0.945199 -0.399791 -0.910637 0.104436 -0.857167 0.411793 0.309341 -0.324703 0.034153 -0.945199 0.158526 -0.974853 0.156627 0.693014 0.222850 0.685616 -0.703279 -0.000143 0.710914 0.259824 -0.952869 0.156627 0.665841 0.294256 0.685616 -0.699391 -0.073851 0.710914 0.357340 -0.920748 0.156627 0.631695 0.361789 0.685616 -0.687946 -0.146058 0.710914 0.451873 -0.878225 0.156627 0.590298 0.426002 0.685616 -0.668849 -0.217355 0.710914 0.541429 -0.826029 0.156627 0.542399 0.485524 0.685616 -0.642385 -0.286258 0.710914 0.624255 -0.765358 0.156627 0.489065 0.539208 0.685616 -0.609197 -0.351399 0.710914 0.701032 -0.695717 0.156627 0.429859 0.587496 0.685616 -0.569013 -0.413312 0.710914 0.770087 -0.618412 0.156627 0.365918 0.629313 0.685616 -0.522561 -0.470672 0.710914 0.830660 -0.534295 0.156627 0.297946 0.664198 0.685616 -0.470353 -0.522848 0.710914 0.881639 -0.445175 0.156627 0.227384 0.691539 0.685616 -0.413533 -0.568852 0.710914 0.923441 -0.350322 0.156627 0.153653 0.711562 0.685616 -0.351636 -0.609060 0.710914 0.955071 -0.251609 0.156627 0.078230 0.723747 0.685616 -0.285865 -0.642560 0.710914 0.976031 -0.151101 0.156627 0.002673 0.727958 0.685616 -0.217615 -0.668764 0.710914 0.986492 -0.047974 0.156627 -0.073636 0.724229 0.685616 -0.146325 -0.687889 0.710914 0.986087 0.055682 0.156627 -0.149135 0.712523 0.685616 -0.073424 -0.699436 0.710914 0.974949 0.157930 0.156627 -0.222427 0.693150 0.685616 -0.000286 -0.703279 0.710914 0.953028 0.259242 0.156627 -0.293849 0.666020 0.685616 0.073424 -0.699436 0.710914 0.920609 0.357698 0.156627 -0.362034 0.631555 0.685616 0.146325 -0.687889 0.710914 0.878049 0.452215 0.156627 -0.426232 0.590133 0.685616 0.217615 -0.668764 0.710914 0.826359 0.540924 0.156627 -0.485192 0.542696 0.685616 0.285865 -0.642560 0.710914 0.765115 0.624553 0.156627 -0.539398 0.488855 0.685616 0.351636 -0.609060 0.710914 0.695444 0.701303 0.156627 -0.587663 0.429630 0.685616 0.413533 -0.568852 0.710914 0.618882 0.769710 0.156627 -0.629089 0.366302 0.685616 0.470353 -0.522848 0.710914 0.534803 0.830334 0.156627 -0.664015 0.298351 0.685616 0.522561 -0.470672 0.710914 0.444832 0.881812 0.156627 -0.691628 0.227115 0.685616 0.569013 -0.413312 0.710914 0.349962 0.923577 0.156627 -0.711622 0.153377 0.685616 0.609197 -0.351399 0.710914 0.252193 0.954917 0.156627 -0.723699 0.078672 0.685616 0.642385 -0.286258 0.710914 0.150721 0.976090 0.156627 -0.727959 0.002390 0.685616 0.668849 -0.217355 0.710914 0.047590 0.986511 0.156627 -0.724200 -0.073918 0.685616 0.687946 -0.146058 0.710914 -0.055079 0.986121 0.156627 -0.712614 -0.148700 0.685616 0.699391 -0.073851 0.710914 -0.158128 0.974917 0.156627 -0.693104 -0.222568 0.685616 0.703279 -0.000143 0.710914 -0.259436 0.952975 0.156627 -0.665960 -0.293985 0.685616 0.699421 0.073566 0.710914 -0.357886 0.920536 0.156627 -0.631481 -0.362163 0.685616 0.687859 0.146465 0.710914 -0.451515 0.878409 0.156627 -0.590472 -0.425762 0.685616 0.668937 0.217083 0.710914 -0.541092 0.826249 0.156627 -0.542597 -0.485303 0.685616 0.642501 0.285996 0.710914 -0.624709 0.764988 0.156627 -0.488745 -0.539498 0.685616 0.608988 0.351760 0.710914 -0.701445 0.695301 0.156627 -0.429510 -0.587751 0.685616 0.568767 0.413649 0.710914 -0.769836 0.618726 0.156627 -0.366174 -0.629164 0.685616 0.522752 0.470459 0.710914 -0.830443 0.534634 0.156627 -0.298216 -0.664076 0.685616 0.470566 0.522657 0.710914 -0.881902 0.444653 0.156627 -0.226974 -0.691674 0.685616 0.413196 0.569097 0.710914 -0.923298 0.350698 0.156627 -0.153943 -0.711500 0.685616 0.351884 0.608917 0.710914 -0.954969 0.251998 0.156627 -0.078525 -0.723715 0.685616 0.286127 0.642443 0.710914 -0.976120 0.150523 0.156627 -0.002242 -0.727960 0.685616 0.217219 0.668893 0.710914 -0.986520 0.047389 0.156627 0.074066 -0.724185 0.685616 0.145918 0.687975 0.710914 -0.986110 -0.055280 0.156627 0.148845 -0.712583 0.685616 0.073709 0.699406 0.710914 -0.974885 -0.158327 0.156627 0.222709 -0.693059 0.685616 0.000000 0.703279 0.710914 -0.952922 -0.259630 0.156627 0.294120 -0.665900 0.685616 -0.073709 0.699406 0.710914 -0.920820 -0.357152 0.156627 0.361660 -0.631769 0.685616 -0.145918 0.687975 0.710914 -0.878317 -0.451694 0.156627 0.425882 -0.590385 0.685616 -0.217219 0.668893 0.710914 -0.826139 -0.541260 0.156627 0.485413 -0.542498 0.685616 -0.286127 0.642443 0.710914 -0.764861 -0.624865 0.156627 0.539597 -0.488636 0.685616 -0.351884 0.608917 0.710914 -0.695859 -0.700891 0.156627 0.587408 -0.429978 0.685616 -0.413196 0.569097 0.710914 -0.618569 -0.769962 0.156627 0.629238 -0.366046 0.685616 -0.470566 0.522657 0.710914 -0.534464 -0.830551 0.156627 0.664137 -0.298081 0.685616 -0.522752 0.470459 0.710914 -0.445355 -0.881548 0.156627 0.691493 -0.227525 0.685616 -0.568767 0.413649 0.710914 -0.350510 -0.923369 0.156627 0.711531 -0.153798 0.685616 -0.608988 0.351760 0.710914 -0.251804 -0.955020 0.156627 0.723731 -0.078378 0.685616 -0.642501 0.285996 0.710914 -0.150324 -0.976151 0.156627 0.727960 -0.002094 0.685616 -0.668937 0.217083 0.710914 -0.048175 -0.986482 0.156627 0.724244 0.073489 0.685616 -0.687859 0.146465 0.710914 0.055481 -0.986098 0.156627 0.712553 0.148990 0.685616 -0.699421 0.073566 0.710914 -0.360278 -0.735437 -0.573874 0.391249 -0.677593 0.622730 -0.846832 -0.000172 0.531861 -0.281214 -0.769147 -0.573874 0.460111 -0.632855 0.622730 -0.842150 -0.088926 0.531861 -0.199848 -0.794185 -0.573874 0.523323 -0.581670 0.622730 -0.828368 -0.175871 0.531861 -0.115511 -0.810756 -0.573874 0.581404 -0.523619 0.622730 -0.805373 -0.261721 0.531861 -0.029901 -0.818397 -0.573874 0.633081 -0.459800 0.622730 -0.773508 -0.344689 0.531861 0.055220 -0.817079 -0.573874 0.677394 -0.391593 0.622730 -0.733545 -0.423126 0.531861 0.140552 -0.806792 -0.573874 0.714705 -0.318441 0.622730 -0.685159 -0.497676 0.531861 0.224335 -0.787618 -0.573874 0.744144 -0.241781 0.622730 -0.629225 -0.566745 0.531861 0.305648 -0.759768 -0.573874 0.765386 -0.162458 0.622730 -0.566361 -0.629571 0.531861 0.382870 -0.723933 -0.573874 0.778115 -0.082123 0.622730 -0.497943 -0.684965 0.531861 0.456635 -0.679818 -0.573874 0.782437 -0.000119 0.622730 -0.423411 -0.733380 0.531861 0.525369 -0.628216 -0.573874 0.778140 0.081887 0.622730 -0.344216 -0.773718 0.531861 0.587747 -0.570282 -0.573874 0.765435 0.162225 0.622730 -0.262035 -0.805271 0.531861 0.644280 -0.505541 -0.573874 0.744217 0.241555 0.622730 -0.176193 -0.828300 0.531861 0.693716 -0.435231 -0.573874 0.714802 0.318223 0.622730 -0.088411 -0.842204 0.531861 0.735217 -0.360727 -0.573874 0.677832 0.390835 0.622730 -0.000345 -0.846832 0.531861 0.768975 -0.281684 -0.573874 0.633136 0.459724 0.622730 0.088411 -0.842204 0.531861 0.794262 -0.199539 -0.573874 0.581467 0.523550 0.622730 0.176193 -0.828300 0.531861 0.810801 -0.115195 -0.573874 0.523392 0.581608 0.622730 0.262035 -0.805271 0.531861 0.818379 -0.030402 -0.573874 0.460186 0.632800 0.622730 0.344216 -0.773718 0.531861 0.817058 0.055538 -0.573874 0.391330 0.677546 0.622730 0.423411 -0.733380 0.531861 0.806737 0.140866 -0.573874 0.318163 0.714829 0.622730 0.497943 -0.684965 0.531861 0.787755 0.223854 -0.573874 0.242236 0.743996 0.622730 0.566361 -0.629571 0.531861 0.759955 0.305183 -0.573874 0.162925 0.765286 0.622730 0.629225 -0.566745 0.531861 0.723784 0.383151 -0.573874 0.081821 0.778147 0.622730 0.685159 -0.497676 0.531861 0.679641 0.456899 -0.573874 -0.000185 0.782437 0.622730 0.733545 -0.423126 0.531861 0.628537 0.524985 -0.573874 -0.081411 0.778190 0.622730 0.773508 -0.344689 0.531861 0.570053 0.587969 -0.573874 -0.162523 0.765372 0.622730 0.805373 -0.261721 0.531861 0.505290 0.644477 -0.573874 -0.241844 0.744123 0.622730 0.828368 -0.175871 0.531861 0.435655 0.693450 -0.573874 -0.317787 0.714996 0.622730 0.842150 -0.088926 0.531861 0.360577 0.735291 -0.573874 -0.390973 0.677752 0.622730 0.846832 -0.000172 0.531861 0.281527 0.769032 -0.573874 -0.459853 0.633042 0.622730 0.842186 0.088583 0.531861 0.199377 0.794303 -0.573874 -0.523668 0.581360 0.622730 0.828264 0.176362 0.531861 0.115841 0.810709 -0.573874 -0.581191 0.523856 0.622730 0.805480 0.261393 0.531861 0.030235 0.818385 -0.573874 -0.632894 0.460057 0.622730 0.773648 0.344374 0.531861 -0.055704 0.817047 -0.573874 -0.677626 0.391192 0.622730 0.733294 0.423561 0.531861 -0.141030 0.806709 -0.573874 -0.714893 0.318017 0.622730 0.684863 0.498083 0.531861 -0.224014 0.787709 -0.573874 -0.744045 0.242084 0.622730 0.629456 0.566489 0.531861 -0.305338 0.759893 -0.573874 -0.765319 0.162770 0.622730 0.566617 0.629340 0.531861 -0.383299 0.723706 -0.573874 -0.778164 0.081662 0.622730 0.497537 0.685260 0.531861 -0.456358 0.680004 -0.573874 -0.782437 0.000438 0.622730 0.423710 0.733208 0.531861 -0.525114 0.628430 -0.573874 -0.778174 -0.081570 0.622730 0.344531 0.773578 0.531861 -0.588085 0.569933 -0.573874 -0.765339 -0.162679 0.622730 0.261557 0.805427 0.531861 -0.644580 0.505159 -0.573874 -0.744074 -0.241996 0.622730 0.175702 0.828404 0.531861 -0.693539 0.435514 -0.573874 -0.714931 -0.317932 0.622730 0.088754 0.842168 0.531861 -0.735364 0.360427 -0.573874 -0.677672 -0.391111 0.622730 0.000000 0.846832 0.531861 -0.769089 0.281371 -0.573874 -0.632949 -0.459982 0.622730 -0.088754 0.842168 0.531861 -0.794144 0.200009 -0.573874 -0.581777 -0.523205 0.622730 -0.175702 0.828404 0.531861 -0.810733 0.115676 -0.573874 -0.523737 -0.581298 0.622730 -0.261557 0.805427 0.531861 -0.818391 0.030068 -0.573874 -0.459929 -0.632988 0.622730 -0.344531 0.773578 0.531861 -0.817035 -0.055871 -0.573874 -0.391054 -0.677705 0.622730 -0.423710 0.733208 0.531861 -0.806821 -0.140387 -0.573874 -0.318587 -0.714640 0.622730 -0.497537 0.685260 0.531861 -0.787664 -0.224175 -0.573874 -0.241933 -0.744094 0.622730 -0.566617 0.629340 0.531861 -0.759830 -0.305493 -0.573874 -0.162614 -0.765353 0.622730 -0.629456 0.566489 0.531861 -0.724011 -0.382722 -0.573874 -0.082282 -0.778099 0.622730 -0.684863 0.498083 0.531861 -0.679911 -0.456496 -0.573874 -0.000278 -0.782437 0.622730 -0.733294 0.423561 0.531861 -0.628323 -0.525241 -0.573874 0.081728 -0.778157 0.622730 -0.773648 0.344374 0.531861 -0.569813 -0.588201 -0.573874 0.162834 -0.765306 0.622730 -0.805480 0.261393 0.531861 -0.505672 -0.644177 -0.573874 0.241403 -0.744266 0.622730 -0.828264 0.176362 0.531861 -0.435372 -0.693627 -0.573874 0.318078 -0.714867 0.622730 -0.842186 0.088583 0.531861 -0.454190 0.354797 0.817209 0.172192 0.934943 -0.310212 -0.874106 -0.000178 -0.485735 -0.488874 0.305241 0.817209 0.073255 0.947841 -0.310212 -0.869273 -0.091790 -0.485735 -0.517920 0.252841 0.817209 -0.025539 0.950324 -0.310212 -0.855048 -0.181535 -0.485735 -0.541567 0.197166 0.817209 -0.124999 0.942414 -0.310212 -0.831312 -0.270151 -0.485735 -0.559249 0.139320 0.817209 -0.223082 0.924123 -0.310212 -0.798420 -0.355790 -0.485735 -0.570691 0.080510 0.817209 -0.317813 0.895971 -0.310212 -0.757171 -0.436754 -0.485735 -0.575986 0.020255 0.817209 -0.409966 0.857728 -0.310212 -0.707226 -0.513705 -0.485735 -0.574936 -0.040224 0.817209 -0.497604 0.810036 -0.310212 -0.649491 -0.584999 -0.485735 -0.567554 -0.100260 0.817209 -0.579761 0.753422 -0.310212 -0.584602 -0.649848 -0.485735 -0.554079 -0.158638 0.817209 -0.654844 0.689165 -0.310212 -0.513981 -0.707026 -0.485735 -0.534401 -0.215836 0.817209 -0.723467 0.616737 -0.310212 -0.437048 -0.757001 -0.485735 -0.508837 -0.270656 0.817209 -0.784121 0.537516 -0.310212 -0.355302 -0.798638 -0.485735 -0.477990 -0.322017 0.817209 -0.835685 0.453210 -0.310212 -0.270474 -0.831207 -0.485735 -0.441608 -0.370340 0.817209 -0.878582 0.363128 -0.310212 -0.181868 -0.854977 -0.485735 -0.400361 -0.414585 0.817209 -0.911802 0.269047 -0.310212 -0.091259 -0.869329 -0.485735 -0.355075 -0.453973 0.817209 -0.934838 0.172763 -0.310212 -0.000356 -0.874106 -0.485735 -0.305540 -0.488687 0.817209 -0.947796 0.073834 -0.310212 0.091259 -0.869329 -0.485735 -0.252639 -0.518018 0.817209 -0.950314 -0.025908 -0.310212 0.181868 -0.854977 -0.485735 -0.196956 -0.541644 0.817209 -0.942365 -0.125366 -0.310212 0.270474 -0.831207 -0.485735 -0.139662 -0.559164 0.817209 -0.924259 -0.222517 -0.310212 0.355302 -0.798638 -0.485735 -0.080288 -0.570722 0.817209 -0.895847 -0.318161 -0.310212 0.437048 -0.757001 -0.485735 -0.020031 -0.575993 0.817209 -0.857568 -0.410300 -0.310212 0.513981 -0.707026 -0.485735 0.039873 -0.574961 0.817209 -0.810340 -0.497109 -0.310212 0.584602 -0.649848 -0.485735 0.099914 -0.567615 0.817209 -0.753776 -0.579301 -0.310212 0.649491 -0.584999 -0.485735 0.158853 -0.554017 0.817209 -0.688910 -0.655112 -0.310212 0.707226 -0.513705 -0.485735 0.216043 -0.534317 0.817209 -0.616456 -0.723706 -0.310212 0.757171 -0.436754 -0.485735 0.270345 -0.509002 0.817209 -0.537995 -0.783792 -0.310212 0.798420 -0.355790 -0.485735 0.322203 -0.477865 0.817209 -0.452885 -0.835861 -0.310212 0.831312 -0.270151 -0.485735 0.370512 -0.441464 0.817209 -0.362787 -0.878723 -0.310212 0.855048 -0.181535 -0.485735 0.414340 -0.400615 0.817209 -0.269604 -0.911637 -0.310212 0.869273 -0.091790 -0.485735 0.454045 -0.354982 0.817209 -0.172573 -0.934873 -0.310212 0.874106 -0.000178 -0.485735 0.488749 -0.305440 0.817209 -0.073641 -0.947811 -0.310212 0.869311 0.091436 -0.485735 0.518070 -0.252534 0.817209 0.026102 -0.950309 -0.310212 0.854940 0.182042 -0.485735 0.541487 -0.197387 0.817209 0.124615 -0.942465 -0.310212 0.831422 0.269812 -0.485735 0.559192 -0.139548 0.817209 0.222706 -0.924214 -0.310212 0.798565 0.355465 -0.485735 0.570738 -0.080172 0.817209 0.318343 -0.895783 -0.310212 0.756912 0.437203 -0.485735 0.575997 -0.019913 0.817209 0.410475 -0.857484 -0.310212 0.706921 0.514125 -0.485735 0.574952 0.039990 0.817209 0.497274 -0.810239 -0.310212 0.649729 0.584734 -0.485735 0.567595 0.100029 0.817209 0.579455 -0.753659 -0.310212 0.584866 0.649610 -0.485735 0.553985 0.158966 0.817209 0.655252 -0.688777 -0.310212 0.513561 0.707330 -0.485735 0.534489 0.215618 0.817209 0.723215 -0.617032 -0.310212 0.437357 0.756823 -0.485735 0.508947 0.270449 0.817209 0.783902 -0.537835 -0.310212 0.355628 0.798493 -0.485735 0.477799 0.322300 0.817209 0.835953 -0.452715 -0.310212 0.269981 0.831367 -0.485735 0.441388 0.370602 0.817209 0.878797 -0.362608 -0.310212 0.181361 0.855085 -0.485735 0.400530 0.414421 0.817209 0.911692 -0.269418 -0.310212 0.091613 0.869292 -0.485735 0.354890 0.454118 0.817209 0.934908 -0.172382 -0.310212 0.000000 0.874106 -0.485735 0.305341 0.488811 0.817209 0.947826 -0.073448 -0.310212 -0.091613 0.869292 -0.485735 0.252946 0.517869 0.817209 0.950330 0.025345 -0.310212 -0.181361 0.855085 -0.485735 0.197277 0.541527 0.817209 0.942439 0.124807 -0.310212 -0.269981 0.831367 -0.485735 0.139434 0.559221 0.817209 0.924168 0.222894 -0.310212 -0.355628 0.798493 -0.485735 0.080056 0.570754 0.817209 0.895718 0.318526 -0.310212 -0.437357 0.756823 -0.485735 0.020372 0.575981 0.817209 0.857811 0.409792 -0.310212 -0.513561 0.707330 -0.485735 -0.040107 0.574944 0.817209 0.810138 0.497439 -0.310212 -0.584866 0.649610 -0.485735 -0.100145 0.567574 0.817209 0.753541 0.579608 -0.310212 -0.649729 0.584734 -0.485735 -0.158525 0.554111 0.817209 0.689298 0.654703 -0.310212 -0.706921 0.514125 -0.485735 -0.215727 0.534445 0.817209 0.616884 0.723341 -0.310212 -0.756912 0.437203 -0.485735 -0.270552 0.508892 0.817209 0.537676 0.784011 -0.310212 -0.798565 0.355465 -0.485735 -0.322398 0.477733 0.817209 0.452545 0.836046 -0.310212 -0.831422 0.269812 -0.485735 -0.370251 0.441683 0.817209 0.363307 0.878508 -0.310212 -0.854940 0.182042 -0.485735 -0.414503 0.400446 0.817209 0.269232 0.911747 -0.310212 -0.869311 0.091436 -0.485735 -0.540816 0.505247 0.672490 0.316489 0.862974 -0.393839 -0.779328 -0.000159 -0.626616 -0.590791 0.445783 0.672490 0.224301 0.891392 -0.393839 -0.775019 -0.081837 -0.626616 -0.633877 0.382043 0.672490 0.130551 0.909861 -0.393839 -0.762336 -0.161852 -0.626616 -0.670427 0.313504 0.672490 0.034472 0.918533 -0.393839 -0.741174 -0.240859 -0.626616 -0.699592 0.241512 0.672490 -0.061987 0.917087 -0.393839 -0.711849 -0.317212 -0.626616 -0.720884 0.167581 0.672490 -0.156857 0.905697 -0.393839 -0.675072 -0.389397 -0.626616 -0.734478 0.091104 0.672490 -0.250917 0.884269 -0.393839 -0.630542 -0.458005 -0.626616 -0.739981 0.013624 0.672490 -0.342212 0.853101 -0.393839 -0.579067 -0.521568 -0.626616 -0.737333 -0.064007 0.672490 -0.429739 0.812536 -0.393839 -0.521214 -0.579386 -0.626616 -0.726705 -0.140205 0.672490 -0.511768 0.763534 -0.393839 -0.458250 -0.630364 -0.626616 -0.708008 -0.215597 0.672490 -0.588974 0.705692 -0.393839 -0.389660 -0.674920 -0.626616 -0.681512 -0.288614 0.672490 -0.659692 0.640076 -0.393839 -0.316777 -0.712042 -0.626616 -0.647868 -0.357804 0.672490 -0.722575 0.568134 -0.393839 -0.241147 -0.741081 -0.626616 -0.606800 -0.423735 0.672490 -0.778140 0.489274 -0.393839 -0.162148 -0.762273 -0.626616 -0.559048 -0.484998 0.672490 -0.825134 0.405024 -0.393839 -0.081363 -0.775069 -0.626616 -0.505578 -0.540507 0.672490 -0.862781 0.317017 -0.393839 -0.000317 -0.779328 -0.626616 -0.446144 -0.590519 0.672490 -0.891255 0.224845 -0.393839 0.081363 -0.775069 -0.626616 -0.381797 -0.634026 0.672490 -0.909912 0.130197 -0.393839 0.162148 -0.762273 -0.626616 -0.313243 -0.670549 0.672490 -0.918546 0.034114 -0.393839 0.241147 -0.741081 -0.626616 -0.241940 -0.699444 0.672490 -0.917125 -0.061426 -0.393839 0.316777 -0.712042 -0.626616 -0.167300 -0.720949 0.672490 -0.905636 -0.157209 -0.393839 0.389660 -0.674920 -0.626616 -0.090818 -0.734513 0.672490 -0.884171 -0.251261 -0.393839 0.458250 -0.630364 -0.626616 -0.014076 -0.739972 0.672490 -0.853310 -0.341691 -0.393839 0.521214 -0.579386 -0.626616 0.063556 -0.737372 0.672490 -0.812799 -0.429242 -0.393839 0.579067 -0.521568 -0.626616 0.140488 -0.726650 0.672490 -0.763334 -0.512065 -0.393839 0.630542 -0.458005 -0.626616 0.215872 -0.707924 0.672490 -0.705462 -0.589248 -0.393839 0.675072 -0.389397 -0.626616 0.288197 -0.681689 0.672490 -0.640479 -0.659300 -0.393839 0.711849 -0.317212 -0.626616 0.358056 -0.647729 0.672490 -0.567852 -0.722796 -0.393839 0.741174 -0.240859 -0.626616 0.423971 -0.606635 0.672490 -0.488971 -0.778330 -0.393839 0.762336 -0.161852 -0.626616 0.484656 -0.559344 0.672490 -0.405528 -0.824886 -0.393839 0.775019 -0.081837 -0.626616 0.540610 -0.505468 0.672490 -0.316841 -0.862846 -0.393839 0.779328 -0.000159 -0.626616 0.590610 -0.446024 0.672490 -0.224664 -0.891301 -0.393839 0.775053 0.081521 -0.626616 0.634103 -0.381667 0.672490 -0.130012 -0.909938 -0.393839 0.762240 0.162303 -0.626616 0.670299 -0.313777 0.672490 -0.034846 -0.918519 -0.393839 0.741272 0.240557 -0.626616 0.699494 -0.241797 0.672490 0.061613 -0.917112 -0.393839 0.711978 0.316922 -0.626616 0.720983 -0.167153 0.672490 0.157394 -0.905604 -0.393839 0.674841 0.389797 -0.626616 0.734531 -0.090669 0.672490 0.251441 -0.884120 -0.393839 0.630271 0.458379 -0.626616 0.739975 -0.013925 0.672490 0.341865 -0.853240 -0.393839 0.579280 0.521332 -0.626616 0.737359 0.063706 0.672490 0.429408 -0.812711 -0.393839 0.521450 0.579174 -0.626616 0.726621 0.140636 0.672490 0.512221 -0.763230 -0.393839 0.457877 0.630635 -0.626616 0.708096 0.215309 0.672490 0.588686 -0.705931 -0.393839 0.389935 0.674761 -0.626616 0.681630 0.288336 0.672490 0.659431 -0.640345 -0.393839 0.317067 0.711913 -0.626616 0.647656 0.358188 0.672490 0.722912 -0.567705 -0.393839 0.240708 0.741223 -0.626616 0.606549 0.424094 0.672490 0.778430 -0.488812 -0.393839 0.161696 0.762369 -0.626616 0.559245 0.484770 0.672490 0.824969 -0.405360 -0.393839 0.081679 0.775036 -0.626616 0.505358 0.540713 0.672490 0.862910 -0.316665 -0.393839 0.000000 0.779328 -0.626616 0.445904 0.590701 0.672490 0.891346 -0.224482 -0.393839 -0.081679 0.775036 -0.626616 0.382172 0.633799 0.672490 0.909834 -0.130736 -0.393839 -0.161696 0.762369 -0.626616 0.313641 0.670363 0.672490 0.918526 -0.034659 -0.393839 -0.240708 0.741223 -0.626616 0.241655 0.699543 0.672490 0.917099 0.061800 -0.393839 -0.317067 0.711913 -0.626616 0.167007 0.721017 0.672490 0.905571 0.157578 -0.393839 -0.389935 0.674761 -0.626616 0.091253 0.734459 0.672490 0.884320 0.250737 -0.393839 -0.457877 0.630635 -0.626616 0.013774 0.739978 0.672490 0.853171 0.342039 -0.393839 -0.521450 0.579174 -0.626616 -0.063857 0.737346 0.672490 0.812624 0.429573 -0.393839 -0.579280 0.521332 -0.626616 -0.140057 0.726733 0.672490 0.763638 0.511613 -0.393839 -0.630271 0.458379 -0.626616 -0.215453 0.708052 0.672490 0.705811 0.588830 -0.393839 -0.674841 0.389797 -0.626616 -0.288475 0.681571 0.672490 0.640211 0.659561 -0.393839 -0.711978 0.316922 -0.626616 -0.358320 0.647583 0.672490 0.567558 0.723027 -0.393839 -0.741272 0.240557 -0.626616 -0.423611 0.606886 0.672490 0.489432 0.778040 -0.393839 -0.762240 0.162303 -0.626616 -0.484884 0.559146 0.672490 0.405192 0.825051 -0.393839 -0.775053 0.081521 -0.626616 0.157275 -0.607702 -0.778436 -0.120102 -0.794165 0.595715 -0.980224 -0.000200 -0.197889 0.220101 -0.587871 -0.778436 -0.036206 -0.802379 0.595715 -0.974805 -0.102933 -0.197889 0.279940 -0.561846 -0.778436 0.047286 -0.801802 0.595715 -0.958852 -0.203574 -0.197889 0.337284 -0.529412 -0.778436 0.131061 -0.792431 0.595715 -0.932235 -0.302947 -0.197889 0.390912 -0.491146 -0.778436 0.213391 -0.774330 0.595715 -0.895350 -0.398984 -0.197889 0.439787 -0.447911 -0.778436 0.292624 -0.747994 0.595715 -0.849093 -0.489777 -0.197889 0.484309 -0.399351 -0.778436 0.369407 -0.713205 0.595715 -0.793085 -0.576070 -0.197889 0.523497 -0.346393 -0.778436 0.442122 -0.670561 0.595715 -0.728340 -0.656019 -0.197889 0.556918 -0.289619 -0.778436 0.509966 -0.620530 0.595715 -0.655574 -0.728741 -0.197889 0.583975 -0.230239 -0.778436 0.571630 -0.564236 0.595715 -0.576379 -0.792860 -0.197889 0.604890 -0.167766 -0.778436 0.627617 -0.501218 0.595715 -0.490107 -0.848902 -0.197889 0.619141 -0.103445 -0.778436 0.676692 -0.432679 0.595715 -0.398437 -0.895594 -0.197889 0.626535 -0.038612 -0.778436 0.717953 -0.360092 0.595715 -0.303310 -0.932117 -0.197889 0.627131 0.027266 -0.778436 0.751739 -0.282862 0.595715 -0.203947 -0.958773 -0.197889 0.620819 0.092844 -0.778436 0.777245 -0.202516 0.595715 -0.102338 -0.974868 -0.197889 0.607798 0.156904 -0.778436 0.794092 -0.120587 0.595715 -0.000399 -0.980224 -0.197889 0.588006 0.219741 -0.778436 0.802357 -0.036696 0.595715 0.102338 -0.974868 -0.197889 0.561737 0.280158 -0.778436 0.801784 0.047598 0.595715 0.203947 -0.958773 -0.197889 0.529280 0.337490 -0.778436 0.792380 0.131369 0.595715 0.303310 -0.932117 -0.197889 0.491385 0.390612 -0.778436 0.774460 0.212918 0.595715 0.398437 -0.895594 -0.197889 0.447740 0.439961 -0.778436 0.747880 0.292914 0.595715 0.490107 -0.848902 -0.197889 0.399163 0.484465 -0.778436 0.713061 0.369684 0.595715 0.576379 -0.792860 -0.197889 0.346712 0.523285 -0.778436 0.670831 0.441712 0.595715 0.655574 -0.728741 -0.197889 0.289959 0.556741 -0.778436 0.620842 0.509587 0.595715 0.728340 -0.656019 -0.197889 0.230011 0.584065 -0.778436 0.564014 0.571849 0.595715 0.793085 -0.576070 -0.197889 0.167531 0.604955 -0.778436 0.500974 0.627812 0.595715 0.849093 -0.489777 -0.197889 0.103823 0.619078 -0.778436 0.433092 0.676428 0.595715 0.895350 -0.398984 -0.197889 0.038368 0.626550 -0.778436 0.359812 0.718093 0.595715 0.932235 -0.302947 -0.197889 -0.027510 0.627120 -0.778436 0.282569 0.751849 0.595715 0.958852 -0.203574 -0.197889 -0.092465 0.620876 -0.778436 0.202991 0.777121 0.595715 0.974805 -0.102933 -0.197889 -0.157028 0.607766 -0.778436 0.120425 0.794116 0.595715 0.980224 -0.000200 -0.197889 -0.219861 0.587961 -0.778436 0.036533 0.802364 0.595715 0.974847 0.102536 -0.197889 -0.280273 0.561680 -0.778436 -0.047762 0.801774 0.595715 0.958731 0.204142 -0.197889 -0.337068 0.529549 -0.778436 -0.130738 0.792484 0.595715 0.932359 0.302568 -0.197889 -0.390712 0.491305 -0.778436 -0.213076 0.774417 0.595715 0.895513 0.398619 -0.197889 -0.440053 0.447650 -0.778436 -0.293067 0.747820 0.595715 0.848803 0.490280 -0.197889 -0.484546 0.399064 -0.778436 -0.369830 0.712986 0.595715 0.792743 0.576540 -0.197889 -0.523356 0.346606 -0.778436 -0.441848 0.670741 0.595715 0.728607 0.655722 -0.197889 -0.556800 0.289845 -0.778436 -0.509713 0.620738 0.595715 0.655870 0.728474 -0.197889 -0.584112 0.229893 -0.778436 -0.571964 0.563898 0.595715 0.575909 0.793202 -0.197889 -0.604821 0.168012 -0.778436 -0.627413 0.501474 0.595715 0.490453 0.848703 -0.197889 -0.619099 0.103697 -0.778436 -0.676516 0.432954 0.595715 0.398802 0.895431 -0.197889 -0.626558 0.038240 -0.778436 -0.718167 0.359666 0.595715 0.302758 0.932297 -0.197889 -0.627115 -0.027638 -0.778436 -0.751907 0.282416 0.595715 0.203379 0.958894 -0.197889 -0.620857 -0.092591 -0.778436 -0.777163 0.202833 0.595715 0.102735 0.974826 -0.197889 -0.607734 -0.157152 -0.778436 -0.794141 0.120264 0.595715 0.000000 0.980224 -0.197889 -0.587916 -0.219981 -0.778436 -0.802372 0.036370 0.595715 -0.102735 0.974826 -0.197889 -0.561903 -0.279825 -0.778436 -0.801812 -0.047123 0.595715 -0.203379 0.958894 -0.197889 -0.529480 -0.337176 -0.778436 -0.792457 -0.130899 0.595715 -0.302758 0.932297 -0.197889 -0.491226 -0.390812 -0.778436 -0.774374 -0.213234 0.595715 -0.398802 0.895431 -0.197889 -0.447560 -0.440144 -0.778436 -0.747760 -0.293219 0.595715 -0.490453 0.848703 -0.197889 -0.399450 -0.484228 -0.778436 -0.713280 -0.369262 0.595715 -0.575909 0.793202 -0.197889 -0.346499 -0.523426 -0.778436 -0.670651 -0.441985 0.595715 -0.655870 0.728474 -0.197889 -0.289732 -0.556859 -0.778436 -0.620634 -0.509840 0.595715 -0.728607 0.655722 -0.197889 -0.230358 -0.583928 -0.778436 -0.564353 -0.571515 0.595715 -0.792743 0.576540 -0.197889 -0.167889 -0.604855 -0.778436 -0.501346 -0.627515 0.595715 -0.848803 0.490280 -0.197889 -0.103571 -0.619120 -0.778436 -0.432817 -0.676604 0.595715 -0.895513 0.398619 -0.197889 -0.038113 -0.626565 -0.778436 -0.359520 -0.718240 0.595715 -0.932359 0.302568 -0.197889 0.027139 -0.627137 -0.778436 -0.283015 -0.751682 0.595715 -0.958731 0.204142 -0.197889 0.092718 -0.620838 -0.778436 -0.202675 -0.777204 0.595715 -0.974847 0.102536 -0.197889 -0.002370 -0.798142 0.602465 -0.003478 0.602470 0.798134 -0.999991 -0.000204 -0.004204 0.081294 -0.793994 0.602465 -0.066602 0.598787 0.798134 -0.994462 -0.105009 -0.004204 0.163281 -0.781265 0.602465 -0.128404 0.588638 0.798134 -0.978188 -0.207679 -0.004204 0.244264 -0.759849 0.602465 -0.189390 0.571938 0.798134 -0.951034 -0.309056 -0.004204 0.322557 -0.730064 0.602465 -0.248290 0.548939 0.798134 -0.913405 -0.407030 -0.004204 0.396604 -0.692634 0.602465 -0.303935 0.520197 0.798134 -0.866215 -0.499653 -0.004204 0.467012 -0.647252 0.602465 -0.356782 0.485478 0.798134 -0.809077 -0.587687 -0.004204 0.532277 -0.594741 0.602465 -0.405698 0.445411 0.798134 -0.743028 -0.669248 -0.004204 0.591679 -0.535679 0.602465 -0.450146 0.400438 0.798134 -0.668793 -0.743436 -0.004204 0.644092 -0.471361 0.602465 -0.489285 0.351543 0.798134 -0.588002 -0.808849 -0.004204 0.689947 -0.401260 0.602465 -0.523434 0.298326 0.798134 -0.499990 -0.866021 -0.004204 0.728202 -0.326738 0.602465 -0.551818 0.241824 0.798134 -0.406471 -0.913654 -0.004204 0.758187 -0.249377 0.602465 -0.573941 0.183231 0.798134 -0.309426 -0.950914 -0.004204 0.780147 -0.168540 0.602465 -0.589984 0.122069 0.798134 -0.208060 -0.978107 -0.004204 0.793515 -0.085846 0.602465 -0.599528 0.059562 0.798134 -0.104401 -0.994526 -0.004204 0.798140 -0.002858 0.602465 -0.602472 -0.003110 0.798134 -0.000407 -0.999991 -0.004204 0.794044 0.080809 0.602465 -0.598828 -0.066236 0.798134 0.104401 -0.994526 -0.004204 0.781201 0.163585 0.602465 -0.588588 -0.128633 0.798134 0.208060 -0.978107 -0.004204 0.759754 0.244560 0.602465 -0.571864 -0.189612 0.798134 0.309426 -0.950914 -0.004204 0.730261 0.322110 0.602465 -0.549091 -0.247955 0.798134 0.406471 -0.913654 -0.004204 0.692479 0.396873 0.602465 -0.520079 -0.304138 0.798134 0.499990 -0.866021 -0.004204 0.647070 0.467264 0.602465 -0.485339 -0.356971 0.798134 0.588002 -0.808849 -0.004204 0.595066 0.531914 0.602465 -0.445658 -0.405426 0.798134 0.668793 -0.743436 -0.004204 0.536041 0.591351 0.602465 -0.400712 -0.449902 0.798134 0.743028 -0.669248 -0.004204 0.471110 0.644275 0.602465 -0.351353 -0.489421 0.798134 0.809077 -0.587687 -0.004204 0.400991 0.690103 0.602465 -0.298123 -0.523550 0.798134 0.866215 -0.499653 -0.004204 0.327183 0.728002 0.602465 -0.242161 -0.551670 0.798134 0.913405 -0.407030 -0.004204 0.249082 0.758284 0.602465 -0.183008 -0.574012 0.798134 0.951034 -0.309056 -0.004204 0.168236 0.780213 0.602465 -0.121840 -0.590031 0.798134 0.978188 -0.207679 -0.004204 0.086331 0.793462 0.602465 -0.059929 -0.599492 0.798134 0.994462 -0.105009 -0.004204 0.002695 0.798141 0.602465 0.003232 -0.602471 0.798134 0.999991 -0.000204 -0.004204 -0.080971 0.794027 0.602465 0.066358 -0.598814 0.798134 0.994505 0.104604 -0.004204 -0.163744 0.781168 0.602465 0.128753 -0.588562 0.798134 0.978065 0.208259 -0.004204 -0.243955 0.759949 0.602465 0.189157 -0.572015 0.798134 0.951160 0.308669 -0.004204 -0.322259 0.730195 0.602465 0.248067 -0.549040 0.798134 0.913571 0.406658 -0.004204 -0.397014 0.692398 0.602465 0.304244 -0.520017 0.798134 0.865919 0.500167 -0.004204 -0.467396 0.646975 0.602465 0.357070 -0.485266 0.798134 0.808729 0.588167 -0.004204 -0.532035 0.594958 0.602465 0.405517 -0.445576 0.798134 0.743300 0.668945 -0.004204 -0.591460 0.535920 0.602465 0.449983 -0.400621 0.798134 0.669096 0.743164 -0.004204 -0.644371 0.470979 0.602465 0.489493 -0.351253 0.798134 0.587522 0.809197 -0.004204 -0.689783 0.401541 0.602465 0.523313 -0.298540 0.798134 0.500343 0.865817 -0.004204 -0.728069 0.327035 0.602465 0.551720 -0.242048 0.798134 0.406844 0.913488 -0.004204 -0.758334 0.248927 0.602465 0.574049 -0.182891 0.798134 0.308863 0.951097 -0.004204 -0.780247 0.168077 0.602465 0.590056 -0.121719 0.798134 0.207480 0.978230 -0.004204 -0.793480 0.086170 0.602465 0.599504 -0.059807 0.798134 0.104806 0.994484 -0.004204 -0.798141 0.002533 0.602465 0.602470 0.003355 0.798134 0.000000 0.999991 -0.004204 -0.794011 -0.081132 0.602465 0.598801 0.066480 0.798134 -0.104806 0.994484 -0.004204 -0.781298 -0.163122 0.602465 0.588664 0.128284 0.798134 -0.207480 0.978230 -0.004204 -0.759899 -0.244110 0.602465 0.571977 0.189273 0.798134 -0.308863 0.951097 -0.004204 -0.730129 -0.322408 0.602465 0.548989 0.248178 0.798134 -0.406844 0.913488 -0.004204 -0.692318 -0.397155 0.602465 0.519955 0.304350 0.798134 -0.500343 0.865817 -0.004204 -0.647347 -0.466881 0.602465 0.485550 0.356683 0.798134 -0.587522 0.809197 -0.004204 -0.594850 -0.532156 0.602465 0.445493 0.405608 0.798134 -0.669096 0.743164 -0.004204 -0.535800 -0.591569 0.602465 0.400529 0.450065 0.798134 -0.743300 0.668945 -0.004204 -0.471492 -0.643996 0.602465 0.351643 0.489213 0.798134 -0.808729 0.588167 -0.004204 -0.401400 -0.689865 0.602465 0.298433 0.523373 0.798134 -0.865919 0.500167 -0.004204 -0.326887 -0.728135 0.602465 0.241936 0.551769 0.798134 -0.913571 0.406658 -0.004204 -0.248773 -0.758385 0.602465 0.182774 0.574087 0.798134 -0.951160 0.308669 -0.004204 -0.168699 -0.780113 0.602465 0.122189 0.589959 0.798134 -0.978065 0.208259 -0.004204 -0.086008 -0.793498 0.602465 0.059684 0.599516 0.798134 -0.994505 0.104604 -0.004204 -0.000782 0.863816 0.503806 0.000937 0.503807 -0.863816 -0.999999 -0.000204 -0.001204 -0.091312 0.858977 0.503806 -0.051871 0.501130 -0.863816 -0.994470 -0.105010 -0.001204 -0.179991 0.844856 0.503806 -0.103614 0.493038 -0.863816 -0.978196 -0.207681 -0.001204 -0.267547 0.821339 0.503806 -0.154717 0.479463 -0.863816 -0.951042 -0.309059 -0.001204 -0.352156 0.788775 0.503806 -0.204116 0.460607 -0.863816 -0.913413 -0.407033 -0.001204 -0.432138 0.747954 0.503806 -0.250830 0.436928 -0.863816 -0.866222 -0.499658 -0.001204 -0.508149 0.698544 0.503806 -0.295242 0.408233 -0.863816 -0.809084 -0.587692 -0.001204 -0.578563 0.641439 0.503806 -0.336402 0.375042 -0.863816 -0.743034 -0.669253 -0.001204 -0.642604 0.577269 0.503806 -0.373856 0.337719 -0.863816 -0.668799 -0.743442 -0.001204 -0.699060 0.507440 0.503806 -0.406896 0.297083 -0.863816 -0.588007 -0.808855 -0.001204 -0.748393 0.431378 0.503806 -0.435791 0.252801 -0.863816 -0.499994 -0.866028 -0.001204 -0.789483 0.350566 0.503806 -0.459886 0.205735 -0.863816 -0.406475 -0.913661 -0.001204 -0.821610 0.266713 0.503806 -0.478759 0.156881 -0.863816 -0.309429 -0.950922 -0.001204 -0.845039 0.179134 0.503806 -0.492565 0.105840 -0.863816 -0.208061 -0.978115 -0.001204 -0.859159 0.089581 0.503806 -0.500945 0.053633 -0.863816 -0.104402 -0.994534 -0.001204 -0.863817 -0.000255 0.503806 -0.503806 0.001245 -0.863816 -0.000407 -0.999999 -0.001204 -0.859033 -0.090787 0.503806 -0.501162 -0.051564 -0.863816 0.104402 -0.994534 -0.001204 -0.844786 -0.180320 0.503806 -0.492998 -0.103806 -0.863816 0.208061 -0.978115 -0.001204 -0.821235 -0.267867 0.503806 -0.479403 -0.154904 -0.863816 0.309429 -0.950922 -0.001204 -0.788990 -0.351674 0.503806 -0.460732 -0.203835 -0.863816 0.406475 -0.913661 -0.001204 -0.747786 -0.432429 0.503806 -0.436831 -0.251000 -0.863816 0.499994 -0.866028 -0.001204 -0.698346 -0.508421 0.503806 -0.408118 -0.295401 -0.863816 0.588007 -0.808855 -0.001204 -0.641793 -0.578171 0.503806 -0.375247 -0.336173 -0.863816 0.668799 -0.743442 -0.001204 -0.577662 -0.642251 0.503806 -0.337947 -0.373650 -0.863816 0.743034 -0.669253 -0.001204 -0.507168 -0.699257 0.503806 -0.296925 -0.407011 -0.863816 0.809084 -0.587692 -0.001204 -0.431087 -0.748560 0.503806 -0.252632 -0.435889 -0.863816 0.866222 -0.499658 -0.001204 -0.351048 -0.789268 0.503806 -0.206016 -0.459761 -0.863816 0.913413 -0.407033 -0.001204 -0.266394 -0.821714 0.503806 -0.156695 -0.478820 -0.863816 0.951042 -0.309059 -0.001204 -0.178805 -0.845108 0.503806 -0.105648 -0.492606 -0.863816 0.978196 -0.207681 -0.001204 -0.090106 -0.859104 0.503806 -0.053939 -0.500912 -0.863816 0.994470 -0.105010 -0.001204 0.000431 -0.863816 0.503806 -0.001142 -0.503806 -0.863816 0.999999 -0.000204 -0.001204 0.090962 -0.859014 0.503806 0.051666 -0.501152 -0.863816 0.994513 0.104605 -0.001204 0.180492 -0.844750 0.503806 0.103906 -0.492976 -0.863816 0.978073 0.208261 -0.001204 0.267213 -0.821448 0.503806 0.154522 -0.479526 -0.863816 0.951168 0.308672 -0.001204 0.351835 -0.788918 0.503806 0.203929 -0.460690 -0.863816 0.913578 0.406661 -0.001204 0.432581 -0.747698 0.503806 0.251089 -0.436780 -0.863816 0.865926 0.500171 -0.001204 0.508563 -0.698243 0.503806 0.295484 -0.408058 -0.863816 0.808735 0.588171 -0.001204 0.578301 -0.641675 0.503806 0.336249 -0.375178 -0.863816 0.743306 0.668950 -0.001204 0.642369 -0.577531 0.503806 0.373719 -0.337871 -0.863816 0.669102 0.743170 -0.001204 0.699360 -0.507025 0.503806 0.407072 -0.296842 -0.863816 0.587527 0.809204 -0.001204 0.748217 -0.431683 0.503806 0.435688 -0.252979 -0.863816 0.500347 0.865824 -0.001204 0.789340 -0.350887 0.503806 0.459803 -0.205922 -0.863816 0.406847 0.913496 -0.001204 0.821768 -0.266226 0.503806 0.478852 -0.156597 -0.863816 0.308865 0.951105 -0.001204 0.845145 -0.178633 0.503806 0.492628 -0.105548 -0.863816 0.207482 0.978238 -0.001204 0.859123 -0.089931 0.503806 0.500923 -0.053837 -0.863816 0.104807 0.994492 -0.001204 0.863816 0.000606 0.503806 0.503807 -0.001040 -0.863816 0.000000 0.999999 -0.001204 0.858995 0.091137 0.503806 0.501141 0.051769 -0.863816 -0.104807 0.994492 -0.001204 0.844893 0.179819 0.503806 0.493059 0.103514 -0.863816 -0.207482 0.978238 -0.001204 0.821393 0.267380 0.503806 0.479495 0.154620 -0.863816 -0.308865 0.951105 -0.001204 0.788846 0.351995 0.503806 0.460649 0.204022 -0.863816 -0.406847 0.913496 -0.001204 0.747610 0.432733 0.503806 0.436729 0.251178 -0.863816 -0.500347 0.865824 -0.001204 0.698648 0.508007 0.503806 0.408293 0.295159 -0.863816 -0.587527 0.809204 -0.001204 0.641557 0.578432 0.503806 0.375110 0.336325 -0.863816 -0.669102 0.743170 -0.001204 0.577400 0.642486 0.503806 0.337795 0.373787 -0.863816 -0.743306 0.668950 -0.001204 0.507582 0.698956 0.503806 0.297166 0.406835 -0.863816 -0.808735 0.588171 -0.001204 0.431531 0.748305 0.503806 0.252890 0.435740 -0.863816 -0.865926 0.500171 -0.001204 0.350727 0.789411 0.503806 0.205829 0.459844 -0.863816 -0.913578 0.406661 -0.001204 0.266059 0.821822 0.503806 0.156500 0.478884 -0.863816 -0.951168 0.308672 -0.001204 0.179306 0.845002 0.503806 0.105940 0.492543 -0.863816 -0.978073 0.208261 -0.001204 0.089756 0.859141 0.503806 0.053735 0.500934 -0.863816 -0.994513 0.104605 -0.001204 -0.165787 0.982903 0.080109 0.884791 0.184127 -0.428068 -0.435499 -0.000089 -0.900189 -0.267889 0.960114 0.080109 0.860620 0.275845 -0.428068 -0.433091 -0.045732 -0.900189 -0.366113 0.927116 0.080109 0.827334 0.363698 -0.428068 -0.426004 -0.090445 -0.900189 -0.461266 0.883638 0.080109 0.784659 0.448405 -0.428068 -0.414178 -0.134595 -0.900189 -0.551337 0.830428 0.080109 0.733342 0.528174 -0.428068 -0.397791 -0.177263 -0.900189 -0.634567 0.768705 0.080109 0.674548 0.601450 -0.428068 -0.377239 -0.217601 -0.900189 -0.711638 0.697965 0.080109 0.607797 0.668835 -0.428068 -0.352356 -0.255939 -0.900189 -0.780870 0.619536 0.080109 0.534351 0.728853 -0.428068 -0.323591 -0.291459 -0.900189 -0.841501 0.534283 0.080109 0.455019 0.780843 -0.428068 -0.291262 -0.323769 -0.900189 -0.892420 0.444038 0.080109 0.371499 0.823861 -0.428068 -0.256077 -0.352256 -0.900189 -0.934043 0.348060 0.080109 0.283107 0.858259 -0.428068 -0.217747 -0.377155 -0.900189 -0.965378 0.248249 0.080109 0.191596 0.883204 -0.428068 -0.177019 -0.397899 -0.900189 -0.985934 0.146689 0.080109 0.098873 0.898322 -0.428068 -0.134756 -0.414126 -0.900189 -0.995878 0.042548 0.080109 0.004178 0.903737 -0.428068 -0.090611 -0.425969 -0.900189 -0.994852 -0.062061 0.080109 -0.090563 0.899198 -0.428068 -0.045467 -0.433119 -0.900189 -0.983004 -0.165186 0.080109 -0.183586 0.884903 -0.428068 -0.000177 -0.435499 -0.900189 -0.960277 -0.267302 0.080109 -0.275319 0.860789 -0.428068 0.045467 -0.433119 -0.900189 -0.926973 -0.366474 0.080109 -0.364020 0.827193 -0.428068 0.090611 -0.425969 -0.900189 -0.883459 -0.461609 0.080109 -0.448711 0.784485 -0.428068 0.134756 -0.414126 -0.900189 -0.830765 -0.550829 0.080109 -0.527726 0.733665 -0.428068 0.177019 -0.397899 -0.900189 -0.768458 -0.634866 0.080109 -0.601713 0.674314 -0.428068 0.217747 -0.377155 -0.900189 -0.697688 -0.711909 0.080109 -0.669072 0.607537 -0.428068 0.256077 -0.352256 -0.900189 -0.620013 -0.780491 0.080109 -0.728527 0.534796 -0.428068 0.291262 -0.323769 -0.900189 -0.534797 -0.841175 0.080109 -0.780565 0.455496 -0.428068 0.323591 -0.291459 -0.900189 -0.443690 -0.892593 0.080109 -0.824005 0.371179 -0.428068 0.352356 -0.255939 -0.900189 -0.347697 -0.934179 0.080109 -0.858369 0.282773 -0.428068 0.377239 -0.217601 -0.900189 -0.248839 -0.965226 0.080109 -0.883087 0.192135 -0.428068 0.397791 -0.177263 -0.900189 -0.146306 -0.985991 0.080109 -0.898360 0.098523 -0.428068 0.414178 -0.134595 -0.900189 -0.042161 -0.995894 0.080109 -0.903738 0.003826 -0.428068 0.426004 -0.090445 -0.900189 0.061453 -0.994890 0.080109 -0.899253 -0.090014 -0.428068 0.433091 -0.045732 -0.900189 0.165386 -0.982970 0.080109 -0.884866 -0.183766 -0.428068 0.435499 -0.000089 -0.900189 0.267498 -0.960223 0.080109 -0.860733 -0.275495 -0.428068 0.433110 0.045555 -0.900189 0.366663 -0.926899 0.080109 -0.827118 -0.364188 -0.428068 0.425950 0.090697 -0.900189 0.460906 -0.883826 0.080109 -0.784842 -0.448086 -0.428068 0.414233 0.134426 -0.900189 0.550999 -0.830652 0.080109 -0.733557 -0.527875 -0.428068 0.397863 0.177101 -0.900189 0.635022 -0.768329 0.080109 -0.674192 -0.601850 -0.428068 0.377110 0.217824 -0.900189 0.712051 -0.697543 0.080109 -0.607401 -0.669195 -0.428068 0.352204 0.256148 -0.900189 0.780618 -0.619854 0.080109 -0.534648 -0.728635 -0.428068 0.323709 0.291327 -0.900189 0.841284 -0.534626 0.080109 -0.455337 -0.780657 -0.428068 0.291393 0.323650 -0.900189 0.892683 -0.443509 0.080109 -0.371011 -0.824081 -0.428068 0.255868 0.352408 -0.900189 0.933901 -0.348441 0.080109 -0.283456 -0.858144 -0.428068 0.217901 0.377066 -0.900189 0.965277 -0.248642 0.080109 -0.191956 -0.883126 -0.428068 0.177182 0.397827 -0.900189 0.986020 -0.146105 0.080109 -0.098340 -0.898380 -0.428068 0.134511 0.414206 -0.900189 0.995903 -0.041958 0.080109 -0.003642 -0.903739 -0.428068 0.090358 0.426022 -0.900189 0.994877 0.061656 0.080109 0.090197 -0.899234 -0.428068 0.045643 0.433101 -0.900189 0.982936 0.165587 0.080109 0.183947 -0.884829 -0.428068 0.000000 0.435499 -0.900189 0.960168 0.267693 0.080109 0.275670 -0.860677 -0.428068 -0.045643 0.433101 -0.900189 0.927190 0.365925 0.080109 0.363529 -0.827408 -0.428068 -0.090358 0.426022 -0.900189 0.883732 0.461086 0.080109 0.448246 -0.784751 -0.428068 -0.134511 0.414206 -0.900189 0.830540 0.551168 0.080109 0.528024 -0.733449 -0.428068 -0.177182 0.397827 -0.900189 0.768200 0.635179 0.080109 0.601987 -0.674069 -0.428068 -0.217901 0.377066 -0.900189 0.698109 0.711496 0.080109 0.668711 -0.607933 -0.428068 -0.255868 0.352408 -0.900189 0.619695 0.780744 0.080109 0.728744 -0.534499 -0.428068 -0.291393 0.323650 -0.900189 0.534454 0.841392 0.080109 0.780750 -0.455178 -0.428068 -0.323709 0.291327 -0.900189 0.444219 0.892329 0.080109 0.823785 -0.371667 -0.428068 -0.352204 0.256148 -0.900189 0.348250 0.933972 0.080109 0.858201 -0.283281 -0.428068 -0.377110 0.217824 -0.900189 0.248445 0.965328 0.080109 0.883165 -0.191776 -0.428068 -0.397863 0.177101 -0.900189 0.145904 0.986050 0.080109 0.898400 -0.098157 -0.428068 -0.414233 0.134426 -0.900189 0.042751 0.995869 0.080109 0.903736 -0.004362 -0.428068 -0.425950 0.090697 -0.900189 -0.061859 0.994865 0.080109 0.899216 0.090380 -0.428068 -0.433110 0.045555 -0.900189 -0.567707 -0.789130 0.234483 -0.729413 0.614226 0.301136 -0.381661 -0.000078 -0.924302 -0.481874 -0.844284 0.234483 -0.789771 0.534395 0.301136 -0.379551 -0.040078 -0.924302 -0.391623 -0.889747 0.234483 -0.840981 0.449520 0.301136 -0.373340 -0.079264 -0.924302 -0.296214 -0.925892 0.234483 -0.883462 0.358903 0.301136 -0.362976 -0.117956 -0.924302 -0.197543 -0.951838 0.234483 -0.916212 0.264333 0.301136 -0.348614 -0.155349 -0.924302 -0.097662 -0.967202 0.234483 -0.938703 0.167790 0.301136 -0.330603 -0.190700 -0.924302 0.004245 -0.972111 0.234483 -0.951119 0.068484 0.301136 -0.308796 -0.224299 -0.924302 0.106106 -0.966312 0.234483 -0.953058 -0.031578 0.301136 -0.283587 -0.255428 -0.924302 0.206798 -0.949870 0.234483 -0.944500 -0.131291 0.301136 -0.255255 -0.283743 -0.924302 0.304289 -0.923269 0.234483 -0.925767 -0.228633 0.301136 -0.224419 -0.308709 -0.924302 0.399378 -0.886293 0.234483 -0.896706 -0.324401 0.301136 -0.190828 -0.330529 -0.924302 0.490069 -0.839554 0.234483 -0.857768 -0.416595 0.301136 -0.155136 -0.348709 -0.924302 0.574577 -0.784142 0.234483 -0.809885 -0.503391 0.301136 -0.118097 -0.362930 -0.924302 0.653596 -0.719604 0.234483 -0.752666 -0.585501 0.301136 -0.079409 -0.373309 -0.924302 0.725416 -0.647139 0.234483 -0.687156 -0.661161 0.301136 -0.039846 -0.379575 -0.924302 0.788783 -0.568189 0.234483 -0.614671 -0.729038 0.301136 -0.000155 -0.381661 -0.924302 0.843989 -0.482389 0.234483 -0.534878 -0.789445 0.301136 0.039846 -0.379575 -0.924302 0.889899 -0.391277 0.234483 -0.449192 -0.841156 0.301136 0.079409 -0.373309 -0.924302 0.926007 -0.295854 0.234483 -0.358559 -0.883602 0.301136 0.118097 -0.362930 -0.924302 0.951717 -0.198124 0.234483 -0.264893 -0.916051 0.301136 0.155136 -0.348709 -0.924302 0.967240 -0.097286 0.234483 -0.167425 -0.938768 0.301136 0.190828 -0.330529 -0.924302 0.972109 0.004623 0.234483 -0.068114 -0.951145 0.301136 0.224419 -0.308709 -0.924302 0.966377 0.105516 0.234483 0.030995 -0.953077 0.301136 0.255255 -0.283743 -0.924302 0.949996 0.206218 0.234483 0.130714 -0.944580 0.301136 0.283587 -0.255428 -0.924302 0.923151 0.304648 0.234483 0.228993 -0.925678 0.301136 0.308796 -0.224299 -0.924302 0.886137 0.399723 0.234483 0.324749 -0.896580 0.301136 0.330603 -0.190700 -0.924302 0.839853 0.489556 0.234483 0.416071 -0.858022 0.301136 0.348614 -0.155349 -0.924302 0.783919 0.574882 0.234483 0.503706 -0.809689 0.301136 0.362976 -0.117956 -0.924302 0.719350 0.653876 0.234483 0.585793 -0.752438 0.301136 0.373340 -0.079264 -0.924302 0.647582 0.725021 0.234483 0.660741 -0.687560 0.301136 0.379551 -0.040078 -0.924302 0.568028 0.788899 0.234483 0.729163 -0.614523 0.301136 0.381661 -0.000078 -0.924302 0.482218 0.844088 0.234483 0.789554 -0.534717 0.301136 0.379567 0.039924 -0.924302 0.391095 0.889979 0.234483 0.841247 -0.449021 0.301136 0.373292 0.079485 -0.924302 0.296591 0.925771 0.234483 0.883316 -0.359263 0.301136 0.363024 0.117808 -0.924302 0.197930 0.951757 0.234483 0.916105 -0.264706 0.301136 0.348677 0.155207 -0.924302 0.097089 0.967260 0.234483 0.938802 -0.167234 0.301136 0.330490 0.190896 -0.924302 -0.004821 0.972108 0.234483 0.951159 -0.067920 0.301136 0.308663 0.224482 -0.924302 -0.105712 0.966355 0.234483 0.953071 0.031189 0.301136 0.283691 0.255312 -0.924302 -0.206411 0.949954 0.234483 0.944553 0.130906 0.301136 0.255370 0.283639 -0.924302 -0.304836 0.923089 0.234483 0.925631 0.229181 0.301136 0.224236 0.308842 -0.924302 -0.399017 0.886455 0.234483 0.896838 0.324035 0.301136 0.190963 0.330452 -0.924302 -0.489727 0.839753 0.234483 0.857937 0.416246 0.301136 0.155278 0.348646 -0.924302 -0.575042 0.783802 0.234483 0.809587 0.503871 0.301136 0.117882 0.363000 -0.924302 -0.654023 0.719216 0.234483 0.752319 0.585947 0.301136 0.079188 0.373356 -0.924302 -0.725153 0.647434 0.234483 0.687425 0.660881 0.301136 0.040001 0.379559 -0.924302 -0.789015 0.567868 0.234483 0.614374 0.729288 0.301136 0.000000 0.381661 -0.924302 -0.844186 0.482046 0.234483 0.534556 0.789663 0.301136 -0.040001 0.379559 -0.924302 -0.889667 0.391804 0.234483 0.449691 0.840890 0.301136 -0.079188 0.373356 -0.924302 -0.925831 0.296403 0.234483 0.359083 0.883389 0.301136 -0.117882 0.363000 -0.924302 -0.951797 0.197736 0.234483 0.264520 0.916158 0.301136 -0.155278 0.348646 -0.924302 -0.967280 0.096892 0.234483 0.167043 0.938836 0.301136 -0.190963 0.330452 -0.924302 -0.972112 -0.004047 0.234483 0.068677 0.951105 0.301136 -0.224236 0.308842 -0.924302 -0.966334 -0.105909 0.234483 -0.031384 0.953065 0.301136 -0.255370 0.283639 -0.924302 -0.949912 -0.206605 0.234483 -0.131099 0.944526 0.301136 -0.283691 0.255312 -0.924302 -0.923331 -0.304101 0.234483 -0.228444 0.925813 0.301136 -0.308663 0.224482 -0.924302 -0.886374 -0.399198 0.234483 -0.324218 0.896772 0.301136 -0.330490 0.190896 -0.924302 -0.839654 -0.489898 0.234483 -0.416420 0.857853 0.301136 -0.348677 0.155207 -0.924302 -0.783684 -0.575201 0.234483 -0.504036 0.809484 0.301136 -0.363024 0.117808 -0.924302 -0.719737 -0.653450 0.234483 -0.585347 0.752785 0.301136 -0.373292 0.079485 -0.924302 -0.647287 -0.725285 0.234483 -0.661021 0.687291 0.301136 -0.379567 0.039924 -0.924302 -0.225519 0.330419 0.916496 0.078747 0.943834 -0.320899 -0.971051 -0.000198 -0.238872 -0.258907 0.304963 0.916496 -0.020608 0.946889 -0.320899 -0.965682 -0.101970 -0.238872 -0.289167 0.276438 0.916496 -0.118795 0.939634 -0.320899 -0.949879 -0.201669 -0.238872 -0.316547 0.244609 0.916496 -0.216622 0.922008 -0.320899 -0.923511 -0.300112 -0.238872 -0.340441 0.210085 0.916496 -0.312062 0.894227 -0.320899 -0.886971 -0.395250 -0.238872 -0.360411 0.173608 0.916496 -0.403208 0.856999 -0.320899 -0.841147 -0.485193 -0.238872 -0.376621 0.134878 0.916496 -0.490806 0.810020 -0.320899 -0.785662 -0.570679 -0.238872 -0.388683 0.094663 0.916496 -0.572999 0.754119 -0.320899 -0.721524 -0.649879 -0.238872 -0.396464 0.053405 0.916496 -0.648881 0.689912 -0.320899 -0.649438 -0.721921 -0.238872 -0.399866 0.011958 0.916496 -0.716996 0.618822 -0.320899 -0.570985 -0.785440 -0.238872 -0.398917 -0.030017 0.916496 -0.777905 0.540267 -0.320899 -0.485520 -0.840958 -0.238872 -0.393574 -0.071661 0.916496 -0.830244 0.455762 -0.320899 -0.394708 -0.887212 -0.238872 -0.384008 -0.112131 0.916496 -0.873072 0.367110 -0.320899 -0.300472 -0.923394 -0.238872 -0.370141 -0.151760 0.916496 -0.906739 0.273584 -0.320899 -0.202038 -0.949800 -0.238872 -0.352197 -0.189718 0.916496 -0.930419 0.177044 -0.320899 -0.101380 -0.965744 -0.238872 -0.330557 -0.225317 0.916496 -0.943786 0.079323 -0.320899 -0.000396 -0.971051 -0.238872 -0.305122 -0.258721 0.916496 -0.946902 -0.020029 -0.320899 0.101380 -0.965744 -0.238872 -0.276325 -0.289275 0.916496 -0.939588 -0.119161 -0.320899 0.202038 -0.949800 -0.238872 -0.244485 -0.316642 0.916496 -0.921924 -0.216980 -0.320899 0.300472 -0.923394 -0.238872 -0.210293 -0.340312 0.916496 -0.894417 -0.311515 -0.320899 0.394708 -0.887212 -0.238872 -0.173468 -0.360478 0.916496 -0.856842 -0.403541 -0.320899 0.485520 -0.840958 -0.238872 -0.134732 -0.376674 0.916496 -0.809829 -0.491122 -0.320899 0.570985 -0.785440 -0.238872 -0.094900 -0.388625 0.916496 -0.754469 -0.572539 -0.320899 0.649438 -0.721921 -0.238872 -0.053647 -0.396431 0.916496 -0.690308 -0.648459 -0.320899 0.721524 -0.649879 -0.238872 -0.011803 -0.399870 0.916496 -0.618543 -0.717237 -0.320899 0.785662 -0.570679 -0.238872 0.030172 -0.398905 0.916496 -0.539965 -0.778114 -0.320899 0.841147 -0.485193 -0.238872 0.071420 -0.393617 0.916496 -0.456269 -0.829965 -0.320899 0.886971 -0.395250 -0.238872 0.112281 -0.383964 0.916496 -0.366770 -0.873215 -0.320899 0.923511 -0.300112 -0.238872 0.151904 -0.370082 0.916496 -0.273231 -0.906846 -0.320899 0.949879 -0.201669 -0.238872 0.189503 -0.352313 0.916496 -0.177612 -0.930311 -0.320899 0.965682 -0.101970 -0.238872 0.225384 -0.330511 0.916496 -0.079131 -0.943802 -0.320899 0.971051 -0.000198 -0.238872 0.258783 -0.305069 0.916496 0.020222 -0.946898 -0.320899 0.965724 0.101576 -0.238872 0.289331 -0.276266 0.916496 0.119352 -0.939563 -0.320899 0.949759 0.202232 -0.238872 0.316448 -0.244738 0.916496 0.216246 -0.922096 -0.320899 0.923633 0.299736 -0.238872 0.340355 -0.210224 0.916496 0.311697 -0.894354 -0.320899 0.887132 0.394889 -0.238872 0.360513 -0.173394 0.916496 0.403715 -0.856760 -0.320899 0.840859 0.485692 -0.238872 0.376701 -0.134655 0.916496 0.491287 -0.809729 -0.320899 0.785324 0.571145 -0.238872 0.388644 -0.094821 0.916496 0.572692 -0.754353 -0.320899 0.721789 0.649585 -0.238872 0.396442 -0.053566 0.916496 0.648600 -0.690176 -0.320899 0.649732 0.721657 -0.238872 0.399873 -0.011721 0.916496 0.717363 -0.618397 -0.320899 0.570519 0.785779 -0.238872 0.398929 0.029854 0.916496 0.777684 -0.540584 -0.320899 0.485863 0.840760 -0.238872 0.393603 0.071500 0.916496 0.830058 -0.456100 -0.320899 0.395069 0.887052 -0.238872 0.383941 0.112359 0.916496 0.873289 -0.366592 -0.320899 0.299924 0.923572 -0.238872 0.370051 0.151980 0.916496 0.906901 -0.273046 -0.320899 0.201475 0.949920 -0.238872 0.352274 0.189575 0.916496 0.930347 -0.177423 -0.320899 0.101773 0.965703 -0.238872 0.330465 0.225451 0.916496 0.943818 -0.078939 -0.320899 0.000000 0.971051 -0.238872 0.305016 0.258845 0.916496 0.946894 0.020415 -0.320899 -0.101773 0.965703 -0.238872 0.276497 0.289111 0.916496 0.939658 0.118604 -0.320899 -0.201475 0.949920 -0.238872 0.244673 0.316497 0.916496 0.922052 0.216434 -0.320899 -0.299924 0.923572 -0.238872 0.210154 0.340398 0.916496 0.894290 0.311879 -0.320899 -0.395069 0.887052 -0.238872 0.173321 0.360549 0.916496 0.856678 0.403890 -0.320899 -0.485863 0.840760 -0.238872 0.134955 0.376594 0.916496 0.810120 0.490642 -0.320899 -0.570519 0.785779 -0.238872 0.094742 0.388664 0.916496 0.754236 0.572846 -0.320899 -0.649732 0.721657 -0.238872 0.053485 0.396453 0.916496 0.690044 0.648740 -0.320899 -0.721789 0.649585 -0.238872 0.012040 0.399863 0.916496 0.618968 0.716870 -0.320899 -0.785324 0.571145 -0.238872 -0.029935 0.398923 0.916496 0.540426 0.777794 -0.320899 -0.840859 0.485692 -0.238872 -0.071580 0.393588 0.916496 0.455931 0.830151 -0.320899 -0.887132 0.394889 -0.238872 -0.112437 0.383919 0.916496 0.366414 0.873364 -0.320899 -0.923633 0.299736 -0.238872 -0.151685 0.370172 0.916496 0.273768 0.906684 -0.320899 -0.949759 0.202232 -0.238872 -0.189646 0.352235 0.916496 0.177233 0.930383 -0.320899 -0.965724 0.101576 -0.238872 -0.265545 -0.195001 0.944172 -0.052988 0.980803 0.187664 -0.962641 -0.000196 -0.270780 -0.243645 -0.221758 0.944172 -0.155491 0.969848 0.187664 -0.957319 -0.101087 -0.270780 -0.219308 -0.245854 0.944172 -0.255333 0.948466 0.187664 -0.941652 -0.199922 -0.270780 -0.192333 -0.267485 0.944172 -0.353333 0.916481 0.187664 -0.915513 -0.297513 -0.270780 -0.163239 -0.286169 0.944172 -0.447441 0.874402 0.187664 -0.879289 -0.391827 -0.270780 -0.132649 -0.301569 0.944172 -0.535797 0.823227 0.187664 -0.833862 -0.480991 -0.270780 -0.100312 -0.313811 0.944172 -0.619126 0.762538 0.187664 -0.778858 -0.565737 -0.270780 -0.066870 -0.322596 0.944172 -0.695636 0.693450 0.187664 -0.715275 -0.644251 -0.270780 -0.032691 -0.327828 0.944172 -0.764484 0.616723 0.187664 -0.643814 -0.715669 -0.270780 0.001518 -0.329450 0.944172 -0.824377 0.534028 0.187664 -0.566040 -0.778638 -0.270780 0.036039 -0.327477 0.944172 -0.875806 0.444686 0.187664 -0.481315 -0.833675 -0.270780 0.070162 -0.321896 0.944172 -0.917589 0.350446 0.187664 -0.391290 -0.879529 -0.270780 0.103200 -0.312873 0.944172 -0.949012 0.253295 0.187664 -0.297869 -0.915397 -0.270780 0.135423 -0.300334 0.944172 -0.970333 0.152437 0.187664 -0.200289 -0.941574 -0.270780 0.166154 -0.284487 0.944172 -0.980965 0.049900 0.187664 -0.100502 -0.957380 -0.270780 0.194839 -0.265665 0.944172 -0.980835 -0.052388 0.187664 -0.000392 -0.962641 -0.270780 0.221610 -0.243781 0.944172 -0.969943 -0.154898 0.187664 0.100502 -0.957380 -0.270780 0.245939 -0.219212 0.944172 -0.948366 -0.255702 0.187664 0.200289 -0.941574 -0.270780 0.267560 -0.192229 0.944172 -0.916344 -0.353690 0.187664 0.297869 -0.915397 -0.270780 0.286070 -0.163414 0.944172 -0.874675 -0.446907 0.187664 0.391290 -0.879529 -0.270780 0.301621 -0.132532 0.944172 -0.823019 -0.536117 0.187664 0.481315 -0.833675 -0.270780 0.313850 -0.100190 0.944172 -0.762297 -0.619423 0.187664 0.566040 -0.778638 -0.270780 0.322555 -0.067067 0.944172 -0.693874 -0.695212 0.187664 0.643814 -0.715669 -0.270780 0.327808 -0.032891 0.944172 -0.617190 -0.764107 0.187664 0.715275 -0.644251 -0.270780 0.329450 0.001646 0.944172 -0.533707 -0.824584 0.187664 0.778858 -0.565737 -0.270780 0.327463 0.036166 0.944172 -0.444345 -0.875979 0.187664 0.833862 -0.480991 -0.270780 0.321939 0.069965 0.944172 -0.351007 -0.917375 0.187664 0.879289 -0.391827 -0.270780 0.312833 0.103322 0.944172 -0.252926 -0.949110 0.187664 0.915513 -0.297513 -0.270780 0.300281 0.135540 0.944172 -0.152059 -0.970392 0.187664 0.941652 -0.199922 -0.270780 0.284588 0.165980 0.944172 -0.050499 -0.980934 0.187664 0.957319 -0.101087 -0.270780 0.265625 0.194893 0.944172 0.052588 -0.980824 0.187664 0.962641 -0.000196 -0.270780 0.243736 0.221659 0.944172 0.155096 -0.969911 0.187664 0.957360 0.100697 -0.270780 0.219162 0.245984 0.944172 0.255895 -0.948314 0.187664 0.941534 0.200480 -0.270780 0.192442 0.267406 0.944172 0.352960 -0.916625 0.187664 0.915634 0.297140 -0.270780 0.163356 0.286103 0.944172 0.447085 -0.874584 0.187664 0.879449 0.391469 -0.270780 0.132470 0.301648 0.944172 0.536285 -0.822910 0.187664 0.833577 0.481485 -0.270780 0.100126 0.313871 0.944172 0.619578 -0.762171 0.187664 0.778523 0.566198 -0.270780 0.067001 0.322569 0.944172 0.695354 -0.693733 0.187664 0.715538 0.643960 -0.270780 0.032825 0.327815 0.944172 0.764232 -0.617034 0.187664 0.644105 0.715406 -0.270780 -0.001713 0.329450 0.944172 0.824693 -0.533539 0.187664 0.565578 0.778973 -0.270780 -0.035905 0.327492 0.944172 0.875625 -0.445043 0.187664 0.481655 0.833479 -0.270780 -0.070031 0.321925 0.944172 0.917446 -0.350820 0.187664 0.391648 0.879369 -0.270780 -0.103385 0.312812 0.944172 0.949162 -0.252733 0.187664 0.297327 0.915573 -0.270780 -0.135601 0.300254 0.944172 0.970423 -0.151862 0.187664 0.199730 0.941693 -0.270780 -0.166038 0.284554 0.944172 0.980945 -0.050299 0.187664 0.100892 0.957339 -0.270780 -0.194947 0.265585 0.944172 0.980814 0.052788 0.187664 0.000000 0.962641 -0.270780 -0.221709 0.243691 0.944172 0.969879 0.155293 0.187664 -0.100892 0.957339 -0.270780 -0.245809 0.219358 0.944172 0.948518 0.255140 0.187664 -0.199730 0.941693 -0.270780 -0.267446 0.192387 0.944172 0.916553 0.353146 0.187664 -0.297327 0.915573 -0.270780 -0.286136 0.163297 0.944172 0.874493 0.447263 0.187664 -0.391648 0.879369 -0.270780 -0.301675 0.132409 0.944172 0.822801 0.536453 0.187664 -0.481655 0.833479 -0.270780 -0.313791 0.100376 0.944172 0.762664 0.618971 0.187664 -0.565578 0.778973 -0.270780 -0.322583 0.066935 0.944172 0.693591 0.695495 0.187664 -0.644105 0.715406 -0.270780 -0.327821 0.032758 0.944172 0.616879 0.764358 0.187664 -0.715538 0.643960 -0.270780 -0.329451 -0.001451 0.944172 0.534195 0.824268 0.187664 -0.778523 0.566198 -0.270780 -0.327484 -0.035972 0.944172 0.444864 0.875716 0.187664 -0.833577 0.481485 -0.270780 -0.321911 -0.070097 0.944172 0.350633 0.917518 0.187664 -0.879449 0.391469 -0.270780 -0.312791 -0.103449 0.944172 0.252539 0.949213 0.187664 -0.915634 0.297140 -0.270780 -0.300362 -0.135362 0.944172 0.152635 0.970301 0.187664 -0.941534 0.200480 -0.270780 -0.284521 -0.166096 0.944172 0.050099 0.980955 0.187664 -0.957360 0.100697 -0.270780 -0.411266 0.910955 0.031961 0.908214 0.412506 -0.070619 -0.077515 -0.000016 -0.996991 -0.504475 0.862834 0.031961 0.859978 0.505421 -0.070619 -0.077086 -0.008140 -0.996991 -0.591323 0.805801 0.031961 0.802862 0.591967 -0.070619 -0.075825 -0.016098 -0.996991 -0.672520 0.739389 0.031961 0.736398 0.672852 -0.070619 -0.073720 -0.023957 -0.996991 -0.746309 0.664832 0.031961 0.661823 0.746327 -0.070619 -0.070803 -0.031551 -0.996991 -0.811295 0.583763 0.031961 0.580769 0.811000 -0.070619 -0.067145 -0.038731 -0.996991 -0.868009 0.495519 0.031961 0.492572 0.867402 -0.070619 -0.062716 -0.045555 -0.996991 -0.915162 0.401816 0.031961 0.398949 0.914250 -0.070619 -0.057596 -0.051877 -0.996991 -0.952235 0.303688 0.031961 0.300932 0.951027 -0.070619 -0.051842 -0.057628 -0.996991 -0.978617 0.203193 0.031961 0.200577 0.977129 -0.070619 -0.045579 -0.062698 -0.996991 -0.994523 0.099507 0.031961 0.097062 0.992770 -0.070619 -0.038757 -0.067130 -0.996991 -0.999475 -0.005274 0.031961 -0.007522 0.997475 -0.070619 -0.031508 -0.070822 -0.996991 -0.993527 -0.109003 0.031961 -0.111031 0.991305 -0.070619 -0.023985 -0.073711 -0.996991 -0.976631 -0.212532 0.031961 -0.214316 0.974208 -0.070619 -0.016128 -0.075819 -0.996991 -0.948978 -0.313719 0.031961 -0.315239 0.946381 -0.070619 -0.008093 -0.077091 -0.996991 -0.911206 -0.410709 0.031961 -0.411951 0.908465 -0.070619 -0.000032 -0.077515 -0.996991 -0.863142 -0.503948 0.031961 -0.504896 0.860287 -0.070619 0.008093 -0.077091 -0.996991 -0.805571 -0.591636 0.031961 -0.592279 0.802632 -0.070619 0.016128 -0.075819 -0.996991 -0.739127 -0.672807 0.031961 -0.673139 0.736136 -0.070619 0.023985 -0.073711 -0.996991 -0.665288 -0.745903 0.031961 -0.745922 0.662279 -0.070619 0.031508 -0.070822 -0.996991 -0.583448 -0.811522 0.031961 -0.811225 0.580453 -0.070619 0.038757 -0.067130 -0.996991 -0.495181 -0.868202 0.031961 -0.867593 0.492234 -0.070619 0.045579 -0.062698 -0.996991 -0.402375 -0.914917 0.031961 -0.914006 0.399507 -0.070619 0.051842 -0.057628 -0.996991 -0.304269 -0.952050 0.031961 -0.950843 0.301513 -0.070619 0.057596 -0.051877 -0.996991 -0.202812 -0.978696 0.031961 -0.977207 0.200197 -0.070619 0.062716 -0.045555 -0.996991 -0.099121 -0.994562 0.031961 -0.992807 0.096676 -0.070619 0.067145 -0.038731 -0.996991 0.004663 -0.999478 0.031961 -0.997479 -0.006912 -0.070619 0.070803 -0.031551 -0.996991 0.109390 -0.993485 0.031961 -0.991261 -0.111417 -0.070619 0.073720 -0.023957 -0.996991 0.212912 -0.976549 0.031961 -0.974125 -0.214695 -0.070619 0.075825 -0.016098 -0.996991 0.313139 -0.949169 0.031961 -0.946573 -0.314661 -0.070619 0.077086 -0.008140 -0.996991 0.410895 -0.911122 0.031961 -0.908382 -0.412136 -0.070619 0.077515 -0.000016 -0.996991 0.504124 -0.863040 0.031961 -0.860184 -0.505071 -0.070619 0.077090 0.008108 -0.996991 0.591800 -0.805451 0.031961 -0.802511 -0.592443 -0.070619 0.075815 0.016143 -0.996991 0.672219 -0.739663 0.031961 -0.736672 -0.672552 -0.070619 0.073730 0.023927 -0.996991 0.746038 -0.665136 0.031961 -0.662127 -0.746057 -0.070619 0.070816 0.031522 -0.996991 0.811641 -0.583282 0.031961 -0.580288 -0.811344 -0.070619 0.067122 0.038771 -0.996991 0.868303 -0.495004 0.031961 -0.492058 -0.867694 -0.070619 0.062689 0.045592 -0.996991 0.914999 -0.402189 0.031961 -0.399321 -0.914087 -0.070619 0.057617 0.051854 -0.996991 0.952112 -0.304075 0.031961 -0.301319 -0.950905 -0.070619 0.051865 0.057607 -0.996991 0.978737 -0.202613 0.031961 -0.199998 -0.977248 -0.070619 0.045542 0.062725 -0.996991 0.994483 -0.099912 0.031961 -0.097467 -0.992730 -0.070619 0.038784 0.067114 -0.996991 0.999477 0.004867 0.031961 0.007115 -0.997478 -0.070619 0.031537 0.070810 -0.996991 0.993463 0.109592 0.031961 0.111619 -0.991239 -0.070619 0.023942 0.073725 -0.996991 0.976505 0.213111 0.031961 0.214893 -0.974081 -0.070619 0.016083 0.075828 -0.996991 0.949105 0.313333 0.031961 0.314854 -0.946509 -0.070619 0.008124 0.077088 -0.996991 0.911039 0.411080 0.031961 0.412321 -0.908298 -0.070619 0.000000 0.077515 -0.996991 0.862937 0.504300 0.031961 0.505246 -0.860081 -0.070619 -0.008124 0.077088 -0.996991 0.805922 0.591159 0.031961 0.591803 -0.802983 -0.070619 -0.016083 0.075828 -0.996991 0.739526 0.672369 0.031961 0.672702 -0.736535 -0.070619 -0.023942 0.073725 -0.996991 0.664984 0.746174 0.031961 0.746192 -0.661975 -0.070619 -0.031537 0.070810 -0.996991 0.583117 0.811759 0.031961 0.811462 -0.580123 -0.070619 -0.038784 0.067114 -0.996991 0.495695 0.867908 0.031961 0.867302 -0.492748 -0.070619 -0.045542 0.062725 -0.996991 0.402002 0.915081 0.031961 0.914168 -0.399135 -0.070619 -0.051865 0.057607 -0.996991 0.303881 0.952174 0.031961 0.950966 -0.301126 -0.070619 -0.057617 0.051854 -0.996991 0.203392 0.978576 0.031961 0.977088 -0.200776 -0.070619 -0.062689 0.045592 -0.996991 0.099710 0.994503 0.031961 0.992750 -0.097265 -0.070619 -0.067122 0.038771 -0.996991 -0.005070 0.999476 0.031961 0.997477 0.007318 -0.070619 -0.070816 0.031522 -0.996991 -0.109795 0.993440 0.031961 0.991216 0.111821 -0.070619 -0.073730 0.023927 -0.996991 -0.212333 0.976675 0.031961 0.974252 0.214117 -0.070619 -0.075815 0.016143 -0.996991 -0.313526 0.949042 0.031961 0.946445 0.315047 -0.070619 -0.077090 0.008108 -0.996991 -0.075502 -0.254393 0.964149 -0.020070 0.967101 0.253600 -0.996944 -0.000203 -0.078124 -0.048424 -0.260905 0.964149 -0.121319 0.959671 0.253600 -0.991432 -0.104689 -0.078124 -0.021078 -0.264522 0.964149 -0.220289 0.941892 0.253600 -0.975207 -0.207046 -0.078124 0.006762 -0.265274 0.964149 -0.317793 0.913616 0.253600 -0.948136 -0.308115 -0.078124 0.034528 -0.263105 0.964149 -0.411796 0.875278 0.253600 -0.910622 -0.405789 -0.078124 0.061655 -0.258099 0.964149 -0.500436 0.827799 0.253600 -0.863575 -0.498131 -0.078124 0.088366 -0.250215 0.964149 -0.584439 0.770791 0.253600 -0.806612 -0.585896 -0.078124 0.114103 -0.239576 0.964149 -0.662005 0.705292 0.253600 -0.740763 -0.667208 -0.078124 0.138584 -0.226297 0.964149 -0.732278 0.632025 0.253600 -0.666755 -0.741171 -0.078124 0.161328 -0.210688 0.964149 -0.793934 0.552590 0.253600 -0.586210 -0.806384 -0.078124 0.182521 -0.192619 0.964149 -0.847477 0.466337 0.253600 -0.498467 -0.863382 -0.078124 0.201704 -0.172429 0.964149 -0.891685 0.374947 0.253600 -0.405233 -0.910869 -0.078124 0.218514 -0.150558 0.964149 -0.925791 0.280353 0.253600 -0.308484 -0.948016 -0.078124 0.233090 -0.126827 0.964149 -0.950076 0.181779 0.253600 -0.207426 -0.975126 -0.078124 0.245099 -0.101699 0.964149 -0.963895 0.081203 0.253600 -0.104083 -0.991495 -0.078124 0.254346 -0.075658 0.964149 -0.967113 -0.019479 0.253600 -0.000406 -0.996944 -0.078124 0.260875 -0.048584 0.964149 -0.959745 -0.120732 0.253600 0.104083 -0.991495 -0.078124 0.264530 -0.020975 0.964149 -0.941806 -0.220655 0.253600 0.207426 -0.975126 -0.078124 0.265272 0.006866 0.964149 -0.913493 -0.318148 0.253600 0.308484 -0.948016 -0.078124 0.263126 0.034367 0.964149 -0.875529 -0.411261 0.253600 0.405233 -0.910869 -0.078124 0.258075 0.061755 0.964149 -0.827604 -0.500758 0.253600 0.498467 -0.863382 -0.078124 0.250181 0.088463 0.964149 -0.770563 -0.584739 0.253600 0.586210 -0.806384 -0.078124 0.239645 0.113957 0.964149 -0.705696 -0.661574 0.253600 0.666755 -0.741171 -0.078124 0.226382 0.138446 0.964149 -0.632472 -0.731892 0.253600 0.740763 -0.667208 -0.078124 0.210625 0.161410 0.964149 -0.552281 -0.794149 0.253600 0.806612 -0.585896 -0.078124 0.192548 0.182596 0.964149 -0.466007 -0.847658 0.253600 0.863575 -0.498131 -0.078124 0.172552 0.201598 0.964149 -0.375492 -0.891456 0.253600 0.910622 -0.405789 -0.078124 0.150473 0.218573 0.964149 -0.279993 -0.925900 0.253600 0.948136 -0.308115 -0.078124 0.126736 0.233140 0.964149 -0.181410 -0.950146 0.253600 0.975207 -0.207046 -0.078124 0.101848 0.245037 0.964149 -0.081792 -0.963845 0.253600 0.991432 -0.104689 -0.078124 0.075606 0.254362 0.964149 0.019676 -0.967109 0.253600 0.996944 -0.000203 -0.078124 0.048531 0.260885 0.964149 0.120928 -0.959721 0.253600 0.991474 0.104285 -0.078124 0.020921 0.264534 0.964149 0.220847 -0.941761 0.253600 0.975084 0.207624 -0.078124 -0.006654 0.265277 0.964149 0.317421 -0.913746 0.253600 0.948261 0.307728 -0.078124 -0.034421 0.263119 0.964149 0.411440 -0.875445 0.253600 0.910787 0.405418 -0.078124 -0.061808 0.258062 0.964149 0.500926 -0.827502 0.253600 0.863280 0.498642 -0.078124 -0.088514 0.250163 0.964149 0.584896 -0.770444 0.253600 0.806264 0.586374 -0.078124 -0.114006 0.239622 0.964149 0.661717 -0.705562 0.253600 0.741035 0.666906 -0.078124 -0.138492 0.226354 0.964149 0.732021 -0.632323 0.253600 0.667057 0.740899 -0.078124 -0.161453 0.210592 0.964149 0.794261 -0.552120 0.253600 0.585732 0.806731 -0.078124 -0.182443 0.192694 0.964149 0.847287 -0.466682 0.253600 0.498818 0.863178 -0.078124 -0.201634 0.172511 0.964149 0.891532 -0.375310 0.253600 0.405604 0.910704 -0.078124 -0.218603 0.150428 0.964149 0.925957 -0.279804 0.253600 0.307922 0.948199 -0.078124 -0.233166 0.126689 0.964149 0.950183 -0.181216 0.253600 0.206848 0.975249 -0.078124 -0.245058 0.101799 0.964149 0.963862 -0.081596 0.253600 0.104487 0.991453 -0.078124 -0.254377 0.075554 0.964149 0.967105 0.019873 0.253600 0.000000 0.996944 -0.078124 -0.260895 0.048477 0.964149 0.959696 0.121123 0.253600 -0.104487 0.991453 -0.078124 -0.264518 0.021131 0.964149 0.941937 0.220097 0.253600 -0.206848 0.975249 -0.078124 -0.265276 -0.006708 0.964149 0.913681 0.317607 0.253600 -0.307922 0.948199 -0.078124 -0.263112 -0.034474 0.964149 0.875362 0.411618 0.253600 -0.405604 0.910704 -0.078124 -0.258049 -0.061860 0.964149 0.827400 0.501095 0.253600 -0.498818 0.863178 -0.078124 -0.250233 -0.088315 0.964149 0.770910 0.584282 0.253600 -0.585732 0.806731 -0.078124 -0.239599 -0.114055 0.964149 0.705427 0.661861 0.253600 -0.667057 0.740899 -0.078124 -0.226326 -0.138538 0.964149 0.632174 0.732150 0.253600 -0.741035 0.666906 -0.078124 -0.210721 -0.161285 0.964149 0.552752 0.793821 0.253600 -0.806264 0.586374 -0.078124 -0.192656 -0.182482 0.964149 0.466509 0.847382 0.253600 -0.863280 0.498642 -0.078124 -0.172470 -0.201669 0.964149 0.375129 0.891609 0.253600 -0.910787 0.405418 -0.078124 -0.150384 -0.218634 0.964149 0.279616 0.926014 0.253600 -0.948261 0.307728 -0.078124 -0.126874 -0.233065 0.964149 0.181973 0.950038 0.253600 -0.975084 0.207624 -0.078124 -0.101749 -0.245078 0.964149 0.081400 0.963878 0.253600 -0.991474 0.104285 -0.078124 0.040700 0.971108 -0.235144 0.166450 -0.238640 -0.956737 -0.985210 -0.000201 -0.171354 -0.061303 0.970025 -0.235144 0.190545 -0.219880 -0.956737 -0.979762 -0.103457 -0.171354 -0.161673 0.958420 -0.235144 0.212342 -0.198911 -0.956737 -0.963729 -0.204609 -0.171354 -0.261232 0.936197 -0.235144 0.232019 -0.175561 -0.956737 -0.936976 -0.304488 -0.171354 -0.357913 0.903662 -0.235144 0.249142 -0.150277 -0.956737 -0.899904 -0.401013 -0.171354 -0.449791 0.861624 -0.235144 0.263396 -0.123601 -0.956737 -0.853411 -0.492268 -0.171354 -0.537618 0.809737 -0.235144 0.274900 -0.095314 -0.956737 -0.797118 -0.579000 -0.171354 -0.619523 0.748931 -0.235144 0.283375 -0.065978 -0.956737 -0.732044 -0.659355 -0.171354 -0.694605 0.679876 -0.235144 0.288730 -0.035915 -0.956737 -0.658908 -0.732447 -0.171354 -0.761432 0.604094 -0.235144 0.290898 -0.005747 -0.956737 -0.579310 -0.796893 -0.171354 -0.820551 0.520963 -0.235144 0.289898 0.024773 -0.956737 -0.492600 -0.853220 -0.171354 -0.870633 0.432094 -0.235144 0.285705 0.055020 -0.956737 -0.400463 -0.900148 -0.171354 -0.910786 0.339377 -0.235144 0.278450 0.084382 -0.956737 -0.304853 -0.936858 -0.171354 -0.941339 0.242051 -0.235144 0.268072 0.113101 -0.956737 -0.204984 -0.963649 -0.171354 -0.961523 0.142059 -0.235144 0.254742 0.140574 -0.956737 -0.102858 -0.979826 -0.171354 -0.971083 0.041293 -0.235144 0.238742 0.166304 -0.956737 -0.000401 -0.985209 -0.171354 -0.970063 -0.060711 -0.235144 0.219997 0.190410 -0.956737 0.102858 -0.979826 -0.171354 -0.958357 -0.162046 -0.235144 0.198829 0.212419 -0.956737 0.204984 -0.963649 -0.171354 -0.936096 -0.261596 -0.235144 0.175471 0.232088 -0.956737 0.304853 -0.936858 -0.171354 -0.903881 -0.357361 -0.235144 0.150429 0.249050 -0.956737 0.400463 -0.900148 -0.171354 -0.861449 -0.450126 -0.235144 0.123498 0.263444 -0.956737 0.492600 -0.853220 -0.171354 -0.809528 -0.537933 -0.235144 0.095207 0.274937 -0.956737 0.579310 -0.796893 -0.171354 -0.749310 -0.619066 -0.235144 0.066151 0.283335 -0.956737 0.658908 -0.732447 -0.171354 -0.680300 -0.694189 -0.235144 0.036091 0.288708 -0.956737 0.732044 -0.659355 -0.171354 -0.603797 -0.761667 -0.235144 0.005634 0.290900 -0.956737 0.797118 -0.579000 -0.171354 -0.520644 -0.820754 -0.235144 -0.024886 0.289889 -0.956737 0.853411 -0.492268 -0.171354 -0.432626 -0.870369 -0.235144 -0.054845 0.285739 -0.956737 0.899904 -0.401013 -0.171354 -0.339023 -0.910918 -0.235144 -0.084491 0.278417 -0.956737 0.936976 -0.304488 -0.171354 -0.241685 -0.941433 -0.235144 -0.113206 0.268028 -0.956737 0.963729 -0.204609 -0.171354 -0.142646 -0.961436 -0.235144 -0.140419 0.254828 -0.956737 0.979762 -0.103457 -0.171354 -0.041095 -0.971091 -0.235144 -0.166353 0.238708 -0.956737 0.985210 -0.000201 -0.171354 0.060908 -0.970050 -0.235144 -0.190455 0.219958 -0.956737 0.979805 0.103058 -0.171354 0.162241 -0.958324 -0.235144 -0.212459 0.198786 -0.956737 0.963607 0.205180 -0.171354 0.260851 -0.936304 -0.235144 -0.231948 0.175656 -0.956737 0.937100 0.304106 -0.171354 0.357545 -0.903808 -0.235144 -0.249080 0.150378 -0.956737 0.900067 0.400646 -0.171354 0.450302 -0.861357 -0.235144 -0.263469 0.123445 -0.956737 0.853119 0.492773 -0.171354 0.538098 -0.809418 -0.235144 -0.274956 0.095151 -0.956737 0.796774 0.579472 -0.171354 0.619218 -0.749184 -0.235144 -0.283349 0.066093 -0.956737 0.732313 0.659057 -0.171354 0.694328 -0.680159 -0.235144 -0.288715 0.036032 -0.956737 0.659206 0.732179 -0.171354 0.761790 -0.603642 -0.235144 -0.290901 0.005574 -0.956737 0.578838 0.797236 -0.171354 0.820339 -0.521298 -0.235144 -0.289908 -0.024655 -0.956737 0.492947 0.853019 -0.171354 0.870457 -0.432449 -0.235144 -0.285728 -0.054904 -0.956737 0.400830 0.899985 -0.171354 0.910987 -0.338837 -0.235144 -0.278400 -0.084547 -0.956737 0.304297 0.937038 -0.171354 0.941482 -0.241493 -0.235144 -0.268005 -0.113260 -0.956737 0.204413 0.963770 -0.171354 0.961465 -0.142451 -0.235144 -0.254799 -0.140471 -0.956737 0.103257 0.979784 -0.171354 0.971100 -0.040898 -0.235144 -0.238674 -0.166402 -0.956737 0.000000 0.985210 -0.171354 0.970038 0.061106 -0.235144 -0.219919 -0.190500 -0.956737 -0.103257 0.979784 -0.171354 0.958453 0.161478 -0.235144 -0.198955 -0.212301 -0.956737 -0.204413 0.963770 -0.171354 0.936250 0.261041 -0.235144 -0.175608 -0.231984 -0.956737 -0.304297 0.937038 -0.171354 0.903735 0.357729 -0.235144 -0.150328 -0.249111 -0.956737 -0.400830 0.899985 -0.171354 0.861265 0.450477 -0.235144 -0.123391 -0.263495 -0.956737 -0.492947 0.853019 -0.171354 0.809847 0.537453 -0.235144 -0.095370 -0.274880 -0.956737 -0.578838 0.797236 -0.171354 0.749057 0.619371 -0.235144 -0.066036 -0.283362 -0.956737 -0.659206 0.732179 -0.171354 0.680017 0.694466 -0.235144 -0.035974 -0.288722 -0.956737 -0.732313 0.659057 -0.171354 0.604249 0.761309 -0.235144 -0.005806 -0.290897 -0.956737 -0.796774 0.579472 -0.171354 0.521130 0.820445 -0.235144 0.024714 -0.289903 -0.956737 -0.853119 0.492773 -0.171354 0.432272 0.870545 -0.235144 0.054962 -0.285717 -0.956737 -0.900067 0.400646 -0.171354 0.338652 0.911056 -0.235144 0.084604 -0.278383 -0.956737 -0.937100 0.304106 -0.171354 0.242243 0.941289 -0.235144 0.113047 -0.268095 -0.956737 -0.963607 0.205180 -0.171354 0.142255 0.961494 -0.235144 0.140522 -0.254771 -0.956737 -0.979805 0.103058 -0.171354 -0.522042 0.227673 -0.821971 -0.121911 -0.973738 -0.192283 -0.844162 -0.000172 0.536088 -0.543029 0.171705 -0.821971 -0.019185 -0.981152 -0.192283 -0.839495 -0.088645 0.536088 -0.557920 0.114404 -0.821971 0.082774 -0.977842 -0.192283 -0.825756 -0.175316 0.536088 -0.566838 0.055300 -0.821971 0.184803 -0.963782 -0.192283 -0.802834 -0.260896 0.536088 -0.569512 -0.004413 -0.821971 0.284797 -0.939105 -0.192283 -0.771069 -0.343602 0.536088 -0.565977 -0.063512 -0.821971 0.380749 -0.904465 -0.192283 -0.731232 -0.421792 0.536088 -0.556203 -0.122480 -0.821971 0.473446 -0.859579 -0.192283 -0.682998 -0.496107 0.536088 -0.540303 -0.180100 -0.821971 0.560929 -0.805224 -0.192283 -0.627241 -0.564958 0.536088 -0.518451 -0.235736 -0.821971 0.642233 -0.742000 -0.192283 -0.564575 -0.627586 0.536088 -0.491178 -0.288284 -0.821971 0.715792 -0.671319 -0.192283 -0.496373 -0.682805 0.536088 -0.458259 -0.338175 -0.821971 0.782209 -0.592602 -0.192283 -0.422076 -0.731068 0.536088 -0.420292 -0.384341 -0.821971 0.840010 -0.507357 -0.192283 -0.343131 -0.771279 0.536088 -0.378121 -0.425896 -0.821971 0.888141 -0.417412 -0.192283 -0.261208 -0.802733 0.536088 -0.331402 -0.463180 -0.821971 0.926997 -0.322030 -0.192283 -0.175638 -0.825688 0.536088 -0.281032 -0.495363 -0.821971 0.955643 -0.223100 -0.192283 -0.088132 -0.839549 0.536088 -0.227992 -0.521903 -0.821971 0.973663 -0.122506 -0.192283 -0.000344 -0.844162 0.536088 -0.172037 -0.542924 -0.821971 0.981140 -0.019785 -0.192283 0.088132 -0.839549 0.536088 -0.114187 -0.557965 -0.821971 0.977810 0.083155 -0.192283 0.175638 -0.825688 0.536088 -0.055080 -0.566859 -0.821971 0.963710 0.185178 -0.192283 0.261208 -0.802733 0.536088 0.004065 -0.569514 -0.821971 0.939279 0.284223 -0.192283 0.343131 -0.771279 0.536088 0.063732 -0.565952 -0.821971 0.904317 0.381101 -0.192283 0.422076 -0.731068 0.536088 0.122697 -0.556155 -0.821971 0.859395 0.473781 -0.192283 0.496373 -0.682805 0.536088 0.179770 -0.540413 -0.821971 0.805567 0.560437 -0.192283 0.564575 -0.627586 0.536088 0.235419 -0.518595 -0.821971 0.742392 0.641780 -0.192283 0.627241 -0.564958 0.536088 0.288475 -0.491066 -0.821971 0.671041 0.716053 -0.192283 0.682998 -0.496107 0.536088 0.338353 -0.458127 -0.821971 0.592298 0.782439 -0.192283 0.731232 -0.421792 0.536088 0.384084 -0.420526 -0.821971 0.507870 0.839700 -0.192283 0.771069 -0.343602 0.536088 0.426043 -0.377955 -0.821971 0.417067 0.888303 -0.192283 0.802834 -0.260896 0.536088 0.463309 -0.331222 -0.821971 0.321669 0.927123 -0.192283 0.825756 -0.175316 0.536088 0.495191 -0.281335 -0.821971 0.223684 0.955507 -0.192283 0.839495 -0.088645 0.536088 0.521950 -0.227886 -0.821971 0.122308 0.973688 -0.192283 0.844162 -0.000172 0.536088 0.542959 -0.171926 -0.821971 0.019585 0.981144 -0.192283 0.839531 0.088303 0.536088 0.557988 -0.114074 -0.821971 -0.083354 0.977793 -0.192283 0.825652 0.175806 0.536088 0.566815 -0.055531 -0.821971 -0.184411 0.963857 -0.192283 0.802940 0.260569 0.536088 0.569514 0.004181 -0.821971 -0.284414 0.939221 -0.192283 0.771209 0.343288 0.536088 0.565939 0.063847 -0.821971 -0.381285 0.904240 -0.192283 0.730982 0.422225 0.536088 0.556130 0.122810 -0.821971 -0.473956 0.859298 -0.192283 0.682704 0.496512 0.536088 0.540376 0.179880 -0.821971 -0.560601 0.805453 -0.192283 0.627471 0.564703 0.536088 0.518547 0.235524 -0.821971 -0.641931 0.742262 -0.192283 0.564831 0.627356 0.536088 0.491007 0.288575 -0.821971 -0.716190 0.670895 -0.192283 0.495968 0.683099 0.536088 0.458396 0.337988 -0.821971 -0.781967 0.592920 -0.192283 0.422374 0.730896 0.536088 0.420448 0.384170 -0.821971 -0.839803 0.507699 -0.192283 0.343445 0.771139 0.536088 0.377869 0.426120 -0.821971 -0.888388 0.416886 -0.192283 0.260733 0.802887 0.536088 0.331127 0.463377 -0.821971 -0.927188 0.321480 -0.192283 0.175148 0.825792 0.536088 0.281234 0.495248 -0.821971 -0.955552 0.223489 -0.192283 0.088474 0.839513 0.536088 0.227779 0.521996 -0.821971 -0.973713 0.122110 -0.192283 0.000000 0.844162 0.536088 0.171816 0.542994 -0.821971 -0.981148 0.019385 -0.192283 -0.088474 0.839513 0.536088 0.114518 0.557897 -0.821971 -0.977859 -0.082575 -0.192283 -0.175148 0.825792 0.536088 0.055416 0.566827 -0.821971 -0.963819 -0.184607 -0.192283 -0.260733 0.802887 0.536088 -0.004297 0.569513 -0.821971 -0.939163 -0.284605 -0.192283 -0.343445 0.771139 0.536088 -0.063962 0.565926 -0.821971 -0.904162 -0.381469 -0.192283 -0.422374 0.730896 0.536088 -0.122367 0.556228 -0.821971 -0.859675 -0.473271 -0.192283 -0.495968 0.683099 0.536088 -0.179990 0.540340 -0.821971 -0.805339 -0.560765 -0.192283 -0.564831 0.627356 0.536088 -0.235630 0.518499 -0.821971 -0.742131 -0.642082 -0.192283 -0.627471 0.564703 0.536088 -0.288184 0.491237 -0.821971 -0.671465 -0.715655 -0.192283 -0.682704 0.496512 0.536088 -0.338082 0.458327 -0.821971 -0.592761 -0.782088 -0.192283 -0.730982 0.422225 0.536088 -0.384256 0.420370 -0.821971 -0.507528 -0.839906 -0.192283 -0.771209 0.343288 0.536088 -0.426197 0.377782 -0.821971 -0.416705 -0.888473 -0.192283 -0.802940 0.260569 0.536088 -0.463113 0.331496 -0.821971 -0.322218 -0.926932 -0.192283 -0.825652 0.175806 0.536088 -0.495305 0.281133 -0.821971 -0.223295 -0.955598 -0.192283 -0.839531 0.088303 0.536088 -0.709389 -0.363814 -0.603662 0.277164 -0.931472 0.235670 -0.648034 -0.000132 0.761612 -0.667351 -0.436159 -0.603662 0.373263 -0.897293 0.235670 -0.644451 -0.068050 0.761612 -0.618467 -0.503082 -0.603662 0.464396 -0.853695 0.235670 -0.633904 -0.134584 0.761612 -0.562334 -0.565131 -0.603662 0.551312 -0.800322 0.235670 -0.616308 -0.200281 0.761612 -0.500007 -0.620955 -0.603662 0.632155 -0.738132 0.235670 -0.591923 -0.263771 0.761612 -0.432843 -0.669507 -0.603662 0.705367 -0.668518 0.235670 -0.561342 -0.323795 0.761612 -0.360290 -0.711185 -0.603662 0.771548 -0.590909 0.235670 -0.524314 -0.380844 0.761612 -0.283768 -0.745029 -0.603662 0.829230 -0.506791 0.235670 -0.481511 -0.433699 0.761612 -0.204121 -0.770667 -0.603662 0.877778 -0.417091 0.235670 -0.433405 -0.481776 0.761612 -0.123013 -0.787693 -0.603662 0.916335 -0.323713 0.235670 -0.381048 -0.524166 0.761612 -0.039780 -0.796247 -0.603662 0.945216 -0.225891 0.235670 -0.324013 -0.561216 0.761612 0.043892 -0.796031 -0.603662 0.963685 -0.125582 0.235670 -0.263410 -0.592084 0.761612 0.126293 -0.787174 -0.603662 0.971515 -0.024861 0.235670 -0.200521 -0.616230 0.761612 0.208099 -0.769602 -0.603662 0.968770 0.077098 0.235670 -0.134831 -0.633852 0.761612 0.287612 -0.743553 -0.603662 0.955354 0.178207 0.235670 -0.067656 -0.644492 0.761612 0.363380 -0.709611 -0.603662 0.931641 0.276595 0.235670 -0.000264 -0.648034 0.761612 0.435751 -0.667618 -0.603662 0.897521 0.372714 0.235670 0.067656 -0.644492 0.761612 0.503322 -0.618271 -0.603662 0.853515 0.464728 0.235670 0.134831 -0.633852 0.761612 0.565350 -0.562114 -0.603662 0.800107 0.551623 0.235670 0.200521 -0.616230 0.761612 0.620649 -0.500387 -0.603662 0.738519 0.631704 0.235670 0.263410 -0.592084 0.761612 0.669675 -0.432582 -0.603662 0.668244 0.705627 0.235670 0.324013 -0.561216 0.761612 0.711325 -0.360013 -0.603662 0.590609 0.771778 0.235670 0.381048 -0.524166 0.761612 0.744855 -0.284223 -0.603662 0.507298 0.828920 0.235670 0.433405 -0.481776 0.761612 0.770542 -0.204592 -0.603662 0.417627 0.877523 0.235670 0.481511 -0.433699 0.761612 0.787741 -0.122707 -0.603662 0.323356 0.916461 0.235670 0.524314 -0.380844 0.761612 0.796263 -0.039470 -0.603662 0.225524 0.945304 0.235670 0.561342 -0.323795 0.761612 0.796058 0.043405 -0.603662 0.126171 0.963608 0.235670 0.591923 -0.263771 0.761612 0.787125 0.126599 -0.603662 0.024483 0.971525 0.235670 0.616308 -0.200281 0.761612 0.769521 0.208398 -0.603662 -0.077475 0.968740 0.235670 0.633904 -0.134584 0.761612 0.743729 0.287158 -0.603662 -0.177624 0.955463 0.235670 0.644451 -0.068050 0.761612 0.709537 0.363525 -0.603662 -0.276785 0.931585 0.235670 0.648034 -0.000132 0.761612 0.667529 0.435887 -0.603662 -0.372897 0.897445 0.235670 0.644479 0.067787 0.761612 0.618169 0.503448 -0.603662 -0.464902 0.853420 0.235670 0.633825 0.134960 0.761612 0.562564 0.564902 -0.603662 -0.550986 0.800546 0.235670 0.616389 0.200030 0.761612 0.500260 0.620751 -0.603662 -0.631854 0.738390 0.235670 0.592030 0.263530 0.761612 0.432446 0.669763 -0.603662 -0.705763 0.668100 0.235670 0.561150 0.324128 0.761612 0.359868 0.711398 -0.603662 -0.771898 0.590452 0.235670 0.524088 0.381155 0.761612 0.284072 0.744913 -0.603662 -0.829024 0.507129 0.235670 0.481688 0.433503 0.761612 0.204435 0.770583 -0.603662 -0.877609 0.417448 0.235670 0.433601 0.481600 0.761612 0.122546 0.787766 -0.603662 -0.916527 0.323169 0.235670 0.380738 0.524392 0.761612 0.040104 0.796231 -0.603662 -0.945124 0.226276 0.235670 0.324242 0.561084 0.761612 -0.043567 0.796049 -0.603662 -0.963634 0.125974 0.235670 0.263651 0.591976 0.761612 -0.126759 0.787099 -0.603662 -0.971530 0.024285 0.235670 0.200155 0.616349 0.761612 -0.208555 0.769479 -0.603662 -0.968724 -0.077672 0.235670 0.134455 0.633932 0.761612 -0.287309 0.743670 -0.603662 -0.955427 -0.177818 0.235670 0.067919 0.644465 0.761612 -0.363669 0.709463 -0.603662 -0.931528 -0.276975 0.235670 0.000000 0.648034 0.761612 -0.436023 0.667440 -0.603662 -0.897369 -0.373080 0.235670 -0.067919 0.644465 0.761612 -0.502956 0.618569 -0.603662 -0.853790 -0.464222 0.235670 -0.134455 0.633932 0.761612 -0.565016 0.562449 -0.603662 -0.800434 -0.551149 0.235670 -0.200155 0.616349 0.761612 -0.620853 0.500134 -0.603662 -0.738261 -0.632005 0.235670 -0.263651 0.591976 0.761612 -0.669851 0.432309 -0.603662 -0.667957 -0.705899 0.235670 -0.324242 0.561084 0.761612 -0.711111 0.360435 -0.603662 -0.591066 -0.771427 0.235670 -0.380738 0.524392 0.761612 -0.744971 0.283920 -0.603662 -0.506960 -0.829127 0.235670 -0.433601 0.481600 0.761612 -0.770625 0.204278 -0.603662 -0.417269 -0.877694 0.235670 -0.481688 0.433503 0.761612 -0.787668 0.123174 -0.603662 -0.323899 -0.916269 0.235670 -0.524088 0.381155 0.761612 -0.796239 0.039942 -0.603662 -0.226084 -0.945170 0.235670 -0.561150 0.324128 0.761612 -0.796040 -0.043730 -0.603662 -0.125778 -0.963659 0.235670 -0.592030 0.263530 0.761612 -0.787073 -0.126919 -0.603662 -0.024087 -0.971535 0.235670 -0.616389 0.200030 0.761612 -0.769644 -0.207942 -0.603662 0.076901 -0.968786 0.235670 -0.633825 0.134960 0.761612 -0.743612 -0.287461 -0.603662 0.178013 -0.955391 0.235670 -0.644479 0.067787 0.761612 0.073118 0.994919 -0.069213 0.723494 -0.100681 -0.682949 -0.686448 -0.000140 -0.727179 -0.031560 0.997103 -0.069213 0.730061 -0.024299 -0.682949 -0.682652 -0.072084 -0.727179 -0.134901 0.988439 -0.069213 0.728639 0.051622 -0.682949 -0.671481 -0.142562 -0.727179 -0.237753 0.968856 -0.069213 0.719216 0.127704 -0.682949 -0.652841 -0.212153 -0.727179 -0.337987 0.938602 -0.069213 0.701871 0.202380 -0.682949 -0.627010 -0.279407 -0.727179 -0.433600 0.898443 -0.069213 0.677069 0.274149 -0.682949 -0.594617 -0.342989 -0.727179 -0.525375 0.848051 -0.069213 0.644607 0.343601 -0.682949 -0.555394 -0.403420 -0.727179 -0.611363 0.788317 -0.069213 0.605045 0.409268 -0.682949 -0.510054 -0.459407 -0.727179 -0.690618 0.719901 -0.069213 0.558819 0.470427 -0.682949 -0.459096 -0.510335 -0.727179 -0.761621 0.644316 -0.069213 0.506963 0.525898 -0.682949 -0.403636 -0.555237 -0.727179 -0.824955 0.560944 -0.069213 0.449053 0.576135 -0.682949 -0.343220 -0.594483 -0.727179 -0.879203 0.471393 -0.069213 0.386197 0.620026 -0.682949 -0.279024 -0.627181 -0.727179 -0.923389 0.377574 -0.069213 0.319744 0.656768 -0.682949 -0.212407 -0.652759 -0.727179 -0.957876 0.278717 -0.069213 0.249149 0.686662 -0.682949 -0.142823 -0.671425 -0.727179 -0.981812 0.176790 -0.069213 0.175810 0.708993 -0.682949 -0.071667 -0.682696 -0.727179 -0.994874 0.073726 -0.069213 0.101123 0.723432 -0.682949 -0.000280 -0.686448 -0.727179 -0.997122 -0.030950 -0.069213 0.024745 0.730046 -0.682949 0.071667 -0.682696 -0.727179 -0.988386 -0.135286 -0.069213 -0.051905 0.728619 -0.682949 0.142823 -0.671425 -0.727179 -0.968764 -0.238130 -0.069213 -0.127984 0.719166 -0.682949 0.212407 -0.652759 -0.727179 -0.938809 -0.337414 -0.069213 -0.201951 0.701994 -0.682949 0.279024 -0.627181 -0.727179 -0.898275 -0.433949 -0.069213 -0.274413 0.676962 -0.682949 0.343220 -0.594483 -0.727179 -0.847847 -0.525705 -0.069213 -0.343852 0.644473 -0.682949 0.403636 -0.555237 -0.727179 -0.788691 -0.610882 -0.069213 -0.408898 0.605295 -0.682949 0.459096 -0.510335 -0.727179 -0.720322 -0.690178 -0.069213 -0.470086 0.559106 -0.682949 0.510054 -0.459407 -0.727179 -0.644020 -0.761872 -0.069213 -0.526095 0.506758 -0.682949 0.555394 -0.403420 -0.727179 -0.560623 -0.825173 -0.069213 -0.576309 0.448829 -0.682949 0.594617 -0.342989 -0.727179 -0.471931 -0.878915 -0.069213 -0.619790 0.386576 -0.682949 0.627010 -0.279407 -0.727179 -0.377215 -0.923536 -0.069213 -0.656892 0.319488 -0.682949 0.652841 -0.212153 -0.727179 -0.278344 -0.957984 -0.069213 -0.686759 0.248882 -0.682949 0.671481 -0.142562 -0.727179 -0.177389 -0.981704 -0.069213 -0.708885 0.176243 -0.682949 0.682652 -0.072084 -0.727179 -0.073523 -0.994889 -0.069213 -0.723453 0.100976 -0.682949 0.686448 -0.000140 -0.727179 0.031154 -0.997115 -0.069213 -0.730051 0.024597 -0.682949 0.682682 0.071806 -0.727179 0.135487 -0.988359 -0.069213 -0.728609 -0.052054 -0.682949 0.671396 0.142960 -0.727179 0.237359 -0.968953 -0.069213 -0.719268 -0.127411 -0.682949 0.652927 0.211887 -0.727179 0.337605 -0.938740 -0.069213 -0.701953 -0.202094 -0.682949 0.627124 0.279152 -0.727179 0.434132 -0.898186 -0.069213 -0.676906 -0.274550 -0.682949 0.594413 0.343341 -0.727179 0.525878 -0.847740 -0.069213 -0.644403 -0.343983 -0.682949 0.555155 0.403749 -0.727179 0.611042 -0.788566 -0.069213 -0.605212 -0.409022 -0.682949 0.510241 0.459200 -0.727179 0.690324 -0.720182 -0.069213 -0.559010 -0.470200 -0.682949 0.459304 0.510148 -0.727179 0.762003 -0.643865 -0.069213 -0.506651 -0.526198 -0.682949 0.403307 0.555476 -0.727179 0.824727 -0.561280 -0.069213 -0.449288 -0.575952 -0.682949 0.343462 0.594343 -0.727179 0.879011 -0.471752 -0.069213 -0.386449 -0.619868 -0.682949 0.279279 0.627067 -0.727179 0.923613 -0.377027 -0.069213 -0.319354 -0.656957 -0.682949 0.212020 0.652884 -0.727179 0.958041 -0.278149 -0.069213 -0.248742 -0.686810 -0.682949 0.142425 0.671510 -0.727179 0.981740 -0.177190 -0.069213 -0.176098 -0.708921 -0.682949 0.071945 0.682667 -0.727179 0.994904 -0.073320 -0.069213 -0.100828 -0.723473 -0.682949 0.000000 0.686448 -0.727179 0.997109 0.031357 -0.069213 -0.024448 -0.730056 -0.682949 -0.071945 0.682667 -0.727179 0.988466 0.134700 -0.069213 0.051473 -0.728650 -0.682949 -0.142425 0.671510 -0.727179 0.968905 0.237556 -0.069213 0.127558 -0.719242 -0.682949 -0.212020 0.652884 -0.727179 0.938671 0.337796 -0.069213 0.202237 -0.701912 -0.682949 -0.279279 0.627067 -0.727179 0.898098 0.434315 -0.069213 0.274688 -0.676850 -0.682949 -0.343462 0.594343 -0.727179 0.848158 0.525202 -0.069213 0.343470 -0.644677 -0.682949 -0.403307 0.555476 -0.727179 0.788442 0.611203 -0.069213 0.409145 -0.605129 -0.682949 -0.459304 0.510148 -0.727179 0.720041 0.690471 -0.069213 0.470313 -0.558914 -0.682949 -0.510241 0.459200 -0.727179 0.644471 0.761490 -0.069213 0.525795 -0.507070 -0.682949 -0.555155 0.403749 -0.727179 0.561112 0.824841 -0.069213 0.576043 -0.449170 -0.682949 -0.594413 0.343341 -0.727179 0.471573 0.879107 -0.069213 0.619947 -0.386323 -0.682949 -0.627124 0.279152 -0.727179 0.376839 0.923689 -0.069213 0.657022 -0.319221 -0.682949 -0.652927 0.211887 -0.727179 0.278912 0.957819 -0.069213 0.686611 -0.249289 -0.682949 -0.671396 0.142960 -0.727179 0.176990 0.981776 -0.069213 0.708957 -0.175954 -0.682949 -0.682682 0.071806 -0.727179 -0.353923 0.660662 -0.662015 -0.311270 -0.750683 -0.582740 -0.881958 -0.000180 0.471328 -0.421216 0.619930 -0.662015 -0.230879 -0.779172 -0.582740 -0.877082 -0.092614 0.471328 -0.483297 0.572853 -0.662015 -0.148743 -0.798931 -0.582740 -0.862728 -0.183166 0.471328 -0.540674 0.519045 -0.662015 -0.064190 -0.810120 -0.582740 -0.838780 -0.272577 0.471328 -0.592096 0.459520 -0.662015 0.021070 -0.812386 -0.582740 -0.805592 -0.358986 0.471328 -0.636601 0.395570 -0.662015 0.105292 -0.805809 -0.582740 -0.763972 -0.440677 0.471328 -0.674553 0.326671 -0.662015 0.189166 -0.790336 -0.582740 -0.713578 -0.518320 0.471328 -0.705076 0.254174 -0.662015 0.270957 -0.766157 -0.582740 -0.655325 -0.590253 0.471328 -0.727832 0.178877 -0.662015 0.349764 -0.733539 -0.582740 -0.589853 -0.655685 0.471328 -0.742469 0.102352 -0.662015 0.424025 -0.693266 -0.582740 -0.518597 -0.713377 0.471328 -0.749107 0.023973 -0.662015 0.494349 -0.645007 -0.582740 -0.440974 -0.763801 0.471328 -0.747494 -0.054671 -0.662015 0.559227 -0.589643 -0.582740 -0.358494 -0.805811 0.471328 -0.737779 -0.131975 -0.662015 0.617418 -0.528403 -0.582740 -0.272904 -0.838674 0.471328 -0.719884 -0.208573 -0.662015 0.669398 -0.460783 -0.582740 -0.183502 -0.862657 0.471328 -0.694060 -0.282873 -0.662015 0.714005 -0.388087 -0.582740 -0.092078 -0.877138 0.471328 -0.660878 -0.353519 -0.662015 0.750493 -0.311728 -0.582740 -0.000359 -0.881958 0.471328 -0.620187 -0.420837 -0.662015 0.779031 -0.231355 -0.582740 0.092078 -0.877138 0.471328 -0.572665 -0.483519 -0.662015 0.798988 -0.148432 -0.582740 0.183502 -0.862657 0.471328 -0.518834 -0.540876 -0.662015 0.810145 -0.063875 -0.582740 0.272904 -0.838674 0.471328 -0.459881 -0.591815 -0.662015 0.812398 0.020573 -0.582740 0.358494 -0.805811 0.471328 -0.395322 -0.636754 -0.662015 0.805768 0.105605 -0.582740 0.440974 -0.763801 0.471328 -0.326409 -0.674680 -0.662015 0.790262 0.189474 -0.582740 0.518597 -0.713377 0.471328 -0.254605 -0.704920 -0.662015 0.766322 0.270489 -0.582740 0.589853 -0.655685 0.471328 -0.179322 -0.727722 -0.662015 0.733753 0.349316 -0.582740 0.655325 -0.590253 0.471328 -0.102063 -0.742509 -0.662015 0.693101 0.424294 -0.582740 0.713578 -0.518320 0.471328 -0.023681 -0.749116 -0.662015 0.644815 0.494599 -0.582740 0.763972 -0.440677 0.471328 0.054214 -0.747527 -0.662015 0.589985 0.558867 -0.582740 0.805592 -0.358986 0.471328 0.132262 -0.737728 -0.662015 0.528162 0.617624 -0.582740 0.838780 -0.272577 0.471328 0.208853 -0.719803 -0.662015 0.460522 0.669577 -0.582740 0.862728 -0.183166 0.471328 0.282449 -0.694232 -0.662015 0.388523 0.713768 -0.582740 0.877082 -0.092614 0.471328 0.353654 -0.660806 -0.662015 0.311576 0.750557 -0.582740 0.881958 -0.000180 0.471328 0.420963 -0.620101 -0.662015 0.231196 0.779078 -0.582740 0.877119 0.092257 0.471328 0.483636 -0.572566 -0.662015 0.148270 0.799019 -0.582740 0.862619 0.183677 0.471328 0.540462 -0.519265 -0.662015 0.064520 0.810094 -0.582740 0.838891 0.272236 0.471328 0.591909 -0.459761 -0.662015 -0.020739 0.812394 -0.582740 0.805738 0.358658 0.471328 0.636835 -0.395193 -0.662015 -0.105769 0.805746 -0.582740 0.763711 0.441130 0.471328 0.674747 -0.326271 -0.662015 -0.189635 0.790224 -0.582740 0.713271 0.518743 0.471328 0.704972 -0.254461 -0.662015 -0.270645 0.766267 -0.582740 0.655565 0.589986 0.471328 0.727759 -0.179173 -0.662015 -0.349465 0.733682 -0.582740 0.590120 0.655445 0.471328 0.742529 -0.101912 -0.662015 -0.424435 0.693015 -0.582740 0.518175 0.713684 0.471328 0.749097 -0.024278 -0.662015 -0.494086 0.645208 -0.582740 0.441285 0.763621 0.471328 0.747516 0.054367 -0.662015 -0.558987 0.589871 -0.582740 0.358822 0.805665 0.471328 0.737701 0.132412 -0.662015 -0.617731 0.528037 -0.582740 0.272406 0.838835 0.471328 0.719760 0.208999 -0.662015 -0.669671 0.460386 -0.582740 0.182990 0.862765 0.471328 0.694175 0.282590 -0.662015 -0.713847 0.388378 -0.582740 0.092436 0.877101 0.471328 0.660734 0.353788 -0.662015 -0.750620 0.311423 -0.582740 0.000000 0.881958 0.471328 0.620016 0.421090 -0.662015 -0.779125 0.231037 -0.582740 -0.092436 0.877101 0.471328 0.572951 0.483180 -0.662015 -0.798900 0.148906 -0.582740 -0.182990 0.862765 0.471328 0.519155 0.540568 -0.662015 -0.810107 0.064355 -0.582740 -0.272406 0.838835 0.471328 0.459640 0.592002 -0.662015 -0.812390 -0.020904 -0.582740 -0.358822 0.805665 0.471328 0.395063 0.636915 -0.662015 -0.805725 -0.105933 -0.582740 -0.441285 0.763621 0.471328 0.326808 0.674487 -0.662015 -0.790374 -0.189005 -0.582740 -0.518175 0.713684 0.471328 0.254317 0.705024 -0.662015 -0.766212 -0.270801 -0.582740 -0.590120 0.655445 0.471328 0.179025 0.727795 -0.662015 -0.733610 -0.349614 -0.582740 -0.655565 0.589986 0.471328 0.102504 0.742448 -0.662015 -0.693352 -0.423883 -0.582740 -0.713271 0.518743 0.471328 0.024125 0.749102 -0.662015 -0.645108 -0.494217 -0.582740 -0.763711 0.441130 0.471328 -0.054519 0.747505 -0.662015 -0.589757 -0.559107 -0.582740 -0.805738 0.358658 0.471328 -0.132562 0.737674 -0.662015 -0.527911 -0.617839 -0.582740 -0.838891 0.272236 0.471328 -0.208426 0.719927 -0.662015 -0.460919 -0.669304 -0.582740 -0.862619 0.183677 0.471328 -0.282732 0.694117 -0.662015 -0.388233 -0.713926 -0.582740 -0.877119 0.092257 0.471328 0.670953 -0.589980 0.449160 0.490188 0.807418 0.328318 -0.556361 -0.000113 0.830941 0.729092 -0.516410 0.449160 0.402865 0.854346 0.328318 -0.553285 -0.058423 0.830941 0.778763 -0.437931 0.449160 0.311996 0.891552 0.328318 -0.544230 -0.115546 0.830941 0.820372 -0.353899 0.449160 0.216837 0.919342 0.328318 -0.529123 -0.171948 0.830941 0.852945 -0.265969 0.449160 0.119289 0.937005 0.328318 -0.508188 -0.226457 0.830941 0.875948 -0.175986 0.449160 0.021371 0.944325 0.328318 -0.481933 -0.277990 0.830941 0.889568 -0.083211 0.449160 -0.077718 0.941365 0.328318 -0.450143 -0.326969 0.830941 0.893390 0.010480 0.449160 -0.175952 0.928035 0.328318 -0.413395 -0.372347 0.830941 0.887371 0.104056 0.449160 -0.272247 0.904482 0.328318 -0.372094 -0.413623 0.830941 0.871774 0.195615 0.449160 -0.364673 0.871333 0.328318 -0.327144 -0.450016 0.830941 0.846471 0.285905 0.449160 -0.453987 0.828314 0.328318 -0.278178 -0.481824 0.830941 0.811844 0.373047 0.449160 -0.538300 0.776171 0.328318 -0.226147 -0.508326 0.830941 0.768731 0.455311 0.449160 -0.615967 0.716095 0.328318 -0.172154 -0.529056 0.830941 0.716777 0.533372 0.449160 -0.687627 0.647593 0.328318 -0.115757 -0.544185 0.830941 0.656928 0.605558 0.449160 -0.751712 0.571958 0.328318 -0.058085 -0.553321 0.830941 0.590390 0.670593 0.449160 -0.807118 0.490681 0.328318 -0.000227 -0.556361 0.830941 0.516856 0.728777 0.449160 -0.854100 0.403387 0.328318 0.058085 -0.553321 0.830941 0.437628 0.778933 0.449160 -0.891674 0.311649 0.328318 0.115757 -0.544185 0.830941 0.353580 0.820510 0.449160 -0.919426 0.216479 0.328318 0.172154 -0.529056 0.830941 0.266490 0.852783 0.449160 -0.936931 0.119862 0.328318 0.226147 -0.508326 0.830941 0.175645 0.876016 0.449160 -0.944334 0.021004 0.328318 0.278178 -0.481824 0.830941 0.082865 0.889600 0.449160 -0.941334 -0.078084 0.328318 0.327144 -0.450016 0.830941 -0.009935 0.893396 0.449160 -0.928142 -0.175385 0.328318 0.372094 -0.413623 0.830941 -0.103514 0.887434 0.449160 -0.904649 -0.271695 0.328318 0.413395 -0.372347 0.830941 -0.195954 0.871698 0.449160 -0.871191 -0.365012 0.328318 0.450143 -0.326969 0.830941 -0.286235 0.846360 0.449160 -0.828137 -0.454309 0.328318 0.481933 -0.277990 0.830941 -0.372551 0.812072 0.449160 -0.776499 -0.537825 0.328318 0.508188 -0.226457 0.830941 -0.455610 0.768554 0.449160 -0.715855 -0.616246 0.328318 0.529123 -0.171948 0.830941 -0.533651 0.716570 0.449160 -0.647325 -0.687879 0.328318 0.544230 -0.115546 0.830941 -0.605156 0.657298 0.449160 -0.572417 -0.751363 0.328318 0.553285 -0.058423 0.830941 -0.670713 0.590253 0.449160 -0.490517 -0.807218 0.328318 0.556361 -0.000113 0.830941 -0.728882 0.516707 0.449160 -0.403213 -0.854182 0.328318 0.553309 0.058198 0.830941 -0.779022 0.437469 0.449160 -0.311468 -0.891737 0.328318 0.544162 0.115868 0.830941 -0.820228 0.354233 0.449160 -0.217211 -0.919253 0.328318 0.529193 0.171733 0.830941 -0.852837 0.266317 0.449160 -0.119671 -0.936956 0.328318 0.508280 0.226250 0.830941 -0.876052 0.175467 0.449160 -0.020812 -0.944338 0.328318 0.481768 0.278276 0.830941 -0.889617 0.082684 0.449160 0.078276 -0.941318 0.328318 0.449949 0.327236 0.830941 -0.893394 -0.010117 0.449160 0.175574 -0.928106 0.328318 0.413547 0.372178 0.830941 -0.887413 -0.103695 0.449160 0.271879 -0.904593 0.328318 0.372262 0.413471 0.830941 -0.871658 -0.196131 0.449160 0.365190 -0.871116 0.328318 0.326877 0.450210 0.830941 -0.846587 -0.285561 0.449160 0.453649 -0.828498 0.328318 0.278374 0.481711 0.830941 -0.811996 -0.372716 0.449160 0.537983 -0.776390 0.328318 0.226354 0.508234 0.830941 -0.768461 -0.455767 0.449160 0.616392 -0.715729 0.328318 0.171841 0.529158 0.830941 -0.716461 -0.533797 0.449160 0.688011 -0.647185 0.328318 0.115435 0.544254 0.830941 -0.657175 -0.605290 0.449160 0.751479 -0.572264 0.328318 0.058311 0.553297 0.830941 -0.590117 -0.670833 0.449160 0.807318 -0.490352 0.328318 0.000000 0.556361 0.830941 -0.516559 -0.728987 0.449160 0.854264 -0.403039 0.328318 -0.058311 0.553297 0.830941 -0.438090 -0.778674 0.449160 0.891489 -0.312178 0.328318 -0.115435 0.544254 0.830941 -0.354066 -0.820300 0.449160 0.919297 -0.217024 0.328318 -0.171841 0.529158 0.830941 -0.266143 -0.852891 0.449160 0.936980 -0.119480 0.328318 -0.226354 0.508234 0.830941 -0.175288 -0.876087 0.449160 0.944342 -0.020620 0.328318 -0.278374 0.481711 0.830941 -0.083392 -0.889551 0.449160 0.941380 0.077527 0.328318 -0.326877 0.450210 0.830941 0.010299 -0.893392 0.449160 0.928070 0.175763 0.328318 -0.372262 0.413471 0.830941 0.103876 -0.887392 0.449160 0.904538 0.272063 0.328318 -0.413547 0.372178 0.830941 0.195437 -0.871814 0.449160 0.871407 0.364496 0.328318 -0.449949 0.327236 0.830941 0.285733 -0.846529 0.449160 0.828406 0.453818 0.328318 -0.481768 0.278276 0.830941 0.372882 -0.811920 0.449160 0.776280 0.538142 0.328318 -0.508280 0.226250 0.830941 0.455923 -0.768368 0.449160 0.715604 0.616538 0.328318 -0.529193 0.171733 0.830941 0.533226 -0.716886 0.449160 0.647733 0.687495 0.328318 -0.544162 0.115868 0.830941 0.605424 -0.657052 0.449160 0.572111 0.751596 0.328318 -0.553309 0.058198 0.830941 -0.310184 -0.711263 0.630786 -0.314096 0.702926 0.638153 -0.897290 -0.000183 -0.441441 -0.233930 -0.739855 0.630786 -0.386038 0.666135 0.638153 -0.892329 -0.094224 -0.441441 -0.155859 -0.760143 0.630786 -0.453105 0.622460 0.638153 -0.877726 -0.186350 -0.441441 -0.075333 -0.772291 0.630786 -0.515848 0.571543 0.638153 -0.853362 -0.277316 -0.441441 0.006024 -0.775934 0.630786 -0.572909 0.514331 0.638153 -0.819597 -0.365227 -0.441441 0.086543 -0.771116 0.630786 -0.623207 0.452077 0.638153 -0.777253 -0.448338 -0.441441 0.166885 -0.757798 0.630786 -0.667156 0.384271 0.638153 -0.725984 -0.527331 -0.441441 0.245388 -0.736134 0.630786 -0.703756 0.312232 0.638153 -0.666717 -0.600515 -0.441441 0.321189 -0.706362 0.630786 -0.732604 0.236753 0.638153 -0.600107 -0.667084 -0.441441 0.392783 -0.669201 0.630786 -0.753224 0.159420 0.638153 -0.527613 -0.725779 -0.441441 0.460757 -0.624349 0.630786 -0.765784 0.079599 0.638153 -0.448640 -0.777079 -0.441441 0.523656 -0.572620 0.630786 -0.769909 -0.001099 0.638153 -0.364726 -0.819820 -0.441441 0.580271 -0.515164 0.630786 -0.765635 -0.081019 0.638153 -0.277648 -0.853254 -0.441441 0.631068 -0.451510 0.630786 -0.752927 -0.160817 0.638153 -0.186692 -0.877654 -0.441441 0.674914 -0.382883 0.630786 -0.731925 -0.238843 0.638153 -0.093679 -0.892387 -0.441441 0.711074 -0.310618 0.630786 -0.703118 -0.313666 0.638153 -0.000365 -0.897290 -0.441441 0.739712 -0.234382 0.630786 -0.666371 -0.385631 0.638153 0.093679 -0.892387 -0.441441 0.760203 -0.155564 0.630786 -0.622284 -0.453347 0.638153 0.186692 -0.877654 -0.441441 0.772321 -0.075032 0.630786 -0.571343 -0.516070 0.638153 0.277648 -0.853254 -0.441441 0.775937 0.005550 0.630786 -0.514681 -0.572594 0.638153 0.364726 -0.819820 -0.441441 0.771082 0.086843 0.630786 -0.451834 -0.623383 0.638153 0.448640 -0.777079 -0.441441 0.757734 0.167180 0.630786 -0.384011 -0.667305 0.638153 0.527613 -0.725779 -0.441441 0.736284 0.244939 0.630786 -0.312661 -0.703565 0.638153 0.600107 -0.667084 -0.441441 0.706558 0.320758 0.630786 -0.237201 -0.732459 0.638153 0.666717 -0.600515 -0.441441 0.669049 0.393043 0.630786 -0.159127 -0.753286 0.638153 0.725984 -0.527331 -0.441441 0.624170 0.461000 0.630786 -0.079301 -0.765815 0.638153 0.777253 -0.448338 -0.441441 0.572940 0.523306 0.630786 0.000628 -0.769909 0.638153 0.819597 -0.365227 -0.441441 0.514938 0.580472 0.630786 0.081317 -0.765603 0.638153 0.853362 -0.277316 -0.441441 0.451265 0.631244 0.630786 0.161110 -0.752864 0.638153 0.877726 -0.186350 -0.441441 0.383296 0.674680 0.630786 0.238396 -0.732071 0.638153 0.892329 -0.094224 -0.441441 0.310473 0.711137 0.630786 0.313810 -0.703054 0.638153 0.897290 -0.000183 -0.441441 0.234231 0.739760 0.630786 0.385766 -0.666292 0.638153 0.892368 0.093861 -0.441441 0.155409 0.760235 0.630786 0.453474 -0.622192 0.638153 0.877616 0.186870 -0.441441 0.075647 0.772261 0.630786 0.515615 -0.571753 0.638153 0.853474 0.276968 -0.441441 -0.005708 0.775936 0.630786 0.572699 -0.514564 0.638153 0.819746 0.364893 -0.441441 -0.087000 0.771064 0.630786 0.623475 -0.451708 0.638153 0.776988 0.448799 -0.441441 -0.167334 0.757699 0.630786 0.667384 -0.383875 0.638153 0.725671 0.527761 -0.441441 -0.245089 0.736234 0.630786 0.703629 -0.312518 0.638153 0.666962 0.600243 -0.441441 -0.320901 0.706492 0.630786 0.732508 -0.237052 0.638153 0.600379 0.666840 -0.441441 -0.393179 0.668969 0.630786 0.753318 -0.158974 0.638153 0.527183 0.726091 -0.441441 -0.460503 0.624537 0.630786 0.765751 -0.079911 0.638153 0.448957 0.776896 -0.441441 -0.523422 0.572833 0.630786 0.769909 0.000785 0.638153 0.365060 0.819671 -0.441441 -0.580577 0.514820 0.630786 0.765587 0.081473 0.638153 0.277142 0.853418 -0.441441 -0.631336 0.451136 0.630786 0.752831 0.161263 0.638153 0.186171 0.877764 -0.441441 -0.674758 0.383158 0.630786 0.732023 0.238545 0.638153 0.094042 0.892349 -0.441441 -0.711200 0.310328 0.630786 0.702990 0.313953 0.638153 0.000000 0.897290 -0.441441 -0.739808 0.234080 0.630786 0.666214 0.385902 0.638153 -0.094042 0.892349 -0.441441 -0.760111 0.156014 0.630786 0.622552 0.452978 0.638153 -0.186171 0.877764 -0.441441 -0.772276 0.075490 0.630786 0.571648 0.515732 0.638153 -0.277142 0.853418 -0.441441 -0.775935 -0.005866 0.630786 0.514448 0.572804 0.638153 -0.365060 0.819671 -0.441441 -0.771047 -0.087157 0.630786 0.451581 0.623567 0.638153 -0.448957 0.776896 -0.441441 -0.757832 -0.166731 0.630786 0.384406 0.667078 0.638153 -0.527183 0.726091 -0.441441 -0.736184 -0.245239 0.630786 0.312375 0.703692 0.638153 -0.600379 0.666840 -0.441441 -0.706427 -0.321045 0.630786 0.236902 0.732556 0.638153 -0.666962 0.600243 -0.441441 -0.669281 -0.392647 0.630786 0.159574 0.753191 0.638153 -0.725671 0.527761 -0.441441 -0.624443 -0.460630 0.630786 0.079755 0.765768 0.638153 -0.776988 0.448799 -0.441441 -0.572727 -0.523539 0.630786 -0.000942 0.769909 0.638153 -0.819746 0.364893 -0.441441 -0.514702 -0.580681 0.630786 -0.081629 0.765570 0.638153 -0.853474 0.276968 -0.441441 -0.451639 -0.630976 0.630786 -0.160664 0.752960 0.638153 -0.877616 0.186870 -0.441441 -0.383021 -0.674836 0.630786 -0.238694 0.731974 0.638153 -0.892368 0.093861 -0.441441 0.107077 -0.904050 0.413796 0.226033 0.427426 0.875338 -0.968217 -0.000197 0.250112 0.201238 -0.887849 0.413796 0.179990 0.448762 0.875338 -0.962864 -0.101672 0.250112 0.292321 -0.862161 0.413796 0.132431 0.465022 0.875338 -0.947106 -0.201080 0.250112 0.381072 -0.826775 0.413796 0.082964 0.476341 0.875338 -0.920816 -0.299236 0.250112 0.465625 -0.782283 0.413796 0.032583 0.482413 0.875338 -0.884382 -0.394096 0.250112 0.544320 -0.729718 0.413796 -0.017674 0.483189 0.875338 -0.838692 -0.483777 0.250112 0.617802 -0.668651 0.413796 -0.068218 0.478675 0.875338 -0.783369 -0.569013 0.250112 0.684479 -0.600218 0.413796 -0.118011 0.468889 0.875338 -0.719418 -0.647982 0.250112 0.743616 -0.525174 0.413796 -0.166504 0.453938 0.875338 -0.647543 -0.719814 0.250112 0.794118 -0.445140 0.413796 -0.212729 0.434201 0.875338 -0.569318 -0.783148 0.250112 0.836398 -0.359459 0.413796 -0.257064 0.409514 0.875338 -0.484103 -0.838503 0.250112 0.869466 -0.269819 0.413796 -0.298569 0.380316 0.875338 -0.393556 -0.884623 0.250112 0.892778 -0.178099 0.413796 -0.336437 0.347266 0.875338 -0.299595 -0.920699 0.250112 0.906528 -0.083549 0.413796 -0.370980 0.310093 0.875338 -0.201449 -0.947028 0.250112 0.910291 0.011922 0.413796 -0.401437 0.269503 0.875338 -0.101084 -0.962926 0.250112 0.904116 0.106525 0.413796 -0.427288 0.226294 0.875338 -0.000394 -0.968217 0.250112 0.887972 0.200696 0.413796 -0.448652 0.180265 0.875338 0.101084 -0.962926 0.250112 0.862047 0.292656 0.413796 -0.465074 0.132250 0.875338 0.201449 -0.947028 0.250112 0.826627 0.381393 0.413796 -0.476373 0.082778 0.875338 0.299595 -0.920699 0.250112 0.782567 0.465147 0.413796 -0.482393 0.032878 0.875338 0.393556 -0.884623 0.250112 0.729506 0.544604 0.413796 -0.483182 -0.017862 0.875338 0.484103 -0.838503 0.250112 0.668410 0.618062 0.413796 -0.478649 -0.068404 0.875338 0.569318 -0.783148 0.250112 0.600636 0.684112 0.413796 -0.468961 -0.117724 0.875338 0.647543 -0.719814 0.250112 0.525628 0.743295 0.413796 -0.454040 -0.166226 0.875338 0.719418 -0.647982 0.250112 0.444831 0.794291 0.413796 -0.434118 -0.212898 0.875338 0.783369 -0.569013 0.250112 0.359134 0.836538 0.413796 -0.409414 -0.257224 0.875338 0.838692 -0.483777 0.250112 0.270350 0.869301 0.413796 -0.380499 -0.298336 0.875338 0.884382 -0.394096 0.250112 0.177752 0.892848 0.413796 -0.347135 -0.336572 0.875338 0.920816 -0.299236 0.250112 0.083196 0.906560 0.413796 -0.309948 -0.371101 0.875338 0.947106 -0.201080 0.250112 -0.011366 0.910299 0.413796 -0.269749 -0.401272 0.875338 0.962864 -0.101672 0.250112 -0.106709 0.904094 0.413796 -0.226207 -0.427334 0.875338 0.968217 -0.000197 0.250112 -0.200877 0.887931 0.413796 -0.180173 -0.448688 0.875338 0.962905 0.101280 0.250112 -0.292832 0.861987 0.413796 -0.132155 -0.465101 0.875338 0.946987 0.201642 0.250112 -0.380735 0.826930 0.413796 -0.083158 -0.476307 0.875338 0.920937 0.298861 0.250112 -0.465306 0.782472 0.413796 -0.032779 -0.482399 0.875338 0.884543 0.393736 0.250112 -0.544752 0.729395 0.413796 0.017960 -0.483178 0.875338 0.838405 0.484274 0.250112 -0.618198 0.668284 0.413796 0.068502 -0.478635 0.875338 0.783032 0.569478 0.250112 -0.684234 0.600497 0.413796 0.117820 -0.468937 0.875338 0.719682 0.647689 0.250112 -0.743402 0.525477 0.413796 0.166319 -0.454006 0.875338 0.647836 0.719550 0.250112 -0.794382 0.444669 0.413796 0.212986 -0.434074 0.875338 0.568854 0.783485 0.250112 -0.836252 0.359800 0.413796 0.256898 -0.409618 0.875338 0.484445 0.838306 0.250112 -0.869356 0.270173 0.413796 0.298414 -0.380438 0.875338 0.393916 0.884462 0.250112 -0.892884 0.177570 0.413796 0.336643 -0.347067 0.875338 0.299049 0.920877 0.250112 -0.906577 0.083012 0.413796 0.371164 -0.309873 0.875338 0.200887 0.947147 0.250112 -0.910296 -0.011551 0.413796 0.401327 -0.269667 0.875338 0.101476 0.962884 0.250112 -0.904072 -0.106893 0.413796 0.427380 -0.226120 0.875338 0.000000 0.968217 0.250112 -0.887890 -0.201058 0.413796 0.448725 -0.180082 0.875338 -0.101476 0.962884 0.250112 -0.862220 -0.292145 0.413796 0.464995 -0.132526 0.875338 -0.200887 0.947147 0.250112 -0.826853 -0.380903 0.413796 0.476324 -0.083061 0.875338 -0.299049 0.920877 0.250112 -0.782377 -0.465466 0.413796 0.482406 -0.032681 0.875338 -0.393916 0.884462 0.250112 -0.729284 -0.544901 0.413796 0.483174 0.018058 0.875338 -0.484445 0.838306 0.250112 -0.668776 -0.617666 0.413796 0.478689 0.068120 0.875338 -0.568854 0.783485 0.250112 -0.600357 -0.684356 0.413796 0.468913 0.117915 0.875338 -0.647836 0.719550 0.250112 -0.525325 -0.743509 0.413796 0.453972 0.166411 0.875338 -0.719682 0.647689 0.250112 -0.445301 -0.794027 0.413796 0.434244 0.212640 0.875338 -0.783032 0.569478 0.250112 -0.359629 -0.836325 0.413796 0.409566 0.256981 0.875338 -0.838405 0.484274 0.250112 -0.269996 -0.869411 0.413796 0.380377 0.298491 0.875338 -0.884543 0.393736 0.250112 -0.177388 -0.892920 0.413796 0.346998 0.336713 0.875338 -0.920937 0.298861 0.250112 -0.083734 -0.906510 0.413796 0.310168 0.370917 0.875338 -0.946987 0.201642 0.250112 0.011736 -0.910294 0.413796 0.269585 0.401382 0.875338 -0.962905 0.101280 0.250112 0.205110 -0.498749 0.842128 0.117804 0.866746 0.484637 -0.971623 -0.000198 0.236533 0.256253 -0.474506 0.842128 0.026314 0.874319 0.484637 -0.966251 -0.102030 0.236533 0.304128 -0.445340 0.842128 -0.064593 0.872327 0.484637 -0.950439 -0.201788 0.236533 0.349128 -0.411012 0.842128 -0.155664 0.860753 0.484637 -0.924055 -0.300289 0.236533 0.390282 -0.372157 0.842128 -0.245020 0.839698 0.484637 -0.887494 -0.395483 0.236533 0.426808 -0.329630 0.842128 -0.330867 0.809725 0.484637 -0.841642 -0.485479 0.236533 0.459005 -0.283082 0.842128 -0.413909 0.770588 0.484637 -0.786125 -0.571016 0.236533 0.486146 -0.233416 0.842128 -0.492393 0.722963 0.484637 -0.721949 -0.650262 0.236533 0.507932 -0.181179 0.842128 -0.565453 0.667375 0.484637 -0.649821 -0.722346 0.236533 0.523997 -0.127470 0.842128 -0.631680 0.605068 0.484637 -0.571321 -0.785903 0.236533 0.534471 -0.071850 0.842128 -0.691616 0.535531 0.484637 -0.485807 -0.841454 0.236533 0.539057 -0.015438 0.842128 -0.743935 0.460095 0.484637 -0.394941 -0.887735 0.236533 0.537748 0.040607 0.842128 -0.787679 0.380380 0.484637 -0.300649 -0.923939 0.236533 0.530530 0.096743 0.842128 -0.823207 0.295730 0.484637 -0.202157 -0.950360 0.236533 0.517469 0.151813 0.842128 -0.849668 0.207824 0.484637 -0.101440 -0.966314 0.236533 0.498875 0.204805 0.842128 -0.866674 0.118334 0.484637 -0.000396 -0.971623 0.236533 0.474662 0.255963 0.842128 -0.874303 0.026848 0.484637 0.101440 -0.966314 0.236533 0.445221 0.304301 0.842128 -0.872302 -0.064933 0.484637 0.202157 -0.950360 0.236533 0.410876 0.349288 0.842128 -0.860692 -0.155999 0.484637 0.300649 -0.923939 0.236533 0.372396 0.390055 0.842128 -0.839847 -0.244506 0.484637 0.394941 -0.887735 0.236533 0.329464 0.426936 0.842128 -0.809596 -0.331182 0.484637 0.485807 -0.841454 0.236533 0.282904 0.459115 0.842128 -0.770427 -0.414209 0.484637 0.571321 -0.785903 0.236533 0.233713 0.486004 0.842128 -0.723264 -0.491951 0.484637 0.649821 -0.722346 0.236533 0.181489 0.507822 0.842128 -0.667720 -0.565045 0.484637 0.721949 -0.650262 0.236533 0.127266 0.524046 0.842128 -0.604822 -0.631915 0.484637 0.786125 -0.571016 0.236533 0.071642 0.534499 0.842128 -0.535262 -0.691824 0.484637 0.841642 -0.485479 0.236533 0.015767 0.539048 0.842128 -0.460550 -0.743654 0.484637 0.887494 -0.395483 0.236533 -0.040816 0.537732 0.842128 -0.380073 -0.787827 0.484637 0.924055 -0.300289 0.236533 -0.096949 0.530492 0.842128 -0.295410 -0.823322 0.484637 0.950439 -0.201788 0.236533 -0.151497 0.517561 0.842128 -0.208343 -0.849541 0.484637 0.966251 -0.102030 0.236533 -0.204907 0.498833 0.842128 -0.118157 -0.866698 0.484637 0.971623 -0.000198 0.236533 -0.256060 0.474610 0.842128 -0.026670 -0.874309 0.484637 0.966293 0.101636 0.236533 -0.304392 0.445159 0.842128 0.065110 -0.872289 0.484637 0.950319 0.202351 0.236533 -0.348961 0.411154 0.842128 0.155313 -0.860816 0.484637 0.924178 0.299913 0.236533 -0.390131 0.372316 0.842128 0.244677 -0.839797 0.484637 0.887655 0.395121 0.236533 -0.427003 0.329377 0.842128 0.331347 -0.809528 0.484637 0.841355 0.485978 0.236533 -0.459173 0.282810 0.842128 0.414366 -0.770342 0.484637 0.785787 0.571481 0.236533 -0.486051 0.233614 0.842128 0.492099 -0.723164 0.484637 0.722214 0.649968 0.236533 -0.507859 0.181386 0.842128 0.565181 -0.667605 0.484637 0.650115 0.722082 0.236533 -0.524072 0.127160 0.842128 0.632038 -0.604694 0.484637 0.570855 0.786242 0.236533 -0.534441 0.072067 0.842128 0.691398 -0.535813 0.484637 0.486149 0.841256 0.236533 -0.539051 0.015657 0.842128 0.743747 -0.460398 0.484637 0.395302 0.887574 0.236533 -0.537723 -0.040925 0.842128 0.787904 -0.379913 0.484637 0.300101 0.924117 0.236533 -0.530473 -0.097057 0.842128 0.823382 -0.295242 0.484637 0.201594 0.950480 0.236533 -0.517531 -0.151603 0.842128 0.849584 -0.208170 0.484637 0.101833 0.966272 0.236533 -0.498791 -0.205009 0.842128 0.866722 -0.117981 0.484637 0.000000 0.971623 0.236533 -0.474558 -0.256156 0.842128 0.874314 -0.026492 0.484637 -0.101833 0.966272 0.236533 -0.445401 -0.304038 0.842128 0.872340 0.064416 0.484637 -0.201594 0.950480 0.236533 -0.411083 -0.349044 0.842128 0.860785 0.155488 0.484637 -0.300101 0.924117 0.236533 -0.372237 -0.390206 0.842128 0.839748 0.244848 0.484637 -0.395302 0.887574 0.236533 -0.329290 -0.427070 0.842128 0.809461 0.331512 0.484637 -0.486149 0.841256 0.236533 -0.283176 -0.458947 0.842128 0.770672 0.413753 0.484637 -0.570855 0.786242 0.236533 -0.233515 -0.486099 0.842128 0.723063 0.492246 0.484637 -0.650115 0.722082 0.236533 -0.181283 -0.507896 0.842128 0.667490 0.565317 0.484637 -0.722214 0.649968 0.236533 -0.127577 -0.523971 0.842128 0.605197 0.631557 0.484637 -0.785787 0.571481 0.236533 -0.071959 -0.534456 0.842128 0.535672 0.691507 0.484637 -0.841355 0.485978 0.236533 -0.015547 -0.539054 0.842128 0.460247 0.743841 0.484637 -0.887655 0.395121 0.236533 0.041035 -0.537715 0.842128 0.379752 0.787982 0.484637 -0.924178 0.299913 0.236533 0.096635 -0.530550 0.842128 0.295898 0.823147 0.484637 -0.950319 0.202351 0.236533 0.151708 -0.517500 0.842128 0.207997 0.849626 0.484637 -0.966293 0.101636 0.236533 0.029672 0.353025 0.935143 -0.011413 0.935614 -0.352841 -0.999494 -0.000204 0.031791 -0.007491 0.354191 0.935143 -0.109410 0.929265 -0.352841 -0.993969 -0.104957 0.031791 -0.044220 0.351500 0.935143 -0.205288 0.912886 -0.352841 -0.977702 -0.207576 0.031791 -0.080816 0.344929 0.935143 -0.299834 0.886342 -0.352841 -0.950562 -0.308903 0.031791 -0.116522 0.334559 0.935143 -0.391078 0.850036 -0.352841 -0.912952 -0.406827 0.031791 -0.150624 0.320655 0.935143 -0.477209 0.804844 -0.352841 -0.865785 -0.499405 0.031791 -0.183401 0.303103 0.935143 -0.558934 0.750397 -0.352841 -0.808676 -0.587395 0.031791 -0.214159 0.282212 0.935143 -0.634503 0.687684 -0.352841 -0.742659 -0.668915 0.031791 -0.242557 0.258212 0.935143 -0.703083 0.617396 -0.352841 -0.668461 -0.743067 0.031791 -0.268052 0.231637 0.935143 -0.763378 0.541071 -0.352841 -0.587710 -0.808447 0.031791 -0.290853 0.202267 0.935143 -0.815881 0.458084 -0.352841 -0.499742 -0.865591 0.031791 -0.310450 0.170670 0.935143 -0.859399 0.370051 -0.352841 -0.406270 -0.913200 0.031791 -0.326490 0.137519 0.935143 -0.893171 0.278835 -0.352841 -0.309273 -0.950442 0.031791 -0.339105 0.102543 0.935143 -0.917476 0.183689 -0.352841 -0.207956 -0.977621 0.031791 -0.347985 0.066438 0.935143 -0.931675 0.086519 -0.352841 -0.104349 -0.994032 0.031791 -0.353007 0.029888 0.935143 -0.935620 -0.010842 -0.352841 -0.000407 -0.999494 0.031791 -0.354196 -0.007274 0.935143 -0.929331 -0.108842 -0.352841 0.104349 -0.994032 0.031791 -0.351482 -0.044357 0.935143 -0.912806 -0.205643 -0.352841 0.207956 -0.977621 0.031791 -0.344898 -0.080950 0.935143 -0.886226 -0.300179 -0.352841 0.309273 -0.950442 0.031791 -0.334631 -0.116317 0.935143 -0.850275 -0.390558 -0.352841 0.406270 -0.913200 0.031791 -0.320597 -0.150749 0.935143 -0.804659 -0.477522 -0.352841 0.499742 -0.865591 0.031791 -0.303032 -0.183519 0.935143 -0.750179 -0.559226 -0.352841 0.587710 -0.808447 0.031791 -0.282343 -0.213986 0.935143 -0.688071 -0.634083 -0.352841 0.668461 -0.743067 0.031791 -0.258360 -0.242399 0.935143 -0.617825 -0.702706 -0.352841 0.742659 -0.668915 0.031791 -0.231532 -0.268142 0.935143 -0.540774 -0.763588 -0.352841 0.808676 -0.587395 0.031791 -0.202154 -0.290932 0.935143 -0.457766 -0.816060 -0.352841 0.865785 -0.499405 0.031791 -0.170859 -0.310346 0.935143 -0.370576 -0.859172 -0.352841 0.912952 -0.406827 0.031791 -0.137392 -0.326544 0.935143 -0.278487 -0.893279 -0.352841 0.950562 -0.308903 0.031791 -0.102411 -0.339145 0.935143 -0.183332 -0.917547 -0.352841 0.977702 -0.207576 0.031791 -0.066650 -0.347944 0.935143 -0.087088 -0.931622 -0.352841 0.993969 -0.104957 0.031791 -0.029816 -0.353013 0.935143 0.011032 -0.935618 -0.352841 0.999494 -0.000204 0.031791 0.007347 -0.354194 0.935143 0.109031 -0.929309 -0.352841 0.994011 0.104552 0.031791 0.044428 -0.351473 0.935143 0.205829 -0.912764 -0.352841 0.977579 0.208155 0.031791 0.080675 -0.344962 0.935143 0.299473 -0.886464 -0.352841 0.950688 0.308516 0.031791 0.116386 -0.334607 0.935143 0.390732 -0.850195 -0.352841 0.913117 0.406456 0.031791 0.150814 -0.320566 0.935143 0.477686 -0.804561 -0.352841 0.865489 0.499918 0.031791 0.183581 -0.302994 0.935143 0.559379 -0.750065 -0.352841 0.808327 0.587874 0.031791 0.214044 -0.282299 0.935143 0.634223 -0.687942 -0.352841 0.742931 0.668613 0.031791 0.242452 -0.258311 0.935143 0.702831 -0.617682 -0.352841 0.668764 0.742795 0.031791 0.268189 -0.231478 0.935143 0.763698 -0.540619 -0.352841 0.587231 0.808795 0.031791 0.290771 -0.202386 0.935143 0.815695 -0.458416 -0.352841 0.500095 0.865387 0.031791 0.310381 -0.170796 0.935143 0.859248 -0.370401 -0.352841 0.406642 0.913034 0.031791 0.326572 -0.137325 0.935143 0.893336 -0.278305 -0.352841 0.308709 0.950625 0.031791 0.339166 -0.102342 0.935143 0.917584 -0.183145 -0.352841 0.207377 0.977744 0.031791 0.347958 -0.066579 0.935143 0.931639 -0.086898 -0.352841 0.104754 0.993990 0.031791 0.353019 -0.029744 0.935143 0.935616 0.011223 -0.352841 0.000000 0.999495 0.031791 0.354193 0.007419 0.935143 0.929287 0.109220 -0.352841 -0.104754 0.993990 0.031791 0.351509 0.044148 0.935143 0.912927 0.205102 -0.352841 -0.207377 0.977744 0.031791 0.344946 0.080746 0.935143 0.886403 0.299654 -0.352841 -0.308709 0.950625 0.031791 0.334583 0.116454 0.935143 0.850116 0.390905 -0.352841 -0.406642 0.913034 0.031791 0.320535 0.150879 0.935143 0.804464 0.477850 -0.352841 -0.500095 0.865387 0.031791 0.303140 0.183340 0.935143 0.750511 0.558782 -0.352841 -0.587231 0.808795 0.031791 0.282255 0.214101 0.935143 0.687813 0.634363 -0.352841 -0.668764 0.742795 0.031791 0.258262 0.242504 0.935143 0.617539 0.702957 -0.352841 -0.742931 0.668613 0.031791 0.231691 0.268005 0.935143 0.541227 0.763267 -0.352841 -0.808327 0.587874 0.031791 0.202326 0.290812 0.935143 0.458250 0.815788 -0.352841 -0.865489 0.499918 0.031791 0.170733 0.310415 0.935143 0.370226 0.859323 -0.352841 -0.913117 0.406456 0.031791 0.137259 0.326600 0.935143 0.278124 0.893393 -0.352841 -0.950688 0.308516 0.031791 0.102612 0.339084 0.935143 0.183875 0.917438 -0.352841 -0.977579 0.208155 0.031791 0.066508 0.347971 0.935143 0.086709 0.931657 -0.352841 -0.994011 0.104552 0.031791 -0.469669 0.120407 -0.874593 -0.056807 -0.992725 -0.106165 -0.881013 -0.000179 0.473091 -0.479701 0.070519 -0.874593 0.047551 -0.993211 -0.106165 -0.876142 -0.092515 0.473091 -0.484430 0.020339 -0.874593 0.150402 -0.982908 -0.106165 -0.861804 -0.182970 0.473091 -0.483894 -0.030545 -0.874593 0.252589 -0.961732 -0.106165 -0.837881 -0.272285 0.473091 -0.478028 -0.081092 -0.874593 0.351995 -0.929962 -0.106165 -0.804729 -0.358602 0.473091 -0.467026 -0.130279 -0.874593 0.446635 -0.888396 -0.106165 -0.763154 -0.440205 0.473091 -0.450800 -0.178509 -0.874593 0.537285 -0.836692 -0.106165 -0.712814 -0.517765 0.473091 -0.429608 -0.224773 -0.874593 0.622017 -0.775773 -0.106165 -0.654623 -0.589621 0.473091 -0.403684 -0.268561 -0.874593 0.699898 -0.706309 -0.106165 -0.589221 -0.654983 0.473091 -0.373623 -0.309018 -0.874593 0.769440 -0.629834 -0.106165 -0.518042 -0.712613 0.473091 -0.339178 -0.346474 -0.874593 0.831214 -0.545722 -0.106165 -0.440502 -0.762983 0.473091 -0.300997 -0.380114 -0.874593 0.883831 -0.455600 -0.106165 -0.358110 -0.804948 0.473091 -0.259910 -0.409308 -0.874593 0.926353 -0.361385 -0.106165 -0.272611 -0.837775 0.473091 -0.215580 -0.434294 -0.874593 0.959127 -0.262307 -0.106165 -0.183305 -0.861733 0.473091 -0.168876 -0.454497 -0.874593 0.981336 -0.160339 -0.106165 -0.091980 -0.876199 0.473091 -0.120694 -0.469595 -0.874593 0.992690 -0.057413 -0.106165 -0.000359 -0.881013 0.473091 -0.070812 -0.479658 -0.874593 0.993240 0.046944 -0.106165 0.091980 -0.876199 0.473091 -0.020151 -0.484438 -0.874593 0.982850 0.150784 -0.106165 0.183305 -0.861733 0.473091 0.030733 -0.483882 -0.874593 0.961633 0.252963 -0.106165 0.272611 -0.837775 0.473091 0.080800 -0.478077 -0.874593 0.930177 0.351426 -0.106165 0.358110 -0.804948 0.473091 0.130461 -0.466976 -0.874593 0.888222 0.446980 -0.106165 0.440502 -0.762983 0.473091 0.178685 -0.450731 -0.874593 0.836483 0.537610 -0.106165 0.518042 -0.712613 0.473091 0.224511 -0.429746 -0.874593 0.776153 0.621543 -0.106165 0.589221 -0.654983 0.473091 0.268315 -0.403848 -0.874593 0.706736 0.699466 -0.106165 0.654623 -0.589621 0.473091 0.309163 -0.373503 -0.874593 0.629535 0.769685 -0.106165 0.712814 -0.517765 0.473091 0.346606 -0.339044 -0.874593 0.545399 0.831426 -0.106165 0.763154 -0.440205 0.473091 0.379930 -0.301229 -0.874593 0.456140 0.883553 -0.106165 0.804729 -0.358602 0.473091 0.409409 -0.259751 -0.874593 0.361025 0.926493 -0.106165 0.837881 -0.272285 0.473091 0.434378 -0.215411 -0.874593 0.261933 0.959229 -0.106165 0.861804 -0.182970 0.473091 0.454393 -0.169154 -0.874593 0.160938 0.981238 -0.106165 0.876142 -0.092515 0.473091 0.469619 -0.120598 -0.874593 0.057211 0.992701 -0.106165 0.881013 -0.000179 0.473091 0.479673 -0.070715 -0.874593 -0.047146 0.993230 -0.106165 0.876180 0.092158 0.473091 0.484442 -0.020052 -0.874593 -0.150984 0.982819 -0.106165 0.861696 0.183481 0.473091 0.483906 0.030347 -0.874593 -0.252198 0.961834 -0.106165 0.837992 0.271944 0.473091 0.478061 0.080897 -0.874593 -0.351616 0.930105 -0.106165 0.804875 0.358274 0.473091 0.466949 0.130556 -0.874593 -0.447161 0.888131 -0.106165 0.762893 0.440657 0.473091 0.450694 0.178776 -0.874593 -0.537781 0.836374 -0.106165 0.712507 0.518187 0.473091 0.429700 0.224598 -0.874593 -0.621701 0.776026 -0.106165 0.654863 0.589355 0.473091 0.403794 0.268397 -0.874593 -0.699610 0.706594 -0.106165 0.589488 0.654743 0.473091 0.373440 0.309239 -0.874593 -0.769813 0.629378 -0.106165 0.517620 0.712920 0.473091 0.339319 0.346336 -0.874593 -0.830991 0.546061 -0.106165 0.440813 0.762803 0.473091 0.301152 0.379992 -0.874593 -0.883646 0.455960 -0.106165 0.358438 0.804802 0.473091 0.259668 0.409462 -0.874593 -0.926567 0.360836 -0.106165 0.272115 0.837937 0.473091 0.215323 0.434422 -0.874593 -0.959282 0.261738 -0.106165 0.182794 0.861841 0.473091 0.169061 0.454428 -0.874593 -0.981271 0.160738 -0.106165 0.092337 0.876161 0.473091 0.120503 0.469644 -0.874593 -0.992713 0.057009 -0.106165 0.000000 0.881013 0.473091 0.070617 0.479687 -0.874593 -0.993221 -0.047349 -0.106165 -0.092337 0.876161 0.473091 0.020438 0.484426 -0.874593 -0.982939 -0.150202 -0.106165 -0.182794 0.861841 0.473091 -0.030446 0.483900 -0.874593 -0.961783 -0.252393 -0.106165 -0.272115 0.837937 0.473091 -0.080995 0.478044 -0.874593 -0.930033 -0.351805 -0.106165 -0.358438 0.804802 0.473091 -0.130651 0.466923 -0.874593 -0.888040 -0.447342 -0.106165 -0.440813 0.762803 0.473091 -0.178417 0.450837 -0.874593 -0.836802 -0.537114 -0.106165 -0.517620 0.712920 0.473091 -0.224686 0.429654 -0.874593 -0.775900 -0.621859 -0.106165 -0.589488 0.654743 0.473091 -0.268479 0.403739 -0.874593 -0.706451 -0.699754 -0.106165 -0.654863 0.589355 0.473091 -0.308942 0.373686 -0.874593 -0.629991 -0.769312 -0.106165 -0.712507 0.518187 0.473091 -0.346405 0.339249 -0.874593 -0.545892 -0.831102 -0.106165 -0.762893 0.440657 0.473091 -0.380053 0.301075 -0.874593 -0.455780 -0.883739 -0.106165 -0.804875 0.358274 0.473091 -0.409515 0.259584 -0.874593 -0.360648 -0.926640 -0.106165 -0.837992 0.271944 0.473091 -0.434250 0.215669 -0.874593 -0.262502 -0.959073 -0.106165 -0.861696 0.183481 0.473091 -0.454462 0.168969 -0.874593 -0.160538 -0.981303 -0.106165 -0.876180 0.092158 0.473091 0.311184 0.924592 -0.219760 0.755425 -0.380959 -0.533107 -0.576626 -0.000117 -0.817008 0.212567 0.952114 -0.219760 0.791192 -0.299687 -0.533107 -0.573438 -0.060551 -0.817008 0.112577 0.969037 -0.219760 0.818028 -0.215932 -0.533107 -0.564053 -0.119754 -0.817008 0.010395 0.975499 -0.219760 0.836154 -0.129008 -0.533107 -0.548396 -0.178212 -0.817008 -0.091902 0.971216 -0.219760 0.845070 -0.040662 -0.533107 -0.526698 -0.234706 -0.817008 -0.192230 0.956427 -0.219760 0.844725 0.047286 -0.533107 -0.499486 -0.288116 -0.817008 -0.291411 0.931013 -0.219760 0.835117 0.135559 -0.533107 -0.466539 -0.338879 -0.817008 -0.387383 0.895343 -0.219760 0.816310 0.222339 -0.533107 -0.428453 -0.385909 -0.817008 -0.479088 0.849812 -0.219760 0.788512 0.306669 -0.533107 -0.385647 -0.428688 -0.817008 -0.564721 0.795485 -0.219760 0.752415 0.386870 -0.533107 -0.339060 -0.466407 -0.817008 -0.644983 0.731917 -0.219760 0.707725 0.463598 -0.533107 -0.288310 -0.499374 -0.817008 -0.718141 0.660287 -0.219760 0.655238 0.535219 -0.533107 -0.234384 -0.526841 -0.817008 -0.782807 0.582167 -0.219760 0.596136 0.600349 -0.533107 -0.178425 -0.548326 -0.817008 -0.839511 0.496917 -0.219760 0.529932 0.659522 -0.533107 -0.119974 -0.564007 -0.817008 -0.886968 0.406194 -0.219760 0.457890 0.711431 -0.533107 -0.060201 -0.573475 -0.817008 -0.924402 0.311749 -0.219760 0.381421 0.755192 -0.533107 -0.000235 -0.576626 -0.817008 -0.951984 0.213148 -0.219760 0.300171 0.791009 -0.533107 0.060201 -0.573475 -0.817008 -0.969080 0.112200 -0.219760 0.215614 0.818112 -0.533107 0.119974 -0.564007 -0.817008 -0.975503 0.010015 -0.219760 0.128682 0.836204 -0.533107 0.178425 -0.548326 -0.817008 -0.971272 -0.091308 -0.219760 0.041179 0.845045 -0.533107 0.234384 -0.526841 -0.817008 -0.956353 -0.192602 -0.219760 -0.047615 0.844707 -0.533107 0.288310 -0.499374 -0.817008 -0.930900 -0.291774 -0.219760 -0.135884 0.835064 -0.533107 0.339060 -0.466407 -0.817008 -0.895580 -0.386836 -0.219760 -0.221840 0.816446 -0.533107 0.385647 -0.428688 -0.817008 -0.850104 -0.478569 -0.219760 -0.306188 0.788699 -0.533107 0.428453 -0.385909 -0.817008 -0.795265 -0.565030 -0.219760 -0.387163 0.752265 -0.533107 0.466539 -0.338879 -0.817008 -0.731666 -0.645268 -0.219760 -0.463873 0.707544 -0.533107 0.499486 -0.288116 -0.817008 -0.660726 -0.717738 -0.219760 -0.534819 0.655565 -0.533107 0.526698 -0.234706 -0.817008 -0.581863 -0.783033 -0.219760 -0.600581 0.595902 -0.533107 0.548396 -0.178212 -0.817008 -0.496591 -0.839704 -0.219760 -0.659728 0.529675 -0.533107 0.564053 -0.119754 -0.817008 -0.406736 -0.886720 -0.219760 -0.711151 0.458325 -0.533107 0.573438 -0.060551 -0.817008 -0.311561 -0.924465 -0.219760 -0.755270 0.381267 -0.533107 0.576626 -0.000117 -0.817008 -0.212954 -0.952027 -0.219760 -0.791070 0.300009 -0.533107 0.573462 0.060318 -0.817008 -0.112002 -0.969103 -0.219760 -0.818156 0.215447 -0.533107 0.563982 0.120089 -0.817008 -0.010792 -0.975494 -0.219760 -0.836102 0.129348 -0.533107 0.548468 0.177988 -0.817008 0.091506 -0.971253 -0.219760 -0.845053 0.041007 -0.533107 0.526793 0.234491 -0.817008 0.192796 -0.956313 -0.219760 -0.844697 -0.047787 -0.533107 0.499316 0.288412 -0.817008 0.291963 -0.930840 -0.219760 -0.835037 -0.136054 -0.533107 0.466338 0.339155 -0.817008 0.387019 -0.895501 -0.219760 -0.816401 -0.222006 -0.533107 0.428610 0.385734 -0.817008 0.478742 -0.850007 -0.219760 -0.788637 -0.306348 -0.533107 0.385822 0.428531 -0.817008 0.565192 -0.795150 -0.219760 -0.752186 -0.387316 -0.533107 0.338784 0.466608 -0.817008 0.644685 -0.732180 -0.219760 -0.707913 -0.463310 -0.533107 0.288513 0.499257 -0.817008 0.717872 -0.660580 -0.219760 -0.655456 -0.534952 -0.533107 0.234599 0.526745 -0.817008 0.783152 -0.581703 -0.219760 -0.595780 -0.600703 -0.533107 0.178100 0.548432 -0.817008 0.839805 -0.496420 -0.219760 -0.529541 -0.659836 -0.533107 0.119639 0.564078 -0.817008 0.886803 -0.406555 -0.219760 -0.458180 -0.711244 -0.533107 0.060435 0.573450 -0.817008 0.924528 -0.311373 -0.219760 -0.381113 -0.755347 -0.533107 0.000000 0.576626 -0.817008 0.952071 -0.212761 -0.219760 -0.299848 -0.791131 -0.533107 -0.060435 0.573450 -0.817008 0.969014 -0.112774 -0.219760 -0.216099 -0.817984 -0.533107 -0.119639 0.564078 -0.817008 0.975497 -0.010593 -0.219760 -0.129178 -0.836128 -0.533107 -0.178100 0.548432 -0.817008 0.971234 0.091704 -0.219760 -0.040834 -0.845062 -0.533107 -0.234599 0.526745 -0.817008 0.956274 0.192991 -0.219760 0.047959 -0.844687 -0.533107 -0.288513 0.499257 -0.817008 0.931072 0.291222 -0.219760 0.135389 -0.835145 -0.533107 -0.338784 0.466608 -0.817008 0.895422 0.387201 -0.219760 0.222173 -0.816356 -0.533107 -0.385822 0.428531 -0.817008 0.849909 0.478915 -0.219760 0.306509 -0.788574 -0.533107 -0.428610 0.385734 -0.817008 0.795600 0.564559 -0.219760 0.386717 -0.752494 -0.533107 -0.466338 0.339155 -0.817008 0.732048 0.644834 -0.219760 0.463454 -0.707819 -0.533107 -0.499316 0.288412 -0.817008 0.660433 0.718007 -0.219760 0.535086 -0.655347 -0.533107 -0.526793 0.234491 -0.817008 0.581544 0.783270 -0.219760 0.600824 -0.595657 -0.533107 -0.548468 0.177988 -0.817008 0.497088 0.839410 -0.219760 0.659414 -0.530066 -0.533107 -0.563982 0.120089 -0.817008 0.406374 0.886885 -0.219760 0.711337 -0.458035 -0.533107 -0.573462 0.060318 -0.817008 -0.692194 -0.625978 0.359193 -0.555679 0.779841 0.288217 -0.460530 -0.000094 -0.887644 -0.622775 -0.695077 0.359193 -0.634351 0.717307 0.288217 -0.457984 -0.048360 -0.887644 -0.547252 -0.755973 0.359193 -0.705389 0.647578 0.288217 -0.450489 -0.095643 -0.887644 -0.465007 -0.809166 0.359193 -0.769375 0.570081 0.288217 -0.437984 -0.142331 -0.887644 -0.377640 -0.853445 0.359193 -0.824887 0.486306 0.288217 -0.420655 -0.187451 -0.887644 -0.287001 -0.888038 0.359193 -0.870914 0.398044 0.288217 -0.398922 -0.230108 -0.887644 -0.192347 -0.913227 0.359193 -0.907836 0.304574 0.288217 -0.372608 -0.270650 -0.887644 -0.095575 -0.928357 0.359193 -0.934757 0.207749 0.288217 -0.342190 -0.308212 -0.887644 0.002249 -0.933261 0.359193 -0.951383 0.108636 0.288217 -0.308002 -0.342378 -0.887644 0.099122 -0.927985 0.359193 -0.957520 0.009283 0.288217 -0.270795 -0.372503 -0.887644 0.195835 -0.912485 0.359193 -0.953220 -0.091123 0.288217 -0.230263 -0.398832 -0.887644 0.290392 -0.886935 0.359193 -0.938419 -0.190526 0.288217 -0.187194 -0.420769 -0.887644 0.380897 -0.851996 0.359193 -0.913570 -0.286916 0.288217 -0.142502 -0.437929 -0.887644 0.468095 -0.807383 0.359193 -0.878468 -0.381084 0.288217 -0.095819 -0.450452 -0.887644 0.550137 -0.753877 0.359193 -0.833689 -0.471055 0.288217 -0.048080 -0.458014 -0.887644 0.625555 -0.692577 0.359193 -0.780180 -0.555202 0.288217 -0.000188 -0.460530 -0.887644 0.694696 -0.623200 0.359193 -0.717694 -0.633913 0.288217 0.048080 -0.458014 -0.887644 0.756186 -0.546958 0.359193 -0.647303 -0.705641 0.288217 0.095819 -0.450452 -0.887644 0.809347 -0.464692 0.359193 -0.569782 -0.769597 0.288217 0.142502 -0.437929 -0.887644 0.853214 -0.378161 0.359193 -0.486809 -0.824589 0.288217 0.187194 -0.420769 -0.887644 0.888149 -0.286655 0.359193 -0.397705 -0.871069 0.288217 0.230263 -0.398832 -0.887644 0.913302 -0.191992 0.359193 -0.304221 -0.907954 0.288217 0.270795 -0.372503 -0.887644 0.928298 -0.096142 0.359193 -0.208320 -0.934630 0.288217 0.308002 -0.342378 -0.887644 0.933262 0.001679 0.359193 -0.109217 -0.951316 0.288217 0.342190 -0.308212 -0.887644 0.927946 0.099483 0.359193 -0.008910 -0.957524 0.288217 0.372608 -0.270650 -0.887644 0.912409 0.196190 0.359193 0.091494 -0.953184 0.288217 0.398922 -0.230108 -0.887644 0.887112 0.289850 0.359193 0.189952 -0.938536 0.288217 0.420655 -0.187451 -0.887644 0.851848 0.381229 0.359193 0.287271 -0.913458 0.288217 0.437984 -0.142331 -0.887644 0.807201 0.468409 0.359193 0.381426 -0.878320 0.288217 0.450489 -0.095643 -0.887644 0.754213 0.549676 0.359193 0.470546 -0.833977 0.288217 0.457984 -0.048360 -0.887644 0.692449 0.625696 0.359193 0.555361 -0.780067 0.288217 0.460530 -0.000094 -0.887644 0.623058 0.694823 0.359193 0.634059 -0.717565 0.288217 0.458004 0.048174 -0.887644 0.546804 0.756297 0.359193 0.705773 -0.647159 0.288217 0.450432 0.095910 -0.887644 0.465337 0.808976 0.359193 0.769143 -0.570395 0.288217 0.438042 0.142153 -0.887644 0.377987 0.853292 0.359193 0.824689 -0.486641 0.288217 0.420731 0.187280 -0.887644 0.286474 0.888208 0.359193 0.871150 -0.397528 0.288217 0.398785 0.230344 -0.887644 0.191806 0.913341 0.359193 0.908016 -0.304036 0.288217 0.372447 0.270871 -0.887644 0.095953 0.928318 0.359193 0.934673 -0.208130 0.288217 0.342315 0.308072 -0.887644 -0.001869 0.933262 0.359193 0.951339 -0.109023 0.288217 0.308142 0.342253 -0.887644 -0.099672 0.927926 0.359193 0.957526 -0.008715 0.288217 0.270574 0.372663 -0.887644 -0.195463 0.912565 0.359193 0.953257 0.090735 0.288217 0.230425 0.398739 -0.887644 -0.290030 0.887053 0.359193 0.938497 0.190143 0.288217 0.187365 0.420693 -0.887644 -0.381402 0.851770 0.359193 0.913400 0.287457 0.288217 0.142242 0.438013 -0.887644 -0.468574 0.807106 0.359193 0.878242 0.381605 0.288217 0.095552 0.450509 -0.887644 -0.549830 0.754101 0.359193 0.833881 0.470716 0.288217 0.048267 0.457994 -0.887644 -0.625837 0.692322 0.359193 0.779954 0.555520 0.288217 0.000000 0.460530 -0.887644 -0.694950 0.622917 0.359193 0.717436 0.634205 0.288217 -0.048267 0.457994 -0.887644 -0.755862 0.547406 0.359193 0.647721 0.705258 0.288217 -0.095552 0.450509 -0.887644 -0.809071 0.465172 0.359193 0.570238 0.769259 0.288217 -0.142242 0.438013 -0.887644 -0.853368 0.377813 0.359193 0.486474 0.824788 0.288217 -0.187365 0.420693 -0.887644 -0.888266 0.286294 0.359193 0.397351 0.871231 0.288217 -0.230425 0.398739 -0.887644 -0.913188 0.192533 0.359193 0.304759 0.907774 0.288217 -0.270574 0.372663 -0.887644 -0.928337 0.095764 0.359193 0.207939 0.934715 0.288217 -0.308142 0.342253 -0.887644 -0.933261 -0.002059 0.359193 0.108829 0.951361 0.288217 -0.342315 0.308072 -0.887644 -0.928005 -0.098933 0.359193 0.009478 0.957518 0.288217 -0.372447 0.270871 -0.887644 -0.912525 -0.195649 0.359193 -0.090929 0.953238 0.288217 -0.398785 0.230344 -0.887644 -0.886994 -0.290211 0.359193 -0.190334 0.938458 0.288217 -0.420731 0.187280 -0.887644 -0.851693 -0.381576 0.359193 -0.287643 0.913341 0.288217 -0.438042 0.142153 -0.887644 -0.807479 -0.467931 0.359193 -0.380906 0.878545 0.288217 -0.450432 0.095910 -0.887644 -0.753989 -0.549983 0.359193 -0.470886 0.833785 0.288217 -0.458004 0.048174 -0.887644 -0.094661 -0.988551 0.117499 -0.621000 0.150886 0.769150 -0.778073 -0.000158 -0.628174 0.009468 -0.993028 0.117499 -0.633394 0.084970 0.769150 -0.773771 -0.081705 -0.628174 0.112505 -0.986680 0.117499 -0.638793 0.018757 0.769150 -0.761109 -0.161591 -0.628174 0.215297 -0.969454 0.117499 -0.637241 -0.048297 0.769150 -0.739981 -0.240471 -0.628174 0.315717 -0.941550 0.117499 -0.628669 -0.114818 0.769150 -0.710702 -0.316702 -0.628174 0.411756 -0.903687 0.117499 -0.613353 -0.179462 0.769150 -0.673985 -0.388770 -0.628174 0.504201 -0.855556 0.117499 -0.591166 -0.242757 0.769150 -0.629527 -0.457268 -0.628174 0.591092 -0.798000 0.117499 -0.562467 -0.303378 0.769150 -0.578135 -0.520728 -0.628174 0.671473 -0.731654 0.117499 -0.527573 -0.360658 0.769150 -0.520375 -0.578453 -0.628174 0.743800 -0.657993 0.117499 -0.487282 -0.413478 0.769150 -0.457512 -0.629349 -0.628174 0.808666 -0.576414 0.117499 -0.441263 -0.462272 0.769150 -0.389032 -0.673834 -0.628174 0.864625 -0.488485 0.117499 -0.390383 -0.505973 0.769150 -0.316267 -0.710896 -0.628174 0.910664 -0.396087 0.117499 -0.335748 -0.543766 0.769150 -0.240759 -0.739887 -0.628174 0.947161 -0.298462 0.117499 -0.276908 -0.575960 0.769150 -0.161887 -0.761046 -0.628174 0.973226 -0.197549 0.117499 -0.215018 -0.601810 0.769150 -0.081232 -0.773821 -0.628174 0.988493 -0.095265 0.117499 -0.151266 -0.620908 0.769150 -0.000317 -0.778073 -0.628174 0.993033 0.008861 0.117499 -0.085357 -0.633342 0.769150 0.081232 -0.773821 -0.628174 0.986636 0.112889 0.117499 -0.018508 -0.638800 0.769150 0.161887 -0.761046 -0.628174 0.969370 0.215674 0.117499 0.048545 -0.637222 0.769150 0.240759 -0.739887 -0.628174 0.941743 0.315141 0.117499 0.114434 -0.628739 0.769150 0.316267 -0.710896 -0.628174 0.903527 0.412107 0.117499 0.179700 -0.613283 0.769150 0.389032 -0.673834 -0.628174 0.855359 0.504534 0.117499 0.242987 -0.591071 0.769150 0.457512 -0.629349 -0.628174 0.798361 0.590605 0.117499 0.303035 -0.562653 0.769150 0.520375 -0.578453 -0.628174 0.732064 0.671026 0.117499 0.360336 -0.527794 0.769150 0.578135 -0.520728 -0.628174 0.657704 0.744056 0.117499 0.413668 -0.487121 0.769150 0.629527 -0.457268 -0.628174 0.576100 0.808890 0.117499 0.462443 -0.441083 0.769150 0.673985 -0.388770 -0.628174 0.489014 0.864326 0.117499 0.505735 -0.390692 0.769150 0.710702 -0.316702 -0.628174 0.395733 0.910818 0.117499 0.543897 -0.335536 0.769150 0.739981 -0.240471 -0.628174 0.298093 0.947277 0.117499 0.576068 -0.276684 0.769150 0.761109 -0.161591 -0.628174 0.198143 0.973105 0.117499 0.601679 -0.215386 0.769150 0.773771 -0.081705 -0.628174 0.095064 0.988512 0.117499 0.620939 -0.151139 0.769150 0.778073 -0.000158 -0.628174 -0.009063 0.993032 0.117499 0.633360 -0.085228 0.769150 0.773805 0.081390 -0.628174 -0.113090 0.986613 0.117499 0.638804 -0.018378 0.769150 0.761013 0.162042 -0.628174 -0.214902 0.969542 0.117499 0.637260 0.048037 0.769150 0.740079 0.240169 -0.628174 -0.315333 0.941679 0.117499 0.628716 0.114562 0.769150 0.710831 0.316412 -0.628174 -0.412291 0.903443 0.117499 0.613246 0.179825 0.769150 0.673754 0.389170 -0.628174 -0.504708 0.855257 0.117499 0.591022 0.243107 0.769150 0.629256 0.457641 -0.628174 -0.590767 0.798240 0.117499 0.562591 0.303149 0.769150 0.578347 0.520493 -0.628174 -0.671175 0.731928 0.117499 0.527720 0.360443 0.769150 0.520610 0.578241 -0.628174 -0.744190 0.657553 0.117499 0.487037 0.413767 0.769150 0.457139 0.629620 -0.628174 -0.808431 0.576743 0.117499 0.441451 0.462092 0.769150 0.389307 0.673675 -0.628174 -0.864426 0.488838 0.117499 0.390589 0.505814 0.769150 0.316557 0.710767 -0.628174 -0.910899 0.395547 0.117499 0.335425 0.543965 0.769150 0.240320 0.740030 -0.628174 -0.947338 0.297900 0.117499 0.276566 0.576124 0.769150 0.161436 0.761141 -0.628174 -0.973145 0.197945 0.117499 0.215263 0.601722 0.769150 0.081548 0.773788 -0.628174 -0.988532 0.094862 0.117499 0.151013 0.620970 0.769150 0.000000 0.778073 -0.628174 -0.993030 -0.009265 0.117499 0.085099 0.633377 0.769150 -0.081548 0.773788 -0.628174 -0.986702 -0.112304 0.117499 0.018887 0.638789 0.769150 -0.161436 0.761141 -0.628174 -0.969498 -0.215099 0.117499 -0.048167 0.637250 0.769150 -0.240320 0.740030 -0.628174 -0.941615 -0.315525 0.117499 -0.114690 0.628693 0.769150 -0.316557 0.710767 -0.628174 -0.903359 -0.412475 0.117499 -0.179950 0.613210 0.769150 -0.389307 0.673675 -0.628174 -0.855658 -0.504027 0.117499 -0.242637 0.591215 0.769150 -0.457139 0.629620 -0.628174 -0.798120 -0.590930 0.117499 -0.303264 0.562529 0.769150 -0.520610 0.578241 -0.628174 -0.731791 -0.671324 0.117499 -0.360551 0.527647 0.769150 -0.578347 0.520493 -0.628174 -0.658145 -0.743666 0.117499 -0.413379 0.487366 0.769150 -0.629256 0.457641 -0.628174 -0.576579 -0.808549 0.117499 -0.462182 0.441357 0.769150 -0.673754 0.389170 -0.628174 -0.488662 -0.864525 0.117499 -0.505894 0.390486 0.769150 -0.710831 0.316412 -0.628174 -0.395362 -0.910979 0.117499 -0.544033 0.335314 0.769150 -0.740079 0.240169 -0.628174 -0.298655 -0.947101 0.117499 -0.575904 0.277025 0.769150 -0.761013 0.162042 -0.628174 -0.197747 -0.973186 0.117499 -0.601766 0.215141 0.769150 -0.773805 0.081390 -0.628174 -0.212341 -0.890889 -0.401532 0.416827 -0.454221 0.787362 -0.883836 -0.000180 0.467797 -0.117800 -0.908238 -0.401532 0.462137 -0.408033 0.787362 -0.878950 -0.092811 0.467797 -0.022877 -0.915559 -0.401532 0.501999 -0.357852 0.787362 -0.864565 -0.183556 0.467797 0.073206 -0.912915 -0.401532 0.536740 -0.303268 0.787362 -0.840566 -0.273158 0.467797 0.168483 -0.900214 -0.401532 0.565569 -0.245344 0.787362 -0.807308 -0.359751 0.467797 0.261026 -0.877860 -0.401532 0.587983 -0.185305 0.787362 -0.765599 -0.441616 0.467797 0.351594 -0.845668 -0.401532 0.604166 -0.122660 0.787362 -0.715098 -0.519424 0.467797 0.438290 -0.804161 -0.401532 0.613694 -0.058663 0.787362 -0.656720 -0.591510 0.467797 0.520158 -0.753796 -0.401532 0.616462 0.005979 0.787362 -0.591109 -0.657082 0.467797 0.595601 -0.695724 -0.401532 0.612511 0.069944 0.787362 -0.519702 -0.714896 0.467797 0.665238 -0.629469 -0.401532 0.601807 0.133754 0.787362 -0.441913 -0.765427 0.467797 0.727547 -0.556280 -0.401532 0.584474 0.196091 0.787362 -0.359257 -0.807527 0.467797 0.781365 -0.477746 -0.401532 0.560959 0.255707 0.787362 -0.273485 -0.840460 0.467797 0.827133 -0.393223 -0.401532 0.531070 0.313091 0.787362 -0.183892 -0.864494 0.467797 0.863790 -0.304367 -0.401532 0.495331 0.367027 0.787362 -0.092274 -0.879006 0.467797 0.890759 -0.212886 -0.401532 0.454475 0.416550 0.787362 -0.000360 -0.883836 0.467797 0.908165 -0.118355 -0.401532 0.408315 0.461888 0.787362 0.092274 -0.879006 0.467797 0.915568 -0.022521 -0.401532 0.357657 0.502138 0.787362 0.183892 -0.864494 0.467797 0.912886 0.073561 -0.401532 0.303059 0.536858 0.787362 0.273485 -0.840460 0.467797 0.900317 0.167933 -0.401532 0.245689 0.565419 0.787362 0.359257 -0.807527 0.467797 0.877758 0.261367 -0.401532 0.185076 0.588055 0.787362 0.441913 -0.765427 0.467797 0.845531 0.351923 -0.401532 0.122425 0.604213 0.787362 0.519702 -0.714896 0.467797 0.804428 0.437799 -0.401532 0.059038 0.613658 0.787362 0.591109 -0.657082 0.467797 0.754113 0.519697 -0.401532 -0.005603 0.616466 0.787362 0.656720 -0.591510 0.467797 0.695492 0.595872 -0.401532 -0.070182 0.612484 0.787362 0.715098 -0.519424 0.467797 0.629210 0.665482 -0.401532 -0.133988 0.601755 0.787362 0.765599 -0.441616 0.467797 0.556725 0.727207 -0.401532 -0.195734 0.584594 0.787362 0.807308 -0.359751 0.467797 0.477442 0.781550 -0.401532 -0.255925 0.560860 0.787362 0.840566 -0.273158 0.467797 0.392901 0.827286 -0.401532 -0.313298 0.530948 0.787362 0.864565 -0.183556 0.467797 0.304895 0.863604 -0.401532 -0.366724 0.495555 0.787362 0.878950 -0.092811 0.467797 0.212704 0.890803 -0.401532 -0.416642 0.454390 0.787362 0.883836 -0.000180 0.467797 0.118170 0.908189 -0.401532 -0.461971 0.408221 0.787362 0.878987 0.092453 0.467797 0.022335 0.915573 -0.401532 -0.502211 0.357555 0.787362 0.864456 0.184068 0.467797 -0.072834 0.912944 -0.401532 -0.536616 0.303487 0.787362 0.840677 0.272815 0.467797 -0.168116 0.900283 -0.401532 -0.565469 0.245574 0.787362 0.807454 0.359422 0.467797 -0.261546 0.877705 -0.401532 -0.588092 0.184957 0.787362 0.765337 0.442069 0.467797 -0.352096 0.845459 -0.401532 -0.604238 0.122302 0.787362 0.714790 0.519847 0.467797 -0.437963 0.804339 -0.401532 -0.613670 0.058913 0.787362 0.656961 0.591243 0.467797 -0.519851 0.754008 -0.401532 -0.616465 -0.005728 0.787362 0.591377 0.656841 0.467797 -0.596013 0.695371 -0.401532 -0.612469 -0.070307 0.787362 0.519278 0.715204 0.467797 -0.664981 0.629740 -0.401532 -0.601861 -0.133509 0.787362 0.442225 0.765247 0.467797 -0.727320 0.556577 -0.401532 -0.584554 -0.195853 0.787362 0.359586 0.807381 0.467797 -0.781648 0.477283 -0.401532 -0.560808 -0.256040 0.787362 0.272987 0.840622 0.467797 -0.827366 0.392732 -0.401532 -0.530884 -0.313406 0.787362 0.183380 0.864603 0.467797 -0.863666 0.304719 -0.401532 -0.495480 -0.366825 0.787362 0.092632 0.878968 0.467797 -0.890846 0.212523 -0.401532 -0.454306 -0.416735 0.787362 0.000000 0.883836 0.467797 -0.908213 0.117985 -0.401532 -0.408127 -0.462054 0.787362 -0.092632 0.878968 0.467797 -0.915555 0.023064 -0.401532 -0.357955 -0.501926 0.787362 -0.183380 0.864603 0.467797 -0.912930 -0.073020 -0.401532 -0.303378 -0.536678 0.787362 -0.272987 0.840622 0.467797 -0.900249 -0.168299 -0.401532 -0.245459 -0.565519 0.787362 -0.359586 0.807381 0.467797 -0.877652 -0.261725 -0.401532 -0.184837 -0.588130 0.787362 -0.442225 0.765247 0.467797 -0.845739 -0.351422 -0.401532 -0.122783 -0.604141 0.787362 -0.519278 0.715204 0.467797 -0.804250 -0.438126 -0.401532 -0.058788 -0.613682 0.787362 -0.591377 0.656841 0.467797 -0.753902 -0.520005 -0.401532 0.005854 -0.616463 0.787362 -0.656961 0.591243 0.467797 -0.695845 -0.595459 -0.401532 0.069819 -0.612525 0.787362 -0.714790 0.519847 0.467797 -0.629604 -0.665110 -0.401532 0.133631 -0.601834 0.787362 -0.765337 0.442069 0.467797 -0.556429 -0.727433 -0.401532 0.195972 -0.584514 0.787362 -0.807454 0.359422 0.467797 -0.477124 -0.781745 -0.401532 0.256154 -0.560756 0.787362 -0.840677 0.272815 0.467797 -0.393391 -0.827052 -0.401532 0.312983 -0.531134 0.787362 -0.864456 0.184068 0.467797 -0.304543 -0.863728 -0.401532 0.366926 -0.495406 0.787362 -0.878987 0.092453 0.467797 -0.092475 0.334219 0.937948 0.032579 0.942495 -0.332627 -0.995182 -0.000203 -0.098046 -0.126995 0.322686 0.937948 -0.066381 0.940719 -0.332627 -0.989680 -0.104504 -0.098046 -0.159807 0.307759 0.937948 -0.163681 0.928745 -0.332627 -0.973484 -0.206680 -0.098046 -0.191182 0.289315 0.937948 -0.260119 0.906475 -0.332627 -0.946461 -0.307570 -0.098046 -0.220452 0.267684 0.937948 -0.353691 0.874221 -0.332627 -0.909012 -0.405072 -0.098046 -0.247050 0.243352 0.937948 -0.442535 0.832779 -0.332627 -0.862049 -0.497250 -0.098046 -0.271194 0.216120 0.937948 -0.527379 0.781812 -0.332627 -0.805186 -0.584861 -0.098046 -0.292351 0.186506 0.937948 -0.606414 0.722233 -0.332627 -0.739454 -0.666029 -0.098046 -0.310289 0.154839 0.937948 -0.678770 0.654699 -0.332627 -0.665577 -0.739861 -0.098046 -0.324686 0.121790 0.937948 -0.743068 0.580697 -0.332627 -0.585174 -0.804959 -0.098046 -0.335662 0.087090 0.937948 -0.799837 0.499620 -0.332627 -0.497586 -0.861856 -0.098046 -0.342941 0.051430 0.937948 -0.847796 0.413039 -0.332627 -0.404517 -0.909260 -0.098046 -0.346428 0.015551 0.937948 -0.886094 0.322796 -0.332627 -0.307938 -0.946341 -0.098046 -0.346150 -0.020843 0.937948 -0.915045 0.228149 -0.332627 -0.207059 -0.973403 -0.098046 -0.342059 -0.057007 0.937948 -0.933917 0.130989 -0.332627 -0.103899 -0.989743 -0.098046 -0.334275 -0.092271 0.937948 -0.942475 0.033155 -0.332627 -0.000405 -0.995182 -0.098046 -0.322764 -0.126797 0.937948 -0.940760 -0.065806 -0.332627 0.103899 -0.989743 -0.098046 -0.307697 -0.159927 0.937948 -0.928681 -0.164042 -0.332627 0.207059 -0.973403 -0.098046 -0.289241 -0.191295 0.937948 -0.906374 -0.260471 -0.332627 0.307938 -0.946341 -0.098046 -0.267819 -0.220288 0.937948 -0.874437 -0.353157 -0.332627 0.404517 -0.909260 -0.098046 -0.243256 -0.247144 0.937948 -0.832607 -0.442859 -0.332627 0.497586 -0.861856 -0.098046 -0.216014 -0.271278 0.937948 -0.781607 -0.527683 -0.332627 0.585174 -0.804959 -0.098046 -0.186685 -0.292237 0.937948 -0.722604 -0.605973 -0.332627 0.665577 -0.739861 -0.098046 -0.155028 -0.310194 0.937948 -0.655114 -0.678370 -0.332627 0.739454 -0.666029 -0.098046 -0.121664 -0.324734 0.937948 -0.580408 -0.743294 -0.332627 0.805186 -0.584861 -0.098046 -0.086959 -0.335696 0.937948 -0.499309 -0.800031 -0.332627 0.862049 -0.497250 -0.098046 -0.051640 -0.342910 0.937948 -0.413557 -0.847543 -0.332627 0.909012 -0.405072 -0.098046 -0.015416 -0.346434 0.937948 -0.322451 -0.886219 -0.332627 0.946461 -0.307570 -0.098046 0.020978 -0.346141 0.937948 -0.227793 -0.915134 -0.332627 0.973484 -0.206680 -0.098046 0.056798 -0.342093 0.937948 -0.131560 -0.933837 -0.332627 0.989680 -0.104504 -0.098046 0.092339 -0.334257 0.937948 -0.032963 -0.942482 -0.332627 0.995182 -0.000203 -0.098046 0.126863 -0.322738 0.937948 0.065998 -0.940746 -0.332627 0.989722 0.104101 -0.098046 0.159990 -0.307664 0.937948 0.164231 -0.928648 -0.332627 0.973361 0.207257 -0.098046 0.191065 -0.289393 0.937948 0.259749 -0.906581 -0.332627 0.946586 0.307185 -0.098046 0.220343 -0.267774 0.937948 0.353335 -0.874365 -0.332627 0.909177 0.404702 -0.098046 0.247194 -0.243206 0.937948 0.443029 -0.832517 -0.332627 0.861755 0.497761 -0.098046 0.271322 -0.215959 0.937948 0.527842 -0.781499 -0.332627 0.804839 0.585338 -0.098046 0.292275 -0.186625 0.937948 0.606120 -0.722480 -0.332627 0.739725 0.665728 -0.098046 0.310225 -0.154965 0.937948 0.678503 -0.654975 -0.332627 0.665878 0.739590 -0.098046 0.324758 -0.121598 0.937948 0.743412 -0.580256 -0.332627 0.584697 0.805305 -0.098046 0.335627 -0.087227 0.937948 0.799633 -0.499945 -0.332627 0.497937 0.861653 -0.098046 0.342920 -0.051570 0.937948 0.847627 -0.413385 -0.332627 0.404887 0.909095 -0.098046 0.346437 -0.015345 0.937948 0.886285 -0.322271 -0.332627 0.307377 0.946523 -0.098046 0.346137 0.021048 0.937948 0.915180 -0.227607 -0.332627 0.206482 0.973526 -0.098046 0.342082 0.056868 0.937948 0.933864 -0.131370 -0.332627 0.104302 0.989701 -0.098046 0.334238 0.092407 0.937948 0.942489 -0.032771 -0.332627 0.000000 0.995182 -0.098046 0.322712 0.126929 0.937948 0.940733 0.066189 -0.332627 -0.104302 0.989701 -0.098046 0.307792 0.159745 0.937948 0.928779 0.163492 -0.332627 -0.206482 0.973526 -0.098046 0.289354 0.191124 0.937948 0.906528 0.259934 -0.332627 -0.307377 0.946523 -0.098046 0.267729 0.220397 0.937948 0.874293 0.353513 -0.332627 -0.404887 0.909095 -0.098046 0.243156 0.247243 0.937948 0.832427 0.443198 -0.332627 -0.497937 0.861653 -0.098046 0.216175 0.271150 0.937948 0.781920 0.527220 -0.332627 -0.584697 0.805305 -0.098046 0.186566 0.292313 0.937948 0.722357 0.606267 -0.332627 -0.665878 0.739590 -0.098046 0.154902 0.310257 0.937948 0.654837 0.678636 -0.332627 -0.739725 0.665728 -0.098046 0.121856 0.324661 0.937948 0.580848 0.742950 -0.332627 -0.804839 0.585338 -0.098046 0.087158 0.335645 0.937948 0.499783 0.799735 -0.332627 -0.861755 0.497761 -0.098046 0.051500 0.342931 0.937948 0.413212 0.847712 -0.332627 -0.909177 0.404702 -0.098046 0.015275 0.346440 0.937948 0.322090 0.886350 -0.332627 -0.946586 0.307185 -0.098046 -0.020772 0.346154 0.937948 0.228336 0.914998 -0.332627 -0.973361 0.207257 -0.098046 -0.056937 0.342070 0.937948 0.131180 0.933890 -0.332627 -0.989722 0.104101 -0.098046 0.329792 0.602700 -0.726629 0.249301 -0.797968 -0.548722 -0.910542 -0.000185 -0.413417 0.264808 0.633945 -0.726629 0.331561 -0.767444 -0.548722 -0.905508 -0.095616 -0.413417 0.197566 0.658010 -0.726629 0.409440 -0.728878 -0.548722 -0.890689 -0.189102 -0.413417 0.127514 0.675093 -0.726629 0.483577 -0.681951 -0.548722 -0.865964 -0.281411 -0.413417 0.056057 0.684739 -0.726629 0.552387 -0.627513 -0.548722 -0.831701 -0.370621 -0.413417 -0.015331 0.686859 -0.726629 0.614546 -0.566778 -0.548722 -0.788732 -0.454959 -0.413417 -0.087234 0.681469 -0.726629 0.670564 -0.499248 -0.548722 -0.736705 -0.535118 -0.413417 -0.158176 0.668573 -0.726629 0.719195 -0.426218 -0.548722 -0.676564 -0.609383 -0.413417 -0.227377 0.648313 -0.726629 0.759905 -0.348494 -0.548722 -0.608970 -0.676936 -0.413417 -0.293451 0.621206 -0.726629 0.791977 -0.267723 -0.548722 -0.535405 -0.736497 -0.413417 -0.356942 0.587029 -0.726629 0.815675 -0.183244 -0.548722 -0.455266 -0.788555 -0.413417 -0.416501 0.546385 -0.726629 0.830388 -0.096746 -0.548722 -0.370112 -0.831927 -0.413417 -0.470972 0.500195 -0.726629 0.835945 -0.010019 -0.548722 -0.281748 -0.865855 -0.413417 -0.520802 0.448079 -0.726629 0.832391 0.077650 -0.548722 -0.189449 -0.890615 -0.413417 -0.564896 0.391028 -0.726629 0.819668 0.164462 -0.548722 -0.095062 -0.905566 -0.413417 -0.602498 0.330160 -0.726629 0.798120 0.248814 -0.548722 -0.000371 -0.910542 -0.413417 -0.633783 0.265195 -0.726629 0.767647 0.331092 -0.548722 0.095062 -0.905566 -0.413417 -0.658087 0.197310 -0.726629 0.728718 0.409723 -0.548722 0.189449 -0.890615 -0.413417 -0.675142 0.127251 -0.726629 0.681763 0.483842 -0.548722 0.281748 -0.865855 -0.413417 -0.684705 0.056475 -0.726629 0.627850 0.552003 -0.548722 0.370112 -0.831927 -0.413417 -0.686853 -0.015598 -0.726629 0.566539 0.614766 -0.548722 0.455266 -0.788555 -0.413417 -0.681435 -0.087499 -0.726629 0.498987 0.670758 -0.548722 0.535405 -0.736497 -0.413417 -0.668670 -0.157768 -0.726629 0.426657 0.718935 -0.548722 0.608970 -0.676936 -0.413417 -0.648452 -0.226980 -0.726629 0.348958 0.759692 -0.548722 0.676564 -0.609383 -0.413417 -0.621091 -0.293693 -0.726629 0.267415 0.792081 -0.548722 0.736705 -0.535118 -0.413417 -0.586890 -0.357170 -0.726629 0.182927 0.815746 -0.548722 0.788732 -0.454959 -0.413417 -0.546640 -0.416167 -0.726629 0.097253 0.830329 -0.548722 0.831701 -0.370621 -0.413417 -0.500012 -0.471167 -0.726629 0.009693 0.835948 -0.548722 0.865964 -0.281411 -0.413417 -0.447877 -0.520976 -0.726629 -0.077973 0.832360 -0.548722 0.890689 -0.189102 -0.413417 -0.391373 -0.564657 -0.726629 -0.163962 0.819768 -0.548722 0.905508 -0.095616 -0.413417 -0.330037 -0.602566 -0.726629 -0.248976 0.798069 -0.548722 0.910542 -0.000185 -0.413417 -0.265066 -0.633837 -0.726629 -0.331248 0.767579 -0.548722 0.905546 0.095247 -0.413417 -0.197176 -0.658127 -0.726629 -0.409872 0.728635 -0.548722 0.890577 0.189630 -0.413417 -0.127788 -0.675041 -0.726629 -0.483299 0.682148 -0.548722 0.866079 0.281059 -0.413417 -0.056336 -0.684716 -0.726629 -0.552131 0.627738 -0.548722 0.831852 0.370282 -0.413417 0.015738 -0.686850 -0.726629 -0.614882 0.566414 -0.548722 0.788462 0.455427 -0.413417 0.087638 -0.681417 -0.726629 -0.670859 0.498850 -0.548722 0.736388 0.535555 -0.413417 0.157904 -0.668638 -0.726629 -0.719022 0.426511 -0.548722 0.676812 0.609108 -0.413417 0.227112 -0.648406 -0.726629 -0.759763 0.348803 -0.548722 0.609245 0.676688 -0.413417 0.293819 -0.621032 -0.726629 -0.792136 0.267254 -0.548722 0.534968 0.736814 -0.413417 0.356703 -0.587174 -0.726629 -0.815600 0.183576 -0.548722 0.455587 0.788370 -0.413417 0.416278 -0.546555 -0.726629 -0.830348 0.097084 -0.548722 0.370451 0.831776 -0.413417 0.471268 -0.499916 -0.726629 -0.835950 0.009523 -0.548722 0.281235 0.866022 -0.413417 0.521068 -0.447771 -0.726629 -0.832345 -0.078143 -0.548722 0.188921 0.890727 -0.413417 0.564737 -0.391258 -0.726629 -0.819735 -0.164129 -0.548722 0.095431 0.905527 -0.413417 0.602633 -0.329914 -0.726629 -0.798019 -0.249139 -0.548722 0.000000 0.910542 -0.413417 0.633891 -0.264937 -0.726629 -0.767512 -0.331405 -0.548722 -0.095431 0.905527 -0.413417 0.657970 -0.197700 -0.726629 -0.728961 -0.409291 -0.548722 -0.188921 0.890727 -0.413417 0.675067 -0.127651 -0.726629 -0.682050 -0.483438 -0.548722 -0.281235 0.866022 -0.413417 0.684728 -0.056196 -0.726629 -0.627626 -0.552259 -0.548722 -0.370451 0.831776 -0.413417 0.686846 0.015878 -0.726629 -0.566288 -0.614997 -0.548722 -0.455587 0.788370 -0.413417 0.681487 0.087095 -0.726629 -0.499384 -0.670462 -0.548722 -0.534968 0.736814 -0.413417 0.668605 0.158040 -0.726629 -0.426365 -0.719108 -0.548722 -0.609245 0.676688 -0.413417 0.648359 0.227245 -0.726629 -0.348649 -0.759834 -0.548722 -0.676812 0.609108 -0.413417 0.621265 0.293325 -0.726629 -0.267884 -0.791923 -0.548722 -0.736388 0.535555 -0.413417 0.587101 0.356822 -0.726629 -0.183410 -0.815637 -0.548722 -0.788462 0.455427 -0.413417 0.546470 0.416389 -0.726629 -0.096915 -0.830368 -0.548722 -0.831852 0.370282 -0.413417 0.499820 0.471370 -0.726629 -0.009353 -0.835952 -0.548722 -0.866079 0.281059 -0.413417 0.448185 0.520711 -0.726629 0.077480 -0.832406 -0.548722 -0.890577 0.189630 -0.413417 0.391143 0.564816 -0.726629 0.164295 -0.819702 -0.548722 -0.905546 0.095247 -0.413417 -0.368249 0.124398 0.921367 0.045991 0.992232 -0.115584 -0.928589 -0.000189 -0.371110 -0.379258 0.085117 0.921367 -0.058255 0.991588 -0.115584 -0.923455 -0.097511 -0.371110 -0.386046 0.045286 0.921367 -0.160880 0.980183 -0.115584 -0.908343 -0.192850 -0.371110 -0.388666 0.004576 0.921367 -0.262724 0.957923 -0.115584 -0.883128 -0.286989 -0.371110 -0.387005 -0.036184 0.921367 -0.361674 0.925112 -0.115584 -0.848186 -0.377967 -0.371110 -0.381157 -0.076165 0.921367 -0.455759 0.882567 -0.115584 -0.804365 -0.463977 -0.371110 -0.371076 -0.115693 0.921367 -0.545748 0.829940 -0.115584 -0.751307 -0.545725 -0.371110 -0.356906 -0.153947 0.921367 -0.629726 0.768170 -0.115584 -0.689973 -0.621461 -0.371110 -0.338806 -0.190506 0.921367 -0.706767 0.697940 -0.115584 -0.621040 -0.690353 -0.371110 -0.317198 -0.224649 0.921367 -0.775404 0.620798 -0.115584 -0.546017 -0.751095 -0.371110 -0.291907 -0.256656 0.921367 -0.836197 0.536111 -0.115584 -0.464290 -0.804185 -0.371110 -0.263400 -0.285837 0.921367 -0.887780 0.445519 -0.115584 -0.377448 -0.848416 -0.371110 -0.232303 -0.311637 0.921367 -0.929234 0.350949 -0.115584 -0.287333 -0.883016 -0.371110 -0.198362 -0.334267 0.921367 -0.960898 0.251626 -0.115584 -0.193204 -0.908268 -0.371110 -0.162236 -0.353216 0.921367 -0.981978 0.149531 -0.115584 -0.096947 -0.923514 -0.371110 -0.124623 -0.368173 0.921367 -0.992204 0.046597 -0.115584 -0.000378 -0.928589 -0.371110 -0.085349 -0.379206 0.921367 -0.991623 -0.057650 -0.115584 0.096947 -0.923514 -0.371110 -0.045136 -0.386063 0.921367 -0.980120 -0.161261 -0.115584 0.193204 -0.908268 -0.371110 -0.004425 -0.388667 0.921367 -0.957821 -0.263097 -0.115584 0.287333 -0.883016 -0.371110 0.035948 -0.387027 0.921367 -0.925333 -0.361109 -0.115584 0.377448 -0.848416 -0.371110 0.076313 -0.381128 0.921367 -0.882390 -0.456102 -0.115584 0.464290 -0.804185 -0.371110 0.115838 -0.371031 0.921367 -0.829727 -0.546071 -0.115584 0.546017 -0.751095 -0.371110 0.153729 -0.357000 0.921367 -0.768555 -0.629256 -0.115584 0.621040 -0.690353 -0.371110 0.190299 -0.338922 0.921367 -0.698372 -0.706341 -0.115584 0.689973 -0.621461 -0.371110 0.224772 -0.317111 0.921367 -0.620496 -0.775645 -0.115584 0.751307 -0.545725 -0.371110 0.256770 -0.291807 0.921367 -0.535785 -0.836406 -0.115584 0.804365 -0.463977 -0.371110 0.285676 -0.263574 0.921367 -0.446061 -0.887508 -0.115584 0.848186 -0.377967 -0.371110 0.311727 -0.232182 0.921367 -0.350587 -0.929370 -0.115584 0.883128 -0.286989 -0.371110 0.334344 -0.198232 0.921367 -0.251252 -0.960996 -0.115584 0.908343 -0.192850 -0.371110 0.353117 -0.162452 0.921367 -0.150131 -0.981887 -0.115584 0.923455 -0.097511 -0.371110 0.368198 -0.124548 0.921367 -0.046395 -0.992214 -0.115584 0.928589 -0.000189 -0.371110 0.379224 -0.085272 0.921367 0.057852 -0.991612 -0.115584 0.923495 0.097135 -0.371110 0.386072 -0.045057 0.921367 0.161461 -0.980087 -0.115584 0.908228 0.193389 -0.371110 0.388664 -0.004734 0.921367 0.262334 -0.958030 -0.115584 0.883245 0.286629 -0.371110 0.387019 0.036027 0.921367 0.361298 -0.925259 -0.115584 0.848340 0.377621 -0.371110 0.381112 0.076391 0.921367 0.456281 -0.882297 -0.115584 0.804090 0.464453 -0.371110 0.371007 0.115913 0.921367 0.546240 -0.829616 -0.115584 0.750983 0.546170 -0.371110 0.356969 0.153802 0.921367 0.629413 -0.768427 -0.115584 0.690226 0.621180 -0.371110 0.338884 0.190368 0.921367 0.706483 -0.698228 -0.115584 0.621321 0.690100 -0.371110 0.317065 0.224837 0.921367 0.775771 -0.620338 -0.115584 0.545572 0.751418 -0.371110 0.292011 0.256537 0.921367 0.835979 -0.536451 -0.115584 0.464617 0.803995 -0.371110 0.263516 0.285729 0.921367 0.887599 -0.445880 -0.115584 0.377794 0.848263 -0.371110 0.232118 0.311774 0.921367 0.929442 -0.350398 -0.115584 0.286809 0.883186 -0.371110 0.198164 0.334385 0.921367 0.961047 -0.251056 -0.115584 0.192665 0.908382 -0.371110 0.162380 0.353150 0.921367 0.981917 -0.149931 -0.115584 0.097323 0.923475 -0.371110 0.124473 0.368223 0.921367 0.992223 -0.046193 -0.115584 0.000000 0.928589 -0.371110 0.085195 0.379241 0.921367 0.991600 0.058053 -0.115584 -0.097323 0.923475 -0.371110 0.045364 0.386036 0.921367 0.980215 0.160680 -0.115584 -0.192665 0.908382 -0.371110 0.004655 0.388665 0.921367 0.957976 0.262529 -0.115584 -0.286809 0.883186 -0.371110 -0.036105 0.387012 0.921367 0.925186 0.361486 -0.115584 -0.377794 0.848263 -0.371110 -0.076468 0.381097 0.921367 0.882204 0.456461 -0.115584 -0.464617 0.803995 -0.371110 -0.115618 0.371099 0.921367 0.830051 0.545579 -0.115584 -0.545572 0.751418 -0.371110 -0.153875 0.356938 0.921367 0.768299 0.629569 -0.115584 -0.621321 0.690100 -0.371110 -0.190437 0.338845 0.921367 0.698084 0.706625 -0.115584 -0.690226 0.621180 -0.371110 -0.224584 0.317244 0.921367 0.620956 0.775277 -0.115584 -0.750983 0.546170 -0.371110 -0.256597 0.291959 0.921367 0.536281 0.836088 -0.115584 -0.804090 0.464453 -0.371110 -0.285783 0.263458 0.921367 0.445700 0.887689 -0.115584 -0.848340 0.377621 -0.371110 -0.311821 0.232055 0.921367 0.350209 0.929513 -0.115584 -0.883245 0.286629 -0.371110 -0.334227 0.198430 0.921367 0.251821 0.960847 -0.115584 -0.908228 0.193389 -0.371110 -0.353183 0.162308 0.921367 0.149731 0.981948 -0.115584 -0.923495 0.097135 -0.371110 0.056546 -0.990122 0.128303 0.398092 0.140211 0.906567 -0.915601 -0.000186 0.402088 0.160007 -0.978742 0.128303 0.381205 0.181162 0.906567 -0.910539 -0.096147 0.402088 0.260748 -0.956843 0.128303 0.360338 0.219757 0.906567 -0.895638 -0.190153 0.402088 0.359596 -0.924245 0.128303 0.335321 0.256313 0.906567 -0.870776 -0.282975 0.402088 0.454483 -0.881467 0.128303 0.306611 0.290045 0.906567 -0.836322 -0.372680 0.402088 0.543535 -0.829523 0.128303 0.274844 0.320308 0.906567 -0.793114 -0.457487 0.402088 0.627481 -0.767988 0.128303 0.239760 0.347350 0.906567 -0.740799 -0.538092 0.402088 0.704516 -0.697994 0.128303 0.202035 0.370565 0.906567 -0.680323 -0.612769 0.402088 0.773791 -0.620311 0.128303 0.162084 0.389699 0.906567 -0.612353 -0.680697 0.402088 0.834006 -0.536631 0.128303 0.120753 0.404420 0.906567 -0.538380 -0.740589 0.402088 0.885655 -0.446265 0.128303 0.077702 0.414848 0.906567 -0.457796 -0.792937 0.402088 0.927550 -0.350984 0.128303 0.033795 0.420707 0.906567 -0.372169 -0.836550 0.402088 0.958974 -0.252797 0.128303 -0.010063 0.421942 0.906567 -0.283314 -0.870665 0.402088 0.980188 -0.150897 0.128303 -0.054230 0.418564 0.906567 -0.190501 -0.895564 0.402088 0.990605 -0.047335 0.128303 -0.097800 0.410575 0.906567 -0.095591 -0.910597 0.402088 0.990156 0.055941 0.128303 -0.139968 0.398178 0.906567 -0.000373 -0.915601 0.402088 0.978840 0.159409 0.128303 -0.180929 0.381315 0.906567 0.095591 -0.910597 0.402088 0.956742 0.261120 0.128303 -0.219897 0.360253 0.906567 0.190501 -0.895564 0.402088 0.924105 0.359955 0.128303 -0.256443 0.335222 0.906567 0.283314 -0.870665 0.402088 0.881744 0.453944 0.128303 -0.289858 0.306789 0.906567 0.372169 -0.836550 0.402088 0.829311 0.543857 0.128303 -0.320415 0.274720 0.906567 0.457796 -0.792937 0.402088 0.767744 0.627780 0.128303 -0.347443 0.239625 0.906567 0.538380 -0.740589 0.402088 0.698424 0.704089 0.128303 -0.370442 0.202261 0.906567 0.612353 -0.680697 0.402088 0.620784 0.773412 0.128303 -0.389600 0.162322 0.906567 0.680323 -0.612769 0.402088 0.536306 0.834215 0.128303 -0.404467 0.120595 0.906567 0.740799 -0.538092 0.402088 0.445921 0.885829 0.128303 -0.414878 0.077540 0.906567 0.793114 -0.457487 0.402088 0.351551 0.927335 0.128303 -0.420686 0.034052 0.906567 0.836322 -0.372680 0.402088 0.252424 0.959073 0.128303 -0.421938 -0.010227 0.906567 0.870776 -0.282975 0.402088 0.150516 0.980247 0.128303 -0.418543 -0.054393 0.906567 0.895638 -0.190153 0.402088 0.047940 0.990576 0.128303 -0.410635 -0.097549 0.906567 0.910539 -0.096147 0.402088 -0.056143 0.990145 0.128303 -0.398149 -0.140049 0.906567 0.915601 -0.000186 0.402088 -0.159608 0.978807 0.128303 -0.381278 -0.181007 0.906567 0.910578 0.095776 0.402088 -0.261315 0.956688 0.128303 -0.360208 -0.219970 0.906567 0.895525 0.190684 0.402088 -0.359219 0.924392 0.128303 -0.335426 -0.256176 0.906567 0.870891 0.282620 0.402088 -0.454124 0.881652 0.128303 -0.306729 -0.289920 0.906567 0.836474 0.372339 0.402088 -0.544026 0.829201 0.128303 -0.274654 -0.320471 0.906567 0.792843 0.457957 0.402088 -0.627936 0.767616 0.128303 -0.239554 -0.347492 0.906567 0.740479 0.538531 0.402088 -0.704232 0.698281 0.128303 -0.202186 -0.370483 0.906567 0.680572 0.612492 0.402088 -0.773538 0.620627 0.128303 -0.162243 -0.389633 0.906567 0.612631 0.680448 0.402088 -0.834324 0.536136 0.128303 -0.120513 -0.404491 0.906567 0.537941 0.740908 0.402088 -0.885474 0.446626 0.128303 -0.077871 -0.414817 0.906567 0.458119 0.792750 0.402088 -0.927407 0.351362 0.128303 -0.033966 -0.420693 0.906567 0.372510 0.836398 0.402088 -0.959124 0.252228 0.128303 0.010313 -0.421936 0.906567 0.282798 0.870833 0.402088 -0.980277 0.150316 0.128303 0.054478 -0.418532 0.906567 0.189971 0.895676 0.402088 -0.990585 0.047739 0.128303 0.097632 -0.410615 0.906567 0.095962 0.910558 0.402088 -0.990133 -0.056345 0.128303 0.140130 -0.398121 0.906567 0.000000 0.915601 0.402088 -0.978775 -0.159807 0.128303 0.181084 -0.381242 0.906567 -0.095962 0.910558 0.402088 -0.956896 -0.260553 0.128303 0.219683 -0.360383 0.906567 -0.189971 0.895676 0.402088 -0.924318 -0.359408 0.128303 0.256244 -0.335374 0.906567 -0.282798 0.870833 0.402088 -0.881559 -0.454303 0.128303 0.289983 -0.306670 0.906567 -0.372510 0.836398 0.402088 -0.829090 -0.544195 0.128303 0.320527 -0.274589 0.906567 -0.458119 0.792750 0.402088 -0.768116 -0.627325 0.128303 0.347301 -0.239831 0.906567 -0.537941 0.740908 0.402088 -0.698137 -0.704374 0.128303 0.370524 -0.202110 0.906567 -0.612631 0.680448 0.402088 -0.620469 -0.773664 0.128303 0.389666 -0.162164 0.906567 -0.680572 0.612492 0.402088 -0.536800 -0.833897 0.128303 0.404395 -0.120835 0.906567 -0.740479 0.538531 0.402088 -0.446446 -0.885565 0.128303 0.414832 -0.077786 0.906567 -0.792843 0.457957 0.402088 -0.351173 -0.927478 0.128303 0.420700 -0.033880 0.906567 -0.836474 0.372339 0.402088 -0.252033 -0.959176 0.128303 0.421934 0.010399 0.906567 -0.870891 0.282620 0.402088 -0.151097 -0.980157 0.128303 0.418575 0.054144 0.906567 -0.895525 0.190684 0.402088 -0.047537 -0.990595 0.128303 0.410595 0.097716 0.906567 -0.910578 0.095776 0.402088 -0.789414 0.249952 0.560669 0.203713 0.968258 -0.144834 -0.579074 -0.000118 -0.815275 -0.811263 0.165839 0.560669 0.101111 0.984276 -0.144834 -0.575873 -0.060808 -0.815275 -0.824096 0.080723 0.560669 -0.001616 0.989455 -0.144834 -0.566448 -0.120263 -0.815275 -0.828017 -0.006092 0.560669 -0.105309 0.983836 -0.144834 -0.550724 -0.178968 -0.815275 -0.822819 -0.092841 0.560669 -0.207842 0.967380 -0.144834 -0.528934 -0.235702 -0.815275 -0.808735 -0.177758 0.560669 -0.307145 0.940577 -0.144834 -0.501607 -0.289339 -0.815275 -0.785650 -0.261540 0.560669 -0.404033 0.903206 -0.144834 -0.468520 -0.340317 -0.815275 -0.753912 -0.342442 0.560669 -0.496470 0.855886 -0.144834 -0.430272 -0.387547 -0.815275 -0.713870 -0.419571 0.560669 -0.583439 0.799139 -0.144834 -0.387285 -0.430509 -0.815275 -0.666456 -0.491413 0.560669 -0.663247 0.734252 -0.144834 -0.340500 -0.468388 -0.815275 -0.611282 -0.558556 0.560669 -0.736549 0.660695 -0.144834 -0.289534 -0.501495 -0.815275 -0.549374 -0.619546 0.560669 -0.801738 0.579861 -0.144834 -0.235379 -0.529078 -0.815275 -0.482089 -0.673231 0.560669 -0.857603 0.493498 -0.144834 -0.179182 -0.550655 -0.815275 -0.408875 -0.720049 0.560669 -0.904602 0.400897 -0.144834 -0.120483 -0.566402 -0.815275 -0.331157 -0.758937 0.560669 -0.941637 0.303880 -0.144834 -0.060457 -0.575910 -0.815275 -0.250434 -0.789261 0.560669 -0.968134 0.204305 -0.144834 -0.000236 -0.579074 -0.815275 -0.166334 -0.811161 0.560669 -0.984214 0.101712 -0.144834 0.060457 -0.575910 -0.815275 -0.080403 -0.824127 0.560669 -0.989454 -0.002001 -0.144834 0.120483 -0.566402 -0.815275 0.006414 -0.828015 0.560669 -0.983795 -0.105692 -0.144834 0.179182 -0.550655 -0.815275 0.092338 -0.822875 0.560669 -0.967507 -0.207251 -0.144834 0.235379 -0.529078 -0.815275 0.178073 -0.808666 0.560669 -0.940457 -0.307511 -0.144834 0.289534 -0.501495 -0.815275 0.261846 -0.785549 0.560669 -0.903049 -0.404384 -0.144834 0.340500 -0.468388 -0.815275 0.341981 -0.754121 0.560669 -0.856189 -0.495947 -0.144834 0.387285 -0.430509 -0.815275 0.419135 -0.714126 0.560669 -0.799495 -0.582951 -0.144834 0.430272 -0.387547 -0.815275 0.491672 -0.666264 0.560669 -0.733994 -0.663533 -0.144834 0.468520 -0.340317 -0.815275 0.558793 -0.611064 0.560669 -0.660409 -0.736806 -0.144834 0.501607 -0.289339 -0.815275 0.619210 -0.549753 0.560669 -0.580351 -0.801384 -0.144834 0.528934 -0.235702 -0.815275 0.673418 -0.481827 0.560669 -0.493164 -0.857795 -0.144834 0.550724 -0.178968 -0.815275 0.720208 -0.408595 0.560669 -0.400545 -0.904758 -0.144834 0.566448 -0.120263 -0.815275 0.758734 -0.331620 0.560669 -0.304455 -0.941451 -0.144834 0.575873 -0.060808 -0.815275 0.789312 -0.250273 0.560669 -0.204108 -0.968175 -0.144834 0.579074 -0.000118 -0.815275 0.811195 -0.166169 0.560669 -0.101512 -0.984235 -0.144834 0.575897 0.060574 -0.815275 0.824143 -0.080235 0.560669 0.002202 -0.989454 -0.144834 0.566377 0.120598 -0.815275 0.828020 0.005755 0.560669 0.104908 -0.983879 -0.144834 0.550797 0.178744 -0.815275 0.822856 0.092506 0.560669 0.207448 -0.967465 -0.144834 0.529030 0.235487 -0.815275 0.808629 0.178237 0.560669 0.307703 -0.940395 -0.144834 0.501436 0.289636 -0.815275 0.785495 0.262006 0.560669 0.404568 -0.902966 -0.144834 0.468318 0.340595 -0.815275 0.754052 0.342135 0.560669 0.496121 -0.856088 -0.144834 0.430430 0.387372 -0.815275 0.714040 0.419280 0.560669 0.583113 -0.799376 -0.144834 0.387460 0.430351 -0.815275 0.666164 0.491808 0.560669 0.663682 -0.733859 -0.144834 0.340222 0.468589 -0.815275 0.611509 0.558307 0.560669 0.736280 -0.660995 -0.144834 0.289738 0.501377 -0.815275 0.549627 0.619322 0.560669 0.801502 -0.580188 -0.144834 0.235595 0.528982 -0.815275 0.481690 0.673516 0.560669 0.857896 -0.492989 -0.144834 0.178856 0.550761 -0.815275 0.408448 0.720292 0.560669 0.904840 -0.400360 -0.144834 0.120147 0.566473 -0.815275 0.331466 0.758802 0.560669 0.941513 -0.304263 -0.144834 0.060691 0.575885 -0.815275 0.250112 0.789363 0.560669 0.968217 -0.203910 -0.144834 0.000000 0.579074 -0.815275 0.166004 0.811229 0.560669 0.984256 -0.101311 -0.144834 -0.060691 0.575885 -0.815275 0.080891 0.824079 0.560669 0.989455 0.001414 -0.144834 -0.120147 0.566473 -0.815275 -0.005924 0.828019 0.560669 0.983857 0.105108 -0.144834 -0.178856 0.550761 -0.815275 -0.092673 0.822837 0.560669 0.967423 0.207645 -0.144834 -0.235595 0.528982 -0.815275 -0.178402 0.808593 0.560669 0.940332 0.307894 -0.144834 -0.289738 0.501377 -0.815275 -0.261380 0.785704 0.560669 0.903288 0.403849 -0.144834 -0.340222 0.468589 -0.815275 -0.342288 0.753982 0.560669 0.855987 0.496296 -0.144834 -0.387460 0.430351 -0.815275 -0.419426 0.713955 0.560669 0.799257 0.583276 -0.144834 -0.430430 0.387372 -0.815275 -0.491277 0.666556 0.560669 0.734387 0.663098 -0.144834 -0.468318 0.340595 -0.815275 -0.558431 0.611395 0.560669 0.660845 0.736415 -0.144834 -0.501436 0.289636 -0.815275 -0.619434 0.549501 0.560669 0.580024 0.801620 -0.144834 -0.529030 0.235487 -0.815275 -0.673614 0.481553 0.560669 0.492814 0.857996 -0.144834 -0.550797 0.178744 -0.815275 -0.719966 0.409022 0.560669 0.401081 0.904521 -0.144834 -0.566377 0.120598 -0.815275 -0.758869 0.331311 0.560669 0.304072 0.941575 -0.144834 -0.575897 0.060574 -0.815275 -0.125175 -0.987158 0.099247 -0.774018 0.159746 0.612680 -0.620667 -0.000126 -0.784074 -0.021024 -0.994841 0.099247 -0.786498 0.077743 0.612680 -0.617235 -0.065176 -0.784074 0.082366 -0.991648 0.099247 -0.790319 -0.004325 0.612680 -0.607134 -0.128901 -0.784074 0.185844 -0.977554 0.099247 -0.785513 -0.087132 0.612680 -0.590281 -0.191823 -0.784074 0.287276 -0.952692 0.099247 -0.772055 -0.168980 0.612680 -0.566925 -0.252632 -0.784074 0.384625 -0.917722 0.099247 -0.750341 -0.248216 0.612680 -0.537636 -0.310121 -0.784074 0.478690 -0.872356 0.099247 -0.720194 -0.325490 0.612680 -0.502172 -0.364761 -0.784074 0.567483 -0.817382 0.099247 -0.682114 -0.399179 0.612680 -0.461177 -0.415383 -0.784074 0.650025 -0.753404 0.099247 -0.636520 -0.468471 0.612680 -0.415102 -0.461430 -0.784074 0.724726 -0.681852 0.099247 -0.584448 -0.532018 0.612680 -0.364956 -0.502030 -0.784074 0.792198 -0.602140 0.099247 -0.525469 -0.590343 0.612680 -0.310330 -0.537515 -0.784074 0.850943 -0.515796 0.099247 -0.460703 -0.642164 0.612680 -0.252286 -0.567080 -0.784074 0.899892 -0.424671 0.099247 -0.391549 -0.686521 0.612680 -0.192052 -0.590206 -0.784074 0.939444 -0.328017 0.099247 -0.317441 -0.723778 0.612680 -0.129137 -0.607084 -0.784074 0.968649 -0.227750 0.099247 -0.239835 -0.753062 0.612680 -0.064799 -0.617275 -0.784074 0.987082 -0.125778 0.099247 -0.160219 -0.773920 0.612680 -0.000253 -0.620667 -0.784074 0.994828 -0.021632 0.099247 -0.078224 -0.786450 0.612680 0.064799 -0.617275 -0.784074 0.991616 0.082752 0.099247 0.004633 -0.790317 0.612680 0.129137 -0.607084 -0.784074 0.977482 0.186225 0.099247 0.087438 -0.785479 0.612680 0.192052 -0.590206 -0.784074 0.952868 0.286693 0.099247 0.168508 -0.772158 0.612680 0.252286 -0.567080 -0.784074 0.917572 0.384982 0.099247 0.248508 -0.750244 0.612680 0.310330 -0.537515 -0.784074 0.872170 0.479030 0.099247 0.325770 -0.720067 0.612680 0.364956 -0.502030 -0.784074 0.817728 0.566984 0.099247 0.398762 -0.682357 0.612680 0.415102 -0.461430 -0.784074 0.753801 0.649565 0.099247 0.468082 -0.636806 0.612680 0.461177 -0.415383 -0.784074 0.681570 0.724991 0.099247 0.532246 -0.584241 0.612680 0.502172 -0.364761 -0.784074 0.601832 0.792432 0.099247 0.590547 -0.525240 0.612680 0.537636 -0.310121 -0.784074 0.516316 0.850628 0.099247 0.641883 -0.461096 0.612680 0.566925 -0.252632 -0.784074 0.424320 0.900057 0.099247 0.686674 -0.391282 0.612680 0.590281 -0.191823 -0.784074 0.327651 0.939572 0.099247 0.723901 -0.317159 0.612680 0.607134 -0.128901 -0.784074 0.228341 0.968509 0.099247 0.752915 -0.240295 0.612680 0.617235 -0.065176 -0.784074 0.125577 0.987107 0.099247 0.773953 -0.160061 0.612680 0.620667 -0.000126 -0.784074 0.021430 0.994832 0.099247 0.786466 -0.078064 0.612680 0.617262 0.064925 -0.784074 -0.082954 0.991599 0.099247 0.790316 0.004794 0.612680 0.607058 0.129261 -0.784074 -0.185446 0.977630 0.099247 0.785548 0.086813 0.612680 0.590359 0.191582 -0.784074 -0.286888 0.952809 0.099247 0.772123 0.168666 0.612680 0.567028 0.252401 -0.784074 -0.385169 0.917494 0.099247 0.750194 0.248661 0.612680 0.537452 0.310440 -0.784074 -0.479207 0.872072 0.099247 0.720001 0.325917 0.612680 0.501956 0.365059 -0.784074 -0.567150 0.817613 0.099247 0.682276 0.398901 0.612680 0.461346 0.415195 -0.784074 -0.649718 0.753668 0.099247 0.636711 0.468212 0.612680 0.415289 0.461261 -0.784074 -0.725130 0.681423 0.099247 0.584132 0.532365 0.612680 0.364659 0.502246 -0.784074 -0.791952 0.602463 0.099247 0.525710 0.590129 0.612680 0.310549 0.537389 -0.784074 -0.850733 0.516143 0.099247 0.460965 0.641977 0.612680 0.252517 0.566977 -0.784074 -0.900143 0.424137 0.099247 0.391142 0.686753 0.612680 0.191703 0.590320 -0.784074 -0.939638 0.327460 0.099247 0.317012 0.723966 0.612680 0.128777 0.607160 -0.784074 -0.968556 0.228144 0.099247 0.240142 0.752964 0.612680 0.065050 0.617248 -0.784074 -0.987133 0.125376 0.099247 0.159903 0.773986 0.612680 0.000000 0.620667 -0.784074 -0.994836 0.021227 0.099247 0.077903 0.786482 0.612680 -0.065050 0.617248 -0.784074 -0.991665 -0.082164 0.099247 -0.004164 0.790320 0.612680 -0.128777 0.607160 -0.784074 -0.977592 -0.185645 0.099247 -0.086972 0.785531 0.612680 -0.191703 0.590320 -0.784074 -0.952751 -0.287082 0.099247 -0.168823 0.772089 0.612680 -0.252517 0.566977 -0.784074 -0.917415 -0.385356 0.099247 -0.248813 0.750143 0.612680 -0.310549 0.537389 -0.784074 -0.872454 -0.478513 0.099247 -0.325343 0.720260 0.612680 -0.364659 0.502246 -0.784074 -0.817497 -0.567317 0.099247 -0.399040 0.682195 0.612680 -0.415289 0.461261 -0.784074 -0.753536 -0.649872 0.099247 -0.468341 0.636615 0.612680 -0.461346 0.415195 -0.784074 -0.682000 -0.724587 0.099247 -0.531899 0.584556 0.612680 -0.501956 0.365059 -0.784074 -0.602302 -0.792075 0.099247 -0.590236 0.525590 0.612680 -0.537452 0.310440 -0.784074 -0.515970 -0.850838 0.099247 -0.642071 0.460834 0.612680 -0.567028 0.252401 -0.784074 -0.423954 -0.900230 0.099247 -0.686833 0.391003 0.612680 -0.590359 0.191582 -0.784074 -0.328208 -0.939377 0.099247 -0.723713 0.317588 0.612680 -0.607058 0.129261 -0.784074 -0.227947 -0.968602 0.099247 -0.753013 0.239989 0.612680 -0.617262 0.064925 -0.784074 0.147080 0.907321 0.393873 -0.317829 0.420439 -0.849833 -0.936671 -0.000191 0.350211 0.051176 0.917739 0.393873 -0.360143 0.384812 -0.849833 -0.931492 -0.098360 0.350211 -0.044373 0.918093 0.393873 -0.398146 0.345346 -0.849833 -0.916248 -0.194529 0.350211 -0.140351 0.908386 0.393873 -0.432148 0.301715 -0.849833 -0.890814 -0.289487 0.350211 -0.234784 0.888673 0.393873 -0.461390 0.254761 -0.849833 -0.855568 -0.381256 0.350211 -0.325771 0.859498 0.393873 -0.485344 0.205487 -0.849833 -0.811366 -0.468015 0.350211 -0.414058 0.820622 0.393873 -0.504208 0.153488 -0.849833 -0.757846 -0.550474 0.350211 -0.497785 0.772706 0.393873 -0.517517 0.099798 -0.849833 -0.695979 -0.626870 0.350211 -0.576028 0.716279 0.393873 -0.525127 0.045008 -0.849833 -0.626445 -0.696361 0.350211 -0.647275 0.652609 0.393873 -0.526962 -0.009750 -0.849833 -0.550769 -0.757632 0.350211 -0.712108 0.581176 0.393873 -0.523038 -0.064925 -0.849833 -0.468330 -0.811184 0.350211 -0.769098 0.503341 0.393873 -0.513353 -0.119386 -0.849833 -0.380733 -0.855801 0.350211 -0.817195 0.420780 0.393873 -0.498185 -0.172033 -0.849833 -0.289833 -0.890701 0.350211 -0.856795 0.332814 0.393873 -0.477411 -0.223299 -0.849833 -0.194885 -0.916173 0.350211 -0.886958 0.241183 0.393873 -0.451378 -0.272105 -0.849833 -0.097790 -0.931552 0.350211 -0.907231 0.147634 0.393873 -0.420633 -0.317572 -0.849833 -0.000382 -0.936671 0.350211 -0.917708 0.051737 0.393873 -0.385032 -0.359908 -0.849833 0.097790 -0.931552 0.350211 -0.918076 -0.044730 0.393873 -0.345191 -0.398280 -0.849833 0.194885 -0.916173 0.350211 -0.908331 -0.140705 0.393873 -0.301547 -0.432265 -0.849833 0.289833 -0.890701 0.350211 -0.888817 -0.234241 0.393873 -0.255043 -0.461234 -0.849833 0.380733 -0.855801 0.350211 -0.859371 -0.326105 0.393873 -0.205298 -0.485424 -0.849833 0.468330 -0.811184 0.350211 -0.820460 -0.414377 0.393873 -0.153291 -0.504267 -0.849833 0.550769 -0.757632 0.350211 -0.773010 -0.497313 0.393873 -0.100114 -0.517456 -0.849833 0.626445 -0.696361 0.350211 -0.716630 -0.575591 0.393873 -0.045329 -0.525099 -0.849833 0.695979 -0.626870 0.350211 -0.652358 -0.647529 0.393873 0.009955 -0.526958 -0.849833 0.757846 -0.550474 0.350211 -0.580899 -0.712334 0.393873 0.065129 -0.523012 -0.849833 0.811366 -0.468015 0.350211 -0.503811 -0.768790 0.393873 0.119072 -0.513425 -0.849833 0.855568 -0.381256 0.350211 -0.420462 -0.817359 0.393873 0.172227 -0.498118 -0.849833 0.890814 -0.289487 0.350211 -0.332481 -0.856925 0.393873 0.223485 -0.477324 -0.849833 0.916248 -0.194529 0.350211 -0.241725 -0.886811 0.393873 0.271830 -0.451545 -0.849833 0.931492 -0.098360 0.350211 -0.147450 -0.907261 0.393873 0.317658 -0.420568 -0.849833 0.936671 -0.000191 0.350211 -0.051550 -0.917718 0.393873 0.359987 -0.384959 -0.849833 0.931532 0.097980 0.350211 0.044917 -0.918067 0.393873 0.398351 -0.345110 -0.849833 0.916133 0.195072 0.350211 0.139981 -0.908443 0.393873 0.432025 -0.301891 -0.849833 0.890932 0.289124 0.350211 0.234422 -0.888769 0.393873 0.461286 -0.254949 -0.849833 0.855723 0.380908 0.350211 0.326280 -0.859305 0.393873 0.485466 -0.205199 -0.849833 0.811088 0.468496 0.350211 0.414545 -0.820376 0.393873 0.504299 -0.153189 -0.849833 0.757519 0.550923 0.350211 0.497470 -0.772908 0.393873 0.517477 -0.100008 -0.849833 0.696234 0.626587 0.350211 0.575737 -0.716513 0.393873 0.525108 -0.045222 -0.849833 0.626728 0.696106 0.350211 0.647662 -0.652226 0.393873 0.526956 0.010062 -0.849833 0.550320 0.757958 0.350211 0.711871 -0.581466 0.393873 0.523064 0.064712 -0.849833 0.468661 0.810993 0.350211 0.768893 -0.503655 0.393873 0.513401 0.119177 -0.849833 0.381082 0.855645 0.350211 0.817445 -0.420295 0.393873 0.498083 0.172328 -0.849833 0.289305 0.890873 0.350211 0.856993 -0.332307 0.393873 0.477279 0.223582 -0.849833 0.194342 0.916288 0.350211 0.886860 -0.241544 0.393873 0.451489 0.271922 -0.849833 0.098170 0.931512 0.350211 0.907291 -0.147265 0.393873 0.420503 0.317743 -0.849833 0.000000 0.936671 0.350211 0.917729 -0.051363 0.393873 0.384886 0.360065 -0.849833 -0.098170 0.931512 0.350211 0.918102 0.044186 0.393873 0.345427 0.398076 -0.849833 -0.194342 0.916288 0.350211 0.908415 0.140166 0.393873 0.301803 0.432086 -0.849833 -0.289305 0.890873 0.350211 0.888721 0.234603 0.393873 0.254855 0.461338 -0.849833 -0.381082 0.855645 0.350211 0.859239 0.326455 0.393873 0.205100 0.485508 -0.849833 -0.468661 0.810993 0.350211 0.820706 0.413891 0.393873 0.153590 0.504176 -0.849833 -0.550320 0.757958 0.350211 0.772807 0.497627 0.393873 0.099903 0.517497 -0.849833 -0.626728 0.696106 0.350211 0.716396 0.575883 0.393873 0.045115 0.525118 -0.849833 -0.696234 0.626587 0.350211 0.652741 0.647142 0.393873 -0.009642 0.526964 -0.849833 -0.757519 0.550923 0.350211 0.581321 0.711990 0.393873 -0.064819 0.523051 -0.849833 -0.811088 0.468496 0.350211 0.503498 0.768995 0.393873 -0.119281 0.513377 -0.849833 -0.855723 0.380908 0.350211 0.420129 0.817530 0.393873 -0.172430 0.498048 -0.849833 -0.890932 0.289124 0.350211 0.332989 0.856728 0.393873 -0.223202 0.477457 -0.849833 -0.916133 0.195072 0.350211 0.241364 0.886909 0.393873 -0.272013 0.451434 -0.849833 -0.931532 0.097980 0.350211 0.648113 -0.502987 0.571798 0.377075 0.864294 0.332882 -0.661637 -0.000135 0.749824 0.697261 -0.432290 0.571798 0.284414 0.899054 0.332882 -0.657979 -0.069478 0.749824 0.738370 -0.357569 0.571798 0.189544 0.923722 0.332882 -0.647211 -0.137409 0.749824 0.771780 -0.278214 0.571798 0.091687 0.938500 0.332882 -0.629245 -0.204485 0.749824 0.796688 -0.195793 0.571798 -0.007179 0.942941 0.332882 -0.604348 -0.269308 0.749824 0.812709 -0.112029 0.571798 -0.105030 0.937101 0.332882 -0.573125 -0.330592 0.749824 0.819975 -0.026235 0.571798 -0.202666 0.920932 0.332882 -0.535320 -0.388839 0.749824 0.818208 0.059849 0.571798 -0.298070 0.894619 0.332882 -0.491619 -0.442803 0.749824 0.807429 0.145274 0.571798 -0.390191 0.858452 0.332882 -0.442503 -0.491889 0.749824 0.787986 0.228310 0.571798 -0.477201 0.813307 0.332882 -0.389047 -0.535169 0.749824 0.759717 0.309639 0.571798 -0.559813 0.758814 0.332882 -0.330815 -0.572997 0.749824 0.723081 0.387558 0.571798 -0.636259 0.695962 0.332882 -0.268939 -0.604513 0.749824 0.678940 0.460529 0.571798 -0.705071 0.626150 0.332882 -0.204730 -0.629166 0.749824 0.626935 0.529150 0.571798 -0.766813 0.548805 0.332882 -0.137661 -0.647158 0.749824 0.568023 0.591943 0.571798 -0.820109 0.465415 0.332882 -0.069076 -0.658021 0.749824 0.503383 0.647806 0.571798 -0.864064 0.377603 0.332882 -0.000269 -0.661637 0.749824 0.432716 0.696996 0.571798 -0.898880 0.284963 0.332882 0.069076 -0.658021 0.749824 0.357282 0.738509 0.571798 -0.923796 0.189184 0.332882 0.137661 -0.647158 0.749824 0.277913 0.771888 0.571798 -0.938536 0.091322 0.332882 0.204730 -0.629166 0.749824 0.196280 0.796568 0.571798 -0.942945 -0.006603 0.332882 0.268939 -0.604513 0.749824 0.111713 0.812753 0.571798 -0.937060 -0.105394 0.332882 0.330815 -0.572997 0.749824 0.025915 0.819985 0.571798 -0.920853 -0.203024 0.332882 0.389047 -0.535169 0.749824 -0.059349 0.818245 0.571798 -0.894801 -0.297524 0.332882 0.442503 -0.491889 0.749824 -0.144780 0.807518 0.571798 -0.858691 -0.389667 0.332882 0.491619 -0.442803 0.749824 -0.228617 0.787897 0.571798 -0.813121 -0.477518 0.332882 0.535320 -0.388839 0.749824 -0.309935 0.759597 0.571798 -0.758596 -0.560109 0.332882 0.573125 -0.330592 0.749824 -0.387116 0.723317 0.571798 -0.696351 -0.635834 0.332882 0.604348 -0.269308 0.749824 -0.460793 0.678761 0.571798 -0.625876 -0.705315 0.332882 0.629245 -0.204485 0.749824 -0.529394 0.626729 0.571798 -0.548507 -0.767027 0.332882 0.647211 -0.137409 0.749824 -0.591596 0.568385 0.571798 -0.465916 -0.819824 0.332882 0.657979 -0.069478 0.749824 -0.647909 0.503251 0.571798 -0.377427 -0.864140 0.332882 0.661637 -0.000135 0.749824 -0.697085 0.432574 0.571798 -0.284780 -0.898938 0.332882 0.658007 0.069210 0.749824 -0.738582 0.357132 0.571798 -0.188996 -0.923834 0.332882 0.647130 0.137793 0.749824 -0.771666 0.278528 0.571798 -0.092069 -0.938463 0.332882 0.629328 0.204229 0.749824 -0.796608 0.196118 0.571798 0.006795 -0.942944 0.332882 0.604458 0.269062 0.749824 -0.812775 0.111548 0.571798 0.105585 -0.937039 0.332882 0.572929 0.330932 0.749824 -0.819990 0.025748 0.571798 0.203212 -0.920812 0.332882 0.535090 0.389156 0.749824 -0.818233 -0.059516 0.571798 0.297706 -0.894741 0.332882 0.491799 0.442603 0.749824 -0.807489 -0.144945 0.571798 0.389842 -0.858611 0.332882 0.442703 0.491709 0.749824 -0.787850 -0.228777 0.571798 0.477683 -0.813024 0.332882 0.388730 0.535399 0.749824 -0.759843 -0.309330 0.571798 0.559504 -0.759042 0.332882 0.331048 0.572862 0.749824 -0.723239 -0.387263 0.571798 0.635976 -0.696221 0.332882 0.269185 0.604403 0.749824 -0.678667 -0.460931 0.571798 0.705442 -0.625732 0.332882 0.204357 0.629287 0.749824 -0.626621 -0.529522 0.571798 0.767138 -0.548351 0.332882 0.137278 0.647239 0.749824 -0.568264 -0.591712 0.571798 0.819919 -0.465749 0.332882 0.069344 0.657993 0.749824 -0.503119 -0.648011 0.571798 0.864217 -0.377251 0.332882 0.000000 0.661637 0.749824 -0.432432 -0.697173 0.571798 0.898996 -0.284597 0.332882 -0.069344 0.657993 0.749824 -0.357720 -0.738298 0.571798 0.923684 -0.189732 0.332882 -0.137278 0.647239 0.749824 -0.278371 -0.771723 0.571798 0.938482 -0.091878 0.332882 -0.204357 0.629287 0.749824 -0.195956 -0.796648 0.571798 0.942943 0.006987 0.332882 -0.269185 0.604403 0.749824 -0.111382 -0.812798 0.571798 0.937017 0.105776 0.332882 -0.331048 0.572862 0.749824 -0.026401 -0.819969 0.571798 0.920973 0.202479 0.332882 -0.388730 0.535399 0.749824 0.059683 -0.818220 0.571798 0.894680 0.297888 0.332882 -0.442703 0.491709 0.749824 0.145109 -0.807459 0.571798 0.858532 0.390016 0.332882 -0.491799 0.442603 0.749824 0.228150 -0.788032 0.571798 0.813404 0.477036 0.332882 -0.535090 0.389156 0.749824 0.309485 -0.759780 0.571798 0.758928 0.559659 0.332882 -0.572929 0.330932 0.749824 0.387410 -0.723160 0.571798 0.696092 0.636118 0.332882 -0.604458 0.269062 0.749824 0.461069 -0.678573 0.571798 0.625588 0.705570 0.332882 -0.629328 0.204229 0.749824 0.529022 -0.627042 0.571798 0.548961 0.766701 0.332882 -0.647130 0.137793 0.749824 0.591827 -0.568144 0.571798 0.465582 0.820014 0.332882 -0.658007 0.069210 0.749824 0.339447 -0.716732 -0.609156 -0.348660 -0.697349 0.626212 -0.873620 -0.000178 -0.486609 0.412697 -0.677208 -0.609156 -0.273652 -0.730050 0.626212 -0.868790 -0.091739 -0.486609 0.480769 -0.630706 -0.609156 -0.196385 -0.754514 0.626212 -0.854572 -0.181434 -0.486609 0.544224 -0.576844 -0.609156 -0.116225 -0.770941 0.626212 -0.830850 -0.270000 -0.486609 0.601684 -0.516629 -0.609156 -0.034785 -0.778877 0.626212 -0.797976 -0.355592 -0.486609 0.652066 -0.451375 -0.609156 0.046260 -0.778279 0.626212 -0.756750 -0.436511 -0.486609 0.695782 -0.380548 -0.609156 0.127575 -0.769145 0.626212 -0.706832 -0.513420 -0.486609 0.731834 -0.305529 -0.609156 0.207484 -0.751538 0.626212 -0.649130 -0.584673 -0.486609 0.759825 -0.227145 -0.609156 0.285108 -0.725653 0.626212 -0.584277 -0.649487 -0.486609 0.779300 -0.147038 -0.609156 0.358899 -0.692134 0.626212 -0.513695 -0.706633 -0.486609 0.790419 -0.064552 -0.609156 0.429464 -0.650707 0.626212 -0.436805 -0.756580 -0.486609 0.792831 0.018645 -0.609156 0.495297 -0.602113 0.626212 -0.355105 -0.798193 -0.486609 0.786612 0.100850 -0.609156 0.555128 -0.547441 0.626212 -0.270324 -0.830745 -0.486609 0.771710 0.182737 -0.609156 0.609446 -0.486245 0.626212 -0.181767 -0.854501 -0.486609 0.748308 0.262612 -0.609156 0.657052 -0.419693 0.626212 -0.091208 -0.868846 -0.486609 0.716939 0.339009 -0.609156 0.697136 -0.349086 0.626212 -0.000356 -0.873620 -0.486609 0.677460 0.412283 -0.609156 0.729883 -0.274098 0.626212 0.091208 -0.868846 -0.486609 0.630519 0.481015 -0.609156 0.754591 -0.196092 0.626212 0.181767 -0.854501 -0.486609 0.576632 0.544449 -0.609156 0.770987 -0.115925 0.626212 0.270324 -0.830745 -0.486609 0.516996 0.601368 -0.609156 0.778855 -0.035261 0.626212 0.355105 -0.798193 -0.486609 0.451121 0.652241 -0.609156 0.778261 0.046563 0.626212 0.436805 -0.756580 -0.486609 0.380277 0.695930 -0.609156 0.769095 0.127874 0.626212 0.513695 -0.706633 -0.486609 0.305976 0.731647 -0.609156 0.751665 0.207025 0.626212 0.584277 -0.649487 -0.486609 0.227609 0.759686 -0.609156 0.725827 0.284665 0.626212 0.649130 -0.584673 -0.486609 0.146735 0.779357 -0.609156 0.691995 0.359169 0.626212 0.706832 -0.513420 -0.486609 0.064245 0.790444 -0.609156 0.650540 0.429716 0.626212 0.756750 -0.436511 -0.486609 -0.018161 0.792843 -0.609156 0.602415 0.494929 0.626212 0.797976 -0.355592 -0.486609 -0.101156 0.786573 -0.609156 0.547225 0.555341 0.626212 0.830850 -0.270000 -0.486609 -0.183038 0.771639 -0.609156 0.486008 0.609635 0.626212 0.854572 -0.181434 -0.486609 -0.262154 0.748468 -0.609156 0.420094 0.656795 0.626212 0.868790 -0.091739 -0.486609 -0.339155 0.716870 -0.609156 0.348944 0.697207 0.626212 0.873620 -0.000178 -0.486609 -0.412421 0.677376 -0.609156 0.273950 0.729939 0.626212 0.868827 0.091385 -0.486609 -0.481143 0.630421 -0.609156 0.195938 0.754631 0.626212 0.854464 0.181941 -0.486609 -0.543989 0.577066 -0.609156 0.116539 0.770894 0.626212 0.830960 0.269662 -0.486609 -0.601474 0.516874 -0.609156 0.035102 0.778862 0.626212 0.798121 0.355267 -0.486609 -0.652333 0.450988 -0.609156 -0.046722 0.778252 0.626212 0.756491 0.436959 -0.486609 -0.696007 0.380135 -0.609156 -0.128031 0.769069 0.626212 0.706528 0.513839 -0.486609 -0.731710 0.305827 -0.609156 -0.207178 0.751622 0.626212 0.649368 0.584409 -0.486609 -0.759733 0.227454 -0.609156 -0.284812 0.725769 0.626212 0.584541 0.649249 -0.486609 -0.779387 0.146576 -0.609156 -0.359310 0.691922 0.626212 0.513276 0.706937 -0.486609 -0.790393 0.064874 -0.609156 -0.429198 0.650882 0.626212 0.437114 0.756402 -0.486609 -0.792839 -0.018322 -0.609156 -0.495052 0.602314 0.626212 0.355430 0.798049 -0.486609 -0.786552 -0.101316 -0.609156 -0.555452 0.547112 0.626212 0.269831 0.830905 -0.486609 -0.771601 -0.183195 -0.609156 -0.609734 0.485884 0.626212 0.181260 0.854609 -0.486609 -0.748414 -0.262307 -0.609156 -0.656881 0.419960 0.626212 0.091562 0.868809 -0.486609 -0.716801 -0.339301 -0.609156 -0.697278 0.348802 0.626212 0.000000 0.873620 -0.486609 -0.677292 -0.412559 -0.609156 -0.729995 0.273801 0.626212 -0.091562 0.868809 -0.486609 -0.630804 -0.480641 -0.609156 -0.754474 0.196539 0.626212 -0.181260 0.854609 -0.486609 -0.576955 -0.544107 -0.609156 -0.770918 0.116382 0.626212 -0.269831 0.830905 -0.486609 -0.516751 -0.601579 -0.609156 -0.778870 0.034943 0.626212 -0.355430 0.798049 -0.486609 -0.450855 -0.652425 -0.609156 -0.778242 -0.046880 0.626212 -0.437114 0.756402 -0.486609 -0.380689 -0.695704 -0.609156 -0.769171 -0.127418 0.626212 -0.513276 0.706937 -0.486609 -0.305678 -0.731772 -0.609156 -0.751580 -0.207331 0.626212 -0.584541 0.649249 -0.486609 -0.227300 -0.759779 -0.609156 -0.725711 -0.284960 0.626212 -0.649368 0.584409 -0.486609 -0.147197 -0.779270 -0.609156 -0.692208 -0.358758 0.626212 -0.706528 0.513839 -0.486609 -0.064713 -0.790406 -0.609156 -0.650795 -0.429331 0.626212 -0.756491 0.436959 -0.486609 0.018484 -0.792835 -0.609156 -0.602214 -0.495174 0.626212 -0.798121 0.355267 -0.486609 0.101477 -0.786531 -0.609156 -0.546999 -0.555564 0.626212 -0.830960 0.269662 -0.486609 0.182580 -0.771747 -0.609156 -0.486369 -0.609347 0.626212 -0.854464 0.181941 -0.486609 0.262459 -0.748361 -0.609156 -0.419827 -0.656966 0.626212 -0.868827 0.091385 -0.486609 0.187967 0.767451 0.612933 -0.225300 0.641107 -0.733636 -0.955985 -0.000195 0.293414 0.106498 0.782925 0.612933 -0.291252 0.613963 -0.733636 -0.950700 -0.100388 0.293414 0.024645 0.789750 0.612933 -0.353416 0.580410 -0.733636 -0.935142 -0.198540 0.293414 -0.058263 0.787984 0.612933 -0.412300 0.540173 -0.733636 -0.909183 -0.295456 0.293414 -0.140528 0.777538 0.612933 -0.466644 0.493986 -0.733636 -0.873210 -0.389118 0.293414 -0.220487 0.758748 0.612933 -0.515405 0.442874 -0.733636 -0.828096 -0.477666 0.293414 -0.298795 0.731461 0.612933 -0.558982 0.386417 -0.733636 -0.773473 -0.561825 0.293414 -0.373812 0.696116 0.612933 -0.596403 0.325703 -0.733636 -0.710330 -0.639796 0.293414 -0.444711 0.653104 0.612933 -0.627254 0.261402 -0.733636 -0.639363 -0.710721 0.293414 -0.510109 0.603409 0.612933 -0.651002 0.194873 -0.733636 -0.562126 -0.773254 0.293414 -0.570541 0.546623 0.612933 -0.667841 0.125570 -0.733636 -0.477988 -0.827911 0.293414 -0.624689 0.483815 0.612933 -0.677323 0.054884 -0.733636 -0.388584 -0.873447 0.293414 -0.671539 0.416351 0.612933 -0.679361 -0.015728 -0.733636 -0.295810 -0.909068 0.293414 -0.711477 0.343676 0.612933 -0.673971 -0.086843 -0.733636 -0.198904 -0.935064 0.293414 -0.743579 0.267215 0.612933 -0.661158 -0.157002 -0.733636 -0.099807 -0.950761 0.293414 -0.767336 0.188436 0.612933 -0.641245 -0.224909 -0.733636 -0.000389 -0.955985 0.293414 -0.782860 0.106976 0.612933 -0.614141 -0.290877 -0.733636 0.099807 -0.950761 0.293414 -0.789760 0.024337 0.612933 -0.580273 -0.353642 -0.733636 0.198904 -0.935064 0.293414 -0.787961 -0.058569 0.612933 -0.540013 -0.412511 -0.733636 0.295810 -0.909068 0.293414 -0.777623 -0.140053 0.612933 -0.494271 -0.466342 -0.733636 0.388584 -0.873447 0.293414 -0.758662 -0.220782 0.612933 -0.442673 -0.515577 -0.733636 0.477988 -0.827911 0.293414 -0.731344 -0.299079 0.612933 -0.386199 -0.559133 -0.733636 0.562126 -0.773254 0.293414 -0.696345 -0.373386 0.612933 -0.326067 -0.596204 -0.733636 0.639363 -0.710721 0.293414 -0.653376 -0.444312 0.612933 -0.261785 -0.627094 -0.733636 0.710330 -0.639796 0.293414 -0.603210 -0.510343 0.612933 -0.194619 -0.651078 -0.733636 0.773473 -0.561825 0.293414 -0.546401 -0.570753 0.612933 -0.125310 -0.667889 -0.733636 0.828096 -0.477666 0.293414 -0.484197 -0.624393 0.612933 -0.055297 -0.677289 -0.733636 0.873210 -0.389118 0.293414 -0.416090 -0.671701 0.612933 0.015992 -0.679355 -0.733636 0.909183 -0.295456 0.293414 -0.343399 -0.711611 0.612933 0.087105 -0.673937 -0.733636 0.935142 -0.198540 0.293414 -0.267669 -0.743415 0.612933 0.156598 -0.661253 -0.733636 0.950700 -0.100388 0.293414 -0.188280 -0.767375 0.612933 0.225039 -0.641199 -0.733636 0.955985 -0.000195 0.293414 -0.106816 -0.782881 0.612933 0.291002 -0.614082 -0.733636 0.950741 0.100001 0.293414 -0.024177 -0.789765 0.612933 0.353760 -0.580201 -0.733636 0.935024 0.199094 0.293414 0.057942 -0.788007 0.612933 0.412080 -0.540341 -0.733636 0.909303 0.295086 0.293414 0.140211 -0.777595 0.612933 0.466443 -0.494176 -0.733636 0.873368 0.388762 0.293414 0.220937 -0.758617 0.612933 0.515667 -0.442568 -0.733636 0.827813 0.478156 0.293414 0.299228 -0.731283 0.612933 0.559211 -0.386085 -0.733636 0.773140 0.562284 0.293414 0.373528 -0.696268 0.612933 0.596270 -0.325946 -0.733636 0.710590 0.639507 0.293414 0.444445 -0.653285 0.612933 0.627148 -0.261657 -0.733636 0.639652 0.710460 0.293414 0.510466 -0.603107 0.612933 0.651117 -0.194487 -0.733636 0.561668 0.773587 0.293414 0.570318 -0.546855 0.612933 0.667789 -0.125842 -0.733636 0.478325 0.827716 0.293414 0.624491 -0.484070 0.612933 0.677301 -0.055159 -0.733636 0.388940 0.873289 0.293414 0.671786 -0.415953 0.612933 0.679352 0.016130 -0.733636 0.295271 0.909243 0.293414 0.711681 -0.343254 0.612933 0.673920 0.087242 -0.733636 0.198350 0.935182 0.293414 0.743470 -0.267518 0.612933 0.661221 0.156732 -0.733636 0.100194 0.950720 0.293414 0.767413 -0.188123 0.612933 0.641153 0.225170 -0.733636 0.000000 0.955985 0.293414 0.782903 -0.106657 0.612933 0.614023 0.291127 -0.733636 -0.100194 0.950720 0.293414 0.789745 -0.024805 0.612933 0.580482 0.353298 -0.733636 -0.198350 0.935182 0.293414 0.787996 0.058102 0.612933 0.540257 0.412190 -0.733636 -0.295271 0.909243 0.293414 0.777566 0.140370 0.612933 0.494081 0.466543 -0.733636 -0.388940 0.873289 0.293414 0.758572 0.221091 0.612933 0.442463 0.515757 -0.733636 -0.478325 0.827716 0.293414 0.731521 0.298646 0.612933 0.386530 0.558904 -0.733636 -0.561668 0.773587 0.293414 0.696192 0.373670 0.612933 0.325824 0.596337 -0.733636 -0.639652 0.710460 0.293414 0.653195 0.444578 0.612933 0.261530 0.627201 -0.733636 -0.710590 0.639507 0.293414 0.603513 0.509986 0.612933 0.195005 0.650962 -0.733636 -0.773140 0.562284 0.293414 0.546739 0.570429 0.612933 0.125706 0.667815 -0.733636 -0.827813 0.478156 0.293414 0.483943 0.624590 0.612933 0.055022 0.677312 -0.733636 -0.873368 0.388762 0.293414 0.415816 0.671871 0.612933 -0.016269 0.679348 -0.733636 -0.909303 0.295086 0.293414 0.343821 0.711407 0.612933 -0.086706 0.673989 -0.733636 -0.935024 0.199094 0.293414 0.267366 0.743524 0.612933 -0.156867 0.661190 -0.733636 -0.950741 0.100001 0.293414 -0.019928 0.999515 -0.023909 -0.636068 -0.031125 -0.771005 -0.771376 -0.000157 0.636380 -0.124575 0.991922 -0.023909 -0.629303 -0.097618 -0.771005 -0.767111 -0.081002 0.636380 -0.226876 0.973630 -0.023909 -0.615769 -0.162420 -0.771005 -0.754557 -0.160200 0.636380 -0.327670 0.944490 -0.023909 -0.595355 -0.226062 -0.771005 -0.733611 -0.238401 0.636380 -0.424854 0.904946 -0.023909 -0.568383 -0.287215 -0.771005 -0.704585 -0.313976 0.636380 -0.516504 0.855951 -0.023909 -0.535495 -0.344668 -0.771005 -0.668183 -0.385424 0.636380 -0.603369 0.797104 -0.023909 -0.496422 -0.398894 -0.771005 -0.624108 -0.453331 0.636380 -0.683588 0.729476 -0.023909 -0.451881 -0.448725 -0.771005 -0.573159 -0.516246 0.636380 -0.756278 0.653814 -0.023909 -0.402363 -0.493614 -0.771005 -0.515896 -0.573474 0.636380 -0.820065 0.571770 -0.023909 -0.348946 -0.532718 -0.771005 -0.453574 -0.623932 0.636380 -0.875475 0.482672 -0.023909 -0.291191 -0.566356 -0.771005 -0.385684 -0.668033 0.636380 -0.921241 0.388258 -0.023909 -0.230229 -0.593756 -0.771005 -0.313545 -0.704777 0.636380 -0.956569 0.290524 -0.023909 -0.167346 -0.614448 -0.771005 -0.238686 -0.733518 0.636380 -0.981750 0.188669 -0.023909 -0.102026 -0.628603 -0.771005 -0.160494 -0.754495 0.636380 -0.996117 0.084735 -0.023909 -0.035582 -0.635834 -0.771005 -0.080533 -0.767160 0.636380 -0.999528 -0.019318 -0.023909 0.030736 -0.636087 -0.771005 -0.000314 -0.771376 0.636380 -0.991998 -0.123969 -0.023909 0.097233 -0.629362 -0.771005 0.080533 -0.767160 0.636380 -0.973542 -0.227255 -0.023909 0.162659 -0.615705 -0.771005 0.160494 -0.754495 0.636380 -0.944362 -0.328037 -0.023909 0.226294 -0.595267 -0.771005 0.238686 -0.733518 0.636380 -0.905205 -0.424301 -0.023909 0.286867 -0.568558 -0.771005 0.313545 -0.704777 0.636380 -0.855750 -0.516837 -0.023909 0.344876 -0.535361 -0.771005 0.385684 -0.668033 0.636380 -0.796869 -0.603679 -0.023909 0.399087 -0.496267 -0.771005 0.453574 -0.623932 0.636380 -0.729894 -0.683142 -0.023909 0.448449 -0.452155 -0.771005 0.515896 -0.573474 0.636380 -0.654276 -0.755878 -0.023909 0.493369 -0.402665 -0.771005 0.573159 -0.516246 0.636380 -0.571451 -0.820288 -0.023909 0.532853 -0.348738 -0.771005 0.624108 -0.453331 0.636380 -0.482332 -0.875662 -0.023909 0.566469 -0.290971 -0.771005 0.668183 -0.385424 0.636380 -0.388821 -0.921003 -0.023909 0.593615 -0.230592 -0.771005 0.704585 -0.313976 0.636380 -0.290152 -0.956682 -0.023909 0.614513 -0.167107 -0.771005 0.733611 -0.238401 0.636380 -0.188287 -0.981823 -0.023909 0.628643 -0.101781 -0.771005 0.754557 -0.160200 0.636380 -0.085344 -0.996065 -0.023909 0.635812 -0.035970 -0.771005 0.767111 -0.081002 0.636380 0.019521 -0.999524 -0.023909 0.636081 0.030865 -0.771005 0.771376 -0.000157 0.636380 0.124171 -0.991973 -0.023909 0.629343 0.097361 -0.771005 0.767144 0.080689 0.636380 0.227453 -0.973496 -0.023909 0.615672 0.162785 -0.771005 0.754462 0.160647 0.636380 0.327285 -0.944623 -0.023909 0.595447 0.225820 -0.771005 0.733708 0.238102 0.636380 0.424486 -0.905119 -0.023909 0.568500 0.286983 -0.771005 0.704713 0.313688 0.636380 0.517011 -0.855645 -0.023909 0.535291 0.344985 -0.771005 0.667955 0.385820 0.636380 0.603841 -0.796746 -0.023909 0.496186 0.399188 -0.771005 0.623839 0.453701 0.636380 0.683291 -0.729755 -0.023909 0.452064 0.448541 -0.771005 0.573369 0.516012 0.636380 0.756011 -0.654122 -0.023909 0.402564 0.493450 -0.771005 0.516129 0.573264 0.636380 0.820404 -0.571284 -0.023909 0.348630 0.532924 -0.771005 0.453204 0.624200 0.636380 0.875278 -0.483029 -0.023909 0.291422 0.566237 -0.771005 0.385956 0.667876 0.636380 0.921082 -0.388633 -0.023909 0.230471 0.593662 -0.771005 0.313832 0.704649 0.636380 0.956741 -0.289957 -0.023909 0.166982 0.614547 -0.771005 0.238251 0.733660 0.636380 0.981861 -0.188087 -0.023909 0.101653 0.628664 -0.771005 0.160046 0.754590 0.636380 0.996082 -0.085141 -0.023909 0.035841 0.635820 -0.771005 0.080846 0.767127 0.636380 0.999520 0.019725 -0.023909 -0.030995 0.636074 -0.771005 0.000000 0.771376 0.636380 0.991947 0.124373 -0.023909 -0.097489 0.629323 -0.771005 -0.080846 0.767127 0.636380 0.973676 0.226677 -0.023909 -0.162294 0.615802 -0.771005 -0.160046 0.754590 0.636380 0.944556 0.327477 -0.023909 -0.225941 0.595401 -0.771005 -0.238251 0.733660 0.636380 0.905032 0.424670 -0.023909 -0.287099 0.568441 -0.771005 -0.313832 0.704649 0.636380 0.855540 0.517185 -0.023909 -0.345094 0.535221 -0.771005 -0.385956 0.667876 0.636380 0.797227 0.603207 -0.023909 -0.398793 0.496504 -0.771005 -0.453204 0.624200 0.636380 0.729616 0.683439 -0.023909 -0.448633 0.451973 -0.771005 -0.516129 0.573264 0.636380 0.653968 0.756144 -0.023909 -0.493532 0.402464 -0.771005 -0.573369 0.516012 0.636380 0.571937 0.819949 -0.023909 -0.532647 0.349054 -0.771005 -0.623839 0.453701 0.636380 0.482851 0.875376 -0.023909 -0.566297 0.291307 -0.771005 -0.667955 0.385820 0.636380 0.388446 0.921161 -0.023909 -0.593709 0.230350 -0.771005 -0.704713 0.313688 0.636380 0.289762 0.956800 -0.023909 -0.614581 0.166857 -0.771005 -0.733708 0.238102 0.636380 0.188869 0.981711 -0.023909 -0.628582 0.102154 -0.771005 -0.754462 0.160647 0.636380 0.084938 0.996099 -0.023909 -0.635827 0.035711 -0.771005 -0.767144 0.080689 0.636380 0.260494 0.389284 0.883516 -0.110294 0.921118 -0.373333 -0.959155 -0.000195 0.282881 0.218259 0.414441 0.883516 -0.206226 0.904485 -0.373333 -0.953852 -0.100721 0.282881 0.174056 0.434860 0.883516 -0.299009 0.878189 -0.373333 -0.938242 -0.199198 0.282881 0.127521 0.450708 0.883516 -0.389402 0.842015 -0.373333 -0.912198 -0.296436 0.282881 0.079581 0.461590 0.883516 -0.475507 0.796565 -0.373333 -0.876105 -0.390408 0.282881 0.031232 0.467358 0.883516 -0.555631 0.742897 -0.373333 -0.830842 -0.479249 0.282881 -0.017922 0.468057 0.883516 -0.630432 0.680572 -0.373333 -0.776038 -0.563688 0.282881 -0.066879 0.463601 0.883516 -0.698289 0.610750 -0.373333 -0.712685 -0.641918 0.282881 -0.115100 0.454038 0.883516 -0.758454 0.534201 -0.373333 -0.641482 -0.713077 0.282881 -0.161613 0.439636 0.883516 -0.809813 0.452577 -0.373333 -0.563990 -0.775818 0.282881 -0.206800 0.420277 0.883516 -0.852786 0.365210 -0.373333 -0.479572 -0.830656 0.282881 -0.249709 0.396288 0.883516 -0.886366 0.273821 -0.373333 -0.389873 -0.876343 0.282881 -0.289499 0.368224 0.883516 -0.910003 0.180326 -0.373333 -0.296791 -0.912082 0.282881 -0.326497 0.335854 0.883516 -0.923891 0.083958 -0.373333 -0.199563 -0.938165 0.282881 -0.359899 0.299785 0.883516 -0.927602 -0.013335 -0.373333 -0.100138 -0.953913 0.282881 -0.389125 0.260731 0.883516 -0.921185 -0.109731 -0.373333 -0.000391 -0.959155 0.282881 -0.414308 0.218512 0.883516 -0.904611 -0.205673 -0.373333 0.100138 -0.953913 0.282881 -0.434928 0.173887 0.883516 -0.878073 -0.299350 -0.373333 0.199563 -0.938165 0.282881 -0.450757 0.127345 0.883516 -0.841863 -0.389730 -0.373333 0.296791 -0.912082 0.282881 -0.461542 0.079863 0.883516 -0.796856 -0.475020 -0.373333 0.389873 -0.876343 0.282881 -0.467370 0.031050 0.883516 -0.742681 -0.555920 -0.373333 0.479572 -0.830656 0.282881 -0.468050 -0.018104 0.883516 -0.680327 -0.630697 -0.373333 0.563990 -0.775818 0.282881 -0.463642 -0.066596 0.883516 -0.611176 -0.697916 -0.373333 0.641482 -0.713077 0.282881 -0.454109 -0.114822 0.883516 -0.534664 -0.758128 -0.373333 0.712685 -0.641918 0.282881 -0.439573 -0.161784 0.883516 -0.452262 -0.809989 -0.373333 0.776038 -0.563688 0.282881 -0.420196 -0.206963 0.883516 -0.364879 -0.852928 -0.373333 0.830842 -0.479249 0.282881 -0.396441 -0.249467 0.883516 -0.274362 -0.886199 -0.373333 0.876105 -0.390408 0.282881 -0.368111 -0.289643 0.883516 -0.179971 -0.910073 -0.373333 0.912198 -0.296436 0.282881 -0.335727 -0.326628 0.883516 -0.083598 -0.923923 -0.373333 0.938242 -0.199198 0.282881 -0.300005 -0.359716 0.883516 0.012768 -0.927610 -0.373333 0.953852 -0.100721 0.282881 -0.260652 -0.389178 0.883516 0.109918 -0.921163 -0.373333 0.959155 -0.000195 0.282881 -0.218428 -0.414353 0.883516 0.205857 -0.904569 -0.373333 0.953893 0.100332 0.282881 -0.173798 -0.434963 0.883516 0.299529 -0.878012 -0.373333 0.938124 0.199754 0.282881 -0.127704 -0.450656 0.883516 0.389059 -0.842173 -0.373333 0.912318 0.296064 0.282881 -0.079769 -0.461558 0.883516 0.475182 -0.796759 -0.373333 0.876264 0.390051 0.282881 -0.030955 -0.467376 0.883516 0.556071 -0.742568 -0.373333 0.830558 0.479742 0.282881 0.018200 -0.468047 0.883516 0.630835 -0.680198 -0.373333 0.775703 0.564148 0.282881 0.066691 -0.463628 0.883516 0.698040 -0.611034 -0.373333 0.712946 0.641628 0.282881 0.114915 -0.454085 0.883516 0.758236 -0.534509 -0.373333 0.641773 0.712816 0.282881 0.161873 -0.439540 0.883516 0.810081 -0.452097 -0.373333 0.563530 0.776152 0.282881 0.206629 -0.420361 0.883516 0.852637 -0.365558 -0.373333 0.479911 0.830460 0.282881 0.249547 -0.396390 0.883516 0.886254 -0.274182 -0.373333 0.390230 0.876185 0.282881 0.289718 -0.368052 0.883516 0.910110 -0.179786 -0.373333 0.296250 0.912258 0.282881 0.326697 -0.335661 0.883516 0.923940 -0.083410 -0.373333 0.199007 0.938283 0.282881 0.359777 -0.299932 0.883516 0.927607 0.012957 -0.373333 0.100526 0.953873 0.282881 0.389231 -0.260573 0.883516 0.921140 0.110106 -0.373333 0.000000 0.959155 0.282881 0.414397 -0.218344 0.883516 0.904527 0.206042 -0.373333 -0.100526 0.953873 0.282881 0.434825 -0.174144 0.883516 0.878250 0.298830 -0.373333 -0.199007 0.938283 0.282881 0.450682 -0.127612 0.883516 0.842094 0.389231 -0.373333 -0.296250 0.912258 0.282881 0.461574 -0.079675 0.883516 0.796662 0.475345 -0.373333 -0.390230 0.876185 0.282881 0.467383 -0.030860 0.883516 0.742455 0.556223 -0.373333 -0.479911 0.830460 0.282881 0.468061 0.017827 0.883516 0.680700 0.630293 -0.373333 -0.563530 0.776152 0.282881 0.463615 0.066785 0.883516 0.610892 0.698164 -0.373333 -0.641773 0.712816 0.282881 0.454062 0.115007 0.883516 0.534355 0.758345 -0.373333 -0.712946 0.641628 0.282881 0.439669 0.161523 0.883516 0.452742 0.809721 -0.373333 -0.775703 0.564148 0.282881 0.420319 0.206714 0.883516 0.365384 0.852712 -0.373333 -0.830558 0.479742 0.282881 0.396339 0.249628 0.883516 0.274002 0.886310 -0.373333 -0.876264 0.390051 0.282881 0.367993 0.289793 0.883516 0.179601 0.910146 -0.373333 -0.912318 0.296064 0.282881 0.335921 0.326429 0.883516 0.084146 0.923873 -0.373333 -0.938124 0.199754 0.282881 0.299859 0.359838 0.883516 -0.013146 0.927604 -0.373333 -0.953893 0.100332 0.282881 -0.614136 -0.609446 0.501411 -0.472188 0.792828 0.385309 -0.632357 -0.000129 -0.774677 -0.546879 -0.670455 0.501411 -0.552682 0.738972 0.385309 -0.628861 -0.066404 -0.774677 -0.474322 -0.723606 0.501411 -0.626410 0.677604 0.385309 -0.618570 -0.131329 -0.774677 -0.395871 -0.769333 0.501411 -0.693978 0.608220 0.385309 -0.601399 -0.195436 -0.774677 -0.313059 -0.806586 0.501411 -0.753902 0.532137 0.385309 -0.577604 -0.257390 -0.774677 -0.227634 -0.834727 0.501411 -0.805071 0.450997 0.385309 -0.547763 -0.315962 -0.774677 -0.138895 -0.853988 0.501411 -0.847905 0.364136 0.385309 -0.511631 -0.371632 -0.774677 -0.048626 -0.863842 0.501411 -0.881399 0.273264 0.385309 -0.469863 -0.423207 -0.774677 0.042179 -0.864180 0.501411 -0.905185 0.179382 0.385309 -0.422920 -0.470122 -0.774677 0.131664 -0.855132 0.501411 -0.918916 0.084443 0.385309 -0.371831 -0.511486 -0.774677 0.220563 -0.836623 0.501411 -0.922705 -0.012331 0.385309 -0.316175 -0.547640 -0.774677 0.307032 -0.808899 0.501411 -0.916331 -0.108969 0.385309 -0.257037 -0.577761 -0.774677 0.389347 -0.772655 0.501411 -0.900068 -0.203507 0.385309 -0.195670 -0.601323 -0.774677 0.468182 -0.727593 0.501411 -0.873782 -0.296720 0.385309 -0.131569 -0.618519 -0.774677 0.541861 -0.674517 0.501411 -0.837871 -0.386664 0.385309 -0.066019 -0.628902 -0.774677 0.609071 -0.614508 0.501411 -0.793116 -0.471704 0.385309 -0.000258 -0.632357 -0.774677 0.670121 -0.547288 0.501411 -0.739310 -0.552230 0.385309 0.066019 -0.628902 -0.774677 0.723790 -0.474041 0.501411 -0.677361 -0.626674 0.385309 0.131569 -0.618519 -0.774677 0.769487 -0.395572 0.501411 -0.607950 -0.694215 0.385309 0.195670 -0.601323 -0.774677 0.806394 -0.313552 0.501411 -0.532597 -0.753576 0.385309 0.257037 -0.577761 -0.774677 0.834816 -0.227309 0.501411 -0.450684 -0.805246 0.385309 0.316175 -0.547640 -0.774677 0.854042 -0.138563 0.501411 -0.363806 -0.848046 0.385309 0.371831 -0.511486 -0.774677 0.863812 -0.049154 0.501411 -0.273802 -0.881232 0.385309 0.422920 -0.470122 -0.774677 0.864206 0.041651 0.501411 -0.179935 -0.905075 0.385309 0.469863 -0.423207 -0.774677 0.855081 0.131996 0.501411 -0.084086 -0.918949 0.385309 0.511631 -0.371632 -0.774677 0.836538 0.220888 0.501411 0.012690 -0.922701 0.385309 0.547763 -0.315962 -0.774677 0.809087 0.306538 0.501411 0.108409 -0.916398 0.385309 0.577604 -0.257390 -0.774677 0.772503 0.389648 0.501411 0.203857 -0.899989 0.385309 0.601399 -0.195436 -0.774677 0.727411 0.468466 0.501411 0.297060 -0.873666 0.385309 0.618570 -0.131329 -0.774677 0.674848 0.541449 0.501411 0.386152 -0.838107 0.385309 0.628861 -0.066404 -0.774677 0.614384 0.609196 0.501411 0.471865 -0.793020 0.385309 0.632357 -0.000129 -0.774677 0.547152 0.670232 0.501411 0.552381 -0.739198 0.385309 0.628888 0.066148 -0.774677 0.473893 0.723887 0.501411 0.626812 -0.677233 0.385309 0.618492 0.131695 -0.774677 0.396184 0.769171 0.501411 0.693730 -0.608503 0.385309 0.601479 0.195191 -0.774677 0.313388 0.806458 0.501411 0.753685 -0.532444 0.385309 0.577709 0.257155 -0.774677 0.227139 0.834862 0.501411 0.805338 -0.450520 0.385309 0.547575 0.316287 -0.774677 0.138389 0.854070 0.501411 0.848120 -0.363633 0.385309 0.511410 0.371935 -0.774677 0.048978 0.863822 0.501411 0.881288 -0.273623 0.385309 0.470036 0.423016 -0.774677 -0.041827 0.864197 0.501411 0.905112 -0.179751 0.385309 0.423112 0.469949 -0.774677 -0.132170 0.855054 0.501411 0.918966 -0.083899 0.385309 0.371527 0.511706 -0.774677 -0.220222 0.836713 0.501411 0.922710 0.011955 0.385309 0.316398 0.547511 -0.774677 -0.306702 0.809024 0.501411 0.916376 0.108596 0.385309 0.257273 0.577656 -0.774677 -0.389805 0.772424 0.501411 0.899947 0.204040 0.385309 0.195313 0.601439 -0.774677 -0.468614 0.727316 0.501411 0.873606 0.297238 0.385309 0.131203 0.618597 -0.774677 -0.541586 0.674738 0.501411 0.838029 0.386323 0.385309 0.066276 0.628875 -0.774677 -0.609321 0.614260 0.501411 0.792924 0.472027 0.385309 0.000000 0.632357 -0.774677 -0.670344 0.547015 0.501411 0.739085 0.552531 0.385309 -0.066276 0.628875 -0.774677 -0.723509 0.474470 0.501411 0.677732 0.626272 0.385309 -0.131203 0.618597 -0.774677 -0.769252 0.396028 0.501411 0.608362 0.693854 0.385309 -0.195313 0.601439 -0.774677 -0.806522 0.313223 0.501411 0.532290 0.753793 0.385309 -0.257273 0.577656 -0.774677 -0.834908 0.226969 0.501411 0.450356 0.805430 0.385309 -0.316398 0.547511 -0.774677 -0.853959 0.139069 0.501411 0.364309 0.847830 0.385309 -0.371527 0.511706 -0.774677 -0.863832 0.048802 0.501411 0.273444 0.881343 0.385309 -0.423112 0.469949 -0.774677 -0.864189 -0.042003 0.501411 0.179566 0.905148 0.385309 -0.470036 0.423016 -0.774677 -0.855159 -0.131490 0.501411 0.084630 0.918899 0.385309 -0.511410 0.371935 -0.774677 -0.836668 -0.220392 0.501411 -0.012143 0.922708 0.385309 -0.547575 0.316287 -0.774677 -0.808962 -0.306867 0.501411 -0.108782 0.916353 0.385309 -0.577709 0.257155 -0.774677 -0.772345 -0.389962 0.501411 -0.204224 0.899906 0.385309 -0.601479 0.195191 -0.774677 -0.727689 -0.468034 0.501411 -0.296542 0.873842 0.385309 -0.618492 0.131695 -0.774677 -0.674627 -0.541724 0.501411 -0.386494 0.837950 0.385309 -0.628888 0.066148 -0.774677 -0.506750 -0.145787 -0.849677 0.074827 -0.989316 0.125119 -0.858840 -0.000175 0.512245 -0.488680 -0.198095 -0.849677 0.178102 -0.976025 0.125119 -0.854091 -0.090186 0.512245 -0.465474 -0.247755 -0.849677 0.278464 -0.952262 0.125119 -0.840114 -0.178365 0.512245 -0.436944 -0.295176 -0.849677 0.376734 -0.917833 0.125119 -0.816793 -0.265432 0.512245 -0.403601 -0.339345 -0.849677 0.470855 -0.873293 0.125119 -0.784476 -0.349576 0.512245 -0.366192 -0.379411 -0.849677 0.558969 -0.819694 0.125119 -0.743946 -0.429126 0.512245 -0.324411 -0.415701 -0.849677 0.641801 -0.756596 0.125119 -0.694874 -0.504733 0.512245 -0.279056 -0.447412 -0.849677 0.717563 -0.685164 0.125119 -0.638147 -0.574781 0.512245 -0.230627 -0.474195 -0.849677 0.785421 -0.606184 0.125119 -0.574391 -0.638498 0.512245 -0.180153 -0.495575 -0.849677 0.844107 -0.521372 0.125119 -0.505004 -0.694677 0.512245 -0.127221 -0.511726 -0.849677 0.894101 -0.430033 0.125119 -0.429415 -0.743780 0.512245 -0.072888 -0.522242 -0.849677 0.934248 -0.333956 0.125119 -0.349097 -0.784689 0.512245 -0.018279 -0.526987 -0.849677 0.963869 -0.235165 0.125119 -0.265750 -0.816690 0.512245 0.037054 -0.526000 -0.849677 0.983207 -0.132849 0.125119 -0.178692 -0.840044 0.512245 0.091978 -0.519220 -0.849677 0.991716 -0.029071 0.125119 -0.089665 -0.854146 0.512245 0.145477 -0.506839 -0.849677 0.989362 0.074223 0.125119 -0.000350 -0.858840 0.512245 0.197796 -0.488801 -0.849677 0.976134 0.177506 0.125119 0.089665 -0.854146 0.512245 0.247937 -0.465378 -0.849677 0.952154 0.278834 0.125119 0.178692 -0.840044 0.512245 0.295346 -0.436829 -0.849677 0.917686 0.377091 0.125119 0.265750 -0.816690 0.512245 0.339099 -0.403809 -0.849677 0.873581 0.470321 0.125119 0.349097 -0.784689 0.512245 0.379553 -0.366045 -0.849677 0.819477 0.559288 0.125119 0.429415 -0.743780 0.512245 0.415827 -0.324249 -0.849677 0.756346 0.642095 0.125119 0.505004 -0.694677 0.512245 0.447241 -0.279329 -0.849677 0.685602 0.717144 0.125119 0.574391 -0.638498 0.512245 0.474054 -0.230916 -0.849677 0.606664 0.785050 0.125119 0.638147 -0.574781 0.512245 0.495645 -0.179960 -0.849677 0.521044 0.844310 0.125119 0.694874 -0.504733 0.512245 0.511776 -0.127022 -0.849677 0.429685 0.894269 0.125119 0.743946 -0.429126 0.512245 0.522197 -0.073207 -0.849677 0.334527 0.934043 0.125119 0.784476 -0.349576 0.512245 0.526994 -0.018074 -0.849677 0.234790 0.963960 0.125119 0.816793 -0.265432 0.512245 0.525986 0.037258 -0.849677 0.132467 0.983259 0.125119 0.840114 -0.178365 0.512245 0.519276 0.091661 -0.849677 0.029676 0.991698 0.125119 0.854091 -0.090186 0.512245 0.506809 0.145580 -0.849677 -0.074424 0.989346 0.125119 0.858840 -0.000175 0.512245 0.488760 0.197896 -0.849677 -0.177705 0.976098 0.125119 0.854128 0.089839 0.512245 0.465328 0.248031 -0.849677 -0.279028 0.952097 0.125119 0.840008 0.178863 0.512245 0.437065 0.294998 -0.849677 -0.376360 0.917986 0.125119 0.816901 0.265100 0.512245 0.403740 0.339181 -0.849677 -0.470499 0.873485 0.125119 0.784618 0.349257 0.512245 0.365967 0.379628 -0.849677 -0.559455 0.819363 0.125119 0.743692 0.429567 0.512245 0.324164 0.415893 -0.849677 -0.642249 0.756215 0.125119 0.694575 0.505145 0.512245 0.279238 0.447298 -0.849677 -0.717284 0.685456 0.125119 0.638381 0.574521 0.512245 0.230820 0.474101 -0.849677 -0.785174 0.606504 0.125119 0.574651 0.638264 0.512245 0.179859 0.495681 -0.849677 -0.844416 0.520872 0.125119 0.504592 0.694977 0.512245 0.127430 0.511675 -0.849677 -0.893926 0.430397 0.125119 0.429718 0.743605 0.512245 0.073101 0.522212 -0.849677 -0.934112 0.334336 0.125119 0.349416 0.784547 0.512245 0.017966 0.526998 -0.849677 -0.964008 0.234594 0.125119 0.265266 0.816847 0.512245 -0.037366 0.525978 -0.849677 -0.983286 0.132267 0.125119 0.178194 0.840150 0.512245 -0.091767 0.519257 -0.849677 -0.991704 0.029474 0.125119 0.090013 0.854110 0.512245 -0.145683 0.506780 -0.849677 -0.989331 -0.074626 0.125119 0.000000 0.858840 0.512245 -0.197995 0.488720 -0.849677 -0.976061 -0.177904 0.125119 -0.090013 0.854110 0.512245 -0.247661 0.465525 -0.849677 -0.952319 -0.278270 0.125119 -0.178194 0.840150 0.512245 -0.295087 0.437004 -0.849677 -0.917909 -0.376547 0.125119 -0.265266 0.816847 0.512245 -0.339263 0.403670 -0.849677 -0.873389 -0.470677 0.125119 -0.349416 0.784547 0.512245 -0.379702 0.365890 -0.849677 -0.819249 -0.559622 0.125119 -0.429718 0.743605 0.512245 -0.415635 0.324495 -0.849677 -0.756726 -0.641647 0.125119 -0.504592 0.694977 0.512245 -0.447355 0.279147 -0.849677 -0.685310 -0.717423 0.125119 -0.574651 0.638264 0.512245 -0.474148 0.230723 -0.849677 -0.606344 -0.785297 0.125119 -0.638381 0.574521 0.512245 -0.495538 0.180254 -0.849677 -0.521544 -0.844000 0.125119 -0.694575 0.505145 0.512245 -0.511701 0.127325 -0.849677 -0.430215 -0.894014 0.125119 -0.743692 0.429567 0.512245 -0.522227 0.072994 -0.849677 -0.334146 -0.934180 0.125119 -0.784618 0.349257 0.512245 -0.527001 0.017859 -0.849677 -0.234397 -0.964056 0.125119 -0.816901 0.265100 0.512245 -0.526008 -0.036947 -0.849677 -0.133050 -0.983180 0.125119 -0.840008 0.178863 0.512245 -0.519239 -0.091873 -0.849677 -0.029273 -0.991710 0.125119 -0.854128 0.089839 0.512245 0.221421 -0.410638 -0.884505 -0.099509 -0.911798 0.398399 -0.970088 -0.000198 -0.242754 0.263240 -0.385170 -0.884505 -0.003398 -0.917206 0.398399 -0.964724 -0.101869 -0.242754 0.301803 -0.355762 -0.884505 0.091838 -0.912603 0.398399 -0.948937 -0.201469 -0.242754 0.337427 -0.322171 -0.884505 0.186979 -0.897951 0.398399 -0.922595 -0.299815 -0.242754 0.369335 -0.285032 -0.884505 0.280061 -0.873409 0.398399 -0.886091 -0.394858 -0.242754 0.396929 -0.245150 -0.884505 0.369219 -0.839616 0.398399 -0.840312 -0.484712 -0.242754 0.420436 -0.202199 -0.884505 0.455183 -0.796295 0.398399 -0.784883 -0.570113 -0.242754 0.439313 -0.157021 -0.884505 0.536134 -0.744203 0.398399 -0.720809 -0.649235 -0.242754 0.453350 -0.110113 -0.884505 0.611179 -0.683914 0.398399 -0.648794 -0.721205 -0.242754 0.462332 -0.062455 -0.884505 0.678876 -0.616771 0.398399 -0.570418 -0.784661 -0.242754 0.466331 -0.013655 -0.884505 0.739779 -0.542223 0.398399 -0.485039 -0.840124 -0.242754 0.465194 0.035295 -0.884505 0.792533 -0.461702 0.398399 -0.394316 -0.886332 -0.242754 0.459017 0.083397 -0.884505 0.836182 -0.376933 0.398399 -0.300174 -0.922478 -0.242754 0.447748 0.131046 -0.884505 0.871082 -0.287219 0.398399 -0.201838 -0.948858 -0.242754 0.431547 0.177252 -0.884505 0.896387 -0.194342 0.398399 -0.101279 -0.964787 -0.242754 0.410774 0.221170 -0.884505 0.911737 -0.100066 0.398399 -0.000395 -0.970088 -0.242754 0.385331 0.263004 -0.884505 0.917204 -0.003959 0.398399 0.101279 -0.964787 -0.242754 0.355644 0.301941 -0.884505 0.912567 0.092193 0.398399 0.201838 -0.948858 -0.242754 0.322040 0.337552 -0.884505 0.897879 0.187329 0.398399 0.300174 -0.922478 -0.242754 0.285258 0.369160 -0.884505 0.873580 0.279527 0.398399 0.394316 -0.886332 -0.242754 0.244996 0.397024 -0.884505 0.839473 0.369545 0.398399 0.485039 -0.840124 -0.242754 0.202036 0.420515 -0.884505 0.796118 0.455493 0.398399 0.570418 -0.784661 -0.242754 0.157289 0.439217 -0.884505 0.744531 0.535679 0.398399 0.648794 -0.721205 -0.242754 0.110390 0.453283 -0.884505 0.684287 0.610761 0.398399 0.720809 -0.649235 -0.242754 0.062275 0.462356 -0.884505 0.616507 0.679115 0.398399 0.784883 -0.570113 -0.242754 0.013474 0.466337 -0.884505 0.541935 0.739989 0.398399 0.840312 -0.484712 -0.242754 -0.035011 0.465216 -0.884505 0.462187 0.792251 0.398399 0.886091 -0.394858 -0.242754 -0.083576 0.458984 -0.884505 0.376608 0.836328 0.398399 0.922595 -0.299815 -0.242754 -0.131221 0.447697 -0.884505 0.286880 0.871193 0.398399 0.948937 -0.201469 -0.242754 -0.176988 0.431656 -0.884505 0.194889 0.896268 0.398399 0.964724 -0.101869 -0.242754 -0.221254 0.410729 -0.884505 0.099881 0.911758 0.398399 0.970088 -0.000198 -0.242754 -0.263083 0.385278 -0.884505 0.003772 0.917204 0.398399 0.964766 0.101476 -0.242754 -0.302014 0.355583 -0.884505 -0.092379 0.912548 0.398399 0.948817 0.202031 -0.242754 -0.337296 0.322309 -0.884505 -0.186613 0.898028 0.398399 0.922717 0.299439 -0.242754 -0.369218 0.285182 -0.884505 -0.279705 0.873523 0.398399 0.886252 0.394497 -0.242754 -0.397074 0.244915 -0.884505 -0.369716 0.839397 0.398399 0.840025 0.485210 -0.242754 -0.420556 0.201950 -0.884505 -0.455655 0.796026 0.398399 0.784545 0.570578 -0.242754 -0.439249 0.157200 -0.884505 -0.535831 0.744422 0.398399 0.721073 0.648941 -0.242754 -0.453305 0.110298 -0.884505 -0.610900 0.684163 0.398399 0.649088 0.720941 -0.242754 -0.462369 0.062181 -0.884505 -0.679241 0.616368 0.398399 0.569953 0.784999 -0.242754 -0.466326 0.013845 -0.884505 -0.739558 0.542524 0.398399 0.485381 0.839926 -0.242754 -0.465208 -0.035106 -0.884505 -0.792345 0.462025 0.398399 0.394678 0.886172 -0.242754 -0.458967 -0.083670 -0.884505 -0.836405 0.376437 0.398399 0.299627 0.922656 -0.242754 -0.447670 -0.131312 -0.884505 -0.871252 0.286703 0.398399 0.201276 0.948978 -0.242754 -0.431620 -0.177076 -0.884505 -0.896308 0.194707 0.398399 0.101672 0.964745 -0.242754 -0.410684 -0.221338 -0.884505 -0.911778 0.099695 0.398399 0.000000 0.970088 -0.242754 -0.385224 -0.263161 -0.884505 -0.917205 0.003585 0.398399 -0.101672 0.964745 -0.242754 -0.355823 -0.301730 -0.884505 -0.912622 -0.091652 0.398399 -0.201276 0.948978 -0.242754 -0.322240 -0.337361 -0.884505 -0.897990 -0.186796 0.398399 -0.299627 0.922656 -0.242754 -0.285107 -0.369277 -0.884505 -0.873466 -0.279883 0.398399 -0.394678 0.886172 -0.242754 -0.244834 -0.397124 -0.884505 -0.839322 -0.369887 0.398399 -0.485381 0.839926 -0.242754 -0.202285 -0.420395 -0.884505 -0.796388 -0.455021 0.398399 -0.569953 0.784999 -0.242754 -0.157110 -0.439281 -0.884505 -0.744313 -0.535982 0.398399 -0.649088 0.720941 -0.242754 -0.110205 -0.453328 -0.884505 -0.684039 -0.611040 0.398399 -0.721073 0.648941 -0.242754 -0.062549 -0.462319 -0.884505 -0.616909 -0.678750 0.398399 -0.784545 0.570578 -0.242754 -0.013750 -0.466329 -0.884505 -0.542373 -0.739668 0.398399 -0.840025 0.485210 -0.242754 0.035200 -0.465201 -0.884505 -0.461864 -0.792439 0.398399 -0.886252 0.394497 -0.242754 0.083763 -0.458950 -0.884505 -0.376267 -0.836482 0.398399 -0.922717 0.299439 -0.242754 0.130955 -0.447775 -0.884505 -0.287397 -0.871023 0.398399 -0.948817 0.202031 -0.242754 0.177164 -0.431583 -0.884505 -0.194524 -0.896347 0.398399 -0.964766 0.101476 -0.242754 -0.895151 -0.288246 -0.340029 0.269487 -0.957557 0.102286 -0.355080 -0.000072 0.934836 -0.860011 -0.380476 -0.340029 0.368361 -0.924039 0.102286 -0.353117 -0.037287 0.934836 -0.815866 -0.467700 -0.340029 0.462298 -0.880805 0.102286 -0.347338 -0.073743 0.934836 -0.762354 -0.550633 -0.340029 0.552067 -0.827502 0.102286 -0.337697 -0.109741 0.934836 -0.700445 -0.627501 -0.340029 0.635754 -0.765084 0.102286 -0.324335 -0.144529 0.934836 -0.631518 -0.696825 -0.340029 0.711745 -0.694951 0.102286 -0.307579 -0.177419 0.934836 -0.555008 -0.759175 -0.340029 0.780661 -0.616528 0.102286 -0.287290 -0.208678 0.934836 -0.472384 -0.813163 -0.340029 0.840978 -0.531314 0.102286 -0.263837 -0.237639 0.934836 -0.384557 -0.858194 -0.340029 0.892032 -0.440247 0.102286 -0.237478 -0.263982 0.934836 -0.293388 -0.893479 -0.340029 0.932915 -0.345264 0.102286 -0.208790 -0.287209 0.934836 -0.198129 -0.919307 -0.340029 0.963963 -0.245586 0.102286 -0.177538 -0.307510 0.934836 -0.100688 -0.935009 -0.340029 0.984393 -0.143203 0.102286 -0.144331 -0.324423 0.934836 -0.003078 -0.940410 -0.340029 0.993941 -0.040237 0.102286 -0.109872 -0.337654 0.934836 0.095500 -0.935553 -0.340029 0.992684 0.064156 0.102286 -0.073879 -0.347310 0.934836 0.193027 -0.920392 -0.340029 0.980493 0.167844 0.102286 -0.037071 -0.353140 0.934836 0.287699 -0.895327 -0.340029 0.957721 0.268902 0.102286 -0.000145 -0.355080 0.934836 0.379951 -0.860243 -0.340029 0.924264 0.367797 0.102286 0.037071 -0.353140 0.934836 0.468018 -0.815684 -0.340029 0.880625 0.462641 0.102286 0.073879 -0.347310 0.934836 0.550930 -0.762140 -0.340029 0.827287 0.552389 0.102286 0.109872 -0.337654 0.934836 0.627073 -0.700828 -0.340029 0.765473 0.635287 0.102286 0.144331 -0.324423 0.934836 0.697071 -0.631247 -0.340029 0.694674 0.712015 0.102286 0.177538 -0.307510 0.934836 0.759391 -0.554712 -0.340029 0.616224 0.780900 0.102286 0.208790 -0.287209 0.934836 0.812874 -0.472881 -0.340029 0.531827 0.840653 0.102286 0.237478 -0.263982 0.934836 0.857958 -0.385081 -0.340029 0.440792 0.891762 0.102286 0.263837 -0.237639 0.934836 0.893593 -0.293040 -0.340029 0.344901 0.933049 0.102286 0.287290 -0.208678 0.934836 0.919384 -0.197771 -0.340029 0.245211 0.964059 0.102286 0.307579 -0.177419 0.934836 0.934948 -0.101259 -0.340029 0.143805 0.984306 0.102286 0.324335 -0.144529 0.934836 0.940411 -0.002712 -0.340029 0.039851 0.993957 0.102286 0.337697 -0.109741 0.934836 0.935516 0.095865 -0.340029 -0.064543 0.992659 0.102286 0.347338 -0.073743 0.934836 0.920509 0.192465 -0.340029 -0.167244 0.980595 0.102286 0.353117 -0.037287 0.934836 0.895268 0.287881 -0.340029 -0.269097 0.957666 0.102286 0.355080 -0.000072 0.934836 0.860165 0.380126 -0.340029 -0.367985 0.924189 0.102286 0.353132 0.037143 0.934836 0.815588 0.468184 -0.340029 -0.462820 0.880531 0.102286 0.347295 0.073949 0.934836 0.762578 0.550323 -0.340029 -0.551730 0.827727 0.102286 0.337741 0.109603 0.934836 0.700700 0.627215 -0.340029 -0.635443 0.765343 0.102286 0.324394 0.144397 0.934836 0.631105 0.697199 -0.340029 -0.712156 0.694529 0.102286 0.307474 0.177601 0.934836 0.554557 0.759504 -0.340029 -0.781026 0.616065 0.102286 0.287166 0.208848 0.934836 0.472715 0.812970 -0.340029 -0.840761 0.531656 0.102286 0.263934 0.237531 0.934836 0.384906 0.858037 -0.340029 -0.891852 0.440610 0.102286 0.237585 0.263885 0.934836 0.292858 0.893652 -0.340029 -0.933119 0.344711 0.102286 0.208619 0.287333 0.934836 0.198503 0.919226 -0.340029 -0.963863 0.245979 0.102286 0.177664 0.307437 0.934836 0.101069 0.934968 -0.340029 -0.984335 0.143604 0.102286 0.144463 0.324365 0.934836 0.002521 0.940412 -0.340029 -0.993965 0.039648 0.102286 0.109672 0.337719 0.934836 -0.096055 0.935497 -0.340029 -0.992646 -0.064745 0.102286 0.073673 0.347353 0.934836 -0.192652 0.920470 -0.340029 -0.980561 -0.167444 0.102286 0.037215 0.353125 0.934836 -0.288063 0.895209 -0.340029 -0.957611 -0.269292 0.102286 0.000000 0.355080 0.934836 -0.380301 0.860088 -0.340029 -0.924114 -0.368173 0.102286 -0.037215 0.353125 0.934836 -0.467534 0.815961 -0.340029 -0.880900 -0.462119 0.102286 -0.073673 0.347353 0.934836 -0.550478 0.762466 -0.340029 -0.827615 -0.551898 0.102286 -0.109672 0.337719 0.934836 -0.627358 0.700573 -0.340029 -0.765214 -0.635599 0.102286 -0.144463 0.324365 0.934836 -0.697328 0.630963 -0.340029 -0.694384 -0.712298 0.102286 -0.177664 0.307437 0.934836 -0.759062 0.555162 -0.340029 -0.616687 -0.780535 0.102286 -0.208619 0.287333 0.934836 -0.813067 0.472549 -0.340029 -0.531485 -0.840870 0.102286 -0.237585 0.263885 0.934836 -0.858115 0.384732 -0.340029 -0.440428 -0.891942 0.102286 -0.263934 0.237531 0.934836 -0.893419 0.293570 -0.340029 -0.345454 -0.932845 0.102286 -0.287166 0.208848 0.934836 -0.919267 0.198316 -0.340029 -0.245783 -0.963913 0.102286 -0.307474 0.177601 0.934836 -0.934989 0.100878 -0.340029 -0.143404 -0.984364 0.102286 -0.324394 0.144397 0.934836 -0.940412 0.002329 -0.340029 -0.039446 -0.993973 0.102286 -0.337741 0.109603 0.934836 -0.935573 -0.095310 -0.340029 0.063954 -0.992697 0.102286 -0.347295 0.073949 0.934836 -0.920431 -0.192840 -0.340029 0.167644 -0.980527 0.102286 -0.353132 0.037143 0.934836 0.077602 -0.993875 -0.078678 -0.696982 -0.110509 0.708522 -0.712877 -0.000145 -0.701289 0.181340 -0.980268 -0.078678 -0.681561 -0.182949 0.708522 -0.708936 -0.074859 -0.701289 0.282124 -0.956146 -0.078678 -0.658886 -0.252716 0.708522 -0.697334 -0.148051 -0.701289 0.380781 -0.921312 -0.078678 -0.628771 -0.320380 0.708522 -0.677977 -0.220321 -0.701289 0.475244 -0.876329 -0.078678 -0.591730 -0.384515 0.708522 -0.651152 -0.290165 -0.701289 0.563651 -0.822258 -0.078678 -0.548615 -0.443867 0.708522 -0.617511 -0.356195 -0.701289 0.646725 -0.758655 -0.078678 -0.499073 -0.498921 0.708522 -0.576778 -0.418952 -0.701289 0.722675 -0.686695 -0.078678 -0.444034 -0.548479 0.708522 -0.529692 -0.477096 -0.701289 0.790666 -0.607172 -0.078678 -0.384104 -0.591997 0.708522 -0.476772 -0.529984 -0.701289 0.849426 -0.521810 -0.078678 -0.320572 -0.628673 0.708522 -0.419177 -0.576615 -0.701289 0.899437 -0.429910 -0.078678 -0.252917 -0.658809 0.708522 -0.356435 -0.617372 -0.701289 0.939541 -0.333275 -0.078678 -0.182476 -0.681688 0.708522 -0.289767 -0.651329 -0.701289 0.969063 -0.233938 -0.078678 -0.110723 -0.696948 0.708522 -0.220585 -0.677891 -0.701289 0.988244 -0.131085 -0.078678 -0.037068 -0.704714 0.708522 -0.148322 -0.697277 -0.701289 0.996540 -0.026788 -0.078678 0.036996 -0.704718 0.708522 -0.074426 -0.708982 -0.701289 0.993922 0.076995 -0.078678 0.110084 -0.697049 0.708522 -0.000290 -0.712877 -0.701289 0.980379 0.180741 -0.078678 0.182533 -0.681673 0.708522 0.074426 -0.708982 -0.701289 0.956036 0.282496 -0.078678 0.252972 -0.658788 0.708522 0.148322 -0.697277 -0.701289 0.921163 0.381140 -0.078678 0.320624 -0.628646 0.708522 0.220585 -0.677891 -0.701289 0.876619 0.474709 -0.078678 0.384153 -0.591965 0.708522 0.289767 -0.651329 -0.701289 0.822038 0.563970 -0.078678 0.444080 -0.548443 0.708522 0.356435 -0.617372 -0.701289 0.758403 0.647020 -0.078678 0.499115 -0.498879 0.708522 0.419177 -0.576615 -0.701289 0.687136 0.722256 -0.078678 0.548208 -0.444369 0.708522 0.476772 -0.529984 -0.701289 0.607654 0.790295 -0.078678 0.591762 -0.384466 0.708522 0.529692 -0.477096 -0.701289 0.521479 0.849629 -0.078678 0.628798 -0.320328 0.708522 0.576778 -0.418952 -0.701289 0.429560 0.899604 -0.078678 0.658907 -0.252661 0.708522 0.617511 -0.356195 -0.701289 0.333849 0.939337 -0.078678 0.681576 -0.182893 0.708522 0.651152 -0.290165 -0.701289 0.233561 0.969154 -0.078678 0.696991 -0.110451 0.708522 0.677977 -0.220321 -0.701289 0.130700 0.988295 -0.078678 0.704729 -0.036794 0.708522 0.697334 -0.148051 -0.701289 0.027397 0.996523 -0.078678 0.704741 0.036565 0.708522 0.708936 -0.074859 -0.701289 -0.077197 0.993907 -0.078678 0.697027 0.110226 0.708522 0.712877 -0.000145 -0.701289 -0.180940 0.980342 -0.078678 0.681636 0.182672 0.708522 0.708966 0.074570 -0.701289 -0.282691 0.955979 -0.078678 0.658736 0.253106 0.708522 0.697246 0.148464 -0.701289 -0.380406 0.921467 -0.078678 0.628901 0.320124 0.708522 0.678066 0.220045 -0.701289 -0.474887 0.876523 -0.078678 0.591887 0.384274 0.708522 0.651270 0.289899 -0.701289 -0.564138 0.821924 -0.078678 0.548352 0.444192 0.708522 0.617299 0.356561 -0.701289 -0.647174 0.758271 -0.078678 0.498778 0.499216 0.708522 0.576530 0.419294 -0.701289 -0.722396 0.686989 -0.078678 0.444258 0.548299 0.708522 0.529886 0.476880 -0.701289 -0.790418 0.607494 -0.078678 0.384345 0.591840 0.708522 0.476988 0.529789 -0.701289 -0.849735 0.521306 -0.078678 0.320200 0.628863 0.708522 0.418835 0.576863 -0.701289 -0.899262 0.430276 -0.078678 0.253186 0.658706 0.708522 0.356686 0.617227 -0.701289 -0.939405 0.333658 -0.078678 0.182754 0.681614 0.708522 0.290032 0.651211 -0.701289 -0.969201 0.233364 -0.078678 0.110310 0.697014 0.708522 0.220183 0.678022 -0.701289 -0.988322 0.130499 -0.078678 0.036650 0.704736 0.708522 0.147909 0.697364 -0.701289 -0.996529 0.027194 -0.078678 -0.036709 0.704733 0.708522 0.074715 0.708951 -0.701289 -0.993891 -0.077399 -0.078678 -0.110367 0.697004 0.708522 0.000000 0.712877 -0.701289 -0.980305 -0.181140 -0.078678 -0.182811 0.681598 0.708522 -0.074715 0.708951 -0.701289 -0.956204 -0.281929 -0.078678 -0.252581 0.658938 0.708522 -0.147909 0.697364 -0.701289 -0.921389 -0.380594 -0.078678 -0.320252 0.628836 0.708522 -0.220183 0.678022 -0.701289 -0.876426 -0.475066 -0.078678 -0.384395 0.591808 0.708522 -0.290032 0.651211 -0.701289 -0.821809 -0.564305 -0.078678 -0.444303 0.548262 0.708522 -0.356686 0.617227 -0.701289 -0.758786 -0.646570 -0.078678 -0.498819 0.499175 0.708522 -0.418835 0.576863 -0.701289 -0.686842 -0.722535 -0.078678 -0.548389 0.444146 0.708522 -0.476988 0.529789 -0.701289 -0.607333 -0.790542 -0.078678 -0.591919 0.384225 0.708522 -0.529886 0.476880 -0.701289 -0.521983 -0.849320 -0.078678 -0.628608 0.320700 0.708522 -0.576530 0.419294 -0.701289 -0.430093 -0.899350 -0.078678 -0.658757 0.253051 0.708522 -0.617299 0.356561 -0.701289 -0.333466 -0.939473 -0.078678 -0.681651 0.182615 0.708522 -0.651270 0.289899 -0.701289 -0.233166 -0.969249 -0.078678 -0.697036 0.110168 0.708522 -0.678066 0.220045 -0.701289 -0.131286 -0.988217 -0.078678 -0.704707 0.037211 0.708522 -0.697246 0.148464 -0.701289 -0.026991 -0.996535 -0.078678 -0.704726 -0.036852 0.708522 -0.708966 0.074570 -0.701289 0.852368 0.132580 -0.505857 0.114067 -0.991172 -0.067574 -0.510351 -0.000104 -0.859966 0.833778 0.221184 -0.505857 0.217321 -0.973758 -0.067574 -0.507529 -0.053592 -0.859966 0.806311 0.306546 -0.505857 0.317235 -0.945937 -0.067574 -0.499223 -0.105990 -0.859966 0.769742 0.389365 -0.505857 0.414629 -0.907478 -0.067574 -0.485365 -0.157729 -0.859966 0.724695 0.467895 -0.505857 0.507455 -0.859024 -0.067574 -0.466161 -0.207730 -0.859966 0.672206 0.540599 -0.505857 0.593891 -0.801703 -0.067574 -0.442078 -0.255001 -0.859966 0.611845 0.608074 -0.505857 0.674644 -0.735043 -0.067574 -0.412917 -0.299929 -0.859966 0.544745 0.668851 -0.505857 0.747967 -0.660288 -0.067574 -0.379208 -0.341554 -0.859966 0.471645 0.722260 -0.505857 0.813050 -0.578259 -0.067574 -0.341322 -0.379417 -0.859966 0.394116 0.767320 -0.505857 0.868688 -0.490729 -0.067574 -0.300090 -0.412800 -0.859966 0.311525 0.804401 -0.505857 0.915335 -0.396982 -0.067574 -0.255173 -0.441978 -0.859966 0.225502 0.832621 -0.505857 0.951901 -0.298862 -0.067574 -0.207445 -0.466288 -0.859966 0.137848 0.851532 -0.505857 0.977783 -0.198428 -0.067574 -0.157917 -0.485304 -0.859966 0.047842 0.861289 -0.505857 0.993195 -0.094857 -0.067574 -0.106184 -0.499182 -0.859966 -0.042691 0.861560 -0.505857 0.997667 0.009760 -0.067574 -0.053282 -0.507562 -0.859966 -0.132059 0.852449 -0.505857 0.991242 0.113461 -0.067574 -0.000208 -0.510351 -0.859966 -0.220675 0.833913 -0.505857 0.973891 0.216726 -0.067574 0.053282 -0.507562 -0.859966 -0.306859 0.806192 -0.505857 0.945813 0.317603 -0.067574 0.106184 -0.499182 -0.859966 -0.389664 0.769591 -0.505857 0.907317 0.414982 -0.067574 0.157917 -0.485304 -0.859966 -0.467452 0.724981 -0.505857 0.859334 0.506930 -0.067574 0.207445 -0.466288 -0.859966 -0.540861 0.671996 -0.505857 0.801472 0.594203 -0.067574 0.255173 -0.441978 -0.859966 -0.608312 0.611609 -0.505857 0.734781 0.674930 -0.067574 0.300090 -0.412800 -0.859966 -0.668518 0.545153 -0.505857 0.660744 0.747563 -0.067574 0.341322 -0.379417 -0.859966 -0.721972 0.472086 -0.505857 0.578755 0.812697 -0.067574 0.379208 -0.341554 -0.859966 -0.767474 0.393818 -0.505857 0.490391 0.868879 -0.067574 0.412917 -0.299929 -0.859966 -0.804522 0.311212 -0.505857 0.396626 0.915490 -0.067574 0.442078 -0.255001 -0.859966 -0.832483 0.226011 -0.505857 0.299444 0.951718 -0.067574 0.466161 -0.207730 -0.859966 -0.851585 0.137516 -0.505857 0.198048 0.977860 -0.067574 0.485365 -0.157729 -0.859966 -0.861308 0.047507 -0.505857 0.094470 0.993232 -0.067574 0.499223 -0.105990 -0.859966 -0.861586 -0.042165 -0.505857 -0.009150 0.997672 -0.067574 0.507529 -0.053592 -0.859966 -0.852422 -0.132233 -0.505857 -0.113663 0.991219 -0.067574 0.510351 -0.000104 -0.859966 -0.833868 -0.220844 -0.505857 -0.216924 0.973847 -0.067574 0.507551 0.053385 -0.859966 -0.806130 -0.307024 -0.505857 -0.317795 0.945748 -0.067574 0.499161 0.106286 -0.859966 -0.769901 -0.389051 -0.505857 -0.414259 0.907647 -0.067574 0.485430 0.157531 -0.859966 -0.724885 -0.467600 -0.505857 -0.507105 0.859231 -0.067574 0.466246 0.207540 -0.859966 -0.671885 -0.540997 -0.505857 -0.594366 0.801351 -0.067574 0.441926 0.255263 -0.859966 -0.611485 -0.608436 -0.505857 -0.675080 0.734643 -0.067574 0.412739 0.300174 -0.859966 -0.545017 -0.668629 -0.505857 -0.747698 0.660592 -0.067574 0.379347 0.341400 -0.859966 -0.471939 -0.722068 -0.505857 -0.812815 0.578590 -0.067574 0.341477 0.379278 -0.859966 -0.393662 -0.767554 -0.505857 -0.868978 0.490215 -0.067574 0.299845 0.412978 -0.859966 -0.311853 -0.804274 -0.505857 -0.915174 0.397355 -0.067574 0.255353 0.441874 -0.859966 -0.225842 -0.832529 -0.505857 -0.951779 0.299250 -0.067574 0.207635 0.466204 -0.859966 -0.137343 -0.851613 -0.505857 -0.977901 0.197848 -0.067574 0.157630 0.485398 -0.859966 -0.047331 -0.861318 -0.505857 -0.993251 0.094268 -0.067574 0.105888 0.499245 -0.859966 0.042340 -0.861577 -0.505857 -0.997670 -0.009354 -0.067574 0.053488 0.507540 -0.859966 0.132406 -0.852395 -0.505857 -0.991195 -0.113865 -0.067574 0.000000 0.510351 -0.859966 0.221014 -0.833823 -0.505857 -0.973803 -0.217122 -0.067574 -0.053488 0.507540 -0.859966 0.306381 -0.806374 -0.505857 -0.946001 -0.317042 -0.067574 -0.105888 0.499245 -0.859966 0.389208 -0.769822 -0.505857 -0.907563 -0.414444 -0.067574 -0.157630 0.485398 -0.859966 0.467747 -0.724790 -0.505857 -0.859128 -0.507280 -0.067574 -0.207635 0.466204 -0.859966 0.541134 -0.671775 -0.505857 -0.801229 -0.594529 -0.067574 -0.255353 0.441874 -0.859966 0.607949 -0.611969 -0.505857 -0.735181 -0.674495 -0.067574 -0.299845 0.412978 -0.859966 0.668740 -0.544881 -0.505857 -0.660440 -0.747832 -0.067574 -0.341477 0.379278 -0.859966 0.722164 -0.471792 -0.505857 -0.578424 -0.812932 -0.067574 -0.379347 0.341400 -0.859966 0.767240 -0.394273 -0.505857 -0.490906 -0.868588 -0.067574 -0.412739 0.300174 -0.859966 0.804337 -0.311689 -0.505857 -0.397169 -0.915255 -0.067574 -0.441926 0.255263 -0.859966 0.832575 -0.225672 -0.505857 -0.299056 -0.951840 -0.067574 -0.466246 0.207540 -0.859966 0.851641 -0.137169 -0.505857 -0.197649 -0.977941 -0.067574 -0.485430 0.157531 -0.859966 0.861280 -0.048017 -0.505857 -0.095059 -0.993176 -0.067574 -0.499161 0.106286 -0.859966 0.861569 0.042516 -0.505857 0.009557 -0.997669 -0.067574 -0.507551 0.053385 -0.859966 -0.009176 0.982191 -0.187662 -0.046889 -0.187886 -0.981071 -0.998858 -0.000203 0.047778 -0.112067 0.975820 -0.187662 -0.026939 -0.191766 -0.981071 -0.993335 -0.104890 0.047778 -0.212763 0.958913 -0.187662 -0.006886 -0.193526 -0.981071 -0.977080 -0.207444 0.047778 -0.312093 0.931333 -0.187662 0.013435 -0.193182 -0.981071 -0.949957 -0.308706 0.047778 -0.407984 0.893494 -0.187662 0.033608 -0.190710 -0.981071 -0.912370 -0.406568 0.047778 -0.498536 0.846313 -0.187662 0.053225 -0.186191 -0.981071 -0.865234 -0.499087 0.047778 -0.584490 0.789402 -0.187662 0.072446 -0.179587 -0.981071 -0.808161 -0.587021 0.047778 -0.664006 0.723795 -0.187662 0.090869 -0.171005 -0.981071 -0.742186 -0.668489 0.047778 -0.736207 0.650216 -0.187662 0.108291 -0.160540 -0.981071 -0.668036 -0.742594 0.047778 -0.799730 0.570275 -0.187662 0.124372 -0.148430 -0.981071 -0.587335 -0.807932 0.047778 -0.855095 0.483317 -0.187662 0.139243 -0.134578 -0.981071 -0.499424 -0.865039 0.047778 -0.901041 0.391035 -0.187662 0.152581 -0.119243 -0.981071 -0.406011 -0.912619 0.047778 -0.936767 0.295383 -0.187662 0.164136 -0.102759 -0.981071 -0.309076 -0.949836 0.047778 -0.962566 0.195577 -0.187662 0.174001 -0.084990 -0.981071 -0.207824 -0.976999 0.047778 -0.977762 0.093616 -0.187662 0.181951 -0.066286 -0.981071 -0.104283 -0.993399 0.047778 -0.982196 -0.008576 -0.187662 0.187858 -0.047004 -0.981071 -0.000407 -0.998858 0.047778 -0.975888 -0.111470 -0.187662 0.191749 -0.027056 -0.981071 0.104283 -0.993399 0.047778 -0.958830 -0.213136 -0.187662 0.193529 -0.006810 -0.981071 0.207824 -0.976999 0.047778 -0.931211 -0.312455 -0.187662 0.193177 0.013510 -0.981071 0.309076 -0.949836 0.047778 -0.893743 -0.407438 -0.187662 0.190731 0.033492 -0.981071 0.406011 -0.912619 0.047778 -0.846119 -0.498865 -0.187662 0.186170 0.053297 -0.981071 0.499424 -0.865039 0.047778 -0.789174 -0.584797 -0.187662 0.179559 0.072515 -0.981071 0.587335 -0.807932 0.047778 -0.724201 -0.663563 -0.187662 0.171061 0.090764 -0.981071 0.668036 -0.742594 0.047778 -0.650666 -0.735810 -0.187662 0.160606 0.108193 -0.981071 0.742186 -0.668489 0.047778 -0.569964 -0.799952 -0.187662 0.148382 0.124429 -0.981071 0.808161 -0.587021 0.047778 -0.482985 -0.855283 -0.187662 0.134524 0.139296 -0.981071 0.865234 -0.499087 0.047778 -0.391586 -0.900802 -0.187662 0.119336 0.152508 -0.981071 0.912370 -0.406568 0.047778 -0.295019 -0.936881 -0.187662 0.102695 0.164176 -0.981071 0.949957 -0.308706 0.047778 -0.195202 -0.962642 -0.187662 0.084923 0.174035 -0.981071 0.977080 -0.207444 0.047778 -0.094213 -0.977705 -0.187662 0.066397 0.181910 -0.981071 0.993335 -0.104890 0.047778 0.008776 -0.982194 -0.187662 0.046966 0.187867 -0.981071 0.998858 -0.000203 0.047778 0.111669 -0.975865 -0.187662 0.027017 0.191755 -0.981071 0.993378 0.104485 0.047778 0.213332 -0.958787 -0.187662 0.006771 0.193530 -0.981071 0.976956 0.208023 0.047778 0.311713 -0.931460 -0.187662 -0.013356 0.193188 -0.981071 0.950082 0.308319 0.047778 0.407620 -0.893660 -0.187662 -0.033530 0.190724 -0.981071 0.912536 0.406197 0.047778 0.499037 -0.846017 -0.187662 -0.053335 0.186159 -0.981071 0.864938 0.499600 0.047778 0.584957 -0.789055 -0.187662 -0.072552 0.179544 -0.981071 0.807812 0.587500 0.047778 0.663711 -0.724066 -0.187662 -0.090799 0.171042 -0.981071 0.742458 0.668187 0.047778 0.735943 -0.650516 -0.187662 -0.108225 0.160584 -0.981071 0.668338 0.742322 0.047778 0.800068 -0.569801 -0.187662 -0.124460 0.148357 -0.981071 0.586857 0.808280 0.047778 0.854898 -0.483666 -0.187662 -0.139188 0.134635 -0.981071 0.499776 0.864836 0.047778 0.900881 -0.391402 -0.187662 -0.152532 0.119305 -0.981071 0.406383 0.912453 0.047778 0.936942 -0.294828 -0.187662 -0.164196 0.102662 -0.981071 0.308513 0.950020 0.047778 0.962681 -0.195006 -0.187662 -0.174052 0.084887 -0.981071 0.207245 0.977122 0.047778 0.977724 -0.094014 -0.187662 -0.181924 0.066360 -0.981071 0.104687 0.993357 0.047778 0.982193 0.008976 -0.187662 -0.187877 0.046927 -0.981071 0.000000 0.998858 0.047778 0.975842 0.111868 -0.187662 -0.191760 0.026978 -0.981071 -0.104687 0.993357 0.047778 0.958957 0.212568 -0.187662 -0.193525 0.006925 -0.981071 -0.207245 0.977122 0.047778 0.931396 0.311903 -0.187662 -0.193185 -0.013396 -0.981071 -0.308513 0.950020 0.047778 0.893577 0.407802 -0.187662 -0.190717 -0.033569 -0.981071 -0.406383 0.912453 0.047778 0.845915 0.499210 -0.187662 -0.186148 -0.053373 -0.981071 -0.499776 0.864836 0.047778 0.789520 0.584329 -0.187662 -0.179602 -0.072409 -0.981071 -0.586857 0.808280 0.047778 0.723930 0.663858 -0.187662 -0.171024 -0.090834 -0.981071 -0.668338 0.742322 0.047778 0.650366 0.736075 -0.187662 -0.160562 -0.108258 -0.981071 -0.742458 0.668187 0.047778 0.570438 0.799614 -0.187662 -0.148456 -0.124341 -0.981071 -0.807812 0.587500 0.047778 0.483491 0.854997 -0.187662 -0.134606 -0.139216 -0.981071 -0.864938 0.499600 0.047778 0.391219 0.900961 -0.187662 -0.119274 -0.152557 -0.981071 -0.912536 0.406197 0.047778 0.294637 0.937002 -0.187662 -0.102628 -0.164217 -0.981071 -0.950082 0.308319 0.047778 0.195773 0.962526 -0.187662 -0.085026 -0.173984 -0.981071 -0.976956 0.208023 0.047778 0.093815 0.977743 -0.187662 -0.066323 -0.181937 -0.981071 -0.993378 0.104485 0.047778 -0.448328 -0.703516 -0.551424 0.443981 -0.710680 0.545725 -0.775811 -0.000158 0.630965 -0.372125 -0.746629 -0.551424 0.516020 -0.660233 0.545725 -0.771522 -0.081468 0.630965 -0.292605 -0.781226 -0.551424 0.581772 -0.603097 0.545725 -0.758896 -0.161121 0.630965 -0.209115 -0.807591 -0.551424 0.641777 -0.538801 0.545725 -0.737830 -0.239772 0.630965 -0.123322 -0.825060 -0.551424 0.694713 -0.468571 0.545725 -0.708636 -0.315781 0.630965 -0.037004 -0.833404 -0.551424 0.739603 -0.393919 0.545725 -0.672026 -0.387640 0.630965 0.050546 -0.832693 -0.551424 0.776815 -0.314234 0.545725 -0.627697 -0.455938 0.630965 0.137540 -0.822809 -0.551424 0.805471 -0.231088 0.545725 -0.576454 -0.519214 0.630965 0.223019 -0.803862 -0.551424 0.825254 -0.145396 0.545725 -0.518862 -0.576771 0.630965 0.305265 -0.776367 -0.551424 0.835889 -0.058939 0.545725 -0.456183 -0.627520 0.630965 0.384952 -0.740097 -0.551424 0.837463 0.028993 0.545725 -0.387902 -0.671875 0.630965 0.460400 -0.695675 -0.551424 0.829812 0.116606 0.545725 -0.315348 -0.708829 0.630965 0.530132 -0.644121 -0.551424 0.813223 0.202121 0.545725 -0.240059 -0.737736 0.630965 0.594721 -0.585012 -0.551424 0.787561 0.286239 0.545725 -0.161417 -0.758833 0.630965 0.652759 -0.519459 -0.551424 0.753223 0.367205 0.545725 -0.080996 -0.771572 0.630965 0.703242 -0.448758 -0.551424 0.710951 0.443546 0.545725 -0.000316 -0.775811 0.630965 0.746401 -0.372581 -0.551424 0.660549 0.515616 0.545725 0.080996 -0.771572 0.630965 0.781340 -0.292301 -0.551424 0.602870 0.582007 0.545725 0.161417 -0.758833 0.630965 0.807672 -0.208801 -0.551424 0.538552 0.641987 0.545725 0.240059 -0.737736 0.630965 0.824984 -0.123827 -0.551424 0.468995 0.694426 0.545725 0.315348 -0.708829 0.630965 0.833419 -0.036680 -0.551424 0.393632 0.739756 0.545725 0.387902 -0.671875 0.630965 0.832673 0.050870 -0.551424 0.313932 0.776937 0.545725 0.456183 -0.627520 0.630965 0.822893 0.137037 -0.551424 0.231580 0.805329 0.545725 0.518862 -0.576771 0.630965 0.803998 0.222527 -0.551424 0.145900 0.825165 0.545725 0.576454 -0.519214 0.630965 0.776248 0.305567 -0.551424 0.058613 0.835912 0.545725 0.627697 -0.455938 0.630965 0.739947 0.385240 -0.551424 -0.029319 0.837452 0.545725 0.672026 -0.387640 0.630965 0.695957 0.459974 -0.551424 -0.116099 0.829883 0.545725 0.708636 -0.315781 0.630965 0.643915 0.530382 -0.551424 -0.202437 0.813145 0.545725 0.737830 -0.239772 0.630965 0.584781 0.594948 -0.551424 -0.286545 0.787449 0.545725 0.758896 -0.161121 0.630965 0.519858 0.652441 -0.551424 -0.366744 0.753448 0.545725 0.771522 -0.081468 0.630965 0.448614 0.703333 -0.551424 -0.443691 0.710861 0.545725 0.775811 -0.000158 0.630965 0.372429 0.746477 -0.551424 -0.515751 0.660444 0.545725 0.771555 0.081153 0.630965 0.292142 0.781399 -0.551424 -0.582130 0.602752 0.545725 0.758800 0.161571 0.630965 0.209444 0.807505 -0.551424 -0.641558 0.539063 0.545725 0.737927 0.239471 0.630965 0.123658 0.825009 -0.551424 -0.694522 0.468854 0.545725 0.708765 0.315492 0.630965 0.036511 0.833426 -0.551424 -0.739836 0.393481 0.545725 0.671796 0.388038 0.630965 -0.051040 0.832663 -0.551424 -0.777001 0.313774 0.545725 0.627427 0.456310 0.630965 -0.137205 0.822865 -0.551424 -0.805377 0.231416 0.545725 0.576666 0.518980 0.630965 -0.222691 0.803953 -0.551424 -0.825195 0.145732 0.545725 0.519097 0.576560 0.630965 -0.305725 0.776186 -0.551424 -0.835924 0.058443 0.545725 0.455811 0.627790 0.630965 -0.384651 0.740254 -0.551424 -0.837475 -0.028652 0.545725 0.388175 0.671717 0.630965 -0.460116 0.695863 -0.551424 -0.829859 -0.116268 0.545725 0.315637 0.708701 0.630965 -0.530514 0.643807 -0.551424 -0.813103 -0.202603 0.545725 0.239621 0.737879 0.630965 -0.595067 0.584660 -0.551424 -0.787391 -0.286706 0.545725 0.160967 0.758929 0.630965 -0.652547 0.519725 -0.551424 -0.753373 -0.366898 0.545725 0.081311 0.771539 0.630965 -0.703424 0.448471 -0.551424 -0.710770 -0.443836 0.545725 0.000000 0.775811 0.630965 -0.746553 0.372277 -0.551424 -0.660339 -0.515885 0.545725 -0.081311 0.771539 0.630965 -0.781167 0.292764 -0.551424 -0.603215 -0.581649 0.545725 -0.160967 0.758929 0.630965 -0.807548 0.209280 -0.551424 -0.538932 -0.641667 0.545725 -0.239621 0.737879 0.630965 -0.825035 0.123490 -0.551424 -0.468713 -0.694617 0.545725 -0.315637 0.708701 0.630965 -0.833433 0.036341 -0.551424 -0.393330 -0.739916 0.545725 -0.388175 0.671717 0.630965 -0.832703 -0.050376 -0.551424 -0.314392 -0.776751 0.545725 -0.455811 0.627790 0.630965 -0.822837 -0.137372 -0.551424 -0.231252 -0.805424 0.545725 -0.519097 0.576560 0.630965 -0.803908 -0.222855 -0.551424 -0.145564 -0.825225 0.545725 -0.576666 0.518980 0.630965 -0.776429 -0.305107 -0.551424 -0.059109 -0.835877 0.545725 -0.627427 0.456310 0.630965 -0.740175 -0.384802 -0.551424 0.028823 -0.837469 0.545725 -0.671796 0.388038 0.630965 -0.695769 -0.460258 -0.551424 0.116437 -0.829836 0.545725 -0.708765 0.315492 0.630965 -0.643699 -0.530645 -0.551424 0.202768 -0.813062 0.545725 -0.737927 0.239471 0.630965 -0.585133 -0.594602 -0.551424 0.286079 -0.787619 0.545725 -0.758800 0.161571 0.630965 -0.519592 -0.652653 -0.551424 0.367051 -0.753298 0.545725 -0.771555 0.081153 0.630965 0.262288 -0.882471 -0.390448 -0.491789 -0.470367 0.732734 -0.830270 -0.000169 -0.557361 0.353333 -0.850121 -0.390448 -0.439782 -0.519319 0.732734 -0.825680 -0.087186 -0.557361 0.439677 -0.808848 -0.390448 -0.383494 -0.562168 0.732734 -0.812168 -0.172431 -0.557361 0.522028 -0.758312 -0.390448 -0.322463 -0.599265 0.732734 -0.789623 -0.256603 -0.557361 0.598630 -0.699423 -0.390448 -0.257880 -0.629761 0.732734 -0.758380 -0.337948 -0.557361 0.668004 -0.633498 -0.390448 -0.191109 -0.653130 0.732734 -0.719199 -0.414851 -0.557361 0.730720 -0.559998 -0.390448 -0.121604 -0.669562 0.732734 -0.671759 -0.487943 -0.557361 0.785388 -0.480329 -0.390448 -0.050760 -0.678619 0.732734 -0.616919 -0.555661 -0.557361 0.831404 -0.395369 -0.390448 0.020644 -0.680202 0.732734 -0.555284 -0.617259 -0.557361 0.867956 -0.306923 -0.390448 0.091146 -0.674384 0.732734 -0.488205 -0.671569 -0.557361 0.895344 -0.214264 -0.390448 0.161325 -0.661117 0.732734 -0.415131 -0.719038 -0.557361 0.912869 -0.119246 -0.390448 0.229726 -0.640568 0.732734 -0.337484 -0.758586 -0.557361 0.920316 -0.023834 -0.390448 0.294984 -0.613258 0.732734 -0.256910 -0.789523 -0.557361 0.917746 0.072753 -0.390448 0.357633 -0.578964 0.732734 -0.172747 -0.812101 -0.557361 0.905066 0.168538 -0.390448 0.416343 -0.538293 0.732734 -0.086682 -0.825733 -0.557361 0.882631 0.261749 -0.390448 0.470066 -0.492076 0.732734 -0.000338 -0.830270 -0.557361 0.850337 0.352813 -0.390448 0.519050 -0.440100 0.732734 0.086682 -0.825733 -0.557361 0.808676 0.439991 -0.390448 0.562317 -0.383276 0.732734 0.172747 -0.812101 -0.557361 0.758108 0.522323 -0.390448 0.599390 -0.322230 0.732734 0.256910 -0.789523 -0.557361 0.699789 0.598202 -0.390448 0.629603 -0.258265 0.732734 0.337484 -0.758586 -0.557361 0.633239 0.668251 -0.390448 0.653204 -0.190855 0.732734 0.415131 -0.719038 -0.557361 0.559714 0.730938 -0.390448 0.669609 -0.121344 0.732734 0.488205 -0.671569 -0.557361 0.480809 0.785094 -0.390448 0.678588 -0.051174 0.732734 0.555284 -0.617259 -0.557361 0.395877 0.831163 -0.390448 0.680214 0.020229 0.732734 0.616919 -0.555661 -0.557361 0.306585 0.868076 -0.390448 0.674348 0.091409 0.732734 0.671759 -0.487943 -0.557361 0.213916 0.895427 -0.390448 0.661054 0.161582 0.732734 0.719199 -0.414851 -0.557361 0.119804 0.912796 -0.390448 0.640708 0.229334 0.732734 0.758380 -0.337948 -0.557361 0.023476 0.920325 -0.390448 0.613143 0.295222 0.732734 0.789623 -0.256603 -0.557361 -0.073110 0.917717 -0.390448 0.578825 0.357858 0.732734 0.812168 -0.172431 -0.557361 -0.167985 0.905169 -0.390448 0.538548 0.416014 0.732734 0.825680 -0.087186 -0.557361 -0.261928 0.882578 -0.390448 0.491980 0.470166 0.732734 0.830270 -0.000169 -0.557361 -0.352986 0.850265 -0.390448 0.439994 0.519140 0.732734 0.825715 0.086850 -0.557361 -0.440156 0.808587 -0.390448 0.383161 0.562395 0.732734 0.812065 0.172913 -0.557361 -0.521719 0.758524 -0.390448 0.322707 0.599134 0.732734 0.789727 0.256281 -0.557361 -0.598345 0.699667 -0.390448 0.258136 0.629656 0.732734 0.758518 0.337639 -0.557361 -0.668380 0.633103 -0.390448 0.190722 0.653243 0.732734 0.718953 0.415277 -0.557361 -0.731052 0.559565 -0.390448 0.121207 0.669634 0.732734 0.671470 0.488342 -0.557361 -0.785192 0.480649 -0.390448 0.051036 0.678599 0.732734 0.617146 0.555410 -0.557361 -0.831243 0.395708 -0.390448 -0.020367 0.680210 0.732734 0.555536 0.617032 -0.557361 -0.868138 0.306408 -0.390448 -0.091546 0.674330 0.732734 0.487807 0.671858 -0.557361 -0.895257 0.214629 -0.390448 -0.161055 0.661182 0.732734 0.415424 0.718869 -0.557361 -0.912821 0.119618 -0.390448 -0.229465 0.640661 0.732734 0.337793 0.758449 -0.557361 -0.920330 0.023289 -0.390448 -0.295347 0.613083 0.732734 0.256442 0.789675 -0.557361 -0.917702 -0.073297 -0.390448 -0.357976 0.578752 0.732734 0.172266 0.812203 -0.557361 -0.905135 -0.168170 -0.390448 -0.416123 0.538463 0.732734 0.087018 0.825698 -0.557361 -0.882524 -0.262108 -0.390448 -0.470266 0.491884 0.732734 0.000000 0.830270 -0.557361 -0.850193 -0.353159 -0.390448 -0.519230 0.439888 0.732734 -0.087018 0.825698 -0.557361 -0.808937 -0.439512 -0.390448 -0.562090 0.383609 0.732734 -0.172266 0.812203 -0.557361 -0.758418 -0.521874 -0.390448 -0.599199 0.322585 0.732734 -0.256442 0.789675 -0.557361 -0.699545 -0.598487 -0.390448 -0.629708 0.258008 0.732734 -0.337793 0.758449 -0.557361 -0.632966 -0.668508 -0.390448 -0.653282 0.190589 0.732734 -0.415424 0.718869 -0.557361 -0.560147 -0.730606 -0.390448 -0.669537 0.121740 0.732734 -0.487807 0.671858 -0.557361 -0.480489 -0.785290 -0.390448 -0.678609 0.050898 0.732734 -0.555536 0.617032 -0.557361 -0.395539 -0.831324 -0.390448 -0.680206 -0.020506 0.732734 -0.617146 0.555410 -0.557361 -0.307100 -0.867894 -0.390448 -0.674402 -0.091009 0.732734 -0.671470 0.488342 -0.557361 -0.214447 -0.895300 -0.390448 -0.661150 -0.161190 0.732734 -0.718953 0.415277 -0.557361 -0.119432 -0.912845 -0.390448 -0.640615 -0.229595 0.732734 -0.758518 0.337639 -0.557361 -0.023101 -0.920335 -0.390448 -0.613023 -0.295472 0.732734 -0.789727 0.256281 -0.557361 0.072566 -0.917760 -0.390448 -0.579037 -0.357515 0.732734 -0.812065 0.172913 -0.557361 0.168354 -0.905101 -0.390448 -0.538378 -0.416233 0.732734 -0.825715 0.086850 -0.557361 -0.564671 -0.161608 0.809339 -0.092610 0.986855 0.132441 -0.820104 -0.000167 -0.572215 -0.544623 -0.219900 0.809339 -0.195529 0.971714 0.132441 -0.815570 -0.086119 -0.572215 -0.518852 -0.275250 0.809339 -0.295349 0.946165 0.132441 -0.802223 -0.170320 -0.572215 -0.487146 -0.328114 0.809339 -0.392887 0.909999 0.132441 -0.779954 -0.253461 -0.572215 -0.450075 -0.377363 0.809339 -0.486098 0.863810 0.132441 -0.749094 -0.333810 -0.572215 -0.408468 -0.422048 0.809339 -0.573146 0.808680 0.132441 -0.710393 -0.409771 -0.572215 -0.361985 -0.462534 0.809339 -0.654745 0.744156 0.132441 -0.663533 -0.481969 -0.572215 -0.311514 -0.497925 0.809339 -0.729132 0.671436 0.132441 -0.609365 -0.548857 -0.572215 -0.257612 -0.527832 0.809339 -0.795487 0.591320 0.132441 -0.548485 -0.609700 -0.572215 -0.201425 -0.551723 0.809339 -0.852576 0.505543 0.132441 -0.482227 -0.663346 -0.572215 -0.142491 -0.569795 0.809339 -0.900865 0.413403 0.132441 -0.410048 -0.710233 -0.572215 -0.081988 -0.581591 0.809339 -0.939231 0.316709 0.132441 -0.333352 -0.749298 -0.572215 -0.021168 -0.586960 0.809339 -0.967034 0.217494 0.132441 -0.253764 -0.779855 -0.572215 0.040466 -0.585946 0.809339 -0.984504 0.114944 0.132441 -0.170632 -0.802157 -0.572215 0.101655 -0.578478 0.809339 -0.991128 0.011128 0.132441 -0.085621 -0.815622 -0.572215 0.161263 -0.564769 0.809339 -0.986911 -0.092007 0.132441 -0.000334 -0.820104 -0.572215 0.219567 -0.544757 0.809339 -0.971833 -0.194936 0.132441 0.085621 -0.815622 -0.572215 0.275452 -0.518745 0.809339 -0.946050 -0.295717 0.132441 0.170632 -0.802157 -0.572215 0.328303 -0.487019 0.809339 -0.909846 -0.393241 0.132441 0.253764 -0.779855 -0.572215 0.377088 -0.450305 0.809339 -0.864107 -0.485570 0.132441 0.333352 -0.749298 -0.572215 0.422207 -0.408304 0.809339 -0.808457 -0.573460 0.132441 0.410048 -0.710233 -0.572215 0.462675 -0.361805 0.809339 -0.743902 -0.655034 0.132441 0.482227 -0.663346 -0.572215 0.497735 -0.311818 0.809339 -0.671881 -0.728721 0.132441 0.548485 -0.609700 -0.572215 0.527674 -0.257935 0.809339 -0.591806 -0.795126 0.132441 0.609365 -0.548857 -0.572215 0.551801 -0.201210 0.809339 -0.505211 -0.852772 0.132441 0.663533 -0.481969 -0.572215 0.569851 -0.142269 0.809339 -0.413053 -0.901025 0.132441 0.710393 -0.409771 -0.572215 0.581541 -0.082343 0.809339 -0.317283 -0.939037 0.132441 0.749094 -0.333810 -0.572215 0.586968 -0.020940 0.809339 -0.217118 -0.967119 0.132441 0.779954 -0.253461 -0.572215 0.585930 0.040694 0.809339 -0.114561 -0.984548 0.132441 0.802223 -0.170320 -0.572215 0.578540 0.101301 0.809339 -0.011733 -0.991121 0.132441 0.815570 -0.086119 -0.572215 0.564736 0.161378 0.809339 0.092208 -0.986893 0.132441 0.820104 -0.000167 -0.572215 0.544713 0.219678 0.809339 0.195134 -0.971793 0.132441 0.815605 0.085787 -0.572215 0.518689 0.275558 0.809339 0.295910 -0.945990 0.132441 0.802122 0.170795 -0.572215 0.487280 0.327916 0.809339 0.392517 -0.910159 0.132441 0.780057 0.253143 -0.572215 0.450228 0.377180 0.809339 0.485746 -0.864008 0.132441 0.749230 0.333504 -0.572215 0.408218 0.422290 0.809339 0.573625 -0.808340 0.132441 0.710150 0.410192 -0.572215 0.361710 0.462748 0.809339 0.655186 -0.743768 0.132441 0.663248 0.482362 -0.572215 0.311717 0.497798 0.809339 0.728858 -0.671733 0.132441 0.609589 0.548609 -0.572215 0.257827 0.527727 0.809339 0.795246 -0.591644 0.132441 0.548733 0.609477 -0.572215 0.201098 0.551842 0.809339 0.852875 -0.505038 0.132441 0.481834 0.663631 -0.572215 0.142723 0.569737 0.809339 0.900696 -0.413770 0.132441 0.410337 0.710066 -0.572215 0.082224 0.581558 0.809339 0.939102 -0.317092 0.132441 0.333657 0.749162 -0.572215 0.020820 0.586973 0.809339 0.967163 -0.216921 0.132441 0.253302 0.780006 -0.572215 -0.040813 0.585922 0.809339 0.984571 -0.114360 0.132441 0.170157 0.802258 -0.572215 -0.101419 0.578519 0.809339 0.991124 -0.011532 0.132441 0.085953 0.815587 -0.572215 -0.161493 0.564704 0.809339 0.986874 0.092409 0.132441 0.000000 0.820104 -0.572215 -0.219789 0.544668 0.809339 0.971754 0.195331 0.132441 -0.085953 0.815587 -0.572215 -0.275145 0.518908 0.809339 0.946225 0.295156 0.132441 -0.170157 0.802258 -0.572215 -0.328015 0.487213 0.809339 0.910079 0.392702 0.132441 -0.253302 0.780006 -0.572215 -0.377272 0.450152 0.809339 0.863909 0.485922 0.132441 -0.333657 0.749162 -0.572215 -0.422373 0.408132 0.809339 0.808223 0.573790 0.132441 -0.410337 0.710066 -0.572215 -0.462460 0.362079 0.809339 0.744290 0.654593 0.132441 -0.481834 0.663631 -0.572215 -0.497862 0.311615 0.809339 0.671584 0.728995 0.132441 -0.548733 0.609477 -0.572215 -0.527779 0.257720 0.809339 0.591482 0.795367 0.132441 -0.609589 0.548609 -0.572215 -0.551682 0.201537 0.809339 0.505717 0.852473 0.132441 -0.663248 0.482362 -0.572215 -0.569766 0.142607 0.809339 0.413586 0.900781 0.132441 -0.710150 0.410192 -0.572215 -0.581574 0.082106 0.809339 0.316900 0.939166 0.132441 -0.749230 0.333504 -0.572215 -0.586977 0.020701 0.809339 0.216724 0.967207 0.132441 -0.780057 0.253143 -0.572215 -0.585954 -0.040347 0.809339 0.115144 0.984480 0.132441 -0.802122 0.170795 -0.572215 -0.578499 -0.101537 0.809339 0.011330 0.991126 0.132441 -0.815605 0.085787 -0.572215 0.142913 0.984229 -0.104257 0.795533 -0.176900 -0.579512 -0.588816 -0.000120 -0.808267 0.038971 0.993787 -0.104257 0.809692 -0.092548 -0.579512 -0.585560 -0.061831 -0.808267 -0.064407 0.992463 -0.104257 0.814924 -0.007991 -0.579512 -0.575977 -0.122286 -0.808267 -0.168069 0.980247 -0.104257 0.811274 0.077462 -0.579512 -0.559989 -0.181979 -0.808267 -0.269881 0.957233 -0.104257 0.798687 0.162063 -0.579512 -0.537832 -0.239667 -0.808267 -0.367795 0.924044 -0.104257 0.777548 0.244101 -0.579512 -0.510045 -0.294206 -0.808267 -0.462616 0.880407 -0.104257 0.747682 0.324249 -0.579512 -0.476402 -0.346042 -0.808267 -0.552341 0.827073 -0.104257 0.709580 0.400826 -0.579512 -0.437510 -0.394067 -0.808267 -0.635982 0.764629 -0.104257 0.663663 0.472988 -0.579512 -0.393799 -0.437751 -0.808267 -0.711924 0.694474 -0.104257 0.610975 0.539329 -0.579512 -0.346228 -0.476267 -0.808267 -0.780789 0.616035 -0.104257 0.551084 0.600393 -0.579512 -0.294405 -0.509931 -0.808267 -0.841054 0.530810 -0.104257 0.485124 0.654844 -0.579512 -0.239339 -0.537978 -0.808267 -0.891614 0.440630 -0.104257 0.414522 0.701668 -0.579512 -0.182197 -0.559918 -0.808267 -0.932885 0.344755 -0.104257 0.338699 0.741248 -0.579512 -0.122510 -0.575930 -0.808267 -0.963880 0.245084 -0.104257 0.259145 0.772664 -0.579512 -0.061474 -0.585598 -0.808267 -0.984141 0.143514 -0.104257 0.177386 0.795425 -0.579512 -0.000240 -0.588815 -0.808267 -0.993763 0.039578 -0.104257 0.093042 0.809635 -0.579512 0.061474 -0.585598 -0.808267 -0.992438 -0.064793 -0.104257 0.007674 0.814928 -0.579512 0.122510 -0.575930 -0.808267 -0.980181 -0.168451 -0.104257 -0.077778 0.811244 -0.579512 0.182197 -0.559918 -0.808267 -0.957398 -0.269296 -0.104257 -0.161575 0.798786 -0.579512 0.239339 -0.537978 -0.808267 -0.923901 -0.368155 -0.104257 -0.244404 0.777453 -0.579512 0.294405 -0.509931 -0.808267 -0.880227 -0.462959 -0.104257 -0.324540 0.747556 -0.579512 0.346228 -0.476267 -0.808267 -0.827410 -0.551836 -0.104257 -0.400393 0.709825 -0.579512 0.393799 -0.437751 -0.808267 -0.765017 -0.635515 -0.104257 -0.472582 0.663952 -0.579512 0.437510 -0.394067 -0.808267 -0.694197 -0.712194 -0.104257 -0.539566 0.610765 -0.579512 0.476402 -0.346042 -0.808267 -0.615731 -0.781029 -0.104257 -0.600607 0.550851 -0.579512 0.510045 -0.294206 -0.808267 -0.531323 -0.840729 -0.104257 -0.654547 0.485524 -0.579512 0.537832 -0.239667 -0.808267 -0.440283 -0.891786 -0.104257 -0.701829 0.414249 -0.579512 0.559989 -0.181979 -0.808267 -0.344392 -0.933019 -0.104257 -0.741380 0.338411 -0.579512 0.575977 -0.122286 -0.808267 -0.245672 -0.963730 -0.104257 -0.772505 0.259617 -0.579512 0.585560 -0.061831 -0.808267 -0.143314 -0.984171 -0.104257 -0.795461 0.177224 -0.579512 0.588816 -0.000120 -0.808267 -0.039376 -0.993771 -0.104257 -0.809654 0.092877 -0.579512 0.585585 0.061593 -0.808267 0.064995 -0.992424 -0.104257 -0.814929 0.007508 -0.579512 0.575905 0.122627 -0.808267 0.167670 -0.980315 -0.104257 -0.811305 -0.077132 -0.579512 0.560063 0.181751 -0.808267 0.269491 -0.957343 -0.104257 -0.798753 -0.161738 -0.579512 0.537930 0.239448 -0.808267 0.368343 -0.923826 -0.104257 -0.777403 -0.244562 -0.579512 0.509871 0.294508 -0.808267 0.463138 -0.880133 -0.104257 -0.747489 -0.324693 -0.579512 0.476196 0.346325 -0.808267 0.552004 -0.827298 -0.104257 -0.709743 -0.400537 -0.579512 0.437670 0.393889 -0.808267 0.635671 -0.764888 -0.104257 -0.663855 -0.472717 -0.579512 0.393978 0.437590 -0.808267 0.712336 -0.694052 -0.104257 -0.610655 -0.539691 -0.579512 0.345945 0.476472 -0.808267 0.780538 -0.616353 -0.104257 -0.551329 -0.600168 -0.579512 0.294612 0.509811 -0.808267 0.840838 -0.531152 -0.104257 -0.485391 -0.654646 -0.579512 0.239558 0.537881 -0.808267 0.891875 -0.440101 -0.104257 -0.414106 -0.701913 -0.579512 0.181865 0.560026 -0.808267 0.933089 -0.344202 -0.104257 -0.338260 -0.741449 -0.579512 0.122168 0.576002 -0.808267 0.963780 -0.245476 -0.104257 -0.259460 -0.772558 -0.579512 0.061712 0.585573 -0.808267 0.984200 -0.143113 -0.104257 -0.177062 -0.795497 -0.579512 0.000000 0.588816 -0.808267 0.993779 -0.039174 -0.104257 -0.092713 -0.809673 -0.579512 -0.061712 0.585573 -0.808267 0.992476 0.064205 -0.104257 -0.008157 -0.814923 -0.579512 -0.122168 0.576002 -0.808267 0.980281 0.167870 -0.104257 0.077297 -0.811290 -0.579512 -0.181865 0.560026 -0.808267 0.957288 0.269686 -0.104257 0.161901 -0.798720 -0.579512 -0.239558 0.537881 -0.808267 0.923751 0.368531 -0.104257 0.244720 -0.777353 -0.579512 -0.294612 0.509811 -0.808267 0.880501 0.462437 -0.104257 0.324097 -0.747748 -0.579512 -0.345945 0.476472 -0.808267 0.827185 0.552173 -0.104257 0.400682 -0.709662 -0.579512 -0.393978 0.437590 -0.808267 0.764758 0.635827 -0.104257 0.472853 -0.663759 -0.579512 -0.437670 0.393889 -0.808267 0.694619 0.711783 -0.104257 0.539204 -0.611085 -0.579512 -0.476196 0.346325 -0.808267 0.616194 0.780664 -0.104257 0.600281 -0.551207 -0.579512 -0.509871 0.294508 -0.808267 0.530981 0.840946 -0.104257 0.654745 -0.485257 -0.579512 -0.537930 0.239448 -0.808267 0.439919 0.891965 -0.104257 0.701998 -0.413963 -0.579512 -0.560063 0.181751 -0.808267 0.344945 0.932815 -0.104257 0.741179 -0.338850 -0.579512 -0.575905 0.122627 -0.808267 0.245280 0.963830 -0.104257 0.772611 -0.259303 -0.579512 -0.585585 0.061593 -0.808267 -0.348714 0.873648 -0.339319 -0.625935 -0.486558 -0.609480 -0.697570 -0.000142 0.716517 -0.438358 0.832289 -0.339319 -0.571493 -0.549481 -0.609480 -0.693713 -0.073252 0.716517 -0.522391 0.782285 -0.339319 -0.511362 -0.605840 -0.609480 -0.682360 -0.144872 0.716517 -0.601503 0.723226 -0.339319 -0.445050 -0.656098 -0.609480 -0.663419 -0.215590 0.716517 -0.673990 0.656201 -0.339319 -0.373835 -0.699129 -0.609480 -0.637169 -0.283934 0.716517 -0.738470 0.582687 -0.339319 -0.299236 -0.734161 -0.609480 -0.604251 -0.348546 0.716517 -0.795473 0.502081 -0.339319 -0.220643 -0.761479 -0.609480 -0.564393 -0.409956 0.716517 -0.843714 0.415944 -0.339319 -0.139620 -0.780411 -0.609480 -0.518318 -0.466851 0.716517 -0.882661 0.325226 -0.339319 -0.057058 -0.790746 -0.609480 -0.466534 -0.518603 0.716517 -0.911654 0.231838 -0.339319 0.025340 -0.792396 -0.609480 -0.410176 -0.564233 0.716517 -0.930932 0.135013 -0.339319 0.108249 -0.785377 -0.609480 -0.348781 -0.604115 0.716517 -0.939955 0.036701 -0.339319 0.189966 -0.769706 -0.609480 -0.283545 -0.637343 0.716517 -0.938686 -0.061076 -0.339319 0.268845 -0.745826 -0.609480 -0.215848 -0.663335 0.716517 -0.927115 -0.159121 -0.339319 0.345532 -0.713542 -0.609480 -0.145137 -0.682304 0.716517 -0.905332 -0.255413 -0.339319 0.418413 -0.673398 -0.609480 -0.072828 -0.693758 0.716517 -0.873861 -0.348180 -0.339319 0.486176 -0.626233 -0.609480 -0.000284 -0.697570 0.716517 -0.832556 -0.437849 -0.339319 0.549132 -0.571829 -0.609480 0.072828 -0.693758 0.716517 -0.782081 -0.522696 -0.339319 0.606039 -0.511127 -0.609480 0.145137 -0.682304 0.716517 -0.722992 -0.601785 -0.339319 0.656271 -0.444794 -0.609480 0.215848 -0.663335 0.716517 -0.656613 -0.673589 -0.339319 0.698901 -0.374262 -0.609480 0.283545 -0.637343 0.716517 -0.582400 -0.738697 -0.339319 0.734277 -0.298951 -0.609480 0.348781 -0.604115 0.716517 -0.501771 -0.795668 -0.339319 0.761565 -0.220347 -0.609480 0.410176 -0.564233 0.716517 -0.416460 -0.843459 -0.339319 0.780325 -0.140096 -0.609480 0.466534 -0.518603 0.716517 -0.325765 -0.882462 -0.339319 0.790711 -0.057541 -0.609480 0.518318 -0.466851 0.716517 -0.231483 -0.911744 -0.339319 0.792386 0.025648 -0.609480 0.564393 -0.409956 0.716517 -0.134651 -0.930984 -0.339319 0.785334 0.108554 -0.609480 0.604251 -0.348546 0.716517 -0.037275 -0.939932 -0.339319 0.769822 0.189496 -0.609480 0.637169 -0.283934 0.716517 0.061442 -0.938663 -0.339319 0.745722 0.269135 -0.609480 0.663419 -0.215590 0.716517 0.159482 -0.927053 -0.339319 0.713407 0.345809 -0.609480 0.682360 -0.144872 0.716517 0.254860 -0.905488 -0.339319 0.673653 0.418002 -0.609480 0.693713 -0.073252 0.716517 0.348358 -0.873790 -0.339319 0.626134 0.486303 -0.609480 0.697570 -0.000142 0.716517 0.438019 -0.832467 -0.339319 0.571717 0.549248 -0.609480 0.693743 0.072969 0.716517 0.522855 -0.781975 -0.339319 0.511003 0.606143 -0.609480 0.682274 0.145276 0.716517 0.601209 -0.723471 -0.339319 0.445317 0.655917 -0.609480 0.663506 0.215320 0.716517 0.673723 -0.656475 -0.339319 0.374120 0.698977 -0.609480 0.637285 0.283674 0.716517 0.738816 -0.582249 -0.339319 0.298801 0.734338 -0.609480 0.604044 0.348904 0.716517 0.795770 -0.501609 -0.339319 0.220192 0.761610 -0.609480 0.564150 0.410291 0.716517 0.843544 -0.416288 -0.339319 0.139937 0.780354 -0.609480 0.518508 0.466640 0.716517 0.882528 -0.325586 -0.339319 0.057380 0.790722 -0.609480 0.466745 0.518413 0.716517 0.911792 -0.231297 -0.339319 -0.025809 0.792381 -0.609480 0.409841 0.564476 0.716517 0.930877 -0.135392 -0.339319 -0.107929 0.785421 -0.609480 0.349027 0.603973 0.716517 0.939940 -0.037084 -0.339319 -0.189652 0.769783 -0.609480 0.283804 0.637227 0.716517 0.938650 0.061633 -0.339319 -0.269287 0.745667 -0.609480 0.215455 0.663463 0.716517 0.927021 0.159671 -0.339319 -0.345955 0.713337 -0.609480 0.144733 0.682390 0.716517 0.905436 0.255044 -0.339319 -0.418139 0.673568 -0.609480 0.073110 0.693728 0.716517 0.873719 0.348536 -0.339319 -0.486431 0.626035 -0.609480 0.000000 0.697570 0.716517 0.832378 0.438188 -0.339319 -0.549365 0.571605 -0.609480 -0.073110 0.693728 0.716517 0.782391 0.522232 -0.339319 -0.605736 0.511486 -0.609480 -0.144733 0.682390 0.716517 0.723348 0.601356 -0.339319 -0.656008 0.445183 -0.609480 -0.215455 0.663463 0.716517 0.656338 0.673856 -0.339319 -0.699053 0.373977 -0.609480 -0.283804 0.637227 0.716517 0.582099 0.738934 -0.339319 -0.734399 0.298652 -0.609480 -0.349027 0.603973 0.716517 0.502243 0.795371 -0.339319 -0.761434 0.220798 -0.609480 -0.409841 0.564476 0.716517 0.416116 0.843629 -0.339319 -0.780382 0.139778 -0.609480 -0.466745 0.518413 0.716517 0.325406 0.882595 -0.339319 -0.790734 0.057219 -0.609480 -0.518508 0.466640 0.716517 0.232023 0.911607 -0.339319 -0.792402 -0.025178 -0.609480 -0.564150 0.410291 0.716517 0.135202 0.930904 -0.339319 -0.785399 -0.108089 -0.609480 -0.604044 0.348904 0.716517 0.036892 0.939947 -0.339319 -0.769745 -0.189809 -0.609480 -0.637285 0.283674 0.716517 -0.061824 0.938637 -0.339319 -0.745612 -0.269438 -0.609480 -0.663506 0.215320 0.716517 -0.158932 0.927148 -0.339319 -0.713612 -0.345387 -0.609480 -0.682274 0.145276 0.716517 -0.255229 0.905384 -0.339319 -0.673483 -0.418276 -0.609480 -0.693743 0.072969 0.716517 -0.341538 0.788695 -0.511187 -0.437923 -0.614785 -0.655944 -0.831610 -0.000169 0.555360 -0.422318 0.748556 -0.511187 -0.371078 -0.657296 -0.655944 -0.827012 -0.087327 0.555360 -0.497746 0.700669 -0.511187 -0.300837 -0.692268 -0.655944 -0.813478 -0.172710 0.555360 -0.568440 0.644643 -0.511187 -0.226626 -0.719985 -0.655944 -0.790896 -0.257017 0.555360 -0.632872 0.581516 -0.511187 -0.149918 -0.739771 -0.655944 -0.759603 -0.338493 0.555360 -0.689821 0.512674 -0.511187 -0.072310 -0.751338 -0.655944 -0.720359 -0.415520 0.555360 -0.739754 0.437552 -0.511187 0.006834 -0.754778 -0.655944 -0.672843 -0.488731 0.555360 -0.781539 0.357611 -0.511187 0.085902 -0.749905 -0.655944 -0.617914 -0.556558 0.555360 -0.814714 0.273730 -0.511187 0.164024 -0.736772 -0.655944 -0.556180 -0.618254 0.555360 -0.838729 0.187674 -0.511187 0.239625 -0.715763 -0.655944 -0.488992 -0.672652 0.555360 -0.853779 0.098735 -0.511187 0.313322 -0.686707 -0.655944 -0.415800 -0.720198 0.555360 -0.859425 0.008709 -0.511187 0.383568 -0.650087 -0.655944 -0.338029 -0.759810 0.555360 -0.855686 -0.080557 -0.511187 0.448983 -0.606755 -0.655944 -0.257324 -0.790796 0.555360 -0.842530 -0.169795 -0.511187 0.510102 -0.556357 -0.655944 -0.173026 -0.813411 0.555360 -0.820095 -0.257163 -0.511187 0.565603 -0.499830 -0.655944 -0.086822 -0.827065 0.555360 -0.788903 -0.341056 -0.511187 0.614517 -0.438299 -0.655944 -0.000339 -0.831610 0.555360 -0.748813 -0.421861 -0.511187 0.657070 -0.371479 -0.655944 0.086822 -0.827065 0.555360 -0.700475 -0.498018 -0.511187 0.692385 -0.300568 -0.655944 0.173026 -0.813411 0.555360 -0.644422 -0.568690 -0.511187 0.720073 -0.226345 -0.655944 0.257324 -0.790796 0.555360 -0.581903 -0.632517 -0.511187 0.739680 -0.150370 -0.655944 0.338029 -0.759810 0.555360 -0.512405 -0.690021 -0.511187 0.751366 -0.072018 -0.655944 0.415800 -0.720198 0.555360 -0.437264 -0.739924 -0.511187 0.754776 0.007127 -0.655944 0.488992 -0.672652 0.555360 -0.358088 -0.781320 -0.511187 0.749958 0.085444 -0.655944 0.556180 -0.618254 0.555360 -0.274228 -0.814547 -0.511187 0.736872 0.163574 -0.655944 0.617914 -0.556558 0.555360 -0.187347 -0.838802 -0.511187 0.715670 0.239903 -0.655944 0.672843 -0.488731 0.555360 -0.098403 -0.853818 -0.511187 0.686585 0.313589 -0.655944 0.720359 -0.415520 0.555360 -0.009234 -0.859420 -0.511187 0.650321 0.383171 -0.655944 0.759603 -0.338493 0.555360 0.080890 -0.855655 -0.511187 0.606580 0.449219 -0.655944 0.790896 -0.257017 0.555360 0.170123 -0.842464 -0.511187 0.556158 0.510319 -0.655944 0.813478 -0.172710 0.555360 0.256662 -0.820251 -0.511187 0.500176 0.565298 -0.655944 0.827012 -0.087327 0.555360 0.341217 -0.788834 -0.511187 0.438174 0.614606 -0.655944 0.831610 -0.000169 0.555360 0.422013 -0.748728 -0.511187 0.371345 0.657145 -0.655944 0.827047 0.086990 0.555360 0.498161 -0.700374 -0.511187 0.300427 0.692446 -0.655944 0.813375 0.173192 0.555360 0.568177 -0.644874 -0.511187 0.226919 0.719892 -0.655944 0.791001 0.256694 0.555360 0.632635 -0.581774 -0.511187 0.150219 0.739710 -0.655944 0.759741 0.338183 0.555360 0.690125 -0.512265 -0.511187 0.071865 0.751381 -0.655944 0.720113 0.415947 0.555360 0.740013 -0.437114 -0.511187 -0.007281 0.754774 -0.655944 0.672553 0.489129 0.555360 0.781393 -0.357929 -0.511187 -0.085597 0.749940 -0.655944 0.618141 0.556306 0.555360 0.814603 -0.274062 -0.511187 -0.163724 0.736839 -0.655944 0.556432 0.618028 0.555360 0.838840 -0.187177 -0.511187 -0.240049 0.715621 -0.655944 0.488594 0.672942 0.555360 0.853739 -0.099083 -0.511187 -0.313042 0.686835 -0.655944 0.416094 0.720028 0.555360 0.859422 -0.009059 -0.511187 -0.383303 0.650243 -0.655944 0.338338 0.759672 0.555360 0.855638 0.081064 -0.511187 -0.449342 0.606489 -0.655944 0.256856 0.790949 0.555360 0.842430 0.170295 -0.511187 -0.510432 0.556054 -0.655944 0.172544 0.813513 0.555360 0.820199 0.256829 -0.511187 -0.565400 0.500061 -0.655944 0.087159 0.827030 0.555360 0.788764 0.341378 -0.511187 -0.614696 0.438049 -0.655944 0.000000 0.831610 0.555360 0.748642 0.422166 -0.511187 -0.657221 0.371212 -0.655944 -0.087159 0.827030 0.555360 0.700770 0.497603 -0.511187 -0.692206 0.300978 -0.655944 -0.172544 0.813513 0.555360 0.644759 0.568308 -0.511187 -0.719939 0.226772 -0.655944 -0.256856 0.790949 0.555360 0.581645 0.632754 -0.511187 -0.739741 0.150069 -0.655944 -0.338338 0.759672 0.555360 0.512124 0.690229 -0.511187 -0.751395 0.071712 -0.655944 -0.416094 0.720028 0.555360 0.437703 0.739665 -0.511187 -0.754780 -0.006680 -0.655944 -0.488594 0.672942 0.555360 0.357770 0.781466 -0.511187 -0.749923 -0.085749 -0.655944 -0.556432 0.618028 0.555360 0.273896 0.814659 -0.511187 -0.736806 -0.163874 -0.655944 -0.618141 0.556306 0.555360 0.187845 0.838691 -0.511187 -0.715812 -0.239479 -0.655944 -0.672553 0.489129 0.555360 0.098909 0.853759 -0.511187 -0.686771 -0.313182 -0.655944 -0.720113 0.415947 0.555360 0.008884 0.859424 -0.511187 -0.650165 -0.383436 -0.655944 -0.759741 0.338183 0.555360 -0.081238 0.855622 -0.511187 -0.606397 -0.449466 -0.655944 -0.791001 0.256694 0.555360 -0.169624 0.842565 -0.511187 -0.556461 -0.509989 -0.655944 -0.813375 0.173192 0.555360 -0.256996 0.820147 -0.511187 -0.499945 -0.565501 -0.655944 -0.827047 0.086990 0.555360 -0.445017 0.734319 -0.512577 -0.481241 -0.678805 -0.554646 -0.755227 -0.000154 0.655464 -0.519528 0.683634 -0.512577 -0.407447 -0.725504 -0.554646 -0.751051 -0.079306 0.655464 -0.587691 0.626006 -0.512577 -0.329929 -0.763882 -0.554646 -0.738760 -0.156846 0.655464 -0.650064 0.560965 -0.512577 -0.248051 -0.794254 -0.554646 -0.718253 -0.233410 0.655464 -0.705277 0.489744 -0.512577 -0.163442 -0.815877 -0.554646 -0.689834 -0.307402 0.655464 -0.752308 0.413881 -0.512577 -0.077860 -0.828436 -0.554646 -0.654195 -0.377355 0.655464 -0.791542 0.332754 -0.512577 0.009394 -0.832034 -0.554646 -0.611042 -0.443841 0.655464 -0.822058 0.247962 -0.512577 0.096546 -0.826467 -0.554646 -0.561159 -0.505438 0.655464 -0.843519 0.160439 -0.512577 0.182634 -0.811796 -0.554646 -0.505095 -0.561468 0.655464 -0.855617 0.072004 -0.512577 0.265922 -0.788450 -0.554646 -0.444079 -0.610870 0.655464 -0.858451 -0.018067 -0.512577 0.347092 -0.756237 -0.554646 -0.377609 -0.654048 0.655464 -0.851830 -0.107939 -0.512577 0.424440 -0.715695 -0.554646 -0.306981 -0.690022 0.655464 -0.836022 -0.195787 -0.512577 0.496445 -0.667765 -0.554646 -0.233689 -0.718162 0.655464 -0.810897 -0.282329 -0.512577 0.563697 -0.612057 -0.554646 -0.157134 -0.738699 0.655464 -0.776841 -0.365762 -0.512577 0.624741 -0.549607 -0.554646 -0.078847 -0.751100 0.655464 -0.734591 -0.444568 -0.512577 0.678510 -0.481655 -0.554646 -0.000308 -0.755227 0.655464 -0.683951 -0.519110 -0.512577 0.725254 -0.407890 -0.554646 0.078847 -0.751100 0.655464 -0.625778 -0.587934 -0.512577 0.764010 -0.329631 -0.554646 0.157134 -0.738699 0.655464 -0.560712 -0.650282 -0.512577 0.794350 -0.247742 -0.554646 0.233689 -0.718162 0.655464 -0.490175 -0.704978 -0.512577 0.815777 -0.163940 -0.554646 0.306981 -0.690022 0.655464 -0.413588 -0.752469 -0.512577 0.828466 -0.077538 -0.554646 0.377609 -0.654048 0.655464 -0.332446 -0.791672 -0.512577 0.832030 0.009718 -0.554646 0.444079 -0.610870 0.655464 -0.248464 -0.821906 -0.512577 0.826525 0.096041 -0.554646 0.505095 -0.561468 0.655464 -0.160954 -0.843421 -0.512577 0.811908 0.182138 -0.554646 0.561159 -0.505438 0.655464 -0.071671 -0.855645 -0.512577 0.788347 0.266228 -0.554646 0.611042 -0.443841 0.655464 0.018401 -0.858444 -0.512577 0.756102 0.347386 -0.554646 0.654195 -0.377355 0.655464 0.107419 -0.851895 -0.512577 0.715954 0.424002 -0.554646 0.689834 -0.307402 0.655464 0.196112 -0.835945 -0.512577 0.667572 0.496704 -0.554646 0.718253 -0.233410 0.655464 0.282645 -0.810787 -0.512577 0.611838 0.563935 -0.554646 0.738760 -0.156846 0.655464 0.365288 -0.777065 -0.512577 0.549988 0.624405 -0.554646 0.751051 -0.079306 0.655464 0.444718 -0.734500 -0.512577 0.481517 0.678608 -0.554646 0.755227 -0.000154 0.655464 0.519249 -0.683845 -0.512577 0.407742 0.725338 -0.554646 0.751083 0.079000 0.655464 0.588062 -0.625658 -0.512577 0.329476 0.764077 -0.554646 0.738667 0.157284 0.655464 0.649835 -0.561229 -0.512577 0.248375 0.794152 -0.554646 0.718348 0.233117 0.655464 0.705077 -0.490031 -0.512577 0.163774 0.815810 -0.554646 0.689959 0.307121 0.655464 0.752553 -0.413435 -0.512577 0.077369 0.828482 -0.554646 0.653971 0.377743 0.655464 0.791739 -0.332285 -0.512577 -0.009888 0.832028 -0.554646 0.610779 0.444203 0.655464 0.821957 -0.248297 -0.512577 -0.096209 0.826506 -0.554646 0.561365 0.505210 0.655464 0.843453 -0.160783 -0.512577 -0.182303 0.811870 -0.554646 0.505324 0.561262 0.655464 0.855659 -0.071497 -0.512577 -0.266389 0.788292 -0.554646 0.443717 0.611133 0.655464 0.858458 0.017717 -0.512577 -0.346784 0.756379 -0.554646 0.377876 0.653894 0.655464 0.851873 0.107592 -0.512577 -0.424148 0.715868 -0.554646 0.307262 0.689897 0.655464 0.835905 0.196282 -0.512577 -0.496840 0.667471 -0.554646 0.233264 0.718300 0.655464 0.810730 0.282810 -0.512577 -0.564060 0.611723 -0.554646 0.156696 0.738792 0.655464 0.776990 0.365446 -0.512577 -0.624517 0.549861 -0.554646 0.079153 0.751067 0.655464 0.734410 0.444867 -0.512577 -0.678707 0.481379 -0.554646 0.000000 0.755227 0.655464 0.683740 0.519389 -0.512577 -0.725421 0.407594 -0.554646 -0.079153 0.751067 0.655464 0.626126 0.587563 -0.512577 -0.763814 0.330084 -0.554646 -0.156696 0.738792 0.655464 0.561097 0.649950 -0.512577 -0.794203 0.248213 -0.554646 -0.233264 0.718300 0.655464 0.489887 0.705177 -0.512577 -0.815843 0.163608 -0.554646 -0.307262 0.689897 0.655464 0.413282 0.752637 -0.512577 -0.828498 0.077201 -0.554646 -0.377876 0.653894 0.655464 0.332915 0.791474 -0.512577 -0.832035 -0.009225 -0.554646 -0.443717 0.611133 0.655464 0.248130 0.822007 -0.512577 -0.826486 -0.096378 -0.554646 -0.505324 0.561262 0.655464 0.160611 0.843486 -0.512577 -0.811833 -0.182468 -0.554646 -0.561365 0.505210 0.655464 0.072179 0.855602 -0.512577 -0.788504 -0.265761 -0.554646 -0.610779 0.444203 0.655464 -0.017892 0.858455 -0.512577 -0.756308 -0.346938 -0.554646 -0.653971 0.377743 0.655464 -0.107766 0.851852 -0.512577 -0.715781 -0.424294 -0.554646 -0.689959 0.307121 0.655464 -0.196452 0.835865 -0.512577 -0.667370 -0.496976 -0.554646 -0.718348 0.233117 0.655464 -0.282164 0.810955 -0.512577 -0.612172 -0.563572 -0.554646 -0.738667 0.157284 0.655464 -0.365604 0.776916 -0.512577 -0.549734 -0.624629 -0.554646 -0.751083 0.079000 0.655464 0.782370 0.356918 0.510398 -0.298996 0.934136 -0.194915 -0.546350 -0.000111 0.837557 0.740654 0.436951 0.510398 -0.395254 0.897654 -0.194915 -0.543329 -0.057372 0.837557 0.691291 0.511479 0.510398 -0.486306 0.851771 -0.194915 -0.534438 -0.113466 0.837557 0.633877 0.581114 0.510398 -0.572899 0.796112 -0.194915 -0.519602 -0.168854 0.837557 0.569481 0.644349 0.510398 -0.653182 0.731683 -0.194915 -0.499043 -0.222383 0.837557 0.499512 0.699987 0.510398 -0.725611 0.659921 -0.194915 -0.473261 -0.272988 0.837557 0.423398 0.748484 0.510398 -0.790779 0.580238 -0.194915 -0.442043 -0.321086 0.837557 0.342620 0.788737 0.510398 -0.847237 0.494163 -0.194915 -0.405957 -0.365647 0.837557 0.258067 0.820302 0.510398 -0.894363 0.402645 -0.194915 -0.365399 -0.406180 0.837557 0.171515 0.842660 0.510398 -0.931330 0.307623 -0.194915 -0.321258 -0.441918 0.837557 0.082254 0.855995 0.510398 -0.958442 0.208319 -0.194915 -0.273172 -0.473155 0.837557 -0.007914 0.859902 0.510398 -0.974997 0.106720 -0.194915 -0.222078 -0.499179 0.837557 -0.097140 0.854434 0.510398 -0.980808 0.004926 -0.194915 -0.169057 -0.519536 0.837557 -0.186155 0.839547 0.510398 -0.975922 -0.097897 -0.194915 -0.113674 -0.534393 0.837557 -0.273121 0.815413 0.510398 -0.960287 -0.199641 -0.194915 -0.057040 -0.543364 0.837557 -0.356440 0.782588 0.510398 -0.934318 -0.298426 -0.194915 -0.000223 -0.546350 0.837557 -0.436498 0.740920 0.510398 -0.897895 -0.394705 -0.194915 0.057040 -0.543364 0.837557 -0.511748 0.691092 0.510398 -0.851582 -0.486637 -0.194915 0.113674 -0.534393 0.837557 -0.581361 0.633651 0.510398 -0.795889 -0.573209 -0.194915 0.169057 -0.519536 0.837557 -0.644001 0.569875 0.510398 -0.732083 -0.652735 -0.194915 0.222078 -0.499179 0.837557 -0.700181 0.499240 0.510398 -0.659639 -0.725868 -0.194915 0.273172 -0.473155 0.837557 -0.748648 0.423107 0.510398 -0.579930 -0.791005 -0.194915 0.321258 -0.441918 0.837557 -0.788527 0.343101 0.510398 -0.494680 -0.846935 -0.194915 0.365399 -0.406180 0.837557 -0.820144 0.258568 0.510398 -0.403191 -0.894117 -0.194915 0.405957 -0.365647 0.837557 -0.842727 0.171187 0.510398 -0.307261 -0.931450 -0.194915 0.442043 -0.321086 0.837557 -0.856027 0.081921 0.510398 -0.207946 -0.958523 -0.194915 0.473261 -0.272988 0.837557 -0.859906 -0.007388 0.510398 -0.107316 -0.974931 -0.194915 0.499043 -0.222383 0.837557 -0.854396 -0.097472 0.510398 -0.004545 -0.980810 -0.194915 0.519602 -0.168854 0.837557 -0.839475 -0.186482 0.510398 0.098276 -0.975884 -0.194915 0.534438 -0.113466 0.837557 -0.815580 -0.272623 0.510398 0.199054 -0.960409 -0.194915 0.543329 -0.057372 0.837557 -0.782515 -0.356600 0.510398 0.298616 -0.934257 -0.194915 0.546350 -0.000111 0.837557 -0.740832 -0.436649 0.510398 0.394888 -0.897815 -0.194915 0.543353 0.057151 0.837557 -0.690988 -0.511889 0.510398 0.486811 -0.851483 -0.194915 0.534370 0.113783 0.837557 -0.634114 -0.580856 0.510398 0.572575 -0.796345 -0.194915 0.519671 0.168643 0.837557 -0.569743 -0.644117 0.510398 0.652884 -0.731950 -0.194915 0.499134 0.222179 0.837557 -0.499097 -0.700282 0.510398 0.726002 -0.659491 -0.194915 0.473099 0.273268 0.837557 -0.422954 -0.748735 0.510398 0.791123 -0.579769 -0.194915 0.441853 0.321348 0.837557 -0.342941 -0.788597 0.510398 0.847036 -0.494508 -0.194915 0.406106 0.365481 0.837557 -0.258401 -0.820197 0.510398 0.894199 -0.403009 -0.194915 0.365564 0.406031 0.837557 -0.171016 -0.842762 0.510398 0.931512 -0.307071 -0.194915 0.320996 0.442109 0.837557 -0.082602 -0.855962 0.510398 0.958357 -0.208709 -0.194915 0.273365 0.473043 0.837557 0.007563 -0.859905 0.510398 0.974953 -0.107117 -0.194915 0.222281 0.499089 0.837557 0.097646 -0.854376 0.510398 0.980810 -0.004345 -0.194915 0.168749 0.519637 0.837557 0.186653 -0.839437 0.510398 0.975864 0.098475 -0.194915 0.113358 0.534461 0.837557 0.272789 -0.815524 0.510398 0.960368 0.199250 -0.194915 0.057261 0.543341 0.837557 0.356759 -0.782443 0.510398 0.934196 0.298806 -0.194915 0.000000 0.546350 0.837557 0.436800 -0.740743 0.510398 0.897734 0.395071 -0.194915 -0.057261 0.543341 0.837557 0.511338 -0.691395 0.510398 0.851870 0.486132 -0.194915 -0.113358 0.534461 0.837557 0.580985 -0.633995 0.510398 0.796229 0.572737 -0.194915 -0.168749 0.519637 0.837557 0.644233 -0.569612 0.510398 0.731817 0.653033 -0.194915 -0.222281 0.499089 0.837557 0.700384 -0.498955 0.510398 0.659344 0.726136 -0.194915 -0.273365 0.473043 0.837557 0.748398 -0.423550 0.510398 0.580399 0.790661 -0.194915 -0.320996 0.442109 0.837557 0.788667 -0.342780 0.510398 0.494335 0.847137 -0.194915 -0.365564 0.406031 0.837557 0.820249 -0.258234 0.510398 0.402827 0.894281 -0.194915 -0.406106 0.365481 0.837557 0.842625 -0.171687 0.510398 0.307813 0.931268 -0.194915 -0.441853 0.321348 0.837557 0.855979 -0.082428 0.510398 0.208514 0.958400 -0.194915 -0.473099 0.273268 0.837557 0.859903 0.007739 0.510398 0.106918 0.974975 -0.194915 -0.499134 0.222179 0.837557 0.854356 0.097820 0.510398 0.004145 0.980811 -0.194915 -0.519671 0.168643 0.837557 0.839585 0.185984 0.510398 -0.097698 0.975942 -0.194915 -0.534370 0.113783 0.837557 0.815469 0.272955 0.510398 -0.199445 0.960328 -0.194915 -0.543353 0.057151 0.837557 -0.011048 -0.979751 0.199914 -0.055077 0.200219 0.978202 -0.998421 -0.000203 -0.056174 0.091698 -0.975513 0.199914 -0.075758 0.193344 0.978202 -0.992901 -0.104844 -0.056174 0.192473 -0.960723 0.199914 -0.095420 0.184434 0.978202 -0.976652 -0.207353 -0.056174 0.292103 -0.935259 0.199914 -0.114225 0.173418 0.978202 -0.949541 -0.308571 -0.056174 0.388517 -0.899494 0.199914 -0.131771 0.160491 0.978202 -0.911971 -0.406391 -0.056174 0.479796 -0.854301 0.199914 -0.147720 0.145944 0.978202 -0.864855 -0.498869 -0.056174 0.566690 -0.799310 0.199914 -0.162203 0.129658 0.978202 -0.807807 -0.586764 -0.056174 0.647343 -0.735515 0.199914 -0.174899 0.111944 0.978202 -0.741861 -0.668197 -0.056174 0.720865 -0.663618 0.199914 -0.185668 0.092997 0.978202 -0.667743 -0.742269 -0.056174 0.785862 -0.585197 0.199914 -0.194319 0.073220 0.978202 -0.587079 -0.807579 -0.056174 0.842867 -0.499610 0.199914 -0.200923 0.052451 0.978202 -0.499205 -0.864661 -0.056174 0.890587 -0.408520 0.199914 -0.205313 0.031104 0.978202 -0.405833 -0.912219 -0.056174 0.928185 -0.313859 0.199914 -0.207433 0.009622 0.978202 -0.308941 -0.949421 -0.056174 0.955968 -0.214850 0.199914 -0.207299 -0.012172 0.978202 -0.207733 -0.976571 -0.056174 0.973220 -0.113474 0.199914 -0.204882 -0.033831 0.978202 -0.104237 -0.992965 -0.056174 0.979744 -0.011647 0.199914 -0.200252 -0.054955 0.978202 -0.000407 -0.998421 -0.056174 0.975569 0.091102 0.199914 -0.193390 -0.075640 0.978202 0.104237 -0.992965 -0.056174 0.960648 0.192847 0.199914 -0.184397 -0.095492 0.978202 0.207733 -0.976571 -0.056174 0.935146 0.292467 0.199914 -0.173373 -0.114292 0.978202 0.308941 -0.949421 -0.056174 0.899731 0.387967 0.199914 -0.160572 -0.131673 0.978202 0.405833 -0.912219 -0.056174 0.854114 0.480128 0.199914 -0.145887 -0.147777 0.978202 0.499205 -0.864661 -0.056174 0.799089 0.567001 0.199914 -0.129595 -0.162253 0.978202 0.587079 -0.807579 -0.056174 0.735910 0.646894 0.199914 -0.112051 -0.174830 0.978202 0.667743 -0.742269 -0.056174 0.664058 0.720459 0.199914 -0.093111 -0.185611 0.978202 0.741861 -0.668197 -0.056174 0.584891 0.786090 0.199914 -0.073144 -0.194347 0.978202 0.807807 -0.586764 -0.056174 0.499282 0.843061 0.199914 -0.052373 -0.200943 0.978202 0.864855 -0.498869 -0.056174 0.409064 0.890338 0.199914 -0.031229 -0.205294 0.978202 0.911971 -0.406391 -0.056174 0.313498 0.928307 0.199914 -0.009541 -0.207437 0.978202 0.949541 -0.308571 -0.056174 0.214478 0.956051 0.199914 0.012253 -0.207294 0.978202 0.976652 -0.207353 -0.056174 0.114069 0.973151 0.199914 0.033706 -0.204902 0.978202 0.992901 -0.104844 -0.056174 0.011447 0.979747 0.199914 0.054996 -0.200241 0.978202 0.998421 -0.000203 -0.056174 -0.091300 0.975550 0.199914 0.075680 -0.193374 0.978202 0.992944 0.104439 -0.056174 -0.193042 0.960609 0.199914 0.095530 -0.184378 0.978202 0.976529 0.207932 -0.056174 -0.291722 0.935378 0.199914 0.114154 -0.173464 0.978202 0.949667 0.308184 -0.056174 -0.388150 0.899652 0.199914 0.131706 -0.160545 0.978202 0.912136 0.406019 -0.056174 -0.480302 0.854016 0.199914 0.147807 -0.145857 0.978202 0.864559 0.499381 -0.056174 -0.567164 0.798974 0.199914 0.162280 -0.129562 0.978202 0.807459 0.587243 -0.056174 -0.647043 0.735778 0.199914 0.174853 -0.112016 0.978202 0.742133 0.667894 -0.056174 -0.720595 0.663911 0.199914 0.185630 -0.093073 0.978202 0.668046 0.741997 -0.056174 -0.786209 0.584731 0.199914 0.194362 -0.073105 0.978202 0.586600 0.807926 -0.056174 -0.842663 0.499953 0.199914 0.200901 -0.052533 0.978202 0.499557 0.864458 -0.056174 -0.890421 0.408883 0.199914 0.205301 -0.031187 0.978202 0.406205 0.912054 -0.056174 -0.928371 0.313308 0.199914 0.207439 -0.009499 0.978202 0.308378 0.949604 -0.056174 -0.956095 0.214283 0.199914 0.207292 0.012295 0.978202 0.207154 0.976694 -0.056174 -0.973174 0.113870 0.199914 0.204895 0.033748 0.978202 0.104642 0.992922 -0.056174 -0.979749 0.011248 0.199914 0.200230 0.055036 0.978202 0.000000 0.998421 -0.056174 -0.975532 -0.091499 0.199914 0.193359 0.075719 0.978202 -0.104642 0.992922 -0.056174 -0.960762 -0.192277 0.199914 0.184454 0.095383 0.978202 -0.207154 0.976694 -0.056174 -0.935319 -0.291913 0.199914 0.173441 0.114190 0.978202 -0.308378 0.949604 -0.056174 -0.899573 -0.388333 0.199914 0.160518 0.131739 0.978202 -0.406205 0.912054 -0.056174 -0.853919 -0.480476 0.199914 0.145827 0.147836 0.978202 -0.499557 0.864458 -0.056174 -0.799425 -0.566528 0.199914 0.129691 0.162176 0.978202 -0.586600 0.807926 -0.056174 -0.735646 -0.647193 0.199914 0.111980 0.174876 0.978202 -0.668046 0.741997 -0.056174 -0.663764 -0.720730 0.199914 0.093035 0.185649 0.978202 -0.742133 0.667894 -0.056174 -0.585357 -0.785743 0.199914 0.073260 0.194304 0.978202 -0.807459 0.587243 -0.056174 -0.499782 -0.842765 0.199914 0.052492 0.200912 0.978202 -0.864559 0.499381 -0.056174 -0.408702 -0.890504 0.199914 0.031146 0.205307 0.978202 -0.912136 0.406019 -0.056174 -0.313119 -0.928435 0.199914 0.009456 0.207441 0.978202 -0.949667 0.308184 -0.056174 -0.215044 -0.955924 0.199914 -0.012130 0.207301 0.978202 -0.976529 0.207932 -0.056174 -0.113672 -0.973197 0.199914 -0.033790 0.204889 0.978202 -0.992944 0.104439 -0.056174 0.218644 0.859803 0.461448 -0.368483 0.510626 -0.776841 -0.903557 -0.000184 0.428468 0.127326 0.877983 0.461448 -0.419971 0.469194 -0.776841 -0.898561 -0.094882 0.428468 0.035492 0.886457 0.461448 -0.466410 0.423061 -0.776841 -0.883856 -0.187652 0.428468 -0.057610 0.885295 0.461448 -0.508181 0.371848 -0.776841 -0.859321 -0.279253 0.428468 -0.150078 0.874381 0.461448 -0.544354 0.316539 -0.776841 -0.825321 -0.367778 0.428468 -0.240039 0.854077 0.461448 -0.574274 0.258318 -0.776841 -0.782682 -0.451469 0.428468 -0.328230 0.824215 0.461448 -0.598185 0.196707 -0.776841 -0.731054 -0.531013 0.428468 -0.412806 0.785275 0.461448 -0.615506 0.132930 -0.776841 -0.671374 -0.604709 0.428468 -0.492835 0.737685 0.461448 -0.626049 0.067688 -0.776841 -0.604298 -0.671743 0.428468 -0.566754 0.682537 0.461448 -0.629693 0.002331 -0.776841 -0.531298 -0.730847 0.428468 -0.635167 0.619378 0.461448 -0.626469 -0.063679 -0.776841 -0.451774 -0.782506 0.428468 -0.696584 0.549397 0.461448 -0.616345 -0.128986 -0.776841 -0.367273 -0.825546 0.428468 -0.749855 0.474114 0.461448 -0.599624 -0.192274 -0.776841 -0.279587 -0.859213 0.428468 -0.795415 0.392913 0.461448 -0.576170 -0.254060 -0.776841 -0.187995 -0.883783 0.428468 -0.832215 0.307384 0.461448 -0.546370 -0.313047 -0.776841 -0.094333 -0.898619 0.428468 -0.859669 0.219169 0.461448 -0.510851 -0.368171 -0.776841 -0.000368 -0.903557 0.428468 -0.877905 0.127863 0.461448 -0.469451 -0.419684 -0.776841 0.094333 -0.898619 0.428468 -0.886471 0.035148 0.461448 -0.422879 -0.466574 -0.776841 0.187995 -0.883783 0.428468 -0.885273 -0.057955 0.461448 -0.371650 -0.508325 -0.776841 0.279587 -0.859213 0.428468 -0.874473 -0.149544 0.461448 -0.316871 -0.544161 -0.776841 0.367273 -0.825546 0.428468 -0.853984 -0.240371 0.461448 -0.258094 -0.574374 -0.776841 0.451774 -0.782506 0.428468 -0.824088 -0.328551 0.461448 -0.196474 -0.598261 -0.776841 0.531298 -0.730847 0.428468 -0.785527 -0.412327 0.461448 -0.133306 -0.615425 -0.776841 0.604298 -0.671743 0.428468 -0.737986 -0.492385 0.461448 -0.068070 -0.626007 -0.776841 0.671374 -0.604709 0.428468 -0.682316 -0.567019 0.461448 -0.002085 -0.629694 -0.776841 0.731054 -0.531013 0.428468 -0.619131 -0.635408 0.461448 0.063922 -0.626444 -0.776841 0.782682 -0.451469 0.428468 -0.549822 -0.696248 0.461448 0.128610 -0.616424 -0.776841 0.825321 -0.367778 0.428468 -0.473822 -0.750039 0.461448 0.192507 -0.599549 -0.776841 0.859321 -0.279253 0.428468 -0.392603 -0.795568 0.461448 0.254284 -0.576071 -0.776841 0.883856 -0.187652 0.428468 -0.307892 -0.832027 0.461448 0.312713 -0.546561 -0.776841 0.898561 -0.094882 0.428468 -0.218994 -0.859714 0.461448 0.368275 -0.510776 -0.776841 0.903557 -0.000184 0.428468 -0.127684 -0.877931 0.461448 0.419779 -0.469365 -0.776841 0.898600 0.094516 0.428468 -0.034967 -0.886478 0.461448 0.466660 -0.422784 -0.776841 0.883745 0.188175 0.428468 0.057249 -0.885318 0.461448 0.508029 -0.372055 -0.776841 0.859435 0.278903 0.428468 0.149722 -0.874442 0.461448 0.544225 -0.316760 -0.776841 0.825471 0.367442 0.428468 0.240545 -0.853935 0.461448 0.574427 -0.257977 -0.776841 0.782414 0.451933 0.428468 0.328719 -0.824021 0.461448 0.598301 -0.196352 -0.776841 0.730739 0.531447 0.428468 0.412486 -0.785443 0.461448 0.615452 -0.133180 -0.776841 0.671620 0.604435 0.428468 0.492535 -0.737886 0.461448 0.626021 -0.067943 -0.776841 0.604572 0.671497 0.428468 0.567158 -0.682201 0.461448 0.629694 -0.001957 -0.776841 0.530865 0.731162 0.428468 0.634915 -0.619637 0.461448 0.626495 0.063423 -0.776841 0.452092 0.782322 0.428468 0.696360 -0.549681 0.461448 0.616397 0.128735 -0.776841 0.367610 0.825396 0.428468 0.750135 -0.473670 0.461448 0.599510 0.192629 -0.776841 0.279078 0.859378 0.428468 0.795648 -0.392441 0.461448 0.576020 0.254401 -0.776841 0.187472 0.883895 0.428468 0.832089 -0.307723 0.461448 0.546497 0.312825 -0.776841 0.094699 0.898581 0.428468 0.859758 -0.218819 0.461448 0.510701 0.368379 -0.776841 0.000000 0.903557 0.428468 0.877957 -0.127505 0.461448 0.469280 0.419875 -0.776841 -0.094699 0.898581 0.428468 0.886450 -0.035673 0.461448 0.423156 0.466324 -0.776841 -0.187472 0.883895 0.428468 0.885307 0.057430 0.461448 0.371951 0.508105 -0.776841 -0.279078 0.859378 0.428468 0.874412 0.149900 0.461448 0.316650 0.544290 -0.776841 -0.367610 0.825396 0.428468 0.853886 0.240719 0.461448 0.257860 0.574479 -0.776841 -0.452092 0.782322 0.428468 0.824282 0.328063 0.461448 0.196829 0.598145 -0.776841 -0.530865 0.731162 0.428468 0.785359 0.412646 0.461448 0.133055 0.615479 -0.776841 -0.604572 0.671497 0.428468 0.737786 0.492685 0.461448 0.067815 0.626035 -0.776841 -0.671620 0.604435 0.428468 0.682652 0.566614 0.461448 0.002459 0.629692 -0.776841 -0.730739 0.531447 0.428468 0.619507 0.635041 0.461448 -0.063551 0.626482 -0.776841 -0.782414 0.451933 0.428468 0.549539 0.696472 0.461448 -0.128861 0.616371 -0.776841 -0.825471 0.367442 0.428468 0.473517 0.750232 0.461448 -0.192751 0.599471 -0.776841 -0.859435 0.278903 0.428468 0.393075 0.795335 0.461448 -0.253942 0.576222 -0.776841 -0.883745 0.188175 0.428468 0.307553 0.832152 0.461448 -0.312936 0.546433 -0.776841 -0.898600 0.094516 0.428468 0.151697 -0.983526 -0.098304 -0.825040 -0.180764 0.535382 -0.544332 -0.000111 -0.838870 0.253942 -0.962211 -0.098304 -0.801551 -0.266239 0.535382 -0.541323 -0.057160 -0.838870 0.352460 -0.930649 -0.098304 -0.769581 -0.348011 0.535382 -0.532464 -0.113047 -0.838870 0.448057 -0.888584 -0.098304 -0.728868 -0.426752 0.535382 -0.517683 -0.168231 -0.838870 0.538720 -0.836730 -0.098304 -0.680127 -0.500793 0.535382 -0.497200 -0.221561 -0.838870 0.622672 -0.776283 -0.098304 -0.624464 -0.568693 0.535382 -0.471513 -0.271980 -0.838870 0.700603 -0.706748 -0.098304 -0.561422 -0.631009 0.535382 -0.440411 -0.319900 -0.838870 0.770816 -0.629427 -0.098304 -0.492195 -0.686374 0.535382 -0.404457 -0.364296 -0.838870 0.832540 -0.545173 -0.098304 -0.417548 -0.734180 0.535382 -0.364049 -0.404680 -0.838870 0.884637 -0.455800 -0.098304 -0.339074 -0.773560 0.535382 -0.320071 -0.440286 -0.838870 0.927536 -0.360573 -0.098304 -0.256132 -0.804837 0.535382 -0.272163 -0.471407 -0.838870 0.960218 -0.261375 -0.098304 -0.170369 -0.827249 0.535382 -0.221257 -0.497335 -0.838870 0.982164 -0.160280 -0.098304 -0.083570 -0.840466 0.535382 -0.168432 -0.517618 -0.838870 0.993554 -0.056459 -0.098304 0.004977 -0.844595 0.535382 -0.113255 -0.532420 -0.838870 0.993999 0.047983 -0.098304 0.093470 -0.839422 0.535382 -0.056829 -0.541357 -0.838870 0.983619 0.151096 -0.098304 0.180260 -0.825150 0.535382 -0.000222 -0.544332 -0.838870 0.962366 0.253354 -0.098304 0.265749 -0.801713 0.535382 0.056829 -0.541357 -0.838870 0.930512 0.352822 -0.098304 0.348311 -0.769445 0.535382 0.113255 -0.532420 -0.838870 0.888409 0.448403 -0.098304 0.427036 -0.728702 0.535382 0.168432 -0.517618 -0.838870 0.837059 0.538208 -0.098304 0.500377 -0.680433 0.535382 0.221257 -0.497335 -0.838870 0.776041 0.622974 -0.098304 0.568935 -0.624243 0.535382 0.272163 -0.471407 -0.838870 0.706475 0.700878 -0.098304 0.631227 -0.561176 0.535382 0.320071 -0.440286 -0.838870 0.629898 0.770432 -0.098304 0.686074 -0.492615 0.535382 0.364049 -0.404680 -0.838870 0.545682 0.832206 -0.098304 0.733925 -0.417996 0.535382 0.404457 -0.364296 -0.838870 0.455455 0.884815 -0.098304 0.773692 -0.338773 0.535382 0.440411 -0.319900 -0.838870 0.360212 0.927676 -0.098304 0.804937 -0.255819 0.535382 0.471513 -0.271980 -0.838870 0.261961 0.960059 -0.098304 0.827145 -0.170875 0.535382 0.497200 -0.221561 -0.838870 0.159898 0.982227 -0.098304 0.840498 -0.083243 0.535382 0.517683 -0.168231 -0.838870 0.056073 0.993575 -0.098304 0.844594 0.005306 0.535382 0.532464 -0.113047 -0.838870 -0.047376 0.994028 -0.098304 0.839479 0.092957 0.535382 0.541323 -0.057160 -0.838870 -0.151296 0.983588 -0.098304 0.825113 0.180428 0.535382 0.544332 -0.000111 -0.838870 -0.253550 0.962314 -0.098304 0.801659 0.265912 0.535382 0.541346 0.056940 -0.838870 -0.353011 0.930440 -0.098304 0.769374 0.348467 0.535382 0.532397 0.113363 -0.838870 -0.447695 0.888766 -0.098304 0.729042 0.426455 0.535382 0.517752 0.168020 -0.838870 -0.538379 0.836950 -0.098304 0.680331 0.500516 0.535382 0.497290 0.221359 -0.838870 -0.623132 0.775914 -0.098304 0.624127 0.569062 0.535382 0.471352 0.272259 -0.838870 -0.701021 0.706332 -0.098304 0.561048 0.631341 0.535382 0.440221 0.320161 -0.838870 -0.770560 0.629741 -0.098304 0.492475 0.686174 0.535382 0.404606 0.364131 -0.838870 -0.832318 0.545512 -0.098304 0.417847 0.734010 0.535382 0.364214 0.404532 -0.838870 -0.884907 0.455275 -0.098304 0.338616 0.773761 0.535382 0.319810 0.440476 -0.838870 -0.927389 0.360951 -0.098304 0.256460 0.804733 0.535382 0.272355 0.471296 -0.838870 -0.960112 0.261766 -0.098304 0.170706 0.827179 0.535382 0.221460 0.497245 -0.838870 -0.982259 0.159698 -0.098304 0.083072 0.840515 0.535382 0.168125 0.517717 -0.838870 -0.993587 0.055870 -0.098304 -0.005478 0.844592 0.535382 0.112939 0.532487 -0.838870 -0.994018 -0.047579 -0.098304 -0.093128 0.839460 0.535382 0.057050 0.541334 -0.838870 -0.983557 -0.151497 -0.098304 -0.180596 0.825077 0.535382 0.000000 0.544332 -0.838870 -0.962263 -0.253746 -0.098304 -0.266076 0.801605 0.535382 -0.057050 0.541334 -0.838870 -0.930721 -0.352270 -0.098304 -0.347855 0.769652 0.535382 -0.112939 0.532487 -0.838870 -0.888675 -0.447876 -0.098304 -0.426604 0.728955 0.535382 -0.168125 0.517717 -0.838870 -0.836840 -0.538549 -0.098304 -0.500654 0.680229 0.535382 -0.221460 0.497245 -0.838870 -0.775787 -0.623290 -0.098304 -0.569190 0.624011 0.535382 -0.272355 0.471296 -0.838870 -0.706890 -0.700459 -0.098304 -0.630894 0.561550 0.535382 -0.319810 0.440476 -0.838870 -0.629584 -0.770688 -0.098304 -0.686274 0.492335 0.535382 -0.364214 0.404532 -0.838870 -0.545343 -0.832429 -0.098304 -0.734095 0.417697 0.535382 -0.404606 0.364131 -0.838870 -0.455980 -0.884544 -0.098304 -0.773491 0.339232 0.535382 -0.440221 0.320161 -0.838870 -0.360762 -0.927463 -0.098304 -0.804785 0.256296 0.535382 -0.471352 0.272259 -0.838870 -0.261570 -0.960165 -0.098304 -0.827214 0.170538 0.535382 -0.497290 0.221359 -0.838870 -0.159497 -0.982292 -0.098304 -0.840532 0.082900 0.535382 -0.517752 0.168020 -0.838870 -0.056661 -0.993542 -0.098304 -0.844597 -0.004805 0.535382 -0.532397 0.113363 -0.838870 0.047781 -0.994009 -0.098304 -0.839441 -0.093299 0.535382 -0.541346 0.056940 -0.838870 0.528482 0.184837 0.828578 -0.099543 0.982769 -0.155743 -0.843088 -0.000172 0.537775 0.506200 0.239208 0.828578 -0.201996 0.966924 -0.155743 -0.838427 -0.088532 0.537775 0.478632 0.290465 0.828578 -0.301284 0.940730 -0.155743 -0.824706 -0.175093 0.537775 0.445553 0.339029 0.828578 -0.398219 0.903972 -0.155743 -0.801813 -0.260564 0.537775 0.407566 0.383859 0.828578 -0.490769 0.857257 -0.155743 -0.770088 -0.343165 0.537775 0.365515 0.424096 0.828578 -0.577112 0.801677 -0.155743 -0.730302 -0.421256 0.537775 0.319053 0.460069 0.828578 -0.657955 0.736777 -0.155743 -0.682130 -0.495476 0.537775 0.269078 0.490974 0.828578 -0.731550 0.663761 -0.155743 -0.626443 -0.564240 0.537775 0.216138 0.516471 0.828578 -0.797088 0.583433 -0.155743 -0.563857 -0.626788 0.537775 0.161354 0.536119 0.828578 -0.853349 0.497533 -0.155743 -0.495742 -0.681937 0.537775 0.104276 0.550077 0.828578 -0.900795 0.405356 -0.155743 -0.421540 -0.730138 0.537775 0.046050 0.557976 0.828578 -0.938318 0.308714 -0.155743 -0.342694 -0.770298 0.537775 -0.012124 0.559742 0.828578 -0.965296 0.209636 -0.155743 -0.260876 -0.801711 0.537775 -0.070722 0.555389 0.828578 -0.981951 0.107312 -0.155743 -0.175414 -0.824638 0.537775 -0.128541 0.544918 0.828578 -0.987790 0.003805 -0.155743 -0.088020 -0.838481 0.537775 -0.184514 0.528595 0.828578 -0.982830 -0.098943 -0.155743 -0.000343 -0.843088 0.537775 -0.238898 0.506346 0.828578 -0.967047 -0.201405 -0.155743 0.088020 -0.838481 0.537775 -0.290651 0.478519 0.828578 -0.940612 -0.301650 -0.155743 0.175414 -0.824638 0.537775 -0.339203 0.445421 0.828578 -0.903817 -0.398571 -0.155743 0.260876 -0.801711 0.537775 -0.383610 0.407801 0.828578 -0.857557 -0.490245 -0.155743 0.342694 -0.770298 0.537775 -0.424238 0.365350 0.828578 -0.801453 -0.577423 -0.155743 0.421540 -0.730138 0.537775 -0.460193 0.318874 0.828578 -0.736521 -0.658241 -0.155743 0.495742 -0.681937 0.537775 -0.490810 0.269378 0.828578 -0.664207 -0.731145 -0.155743 0.563857 -0.626788 0.537775 -0.516339 0.216454 0.828578 -0.583920 -0.796732 -0.155743 0.626443 -0.564240 0.537775 -0.536181 0.161146 0.828578 -0.497201 -0.853543 -0.155743 0.682130 -0.495476 0.537775 -0.550118 0.104063 0.828578 -0.405005 -0.900952 -0.155743 0.730302 -0.421256 0.537775 -0.557948 0.046391 0.828578 -0.309287 -0.938129 -0.155743 0.770088 -0.343165 0.537775 -0.559737 -0.012341 0.828578 -0.209261 -0.965378 -0.155743 0.801813 -0.260564 0.537775 -0.555361 -0.070938 0.828578 -0.106930 -0.981993 -0.155743 0.824706 -0.175093 0.537775 -0.544996 -0.128208 0.828578 -0.004409 -0.987788 -0.155743 0.838427 -0.088532 0.537775 -0.528558 -0.184622 0.828578 0.099143 -0.982810 -0.155743 0.843088 -0.000172 0.537775 -0.506297 -0.239001 0.828578 0.201602 -0.967006 -0.155743 0.838463 0.088191 0.537775 -0.478460 -0.290749 0.828578 0.301841 -0.940551 -0.155743 0.824602 0.175582 0.537775 -0.445691 -0.338848 0.828578 0.397851 -0.904134 -0.155743 0.801919 0.260238 0.537775 -0.407723 -0.383693 0.828578 0.490420 -0.857457 -0.155743 0.770228 0.342851 0.537775 -0.365263 -0.424312 0.828578 0.577586 -0.801335 -0.155743 0.730052 0.421688 0.537775 -0.318781 -0.460258 0.828578 0.658391 -0.736387 -0.155743 0.681836 0.495881 0.537775 -0.269278 -0.490864 0.828578 0.731280 -0.664059 -0.155743 0.626673 0.563984 0.537775 -0.216349 -0.516383 0.828578 0.796851 -0.583758 -0.155743 0.564112 0.626558 0.537775 -0.161036 -0.536214 0.828578 0.853644 -0.497027 -0.155743 0.495337 0.682230 0.537775 -0.104501 -0.550035 0.828578 0.900629 -0.405723 -0.155743 0.421837 0.729967 0.537775 -0.046277 -0.557958 0.828578 0.938192 -0.309096 -0.155743 0.343008 0.770158 0.537775 0.012455 -0.559735 0.828578 0.965420 -0.209064 -0.155743 0.260401 0.801866 0.537775 0.071051 -0.555347 0.828578 0.982015 -0.106730 -0.155743 0.174925 0.824742 0.537775 0.128319 -0.544970 0.828578 0.987789 -0.004208 -0.155743 0.088362 0.838445 0.537775 0.184729 -0.528520 0.828578 0.982789 0.099343 -0.155743 0.000000 0.843088 0.537775 0.239105 -0.506248 0.828578 0.966965 0.201799 -0.155743 -0.088362 0.838445 0.537775 0.290368 -0.478691 0.828578 0.940791 0.301092 -0.155743 -0.174925 0.824742 0.537775 0.338939 -0.445622 0.828578 0.904053 0.398035 -0.155743 -0.260401 0.801866 0.537775 0.383776 -0.407645 0.828578 0.857357 0.490594 -0.155743 -0.343008 0.770158 0.537775 0.424387 -0.365177 0.828578 0.801217 0.577750 -0.155743 -0.421837 0.729967 0.537775 0.460004 -0.319147 0.828578 0.736911 0.657804 -0.155743 -0.495337 0.682230 0.537775 0.490919 -0.269178 0.828578 0.663910 0.731415 -0.155743 -0.564112 0.626558 0.537775 0.516427 -0.216243 0.828578 0.583596 0.796969 -0.155743 -0.626673 0.563984 0.537775 0.536086 -0.161463 0.828578 0.497707 0.853248 -0.155743 -0.681836 0.495881 0.537775 0.550056 -0.104388 0.828578 0.405539 0.900712 -0.155743 -0.730052 0.421688 0.537775 0.557967 -0.046164 0.828578 0.308905 0.938255 -0.155743 -0.770228 0.342851 0.537775 0.559732 0.012569 0.828578 0.208868 0.965463 -0.155743 -0.801919 0.260238 0.537775 0.555403 0.070609 0.828578 0.107512 0.981929 -0.155743 -0.824602 0.175582 0.537775 0.544944 0.128430 0.828578 0.004007 0.987790 -0.155743 -0.838463 0.088191 0.537775 -0.117887 0.299121 -0.946905 -0.036744 -0.954215 -0.296856 -0.992347 -0.000202 0.123480 -0.148588 0.285118 -0.946905 0.063467 -0.952811 -0.296856 -0.986861 -0.104206 0.123480 -0.177384 0.268152 -0.946905 0.162038 -0.941074 -0.296856 -0.970711 -0.206092 0.123480 -0.204511 0.248084 -0.946905 0.259777 -0.918909 -0.296856 -0.943765 -0.306694 0.123480 -0.229386 0.225284 -0.946905 0.354654 -0.886621 -0.296856 -0.906423 -0.403918 0.123480 -0.251534 0.200253 -0.946905 0.444780 -0.845013 -0.296856 -0.859594 -0.495834 0.123480 -0.271136 0.172788 -0.946905 0.530894 -0.793743 -0.296856 -0.802893 -0.583195 0.123480 -0.287752 0.143420 -0.946905 0.611160 -0.733730 -0.296856 -0.737348 -0.664132 0.123480 -0.301199 0.112471 -0.946905 0.684694 -0.665635 -0.296856 -0.663681 -0.737753 0.123480 -0.311248 0.080595 -0.946905 0.750096 -0.590959 -0.296856 -0.583507 -0.802666 0.123480 -0.317980 0.047530 -0.946905 0.807902 -0.509089 -0.296856 -0.496168 -0.859401 0.123480 -0.321211 0.013942 -0.946905 0.856809 -0.421611 -0.296856 -0.403364 -0.906670 0.123480 -0.320922 -0.019479 -0.946905 0.895948 -0.330385 -0.296856 -0.307061 -0.943645 0.123480 -0.317113 -0.053007 -0.946905 0.925640 -0.234664 -0.296856 -0.206469 -0.970630 0.123480 -0.309811 -0.085951 -0.946905 0.945137 -0.136358 -0.296856 -0.103603 -0.986924 0.123480 -0.299193 -0.117704 -0.946905 0.954193 -0.037327 -0.296856 -0.000404 -0.992347 0.123480 -0.285209 -0.148413 -0.946905 0.952850 0.062885 -0.296856 0.103603 -0.986924 0.123480 -0.268083 -0.177488 -0.946905 0.941011 0.162404 -0.296856 0.206469 -0.970630 0.123480 -0.248005 -0.204607 -0.946905 0.918807 0.260134 -0.296856 0.307061 -0.943645 0.123480 -0.225424 -0.229248 -0.946905 0.886838 0.354112 -0.296856 0.403364 -0.906670 0.123480 -0.200156 -0.251611 -0.946905 0.844840 0.445109 -0.296856 0.496168 -0.859401 0.123480 -0.172683 -0.271203 -0.946905 0.793537 0.531203 -0.296856 0.583507 -0.802666 0.123480 -0.143595 -0.287665 -0.946905 0.734103 0.610712 -0.296856 0.663681 -0.737753 0.123480 -0.112655 -0.301130 -0.946905 0.666053 0.684288 -0.296856 0.737348 -0.664132 0.123480 -0.080474 -0.311279 -0.946905 0.590667 0.750326 -0.296856 0.802893 -0.583195 0.123480 -0.047407 -0.317999 -0.946905 0.508774 0.808100 -0.296856 0.859594 -0.495834 0.123480 -0.014138 -0.321202 -0.946905 0.422134 0.856551 -0.296856 0.906423 -0.403918 0.123480 0.019604 -0.320915 -0.946905 0.330037 0.896076 -0.296856 0.943765 -0.306694 0.123480 0.053130 -0.317093 -0.946905 0.234304 0.925731 -0.296856 0.970711 -0.206092 0.123480 0.085761 -0.309864 -0.946905 0.136935 0.945053 -0.296856 0.986861 -0.104206 0.123480 0.117765 -0.299169 -0.946905 0.037133 0.954200 -0.296856 0.992347 -0.000202 0.123480 0.148471 -0.285179 -0.946905 -0.063079 0.952837 -0.296856 0.986903 0.103804 0.123480 0.177542 -0.268047 -0.946905 -0.162595 0.940978 -0.296856 0.970588 0.206667 0.123480 0.204410 -0.248168 -0.946905 -0.259402 0.919014 -0.296856 0.943889 0.306310 0.123480 0.229294 -0.225377 -0.946905 -0.354293 0.886766 -0.296856 0.906587 0.403549 0.123480 0.251652 -0.200104 -0.946905 -0.445281 0.844749 -0.296856 0.859300 0.496343 0.123480 0.271239 -0.172627 -0.946905 -0.531365 0.793428 -0.296856 0.802547 0.583670 0.123480 0.287694 -0.143537 -0.946905 -0.610861 0.733979 -0.296856 0.737618 0.663831 0.123480 0.301153 -0.112594 -0.946905 -0.684423 0.665914 -0.296856 0.663981 0.737483 0.123480 0.311295 -0.080411 -0.946905 -0.750446 0.590514 -0.296856 0.583031 0.803011 0.123480 0.317961 -0.047660 -0.946905 -0.807695 0.509418 -0.296856 0.496518 0.859199 0.123480 0.321205 -0.014073 -0.946905 -0.856637 0.421960 -0.296856 0.403734 0.906505 0.123480 0.320911 0.019669 -0.946905 -0.896143 0.329854 -0.296856 0.306502 0.943827 0.123480 0.317082 0.053195 -0.946905 -0.925779 0.234115 -0.296856 0.205894 0.970752 0.123480 0.309846 0.085824 -0.946905 -0.945081 0.136743 -0.296856 0.104005 0.986882 0.123480 0.299145 0.117826 -0.946905 -0.954208 0.036939 -0.296856 0.000000 0.992347 0.123480 0.285148 0.148529 -0.946905 -0.952824 -0.063273 -0.296856 -0.104005 0.986882 0.123480 0.268188 0.177329 -0.946905 -0.941107 -0.161846 -0.296856 -0.205894 0.970752 0.123480 0.248126 0.204460 -0.946905 -0.918961 -0.259589 -0.296856 -0.306502 0.943827 0.123480 0.225331 0.229340 -0.946905 -0.886693 -0.354474 -0.296856 -0.403734 0.906505 0.123480 0.200053 0.251693 -0.946905 -0.844659 -0.445453 -0.296856 -0.496518 0.859199 0.123480 0.172843 0.271101 -0.946905 -0.793851 -0.530733 -0.296856 -0.583031 0.803011 0.123480 0.143478 0.287723 -0.946905 -0.733855 -0.611011 -0.296856 -0.663981 0.737483 0.123480 0.112532 0.301176 -0.946905 -0.665775 -0.684559 -0.296856 -0.737618 0.663831 0.123480 0.080659 0.311231 -0.946905 -0.591112 -0.749976 -0.296856 -0.802547 0.583670 0.123480 0.047595 0.317971 -0.946905 -0.509253 -0.807798 -0.296856 -0.859300 0.496343 0.123480 0.014007 0.321208 -0.946905 -0.421785 -0.856723 -0.296856 -0.906587 0.403549 0.123480 -0.019735 0.320907 -0.946905 -0.329672 -0.896211 -0.296856 -0.943889 0.306310 0.123480 -0.052942 0.317124 -0.946905 -0.234853 -0.925592 -0.296856 -0.970588 0.206667 0.123480 -0.085888 0.309829 -0.946905 -0.136550 -0.945109 -0.296856 -0.986903 0.103804 0.123480 -0.241350 -0.695612 -0.676663 0.233940 -0.718417 0.655094 -0.941818 -0.000192 0.336122 -0.167116 -0.717077 -0.676663 0.307947 -0.689942 0.655094 -0.936611 -0.098900 0.336122 -0.091771 -0.730551 -0.676663 0.377908 -0.654245 0.655094 -0.921284 -0.195598 0.336122 -0.014699 -0.736146 -0.676663 0.444396 -0.611035 0.655094 -0.895710 -0.291078 0.336122 0.062535 -0.733632 -0.676663 0.505990 -0.561093 0.655094 -0.860270 -0.383351 0.336122 0.138358 -0.723176 -0.676663 0.561504 -0.505534 0.655094 -0.815825 -0.470587 0.336122 0.213390 -0.704692 -0.676663 0.611395 -0.443900 0.655094 -0.762011 -0.553499 0.336122 0.286071 -0.678447 -0.676663 0.654552 -0.377376 0.655094 -0.699803 -0.630315 0.336122 0.355602 -0.644728 -0.676663 0.690499 -0.306696 0.655094 -0.629888 -0.700188 0.336122 0.420612 -0.604328 -0.676663 0.718607 -0.233357 0.655094 -0.553796 -0.761795 0.336122 0.481633 -0.556917 -0.676663 0.739107 -0.156756 0.655094 -0.470904 -0.815642 0.336122 0.537349 -0.503371 -0.676663 0.751465 -0.078429 0.655094 -0.382826 -0.860504 0.336122 0.586702 -0.444868 -0.676663 0.755547 0.000006 0.655094 -0.291426 -0.895596 0.336122 0.630096 -0.380927 -0.676663 0.751385 0.079193 0.655094 -0.195956 -0.921207 0.336122 0.666550 -0.312790 -0.676663 0.738947 0.157507 0.655094 -0.098328 -0.936672 0.336122 0.695465 -0.241775 -0.676663 0.718560 0.233501 0.655094 -0.000384 -0.941818 0.336122 0.716974 -0.167554 -0.676663 0.690130 0.307526 0.655094 0.098328 -0.936672 0.336122 0.730587 -0.091487 -0.676663 0.654098 0.378163 0.655094 0.195956 -0.921207 0.336122 0.736151 -0.014412 -0.676663 0.610862 0.444634 0.655094 0.291426 -0.895596 0.336122 0.733670 0.062087 -0.676663 0.561402 0.505647 0.655094 0.382826 -0.860504 0.336122 0.723122 0.138639 -0.676663 0.505315 0.561701 0.655094 0.470904 -0.815642 0.336122 0.704609 0.213664 -0.676663 0.443662 0.611568 0.655094 0.553796 -0.761795 0.336122 0.678621 0.285657 -0.676663 0.377776 0.654321 0.655094 0.629888 -0.700188 0.336122 0.644945 0.355208 -0.676663 0.307118 0.690311 0.655094 0.699803 -0.630315 0.336122 0.604164 0.420847 -0.676663 0.233077 0.718698 0.655094 0.762011 -0.553499 0.336122 0.556729 0.481849 -0.676663 0.156469 0.739168 0.655094 0.815825 -0.470587 0.336122 0.503699 0.537042 -0.676663 0.078888 0.751417 0.655094 0.860270 -0.383351 0.336122 0.444639 0.586875 -0.676663 -0.000300 0.755547 0.655094 0.895710 -0.291078 0.336122 0.380682 0.630244 -0.676663 -0.079485 0.751354 0.655094 0.921284 -0.195598 0.336122 0.313198 0.666359 -0.676663 -0.157056 0.739043 0.655094 0.936611 -0.098900 0.336122 0.241633 0.695514 -0.676663 -0.233648 0.718512 0.655094 0.941818 -0.000192 0.336122 0.167408 0.717008 -0.676663 -0.307666 0.690067 0.655094 0.936652 0.098519 0.336122 0.091338 0.730605 -0.676663 -0.378296 0.654021 0.655094 0.921168 0.196144 0.336122 0.014999 0.736140 -0.676663 -0.444147 0.611216 0.655094 0.895828 0.290713 0.336122 -0.062237 0.733657 -0.676663 -0.505761 0.561299 0.655094 0.860426 0.383001 0.336122 -0.138786 0.723094 -0.676663 -0.561804 0.505201 0.655094 0.815546 0.471070 0.336122 -0.213808 0.704566 -0.676663 -0.611658 0.443537 0.655094 0.761683 0.553951 0.336122 -0.285795 0.678563 -0.676663 -0.654398 0.377643 0.655094 0.700060 0.630030 0.336122 -0.355339 0.644872 -0.676663 -0.690374 0.306977 0.655094 0.630173 0.699932 0.336122 -0.420970 0.604079 -0.676663 -0.718745 0.232931 0.655094 0.553344 0.762123 0.336122 -0.481406 0.557113 -0.676663 -0.739043 0.157057 0.655094 0.471236 0.815450 0.336122 -0.537144 0.503590 -0.676663 -0.751433 0.078735 0.655094 0.383176 0.860348 0.336122 -0.586966 0.444520 -0.676663 -0.755547 -0.000454 0.655094 0.290895 0.895769 0.336122 -0.630322 0.380553 -0.676663 -0.751338 -0.079638 0.655094 0.195410 0.921323 0.336122 -0.666422 0.313062 -0.676663 -0.739011 -0.157206 0.655094 0.098709 0.936631 0.336122 -0.695563 0.241492 -0.676663 -0.718465 -0.233794 0.655094 0.000000 0.941818 0.336122 -0.717043 0.167262 -0.676663 -0.690005 -0.307807 0.655094 -0.098709 0.936631 0.336122 -0.730532 0.091920 -0.676663 -0.654322 -0.377775 0.655094 -0.195410 0.921323 0.336122 -0.736143 0.014849 -0.676663 -0.611125 -0.444272 0.655094 -0.290895 0.895769 0.336122 -0.733645 -0.062386 -0.676663 -0.561196 -0.505875 0.655094 -0.383176 0.860348 0.336122 -0.723066 -0.138934 -0.676663 -0.505086 -0.561907 0.655094 -0.471236 0.815450 0.336122 -0.704736 -0.213246 -0.676663 -0.444024 -0.611305 0.655094 -0.553344 0.762123 0.336122 -0.678505 -0.285933 -0.676663 -0.377510 -0.654475 0.655094 -0.630173 0.699932 0.336122 -0.644800 -0.355471 -0.676663 -0.306837 -0.690436 0.655094 -0.700060 0.630030 0.336122 -0.604414 -0.420488 -0.676663 -0.233503 -0.718560 0.655094 -0.761683 0.553951 0.336122 -0.557015 -0.481520 -0.676663 -0.156907 -0.739075 0.655094 -0.815546 0.471070 0.336122 -0.503480 -0.537247 -0.676663 -0.078582 -0.751449 0.655094 -0.860426 0.383001 0.336122 -0.444400 -0.587056 -0.676663 0.000608 -0.755547 0.655094 -0.895828 0.290713 0.336122 -0.381055 -0.630019 -0.676663 0.079040 -0.751401 0.655094 -0.921168 0.196144 0.336122 -0.312926 -0.666486 -0.676663 0.157357 -0.738979 0.655094 -0.936652 0.098519 0.336122 0.132091 0.987884 0.081474 -0.841169 0.155197 -0.518023 -0.524391 -0.000107 0.851477 0.027826 0.996287 0.081474 -0.852802 0.066181 -0.518023 -0.521492 -0.055066 0.851477 -0.075751 0.993793 0.081474 -0.855065 -0.022708 -0.518023 -0.512958 -0.108906 0.851477 -0.179490 0.980380 0.081474 -0.847976 -0.112200 -0.518023 -0.498719 -0.162068 0.851477 -0.281253 0.956169 0.081474 -0.831546 -0.200456 -0.518023 -0.478986 -0.213445 0.851477 -0.378996 0.921805 0.081474 -0.806244 -0.285698 -0.518023 -0.454240 -0.262016 0.851477 -0.473520 0.877007 0.081474 -0.771860 -0.368624 -0.518023 -0.424277 -0.308181 0.851477 -0.562829 0.822548 0.081474 -0.728975 -0.447491 -0.518023 -0.389641 -0.350951 0.851477 -0.645938 0.759030 0.081474 -0.678060 -0.521428 -0.518023 -0.350713 -0.389855 0.851477 -0.721245 0.687872 0.081474 -0.620265 -0.589002 -0.518023 -0.308346 -0.424157 0.851477 -0.789366 0.608492 0.081474 -0.555117 -0.650766 -0.518023 -0.262193 -0.454138 0.851477 -0.848793 0.522409 0.081474 -0.483855 -0.705362 -0.518023 -0.213152 -0.479116 0.851477 -0.898440 0.431472 0.081474 -0.408016 -0.751781 -0.518023 -0.162262 -0.498655 0.851477 -0.938713 0.334932 0.081474 -0.326976 -0.790404 -0.518023 -0.109106 -0.512915 0.851477 -0.968647 0.234704 0.081474 -0.242336 -0.820320 -0.518023 -0.054748 -0.521526 0.851477 -0.987803 0.132695 0.081474 -0.155711 -0.841074 -0.518023 -0.000214 -0.524391 0.851477 -0.996270 0.028435 0.081474 -0.066702 -0.852762 -0.518023 0.054748 -0.521526 0.851477 -0.993763 -0.076138 0.081474 0.023040 -0.855056 -0.518023 0.109106 -0.512915 0.851477 -0.980310 -0.179872 0.081474 0.112530 -0.847932 -0.518023 0.162262 -0.498655 0.851477 -0.956341 -0.280668 0.081474 0.199948 -0.831669 -0.518023 0.213152 -0.479116 0.851477 -0.921658 -0.379354 0.081474 0.286011 -0.806132 -0.518023 0.262193 -0.454138 0.851477 -0.876822 -0.473861 0.081474 0.368924 -0.771717 -0.518023 0.308346 -0.424157 0.851477 -0.822892 -0.562326 0.081474 0.447045 -0.729248 -0.518023 0.350713 -0.389855 0.851477 -0.759424 -0.645474 0.081474 0.521013 -0.678378 -0.518023 0.389641 -0.350951 0.851477 -0.687591 -0.721512 0.081474 0.589243 -0.620036 -0.518023 0.424277 -0.308181 0.851477 -0.608185 -0.789603 0.081474 0.650982 -0.554864 -0.518023 0.454240 -0.262016 0.851477 -0.522928 -0.848474 0.081474 0.705066 -0.484286 -0.518023 0.478986 -0.213445 0.851477 -0.431122 -0.898608 0.081474 0.751940 -0.407723 -0.518023 0.498719 -0.162068 0.851477 -0.334567 -0.938843 0.081474 0.790531 -0.326669 -0.518023 0.512958 -0.108906 0.851477 -0.235296 -0.968503 0.081474 0.820172 -0.242837 -0.518023 0.521492 -0.055066 0.851477 -0.132494 -0.987830 0.081474 0.841106 -0.155539 -0.518023 0.524391 -0.000107 0.851477 -0.028232 -0.996276 0.081474 0.852775 -0.066529 -0.518023 0.521514 0.054854 0.851477 0.076340 -0.993748 0.081474 0.855051 0.023215 -0.518023 0.512893 0.109210 0.851477 0.179091 -0.980453 0.081474 0.848021 0.111854 -0.518023 0.498784 0.161865 0.851477 0.280863 -0.956283 0.081474 0.831628 0.200117 -0.518023 0.479073 0.213250 0.851477 0.379542 -0.921580 0.081474 0.806074 0.286175 -0.518023 0.454084 0.262285 0.851477 0.474040 -0.876726 0.081474 0.771641 0.369082 -0.518023 0.424094 0.308432 0.851477 0.562494 -0.822778 0.081474 0.729157 0.447194 -0.518023 0.389784 0.350792 0.851477 0.645629 -0.759293 0.081474 0.678272 0.521152 -0.518023 0.350871 0.389712 0.851477 0.721652 -0.687445 0.081474 0.619916 0.589369 -0.518023 0.308094 0.424340 0.851477 0.789119 -0.608814 0.081474 0.555383 0.650540 -0.518023 0.262378 0.454031 0.851477 0.848581 -0.522755 0.081474 0.484143 0.705165 -0.518023 0.213347 0.479029 0.851477 0.898696 -0.430939 0.081474 0.407570 0.752023 -0.518023 0.161966 0.498751 0.851477 0.938912 -0.334376 0.081474 0.326508 0.790598 -0.518023 0.108802 0.512980 0.851477 0.968551 -0.235098 0.081474 0.242670 0.820221 -0.518023 0.054960 0.521503 0.851477 0.987857 -0.132292 0.081474 0.155368 0.841138 -0.518023 0.000000 0.524391 0.851477 0.996281 -0.028029 0.081474 0.066355 0.852789 -0.518023 -0.054960 0.521503 0.851477 0.993808 0.075549 0.081474 -0.022534 0.855070 -0.518023 -0.108802 0.512980 0.851477 0.980417 0.179291 0.081474 -0.112027 0.847999 -0.518023 -0.161966 0.498751 0.851477 0.956226 0.281058 0.081474 -0.200286 0.831587 -0.518023 -0.213347 0.479029 0.851477 0.921503 0.379730 0.081474 -0.286340 0.806016 -0.518023 -0.262378 0.454031 0.851477 0.877103 0.473341 0.081474 -0.368467 0.771935 -0.518023 -0.308094 0.424340 0.851477 0.822663 0.562661 0.081474 -0.447342 0.729066 -0.518023 -0.350871 0.389712 0.851477 0.759161 0.645783 0.081474 -0.521290 0.678166 -0.518023 -0.389784 0.350792 0.851477 0.688019 0.721105 0.081474 -0.588875 0.620385 -0.518023 -0.424094 0.308432 0.851477 0.608653 0.789243 0.081474 -0.650653 0.555250 -0.518023 -0.454084 0.262285 0.851477 0.522582 0.848687 0.081474 -0.705264 0.483999 -0.518023 -0.479073 0.213250 0.851477 0.430756 0.898783 0.081474 -0.752106 0.407417 -0.518023 -0.498784 0.161865 0.851477 0.335123 0.938645 0.081474 -0.790337 0.327137 -0.518023 -0.512893 0.109210 0.851477 0.234901 0.968599 0.081474 -0.820271 0.242503 -0.518023 -0.521514 0.054854 0.851477 0.063252 0.977835 0.199595 -0.296283 0.209377 -0.931868 -0.953003 -0.000194 0.302959 -0.039580 0.979079 0.199595 -0.316595 0.177172 -0.931868 -0.947735 -0.100075 0.302959 -0.141007 0.969680 0.199595 -0.333277 0.143348 -0.931868 -0.932225 -0.197921 0.302959 -0.241860 0.949561 0.199595 -0.346466 0.107629 -0.931868 -0.906347 -0.294535 0.302959 -0.340049 0.918982 0.199595 -0.355838 0.070724 -0.931868 -0.870486 -0.387904 0.302959 -0.433614 0.878716 0.199595 -0.361257 0.033401 -0.931868 -0.825513 -0.476176 0.302959 -0.523321 0.828430 0.199595 -0.362768 -0.004645 -0.931868 -0.771060 -0.560073 0.302959 -0.607264 0.769020 0.199595 -0.360284 -0.042640 -0.931868 -0.708114 -0.637801 0.302959 -0.684519 0.701139 0.199595 -0.353830 -0.080166 -0.931868 -0.637368 -0.708504 0.302959 -0.753607 0.626289 0.199595 -0.343596 -0.116465 -0.931868 -0.560373 -0.770842 0.302959 -0.815096 0.543856 0.199595 -0.329498 -0.151835 -0.931868 -0.476497 -0.825328 0.302959 -0.867607 0.455433 0.199595 -0.311770 -0.185532 -0.931868 -0.387372 -0.870723 0.302959 -0.910199 0.362904 0.199595 -0.290825 -0.216895 -0.931868 -0.294887 -0.906232 0.302959 -0.943221 0.265510 0.199595 -0.266491 -0.246181 -0.931868 -0.198283 -0.932148 0.302959 -0.965854 0.165191 0.199595 -0.239221 -0.272756 -0.931868 -0.099496 -0.947796 0.302959 -0.977796 0.063849 0.199595 -0.209558 -0.296155 -0.931868 -0.000388 -0.953003 0.302959 -0.979103 -0.038982 0.199595 -0.177365 -0.316487 -0.931868 0.099496 -0.947796 0.302959 -0.969625 -0.141385 0.199595 -0.143218 -0.333333 -0.931868 0.198283 -0.932148 0.302959 -0.949467 -0.242230 0.199595 -0.107494 -0.346508 -0.931868 0.294887 -0.906232 0.302959 -0.919190 -0.339487 0.199595 -0.070941 -0.355795 -0.931868 0.387372 -0.870723 0.302959 -0.878547 -0.433955 0.199595 -0.033261 -0.361270 -0.931868 0.476497 -0.825328 0.302959 -0.828227 -0.523643 0.199595 0.004786 -0.362767 -0.931868 0.560373 -0.770842 0.302959 -0.769391 -0.606794 0.199595 0.042420 -0.360310 -0.931868 0.637368 -0.708504 0.302959 -0.701557 -0.684090 0.199595 0.079950 -0.353879 -0.931868 0.708114 -0.637801 0.302959 -0.625996 -0.753851 0.199595 0.116598 -0.343551 -0.931868 0.771060 -0.560073 0.302959 -0.543539 -0.815308 0.199595 0.151963 -0.329439 -0.931868 0.825513 -0.476176 0.302959 -0.455963 -0.867329 0.199595 0.185342 -0.311883 -0.931868 0.870486 -0.387904 0.302959 -0.362550 -0.910340 0.199595 0.217008 -0.290740 -0.931868 0.906347 -0.294535 0.302959 -0.265143 -0.943325 0.199595 0.246285 -0.266395 -0.931868 0.932225 -0.197921 0.302959 -0.165781 -0.965753 0.199595 0.272609 -0.239388 -0.931868 0.947735 -0.100075 0.302959 -0.063650 -0.977809 0.199595 0.296198 -0.209498 -0.931868 0.953003 -0.000194 0.302959 0.039182 -0.979095 0.199595 0.316523 -0.177301 -0.931868 0.947775 0.099689 0.302959 0.141582 -0.969596 0.199595 0.333362 -0.143150 -0.931868 0.932107 0.198473 0.302959 0.241473 -0.949659 0.199595 0.346422 -0.107770 -0.931868 0.906467 0.294165 0.302959 0.339675 -0.919121 0.199595 0.355809 -0.070869 -0.931868 0.870644 0.387549 0.302959 0.434134 -0.878458 0.199595 0.361277 -0.033187 -0.931868 0.825231 0.476665 0.302959 0.523812 -0.828120 0.199595 0.362766 0.004860 -0.931868 0.770728 0.560530 0.302959 0.606951 -0.769267 0.199595 0.360301 0.042494 -0.931868 0.708374 0.637512 0.302959 0.684233 -0.701418 0.199595 0.353863 0.080022 -0.931868 0.637657 0.708244 0.302959 0.753978 -0.625842 0.199595 0.343527 0.116668 -0.931868 0.559916 0.771174 0.302959 0.814875 -0.544188 0.199595 0.329559 0.151700 -0.931868 0.476833 0.825134 0.302959 0.867422 -0.455786 0.199595 0.311845 0.185405 -0.931868 0.387727 0.870565 0.302959 0.910414 -0.362364 0.199595 0.290696 0.217068 -0.931868 0.294350 0.906407 0.302959 0.943379 -0.264951 0.199595 0.266345 0.246339 -0.931868 0.197731 0.932265 0.302959 0.965787 -0.165584 0.199595 0.239332 0.272658 -0.931868 0.099882 0.947755 0.302959 0.977822 -0.063451 0.199595 0.209438 0.296240 -0.931868 0.000000 0.953004 0.302959 0.979087 0.039381 0.199595 0.177236 0.316559 -0.931868 -0.099882 0.947755 0.302959 0.969708 0.140810 0.199595 0.143416 0.333248 -0.931868 -0.197731 0.932265 0.302959 0.949610 0.241667 0.199595 0.107699 0.346444 -0.931868 -0.294350 0.906407 0.302959 0.919052 0.339862 0.199595 0.070796 0.355824 -0.931868 -0.387727 0.870565 0.302959 0.878370 0.434313 0.199595 0.033113 0.361284 -0.931868 -0.476833 0.825134 0.302959 0.828537 0.523152 0.199595 -0.004571 0.362769 -0.931868 -0.559916 0.771174 0.302959 0.769144 0.607108 0.199595 -0.042567 0.360292 -0.931868 -0.637657 0.708244 0.302959 0.701278 0.684376 0.199595 -0.080094 0.353847 -0.931868 -0.708374 0.637512 0.302959 0.626442 0.753480 0.199595 -0.116395 0.343620 -0.931868 -0.770728 0.560530 0.302959 0.544022 0.814986 0.199595 -0.151768 0.329529 -0.931868 -0.825231 0.476665 0.302959 0.455610 0.867515 0.199595 -0.185469 0.311807 -0.931868 -0.870644 0.387549 0.302959 0.362179 0.910488 0.199595 -0.217127 0.290652 -0.931868 -0.906467 0.294165 0.302959 0.265702 0.943167 0.199595 -0.246127 0.266541 -0.931868 -0.932107 0.198473 0.302959 0.165388 0.965820 0.199595 -0.272707 0.239277 -0.931868 -0.947775 0.099689 0.302959 0.601678 0.781454 0.165268 -0.753567 0.623963 -0.206899 -0.264803 -0.000054 0.964302 0.516462 0.840210 0.165268 -0.814812 0.541547 -0.206899 -0.263339 -0.027807 0.964302 0.426447 0.889286 0.165268 -0.866629 0.454033 -0.206899 -0.259030 -0.054995 0.964302 0.330895 0.929083 0.165268 -0.909442 0.360704 -0.206899 -0.251839 -0.081840 0.964302 0.231698 0.958646 0.165268 -0.942238 0.263401 -0.206899 -0.241875 -0.107784 0.964302 0.130926 0.977520 0.165268 -0.964491 0.164162 -0.206899 -0.229379 -0.132311 0.964302 0.027755 0.985858 0.165268 -0.976385 0.062172 -0.206899 -0.214248 -0.155623 0.964302 -0.075723 0.983337 0.165268 -0.977524 -0.040502 -0.206899 -0.196758 -0.177221 0.964302 -0.178367 0.969985 0.165268 -0.967895 -0.142731 -0.206899 -0.177100 -0.196866 0.964302 -0.278100 0.946228 0.165268 -0.947848 -0.242439 -0.206899 -0.155706 -0.214188 0.964302 -0.375740 0.911869 0.165268 -0.917218 -0.340445 -0.206899 -0.132400 -0.229327 0.964302 -0.469241 0.867467 0.165268 -0.876486 -0.434702 -0.206899 -0.107636 -0.241941 0.964302 -0.556760 0.814067 0.165268 -0.826623 -0.523343 -0.206899 -0.081938 -0.251807 0.964302 -0.639013 0.751231 0.165268 -0.767220 -0.607097 -0.206899 -0.055095 -0.259008 0.964302 -0.714229 0.680121 0.165268 -0.699366 -0.684163 -0.206899 -0.027646 -0.263356 0.964302 -0.781086 0.602155 0.165268 -0.624423 -0.753186 -0.206899 -0.000108 -0.264803 0.964302 -0.839895 0.516975 0.165268 -0.542045 -0.814481 -0.206899 0.027646 -0.263356 0.964302 -0.889452 0.426101 0.165268 -0.453696 -0.866806 -0.206899 0.055095 -0.259008 0.964302 -0.929212 0.330533 0.165268 -0.360350 -0.909583 -0.206899 0.081938 -0.251807 0.964302 -0.958504 0.232284 0.165268 -0.263977 -0.942077 -0.206899 0.107636 -0.241941 0.964302 -0.977571 0.130546 0.165268 -0.163787 -0.964555 -0.206899 0.132400 -0.229327 0.964302 -0.985869 0.027371 0.165268 -0.061792 -0.976409 -0.206899 0.155706 -0.214188 0.964302 -0.983383 -0.075123 0.165268 0.039905 -0.977548 -0.206899 0.177100 -0.196866 0.964302 -0.970094 -0.177775 0.165268 0.142140 -0.967982 -0.206899 0.196758 -0.177221 0.964302 -0.946119 -0.278468 0.165268 0.242808 -0.947754 -0.206899 0.214248 -0.155623 0.964302 -0.911723 -0.376095 0.165268 0.340802 -0.917086 -0.206899 0.229379 -0.132311 0.964302 -0.867754 -0.468711 0.165268 0.434166 -0.876751 -0.206899 0.241875 -0.107784 0.964302 -0.813850 -0.557076 0.165268 0.523665 -0.826419 -0.206899 0.251839 -0.081840 0.964302 -0.750982 -0.639306 0.165268 0.607395 -0.766984 -0.206899 0.259030 -0.054995 0.964302 -0.680557 -0.713813 0.165268 0.683736 -0.699784 -0.206899 0.263339 -0.027807 0.964302 -0.601996 -0.781209 0.165268 0.753313 -0.624270 -0.206899 0.264803 -0.000054 0.964302 -0.516804 -0.840000 0.165268 0.814592 -0.541879 -0.206899 0.263351 0.027700 0.964302 -0.425920 -0.889538 0.165268 0.866898 -0.453520 -0.206899 0.258997 0.055148 0.964302 -0.331273 -0.928948 0.165268 0.909295 -0.361074 -0.206899 0.251873 0.081737 0.964302 -0.232088 -0.958552 0.165268 0.942131 -0.263785 -0.206899 0.241919 0.107685 0.964302 -0.130347 -0.977597 0.165268 0.964589 -0.163590 -0.206899 0.229300 0.132447 0.964302 -0.027170 -0.985874 0.165268 0.976422 -0.061593 -0.206899 0.214156 0.155750 0.964302 0.075323 -0.983368 0.165268 0.977540 0.040104 -0.206899 0.196830 0.177140 0.964302 0.177972 -0.970058 0.165268 0.967953 0.142337 -0.206899 0.177180 0.196794 0.964302 0.278661 -0.946063 0.165268 0.947704 0.243001 -0.206899 0.155579 0.214280 0.964302 0.375369 -0.912022 0.165268 0.917357 0.340072 -0.206899 0.132494 0.229273 0.964302 0.468888 -0.867658 0.165268 0.876663 0.434344 -0.206899 0.107735 0.241897 0.964302 0.557242 -0.813737 0.165268 0.826312 0.523833 -0.206899 0.081789 0.251856 0.964302 0.639459 -0.750852 0.165268 0.766860 0.607551 -0.206899 0.054942 0.259041 0.964302 0.713951 -0.680411 0.165268 0.699645 0.683878 -0.206899 0.027753 0.263345 0.964302 0.781331 -0.601837 0.165268 0.624116 0.753440 -0.206899 0.000000 0.264803 0.964302 0.840105 -0.516633 0.165268 0.541713 0.814702 -0.206899 -0.027753 0.263345 0.964302 0.889199 -0.426628 0.165268 0.454210 0.866537 -0.206899 -0.054942 0.259041 0.964302 0.929015 -0.331084 0.165268 0.360889 0.909369 -0.206899 -0.081789 0.251856 0.964302 0.958599 -0.231893 0.165268 0.263593 0.942184 -0.206899 -0.107735 0.241897 0.964302 0.977624 -0.130148 0.165268 0.163394 0.964622 -0.206899 -0.132494 0.229273 0.964302 0.985852 -0.027955 0.165268 0.062371 0.976372 -0.206899 -0.155579 0.214280 0.964302 0.983353 0.075523 0.165268 -0.040303 0.977532 -0.206899 -0.177180 0.196794 0.964302 0.970022 0.178170 0.165268 -0.142534 0.967924 -0.206899 -0.196830 0.177140 0.964302 0.946284 0.277907 0.165268 -0.242246 0.947897 -0.206899 -0.214156 0.155750 0.964302 0.911946 0.375554 0.165268 -0.340259 0.917288 -0.206899 -0.229300 0.132447 0.964302 0.867563 0.469064 0.165268 -0.434523 0.876574 -0.206899 -0.241919 0.107685 0.964302 0.813623 0.557408 0.165268 -0.524001 0.826205 -0.206899 -0.251873 0.081737 0.964302 0.751361 0.638860 0.165268 -0.606940 0.767343 -0.206899 -0.258997 0.055148 0.964302 0.680266 0.714090 0.165268 -0.684021 0.699506 -0.206899 -0.263351 0.027700 0.964302 0.466135 -0.576213 0.671340 0.328467 0.817300 0.473425 -0.821479 -0.000167 0.570239 0.523959 -0.524185 0.671340 0.240999 0.847224 0.473425 -0.816937 -0.086263 0.570239 0.575545 -0.466959 0.671340 0.151744 0.867665 0.473425 -0.803568 -0.170606 0.570239 0.621316 -0.404066 0.671340 0.059971 0.878790 0.473425 -0.781262 -0.253886 0.570239 0.660243 -0.336723 0.671340 -0.032463 0.880236 0.473425 -0.750350 -0.334369 0.570239 0.691632 -0.266362 0.671340 -0.123667 0.872110 0.473425 -0.711584 -0.410459 0.570239 0.715739 -0.192407 0.671340 -0.214389 0.854345 0.473425 -0.664646 -0.482777 0.570239 0.731963 -0.116333 0.671340 -0.302750 0.827171 0.473425 -0.610387 -0.549778 0.570239 0.740124 -0.038977 0.671340 -0.387776 0.790885 0.473425 -0.549405 -0.610723 0.570239 0.740172 0.038068 0.671340 -0.467785 0.746355 0.473425 -0.483035 -0.664458 0.570239 0.732105 0.115434 0.671340 -0.543432 0.693218 0.473425 -0.410735 -0.711424 0.570239 0.715975 0.191528 0.671340 -0.613093 0.632444 0.473425 -0.333911 -0.750554 0.570239 0.692224 0.264820 0.671340 -0.675436 0.565380 0.473425 -0.254190 -0.781163 0.570239 0.660656 0.335912 0.671340 -0.730972 0.491476 0.473425 -0.170918 -0.803502 0.570239 0.621812 0.403303 0.671340 -0.778457 0.412158 0.473425 -0.085764 -0.816990 0.570239 0.576498 0.465783 0.671340 -0.817099 0.328966 0.473425 -0.000335 -0.821479 0.570239 0.524505 0.523639 0.671340 -0.847077 0.241516 0.473425 0.085764 -0.816990 0.570239 0.466735 0.575727 0.671340 -0.867724 0.151406 0.473425 0.170918 -0.803502 0.570239 0.403825 0.621473 0.671340 -0.878814 0.059629 0.473425 0.254190 -0.781163 0.570239 0.337126 0.660037 0.671340 -0.880255 -0.031925 0.473425 0.333911 -0.750554 0.570239 0.266093 0.691735 0.671340 -0.872062 -0.124006 0.473425 0.410735 -0.711424 0.570239 0.192128 0.715814 0.671340 -0.854262 -0.214722 0.473425 0.483035 -0.664458 0.570239 0.116780 0.731892 0.671340 -0.827355 -0.302245 0.473425 0.549405 -0.610723 0.570239 0.039429 0.740100 0.671340 -0.791121 -0.387293 0.473425 0.610387 -0.549778 0.570239 -0.038356 0.740157 0.671340 -0.746173 -0.468075 0.473425 0.664646 -0.482777 0.570239 -0.115718 0.732060 0.671340 -0.693006 -0.543702 0.473425 0.711584 -0.410459 0.570239 -0.191090 0.716092 0.671340 -0.632819 -0.612707 0.473425 0.750350 -0.334369 0.570239 -0.265089 0.692120 0.671340 -0.565117 -0.675656 0.473425 0.781262 -0.253886 0.570239 -0.336169 0.660525 0.671340 -0.491191 -0.731163 0.473425 0.803568 -0.170606 0.570239 -0.402923 0.622058 0.671340 -0.412633 -0.778205 0.473425 0.816937 -0.086263 0.570239 -0.465900 0.576403 0.671340 -0.328799 -0.817166 0.473425 0.821479 -0.000167 0.570239 -0.523746 0.524399 0.671340 -0.241344 -0.847126 0.473425 0.816972 0.085931 0.570239 -0.575822 0.466618 0.671340 -0.151230 -0.867755 0.473425 0.803467 0.171082 0.570239 -0.621151 0.404319 0.671340 -0.060329 -0.878766 0.473425 0.781365 0.253567 0.570239 -0.660106 0.336992 0.671340 0.032105 -0.880249 0.473425 0.750486 0.334064 0.570239 -0.691790 0.265952 0.671340 0.124184 -0.872036 0.473425 0.711341 0.410880 0.570239 -0.715853 0.191983 0.671340 0.214896 -0.854218 0.473425 0.664360 0.483171 0.570239 -0.731916 0.116631 0.671340 0.302413 -0.827294 0.473425 0.610611 0.549529 0.570239 -0.740108 0.039278 0.671340 0.387454 -0.791043 0.473425 0.549653 0.610499 0.570239 -0.740149 -0.038507 0.671340 0.468227 -0.746078 0.473425 0.482642 0.664744 0.570239 -0.732152 -0.115135 0.671340 0.543150 -0.693439 0.473425 0.411025 0.711257 0.570239 -0.716053 -0.191236 0.671340 0.612836 -0.632694 0.473425 0.334216 0.750418 0.570239 -0.692066 -0.265230 0.671340 0.675771 -0.564980 0.473425 0.253727 0.781313 0.570239 -0.660457 -0.336303 0.671340 0.731263 -0.491042 0.473425 0.170442 0.803603 0.570239 -0.621976 -0.403050 0.671340 0.778289 -0.412475 0.473425 0.086097 0.816955 0.570239 -0.576308 -0.466018 0.671340 0.817233 -0.328633 0.473425 0.000000 0.821479 0.570239 -0.524292 -0.523852 0.671340 0.847175 -0.241171 0.473425 -0.086097 0.816955 0.570239 -0.467077 -0.575450 0.671340 0.867634 -0.151921 0.473425 -0.170442 0.803603 0.570239 -0.404193 -0.621234 0.671340 0.878778 -0.060150 0.473425 -0.253727 0.781313 0.570239 -0.336857 -0.660175 0.671340 0.880242 0.032284 0.473425 -0.334216 0.750418 0.570239 -0.265811 -0.691844 0.671340 0.872011 0.124362 0.473425 -0.411025 0.711257 0.570239 -0.192553 -0.715700 0.671340 0.854389 0.214215 0.473425 -0.482642 0.664744 0.570239 -0.116482 -0.731939 0.671340 0.827232 0.302582 0.473425 -0.549653 0.610499 0.570239 -0.039128 -0.740116 0.671340 0.790964 0.387615 0.473425 -0.610611 0.549529 0.570239 0.037917 -0.740179 0.671340 0.746451 0.467633 0.473425 -0.664360 0.483171 0.570239 0.115285 -0.732129 0.671340 0.693328 0.543291 0.473425 -0.711341 0.410880 0.570239 0.191382 -0.716014 0.671340 0.632569 0.612964 0.473425 -0.750486 0.334064 0.570239 0.265371 -0.692012 0.671340 0.564842 0.675886 0.473425 -0.781365 0.253567 0.570239 0.335777 -0.660725 0.671340 0.491625 0.730872 0.473425 -0.803467 0.171082 0.570239 0.403177 -0.621894 0.671340 0.412316 0.778373 0.473425 -0.816972 0.085931 0.570239 0.746374 -0.410532 0.523822 0.335959 0.911846 0.235940 -0.574506 -0.000117 0.818501 0.785290 -0.330045 0.523822 0.238541 0.942035 0.235940 -0.571329 -0.060329 0.818501 0.815310 -0.246739 0.523822 0.139457 0.961709 0.235940 -0.561979 -0.119314 0.818501 0.836680 -0.159930 0.523822 0.037895 0.971029 0.235940 -0.546379 -0.177556 0.818501 0.848834 -0.071359 0.523822 -0.064085 0.969652 0.235940 -0.524761 -0.233843 0.818501 0.851655 0.017147 0.523822 -0.164401 0.957760 0.235940 -0.497650 -0.287056 0.818501 0.845168 0.106312 0.523822 -0.263875 0.935255 0.235940 -0.464824 -0.337632 0.818501 0.829371 0.194306 0.523822 -0.360443 0.902448 0.235940 -0.426877 -0.384490 0.818501 0.804439 0.280160 0.523822 -0.453041 0.859701 0.235940 -0.384229 -0.427112 0.818501 0.771008 0.362157 0.523822 -0.539841 0.808024 0.235940 -0.337813 -0.464692 0.818501 0.728805 0.440970 0.523822 -0.621555 0.746995 0.235940 -0.287250 -0.497538 0.818501 0.678575 0.514925 0.523822 -0.696422 0.677738 0.235940 -0.233522 -0.524904 0.818501 0.621452 0.582587 0.523822 -0.763017 0.601778 0.235940 -0.177769 -0.546310 0.818501 0.556970 0.644511 0.523822 -0.821886 0.518494 0.235940 -0.119533 -0.561933 0.818501 0.486354 0.699336 0.523822 -0.871701 0.429499 0.235940 -0.059980 -0.571366 0.818501 0.410987 0.746123 0.523822 -0.911641 0.336516 0.235940 -0.000234 -0.574506 0.818501 0.330525 0.785089 0.523822 -0.941889 0.239116 0.235940 0.059980 -0.571366 0.818501 0.246422 0.815406 0.523822 -0.961763 0.139083 0.235940 0.119533 -0.561933 0.818501 0.159604 0.836742 0.523822 -0.971043 0.037517 0.235940 0.177769 -0.546310 0.818501 0.071877 0.848790 0.523822 -0.969691 -0.063492 0.235940 0.233522 -0.524904 0.818501 -0.017478 0.851649 0.523822 -0.957696 -0.164773 0.235940 0.287250 -0.497538 0.818501 -0.106640 0.845127 0.523822 -0.935152 -0.264239 0.235940 0.337813 -0.464692 0.818501 -0.193799 0.829490 0.523822 -0.902668 -0.359892 0.235940 0.384229 -0.427112 0.818501 -0.279668 0.804610 0.523822 -0.859978 -0.452516 0.235940 0.426877 -0.384490 0.818501 -0.362457 0.770867 0.523822 -0.807814 -0.540156 0.235940 0.464824 -0.337632 0.818501 -0.441253 0.728634 0.523822 -0.746753 -0.621845 0.235940 0.497650 -0.287056 0.818501 -0.514510 0.678889 0.523822 -0.678163 -0.696008 0.235940 0.524761 -0.233843 0.818501 -0.582829 0.621226 0.523822 -0.601481 -0.763251 0.235940 0.546379 -0.177556 0.818501 -0.644728 0.556720 0.523822 -0.518175 -0.822087 0.235940 0.561979 -0.119314 0.818501 -0.699039 0.486781 0.523822 -0.430032 -0.871438 0.235940 0.571329 -0.060329 0.818501 -0.746207 0.410836 0.523822 -0.336330 -0.911709 0.235940 0.574506 -0.000117 0.818501 -0.785156 0.330365 0.523822 -0.238924 -0.941938 0.235940 0.571354 0.060096 0.818501 -0.815456 0.246256 0.523822 -0.138887 -0.961791 0.235940 0.561909 0.119647 0.818501 -0.836615 0.160270 0.523822 -0.038290 -0.971013 0.235940 0.546452 0.177334 0.818501 -0.848805 0.071704 0.523822 0.063690 -0.969678 0.235940 0.524856 0.233629 0.818501 -0.851645 -0.017651 0.523822 0.164968 -0.957663 0.235940 0.497480 0.287351 0.818501 -0.845105 -0.106813 0.523822 0.264430 -0.935099 0.235940 0.464623 0.337908 0.818501 -0.829450 -0.193968 0.523822 0.360076 -0.902595 0.235940 0.427034 0.384316 0.818501 -0.804553 -0.279832 0.523822 0.452691 -0.859885 0.235940 0.384403 0.426956 0.818501 -0.770793 -0.362614 0.523822 0.540320 -0.807704 0.235940 0.337538 0.464892 0.818501 -0.728985 -0.440673 0.523822 0.621251 -0.747248 0.235940 0.287452 0.497421 0.818501 -0.678784 -0.514648 0.523822 0.696146 -0.678021 0.235940 0.233736 0.524809 0.818501 -0.621107 -0.582955 0.523822 0.763374 -0.601326 0.235940 0.177445 0.546416 0.818501 -0.556588 -0.644841 0.523822 0.822193 -0.518007 0.235940 0.119199 0.562004 0.818501 -0.486638 -0.699138 0.523822 0.871526 -0.429854 0.235940 0.060212 0.571342 0.818501 -0.410684 -0.746291 0.523822 0.911778 -0.336145 0.235940 0.000000 0.574506 0.818501 -0.330205 -0.785223 0.523822 0.941987 -0.238733 0.235940 -0.060212 0.571342 0.818501 -0.246905 -0.815260 0.523822 0.961681 -0.139653 0.235940 -0.119199 0.562004 0.818501 -0.160100 -0.836647 0.523822 0.971021 -0.038092 0.235940 -0.177445 0.546416 0.818501 -0.071532 -0.848819 0.523822 0.969665 0.063887 0.235940 -0.233736 0.524809 0.818501 0.017825 -0.851642 0.523822 0.957629 0.165163 0.235940 -0.287452 0.497421 0.818501 0.106140 -0.845190 0.523822 0.935309 0.263685 0.235940 -0.337538 0.464892 0.818501 0.194137 -0.829411 0.523822 0.902522 0.360260 0.235940 -0.384403 0.426956 0.818501 0.279996 -0.804496 0.523822 0.859793 0.452866 0.235940 -0.427034 0.384316 0.818501 0.362000 -0.771082 0.523822 0.808134 0.539677 0.235940 -0.464623 0.337908 0.818501 0.440821 -0.728895 0.523822 0.747122 0.621403 0.235940 -0.497480 0.287351 0.818501 0.514787 -0.678679 0.523822 0.677879 0.696284 0.235940 -0.524856 0.233629 0.818501 0.583082 -0.620988 0.523822 0.601170 0.763496 0.235940 -0.546452 0.177334 0.818501 0.644398 -0.557102 0.523822 0.518662 0.821780 0.235940 -0.561909 0.119647 0.818501 0.699237 -0.486496 0.523822 0.429677 0.871614 0.235940 -0.571354 0.060096 0.818501 -0.423256 0.232559 0.875654 0.101037 0.972582 -0.209464 -0.900358 -0.000183 -0.435149 -0.445299 0.186918 0.875654 -0.001453 0.977815 -0.209464 -0.895381 -0.094546 -0.435149 -0.462298 0.139680 0.875654 -0.102955 0.972381 -0.209464 -0.880728 -0.186987 -0.435149 -0.474391 0.090459 0.875654 -0.204300 0.956235 -0.209464 -0.856279 -0.278264 -0.435149 -0.481259 0.040241 0.875654 -0.303395 0.929557 -0.209464 -0.822399 -0.366476 -0.435149 -0.482836 -0.009937 0.875654 -0.398256 0.893038 -0.209464 -0.779911 -0.449871 -0.435149 -0.479136 -0.060487 0.875654 -0.489659 0.846380 -0.209464 -0.728466 -0.529134 -0.435149 -0.470157 -0.110371 0.875654 -0.575669 0.790399 -0.209464 -0.668997 -0.602568 -0.435149 -0.456000 -0.159039 0.875654 -0.655338 0.725711 -0.209464 -0.602159 -0.669365 -0.435149 -0.437026 -0.205518 0.875654 -0.727135 0.653758 -0.209464 -0.529417 -0.728260 -0.435149 -0.413079 -0.250190 0.875654 -0.791649 0.573948 -0.209464 -0.450174 -0.779736 -0.435149 -0.384583 -0.292106 0.875654 -0.847443 0.487817 -0.209464 -0.365973 -0.822623 -0.435149 -0.352181 -0.330452 0.875654 -0.893506 0.397206 -0.209464 -0.278597 -0.856171 -0.435149 -0.315607 -0.365543 0.875654 -0.930215 0.301372 -0.209464 -0.187330 -0.880655 -0.435149 -0.275557 -0.396608 0.875654 -0.956678 0.202219 -0.209464 -0.093999 -0.895438 -0.435149 -0.232817 -0.423114 0.875654 -0.972520 0.101631 -0.209464 -0.000367 -0.900358 -0.435149 -0.187190 -0.445185 0.875654 -0.977816 -0.000856 -0.209464 0.093999 -0.895438 -0.435149 -0.139500 -0.462352 0.875654 -0.972341 -0.103333 -0.209464 0.187330 -0.880655 -0.435149 -0.090274 -0.474426 0.875654 -0.956156 -0.204672 -0.209464 0.278597 -0.856171 -0.435149 -0.040535 -0.481234 0.875654 -0.929742 -0.302827 -0.209464 0.365973 -0.822623 -0.435149 0.010125 -0.482832 0.875654 -0.892883 -0.398603 -0.209464 0.450174 -0.779736 -0.435149 0.060674 -0.479112 0.875654 -0.846189 -0.489988 -0.209464 0.529417 -0.728260 -0.435149 0.110084 -0.470225 0.875654 -0.790750 -0.575186 -0.209464 0.602159 -0.669365 -0.435149 0.158760 -0.456097 0.875654 -0.726111 -0.654895 -0.209464 0.668997 -0.602568 -0.435149 0.205688 -0.436946 0.875654 -0.653475 -0.727390 -0.209464 0.728466 -0.529134 -0.435149 0.250351 -0.412982 0.875654 -0.573640 -0.791872 -0.209464 0.779911 -0.449871 -0.435149 0.291871 -0.384761 0.875654 -0.488335 -0.847145 -0.209464 0.822399 -0.366476 -0.435149 0.330589 -0.352052 0.875654 -0.396858 -0.893660 -0.209464 0.856279 -0.278264 -0.435149 0.365666 -0.315465 0.875654 -0.301010 -0.930332 -0.209464 0.880728 -0.186987 -0.435149 0.396439 -0.275800 0.875654 -0.202804 -0.956554 -0.209464 0.895381 -0.094546 -0.435149 0.423162 -0.232731 0.875654 -0.101433 -0.972541 -0.209464 0.900358 -0.000183 -0.435149 0.445223 -0.187099 0.875654 0.001055 -0.977816 -0.209464 0.895419 0.094182 -0.435149 0.462380 -0.139406 0.875654 0.103531 -0.972320 -0.209464 0.880617 0.187509 -0.435149 0.474354 -0.090652 0.875654 0.203911 -0.956319 -0.209464 0.856393 0.277915 -0.435149 0.481243 -0.040437 0.875654 0.303017 -0.929680 -0.209464 0.822549 0.366141 -0.435149 0.482830 0.010223 0.875654 0.398785 -0.892802 -0.209464 0.779644 0.450333 -0.435149 0.479100 0.060771 0.875654 0.490161 -0.846089 -0.209464 0.728152 0.529565 -0.435149 0.470202 0.110180 0.875654 0.575347 -0.790633 -0.209464 0.669243 0.602296 -0.435149 0.456065 0.158853 0.875654 0.655042 -0.725978 -0.209464 0.602432 0.669120 -0.435149 0.436904 0.205777 0.875654 0.727523 -0.653327 -0.209464 0.528985 0.728574 -0.435149 0.413181 0.250022 0.875654 0.791415 -0.574271 -0.209464 0.450492 0.779553 -0.435149 0.384702 0.291949 0.875654 0.847244 -0.488162 -0.209464 0.366308 0.822474 -0.435149 0.351985 0.330661 0.875654 0.893741 -0.396676 -0.209464 0.278090 0.856336 -0.435149 0.315390 0.365730 0.875654 0.930393 -0.300821 -0.209464 0.186808 0.880766 -0.435149 0.275719 0.396495 0.875654 0.956595 -0.202609 -0.209464 0.094364 0.895400 -0.435149 0.232645 0.423209 0.875654 0.972562 -0.101235 -0.209464 0.000000 0.900359 -0.435149 0.187008 0.445261 0.875654 0.977816 0.001254 -0.209464 -0.094364 0.895400 -0.435149 0.139774 0.462269 0.875654 0.972402 0.102757 -0.209464 -0.186808 0.880766 -0.435149 0.090555 0.474373 0.875654 0.956277 0.204105 -0.209464 -0.278090 0.856336 -0.435149 0.040339 0.481251 0.875654 0.929619 0.303206 -0.209464 -0.366308 0.822474 -0.435149 -0.010322 0.482828 0.875654 0.892721 0.398967 -0.209464 -0.450492 0.779553 -0.435149 -0.060390 0.479148 0.875654 0.846479 0.489487 -0.209464 -0.528985 0.728574 -0.435149 -0.110275 0.470180 0.875654 0.790516 0.575508 -0.209464 -0.602432 0.669120 -0.435149 -0.158946 0.456033 0.875654 0.725845 0.655190 -0.209464 -0.669243 0.602296 -0.435149 -0.205429 0.437068 0.875654 0.653906 0.727002 -0.209464 -0.728152 0.529565 -0.435149 -0.250106 0.413130 0.875654 0.574109 0.791532 -0.209464 -0.779644 0.450333 -0.435149 -0.292027 0.384642 0.875654 0.487989 0.847344 -0.209464 -0.822549 0.366141 -0.435149 -0.330732 0.351917 0.875654 0.396494 0.893822 -0.209464 -0.856393 0.277915 -0.435149 -0.365479 0.315682 0.875654 0.301562 0.930153 -0.209464 -0.880617 0.187509 -0.435149 -0.396552 0.275638 0.875654 0.202414 0.956636 -0.209464 -0.895419 0.094182 -0.435149 0.226933 0.047824 -0.972735 0.011059 -0.998856 -0.046529 -0.973848 -0.000198 -0.227202 0.220671 0.071345 -0.972735 0.115685 -0.992196 -0.046529 -0.968463 -0.102263 -0.227202 0.212072 0.093868 -0.972735 0.218062 -0.974825 -0.046529 -0.952614 -0.202250 -0.227202 0.201066 0.115578 -0.972735 0.319030 -0.946602 -0.046529 -0.926171 -0.300977 -0.227202 0.187845 0.136014 -0.972735 0.416484 -0.907952 -0.046529 -0.889525 -0.396388 -0.227202 0.172710 0.154780 -0.972735 0.508490 -0.859810 -0.046529 -0.843569 -0.486591 -0.227202 0.155537 0.172029 -0.972735 0.595804 -0.801781 -0.046529 -0.787925 -0.572323 -0.227202 0.136650 0.187383 -0.972735 0.676555 -0.734921 -0.046529 -0.723602 -0.651751 -0.227202 0.116259 0.200673 -0.972735 0.749854 -0.659965 -0.046529 -0.651309 -0.724000 -0.227202 0.094798 0.211658 -0.972735 0.814315 -0.578555 -0.046529 -0.572629 -0.787702 -0.227202 0.072093 0.220428 -0.972735 0.870467 -0.490023 -0.046529 -0.486919 -0.843380 -0.227202 0.048593 0.226769 -0.972735 0.917031 -0.396093 -0.046529 -0.395845 -0.889768 -0.227202 0.024789 0.230589 -0.972735 0.953195 -0.298753 -0.046529 -0.301337 -0.926054 -0.227202 0.000485 0.231917 -0.972735 0.979257 -0.197206 -0.046529 -0.202620 -0.952536 -0.227202 -0.023824 0.230691 -0.972735 0.994533 -0.093487 -0.046529 -0.101672 -0.968526 -0.227202 -0.047686 0.226962 -0.972735 0.998862 0.010448 -0.046529 -0.000397 -0.973848 -0.227202 -0.071210 0.220714 -0.972735 0.992266 0.115079 -0.046529 0.101672 -0.968526 -0.227202 -0.093951 0.212035 -0.972735 0.974740 0.218442 -0.046529 0.202620 -0.952536 -0.227202 -0.115656 0.201021 -0.972735 0.946478 0.319398 -0.046529 0.301337 -0.926054 -0.227202 -0.135900 0.187928 -0.972735 0.908206 0.415929 -0.046529 0.395845 -0.889768 -0.227202 -0.154847 0.172650 -0.972735 0.859612 0.508825 -0.046529 0.486919 -0.843380 -0.227202 -0.172089 0.155470 -0.972735 0.801549 0.596116 -0.046529 0.572629 -0.787702 -0.227202 -0.187299 0.136765 -0.972735 0.735334 0.676106 -0.046529 0.651309 -0.724000 -0.227202 -0.200602 0.116381 -0.972735 0.660423 0.749451 -0.046529 0.723602 -0.651751 -0.227202 -0.211695 0.094716 -0.972735 0.578238 0.814540 -0.046529 0.787925 -0.572323 -0.227202 -0.220456 0.072007 -0.972735 0.489684 0.870658 -0.046529 0.843569 -0.486591 -0.227202 -0.226740 0.048732 -0.972735 0.396653 0.916789 -0.046529 0.889525 -0.396388 -0.227202 -0.230598 0.024700 -0.972735 0.298382 0.953312 -0.046529 0.926171 -0.300977 -0.227202 -0.231917 0.000395 -0.972735 0.196825 0.979334 -0.046529 0.952614 -0.202250 -0.227202 -0.230705 -0.023683 -0.972735 0.094095 0.994475 -0.046529 0.968463 -0.102263 -0.227202 -0.226952 -0.047732 -0.972735 -0.010652 0.998860 -0.046529 0.973848 -0.000198 -0.227202 -0.220700 -0.071255 -0.972735 -0.115281 0.992243 -0.046529 0.968505 0.101869 -0.227202 -0.212016 -0.093994 -0.972735 -0.218640 0.974696 -0.046529 0.952494 0.202814 -0.227202 -0.201113 -0.115496 -0.972735 -0.318645 0.946732 -0.046529 0.926293 0.300599 -0.227202 -0.187900 -0.135938 -0.972735 -0.416114 0.908121 -0.046529 0.889687 0.396026 -0.227202 -0.172618 -0.154882 -0.972735 -0.509000 0.859508 -0.046529 0.843281 0.487090 -0.227202 -0.155435 -0.172121 -0.972735 -0.596279 0.801428 -0.046529 0.787586 0.572790 -0.227202 -0.136727 -0.187327 -0.972735 -0.676256 0.735196 -0.046529 0.723867 0.651456 -0.227202 -0.116340 -0.200625 -0.972735 -0.749585 0.660271 -0.046529 0.651604 0.723735 -0.227202 -0.094673 -0.211714 -0.972735 -0.814658 0.578072 -0.046529 0.572162 0.788042 -0.227202 -0.072183 -0.220398 -0.972735 -0.870267 0.490377 -0.046529 0.487262 0.843181 -0.227202 -0.048686 -0.226750 -0.972735 -0.916869 0.396466 -0.046529 0.396207 0.889606 -0.227202 -0.024653 -0.230603 -0.972735 -0.953372 0.298188 -0.046529 0.300788 0.926232 -0.227202 -0.000348 -0.231917 -0.972735 -0.979374 0.196626 -0.046529 0.202056 0.952656 -0.227202 0.023730 -0.230700 -0.972735 -0.994495 0.093892 -0.046529 0.102066 0.968484 -0.227202 0.047778 -0.226943 -0.972735 -0.998858 -0.010855 -0.046529 0.000000 0.973848 -0.227202 0.071300 -0.220685 -0.972735 -0.992219 -0.115483 -0.046529 -0.102066 0.968484 -0.227202 0.093825 -0.212091 -0.972735 -0.974869 -0.217864 -0.046529 -0.202056 0.952656 -0.227202 0.115537 -0.201089 -0.972735 -0.946667 -0.318837 -0.046529 -0.300788 0.926232 -0.227202 0.135976 -0.187873 -0.972735 -0.908037 -0.416299 -0.046529 -0.396207 0.889606 -0.227202 0.154918 -0.172587 -0.972735 -0.859405 -0.509175 -0.046529 -0.487262 0.843181 -0.227202 0.171997 -0.155572 -0.972735 -0.801902 -0.595641 -0.046529 -0.572162 0.788042 -0.227202 0.187355 -0.136689 -0.972735 -0.735058 -0.676405 -0.046529 -0.651604 0.723735 -0.227202 0.200649 -0.116300 -0.972735 -0.660118 -0.749720 -0.046529 -0.723867 0.651456 -0.227202 0.211638 -0.094841 -0.972735 -0.578721 -0.814197 -0.046529 -0.787586 0.572790 -0.227202 0.220413 -0.072138 -0.972735 -0.490200 -0.870367 -0.046529 -0.843281 0.487090 -0.227202 0.226759 -0.048640 -0.972735 -0.396280 -0.916950 -0.046529 -0.889687 0.396026 -0.227202 0.230608 -0.024606 -0.972735 -0.297994 -0.953433 -0.046529 -0.926293 0.300599 -0.227202 0.231917 -0.000533 -0.972735 -0.197406 -0.979217 -0.046529 -0.952494 0.202814 -0.227202 0.230695 0.023777 -0.972735 -0.093689 -0.994514 -0.046529 -0.968505 0.101869 -0.227202 -0.137916 -0.555727 -0.819845 0.092429 -0.831365 0.547987 -0.986122 -0.000201 0.166024 -0.078913 -0.567121 -0.819845 0.179053 -0.817099 0.547987 -0.980670 -0.103552 0.166024 -0.019612 -0.572249 -0.819845 0.262910 -0.794096 0.547987 -0.964621 -0.204799 0.166024 0.040472 -0.571153 -0.819845 0.344689 -0.762168 0.547987 -0.937844 -0.304770 0.166024 0.100110 -0.563766 -0.819845 0.422672 -0.721844 0.547987 -0.900737 -0.401384 0.166024 0.158095 -0.550327 -0.819845 0.495324 -0.674065 0.547987 -0.854201 -0.492723 0.166024 0.214903 -0.530727 -0.819845 0.563243 -0.618439 0.547987 -0.797856 -0.579536 0.166024 0.269343 -0.505280 -0.819845 0.624958 -0.556001 0.547987 -0.732722 -0.659965 0.166024 0.320817 -0.474268 -0.819845 0.679789 -0.487439 0.547987 -0.659518 -0.733125 0.166024 0.368318 -0.438401 -0.819845 0.726718 -0.414235 0.547987 -0.579846 -0.797630 0.166024 0.412237 -0.397384 -0.819845 0.766131 -0.335788 0.547987 -0.493056 -0.854010 0.166024 0.451616 -0.351990 -0.819845 0.797104 -0.253643 0.547987 -0.400834 -0.900982 0.166024 0.485716 -0.303205 -0.819845 0.819129 -0.169523 0.547987 -0.305135 -0.937725 0.166024 0.514820 -0.250629 -0.819845 0.832385 -0.082739 0.547987 -0.205174 -0.964541 0.166024 0.538252 -0.195291 -0.819845 0.836472 0.004957 0.547987 -0.102953 -0.980733 0.166024 0.555643 -0.138256 -0.819845 0.831421 0.091921 0.547987 -0.000402 -0.986122 0.166024 0.567073 -0.079259 -0.819845 0.817208 0.178553 0.547987 0.102953 -0.980733 0.166024 0.572257 -0.019389 -0.819845 0.793994 0.263219 0.547987 0.205174 -0.964541 0.166024 0.571137 0.040694 -0.819845 0.762033 0.344986 0.547987 0.305135 -0.937725 0.166024 0.563827 0.099765 -0.819845 0.722102 0.422230 0.547987 0.400834 -0.900982 0.166024 0.550265 0.158309 -0.819845 0.673873 0.495587 0.547987 0.493056 -0.854010 0.166024 0.530643 0.215109 -0.819845 0.618220 0.563484 0.547987 0.579846 -0.797630 0.166024 0.505445 0.269034 -0.819845 0.556383 0.624618 0.547987 0.659518 -0.733125 0.166024 0.474464 0.320527 -0.819845 0.487854 0.679491 0.547987 0.732722 -0.659965 0.166024 0.438258 0.368489 -0.819845 0.413952 0.726880 0.547987 0.797856 -0.579536 0.166024 0.397224 0.412392 -0.819845 0.335490 0.766261 0.547987 0.854201 -0.492723 0.166024 0.352266 0.451400 -0.819845 0.254130 0.796949 0.547987 0.900737 -0.401384 0.166024 0.303016 0.485834 -0.819845 0.169204 0.819195 0.547987 0.937844 -0.304770 0.166024 0.250428 0.514917 -0.819845 0.082415 0.832417 0.547987 0.964621 -0.204799 0.166024 0.195620 0.538132 -0.819845 -0.004446 0.836475 0.547987 0.980670 -0.103552 0.166024 0.138143 0.555671 -0.819845 -0.092090 0.831402 0.547987 0.986122 -0.000201 0.166024 0.079144 0.567089 -0.819845 -0.178720 0.817172 0.547987 0.980712 0.103153 0.166024 0.019273 0.572261 -0.819845 -0.263381 0.793940 0.547987 0.964499 0.205370 0.166024 -0.040239 0.571169 -0.819845 -0.344379 0.762308 0.547987 0.937968 0.304388 0.166024 -0.099880 0.563806 -0.819845 -0.422378 0.722016 0.547987 0.900900 0.401017 0.166024 -0.158421 0.550233 -0.819845 -0.495724 0.673772 0.547987 0.853909 0.493230 0.166024 -0.215217 0.530599 -0.819845 -0.563610 0.618105 0.547987 0.797512 0.580009 0.166024 -0.269137 0.505390 -0.819845 -0.624732 0.556256 0.547987 0.732991 0.659667 0.166024 -0.320623 0.474399 -0.819845 -0.679591 0.487716 0.547987 0.659816 0.732857 0.166024 -0.368578 0.438183 -0.819845 -0.726964 0.413804 0.547987 0.579374 0.797974 0.166024 -0.412075 0.397552 -0.819845 -0.765994 0.336100 0.547987 0.493403 0.853809 0.166024 -0.451472 0.352174 -0.819845 -0.797001 0.253967 0.547987 0.401201 0.900818 0.166024 -0.485896 0.302917 -0.819845 -0.819229 0.169037 0.547987 0.304579 0.937906 0.166024 -0.514968 0.250323 -0.819845 -0.832434 0.082245 0.547987 0.204602 0.964663 0.166024 -0.538172 0.195511 -0.819845 -0.836474 -0.004616 0.547987 0.103353 0.980691 0.166024 -0.555699 0.138030 -0.819845 -0.831383 -0.092259 0.547987 0.000000 0.986122 0.166024 -0.567105 0.079028 -0.819845 -0.817135 -0.178886 0.547987 -0.103353 0.980691 0.166024 -0.572245 0.019728 -0.819845 -0.794149 -0.262749 0.547987 -0.204602 0.964663 0.166024 -0.571161 -0.040356 -0.819845 -0.762238 -0.344534 0.547987 -0.304579 0.937906 0.166024 -0.563786 -0.099995 -0.819845 -0.721930 -0.422525 0.547987 -0.401201 0.900818 0.166024 -0.550201 -0.158533 -0.819845 -0.673671 -0.495861 0.547987 -0.493403 0.853809 0.166024 -0.530770 -0.214795 -0.819845 -0.618554 -0.563117 0.547987 -0.579374 0.797974 0.166024 -0.505335 -0.269240 -0.819845 -0.556129 -0.624845 0.547987 -0.659816 0.732857 0.166024 -0.474334 -0.320720 -0.819845 -0.487578 -0.679690 0.547987 -0.732991 0.659667 0.166024 -0.438476 -0.368229 -0.819845 -0.414383 -0.726634 0.547987 -0.797512 0.580009 0.166024 -0.397468 -0.412156 -0.819845 -0.335944 -0.766062 0.547987 -0.853909 0.493230 0.166024 -0.352082 -0.451544 -0.819845 -0.253805 -0.797053 0.547987 -0.900900 0.401017 0.166024 -0.302818 -0.485958 -0.819845 -0.168870 -0.819264 0.547987 -0.937968 0.304388 0.166024 -0.250733 -0.514768 -0.819845 -0.082908 -0.832368 0.547987 -0.964499 0.205370 0.166024 -0.195401 -0.538212 -0.819845 0.004787 -0.836473 0.547987 -0.980712 0.103153 0.166024 0.082160 -0.951523 0.296402 0.253556 0.307578 0.917118 -0.963825 -0.000196 0.266535 0.181434 -0.937671 0.296402 0.219923 0.332459 0.917118 -0.958496 -0.101211 0.266535 0.277796 -0.913770 0.296402 0.184222 0.353493 0.917118 -0.942811 -0.200168 0.266535 0.372036 -0.879622 0.296402 0.146158 0.370854 0.917118 -0.916639 -0.297879 0.266535 0.462178 -0.835786 0.296402 0.106485 0.384130 0.917118 -0.880371 -0.392309 0.266535 0.546446 -0.783290 0.296402 0.066032 0.393109 0.917118 -0.834887 -0.481583 0.266535 0.625530 -0.721705 0.296402 0.024468 0.397865 0.917118 -0.779816 -0.566433 0.266535 0.697725 -0.652170 0.296402 -0.017366 0.398238 0.917118 -0.716155 -0.645043 0.266535 0.762235 -0.575451 0.296402 -0.059008 0.394225 0.917118 -0.644606 -0.716549 0.266535 0.817855 -0.493213 0.296402 -0.099615 0.385969 0.917118 -0.566736 -0.779596 0.266535 0.865043 -0.404779 0.296402 -0.139519 0.373403 0.917118 -0.481907 -0.834700 0.266535 0.902703 -0.311887 0.296402 -0.177886 0.356724 0.917118 -0.391771 -0.880610 0.266535 0.930203 -0.216490 0.296402 -0.213957 0.336329 0.917118 -0.298236 -0.916523 0.266535 0.947770 -0.117806 0.296402 -0.248028 0.312053 0.917118 -0.200535 -0.942733 0.266535 0.954897 -0.017824 0.296402 -0.279368 0.284339 0.917118 -0.100625 -0.958558 0.266535 0.951573 0.081579 0.296402 -0.307423 0.253744 0.917118 -0.000393 -0.963825 0.266535 0.937782 0.180861 0.296402 -0.332324 0.220126 0.917118 0.100625 -0.958558 0.266535 0.913662 0.278152 0.296402 -0.353565 0.184084 0.917118 0.200535 -0.942733 0.266535 0.879477 0.372378 0.296402 -0.370911 0.146014 0.917118 0.298236 -0.916523 0.266535 0.836068 0.461667 0.296402 -0.384065 0.106720 0.917118 0.391771 -0.880610 0.266535 0.783077 0.546750 0.296402 -0.393135 0.065879 0.917118 0.481907 -0.834700 0.266535 0.721461 0.625811 0.296402 -0.397874 0.024313 0.917118 0.566736 -0.779596 0.266535 0.652596 0.697327 0.296402 -0.398249 -0.017123 0.917118 0.644606 -0.716549 0.266535 0.575917 0.761883 0.296402 -0.394261 -0.058768 0.917118 0.716155 -0.645043 0.266535 0.492894 0.818047 0.296402 -0.385930 -0.099765 0.917118 0.779816 -0.566433 0.266535 0.404443 0.865201 0.296402 -0.373348 -0.139664 0.917118 0.834887 -0.481583 0.266535 0.312439 0.902512 0.296402 -0.356832 -0.177668 0.917118 0.880371 -0.392309 0.266535 0.216128 0.930287 0.296402 -0.336246 -0.214088 0.917118 0.916639 -0.297879 0.266535 0.117437 0.947816 0.296402 -0.311956 -0.248150 0.917118 0.942811 -0.200168 0.266535 0.018407 0.954886 0.296402 -0.284510 -0.279194 0.917118 0.958496 -0.101211 0.266535 -0.081773 0.951556 0.296402 -0.253681 -0.307475 0.917118 0.963825 -0.000196 0.266535 -0.181052 0.937745 0.296402 -0.220059 -0.332369 0.917118 0.958538 0.100821 0.266535 -0.278338 0.913605 0.296402 -0.184012 -0.353602 0.917118 0.942692 0.200727 0.266535 -0.371678 0.879774 0.296402 -0.146309 -0.370795 0.917118 0.916760 0.297506 0.266535 -0.461837 0.835974 0.296402 -0.106642 -0.384087 0.917118 0.880531 0.391950 0.266535 -0.546910 0.782966 0.296402 -0.065799 -0.393148 0.917118 0.834602 0.482077 0.266535 -0.625958 0.721334 0.296402 -0.024232 -0.397879 0.917118 0.779480 0.566895 0.266535 -0.697459 0.652454 0.296402 0.017204 -0.398245 0.917118 0.716418 0.644752 0.266535 -0.762000 0.575762 0.296402 0.058848 -0.394249 0.917118 0.644898 0.716286 0.266535 -0.818147 0.492728 0.296402 0.099844 -0.385910 0.917118 0.566274 0.779931 0.266535 -0.864878 0.405132 0.296402 0.139367 -0.373460 0.917118 0.482247 0.834504 0.266535 -0.902576 0.312255 0.296402 0.177740 -0.356796 0.917118 0.392130 0.880451 0.266535 -0.930331 0.215939 0.296402 0.214156 -0.336203 0.917118 0.297692 0.916700 0.266535 -0.947839 0.117244 0.296402 0.248213 -0.311906 0.917118 0.199976 0.942851 0.266535 -0.954890 0.018213 0.296402 0.279252 -0.284453 0.917118 0.101016 0.958517 0.266535 -0.951539 -0.081967 0.296402 0.307527 -0.253619 0.917118 0.000000 0.963825 0.266535 -0.937708 -0.181243 0.296402 0.332414 -0.219991 0.917118 -0.101016 0.958517 0.266535 -0.913826 -0.277610 0.296402 0.353456 -0.184293 0.917118 -0.199976 0.942851 0.266535 -0.879698 -0.371857 0.296402 0.370824 -0.146234 0.917118 -0.297692 0.916700 0.266535 -0.835880 -0.462007 0.296402 0.384109 -0.106563 0.917118 -0.392130 0.880451 0.266535 -0.782855 -0.547069 0.296402 0.393162 -0.065719 0.917118 -0.482247 0.834504 0.266535 -0.721832 -0.625383 0.296402 0.397860 -0.024549 0.917118 -0.566274 0.779931 0.266535 -0.652312 -0.697592 0.296402 0.398242 0.017285 0.917118 -0.644898 0.716286 0.266535 -0.575607 -0.762117 0.296402 0.394237 0.058928 0.917118 -0.716418 0.644752 0.266535 -0.493379 -0.817755 0.296402 0.385989 0.099537 0.917118 -0.779480 0.566895 0.266535 -0.404955 -0.864961 0.296402 0.373431 0.139443 0.917118 -0.834602 0.482077 0.266535 -0.312071 -0.902639 0.296402 0.356760 0.177813 0.917118 -0.880531 0.391950 0.266535 -0.215749 -0.930375 0.296402 0.336159 0.214225 0.917118 -0.916760 0.297506 0.266535 -0.117999 -0.947746 0.296402 0.312103 0.247965 0.917118 -0.942692 0.200727 0.266535 -0.018018 -0.954893 0.296402 0.284396 0.279310 0.917118 -0.958538 0.100821 0.266535 -0.048678 -0.995909 -0.076127 0.538105 -0.090359 0.838020 -0.841471 -0.000171 0.540302 0.055969 -0.995526 -0.076127 0.544612 -0.033464 0.838020 -0.836819 -0.088363 0.540302 0.159015 -0.984337 -0.076127 0.545143 0.023254 0.838020 -0.823124 -0.174758 0.540302 0.261304 -0.962250 -0.076127 0.539704 0.080261 0.838020 -0.800275 -0.260064 0.540302 0.360716 -0.929564 -0.076127 0.528319 0.136384 0.838020 -0.768611 -0.342507 0.540302 0.455268 -0.887094 -0.076127 0.511306 0.190493 0.838020 -0.728901 -0.420448 0.540302 0.545734 -0.834493 -0.076127 0.488525 0.243033 0.838020 -0.680821 -0.494526 0.540302 0.630189 -0.772701 -0.076127 0.460363 0.292895 0.838020 -0.625242 -0.563157 0.540302 0.707703 -0.702397 -0.076127 0.427130 0.339531 0.838020 -0.562775 -0.625586 0.540302 0.776797 -0.625133 -0.076127 0.389575 0.382038 0.838020 -0.494791 -0.680629 0.540302 0.838037 -0.540276 -0.076127 0.347389 0.420765 0.838020 -0.420731 -0.728738 0.540302 0.890047 -0.449468 -0.076127 0.301377 0.454856 0.838020 -0.342037 -0.768820 0.540302 0.931898 -0.354642 -0.076127 0.252528 0.483685 0.838020 -0.260376 -0.800174 0.540302 0.963935 -0.255019 -0.076127 0.200444 0.507488 0.838020 -0.175078 -0.823056 0.540302 0.985354 -0.152587 -0.076127 0.146152 0.525701 0.838020 -0.087851 -0.836872 0.540302 0.995879 -0.049286 -0.076127 0.090688 0.538050 0.838020 -0.000343 -0.841471 0.540302 0.995560 0.055361 -0.076127 0.033797 0.544591 0.838020 0.087851 -0.836872 0.540302 0.984275 0.159398 -0.076127 -0.023466 0.545134 0.838020 0.175078 -0.823056 0.540302 0.962148 0.261679 -0.076127 -0.080471 0.539672 0.838020 0.260376 -0.800174 0.540302 0.929784 0.360148 -0.076127 -0.136061 0.528403 0.838020 0.342037 -0.768820 0.540302 0.886917 0.455613 -0.076127 -0.190692 0.511232 0.838020 0.420731 -0.728738 0.540302 0.834281 0.546059 -0.076127 -0.243223 0.488431 0.838020 0.494791 -0.680629 0.540302 0.773085 0.629717 -0.076127 -0.292614 0.460542 0.838020 0.562775 -0.625586 0.540302 0.702829 0.707274 -0.076127 -0.339270 0.427338 0.838020 0.625242 -0.563157 0.540302 0.624831 0.777040 -0.076127 -0.382190 0.389426 0.838020 0.680821 -0.494526 0.540302 0.539950 0.838247 -0.076127 -0.420900 0.347225 0.838020 0.728901 -0.420448 0.540302 0.450012 0.889772 -0.076127 -0.454672 0.301654 0.838020 0.768611 -0.342507 0.540302 0.354279 0.932036 -0.076127 -0.483783 0.252340 0.838020 0.800275 -0.260064 0.540302 0.254644 0.964034 -0.076127 -0.507566 0.200247 0.838020 0.823124 -0.174758 0.540302 0.153189 0.985260 -0.076127 -0.525612 0.146473 0.838020 0.836819 -0.088363 0.540302 0.049083 0.995889 -0.076127 -0.538068 0.090578 0.838020 0.841471 -0.000171 0.540302 -0.055563 0.995549 -0.076127 -0.544598 0.033686 0.838020 0.836855 0.088022 0.540302 -0.159598 0.984242 -0.076127 -0.545129 -0.023577 0.838020 0.823020 0.175245 0.540302 -0.260913 0.962356 -0.076127 -0.539736 -0.080041 0.838020 0.800381 0.259738 0.540302 -0.360337 0.929711 -0.076127 -0.528375 -0.136169 0.838020 0.768750 0.342194 0.540302 -0.455793 0.886824 -0.076127 -0.511193 -0.190796 0.838020 0.728652 0.420879 0.540302 -0.546228 0.834170 -0.076127 -0.488381 -0.243322 0.838020 0.680528 0.494929 0.540302 -0.629874 0.772957 -0.076127 -0.460483 -0.292708 0.838020 0.625471 0.562903 0.540302 -0.707417 0.702685 -0.076127 -0.427269 -0.339357 0.838020 0.563030 0.625356 0.540302 -0.777167 0.624673 -0.076127 -0.389348 -0.382269 0.838020 0.494387 0.680922 0.540302 -0.837817 0.540618 -0.076127 -0.347560 -0.420623 0.838020 0.421028 0.728566 0.540302 -0.889863 0.449831 -0.076127 -0.301562 -0.454733 0.838020 0.342350 0.768681 0.540302 -0.932108 0.354089 -0.076127 -0.252242 -0.483835 0.838020 0.259901 0.800328 0.540302 -0.964086 0.254448 -0.076127 -0.200143 -0.507607 0.838020 0.174590 0.823160 0.540302 -0.985291 0.152989 -0.076127 -0.146366 -0.525641 0.838020 0.088192 0.836837 0.540302 -0.995899 0.048880 -0.076127 -0.090469 -0.538087 0.838020 0.000000 0.841471 0.540302 -0.995537 -0.055766 -0.076127 -0.033575 -0.544605 0.838020 -0.088192 0.836837 0.540302 -0.984369 -0.158814 -0.076127 0.023143 -0.545148 0.838020 -0.174590 0.823160 0.540302 -0.962303 -0.261109 -0.076127 0.080151 -0.539720 0.838020 -0.259901 0.800328 0.540302 -0.929637 -0.360527 -0.076127 0.136276 -0.528347 0.838020 -0.342350 0.768681 0.540302 -0.886731 -0.455974 -0.076127 0.190900 -0.511155 0.838020 -0.421028 0.728566 0.540302 -0.834604 -0.545564 -0.076127 0.242933 -0.488575 0.838020 -0.494387 0.680922 0.540302 -0.772829 -0.630032 -0.076127 0.292801 -0.460423 0.838020 -0.563030 0.625356 0.540302 -0.702541 -0.707560 -0.076127 0.339444 -0.427199 0.838020 -0.625471 0.562903 0.540302 -0.625291 -0.776670 -0.076127 0.381959 -0.389653 0.838020 -0.680528 0.494929 0.540302 -0.540447 -0.837927 -0.076127 0.420694 -0.347475 0.838020 -0.728652 0.420879 0.540302 -0.449650 -0.889955 -0.076127 0.454795 -0.301469 0.838020 -0.768750 0.342194 0.540302 -0.353900 -0.932180 -0.076127 0.483886 -0.252143 0.838020 -0.800381 0.259738 0.540302 -0.255215 -0.963883 -0.076127 0.507447 -0.200547 0.838020 -0.823020 0.175245 0.540302 -0.152788 -0.985323 -0.076127 0.525671 -0.146259 0.838020 -0.836855 0.088022 0.540302 -0.199651 0.516492 0.832692 0.120199 0.856292 -0.502311 -0.972467 -0.000198 -0.233041 -0.252683 0.492722 0.832692 0.029791 0.864174 -0.502311 -0.967090 -0.102118 -0.233041 -0.302469 0.463828 0.832692 -0.060082 0.862597 -0.502311 -0.951264 -0.201963 -0.233041 -0.349415 0.429573 0.832692 -0.150157 0.851550 -0.502311 -0.924858 -0.300550 -0.233041 -0.392513 0.390586 0.832692 -0.238579 0.831122 -0.502311 -0.888264 -0.395826 -0.233041 -0.430940 0.347728 0.832692 -0.323571 0.801864 -0.502311 -0.842373 -0.485901 -0.233041 -0.465011 0.300647 0.832692 -0.405830 0.763535 -0.502311 -0.786808 -0.571511 -0.233041 -0.493960 0.250255 0.832692 -0.483619 0.716796 -0.502311 -0.722576 -0.650827 -0.233041 -0.517468 0.197106 0.832692 -0.556081 0.662162 -0.502311 -0.650385 -0.722974 -0.233041 -0.535134 0.142321 0.832692 -0.621817 0.600856 -0.502311 -0.571817 -0.786586 -0.233041 -0.547103 0.085451 0.832692 -0.681366 0.532376 -0.502311 -0.486228 -0.842184 -0.233041 -0.553046 0.027640 0.832692 -0.733410 0.458032 -0.502311 -0.395283 -0.888506 -0.233041 -0.552927 -0.029922 0.832692 -0.776997 0.379420 -0.502311 -0.300910 -0.924741 -0.233041 -0.546746 -0.087708 0.832692 -0.812484 0.295895 -0.502311 -0.202333 -0.951185 -0.233041 -0.534543 -0.144528 0.832692 -0.839021 0.209112 -0.502311 -0.101528 -0.967153 -0.233041 -0.516614 -0.199335 0.832692 -0.856219 0.120722 -0.502311 -0.000396 -0.972467 -0.233041 -0.492877 -0.252382 0.832692 -0.864155 0.030319 -0.502311 0.101528 -0.967153 -0.233041 -0.463711 -0.302649 0.832692 -0.862574 -0.060417 -0.502311 0.202333 -0.951185 -0.233041 -0.429437 -0.349583 0.832692 -0.851491 -0.150489 -0.502311 0.300910 -0.924741 -0.233041 -0.390826 -0.392275 0.832692 -0.831268 -0.238071 -0.502311 0.395283 -0.888506 -0.233041 -0.347560 -0.431076 0.832692 -0.801738 -0.323883 -0.502311 0.486228 -0.842184 -0.233041 -0.300466 -0.465128 0.832692 -0.763377 -0.406127 -0.502311 0.571817 -0.786586 -0.233041 -0.250556 -0.493807 0.832692 -0.717092 -0.483181 -0.502311 0.650385 -0.722974 -0.233041 -0.197422 -0.517348 0.832692 -0.662502 -0.555676 -0.502311 0.722576 -0.650827 -0.233041 -0.142113 -0.535190 0.832692 -0.600614 -0.622051 -0.502311 0.786808 -0.571511 -0.233041 -0.085239 -0.547137 0.832692 -0.532111 -0.681573 -0.502311 0.842373 -0.485901 -0.233041 -0.027978 -0.553029 0.832692 -0.458480 -0.733130 -0.502311 0.888264 -0.395826 -0.233041 0.030137 -0.552916 0.832692 -0.379118 -0.777145 -0.502311 0.924858 -0.300550 -0.233041 0.087921 -0.546712 0.832692 -0.295579 -0.812599 -0.502311 0.951264 -0.201963 -0.233041 0.144201 -0.534631 0.832692 -0.209624 -0.838893 -0.502311 0.967090 -0.102118 -0.233041 0.199440 -0.516573 0.832692 -0.120548 -0.856243 -0.502311 0.972467 -0.000198 -0.233041 0.252482 -0.492825 0.832692 -0.030143 -0.864162 -0.502311 0.967132 0.101725 -0.233041 0.302744 -0.463649 0.832692 0.060593 -0.862562 -0.502311 0.951144 0.202527 -0.233041 0.349240 -0.429715 0.832692 0.149810 -0.851611 -0.502311 0.924980 0.300173 -0.233041 0.392354 -0.390746 0.832692 0.238240 -0.831219 -0.502311 0.888425 0.395465 -0.233041 0.431146 -0.347472 0.832692 0.324046 -0.801672 -0.502311 0.842085 0.486400 -0.233041 0.465189 -0.300371 0.832692 0.406282 -0.763295 -0.502311 0.786469 0.571978 -0.233041 0.493858 -0.250456 0.832692 0.483327 -0.716993 -0.502311 0.722841 0.650532 -0.233041 0.517388 -0.197317 0.832692 0.555811 -0.662388 -0.502311 0.650680 0.722709 -0.233041 0.535219 -0.142004 0.832692 0.622173 -0.600487 -0.502311 0.571351 0.786924 -0.233041 0.547069 -0.085674 0.832692 0.681149 -0.532653 -0.502311 0.486571 0.841986 -0.233041 0.553035 -0.027866 0.832692 0.733224 -0.458331 -0.502311 0.395645 0.888345 -0.233041 0.552910 0.030250 0.832692 0.777222 -0.378959 -0.502311 0.300362 0.924919 -0.233041 0.546694 0.088032 0.832692 0.812659 -0.295414 -0.502311 0.201769 0.951305 -0.233041 0.534601 0.144310 0.832692 0.838936 -0.209453 -0.502311 0.101921 0.967111 -0.233041 0.516532 0.199546 0.832692 0.856268 -0.120373 -0.502311 0.000000 0.972467 -0.233041 0.492774 0.252583 0.832692 0.864168 -0.029967 -0.502311 -0.101921 0.967111 -0.233041 0.463890 0.302374 0.832692 0.862610 0.059906 -0.502311 -0.201769 0.951305 -0.233041 0.429644 0.349328 0.832692 0.851580 0.149984 -0.502311 -0.300362 0.924919 -0.233041 0.390666 0.392434 0.832692 0.831171 0.238410 -0.502311 -0.395645 0.888345 -0.233041 0.347384 0.431217 0.832692 0.801606 0.324209 -0.502311 -0.486571 0.841986 -0.233041 0.300742 0.464950 0.832692 0.763618 0.405674 -0.502311 -0.571351 0.786924 -0.233041 0.250355 0.493909 0.832692 0.716895 0.483473 -0.502311 -0.650680 0.722709 -0.233041 0.197211 0.517428 0.832692 0.662275 0.555946 -0.502311 -0.722841 0.650532 -0.233041 0.142430 0.535105 0.832692 0.600983 0.621694 -0.502311 -0.786469 0.571978 -0.233041 0.085563 0.547086 0.832692 0.532515 0.681258 -0.502311 -0.842085 0.486400 -0.233041 0.027753 0.553041 0.832692 0.458181 0.733317 -0.502311 -0.888425 0.395465 -0.233041 -0.030362 0.552903 0.832692 0.378801 0.777299 -0.502311 -0.924980 0.300173 -0.233041 -0.087597 0.546764 0.832692 0.296061 0.812424 -0.502311 -0.951144 0.202527 -0.233041 -0.144419 0.534572 0.832692 0.209282 0.838978 -0.502311 -0.967132 0.101725 -0.233041 -0.154866 -0.974469 -0.162562 0.672624 -0.224522 0.705100 -0.723597 -0.000147 0.690222 -0.051882 -0.985333 -0.162562 0.692451 -0.152789 0.705100 -0.719597 -0.075985 0.690222 0.050689 -0.985395 -0.162562 0.704571 -0.080079 0.705100 -0.707820 -0.150277 0.690222 0.153686 -0.974656 -0.162562 0.709084 -0.005793 0.705100 -0.688172 -0.223634 0.690222 0.254991 -0.953181 -0.162562 0.705786 0.068556 0.705100 -0.660943 -0.294528 0.690222 0.352565 -0.921559 -0.162562 0.694855 0.141455 0.705100 -0.626797 -0.361551 0.690222 0.447209 -0.879533 -0.162562 0.676203 0.213501 0.705100 -0.585451 -0.425253 0.690222 0.536928 -0.827818 -0.162562 0.650102 0.283196 0.705100 -0.537658 -0.484270 0.690222 0.620732 -0.766985 -0.162562 0.616841 0.349772 0.705100 -0.483941 -0.537953 0.690222 0.697001 -0.698401 -0.162562 0.577197 0.411918 0.705100 -0.425480 -0.585286 0.690222 0.766359 -0.621504 -0.162562 0.530846 0.470144 0.705100 -0.361795 -0.626656 0.690222 0.827277 -0.537761 -0.162562 0.478648 0.523191 0.705100 -0.294124 -0.661123 0.690222 0.878633 -0.448974 -0.162562 0.421748 0.570054 0.705100 -0.223902 -0.688085 0.690222 0.920850 -0.354414 -0.162562 0.359680 0.611117 0.705100 -0.150553 -0.707762 0.690222 0.952923 -0.255950 -0.162562 0.293650 0.645448 0.705100 -0.075545 -0.719643 0.690222 0.974374 -0.155461 -0.162562 0.224933 0.672487 0.705100 -0.000295 -0.723597 0.690222 0.985301 -0.052484 -0.162562 0.153212 0.692358 0.705100 0.075545 -0.719643 0.690222 0.985376 0.051072 -0.162562 0.079804 0.704603 0.705100 0.150553 -0.707762 0.690222 0.974596 0.154065 -0.162562 0.005517 0.709086 0.705100 0.223902 -0.688085 0.690222 0.953336 0.254408 -0.162562 -0.068124 0.705828 0.705100 0.294124 -0.661123 0.690222 0.921422 0.352923 -0.162562 -0.141725 0.694800 0.705100 0.361795 -0.626656 0.690222 0.879358 0.447551 -0.162562 -0.213764 0.676120 0.705100 0.425480 -0.585286 0.690222 0.828146 0.536422 -0.162562 -0.282799 0.650275 0.705100 0.483941 -0.537953 0.690222 0.767364 0.620263 -0.162562 -0.349395 0.617055 0.705100 0.537658 -0.484270 0.690222 0.698130 0.697272 -0.162562 -0.412143 0.577037 0.705100 0.585451 -0.425253 0.690222 0.621206 0.766601 -0.162562 -0.470350 0.530664 0.705100 0.626797 -0.361551 0.690222 0.538266 0.826948 -0.162562 -0.522899 0.478968 0.705100 0.660943 -0.294528 0.690222 0.448632 0.878808 -0.162562 -0.570218 0.421527 0.705100 0.688172 -0.223634 0.690222 0.354056 0.920988 -0.162562 -0.611257 0.359442 0.705100 0.707820 -0.150277 0.690222 0.256532 0.952767 -0.162562 -0.645269 0.294044 0.705100 0.719597 -0.075985 0.690222 0.155263 0.974406 -0.162562 -0.672533 0.224796 0.705100 0.723597 -0.000147 0.690222 0.052283 0.985312 -0.162562 -0.692389 0.153071 0.705100 0.719628 0.075692 0.690222 -0.051273 0.985365 -0.162562 -0.704619 0.079661 0.705100 0.707731 0.150697 0.690222 -0.153289 0.974718 -0.162562 -0.709081 0.006082 0.705100 0.688263 0.223354 0.690222 -0.254602 0.953284 -0.162562 -0.705814 -0.068268 0.705100 0.661063 0.294259 0.690222 -0.353111 0.921350 -0.162562 -0.694771 -0.141866 0.705100 0.626582 0.361922 0.690222 -0.447730 0.879267 -0.162562 -0.676076 -0.213902 0.705100 0.585199 0.425600 0.690222 -0.536590 0.828036 -0.162562 -0.650218 -0.282932 0.705100 0.537855 0.484051 0.690222 -0.620419 0.767238 -0.162562 -0.616983 -0.349521 0.705100 0.484161 0.537756 0.690222 -0.697414 0.697988 -0.162562 -0.576953 -0.412260 0.705100 0.425133 0.585538 0.690222 -0.766106 0.621816 -0.162562 -0.531038 -0.469928 0.705100 0.362050 0.626508 0.690222 -0.827058 0.538098 -0.162562 -0.478861 -0.522996 0.705100 0.294394 0.661003 0.690222 -0.878899 0.448453 -0.162562 -0.421410 -0.570304 0.705100 0.223494 0.688218 0.690222 -0.921060 0.353868 -0.162562 -0.359318 -0.611330 0.705100 0.150133 0.707851 0.690222 -0.952819 0.256338 -0.162562 -0.293912 -0.645329 0.705100 0.075838 0.719612 0.690222 -0.974438 0.155064 -0.162562 -0.224659 -0.672579 0.705100 0.000000 0.723597 0.690222 -0.985323 0.052082 -0.162562 -0.152930 -0.692420 0.705100 -0.075838 0.719612 0.690222 -0.985406 -0.050488 -0.162562 -0.080222 -0.704555 0.705100 -0.150133 0.707851 0.690222 -0.974687 -0.153488 -0.162562 -0.005938 -0.709083 0.705100 -0.223494 0.688218 0.690222 -0.953233 -0.254796 -0.162562 0.068412 -0.705800 0.705100 -0.294394 0.661003 0.690222 -0.921278 -0.353299 -0.162562 0.142008 -0.694743 0.705100 -0.362050 0.626508 0.690222 -0.879624 -0.447030 -0.162562 0.213364 -0.676247 0.705100 -0.425133 0.585538 0.690222 -0.827927 -0.536759 -0.162562 0.283064 -0.650160 0.705100 -0.484161 0.537756 0.690222 -0.767111 -0.620575 -0.162562 0.349647 -0.616912 0.705100 -0.537855 0.484051 0.690222 -0.698543 -0.696858 -0.162562 0.411801 -0.577281 0.705100 -0.585199 0.425600 0.690222 -0.621660 -0.766233 -0.162562 0.470036 -0.530942 0.705100 -0.626582 0.361922 0.690222 -0.537929 -0.827167 -0.162562 0.523094 -0.478755 0.705100 -0.661063 0.294259 0.690222 -0.448274 -0.878990 -0.162562 0.570390 -0.421294 0.705100 -0.688263 0.223354 0.690222 -0.354601 -0.920778 -0.162562 0.611044 -0.359804 0.705100 -0.707731 0.150697 0.690222 -0.256144 -0.952871 -0.162562 0.645388 -0.293781 0.705100 -0.719628 0.075692 0.690222 -0.070110 -0.865542 -0.495904 0.121563 -0.500836 0.856963 -0.990105 -0.000202 0.140332 0.020991 -0.868124 -0.495904 0.173385 -0.485337 0.856963 -0.984630 -0.103971 0.140332 0.111000 -0.861254 -0.495904 0.222832 -0.464715 0.856963 -0.968517 -0.205626 0.140332 0.200654 -0.844877 -0.495904 0.270310 -0.438801 0.856963 -0.941632 -0.306001 0.140332 0.288098 -0.819194 -0.495904 0.314811 -0.408054 0.856963 -0.904375 -0.403005 0.140332 0.371584 -0.784859 -0.495904 0.355471 -0.373168 0.856963 -0.857651 -0.494714 0.140332 0.451796 -0.741592 -0.495904 0.392624 -0.333857 0.856963 -0.801078 -0.581877 0.140332 0.527032 -0.690157 -0.495904 0.425452 -0.290868 0.856963 -0.735682 -0.662631 0.140332 0.596463 -0.631119 -0.495904 0.453594 -0.244676 0.856963 -0.662181 -0.736086 0.140332 0.658758 -0.565788 -0.495904 0.476544 -0.196265 0.856963 -0.582188 -0.800852 0.140332 0.714429 -0.493630 -0.495904 0.494489 -0.145239 0.856963 -0.495047 -0.857459 0.140332 0.762230 -0.416034 -0.495904 0.506988 -0.092613 0.856963 -0.402453 -0.904621 0.140332 0.801301 -0.334657 -0.495904 0.513863 -0.039481 0.856963 -0.306367 -0.941513 0.140332 0.831963 -0.248832 -0.495904 0.515171 0.014593 0.856963 -0.206003 -0.968437 0.140332 0.853460 -0.160265 -0.495904 0.510804 0.068506 0.856963 -0.103369 -0.984694 0.140332 0.865499 -0.070639 -0.495904 0.500910 0.121257 0.856963 -0.000403 -0.990104 0.140332 0.868136 0.020460 -0.495904 0.485442 0.173088 0.856963 0.103369 -0.984694 0.140332 0.861211 0.111335 -0.495904 0.464628 0.223013 0.856963 0.206003 -0.968437 0.140332 0.844799 0.200983 -0.495904 0.438696 0.270481 0.856963 0.306367 -0.941513 0.140332 0.819370 0.287597 -0.495904 0.408246 0.314561 0.856963 0.402453 -0.904621 0.140332 0.784715 0.371889 -0.495904 0.373030 0.355616 0.856963 0.495047 -0.857459 0.140332 0.741416 0.452085 -0.495904 0.333704 0.392754 0.856963 0.582188 -0.800852 0.140332 0.690478 0.526611 -0.495904 0.291128 0.425274 0.856963 0.662181 -0.736086 0.140332 0.631483 0.596077 -0.495904 0.244953 0.453445 0.856963 0.735682 -0.662631 0.140332 0.565532 0.658979 -0.495904 0.196080 0.476620 0.856963 0.801078 -0.581877 0.140332 0.493352 0.714621 -0.495904 0.145047 0.494546 0.856963 0.857651 -0.494714 0.140332 0.416499 0.761976 -0.495904 0.092923 0.506931 0.856963 0.904375 -0.403005 0.140332 0.334345 0.801432 -0.495904 0.039281 0.513878 0.856963 0.941632 -0.306001 0.140332 0.248508 0.832059 -0.495904 -0.014794 0.515165 0.856963 0.968517 -0.205626 0.140332 0.160787 0.853362 -0.495904 -0.068194 0.510846 0.856963 0.984630 -0.103971 0.140332 0.070463 0.865514 -0.495904 -0.121359 0.500885 0.856963 0.990105 -0.000202 0.140332 -0.020637 0.868132 -0.495904 -0.173187 0.485407 0.856963 0.984673 0.103570 0.140332 -0.111510 0.861188 -0.495904 -0.223107 0.464583 0.856963 0.968395 0.206200 0.140332 -0.200310 0.844959 -0.495904 -0.270131 0.438911 0.856963 0.941756 0.305617 0.140332 -0.287764 0.819311 -0.495904 -0.314645 0.408182 0.856963 0.904539 0.402637 0.140332 -0.372049 0.784639 -0.495904 -0.355692 0.372957 0.856963 0.857358 0.495222 0.140332 -0.452236 0.741324 -0.495904 -0.392822 0.333624 0.856963 0.800733 0.582352 0.140332 -0.526751 0.690371 -0.495904 -0.425334 0.291041 0.856963 0.735951 0.662331 0.140332 -0.596206 0.631362 -0.495904 -0.453494 0.244861 0.856963 0.662481 0.735816 0.140332 -0.659094 0.565398 -0.495904 -0.476660 0.195983 0.856963 0.581714 0.801197 0.140332 -0.714228 0.493921 -0.495904 -0.494430 0.145440 0.856963 0.495396 0.857257 0.140332 -0.762061 0.416344 -0.495904 -0.506950 0.092819 0.856963 0.402821 0.904457 0.140332 -0.801500 0.334182 -0.495904 -0.513886 0.039176 0.856963 0.305809 0.941694 0.140332 -0.832110 0.248338 -0.495904 -0.515162 -0.014898 0.856963 0.205429 0.968559 0.140332 -0.853395 0.160613 -0.495904 -0.510832 -0.068298 0.856963 0.103770 0.984652 0.140332 -0.865528 0.070287 -0.495904 -0.500860 -0.121461 0.856963 0.000000 0.990105 0.140332 -0.868128 -0.020814 -0.495904 -0.485372 -0.173286 0.856963 -0.103770 0.984652 0.140332 -0.861276 -0.110824 -0.495904 -0.464760 -0.222737 0.856963 -0.205429 0.968559 0.140332 -0.844918 -0.200482 -0.495904 -0.438856 -0.270221 0.856963 -0.305809 0.941694 0.140332 -0.819253 -0.287931 -0.495904 -0.408118 -0.314728 0.856963 -0.402821 0.904457 0.140332 -0.784563 -0.372209 -0.495904 -0.372885 -0.355768 0.856963 -0.495396 0.857257 0.140332 -0.741684 -0.451645 -0.495904 -0.333937 -0.392556 0.856963 -0.581714 0.801197 0.140332 -0.690264 -0.526892 -0.495904 -0.290955 -0.425393 0.856963 -0.662481 0.735816 0.140332 -0.631240 -0.596335 -0.495904 -0.244768 -0.453544 0.856963 -0.735951 0.662331 0.140332 -0.565922 -0.658643 -0.495904 -0.196362 -0.476504 0.856963 -0.800733 0.582352 0.140332 -0.493775 -0.714329 -0.495904 -0.145340 -0.494460 0.856963 -0.857358 0.495222 0.140332 -0.416189 -0.762146 -0.495904 -0.092716 -0.506969 0.856963 -0.904539 0.402637 0.140332 -0.334019 -0.801568 -0.495904 -0.039072 -0.513894 0.856963 -0.941756 0.305617 0.140332 -0.249001 -0.831912 -0.495904 0.014488 -0.515174 0.856963 -0.968395 0.206200 0.140332 -0.160439 -0.853427 -0.495904 0.068402 -0.510818 0.856963 -0.984673 0.103570 0.140332 -0.638400 -0.043320 0.768485 -0.027802 0.999061 0.033222 -0.769203 -0.000157 -0.639005 -0.630343 -0.109990 0.768485 -0.132358 0.990645 0.033222 -0.764950 -0.080774 -0.639005 -0.615519 -0.174834 0.768485 -0.234484 0.971552 0.033222 -0.752432 -0.159749 -0.639005 -0.593805 -0.238382 0.768485 -0.335018 0.941626 0.033222 -0.731545 -0.237729 -0.639005 -0.565551 -0.299304 0.768485 -0.431862 0.901327 0.033222 -0.702600 -0.313091 -0.639005 -0.531424 -0.356398 0.768485 -0.523098 0.851625 0.033222 -0.666301 -0.384338 -0.639005 -0.491144 -0.410132 0.768485 -0.609474 0.792110 0.033222 -0.622350 -0.452055 -0.639005 -0.445454 -0.459349 0.768485 -0.689136 0.723870 0.033222 -0.571544 -0.514792 -0.639005 -0.394858 -0.503506 0.768485 -0.761207 0.647657 0.033222 -0.514442 -0.571858 -0.639005 -0.340454 -0.541777 0.768485 -0.824329 0.565135 0.033222 -0.452297 -0.622174 -0.639005 -0.281797 -0.574475 0.768485 -0.879020 0.475627 0.033222 -0.384597 -0.666152 -0.639005 -0.220036 -0.600845 0.768485 -0.924028 0.380880 0.033222 -0.312662 -0.702791 -0.639005 -0.156472 -0.620441 0.768485 -0.958575 0.282896 0.033222 -0.238014 -0.731452 -0.639005 -0.090583 -0.633424 0.768485 -0.982945 0.180873 0.033222 -0.160042 -0.752369 -0.639005 -0.023697 -0.639429 0.768485 -0.996489 0.076857 0.033222 -0.080306 -0.764999 -0.639005 0.042930 -0.638426 0.768485 -0.999078 -0.027192 0.033222 -0.000313 -0.769203 -0.639005 0.109605 -0.630410 0.768485 -0.990726 -0.131753 0.033222 0.080306 -0.764999 -0.639005 0.175073 -0.615451 0.768485 -0.971461 -0.234862 0.033222 0.160042 -0.752369 -0.639005 0.238613 -0.593713 0.768485 -0.941495 -0.335385 0.033222 0.238014 -0.731452 -0.639005 0.298958 -0.565734 0.768485 -0.901591 -0.431312 0.033222 0.312662 -0.702791 -0.639005 0.356605 -0.531285 0.768485 -0.851421 -0.523429 0.033222 0.384597 -0.666152 -0.639005 0.410323 -0.490984 0.768485 -0.791873 -0.609782 0.033222 0.452297 -0.622174 -0.639005 0.459077 -0.445735 0.768485 -0.724291 -0.688693 0.033222 0.514442 -0.571858 -0.639005 0.503264 -0.395165 0.768485 -0.648122 -0.760811 0.033222 0.571544 -0.514792 -0.639005 0.541909 -0.340243 0.768485 -0.564814 -0.824549 0.033222 0.622350 -0.452055 -0.639005 0.574584 -0.281573 0.768485 -0.475285 -0.879204 0.033222 0.666301 -0.384338 -0.639005 0.600711 -0.220403 0.768485 -0.381444 -0.923795 0.033222 0.702600 -0.313091 -0.639005 0.620502 -0.156230 0.768485 -0.282523 -0.958685 0.033222 0.731545 -0.237729 -0.639005 0.633459 -0.090337 0.768485 -0.180490 -0.983016 0.033222 0.752432 -0.159749 -0.639005 0.639414 -0.024088 0.768485 -0.077466 -0.996441 0.033222 0.764950 -0.080774 -0.639005 0.638417 0.043060 0.768485 0.027395 -0.999072 0.033222 0.769203 -0.000157 -0.639005 0.630388 0.109734 0.768485 0.131954 -0.990699 0.033222 0.764983 0.080462 -0.639005 0.615415 0.175199 0.768485 0.235060 -0.971413 0.033222 0.752337 0.160195 -0.639005 0.593902 0.238140 0.768485 0.334635 -0.941762 0.033222 0.731642 0.237431 -0.639005 0.565673 0.299074 0.768485 0.431495 -0.901503 0.033222 0.702728 0.312805 -0.639005 0.531212 0.356713 0.768485 0.523603 -0.851315 0.033222 0.666073 0.384733 -0.639005 0.490901 0.410423 0.768485 0.609943 -0.791749 0.033222 0.622082 0.452423 -0.639005 0.445641 0.459167 0.768485 0.688841 -0.724151 0.033222 0.571754 0.514559 -0.639005 0.395063 0.503345 0.768485 0.760943 -0.647967 0.033222 0.514675 0.571649 -0.639005 0.340133 0.541978 0.768485 0.824664 -0.564646 0.033222 0.451928 0.622442 -0.639005 0.282031 0.574360 0.768485 0.878826 -0.475985 0.033222 0.384869 0.665995 -0.639005 0.220281 0.600756 0.768485 0.923872 -0.381256 0.033222 0.312948 0.702664 -0.639005 0.156104 0.620534 0.768485 0.958742 -0.282328 0.033222 0.237580 0.731593 -0.639005 0.090208 0.633477 0.768485 0.983052 -0.180290 0.033222 0.159596 0.752464 -0.639005 0.023957 0.639419 0.768485 0.996457 -0.077263 0.033222 0.080618 0.764966 -0.639005 -0.043190 0.638408 0.768485 0.999067 0.027599 0.033222 0.000000 0.769203 -0.639005 -0.109862 0.630366 0.768485 0.990672 0.132156 0.033222 -0.080618 0.764966 -0.639005 -0.174708 0.615555 0.768485 0.971600 0.234286 0.033222 -0.159596 0.752464 -0.639005 -0.238261 0.593854 0.768485 0.941694 0.334827 0.033222 -0.237580 0.731593 -0.639005 -0.299189 0.565612 0.768485 0.901415 0.431679 0.033222 -0.312948 0.702664 -0.639005 -0.356821 0.531140 0.768485 0.851208 0.523776 0.033222 -0.384869 0.665995 -0.639005 -0.410032 0.491227 0.768485 0.792234 0.609312 0.033222 -0.451928 0.622442 -0.639005 -0.459258 0.445548 0.768485 0.724011 0.688988 0.033222 -0.514675 0.571649 -0.639005 -0.503425 0.394960 0.768485 0.647812 0.761075 0.033222 -0.571754 0.514559 -0.639005 -0.541707 0.340564 0.768485 0.565303 0.824214 0.033222 -0.622082 0.452423 -0.639005 -0.574417 0.281914 0.768485 0.475806 0.878923 0.033222 -0.666073 0.384733 -0.639005 -0.600800 0.220158 0.768485 0.381068 0.923950 0.033222 -0.702728 0.312805 -0.639005 -0.620566 0.155978 0.768485 0.282133 0.958800 0.033222 -0.731642 0.237431 -0.639005 -0.633405 0.090712 0.768485 0.181073 0.982908 0.033222 -0.752337 0.160195 -0.639005 -0.639424 0.023827 0.768485 0.077060 0.996473 0.033222 -0.764983 0.080462 -0.639005 -0.025248 -0.904930 -0.424810 0.054166 -0.425560 0.903308 -0.998213 -0.000203 0.059761 0.069734 -0.902593 -0.424810 0.098469 -0.417539 0.903308 -0.992694 -0.104822 0.059761 0.163058 -0.890476 -0.424810 0.141283 -0.405061 0.903308 -0.976448 -0.207310 0.059761 0.255488 -0.868483 -0.424810 0.182958 -0.388023 0.903308 -0.949343 -0.308507 0.059761 0.345104 -0.836922 -0.424810 0.222618 -0.366710 0.903308 -0.911781 -0.406306 0.059761 0.430123 -0.796574 -0.424810 0.259484 -0.341618 0.903308 -0.864675 -0.498765 0.059761 0.511240 -0.747107 -0.424810 0.293859 -0.312541 0.903308 -0.807639 -0.586642 0.059761 0.586727 -0.689411 -0.424810 0.324997 -0.280021 0.903308 -0.741706 -0.668057 0.059761 0.655751 -0.624121 -0.424810 0.352556 -0.244417 0.903308 -0.667604 -0.742114 0.059761 0.716999 -0.552673 -0.424810 0.376024 -0.206497 0.903308 -0.586956 -0.807410 0.059761 0.770975 -0.474483 -0.424810 0.395596 -0.165949 0.903308 -0.499101 -0.864481 0.059761 0.816458 -0.391066 -0.424810 0.410810 -0.123574 0.903308 -0.405748 -0.912029 0.059761 0.852644 -0.304195 -0.424810 0.421419 -0.080259 0.903308 -0.308876 -0.949223 0.059761 0.879830 -0.213156 -0.424810 0.427509 -0.035650 0.903308 -0.207690 -0.976368 0.059761 0.897325 -0.119770 -0.424810 0.428891 0.009353 0.903308 -0.104216 -0.992758 0.059761 0.904915 -0.025801 -0.424810 0.425593 0.053906 0.903308 -0.000407 -0.998213 0.059761 0.902635 0.069183 -0.424810 0.417599 0.098214 0.903308 0.104216 -0.992758 0.059761 0.890413 0.163404 -0.424810 0.405006 0.141440 0.903308 0.207690 -0.976368 0.059761 0.868383 0.255826 -0.424810 0.387951 0.183109 0.903308 0.308876 -0.949223 0.059761 0.837133 0.344593 -0.424810 0.366846 0.222394 0.903308 0.405748 -0.912029 0.059761 0.796407 0.430433 -0.424810 0.341517 0.259617 0.903308 0.499101 -0.864481 0.059761 0.746908 0.511531 -0.424810 0.312427 0.293981 0.903308 0.586956 -0.807410 0.059761 0.689769 0.586306 -0.424810 0.280220 0.324826 0.903308 0.667604 -0.742114 0.059761 0.624521 0.655370 -0.424810 0.244632 0.352406 0.903308 0.741706 -0.668057 0.059761 0.552394 0.717214 -0.424810 0.206350 0.376105 0.903308 0.807639 -0.586642 0.059761 0.474183 0.771159 -0.424810 0.165795 0.395660 0.903308 0.864675 -0.498765 0.059761 0.391565 0.816219 -0.424810 0.123825 0.410734 0.903308 0.911781 -0.406306 0.059761 0.303863 0.852762 -0.424810 0.080095 0.421450 0.903308 0.949343 -0.308507 0.059761 0.212814 0.879913 -0.424810 0.035483 0.427523 0.903308 0.976448 -0.207310 0.059761 0.120318 0.897251 -0.424810 -0.009091 0.428897 0.903308 0.992694 -0.104822 0.059761 0.025617 0.904920 -0.424810 -0.053992 0.425582 0.903308 0.998213 -0.000203 0.059761 -0.069366 0.902621 -0.424810 -0.098299 0.417579 0.903308 0.992736 0.104418 0.059761 -0.163586 0.890380 -0.424810 -0.141523 0.404977 0.903308 0.976325 0.207889 0.059761 -0.255134 0.868587 -0.424810 -0.182800 0.388097 0.903308 0.949469 0.308120 0.059761 -0.344763 0.837063 -0.424810 -0.222469 0.366801 0.903308 0.911946 0.405934 0.059761 -0.430595 0.796319 -0.424810 -0.259687 0.341465 0.903308 0.864379 0.499277 0.059761 -0.511683 0.746804 -0.424810 -0.294044 0.312367 0.903308 0.807291 0.587121 0.059761 -0.586446 0.689650 -0.424810 -0.324883 0.280154 0.903308 0.741978 0.667755 0.059761 -0.655497 0.624388 -0.424810 -0.352456 0.244561 0.903308 0.667906 0.741842 0.059761 -0.717327 0.552248 -0.424810 -0.376147 0.206274 0.903308 0.586477 0.807758 0.059761 -0.770781 0.474797 -0.424810 -0.395528 0.166110 0.903308 0.499453 0.864277 0.059761 -0.816299 0.391399 -0.424810 -0.410759 0.123741 0.903308 0.406120 0.911864 0.059761 -0.852824 0.303689 -0.424810 -0.421466 0.080009 0.903308 0.308314 0.949406 0.059761 -0.879956 0.212634 -0.424810 -0.427530 0.035396 0.903308 0.207111 0.976490 0.059761 -0.897276 0.120135 -0.424810 -0.428895 -0.009178 0.903308 0.104620 0.992715 0.059761 -0.904925 0.025432 -0.424810 -0.425571 -0.054079 0.903308 0.000000 0.998213 0.059761 -0.902607 -0.069550 -0.424810 -0.417559 -0.098384 0.903308 -0.104620 0.992715 0.059761 -0.890510 -0.162876 -0.424810 -0.405090 -0.141200 0.903308 -0.207111 0.976490 0.059761 -0.868535 -0.255311 -0.424810 -0.388060 -0.182879 0.903308 -0.308314 0.949406 0.059761 -0.836993 -0.344934 -0.424810 -0.366756 -0.222543 0.903308 -0.406120 0.911864 0.059761 -0.796232 -0.430757 -0.424810 -0.341412 -0.259756 0.903308 -0.499453 0.864277 0.059761 -0.747211 -0.511088 -0.424810 -0.312601 -0.293796 0.903308 -0.586477 0.807758 0.059761 -0.689530 -0.586587 -0.424810 -0.280087 -0.324940 0.903308 -0.667906 0.741842 0.059761 -0.624254 -0.655624 -0.424810 -0.244489 -0.352506 0.903308 -0.741978 0.667755 0.059761 -0.552819 -0.716887 -0.424810 -0.206573 -0.375982 0.903308 -0.807291 0.587121 0.059761 -0.474640 -0.770878 -0.424810 -0.166030 -0.395562 0.903308 -0.864379 0.499277 0.059761 -0.391232 -0.816378 -0.424810 -0.123658 -0.410785 0.903308 -0.911946 0.405934 0.059761 -0.303515 -0.852886 -0.424810 -0.079924 -0.421482 0.903308 -0.949469 0.308120 0.059761 -0.213335 -0.879786 -0.424810 -0.035737 -0.427502 0.903308 -0.976325 0.207889 0.059761 -0.119952 -0.897300 -0.424810 0.009266 -0.428893 0.903308 -0.992736 0.104418 0.059761 0.252813 -0.814644 0.521959 0.354830 0.579961 0.733308 -0.900100 -0.000183 0.435682 0.336802 -0.783661 0.521959 0.292092 0.613956 0.733308 -0.895124 -0.094519 0.435682 0.416336 -0.744462 0.521959 0.226777 0.640962 0.733308 -0.880475 -0.186934 0.435682 0.492068 -0.696727 0.521959 0.158351 0.661200 0.733308 -0.856034 -0.278184 0.435682 0.562380 -0.641318 0.521959 0.088181 0.674154 0.733308 -0.822164 -0.366371 0.435682 0.625918 -0.579470 0.521959 0.017718 0.679666 0.733308 -0.779688 -0.449742 0.435682 0.683203 -0.510678 0.521959 -0.053613 0.677780 0.733308 -0.728257 -0.528982 0.435682 0.732963 -0.436261 0.521959 -0.124354 0.668428 0.733308 -0.668805 -0.602395 0.435682 0.774650 -0.357039 0.521959 -0.193725 0.651713 0.733308 -0.601987 -0.669173 0.435682 0.807530 -0.274691 0.521959 -0.260335 0.628081 0.733308 -0.529265 -0.728051 0.435682 0.831872 -0.188543 0.521959 -0.324728 0.597337 0.733308 -0.450045 -0.779513 0.435682 0.847051 -0.100319 0.521959 -0.385545 0.560013 0.733308 -0.365868 -0.822388 0.435682 0.852889 -0.011842 0.521959 -0.441598 0.516963 0.733308 -0.278517 -0.855926 0.435682 0.849433 0.077612 0.521959 -0.493348 0.467833 0.733308 -0.187276 -0.880402 0.435682 0.836620 0.166211 0.521959 -0.539663 0.413550 0.733308 -0.093972 -0.895182 0.435682 0.814798 0.252316 0.521959 -0.579745 0.355185 0.733308 -0.000367 -0.900100 0.435682 0.783866 0.336323 0.521959 -0.613778 0.292467 0.733308 0.093972 -0.895182 0.435682 0.744300 0.416625 0.521959 -0.641050 0.226528 0.733308 0.187276 -0.880402 0.435682 0.696536 0.492339 0.521959 -0.661261 0.158094 0.733308 0.278517 -0.855926 0.435682 0.641661 0.561988 0.521959 -0.674100 0.088592 0.733308 0.365868 -0.822388 0.435682 0.579227 0.626143 0.521959 -0.679673 0.017454 0.733308 0.450045 -0.779513 0.435682 0.510413 0.683402 0.521959 -0.677759 -0.053877 0.733308 0.529265 -0.728051 0.435682 0.436709 0.732697 0.521959 -0.668504 -0.123946 0.733308 0.601987 -0.669173 0.435682 0.357512 0.774432 0.521959 -0.651832 -0.193327 0.733308 0.668805 -0.602395 0.435682 0.274377 0.807636 0.521959 -0.627980 -0.260579 0.733308 0.728257 -0.528982 0.435682 0.188220 0.831945 0.521959 -0.597211 -0.324960 0.733308 0.779688 -0.449742 0.435682 0.100836 0.846990 0.521959 -0.560249 -0.385203 0.733308 0.822164 -0.366371 0.435682 0.011510 0.852893 0.521959 -0.516791 -0.441799 0.733308 0.856034 -0.278184 0.435682 -0.077942 0.849402 0.521959 -0.467641 -0.493530 0.733308 0.880475 -0.186934 0.435682 -0.165700 0.836722 0.521959 -0.413880 -0.539410 0.733308 0.895124 -0.094519 0.435682 -0.252482 0.814747 0.521959 -0.355067 -0.579817 0.733308 0.900100 -0.000183 0.435682 -0.336482 0.783798 0.521959 -0.292342 -0.613837 0.733308 0.895162 0.094155 0.435682 -0.416777 0.744215 0.521959 -0.226397 -0.641096 0.733308 0.880364 0.187456 0.435682 -0.491784 0.696927 0.521959 -0.158620 -0.661135 0.733308 0.856147 0.277836 0.435682 -0.562118 0.641547 0.521959 -0.088455 -0.674118 0.733308 0.822313 0.366036 0.435682 -0.626261 0.579099 0.521959 -0.017316 -0.679676 0.733308 0.779421 0.450204 0.435682 -0.683506 0.510273 0.521959 0.054015 -0.677748 0.733308 0.727944 0.529414 0.435682 -0.732786 0.436560 0.521959 0.124082 -0.668479 0.733308 0.669051 0.602123 0.435682 -0.774505 0.357354 0.521959 0.193460 -0.651792 0.733308 0.602259 0.668928 0.435682 -0.807692 0.274213 0.521959 0.260707 -0.627927 0.733308 0.528834 0.728365 0.435682 -0.831795 0.188882 0.521959 0.324485 -0.597469 0.733308 0.450363 0.779329 0.435682 -0.847010 0.100664 0.521959 0.385317 -0.560170 0.733308 0.366203 0.822238 0.435682 -0.852896 0.011337 0.521959 0.441905 -0.516701 0.733308 0.278010 0.856091 0.435682 -0.849386 -0.078115 0.521959 0.493625 -0.467541 0.733308 0.186754 0.880513 0.435682 -0.836688 -0.165870 0.521959 0.539494 -0.413770 0.733308 0.094337 0.895143 0.435682 -0.814695 -0.252648 0.521959 0.579889 -0.354948 0.733308 0.000000 0.900100 0.435682 -0.783729 -0.336642 0.521959 0.613897 -0.292217 0.733308 -0.094337 0.895143 0.435682 -0.744547 -0.416184 0.521959 0.640915 -0.226908 0.733308 -0.186754 0.880513 0.435682 -0.696827 -0.491926 0.521959 0.661167 -0.158486 0.733308 -0.278010 0.856091 0.435682 -0.641432 -0.562249 0.521959 0.674136 -0.088318 0.733308 -0.366203 0.822238 0.435682 -0.578972 -0.626379 0.521959 0.679680 -0.017177 0.733308 -0.450363 0.779329 0.435682 -0.510818 -0.683099 0.521959 0.677791 0.053475 0.733308 -0.528834 0.728365 0.435682 -0.436411 -0.732875 0.521959 0.668453 0.124218 0.733308 -0.602259 0.668928 0.435682 -0.357197 -0.774577 0.521959 0.651753 0.193592 0.733308 -0.669051 0.602123 0.435682 -0.274856 -0.807474 0.521959 0.628134 0.260207 0.733308 -0.727944 0.529414 0.435682 -0.188713 -0.831833 0.521959 0.597403 0.324607 0.733308 -0.779421 0.450204 0.435682 -0.100491 -0.847031 0.521959 0.560092 0.385431 0.733308 -0.822313 0.366036 0.435682 -0.011163 -0.852898 0.521959 0.516611 0.442010 0.733308 -0.856147 0.277836 0.435682 0.077439 -0.849448 0.521959 0.467934 0.493252 0.733308 -0.880364 0.187456 0.435682 0.166041 -0.836654 0.521959 0.413660 0.539579 0.733308 -0.895162 0.094155 0.435682 -0.548418 0.479135 -0.685323 -0.299225 -0.877741 -0.374212 -0.780834 -0.000159 0.624738 -0.595614 0.419018 -0.685323 -0.205584 -0.904268 -0.374212 -0.776517 -0.081995 0.624738 -0.635896 0.354922 -0.685323 -0.110598 -0.920724 -0.374212 -0.763809 -0.162164 0.624738 -0.669592 0.286321 -0.685323 -0.013491 -0.927245 -0.374212 -0.742607 -0.241324 0.624738 -0.695913 0.214566 -0.685323 0.083766 -0.923552 -0.374212 -0.713224 -0.317825 0.624738 -0.714427 0.141162 -0.685323 0.179189 -0.909866 -0.374212 -0.676376 -0.390150 0.624738 -0.725287 0.065508 -0.685323 0.273563 -0.886075 -0.374212 -0.631761 -0.458890 0.624738 -0.728158 -0.010869 -0.685323 0.364923 -0.852523 -0.374212 -0.580187 -0.522576 0.624738 -0.723009 -0.087125 -0.685323 0.452264 -0.809582 -0.374212 -0.522222 -0.580506 0.624738 -0.710058 -0.161712 -0.685323 0.533865 -0.758257 -0.374212 -0.459136 -0.631582 0.624738 -0.689199 -0.235240 -0.685323 0.610396 -0.698128 -0.374212 -0.390413 -0.676225 0.624738 -0.660748 -0.306178 -0.685323 0.680203 -0.630309 -0.374212 -0.317390 -0.713418 0.624738 -0.625393 -0.373117 -0.685323 0.741962 -0.556290 -0.374212 -0.241613 -0.742513 0.624738 -0.582843 -0.436608 -0.685323 0.796178 -0.475463 -0.374212 -0.162462 -0.763746 0.624738 -0.533874 -0.495290 -0.685323 0.841625 -0.389399 -0.374212 -0.081521 -0.776567 0.624738 -0.479470 -0.548125 -0.685323 0.877558 -0.299761 -0.374212 -0.000318 -0.780834 0.624738 -0.419382 -0.595358 -0.685323 0.904142 -0.206136 -0.374212 0.081521 -0.776567 0.624738 -0.354674 -0.636034 -0.685323 0.920767 -0.110240 -0.374212 0.162462 -0.763746 0.624738 -0.286060 -0.669703 -0.685323 0.927250 -0.013130 -0.374212 0.241613 -0.742513 0.624738 -0.214991 -0.695781 -0.685323 0.923603 0.083201 -0.374212 0.317390 -0.713418 0.624738 -0.140884 -0.714482 -0.685323 0.909796 0.179543 -0.374212 0.390413 -0.676225 0.624738 -0.065225 -0.725313 -0.685323 0.885968 0.273908 -0.374212 0.459136 -0.631582 0.624738 0.010424 -0.728165 -0.685323 0.852746 0.364402 -0.374212 0.522222 -0.580506 0.624738 0.086683 -0.723062 -0.685323 0.809858 0.451769 -0.374212 0.580187 -0.522576 0.624738 0.161988 -0.709995 -0.685323 0.758049 0.534160 -0.374212 0.631761 -0.458890 0.624738 0.235508 -0.689107 -0.685323 0.697890 0.610667 -0.374212 0.676376 -0.390150 0.624738 0.305774 -0.660935 -0.685323 0.630724 0.679817 -0.374212 0.713224 -0.317825 0.624738 0.373361 -0.625248 -0.685323 0.556001 0.742178 -0.374212 0.742607 -0.241324 0.624738 0.436835 -0.582673 -0.685323 0.475153 0.796363 -0.374212 0.763809 -0.162164 0.624738 0.494963 -0.534176 -0.685323 0.389913 0.841387 -0.374212 0.776517 -0.081995 0.624738 0.548223 -0.479358 -0.685323 0.299583 0.877619 -0.374212 0.780834 -0.000159 0.624738 0.595444 -0.419261 -0.685323 0.205952 0.904184 -0.374212 0.776550 0.081679 0.624738 0.636106 -0.354545 -0.685323 0.110053 0.920790 -0.374212 0.763713 0.162617 0.624738 0.669475 -0.286593 -0.685323 0.013868 0.927239 -0.374212 0.742705 0.241022 0.624738 0.695825 -0.214849 -0.685323 -0.083389 0.923586 -0.374212 0.713354 0.317535 0.624738 0.714511 -0.140739 -0.685323 -0.179728 0.909760 -0.374212 0.676145 0.390551 0.624738 0.725326 -0.065078 -0.685323 -0.274088 0.885912 -0.374212 0.631489 0.459265 0.624738 0.728163 0.010572 -0.685323 -0.364576 0.852672 -0.374212 0.580399 0.522340 0.624738 0.723044 0.086830 -0.685323 -0.451934 0.809766 -0.374212 0.522458 0.580293 0.624738 0.709962 0.162132 -0.685323 -0.534314 0.757940 -0.374212 0.458762 0.631854 0.624738 0.689294 0.234959 -0.685323 -0.610111 0.698376 -0.374212 0.390688 0.676066 0.624738 0.660873 0.305908 -0.685323 -0.679946 0.630586 -0.374212 0.317680 0.713289 0.624738 0.625172 0.373488 -0.685323 -0.742291 0.555850 -0.374212 0.241173 0.742656 0.624738 0.582584 0.436953 -0.685323 -0.796460 0.474991 -0.374212 0.162009 0.763842 0.624738 0.534075 0.495072 -0.685323 -0.841467 0.389742 -0.374212 0.081837 0.776534 0.624738 0.479247 0.548320 -0.685323 -0.877680 0.299404 -0.374212 0.000000 0.780834 0.624738 0.419139 0.595529 -0.685323 -0.904226 0.205768 -0.374212 -0.081837 0.776534 0.624738 0.355051 0.635823 -0.685323 -0.920702 0.110786 -0.374212 -0.162009 0.763842 0.624738 0.286457 0.669533 -0.685323 -0.927242 0.013680 -0.374212 -0.241173 0.742656 0.624738 0.214708 0.695869 -0.685323 -0.923569 -0.083577 -0.374212 -0.317680 0.713289 0.624738 0.140593 0.714539 -0.685323 -0.909723 -0.179914 -0.374212 -0.390688 0.676066 0.624738 0.065655 0.725274 -0.685323 -0.886130 -0.273382 -0.374212 -0.458762 0.631854 0.624738 -0.010720 0.728161 -0.685323 -0.852598 -0.364750 -0.374212 -0.522458 0.580293 0.624738 -0.086978 0.723027 -0.685323 -0.809674 -0.452099 -0.374212 -0.580399 0.522340 0.624738 -0.161567 0.710091 -0.685323 -0.758365 -0.533711 -0.374212 -0.631489 0.459265 0.624738 -0.235100 0.689247 -0.685323 -0.698252 -0.610254 -0.374212 -0.676145 0.390551 0.624738 -0.306043 0.660810 -0.685323 -0.630448 -0.680074 -0.374212 -0.713354 0.317535 0.624738 -0.373615 0.625096 -0.685323 -0.555699 -0.742404 -0.374212 -0.742705 0.241022 0.624738 -0.436489 0.582932 -0.685323 -0.475625 -0.796082 -0.374212 -0.763713 0.162617 0.624738 -0.495181 0.533974 -0.685323 -0.389571 -0.841546 -0.374212 -0.776550 0.081679 0.624738 -0.210872 -0.323332 -0.922491 0.072256 -0.946285 0.315155 -0.974840 -0.000199 0.222908 -0.175823 -0.343653 -0.922491 0.171036 -0.933501 0.315155 -0.969450 -0.102368 0.222908 -0.139197 -0.360049 -0.922491 0.267021 -0.910701 0.315155 -0.953585 -0.202456 0.222908 -0.100695 -0.372654 -0.922491 0.360999 -0.877700 0.315155 -0.927114 -0.301283 0.222908 -0.061084 -0.381156 -0.922491 0.451000 -0.835031 0.315155 -0.890431 -0.396792 0.222908 -0.021185 -0.385437 -0.922491 0.535250 -0.783700 0.315155 -0.844428 -0.487086 0.222908 0.019328 -0.385535 -0.922491 0.614439 -0.723285 0.315155 -0.788728 -0.572906 0.222908 0.059629 -0.381386 -0.922491 0.686860 -0.654904 0.315155 -0.724339 -0.652415 0.222908 0.099272 -0.373036 -0.922491 0.751716 -0.579310 0.315155 -0.651972 -0.724738 0.222908 0.137462 -0.360715 -0.922491 0.807794 -0.498142 0.315155 -0.573212 -0.788505 0.222908 0.174510 -0.344321 -0.922491 0.855554 -0.410736 0.315155 -0.487415 -0.844239 0.222908 0.209636 -0.324135 -0.922491 0.893891 -0.318805 0.315155 -0.396248 -0.890674 0.222908 0.242153 -0.300621 -0.922491 0.922157 -0.224286 0.315155 -0.301644 -0.926997 0.222908 0.272327 -0.273586 -0.922491 0.940585 -0.126402 0.315155 -0.202827 -0.953506 0.222908 0.299500 -0.243537 -0.922491 0.948652 -0.027126 0.315155 -0.101775 -0.969512 0.222908 0.323204 -0.211069 -0.922491 0.946329 0.071678 0.315155 -0.000397 -0.974839 0.222908 0.343545 -0.176033 -0.922491 0.933605 0.170466 0.315155 0.101775 -0.969512 0.222908 0.360103 -0.139057 -0.922491 0.910597 0.267375 0.315155 0.202827 -0.953506 0.222908 0.372694 -0.100550 -0.922491 0.877559 0.361340 0.315155 0.301644 -0.926997 0.222908 0.381118 -0.061317 -0.922491 0.835306 0.450489 0.315155 0.396248 -0.890674 0.222908 0.385446 -0.021035 -0.922491 0.783491 0.535554 0.315155 0.487415 -0.844239 0.222908 0.385527 0.019478 -0.922491 0.723046 0.614720 0.315155 0.573212 -0.788505 0.222908 0.381422 0.059396 -0.922491 0.655324 0.686460 0.315155 0.651972 -0.724738 0.222908 0.373097 0.099044 -0.922491 0.579769 0.751362 0.315155 0.724339 -0.652415 0.222908 0.360661 0.137602 -0.922491 0.497828 0.807988 0.315155 0.788728 -0.572906 0.222908 0.344253 0.174644 -0.922491 0.410403 0.855714 0.315155 0.844428 -0.487086 0.222908 0.324263 0.209438 -0.922491 0.319352 0.893695 0.315155 0.890431 -0.396792 0.222908 0.300526 0.242270 -0.922491 0.223927 0.922244 0.315155 0.927114 -0.301283 0.222908 0.273480 0.272433 -0.922491 0.126036 0.940634 0.315155 0.953585 -0.202456 0.222908 0.243720 0.299352 -0.922491 0.027705 0.948636 0.315155 0.969450 -0.102368 0.222908 0.211004 0.323247 -0.922491 -0.071871 0.946315 0.315155 0.974840 -0.000199 0.222908 0.175963 0.343581 -0.922491 -0.170656 0.933570 0.315155 0.969491 0.101973 0.222908 0.138984 0.360131 -0.922491 -0.267561 0.910543 0.315155 0.953465 0.203021 0.222908 0.100847 0.372613 -0.922491 -0.360641 0.877847 0.315155 0.927237 0.300905 0.222908 0.061239 0.381131 -0.922491 -0.450659 0.835214 0.315155 0.890593 0.396429 0.222908 0.020957 0.385450 -0.922491 -0.535714 0.783382 0.315155 0.844140 0.487586 0.222908 -0.019557 0.385524 -0.922491 -0.614868 0.722921 0.315155 0.788388 0.573373 0.222908 -0.059473 0.381410 -0.922491 -0.686594 0.655184 0.315155 0.724605 0.652120 0.222908 -0.099120 0.373076 -0.922491 -0.751480 0.579616 0.315155 0.652267 0.724472 0.222908 -0.137676 0.360633 -0.922491 -0.808089 0.497663 0.315155 0.572745 0.788844 0.222908 -0.174370 0.344392 -0.922491 -0.855387 0.411084 0.315155 0.487758 0.844040 0.222908 -0.209504 0.324220 -0.922491 -0.893761 0.319170 0.315155 0.396611 0.890512 0.222908 -0.242331 0.300477 -0.922491 -0.922289 0.223739 0.315155 0.301094 0.927175 0.222908 -0.272489 0.273424 -0.922491 -0.940659 0.125844 0.315155 0.202261 0.953626 0.222908 -0.299401 0.243659 -0.922491 -0.948641 0.027512 0.315155 0.102170 0.969471 0.222908 -0.323290 0.210938 -0.922491 -0.946300 -0.072064 0.315155 0.000000 0.974840 0.222908 -0.343617 0.175893 -0.922491 -0.933536 -0.170846 0.315155 -0.102170 0.969471 0.222908 -0.360020 0.139271 -0.922491 -0.910756 -0.266836 0.315155 -0.202261 0.953626 0.222908 -0.372634 0.100771 -0.922491 -0.877773 -0.360820 0.315155 -0.301094 0.927175 0.222908 -0.381143 0.061161 -0.922491 -0.835123 -0.450830 0.315155 -0.396611 0.890512 0.222908 -0.385454 0.020878 -0.922491 -0.783273 -0.535873 0.315155 -0.487758 0.844040 0.222908 -0.385539 -0.019250 -0.922491 -0.723411 -0.614292 0.315155 -0.572745 0.788844 0.222908 -0.381398 -0.059551 -0.922491 -0.655044 -0.686727 0.315155 -0.652267 0.724472 0.222908 -0.373056 -0.099196 -0.922491 -0.579463 -0.751598 0.315155 -0.724605 0.652120 0.222908 -0.360743 -0.137388 -0.922491 -0.498306 -0.807693 0.315155 -0.788388 0.573373 0.222908 -0.344357 -0.174440 -0.922491 -0.410910 -0.855471 0.315155 -0.844140 0.487586 0.222908 -0.324178 -0.209570 -0.922491 -0.318988 -0.893825 0.315155 -0.890593 0.396429 0.222908 -0.300428 -0.242392 -0.922491 -0.223551 -0.922335 0.315155 -0.927237 0.300905 0.222908 -0.273641 -0.272271 -0.922491 -0.126594 -0.940559 0.315155 -0.953465 0.203021 0.222908 -0.243598 -0.299451 -0.922491 -0.027319 -0.948647 0.315155 -0.969491 0.101973 0.222908 0.618614 0.478495 0.623185 -0.337216 0.878090 -0.339474 -0.709649 -0.000145 0.704555 0.565058 0.540695 0.623185 -0.427389 0.837912 -0.339474 -0.705726 -0.074520 0.704555 0.505874 0.596433 0.623185 -0.512066 0.789016 -0.339474 -0.694176 -0.147381 0.704555 0.440577 0.646168 0.623185 -0.591940 0.731002 -0.339474 -0.674907 -0.219324 0.704555 0.370427 0.688785 0.623185 -0.665294 0.664937 -0.339474 -0.648203 -0.288851 0.704555 0.296921 0.723518 0.623185 -0.730729 0.592278 -0.339474 -0.614714 -0.354582 0.704555 0.219456 0.750653 0.623185 -0.788779 0.512431 -0.339474 -0.574166 -0.417055 0.704555 0.139574 0.769519 0.623185 -0.838141 0.426939 -0.339474 -0.527294 -0.474935 0.704555 0.058154 0.779910 0.623185 -0.878271 0.336744 -0.339474 -0.474613 -0.527584 0.704555 -0.023125 0.781733 0.623185 -0.908484 0.243749 -0.339474 -0.417279 -0.574004 0.704555 -0.104929 0.775004 0.623185 -0.929028 0.147191 -0.339474 -0.354821 -0.614576 0.704555 -0.185577 0.759738 0.623185 -0.939338 0.049011 -0.339474 -0.288455 -0.648379 0.704555 -0.263444 0.736368 0.623185 -0.939350 -0.048768 -0.339474 -0.219586 -0.674821 0.704555 -0.339170 0.704702 0.623185 -0.929066 -0.146950 -0.339474 -0.147651 -0.694119 0.704555 -0.411160 0.665273 0.623185 -0.908547 -0.243514 -0.339474 -0.074089 -0.705771 0.704555 -0.478117 0.618906 0.623185 -0.878296 -0.336680 -0.339474 -0.000289 -0.709649 0.704555 -0.540349 0.565388 0.623185 -0.838173 -0.426877 -0.339474 0.074089 -0.705771 0.704555 -0.596630 0.505641 0.623185 -0.788817 -0.512373 -0.339474 0.147651 -0.694119 0.704555 -0.646339 0.440325 0.623185 -0.730772 -0.592224 -0.339474 0.219586 -0.674821 0.704555 -0.688558 0.370848 0.623185 -0.665343 -0.664888 -0.339474 0.288455 -0.648379 0.704555 -0.723634 0.296640 0.623185 -0.591994 -0.730959 -0.339474 0.354821 -0.614576 0.704555 -0.750738 0.219164 0.623185 -0.512124 -0.788978 -0.339474 0.417279 -0.574004 0.704555 -0.769434 0.140044 0.623185 -0.427451 -0.837880 -0.339474 0.474613 -0.527584 0.704555 -0.779874 0.058630 0.623185 -0.337281 -0.878066 -0.339474 0.527294 -0.474935 0.704555 -0.781724 -0.023429 0.623185 -0.243396 -0.908579 -0.339474 0.574166 -0.417055 0.704555 -0.774963 -0.105230 0.623185 -0.146830 -0.929085 -0.339474 0.614714 -0.354582 0.704555 -0.759851 -0.185112 0.623185 -0.049585 -0.939308 -0.339474 0.648203 -0.288851 0.704555 -0.736266 -0.263731 0.623185 0.049134 -0.939331 -0.339474 0.674907 -0.219324 0.704555 -0.704570 -0.339444 0.623185 0.147312 -0.929008 -0.339474 0.694176 -0.147381 0.704555 -0.665524 -0.410753 0.623185 0.242959 -0.908696 -0.339474 0.705726 -0.074520 0.704555 -0.618809 -0.478243 0.623185 0.336858 -0.878228 -0.339474 0.709649 -0.000145 0.704555 -0.565278 -0.540465 0.623185 0.427048 -0.838086 -0.339474 0.705756 0.074233 0.704555 -0.505520 -0.596733 0.623185 0.512533 -0.788712 -0.339474 0.694089 0.147792 0.704555 -0.440840 -0.645988 0.623185 0.591642 -0.731243 -0.339474 0.674996 0.219049 0.704555 -0.370708 -0.688634 0.623185 0.665023 -0.665208 -0.339474 0.648320 0.288587 0.704555 -0.296493 -0.723694 0.623185 0.731079 -0.591845 -0.339474 0.614504 0.354946 0.704555 -0.219011 -0.750783 0.623185 0.789083 -0.511963 -0.339474 0.573919 0.417396 0.704555 -0.139887 -0.769462 0.623185 0.837967 -0.427280 -0.339474 0.527487 0.474720 0.704555 -0.058472 -0.779886 0.623185 0.878134 -0.337102 -0.339474 0.474828 0.527390 0.704555 0.023588 -0.781719 0.623185 0.908629 -0.243211 -0.339474 0.416938 0.574251 0.704555 0.104613 -0.775046 0.623185 0.928968 -0.147569 -0.339474 0.355071 0.614432 0.704555 0.185267 -0.759814 0.623185 0.939318 -0.049394 -0.339474 0.288719 0.648262 0.704555 0.263881 -0.736212 0.623185 0.939321 0.049325 -0.339474 0.219186 0.674951 0.704555 0.339588 -0.704501 0.623185 0.928978 0.147501 -0.339474 0.147239 0.694206 0.704555 0.410889 -0.665441 0.623185 0.908647 0.243144 -0.339474 0.074376 0.705741 0.704555 0.478369 -0.618712 0.623185 0.878159 0.337037 -0.339474 0.000000 0.709649 0.704555 0.540580 -0.565168 0.623185 0.837999 0.427218 -0.339474 -0.074376 0.705741 0.704555 0.596330 -0.505995 0.623185 0.789120 0.511905 -0.339474 -0.147239 0.694206 0.704555 0.646078 -0.440709 0.623185 0.731123 0.591791 -0.339474 -0.219186 0.674951 0.704555 0.688709 -0.370568 0.623185 0.665072 0.665159 -0.339474 -0.288719 0.648262 0.704555 0.723754 -0.296345 0.623185 0.591696 0.731200 -0.339474 -0.355071 0.614432 0.704555 0.750608 -0.219609 0.623185 0.512591 0.788675 -0.339474 -0.416938 0.574251 0.704555 0.769491 -0.139731 0.623185 0.427109 0.838054 -0.339474 -0.474828 0.527390 0.704555 0.779898 -0.058313 0.623185 0.336923 0.878203 -0.339474 -0.527487 0.474720 0.704555 0.781737 0.022965 0.623185 0.243934 0.908435 -0.339474 -0.573919 0.417396 0.704555 0.775025 0.104771 0.623185 0.147380 0.928998 -0.339474 -0.614504 0.354946 0.704555 0.759776 0.185422 0.623185 0.049203 0.939328 -0.339474 -0.648320 0.288587 0.704555 0.736158 0.264031 0.623185 -0.049516 0.939311 -0.339474 -0.674996 0.219049 0.704555 0.704771 0.339026 0.623185 -0.146761 0.929096 -0.339474 -0.694089 0.147792 0.704555 0.665357 0.411024 0.623185 -0.243329 0.908597 -0.339474 -0.705756 0.074233 0.704555 0.665801 0.393967 -0.633639 0.285490 -0.919124 -0.271488 -0.689351 -0.000140 -0.724428 0.620844 0.461578 -0.633639 0.380248 -0.884141 -0.271488 -0.685540 -0.072389 -0.724428 0.569571 0.523536 -0.633639 0.469979 -0.839889 -0.271488 -0.674321 -0.143165 -0.724428 0.511564 0.580347 -0.633639 0.555417 -0.786007 -0.271488 -0.655602 -0.213050 -0.724428 0.447922 0.630767 -0.633639 0.634737 -0.723466 -0.271488 -0.629662 -0.280589 -0.724428 0.380021 0.673859 -0.633639 0.706412 -0.653663 -0.271488 -0.597131 -0.344440 -0.724428 0.307303 0.709976 -0.633639 0.771030 -0.576026 -0.271488 -0.557743 -0.405126 -0.724428 0.231199 0.738274 -0.633639 0.827156 -0.492045 -0.271488 -0.512211 -0.461350 -0.724428 0.152550 0.758439 -0.633639 0.874170 -0.402643 -0.271488 -0.461037 -0.512493 -0.724428 0.072990 0.770178 -0.633639 0.911246 -0.309717 -0.271488 -0.405343 -0.557585 -0.724428 -0.008132 0.773586 -0.633639 0.938688 -0.212506 -0.271488 -0.344672 -0.596997 -0.724428 -0.089165 0.768473 -0.633639 0.955790 -0.112955 -0.271488 -0.280204 -0.629834 -0.724428 -0.168460 0.755064 -0.633639 0.962352 -0.013121 -0.271488 -0.213305 -0.655519 -0.724428 -0.246669 0.733250 -0.633639 0.958427 0.087812 -0.271488 -0.143427 -0.674265 -0.724428 -0.322160 0.703359 -0.633639 0.943946 0.187779 -0.271488 -0.071970 -0.685584 -0.724428 -0.393560 0.666042 -0.633639 0.919299 0.284928 -0.271488 -0.000281 -0.689351 -0.724428 -0.461199 0.621126 -0.633639 0.884373 0.379708 -0.271488 0.071970 -0.685584 -0.724428 -0.523757 0.569368 -0.633639 0.839707 0.470305 -0.271488 0.143427 -0.674265 -0.724428 -0.580546 0.511338 -0.633639 0.785791 0.555722 -0.271488 0.213305 -0.655519 -0.724428 -0.630493 0.448308 -0.633639 0.723854 0.634295 -0.271488 0.280204 -0.629834 -0.724428 -0.674006 0.379758 -0.633639 0.653389 0.706666 -0.271488 0.344672 -0.596997 -0.724428 -0.710096 0.307026 -0.633639 0.575726 0.771254 -0.271488 0.405343 -0.557585 -0.724428 -0.738132 0.231650 -0.633639 0.492550 0.826855 -0.271488 0.461037 -0.512493 -0.724428 -0.758346 0.153013 -0.633639 0.403177 0.873924 -0.271488 0.512211 -0.461350 -0.724428 -0.770206 0.072690 -0.633639 0.309363 0.911367 -0.271488 0.557743 -0.405126 -0.724428 -0.773583 -0.008433 -0.633639 0.212141 0.938771 -0.271488 0.597131 -0.344440 -0.724428 -0.768527 -0.088695 -0.633639 0.113539 0.955721 -0.271488 0.629662 -0.280589 -0.724428 -0.754999 -0.168754 -0.633639 0.012747 0.962357 -0.271488 0.655602 -0.213050 -0.724428 -0.733154 -0.246954 -0.633639 -0.088185 0.958393 -0.271488 0.674321 -0.143165 -0.724428 -0.703556 -0.321730 -0.633639 -0.187202 0.944060 -0.271488 0.685540 -0.072389 -0.724428 -0.665962 -0.393696 -0.633639 -0.285115 0.919241 -0.271488 0.689351 -0.000140 -0.724428 -0.621032 -0.461325 -0.633639 -0.379888 0.884296 -0.271488 0.685569 0.072109 -0.724428 -0.569261 -0.523873 -0.633639 -0.470476 0.839611 -0.271488 0.674236 0.143565 -0.724428 -0.511801 -0.580139 -0.633639 -0.555097 0.786233 -0.271488 0.655689 0.212783 -0.724428 -0.448179 -0.630584 -0.633639 -0.634442 0.723725 -0.271488 0.629777 0.280332 -0.724428 -0.379621 -0.674084 -0.633639 -0.706800 0.653245 -0.271488 0.596927 0.344793 -0.724428 -0.306882 -0.710158 -0.633639 -0.771372 0.575569 -0.271488 0.557503 0.405457 -0.724428 -0.231500 -0.738179 -0.633639 -0.826955 0.492381 -0.271488 0.512399 0.461142 -0.724428 -0.152859 -0.758377 -0.633639 -0.874006 0.402999 -0.271488 0.461246 0.512305 -0.724428 -0.072533 -0.770221 -0.633639 -0.911429 0.309177 -0.271488 0.405013 0.557826 -0.724428 0.007817 -0.773589 -0.633639 -0.938601 0.212889 -0.271488 0.344915 0.596857 -0.724428 0.088852 -0.768509 -0.633639 -0.955744 0.113344 -0.271488 0.280460 0.629719 -0.724428 0.168908 -0.754964 -0.633639 -0.962360 0.012551 -0.271488 0.212917 0.655646 -0.724428 0.247103 -0.733104 -0.633639 -0.958375 -0.088380 -0.271488 0.143028 0.674350 -0.724428 0.321873 -0.703490 -0.633639 -0.944022 -0.187394 -0.271488 0.072249 0.685554 -0.724428 0.393832 -0.665881 -0.633639 -0.919183 -0.285302 -0.271488 0.000000 0.689351 -0.724428 0.461452 -0.620938 -0.633639 -0.884219 -0.380068 -0.271488 -0.072249 0.685554 -0.724428 0.523420 -0.569678 -0.633639 -0.839985 -0.469808 -0.271488 -0.143028 0.674350 -0.724428 0.580243 -0.511683 -0.633639 -0.786120 -0.555257 -0.271488 -0.212917 0.655646 -0.724428 0.630676 -0.448051 -0.633639 -0.723595 -0.634590 -0.271488 -0.280460 0.629719 -0.724428 0.674161 -0.379484 -0.633639 -0.653101 -0.706933 -0.271488 -0.344915 0.596857 -0.724428 0.709914 -0.307447 -0.633639 -0.576183 -0.770913 -0.271488 -0.405013 0.557826 -0.724428 0.738227 -0.231350 -0.633639 -0.492213 -0.827055 -0.271488 -0.461246 0.512305 -0.724428 0.758408 -0.152704 -0.633639 -0.402821 -0.874088 -0.271488 -0.512399 0.461142 -0.724428 0.770163 -0.073147 -0.633639 -0.309903 -0.911183 -0.271488 -0.557503 0.405457 -0.724428 0.773587 0.007975 -0.633639 -0.212698 -0.938645 -0.271488 -0.596927 0.344793 -0.724428 0.768491 0.089008 -0.633639 -0.113150 -0.955767 -0.271488 -0.629777 0.280332 -0.724428 0.754930 0.169061 -0.633639 -0.012355 -0.962362 -0.271488 -0.655689 0.212783 -0.724428 0.733300 0.246519 -0.633639 0.087617 -0.958445 -0.271488 -0.674236 0.143565 -0.724428 0.703425 0.322017 -0.633639 0.187586 -0.943984 -0.271488 -0.685569 0.072109 -0.724428 -0.107510 -0.974907 -0.194931 0.471528 -0.222613 0.853290 -0.875273 -0.000178 0.483629 -0.004741 -0.980805 -0.194931 0.492263 -0.171968 0.853290 -0.870434 -0.091912 0.483629 0.097105 -0.975998 -0.194931 0.507455 -0.119935 0.853290 -0.856189 -0.181778 0.483629 0.198862 -0.960446 -0.194931 0.517231 -0.066090 0.853290 -0.832422 -0.270511 0.483629 0.298428 -0.934314 -0.194931 0.521309 -0.011516 0.853290 -0.799486 -0.356265 0.483629 0.393809 -0.898285 -0.194931 0.519688 0.042664 0.853290 -0.758181 -0.437337 0.483629 0.485787 -0.852064 -0.194931 0.512354 0.096896 0.853290 -0.708170 -0.514391 0.483629 0.572414 -0.796457 -0.194931 0.499377 0.150061 0.853290 -0.650358 -0.585779 0.483629 0.652736 -0.732078 -0.194931 0.480899 0.201573 0.853290 -0.585382 -0.650715 0.483629 0.725208 -0.660360 -0.194931 0.457375 0.250407 0.853290 -0.514667 -0.707970 0.483629 0.790424 -0.580716 -0.194931 0.428611 0.296964 0.853290 -0.437632 -0.758011 0.483629 0.846934 -0.494676 -0.194931 0.395127 0.340250 0.853290 -0.355777 -0.799704 0.483629 0.893712 -0.404080 -0.194931 0.357670 0.379431 0.853290 -0.270835 -0.832317 0.483629 0.931140 -0.308188 -0.194931 0.315933 0.414828 0.853290 -0.182111 -0.856118 0.483629 0.958312 -0.208900 -0.194931 0.270716 0.445655 0.853290 -0.091380 -0.870490 0.483629 0.974841 -0.108106 -0.194931 0.222901 0.471392 0.853290 -0.000357 -0.875273 0.483629 0.980802 -0.005340 -0.194931 0.172268 0.492158 0.853290 0.091380 -0.870490 0.483629 0.975960 0.097485 -0.194931 0.119738 0.507502 0.853290 0.182111 -0.856118 0.483629 0.960368 0.199235 -0.194931 0.065889 0.517256 0.853290 0.270835 -0.832317 0.483629 0.934496 0.297857 -0.194931 0.011835 0.521302 0.853290 0.355777 -0.799704 0.483629 0.898132 0.394158 -0.194931 -0.042866 0.519671 0.853290 0.437632 -0.758011 0.483629 0.851875 0.486118 -0.194931 -0.097096 0.512316 0.853290 0.514667 -0.707970 0.483629 0.796807 0.571927 -0.194931 -0.149756 0.499468 0.853290 0.585382 -0.650715 0.483629 0.732476 0.652288 -0.194931 -0.201279 0.481022 0.853290 0.650358 -0.585779 0.483629 0.660078 0.725465 -0.194931 -0.250585 0.457277 0.853290 0.708170 -0.514391 0.483629 0.580409 0.790650 -0.194931 -0.297131 0.428496 0.853290 0.758181 -0.437337 0.483629 0.495193 0.846632 -0.194931 -0.340009 0.395335 0.853290 0.799486 -0.356265 0.483629 0.403733 0.893869 -0.194931 -0.379570 0.357522 0.853290 0.832422 -0.270511 0.483629 0.307825 0.931260 -0.194931 -0.414950 0.315771 0.853290 0.856189 -0.181778 0.483629 0.209486 0.958185 -0.194931 -0.445489 0.270988 0.853290 0.870434 -0.091912 0.483629 0.107907 0.974863 -0.194931 -0.471437 0.222805 0.853290 0.875273 -0.000178 0.483629 0.005140 0.980803 -0.194931 -0.492193 0.172168 0.853290 0.870471 0.091558 0.483629 -0.097683 0.975940 -0.194931 -0.507526 0.119635 0.853290 0.856081 0.182285 0.483629 -0.198470 0.960527 -0.194931 -0.517204 0.066301 0.853290 0.832532 0.270172 0.483629 -0.298047 0.934435 -0.194931 -0.521304 0.011729 0.853290 0.799631 0.355940 0.483629 -0.394341 0.898052 -0.194931 -0.519662 -0.042972 0.853290 0.757922 0.437786 0.483629 -0.486292 0.851776 -0.194931 -0.512296 -0.097200 0.853290 0.707865 0.514811 0.483629 -0.572089 0.796690 -0.194931 -0.499438 -0.149858 0.853290 0.650596 0.585515 0.483629 -0.652438 0.732343 -0.194931 -0.480981 -0.201377 0.853290 0.585647 0.650477 0.483629 -0.725599 0.659930 -0.194931 -0.457226 -0.250678 0.853290 0.514247 0.708275 0.483629 -0.790188 0.581038 -0.194931 -0.428732 -0.296789 0.853290 0.437941 0.757833 0.483629 -0.846733 0.495021 -0.194931 -0.395265 -0.340089 0.853290 0.356102 0.799559 0.483629 -0.893951 0.403551 -0.194931 -0.357445 -0.379643 0.853290 0.270342 0.832477 0.483629 -0.931323 0.307636 -0.194931 -0.315687 -0.415015 0.853290 0.181603 0.856226 0.483629 -0.958227 0.209290 -0.194931 -0.270897 -0.445545 0.853290 0.091735 0.870452 0.483629 -0.974885 0.107709 -0.194931 -0.222709 -0.471483 0.853290 0.000000 0.875273 0.483629 -0.980804 0.004941 -0.194931 -0.172068 -0.492228 0.853290 -0.091735 0.870452 0.483629 -0.976018 -0.096906 -0.194931 -0.120039 -0.507431 0.853290 -0.181603 0.856226 0.483629 -0.960486 -0.198666 -0.194931 -0.066195 -0.517217 0.853290 -0.270342 0.832477 0.483629 -0.934375 -0.298238 -0.194931 -0.011623 -0.521306 0.853290 -0.356102 0.799559 0.483629 -0.897971 -0.394524 -0.194931 0.043078 -0.519653 0.853290 -0.437941 0.757833 0.483629 -0.852163 -0.485613 -0.194931 0.096792 -0.512374 0.853290 -0.514247 0.708275 0.483629 -0.796574 -0.572252 -0.194931 0.149959 -0.499407 0.853290 -0.585647 0.650477 0.483629 -0.732211 -0.652587 -0.194931 0.201475 -0.480940 0.853290 -0.650596 0.585515 0.483629 -0.660508 -0.725073 -0.194931 0.250314 -0.457426 0.853290 -0.707865 0.514811 0.483629 -0.580877 -0.790306 -0.194931 0.296877 -0.428672 0.853290 -0.757922 0.437786 0.483629 -0.494848 -0.846834 -0.194931 0.340170 -0.395196 0.853290 -0.799631 0.355940 0.483629 -0.403369 -0.894033 -0.194931 0.379716 -0.357367 0.853290 -0.832532 0.270172 0.483629 -0.308377 -0.931077 -0.194931 0.414763 -0.316017 0.853290 -0.856081 0.182285 0.483629 -0.209095 -0.958270 -0.194931 0.445600 -0.270807 0.853290 -0.870471 0.091558 0.483629 -0.868926 0.119333 -0.480340 -0.104390 -0.992854 -0.057820 -0.483807 -0.000099 0.875174 -0.876648 0.027606 -0.480340 0.000243 -0.998327 -0.057820 -0.481133 -0.050804 0.875174 -0.874777 -0.063550 -0.480340 0.103881 -0.992908 -0.057820 -0.473259 -0.100478 0.875174 -0.863299 -0.154883 -0.480340 0.207373 -0.976552 -0.057820 -0.460122 -0.149525 0.875174 -0.842311 -0.244510 -0.480340 0.308580 -0.949439 -0.057820 -0.441916 -0.196926 0.875174 -0.812377 -0.330631 -0.480340 0.405477 -0.912275 -0.057820 -0.419085 -0.241738 0.875174 -0.773250 -0.413953 -0.480340 0.498856 -0.864754 -0.057820 -0.391441 -0.284330 0.875174 -0.725607 -0.492716 -0.480340 0.586741 -0.807708 -0.057820 -0.359485 -0.323790 0.875174 -0.669970 -0.566051 -0.480340 0.668163 -0.741764 -0.057820 -0.323570 -0.359683 0.875174 -0.607587 -0.632544 -0.480340 0.741558 -0.668393 -0.057820 -0.284482 -0.391330 0.875174 -0.537946 -0.692740 -0.480340 0.807526 -0.586991 -0.057820 -0.241901 -0.418991 0.875174 -0.462379 -0.745305 -0.480340 0.864600 -0.499124 -0.057820 -0.196656 -0.442036 0.875174 -0.382508 -0.789279 -0.480340 0.911743 -0.406671 -0.057820 -0.149704 -0.460063 0.875174 -0.297680 -0.825021 -0.480340 0.949344 -0.308874 -0.057820 -0.100662 -0.473220 0.875174 -0.209572 -0.851677 -0.480340 0.976488 -0.207674 -0.057820 -0.050511 -0.481164 0.875174 -0.119864 -0.868853 -0.480340 0.992790 -0.104996 -0.057820 -0.000197 -0.483807 0.875174 -0.028142 -0.876631 -0.480340 0.998327 -0.000367 -0.057820 0.050511 -0.481164 0.875174 0.063890 -0.874752 -0.480340 0.992867 0.104267 -0.057820 0.100662 -0.473220 0.875174 0.155219 -0.863238 -0.480340 0.976471 0.207753 -0.057820 0.149704 -0.460063 0.875174 0.243995 -0.842461 -0.480340 0.949628 0.308000 -0.057820 0.196656 -0.442036 0.875174 0.330947 -0.812248 -0.480340 0.912117 0.405831 -0.057820 0.241901 -0.418991 0.875174 0.414254 -0.773089 -0.480340 0.864560 0.499193 -0.057820 0.284482 -0.391330 0.875174 0.492272 -0.725907 -0.480340 0.808066 0.586248 -0.057820 0.323570 -0.359683 0.875174 0.565642 -0.670316 -0.480340 0.742172 0.667710 -0.057820 0.359485 -0.323790 0.875174 0.632780 -0.607341 -0.480340 0.668104 0.741818 -0.057820 0.391441 -0.284330 0.875174 0.692949 -0.537676 -0.480340 0.586677 0.807754 -0.057820 0.419085 -0.241738 0.875174 0.745022 -0.462834 -0.480340 0.499652 0.864294 -0.057820 0.441916 -0.196926 0.875174 0.789427 -0.382201 -0.480340 0.406316 0.911902 -0.057820 0.460122 -0.149525 0.875174 0.825137 -0.297359 -0.480340 0.308504 0.949464 -0.057820 0.473259 -0.100478 0.875174 0.851548 -0.210092 -0.480340 0.208271 0.976361 -0.057820 0.481133 -0.050804 0.875174 0.868878 -0.119687 -0.480340 0.104794 0.992812 -0.057820 0.483807 -0.000099 0.875174 0.876637 -0.027963 -0.480340 0.000163 0.998327 -0.057820 0.481153 0.050609 0.875174 0.874739 0.064069 -0.480340 -0.104469 0.992846 -0.057820 0.473199 0.100758 0.875174 0.863362 0.154531 -0.480340 -0.206975 0.976636 -0.057820 0.460182 0.149338 0.875174 0.842411 0.244167 -0.480340 -0.308193 0.949565 -0.057820 0.441996 0.196746 0.875174 0.812181 0.331113 -0.480340 -0.406017 0.912035 -0.057820 0.418942 0.241986 0.875174 0.773005 0.414412 -0.480340 -0.499369 0.864458 -0.057820 0.391273 0.284562 0.875174 0.725807 0.492420 -0.480340 -0.586412 0.807946 -0.057820 0.359617 0.323643 0.875174 0.670201 0.565778 -0.480340 -0.667861 0.742036 -0.057820 0.323717 0.359551 0.875174 0.607212 0.632904 -0.480340 -0.741954 0.667953 -0.057820 0.284250 0.391499 0.875174 0.538228 0.692520 -0.480340 -0.807287 0.587320 -0.057820 0.242072 0.418892 0.875174 0.462682 0.745116 -0.480340 -0.864396 0.499476 -0.057820 0.196836 0.441956 0.875174 0.382041 0.789505 -0.480340 -0.911984 0.406130 -0.057820 0.149431 0.460152 0.875174 0.297191 0.825198 -0.480340 -0.949527 0.308311 -0.057820 0.100381 0.473279 0.875174 0.209919 0.851591 -0.480340 -0.976403 0.208072 -0.057820 0.050706 0.481143 0.875174 0.119510 0.868902 -0.480340 -0.992833 0.104592 -0.057820 0.000000 0.483807 0.875174 0.027785 0.876642 -0.480340 -0.998327 -0.000040 -0.057820 -0.050706 0.481143 0.875174 -0.063372 0.874790 -0.480340 -0.992929 -0.103679 -0.057820 -0.100381 0.473279 0.875174 -0.154707 0.863330 -0.480340 -0.976594 -0.207174 -0.057820 -0.149431 0.460152 0.875174 -0.244338 0.842361 -0.480340 -0.949502 -0.308387 -0.057820 -0.196836 0.441956 0.875174 -0.331278 0.812113 -0.480340 -0.911952 -0.406203 -0.057820 -0.242072 0.418892 0.875174 -0.413796 0.773335 -0.480340 -0.864855 -0.498680 -0.057820 -0.284250 0.391499 0.875174 -0.492568 0.725707 -0.480340 -0.807827 -0.586577 -0.057820 -0.323717 0.359551 0.875174 -0.565914 0.670085 -0.480340 -0.741900 -0.668012 -0.057820 -0.359617 0.323643 0.875174 -0.632420 0.607716 -0.480340 -0.668544 -0.741422 -0.057820 -0.391273 0.284562 0.875174 -0.692630 0.538087 -0.480340 -0.587155 -0.807407 -0.057820 -0.418942 0.241986 0.875174 -0.745211 0.462531 -0.480340 -0.499300 -0.864498 -0.057820 -0.441996 0.196746 0.875174 -0.789583 0.381880 -0.480340 -0.405944 -0.912067 -0.057820 -0.460182 0.149338 0.875174 -0.824961 0.297848 -0.480340 -0.309067 -0.949281 -0.057820 -0.473199 0.100758 0.875174 -0.851634 0.209746 -0.480340 -0.207873 -0.976445 -0.057820 -0.481153 0.050609 0.875174 0.100238 -0.991723 0.080236 0.773615 0.128396 0.620512 -0.625678 -0.000127 0.780082 0.203626 -0.975755 0.080236 0.755897 0.208769 0.620512 -0.622218 -0.065702 0.780082 0.303822 -0.949344 0.080236 0.730140 0.286113 0.620512 -0.612036 -0.129941 0.780082 0.401646 -0.912273 0.080236 0.696132 0.361061 0.620512 -0.595046 -0.193371 0.780082 0.495047 -0.865153 0.080236 0.654456 0.432032 0.620512 -0.571502 -0.254672 0.780082 0.582186 -0.809087 0.080236 0.606070 0.497639 0.620512 -0.541976 -0.312625 0.780082 0.663778 -0.743614 0.080236 0.550576 0.558419 0.620512 -0.506226 -0.367706 0.780082 0.738058 -0.669949 0.080236 0.489018 0.613047 0.620512 -0.464900 -0.418737 0.780082 0.804209 -0.588906 0.080236 0.422072 0.660924 0.620512 -0.418453 -0.465156 0.780082 0.861000 -0.502237 0.080236 0.351180 0.701169 0.620512 -0.367903 -0.506083 0.780082 0.908896 -0.409232 0.080236 0.275758 0.734114 0.620512 -0.312836 -0.541855 0.780082 0.946781 -0.311719 0.080236 0.197299 0.758972 0.620512 -0.254322 -0.571658 0.780082 0.974025 -0.211747 0.080236 0.117442 0.775353 0.620512 -0.193603 -0.594971 0.780082 0.990854 -0.108496 0.080236 0.035533 0.783392 0.620512 -0.130179 -0.611985 0.780082 0.996768 -0.004050 0.080236 -0.046768 0.782801 0.620512 -0.065322 -0.622258 0.780082 0.991784 0.099633 0.080236 -0.127923 0.773693 0.620512 -0.000255 -0.625678 0.780082 0.975880 0.203030 0.080236 -0.208307 0.756025 0.620512 0.065322 -0.622258 0.780082 0.949226 0.304191 0.080236 -0.286397 0.730029 0.620512 0.130179 -0.611985 0.780082 0.912117 0.402001 0.080236 -0.361332 0.695992 0.620512 0.193603 -0.594971 0.780082 0.865456 0.494518 0.080236 -0.431632 0.654720 0.620512 0.254322 -0.571658 0.780082 0.808860 0.582501 0.080236 -0.497874 0.605876 0.620512 0.312836 -0.541855 0.780082 0.743355 0.664067 0.080236 -0.558633 0.550359 0.620512 0.367903 -0.506083 0.780082 0.670400 0.737649 0.080236 -0.612749 0.489392 0.620512 0.418453 -0.465156 0.780082 0.589397 0.803849 0.080236 -0.660666 0.422476 0.620512 0.464900 -0.418737 0.780082 0.501902 0.861195 0.080236 -0.701306 0.350907 0.620512 0.506226 -0.367706 0.780082 0.408878 0.909055 0.080236 -0.734221 0.275473 0.620512 0.541976 -0.312625 0.780082 0.312298 0.946590 0.080236 -0.758851 0.197763 0.620512 0.571502 -0.254672 0.780082 0.211368 0.974108 0.080236 -0.775399 0.117140 0.620512 0.595046 -0.193371 0.780082 0.108111 0.990896 0.080236 -0.783406 0.035228 0.620512 0.612036 -0.129941 0.780082 0.004659 0.996765 0.080236 -0.782830 -0.046290 0.620512 0.622218 -0.065702 0.780082 -0.099835 0.991764 0.080236 -0.773667 -0.128081 0.620512 0.625678 -0.000127 0.780082 -0.203229 0.975838 0.080236 -0.755982 -0.208461 0.620512 0.622245 0.065449 0.780082 -0.304384 0.949164 0.080236 -0.729970 -0.286546 0.620512 0.611959 0.130304 0.780082 -0.401275 0.912437 0.080236 -0.696279 -0.360778 0.620512 0.595125 0.193129 0.780082 -0.494695 0.865355 0.080236 -0.654632 -0.431766 0.620512 0.571606 0.254439 0.780082 -0.582666 0.808742 0.080236 -0.605775 -0.497998 0.620512 0.541791 0.312946 0.780082 -0.664219 0.743220 0.080236 -0.550245 -0.558745 0.620512 0.506008 0.368006 0.780082 -0.737785 0.670250 0.080236 -0.489267 -0.612848 0.620512 0.465070 0.418548 0.780082 -0.803969 0.589233 0.080236 -0.422342 -0.660752 0.620512 0.418642 0.464985 0.780082 -0.861297 0.501727 0.080236 -0.350764 -0.701377 0.620512 0.367603 0.506301 0.780082 -0.908729 0.409602 0.080236 -0.276057 -0.734001 0.620512 0.313056 0.541727 0.780082 -0.946653 0.312105 0.080236 -0.197608 -0.758891 0.620512 0.254555 0.571554 0.780082 -0.974151 0.211170 0.080236 -0.116983 -0.775423 0.620512 0.193250 0.595086 0.780082 -0.990918 0.107909 0.080236 -0.035068 -0.783413 0.620512 0.129817 0.612062 0.780082 -0.996766 0.004456 0.080236 0.046449 -0.782820 0.620512 0.065576 0.622232 0.780082 -0.991743 -0.100037 0.080236 0.128239 -0.773641 0.620512 0.000000 0.625678 0.780082 -0.975797 -0.203427 0.080236 0.208615 -0.755940 0.620512 -0.065576 0.622232 0.780082 -0.949406 -0.303628 0.080236 0.285964 -0.730198 0.620512 -0.129817 0.612062 0.780082 -0.912355 -0.401461 0.080236 0.360919 -0.696206 0.620512 -0.193250 0.595086 0.780082 -0.865254 -0.494871 0.080236 0.431899 -0.654544 0.620512 -0.254555 0.571554 0.780082 -0.808623 -0.582830 0.080236 0.498121 -0.605673 0.620512 -0.313056 0.541727 0.780082 -0.743749 -0.663626 0.080236 0.558306 -0.550690 0.620512 -0.367603 0.506301 0.780082 -0.670100 -0.737922 0.080236 0.612948 -0.489142 0.620512 -0.418642 0.464985 0.780082 -0.589070 -0.804089 0.080236 0.660838 -0.422207 0.620512 -0.465070 0.418548 0.780082 -0.502412 -0.860897 0.080236 0.701097 -0.351323 0.620512 -0.506008 0.368006 0.780082 -0.409417 -0.908812 0.080236 0.734057 -0.275908 0.620512 -0.541791 0.312946 0.780082 -0.311912 -0.946717 0.080236 0.758932 -0.197454 0.620512 -0.571606 0.254439 0.780082 -0.210972 -0.974194 0.080236 0.775446 -0.116825 0.620512 -0.595125 0.193129 0.780082 -0.108698 -0.990831 0.080236 0.783385 -0.035692 0.620512 -0.611959 0.130304 0.780082 -0.004253 -0.996767 0.080236 0.782811 0.046609 0.620512 -0.622245 0.065449 0.780082 -0.742367 0.587211 -0.322604 -0.538518 -0.809434 -0.234128 -0.398609 -0.000081 0.917121 -0.799823 0.506172 -0.322604 -0.450717 -0.861416 -0.234128 -0.396405 -0.041858 0.917121 -0.848048 0.420405 -0.322604 -0.358856 -0.903552 -0.234128 -0.389918 -0.082784 0.917121 -0.887439 0.329209 -0.322604 -0.262181 -0.936186 -0.234128 -0.379095 -0.123194 0.917121 -0.917055 0.234385 -0.322604 -0.162618 -0.958509 -0.234128 -0.364095 -0.162247 0.917121 -0.936432 0.137917 -0.322604 -0.062234 -0.970212 -0.234128 -0.345284 -0.199168 0.917121 -0.945730 0.039013 -0.322604 0.039794 -0.971391 -0.234128 -0.322509 -0.234260 0.917121 -0.944610 -0.060321 -0.322604 0.141383 -0.961870 -0.234128 -0.296180 -0.266771 0.917121 -0.933086 -0.158991 -0.322604 0.241415 -0.941755 -0.234128 -0.266590 -0.296343 0.917121 -0.911539 -0.254998 -0.322604 0.337877 -0.911605 -0.234128 -0.234385 -0.322417 0.917121 -0.879793 -0.349129 -0.322604 0.431559 -0.871172 -0.234128 -0.199303 -0.345207 0.917121 -0.838356 -0.439415 -0.322604 0.520487 -0.821144 -0.234128 -0.162025 -0.364194 0.917121 -0.788210 -0.524073 -0.322604 0.602920 -0.762674 -0.234128 -0.123341 -0.379047 0.917121 -0.728942 -0.603797 -0.322604 0.679533 -0.695283 -0.234128 -0.082935 -0.389886 0.917121 -0.661645 -0.676870 -0.322604 0.748661 -0.620234 -0.234128 -0.041616 -0.396431 0.917121 -0.587665 -0.742008 -0.322604 0.809104 -0.539012 -0.234128 -0.000162 -0.398609 0.917121 -0.506661 -0.799513 -0.322604 0.861141 -0.451244 -0.234128 0.041616 -0.396431 0.917121 -0.420075 -0.848212 -0.322604 0.903692 -0.358505 -0.234128 0.082935 -0.389886 0.917121 -0.328863 -0.887567 -0.322604 0.936288 -0.261817 -0.234128 0.123341 -0.379047 0.917121 -0.234946 -0.916912 -0.322604 0.958409 -0.163204 -0.234128 0.162025 -0.364194 0.917121 -0.137553 -0.936486 -0.322604 0.970236 -0.061857 -0.234128 0.199303 -0.345207 0.917121 -0.038645 -0.945745 -0.322604 0.971375 0.040172 -0.234128 0.234385 -0.322417 0.917121 0.059744 -0.944647 -0.322604 0.961957 0.140796 -0.234128 0.266590 -0.296343 0.917121 0.158421 -0.933182 -0.322604 0.941902 0.240840 -0.234128 0.296180 -0.266771 0.917121 0.255353 -0.911439 -0.322604 0.911473 0.338232 -0.234128 0.322509 -0.234260 0.917121 0.349472 -0.879657 -0.322604 0.871004 0.431898 -0.234128 0.345284 -0.199168 0.917121 0.438903 -0.838624 -0.322604 0.821461 0.519985 -0.234128 0.364095 -0.162247 0.917121 0.524379 -0.788006 -0.322604 0.762439 0.603217 -0.234128 0.379095 -0.123194 0.917121 0.604080 -0.728707 -0.322604 0.695019 0.679804 -0.234128 0.389918 -0.082784 0.917121 0.676465 -0.662058 -0.322604 0.620691 0.748282 -0.234128 0.396405 -0.041858 0.917121 0.742128 -0.587514 -0.322604 0.538847 0.809214 -0.234128 0.398609 -0.000081 0.917121 0.799617 -0.506498 -0.322604 0.451068 0.861233 -0.234128 0.396423 0.041696 0.917121 0.848297 -0.419903 -0.322604 0.358321 0.903764 -0.234128 0.389869 0.083015 0.917121 0.887305 -0.329570 -0.322604 0.262562 0.936080 -0.234128 0.379145 0.123039 0.917121 0.916960 -0.234759 -0.322604 0.163009 0.958443 -0.234128 0.364161 0.162099 0.917121 0.936514 -0.137362 -0.322604 0.061659 0.970248 -0.234128 0.345166 0.199373 0.917121 0.945753 -0.038452 -0.322604 -0.040369 0.971367 -0.234128 0.322370 0.234451 0.917121 0.944634 0.059937 -0.322604 -0.140991 0.961928 -0.234128 0.296289 0.266650 0.917121 0.933150 0.158611 -0.322604 -0.241032 0.941853 -0.234128 0.266710 0.296235 0.917121 0.911387 0.255538 -0.322604 -0.338417 0.911404 -0.234128 0.234194 0.322556 0.917121 0.879935 0.348771 -0.322604 -0.431204 0.871348 -0.234128 0.199443 0.345126 0.917121 0.838535 0.439074 -0.322604 -0.520153 0.821356 -0.234128 0.162173 0.364128 0.917121 0.787899 0.524540 -0.322604 -0.603372 0.762316 -0.234128 0.123117 0.379120 0.917121 0.728584 0.604229 -0.322604 -0.679945 0.694880 -0.234128 0.082704 0.389935 0.917121 0.661921 0.676600 -0.322604 -0.748409 0.620539 -0.234128 0.041777 0.396414 0.917121 0.587363 0.742248 -0.322604 -0.809324 0.538683 -0.234128 0.000000 0.398609 0.917121 0.506335 0.799720 -0.322604 -0.861324 0.450893 -0.234128 -0.041777 0.396414 0.917121 0.420578 0.847963 -0.322604 -0.903479 0.359040 -0.234128 -0.082704 0.389935 0.917121 0.329389 0.887372 -0.322604 -0.936133 0.262372 -0.234128 -0.123117 0.379120 0.917121 0.234572 0.917007 -0.322604 -0.958476 0.162813 -0.234128 -0.162173 0.364128 0.917121 0.137171 0.936542 -0.322604 -0.970261 0.061462 -0.234128 -0.199443 0.345126 0.917121 0.039205 0.945722 -0.322604 -0.971399 -0.039596 -0.234128 -0.234194 0.322556 0.917121 -0.060129 0.944622 -0.322604 -0.961899 -0.141187 -0.234128 -0.266710 0.296235 0.917121 -0.158801 0.933118 -0.322604 -0.941804 -0.241224 -0.234128 -0.296289 0.266650 0.917121 -0.254812 0.911591 -0.322604 -0.911673 -0.337691 -0.234128 -0.322370 0.234451 0.917121 -0.348950 0.879864 -0.322604 -0.871260 -0.431382 -0.234128 -0.345166 0.199373 0.917121 -0.439244 0.838446 -0.322604 -0.821250 -0.520320 -0.234128 -0.364161 0.162099 0.917121 -0.524700 0.787792 -0.322604 -0.762193 -0.603527 -0.234128 -0.379145 0.123039 0.917121 -0.603648 0.729065 -0.322604 -0.695421 -0.679392 -0.234128 -0.389869 0.083015 0.917121 -0.676735 0.661783 -0.322604 -0.620386 -0.748535 -0.234128 -0.396423 0.041696 0.917121 -0.274116 -0.879743 -0.388475 0.507493 -0.475450 0.718608 -0.816891 -0.000166 0.576792 -0.180403 -0.903627 -0.388475 0.554529 -0.419642 0.718608 -0.812374 -0.085781 0.576792 -0.085621 -0.917473 -0.388475 0.595097 -0.359808 0.718608 -0.799080 -0.169653 0.576792 0.011009 -0.921393 -0.388475 0.629530 -0.295456 0.718608 -0.776898 -0.252468 0.576792 0.107517 -0.915165 -0.388475 0.657029 -0.227849 0.718608 -0.746159 -0.332502 0.576792 0.201942 -0.899059 -0.388475 0.677132 -0.158410 0.718608 -0.707610 -0.408166 0.576792 0.295057 -0.872942 -0.388475 0.690006 -0.086570 0.718608 -0.660934 -0.480080 0.576792 0.384923 -0.837211 -0.388475 0.695279 -0.013775 0.718608 -0.606978 -0.546707 0.576792 0.470548 -0.792257 -0.388475 0.692893 0.059171 0.718608 -0.546336 -0.607312 0.576792 0.550252 -0.739128 -0.388475 0.683007 0.130782 0.718608 -0.480338 -0.660747 0.576792 0.624688 -0.677386 -0.388475 0.665538 0.201646 0.718608 -0.408441 -0.707451 0.576792 0.692242 -0.608184 -0.388475 0.640739 0.270288 0.718608 -0.332046 -0.746362 0.576792 0.751639 -0.533035 -0.388475 0.609218 0.335345 0.718608 -0.252770 -0.776800 0.576792 0.803365 -0.451322 -0.388475 0.570716 0.397348 0.718608 -0.169964 -0.799014 0.576792 0.846243 -0.364638 -0.388475 0.525928 0.454975 0.718608 -0.085285 -0.812427 0.576792 0.879575 -0.274654 -0.388475 0.475760 0.507203 0.718608 -0.000333 -0.816891 0.576792 0.903517 -0.180955 -0.388475 0.419981 0.554272 0.718608 0.085285 -0.812427 0.576792 0.917506 -0.085264 -0.388475 0.359576 0.595237 0.718608 0.169964 -0.799014 0.576792 0.921389 0.011367 -0.388475 0.295211 0.629645 0.718608 0.252770 -0.776800 0.576792 0.915231 0.106958 -0.388475 0.228251 0.656889 0.718608 0.332046 -0.746362 0.576792 0.898980 0.202291 -0.388475 0.158147 0.677194 0.718608 0.408441 -0.707451 0.576792 0.872828 0.295397 -0.388475 0.086301 0.690039 0.718608 0.480338 -0.660747 0.576792 0.837446 0.384411 -0.388475 0.014200 0.695270 0.718608 0.546336 -0.607312 0.576792 0.792544 0.470064 -0.388475 -0.058747 0.692929 0.718608 0.606978 -0.546707 0.576792 0.738913 0.550540 -0.388475 -0.131048 0.682956 0.718608 0.660934 -0.480080 0.576792 0.677143 0.624951 -0.388475 -0.201905 0.665460 0.718608 0.707610 -0.408166 0.576792 0.608607 0.691871 -0.388475 -0.269897 0.640904 0.718608 0.746159 -0.332502 0.576792 0.532742 0.751846 -0.388475 -0.335582 0.609087 0.718608 0.776898 -0.252468 0.576792 0.451009 0.803541 -0.388475 -0.397570 0.570561 0.718608 0.799080 -0.169653 0.576792 0.365155 0.846020 -0.388475 -0.454654 0.526205 0.718608 0.812374 -0.085781 0.576792 0.274475 0.879631 -0.388475 -0.507300 0.475656 0.718608 0.816891 -0.000166 0.576792 0.180771 0.903553 -0.388475 -0.554358 0.419868 0.718608 0.812409 0.085451 0.576792 0.085077 0.917523 -0.388475 -0.595310 0.359455 0.718608 0.798979 0.170126 0.576792 -0.010633 0.921398 -0.388475 -0.629410 0.295712 0.718608 0.777001 0.252151 0.576792 -0.107144 0.915209 -0.388475 -0.656936 0.228117 0.718608 0.746294 0.332198 0.576792 -0.202474 0.898939 -0.388475 -0.677226 0.158009 0.718608 0.707368 0.408585 0.576792 -0.295575 0.872767 -0.388475 -0.690057 0.086161 0.718608 0.660649 0.480472 0.576792 -0.384582 0.837367 -0.388475 -0.695273 0.014059 0.718608 0.607201 0.546460 0.576792 -0.470226 0.792449 -0.388475 -0.692917 -0.058889 0.718608 0.546583 0.607089 0.576792 -0.550690 0.738801 -0.388475 -0.682929 -0.131187 0.718608 0.479946 0.661032 0.576792 -0.624412 0.677641 -0.388475 -0.665620 -0.201375 0.718608 0.408729 0.707284 0.576792 -0.691994 0.608466 -0.388475 -0.640849 -0.270027 0.718608 0.332350 0.746227 0.576792 -0.751955 0.532589 -0.388475 -0.609019 -0.335706 0.718608 0.252309 0.776950 0.576792 -0.803633 0.450845 -0.388475 -0.570480 -0.397686 0.718608 0.169490 0.799114 0.576792 -0.846094 0.364982 -0.388475 -0.526113 -0.454761 0.718608 0.085616 0.812392 0.576792 -0.879687 0.274295 -0.388475 -0.475553 -0.507397 0.718608 0.000000 0.816891 0.576792 -0.903590 0.180587 -0.388475 -0.419755 -0.554443 0.718608 -0.085616 0.812392 0.576792 -0.917455 0.085807 -0.388475 -0.359929 -0.595024 0.718608 -0.169490 0.799114 0.576792 -0.921396 -0.010821 -0.388475 -0.295584 -0.629470 0.718608 -0.252309 0.776950 0.576792 -0.915187 -0.107330 -0.388475 -0.227983 -0.656982 0.718608 -0.332350 0.746227 0.576792 -0.898898 -0.202657 -0.388475 -0.157871 -0.677258 0.718608 -0.408729 0.707284 0.576792 -0.873002 -0.294879 -0.388475 -0.086710 -0.689988 0.718608 -0.479946 0.661032 0.576792 -0.837289 -0.384752 -0.388475 -0.013917 -0.695276 0.718608 -0.546583 0.607089 0.576792 -0.792353 -0.470387 -0.388475 0.059030 -0.692905 0.718608 -0.607201 0.546460 0.576792 -0.739240 -0.550102 -0.388475 0.130643 -0.683033 0.718608 -0.660649 0.480472 0.576792 -0.677514 -0.624550 -0.388475 0.201510 -0.665579 0.718608 -0.707368 0.408585 0.576792 -0.608325 -0.692118 -0.388475 0.270158 -0.640794 0.718608 -0.746294 0.332198 0.576792 -0.532436 -0.752063 -0.388475 0.335830 -0.608950 0.718608 -0.777001 0.252151 0.576792 -0.451485 -0.803273 -0.388475 0.397232 -0.570797 0.718608 -0.798979 0.170126 0.576792 -0.364810 -0.846168 -0.388475 0.454868 -0.526020 0.718608 -0.812409 0.085451 0.576792 0.515555 -0.739985 -0.432002 -0.567061 -0.672624 0.475415 -0.642375 -0.000131 -0.766391 0.590271 -0.681875 -0.432002 -0.493442 -0.728351 0.475415 -0.638823 -0.067456 -0.766391 0.657869 -0.616914 -0.432002 -0.415164 -0.775641 0.475415 -0.628369 -0.133409 -0.766391 0.718903 -0.544567 -0.432002 -0.331585 -0.814882 0.475415 -0.610926 -0.198532 -0.766391 0.772018 -0.466221 -0.432002 -0.244353 -0.845146 0.475415 -0.586754 -0.261468 -0.766391 0.816246 -0.383557 -0.432002 -0.155296 -0.865947 0.475415 -0.556440 -0.320968 -0.766391 0.851950 -0.295896 -0.432002 -0.063683 -0.877454 0.475415 -0.519735 -0.377519 -0.766391 0.878270 -0.204976 -0.432002 0.028631 -0.879296 0.475415 -0.477306 -0.429911 -0.766391 0.894916 -0.111798 -0.432002 0.120630 -0.871452 0.475415 -0.429620 -0.477569 -0.766391 0.901687 -0.018290 -0.432002 0.210446 -0.854221 0.475415 -0.377721 -0.519588 -0.766391 0.898638 0.076314 -0.432002 0.298815 -0.827460 0.475415 -0.321184 -0.556315 -0.766391 0.885691 0.170077 -0.432002 0.383893 -0.791585 0.475415 -0.261109 -0.586913 -0.766391 0.863249 0.261104 -0.432002 0.463996 -0.747455 0.475415 -0.198769 -0.610848 -0.766391 0.831129 0.350141 -0.432002 0.539779 -0.694708 0.475415 -0.133653 -0.628317 -0.766391 0.789855 0.435321 -0.432002 0.609616 -0.634310 0.475415 -0.067065 -0.638864 -0.766391 0.740300 0.515103 -0.432002 0.672277 -0.567472 0.475415 -0.000262 -0.642375 -0.766391 0.682236 0.589854 -0.432002 0.728050 -0.493887 0.475415 0.067065 -0.638864 -0.766391 0.616658 0.658109 -0.432002 0.775803 -0.414862 0.475415 0.133653 -0.628317 -0.766391 0.544287 0.719115 -0.432002 0.815011 -0.331268 0.475415 0.198769 -0.610848 -0.766391 0.466693 0.771733 -0.432002 0.844997 -0.244869 0.475415 0.261109 -0.586913 -0.766391 0.383239 0.816396 -0.432002 0.866007 -0.154959 0.475415 0.321184 -0.556315 -0.766391 0.295565 0.852066 -0.432002 0.877479 -0.063342 0.475415 0.377721 -0.519588 -0.766391 0.205512 0.878145 -0.432002 0.879313 0.028094 0.475415 0.429620 -0.477569 -0.766391 0.112345 0.894848 -0.432002 0.871526 0.120097 0.475415 0.477306 -0.429911 -0.766391 0.017939 0.901694 -0.432002 0.854139 0.210778 0.475415 0.519735 -0.377519 -0.766391 -0.076663 0.898608 -0.432002 0.827344 0.299137 0.475415 0.556440 -0.320968 -0.766391 -0.169536 0.885794 -0.432002 0.791819 0.383410 0.475415 0.586754 -0.261468 -0.766391 -0.261440 0.863147 -0.432002 0.747274 0.464286 0.475415 0.610926 -0.198532 -0.766391 -0.350464 0.830993 -0.432002 0.694498 0.540049 0.475415 0.628369 -0.133409 -0.766391 -0.434838 0.790120 -0.432002 0.634682 0.609229 0.475415 0.638823 -0.067456 -0.766391 -0.515253 0.740195 -0.432002 0.567335 0.672393 0.475415 0.642375 -0.000131 -0.766391 -0.589993 0.682116 -0.432002 0.493739 0.728150 0.475415 0.638850 0.067195 -0.766391 -0.658235 0.616524 -0.432002 0.414704 0.775887 0.475415 0.628289 0.133781 -0.766391 -0.718681 0.544859 -0.432002 0.331917 0.814747 0.475415 0.611006 0.198283 -0.766391 -0.771828 0.466536 -0.432002 0.244697 0.845047 0.475415 0.586860 0.261229 -0.766391 -0.816474 0.383073 -0.432002 0.154783 0.866039 0.475415 0.556249 0.321297 -0.766391 -0.852126 0.295391 -0.432002 0.063163 0.877491 0.475415 0.519511 0.377827 -0.766391 -0.878187 0.205334 -0.432002 -0.028273 0.879307 0.475415 0.477481 0.429717 -0.766391 -0.894871 0.112162 -0.432002 -0.120275 0.871501 0.475415 0.429814 0.477394 -0.766391 -0.901698 0.017756 -0.432002 -0.210952 0.854096 0.475415 0.377413 0.519812 -0.766391 -0.898669 -0.075948 -0.432002 -0.298478 0.827582 0.475415 0.321410 0.556184 -0.766391 -0.885760 -0.169716 -0.432002 -0.383571 0.791741 0.475415 0.261348 0.586807 -0.766391 -0.863094 -0.261616 -0.432002 -0.464438 0.747180 0.475415 0.198407 0.610966 -0.766391 -0.830921 -0.350633 -0.432002 -0.540190 0.694388 0.475415 0.133281 0.628396 -0.766391 -0.790032 -0.434999 -0.432002 -0.609358 0.634558 0.475415 0.067325 0.638837 -0.766391 -0.740090 -0.515404 -0.432002 -0.672508 0.567198 0.475415 0.000000 0.642375 -0.766391 -0.681996 -0.590132 -0.432002 -0.728251 0.493590 0.475415 -0.067325 0.638837 -0.766391 -0.617048 -0.657743 -0.432002 -0.775557 0.415322 0.475415 -0.133281 0.628396 -0.766391 -0.544713 -0.718792 -0.432002 -0.814814 0.331751 0.475415 -0.198407 0.610966 -0.766391 -0.466378 -0.771923 -0.432002 -0.845097 0.244525 0.475415 -0.261348 0.586807 -0.766391 -0.382907 -0.816552 -0.432002 -0.866070 0.154606 0.475415 -0.321410 0.556184 -0.766391 -0.296070 -0.851890 -0.432002 -0.877441 0.063862 0.475415 -0.377413 0.519812 -0.766391 -0.205155 -0.878229 -0.432002 -0.879302 -0.028452 0.475415 -0.429814 0.477394 -0.766391 -0.111980 -0.894894 -0.432002 -0.871477 -0.120452 0.475415 -0.477481 0.429717 -0.766391 -0.018474 -0.901683 -0.432002 -0.854264 -0.210272 0.475415 -0.519511 0.377827 -0.766391 0.076131 -0.898654 -0.432002 -0.827521 -0.298647 0.475415 -0.556249 0.321297 -0.766391 0.169897 -0.885725 -0.432002 -0.791663 -0.383732 0.475415 -0.586860 0.261229 -0.766391 0.261791 -0.863041 -0.432002 -0.747085 -0.464591 0.475415 -0.611006 0.198283 -0.766391 0.349971 -0.831200 -0.432002 -0.694818 -0.539637 0.475415 -0.628289 0.133781 -0.766391 0.435160 -0.789943 -0.432002 -0.634434 -0.609487 0.475415 -0.638850 0.067195 -0.766391 -0.097359 -0.907061 -0.409586 0.210222 -0.420998 0.882365 -0.972794 -0.000198 0.231672 -0.001756 -0.912270 -0.409586 0.253188 -0.396647 0.882365 -0.967416 -0.102153 0.231672 0.092959 -0.907523 -0.409586 0.292997 -0.368219 0.882365 -0.951584 -0.202031 0.231672 0.187562 -0.892782 -0.409586 0.329975 -0.335483 0.882365 -0.925169 -0.300651 0.231672 0.280099 -0.868207 -0.409586 0.363319 -0.299052 0.882365 -0.888563 -0.395959 0.231672 0.368716 -0.834439 -0.409586 0.392401 -0.259719 0.882365 -0.842656 -0.486064 0.231672 0.454140 -0.791199 -0.409586 0.417461 -0.217162 0.882365 -0.787073 -0.571703 0.231672 0.534563 -0.739244 -0.409586 0.437922 -0.172213 0.882365 -0.722819 -0.651046 0.231672 0.609097 -0.679147 -0.409586 0.453559 -0.125368 0.882365 -0.650604 -0.723217 0.231672 0.676310 -0.612245 -0.409586 0.464123 -0.077605 0.882365 -0.572010 -0.786850 0.231672 0.736753 -0.537991 -0.409586 0.469700 -0.028534 0.882365 -0.486392 -0.842467 0.231672 0.789080 -0.457812 -0.409586 0.470104 0.020851 0.882365 -0.395416 -0.888805 0.231672 0.832343 -0.373421 -0.409586 0.465400 0.069541 0.882365 -0.301011 -0.925052 0.231672 0.866897 -0.284129 -0.409586 0.455548 0.117935 0.882365 -0.202401 -0.951505 0.231672 0.891901 -0.191707 -0.409586 0.440679 0.165030 0.882365 -0.101562 -0.967478 0.231672 0.907002 -0.097913 -0.409586 0.421126 0.209965 0.882365 -0.000396 -0.972794 0.231672 0.912269 -0.002313 -0.409586 0.396801 0.252946 0.882365 0.101562 -0.967478 0.231672 0.907487 0.093312 -0.409586 0.368105 0.293140 0.882365 0.202401 -0.951505 0.231672 0.892709 0.187909 -0.409586 0.335355 0.330106 0.882365 0.301011 -0.925052 0.231672 0.868378 0.279568 -0.409586 0.299274 0.363136 0.882365 0.395416 -0.888805 0.231672 0.834295 0.369041 -0.409586 0.259566 0.392502 0.882365 0.486392 -0.842467 0.231672 0.791022 0.454448 -0.409586 0.217000 0.417545 0.882365 0.572010 -0.786850 0.231672 0.739571 0.534111 -0.409586 0.172481 0.437816 0.882365 0.650604 -0.723217 0.231672 0.679519 0.608682 -0.409586 0.125645 0.453482 0.882365 0.722819 -0.651046 0.231672 0.611982 0.676548 -0.409586 0.077424 0.464153 0.882365 0.787073 -0.571703 0.231672 0.537705 0.736962 -0.409586 0.028352 0.469712 0.882365 0.842656 -0.486064 0.231672 0.458294 0.788800 -0.409586 -0.020564 0.470117 0.882365 0.888563 -0.395959 0.231672 0.373098 0.832489 -0.409586 -0.069722 0.465373 0.882365 0.925169 -0.300651 0.231672 0.283792 0.867007 -0.409586 -0.118112 0.455502 0.882365 0.951584 -0.202031 0.231672 0.192252 0.891784 -0.409586 -0.164761 0.440779 0.882365 0.967416 -0.102153 0.231672 0.097728 0.907022 -0.409586 -0.210051 0.421084 0.882365 0.972794 -0.000198 0.231672 0.002128 0.912269 -0.409586 -0.253026 0.396750 0.882365 0.967457 0.101759 0.231672 -0.093496 0.907468 -0.409586 -0.293215 0.368046 0.882365 0.951464 0.202595 0.231672 -0.187198 0.892858 -0.409586 -0.329839 0.335618 0.882365 0.925291 0.300274 0.231672 -0.279745 0.868321 -0.409586 -0.363197 0.299200 0.882365 0.888724 0.395597 0.231672 -0.369210 0.834220 -0.409586 -0.392555 0.259486 0.882365 0.842368 0.486563 0.231672 -0.454609 0.790930 -0.409586 -0.417589 0.216915 0.882365 0.786734 0.572170 0.231672 -0.534261 0.739462 -0.409586 -0.437851 0.172392 0.882365 0.723084 0.650751 0.231672 -0.608820 0.679395 -0.409586 -0.453508 0.125552 0.882365 0.650898 0.722952 0.231672 -0.676672 0.611845 -0.409586 -0.464169 0.077330 0.882365 0.571543 0.787189 0.231672 -0.736533 0.538292 -0.409586 -0.469689 0.028726 0.882365 0.486735 0.842269 0.231672 -0.788894 0.458133 -0.409586 -0.470113 -0.020659 0.882365 0.395778 0.888644 0.231672 -0.832565 0.372928 -0.409586 -0.465358 -0.069817 0.882365 0.300463 0.925230 0.231672 -0.867065 0.283615 -0.409586 -0.455478 -0.118205 0.882365 0.201837 0.951625 0.231672 -0.891823 0.192071 -0.409586 -0.440746 -0.164851 0.882365 0.101956 0.967436 0.231672 -0.907042 0.097543 -0.409586 -0.421041 -0.210136 0.882365 0.000000 0.972794 0.231672 -0.912269 0.001942 -0.409586 -0.396698 -0.253107 0.882365 -0.101956 0.967436 0.231672 -0.907542 -0.092774 -0.409586 -0.368279 -0.292922 0.882365 -0.201837 0.951625 0.231672 -0.892820 -0.187380 -0.409586 -0.335551 -0.329907 0.882365 -0.300463 0.925230 0.231672 -0.868264 -0.279922 -0.409586 -0.299126 -0.363258 0.882365 -0.395778 0.888644 0.231672 -0.834145 -0.369380 -0.409586 -0.259406 -0.392608 0.882365 -0.486735 0.842269 0.231672 -0.791291 -0.453979 -0.409586 -0.217247 -0.417416 0.882365 -0.571543 0.787189 0.231672 -0.739353 -0.534412 -0.409586 -0.172303 -0.437887 0.882365 -0.650898 0.722952 0.231672 -0.679271 -0.608958 -0.409586 -0.125460 -0.453533 0.882365 -0.723084 0.650751 0.231672 -0.612383 -0.676185 -0.409586 -0.077700 -0.464107 0.882365 -0.786734 0.572170 0.231672 -0.538141 -0.736643 -0.409586 -0.028630 -0.469695 0.882365 -0.842368 0.486563 0.231672 -0.457972 -0.788987 -0.409586 0.020755 -0.470108 0.882365 -0.888724 0.395597 0.231672 -0.372759 -0.832641 -0.409586 0.069912 -0.465344 0.882365 -0.925291 0.300274 0.231672 -0.284306 -0.866839 -0.409586 0.117842 -0.455572 0.882365 -0.951464 0.202595 0.231672 -0.191889 -0.891862 -0.409586 0.164941 -0.440712 0.882365 -0.967457 0.101759 0.231672 0.633115 0.552992 -0.541632 0.420306 -0.833187 -0.359364 -0.650006 -0.000132 -0.759929 0.571671 0.616301 -0.541632 0.505315 -0.784547 -0.359364 -0.646412 -0.068257 -0.759929 0.504602 0.672318 -0.541632 0.584031 -0.727850 -0.359364 -0.635834 -0.134994 -0.759929 0.431359 0.721501 -0.541632 0.657098 -0.662630 -0.359364 -0.618184 -0.200890 -0.759929 0.353365 0.762737 -0.541632 0.722928 -0.590112 -0.359364 -0.593724 -0.264574 -0.759929 0.272274 0.795300 -0.541632 0.780283 -0.511875 -0.359364 -0.563050 -0.324781 -0.759929 0.187421 0.819456 -0.541632 0.829634 -0.427277 -0.359364 -0.525910 -0.382004 -0.759929 0.100504 0.834586 -0.541632 0.869846 -0.337972 -0.359364 -0.482977 -0.435019 -0.759929 0.012480 0.840523 -0.541632 0.900477 -0.244944 -0.359364 -0.434724 -0.483243 -0.759929 -0.074844 0.837277 -0.541632 0.921040 -0.150140 -0.359364 -0.382208 -0.525761 -0.759929 -0.162185 0.824822 -0.541632 0.931703 -0.052781 -0.359364 -0.325000 -0.562924 -0.759929 -0.247739 0.803281 -0.541632 0.932104 0.045159 -0.359364 -0.264211 -0.593886 -0.759929 -0.329791 0.773222 -0.541632 0.922380 0.141679 -0.359364 -0.201131 -0.618106 -0.759929 -0.409014 0.734399 -0.541632 0.902451 0.237570 -0.359364 -0.135241 -0.635781 -0.759929 -0.483732 0.687487 -0.541632 0.872582 0.330845 -0.359364 -0.067862 -0.646454 -0.759929 -0.552605 0.633453 -0.541632 0.833443 0.419797 -0.359364 -0.000265 -0.650006 -0.759929 -0.615952 0.572047 -0.541632 0.784855 0.504836 -0.359364 0.067862 -0.646454 -0.759929 -0.672514 0.504340 -0.541632 0.727622 0.584314 -0.359364 0.135241 -0.635781 -0.759929 -0.721669 0.431078 -0.541632 0.662375 0.657356 -0.359364 0.201131 -0.618106 -0.759929 -0.762521 0.353831 -0.541632 0.590554 0.722567 -0.359364 0.264211 -0.593886 -0.759929 -0.795406 0.271964 -0.541632 0.511571 0.780482 -0.359364 0.325000 -0.562924 -0.759929 -0.819529 0.187102 -0.541632 0.426954 0.829800 -0.359364 0.382208 -0.525761 -0.759929 -0.834524 0.101014 -0.541632 0.338503 0.869640 -0.359364 0.434724 -0.483243 -0.759929 -0.840515 0.012993 -0.541632 0.245494 0.900328 -0.359364 0.482977 -0.435019 -0.759929 -0.837248 -0.075170 -0.541632 0.149781 0.921099 -0.359364 0.525910 -0.382004 -0.759929 -0.824759 -0.162506 -0.541632 0.052419 0.931724 -0.359364 0.563050 -0.324781 -0.759929 -0.803432 -0.247248 -0.541632 -0.044589 0.932131 -0.359364 0.593724 -0.264574 -0.759929 -0.773094 -0.330092 -0.541632 -0.142037 0.922325 -0.359364 0.618184 -0.200890 -0.759929 -0.734240 -0.409299 -0.541632 -0.237921 0.902358 -0.359364 0.635834 -0.134994 -0.759929 -0.687783 -0.483311 -0.541632 -0.330312 0.872784 -0.359364 0.646412 -0.068257 -0.759929 -0.633340 -0.552734 -0.541632 -0.419967 0.833358 -0.359364 0.650006 -0.000132 -0.759929 -0.571922 -0.616069 -0.541632 -0.504996 0.784752 -0.359364 0.646440 0.067994 -0.759929 -0.504203 -0.672617 -0.541632 -0.584462 0.727503 -0.359364 0.635754 0.135371 -0.759929 -0.431653 -0.721326 -0.541632 -0.656828 0.662898 -0.359364 0.618266 0.200639 -0.759929 -0.353675 -0.762593 -0.541632 -0.722687 0.590407 -0.359364 0.593832 0.264332 -0.759929 -0.271802 -0.795461 -0.541632 -0.780586 0.511412 -0.359364 0.562858 0.325114 -0.759929 -0.186935 -0.819567 -0.541632 -0.829887 0.426785 -0.359364 0.525683 0.382315 -0.759929 -0.100844 -0.834545 -0.541632 -0.869708 0.338326 -0.359364 0.483154 0.434822 -0.759929 -0.012822 -0.840518 -0.541632 -0.900378 0.245311 -0.359364 0.434921 0.483065 -0.759929 0.075341 -0.837233 -0.541632 -0.921129 0.149594 -0.359364 0.381897 0.525988 -0.759929 0.161849 -0.824888 -0.541632 -0.931682 0.053161 -0.359364 0.325229 0.562791 -0.759929 0.247412 -0.803382 -0.541632 -0.932122 -0.044779 -0.359364 0.264453 0.593778 -0.759929 0.330249 -0.773027 -0.541632 -0.922296 -0.142225 -0.359364 0.200765 0.618225 -0.759929 0.409449 -0.734157 -0.541632 -0.902310 -0.238105 -0.359364 0.134864 0.635861 -0.759929 0.483451 -0.687684 -0.541632 -0.872716 -0.330490 -0.359364 0.068125 0.646426 -0.759929 0.552863 -0.633228 -0.541632 -0.833272 -0.420137 -0.359364 0.000000 0.650006 -0.759929 0.616185 -0.571796 -0.541632 -0.784650 -0.505156 -0.359364 -0.068125 0.646426 -0.759929 0.672215 -0.504739 -0.541632 -0.727968 -0.583883 -0.359364 -0.134864 0.635861 -0.759929 0.721413 -0.431506 -0.541632 -0.662764 -0.656963 -0.359364 -0.200765 0.618225 -0.759929 0.762665 -0.353520 -0.541632 -0.590260 -0.722808 -0.359364 -0.264453 0.593778 -0.759929 0.795516 -0.271640 -0.541632 -0.511253 -0.780690 -0.359364 -0.325229 0.562791 -0.759929 0.819418 -0.187588 -0.541632 -0.427445 -0.829547 -0.359364 -0.381897 0.525988 -0.759929 0.834565 -0.100674 -0.541632 -0.338149 -0.869777 -0.359364 -0.434921 0.483065 -0.759929 0.840520 -0.012651 -0.541632 -0.245128 -0.900427 -0.359364 -0.483154 0.434822 -0.759929 0.837292 0.074674 -0.541632 -0.150327 -0.921010 -0.359364 -0.525683 0.382315 -0.759929 0.824855 0.162017 -0.541632 -0.052971 -0.931693 -0.359364 -0.562858 0.325114 -0.759929 0.803331 0.247575 -0.541632 0.044969 -0.932113 -0.359364 -0.593832 0.264332 -0.759929 0.772959 0.330407 -0.541632 0.142413 -0.922267 -0.359364 -0.618266 0.200639 -0.759929 0.734483 0.408864 -0.541632 0.237387 -0.902499 -0.359364 -0.635754 0.135371 -0.759929 0.687586 0.483591 -0.541632 0.330668 -0.872649 -0.359364 -0.646440 0.067994 -0.759929 0.254088 -0.618740 -0.743371 -0.199889 -0.785596 0.585563 -0.946300 -0.000193 -0.323290 0.317537 -0.588702 -0.743371 -0.116452 -0.802219 0.585563 -0.941068 -0.099371 -0.323290 0.376936 -0.552557 -0.743371 -0.032542 -0.809974 0.585563 -0.925668 -0.196529 -0.323290 0.432772 -0.510008 -0.743371 0.052528 -0.808923 0.585563 -0.899972 -0.292463 -0.323290 0.483841 -0.461842 -0.743371 0.137020 -0.798963 0.585563 -0.864363 -0.385176 -0.323290 0.529172 -0.409117 -0.743371 0.219222 -0.780422 0.585563 -0.819707 -0.472826 -0.323290 0.569136 -0.351403 -0.743371 0.299808 -0.753148 0.585563 -0.765637 -0.556133 -0.323290 0.602831 -0.289819 -0.743371 0.377092 -0.717578 0.585563 -0.703133 -0.633315 -0.323290 0.629886 -0.225041 -0.743371 0.450223 -0.674104 0.585563 -0.632885 -0.703520 -0.323290 0.649845 -0.158435 -0.743371 0.517771 -0.623723 0.585563 -0.556431 -0.765420 -0.323290 0.662871 -0.089454 -0.743371 0.580290 -0.566021 0.585563 -0.473145 -0.819523 -0.323290 0.668595 -0.019488 -0.743371 0.636417 -0.502086 0.585563 -0.384647 -0.864598 -0.323290 0.667006 0.050026 -0.743371 0.685101 -0.433305 0.585563 -0.292813 -0.899858 -0.323290 0.658090 0.119657 -0.743371 0.726741 -0.359115 0.585563 -0.196889 -0.925591 -0.323290 0.641924 0.187971 -0.743371 0.760377 -0.280969 0.585563 -0.098796 -0.941129 -0.323290 0.618895 0.253710 -0.743371 0.785474 -0.200369 0.585563 -0.000385 -0.946300 -0.323290 0.588896 0.317177 -0.743371 0.802148 -0.116942 0.585563 0.098796 -0.941129 -0.323290 0.552410 0.377151 -0.743371 0.809986 -0.032227 0.585563 0.196889 -0.925591 -0.323290 0.509840 0.432970 -0.743371 0.808903 0.052843 0.585563 0.292813 -0.899858 -0.323290 0.462137 0.483559 -0.743371 0.799047 0.136531 0.585563 0.384647 -0.864598 -0.323290 0.408912 0.529331 -0.743371 0.780336 0.219525 0.585563 0.473145 -0.819523 -0.323290 0.351182 0.569272 -0.743371 0.753031 0.300101 0.585563 0.556431 -0.765420 -0.323290 0.290187 0.602654 -0.743371 0.717808 0.376654 0.585563 0.632885 -0.703520 -0.323290 0.225426 0.629748 -0.743371 0.674379 0.449811 0.585563 0.703133 -0.633315 -0.323290 0.158183 0.649906 -0.743371 0.623521 0.518013 0.585563 0.765637 -0.556133 -0.323290 0.089197 0.662905 -0.743371 0.565796 0.580510 0.585563 0.819707 -0.472826 -0.323290 0.019897 0.668583 -0.743371 0.502474 0.636110 0.585563 0.864363 -0.385176 -0.323290 -0.050285 0.666987 -0.743371 0.433038 0.685270 0.585563 0.899972 -0.292463 -0.323290 -0.119913 0.658043 -0.743371 0.358832 0.726881 0.585563 0.925668 -0.196529 -0.323290 -0.187579 0.642039 -0.743371 0.281434 0.760205 0.585563 0.941068 -0.099371 -0.323290 -0.253836 0.618843 -0.743371 0.200209 0.785514 0.585563 0.946300 -0.000193 -0.323290 -0.317297 0.588831 -0.743371 0.116779 0.802172 0.585563 0.941109 0.098987 -0.323290 -0.377263 0.552333 -0.743371 0.032062 0.809993 0.585563 0.925551 0.197077 -0.323290 -0.432564 0.510184 -0.743371 -0.052199 0.808945 0.585563 0.900091 0.292096 -0.323290 -0.483653 0.462039 -0.743371 -0.136694 0.799019 0.585563 0.864520 0.384823 -0.323290 -0.529414 0.408804 -0.743371 -0.219684 0.780292 0.585563 0.819426 0.473312 -0.323290 -0.569344 0.351066 -0.743371 -0.300255 0.752970 0.585563 0.765307 0.556587 -0.323290 -0.602713 0.290064 -0.743371 -0.376800 0.717731 0.585563 0.703391 0.633028 -0.323290 -0.629794 0.225298 -0.743371 -0.449948 0.674287 0.585563 0.633171 0.703262 -0.323290 -0.649938 0.158050 -0.743371 -0.518140 0.623416 0.585563 0.555977 0.765750 -0.323290 -0.662834 0.089724 -0.743371 -0.580059 0.566258 0.585563 0.473479 0.819330 -0.323290 -0.668588 0.019761 -0.743371 -0.636212 0.502345 0.585563 0.385000 0.864442 -0.323290 -0.666976 -0.050421 -0.743371 -0.685358 0.432899 0.585563 0.292279 0.900031 -0.323290 -0.658019 -0.120047 -0.743371 -0.726954 0.358684 0.585563 0.196340 0.925708 -0.323290 -0.642001 -0.187709 -0.743371 -0.760262 0.281279 0.585563 0.099179 0.941088 -0.323290 -0.618792 -0.253962 -0.743371 -0.785555 0.200049 0.585563 0.000000 0.946300 -0.323290 -0.588767 -0.317417 -0.743371 -0.802195 0.116615 0.585563 -0.099179 0.941088 -0.323290 -0.552634 -0.376823 -0.743371 -0.809967 0.032707 0.585563 -0.196340 0.925708 -0.323290 -0.510096 -0.432668 -0.743371 -0.808934 -0.052363 0.585563 -0.292279 0.900031 -0.323290 -0.461940 -0.483747 -0.743371 -0.798991 -0.136857 0.585563 -0.385000 0.864442 -0.323290 -0.408696 -0.529497 -0.743371 -0.780247 -0.219843 0.585563 -0.473479 0.819330 -0.323290 -0.351519 -0.569064 -0.743371 -0.753209 -0.299655 0.585563 -0.555977 0.765750 -0.323290 -0.289941 -0.602772 -0.743371 -0.717655 -0.376946 0.585563 -0.633171 0.703262 -0.323290 -0.225170 -0.629840 -0.743371 -0.674195 -0.450086 0.585563 -0.703391 0.633028 -0.323290 -0.158568 -0.649812 -0.743371 -0.623828 -0.517644 0.585563 -0.765307 0.556587 -0.323290 -0.089589 -0.662853 -0.743371 -0.566140 -0.580174 0.585563 -0.819426 0.473312 -0.323290 -0.019624 -0.668591 -0.743371 -0.502215 -0.636315 0.585563 -0.864520 0.384823 -0.323290 0.050557 -0.666966 -0.743371 -0.432759 -0.685446 0.585563 -0.900091 0.292096 -0.323290 0.119523 -0.658114 -0.743371 -0.359263 -0.726668 0.585563 -0.925551 0.197077 -0.323290 0.187840 -0.641962 -0.743371 -0.281124 -0.760319 0.585563 -0.941109 0.098987 -0.323290 -0.268900 -0.894953 0.356022 -0.539677 0.446160 0.713926 -0.797773 -0.000162 -0.602958 -0.173621 -0.918207 0.356022 -0.583465 0.387141 0.713926 -0.793362 -0.083774 -0.602958 -0.077362 -0.931270 0.356022 -0.620503 0.324478 0.713926 -0.780379 -0.165682 -0.602958 0.020668 -0.934249 0.356022 -0.651093 0.257658 0.713926 -0.758716 -0.246559 -0.602958 0.118470 -0.926937 0.356022 -0.674512 0.187999 0.713926 -0.728697 -0.324720 -0.602958 0.214058 -0.909630 0.356022 -0.690384 0.116961 0.713926 -0.691049 -0.398614 -0.602958 0.308215 -0.882186 0.356022 -0.698840 0.043960 0.713926 -0.645466 -0.468845 -0.602958 0.398977 -0.845024 0.356022 -0.699599 -0.029526 0.713926 -0.592773 -0.533912 -0.602958 0.485344 -0.798555 0.356022 -0.692651 -0.102686 0.713926 -0.533550 -0.593099 -0.602958 0.565622 -0.743855 0.356022 -0.678248 -0.174038 0.713926 -0.469096 -0.645283 -0.602958 0.640468 -0.680477 0.356022 -0.656273 -0.244164 0.713926 -0.398882 -0.690894 -0.602958 0.708260 -0.609604 0.356022 -0.627068 -0.311602 0.713926 -0.324275 -0.728895 -0.602958 0.767717 -0.532784 0.356022 -0.591332 -0.375016 0.713926 -0.246854 -0.758620 -0.602958 0.819329 -0.449387 0.356022 -0.548771 -0.434926 0.713926 -0.165986 -0.780314 -0.602958 0.861915 -0.361041 0.356022 -0.500165 -0.490046 0.713926 -0.083289 -0.793413 -0.602958 0.894789 -0.269446 0.356022 -0.446490 -0.539404 0.713926 -0.000325 -0.797773 -0.602958 0.918101 -0.174182 0.356022 -0.387497 -0.583229 0.713926 0.083289 -0.793413 -0.602958 0.931300 -0.076999 0.356022 -0.324236 -0.620629 0.713926 0.165986 -0.780314 -0.602958 0.934241 0.021032 0.356022 -0.257404 -0.651193 0.713926 0.246854 -0.758620 -0.602958 0.927010 0.117904 0.356022 -0.188412 -0.674397 0.713926 0.324275 -0.728895 -0.602958 0.909547 0.214412 0.356022 -0.116692 -0.690429 0.713926 0.398882 -0.690894 -0.602958 0.882066 0.308558 0.356022 -0.043688 -0.698857 0.713926 0.469096 -0.645283 -0.602958 0.845268 0.398461 0.356022 0.029099 -0.699616 0.713926 0.533550 -0.593099 -0.602958 0.798851 0.484856 0.356022 0.102263 -0.692714 0.713926 0.592773 -0.533912 -0.602958 0.743635 0.565911 0.356022 0.174301 -0.678181 0.713926 0.645466 -0.468845 -0.602958 0.680228 0.640733 0.356022 0.244420 -0.656178 0.713926 0.691049 -0.398614 -0.602958 0.610036 0.707887 0.356022 0.311218 -0.627258 0.713926 0.728697 -0.324720 -0.602958 0.532485 0.767924 0.356022 0.375246 -0.591186 0.713926 0.758716 -0.246559 -0.602958 0.449068 0.819503 0.356022 0.435140 -0.548601 0.713926 0.780379 -0.165682 -0.602958 0.361567 0.861695 0.356022 0.489740 -0.500464 0.713926 0.793362 -0.083774 -0.602958 0.269264 0.894844 0.356022 0.539495 -0.446380 0.713926 0.797773 -0.000162 -0.602958 0.173995 0.918136 0.356022 0.583308 -0.387378 0.713926 0.793396 0.083451 -0.602958 0.076810 0.931315 0.356022 0.620695 -0.324110 0.713926 0.780281 0.166145 -0.602958 -0.020288 0.934257 0.356022 0.650988 -0.257923 0.713926 0.758817 0.246250 -0.602958 -0.118093 0.926986 0.356022 0.674435 -0.188274 0.713926 0.728829 0.324423 -0.602958 -0.214597 0.909503 0.356022 0.690453 -0.116552 0.713926 0.690813 0.399023 -0.602958 -0.308738 0.882003 0.356022 0.698866 -0.043545 0.713926 0.645188 0.469228 -0.602958 -0.398633 0.845187 0.356022 0.699611 0.029241 0.713926 0.592990 0.533671 -0.602958 -0.485019 0.798752 0.356022 0.692693 0.102404 0.713926 0.533792 0.592881 -0.602958 -0.566063 0.743520 0.356022 0.678145 0.174439 0.713926 0.468714 0.645561 -0.602958 -0.640191 0.680738 0.356022 0.656372 0.243897 0.713926 0.399164 0.690732 -0.602958 -0.708011 0.609892 0.356022 0.627195 0.311346 0.713926 0.324572 0.728763 -0.602958 -0.768033 0.532329 0.356022 0.591109 0.375366 0.713926 0.246405 0.758766 -0.602958 -0.819595 0.448902 0.356022 0.548513 0.435251 0.713926 0.165523 0.780413 -0.602958 -0.861768 0.361392 0.356022 0.500365 0.489842 0.713926 0.083612 0.793379 -0.602958 -0.894898 0.269082 0.356022 0.446270 0.539586 0.713926 0.000000 0.797773 -0.602958 -0.918172 0.173808 0.356022 0.387260 0.583387 0.713926 -0.083612 0.793379 -0.602958 -0.931254 0.077551 0.356022 0.324604 0.620437 0.713926 -0.165523 0.780413 -0.602958 -0.934253 -0.020478 0.356022 0.257790 0.651041 0.713926 -0.246405 0.758766 -0.602958 -0.926962 -0.118282 0.356022 0.188137 0.674473 0.713926 -0.324572 0.728763 -0.602958 -0.909460 -0.214782 0.356022 0.116411 0.690477 0.713926 -0.399164 0.690732 -0.602958 -0.882249 -0.308035 0.356022 0.044102 0.698831 0.713926 -0.468714 0.645561 -0.602958 -0.845105 -0.398805 0.356022 -0.029384 0.699605 0.713926 -0.533792 0.592881 -0.602958 -0.798653 -0.485181 0.356022 -0.102545 0.692672 0.713926 -0.592990 0.533671 -0.602958 -0.743970 -0.565470 0.356022 -0.173899 0.678284 0.713926 -0.645188 0.469228 -0.602958 -0.680607 -0.640329 0.356022 -0.244031 0.656322 0.713926 -0.690813 0.399023 -0.602958 -0.609748 -0.708135 0.356022 -0.311474 0.627131 0.713926 -0.728829 0.324423 -0.602958 -0.532172 -0.768141 0.356022 -0.375486 0.591033 0.713926 -0.758817 0.246250 -0.602958 -0.449554 -0.819237 0.356022 -0.434814 0.548859 0.713926 -0.780281 0.166145 -0.602958 -0.361216 -0.861842 0.356022 -0.489944 0.500265 0.713926 -0.793396 0.083451 -0.602958 0.116618 -0.395101 -0.911205 -0.049939 -0.918638 0.391932 -0.991921 -0.000202 -0.126861 0.157385 -0.380703 -0.911205 0.046616 -0.918812 0.391932 -0.986436 -0.104161 -0.126861 0.196057 -0.362307 -0.911205 0.141748 -0.909008 0.391932 -0.970293 -0.206003 -0.126861 0.232949 -0.339763 -0.911205 0.236238 -0.889146 0.391932 -0.943359 -0.306562 -0.126861 0.267276 -0.313477 -0.911205 0.328126 -0.859490 0.391932 -0.906033 -0.403745 -0.126861 0.298375 -0.284037 -0.911205 0.415579 -0.820782 0.391932 -0.859224 -0.495621 -0.126861 0.326501 -0.251201 -0.911205 0.499314 -0.772706 0.391932 -0.802548 -0.582944 -0.126861 0.351030 -0.215598 -0.911205 0.577549 -0.716119 0.391932 -0.737031 -0.663846 -0.126861 0.371693 -0.177620 -0.911205 0.649423 -0.651643 0.391932 -0.663396 -0.737436 -0.126861 0.388124 -0.138074 -0.911205 0.713563 -0.580704 0.391932 -0.583256 -0.802321 -0.126861 0.400458 -0.096635 -0.911205 0.770495 -0.502719 0.391932 -0.495955 -0.859031 -0.126861 0.408380 -0.054132 -0.911205 0.818940 -0.419197 0.391932 -0.403191 -0.906280 -0.126861 0.411793 -0.011445 -0.911205 0.858033 -0.331916 0.391932 -0.306929 -0.943240 -0.126861 0.410725 0.031777 -0.911205 0.888095 -0.240160 0.391932 -0.206381 -0.970213 -0.126861 0.405132 0.074649 -0.911205 0.908374 -0.145759 0.391932 -0.103559 -0.986500 -0.126861 0.395172 0.116377 -0.911205 0.918607 -0.050500 0.391932 -0.000404 -0.991920 -0.126861 0.380799 0.157153 -0.911205 0.918841 0.046055 0.391932 0.103559 -0.986500 -0.126861 0.362231 0.196198 -0.911205 0.908953 0.142102 0.391932 0.206381 -0.970213 -0.126861 0.339673 0.233082 -0.911205 0.889054 0.236584 0.391932 0.306929 -0.943240 -0.126861 0.313641 0.267085 -0.911205 0.859690 0.327601 0.391932 0.403191 -0.906280 -0.126861 0.283921 0.298485 -0.911205 0.820620 0.415898 0.391932 0.495955 -0.859031 -0.126861 0.251074 0.326598 -0.911205 0.772512 0.499615 0.391932 0.583256 -0.802321 -0.126861 0.215812 0.350898 -0.911205 0.716471 0.577112 0.391932 0.663396 -0.737436 -0.126861 0.177847 0.371585 -0.911205 0.652040 0.649025 0.391932 0.737031 -0.663846 -0.126861 0.137923 0.388178 -0.911205 0.580426 0.713789 0.391932 0.802548 -0.582944 -0.126861 0.096479 0.400495 -0.911205 0.502420 0.770690 0.391932 0.859224 -0.495621 -0.126861 0.054382 0.408347 -0.911205 0.419698 0.818684 0.391932 0.906033 -0.403745 -0.126861 0.011284 0.411798 -0.911205 0.331582 0.858162 0.391932 0.943359 -0.306562 -0.126861 -0.031937 0.410712 -0.911205 0.239814 0.888188 0.391932 0.970293 -0.206003 -0.126861 -0.074402 0.405178 -0.911205 0.146314 0.908285 0.391932 0.986436 -0.104161 -0.126861 -0.116457 0.395148 -0.911205 0.050313 0.918617 0.391932 0.991921 -0.000202 -0.126861 -0.157230 0.380767 -0.911205 -0.046242 0.918831 0.391932 0.986479 0.103760 -0.126861 -0.196272 0.362191 -0.911205 -0.142287 0.908924 0.391932 0.970171 0.206578 -0.126861 -0.232811 0.339858 -0.911205 -0.235876 0.889242 0.391932 0.943484 0.306178 -0.126861 -0.267148 0.313586 -0.911205 -0.327776 0.859623 0.391932 0.906198 0.403376 -0.126861 -0.298543 0.283860 -0.911205 -0.416066 0.820535 0.391932 0.858930 0.496130 -0.126861 -0.326650 0.251007 -0.911205 -0.499772 0.772410 0.391932 0.802202 0.583420 -0.126861 -0.350942 0.215741 -0.911205 -0.577258 0.716354 0.391932 0.737301 0.663546 -0.126861 -0.371621 0.177771 -0.911205 -0.649157 0.651908 0.391932 0.663696 0.737166 -0.126861 -0.388206 0.137844 -0.911205 -0.713907 0.580281 0.391932 0.582781 0.802666 -0.126861 -0.400418 0.096798 -0.911205 -0.770290 0.503033 0.391932 0.496305 0.858829 -0.126861 -0.408358 0.054298 -0.911205 -0.818769 0.419531 0.391932 0.403560 0.906116 -0.126861 -0.411800 0.011201 -0.911205 -0.858230 0.331407 0.391932 0.306370 0.943421 -0.126861 -0.410706 -0.032021 -0.911205 -0.888237 0.239634 0.391932 0.205805 0.970335 -0.126861 -0.405163 -0.074484 -0.911205 -0.908315 0.146129 0.391932 0.103960 0.986458 -0.126861 -0.395125 -0.116538 -0.911205 -0.918627 0.050126 0.391932 0.000000 0.991921 -0.126861 -0.380735 -0.157308 -0.911205 -0.918822 -0.046429 0.391932 -0.103960 0.986458 -0.126861 -0.362347 -0.195983 -0.911205 -0.909037 -0.141563 0.391932 -0.205805 0.970335 -0.126861 -0.339811 -0.232880 -0.911205 -0.889194 -0.236057 0.391932 -0.306370 0.943421 -0.126861 -0.313532 -0.267212 -0.911205 -0.859556 -0.327951 0.391932 -0.403560 0.906116 -0.126861 -0.283799 -0.298601 -0.911205 -0.820451 -0.416233 0.391932 -0.496305 0.858829 -0.126861 -0.251267 -0.326450 -0.911205 -0.772807 -0.499157 0.391932 -0.582781 0.802666 -0.126861 -0.215669 -0.350986 -0.911205 -0.716236 -0.577404 0.391932 -0.663696 0.737166 -0.126861 -0.177696 -0.371657 -0.911205 -0.651775 -0.649290 0.391932 -0.737301 0.663546 -0.126861 -0.138153 -0.388096 -0.911205 -0.580849 -0.713445 0.391932 -0.802202 0.583420 -0.126861 -0.096717 -0.400438 -0.911205 -0.502876 -0.770392 0.391932 -0.858930 0.496130 -0.126861 -0.054215 -0.408369 -0.911205 -0.419364 -0.818855 0.391932 -0.906198 0.403376 -0.126861 -0.011117 -0.411802 -0.911205 -0.331233 -0.858297 0.391932 -0.943484 0.306178 -0.126861 0.031694 -0.410731 -0.911205 -0.240341 -0.888046 0.391932 -0.970171 0.206578 -0.126861 0.074567 -0.405147 -0.911205 -0.145944 -0.908344 0.391932 -0.986479 0.103760 -0.126861 -0.993879 0.076518 -0.079679 -0.076272 -0.997068 -0.006131 -0.079915 -0.000016 0.996802 -0.996425 -0.028069 -0.079679 0.028648 -0.999571 -0.006131 -0.079473 -0.008392 0.996802 -0.988128 -0.131358 -0.079679 0.132261 -0.991196 -0.006131 -0.078172 -0.016597 0.996802 -0.968918 -0.234198 -0.079679 0.235417 -0.971875 -0.006131 -0.076002 -0.024698 0.996802 -0.939036 -0.334458 -0.079679 0.335980 -0.941849 -0.006131 -0.072995 -0.032528 0.996802 -0.899242 -0.430134 -0.079679 0.431940 -0.901881 -0.006131 -0.069224 -0.039930 0.996802 -0.849208 -0.522012 -0.079679 0.524085 -0.851644 -0.006131 -0.064658 -0.046965 0.996802 -0.789820 -0.608140 -0.079679 0.610457 -0.792026 -0.006131 -0.059379 -0.053483 0.996802 -0.721733 -0.687570 -0.079679 0.690105 -0.723683 -0.006131 -0.053447 -0.059412 0.996802 -0.646455 -0.758780 -0.079679 0.761504 -0.648132 -0.006131 -0.046990 -0.064639 0.996802 -0.563369 -0.822354 -0.079679 0.825239 -0.564751 -0.006131 -0.039957 -0.069208 0.996802 -0.474078 -0.876870 -0.079679 0.879884 -0.475150 -0.006131 -0.032483 -0.073015 0.996802 -0.380486 -0.921348 -0.079679 0.924456 -0.381240 -0.006131 -0.024728 -0.075993 0.996802 -0.281827 -0.956151 -0.079679 0.959321 -0.282250 -0.006131 -0.016627 -0.078166 0.996802 -0.180063 -0.980423 -0.079679 0.983620 -0.180152 -0.006131 -0.008343 -0.079478 0.996802 -0.077126 -0.993832 -0.079679 0.997021 -0.076882 -0.006131 -0.000033 -0.079915 0.996802 0.027460 -0.996442 -0.079679 0.999588 0.028037 -0.006131 0.008343 -0.079478 0.996802 0.131743 -0.988076 -0.079679 0.991144 0.132646 -0.006131 0.016627 -0.078166 0.996802 0.234575 -0.968827 -0.079679 0.971784 0.235795 -0.006131 0.024728 -0.075993 0.996802 0.333884 -0.939241 -0.079679 0.942054 0.335404 -0.006131 0.032483 -0.073015 0.996802 0.430484 -0.899074 -0.079679 0.901713 0.432291 -0.006131 0.039957 -0.069208 0.996802 0.522343 -0.849005 -0.079679 0.851440 0.524416 -0.006131 0.046990 -0.064639 0.996802 0.607658 -0.790192 -0.079679 0.792398 0.609973 -0.006131 0.053447 -0.059412 0.996802 0.687129 -0.722153 -0.079679 0.724105 0.689663 -0.006131 0.059379 -0.053483 0.996802 0.759032 -0.646160 -0.079679 0.647835 0.761756 -0.006131 0.064658 -0.046965 0.996802 0.822573 -0.563049 -0.079679 0.564430 0.825458 -0.006131 0.069224 -0.039930 0.996802 0.876580 -0.474613 -0.079679 0.475687 0.879593 -0.006131 0.072995 -0.032528 0.996802 0.921496 -0.380128 -0.079679 0.380880 0.924604 -0.006131 0.076002 -0.024698 0.996802 0.956261 -0.281455 -0.079679 0.281877 0.959431 -0.006131 0.078172 -0.016597 0.996802 0.980312 -0.180662 -0.079679 0.180753 0.983509 -0.006131 0.079473 -0.008392 0.996802 0.993848 -0.076923 -0.079679 0.076679 0.997037 -0.006131 0.079915 -0.000016 0.996802 0.996437 0.027663 -0.079679 -0.028240 0.999582 -0.006131 0.079476 0.008359 0.996802 0.988050 0.131944 -0.079679 -0.132848 0.991117 -0.006131 0.078162 0.016643 0.996802 0.969014 0.233803 -0.079679 -0.235021 0.971971 -0.006131 0.076012 0.024667 0.996802 0.939173 0.334075 -0.079679 -0.335596 0.941986 -0.006131 0.073008 0.032498 0.996802 0.898987 0.430667 -0.079679 -0.432475 0.901625 -0.006131 0.069200 0.039971 0.996802 0.848898 0.522516 -0.079679 -0.524590 0.851333 -0.006131 0.064630 0.047004 0.996802 0.790068 0.607819 -0.079679 -0.610134 0.792274 -0.006131 0.059401 0.053459 0.996802 0.722013 0.687276 -0.079679 -0.689810 0.723964 -0.006131 0.053471 0.059390 0.996802 0.646005 0.759163 -0.079679 -0.761888 0.647680 -0.006131 0.046952 0.064667 0.996802 0.563704 0.822125 -0.079679 -0.825008 0.565087 -0.006131 0.039985 0.069192 0.996802 0.474435 0.876677 -0.079679 -0.879690 0.475508 -0.006131 0.032513 0.073002 0.996802 0.379940 0.921573 -0.079679 -0.924682 0.380691 -0.006131 0.024683 0.076007 0.996802 0.281260 0.956318 -0.079679 -0.959488 0.281682 -0.006131 0.016581 0.078176 0.996802 0.180462 0.980349 -0.079679 -0.983546 0.180553 -0.006131 0.008376 0.079475 0.996802 0.076721 0.993864 -0.079679 -0.997053 0.076476 -0.006131 0.000000 0.079915 0.996802 -0.027866 0.996431 -0.079679 -0.999577 -0.028444 -0.006131 -0.008376 0.079475 0.996802 -0.131157 0.988154 -0.079679 -0.991223 -0.132059 -0.006131 -0.016581 0.078176 0.996802 -0.234001 0.968966 -0.079679 -0.971923 -0.235219 -0.006131 -0.024683 0.076007 0.996802 -0.334266 0.939104 -0.079679 -0.941918 -0.335788 -0.006131 -0.032513 0.073002 0.996802 -0.430850 0.898899 -0.079679 -0.901537 -0.432658 -0.006131 -0.039985 0.069192 0.996802 -0.521839 0.849314 -0.079679 -0.851751 -0.523912 -0.006131 -0.046952 0.064667 0.996802 -0.607980 0.789944 -0.079679 -0.792150 -0.610296 -0.006131 -0.053471 0.059390 0.996802 -0.687423 0.721873 -0.079679 -0.723824 -0.689957 -0.006131 -0.059401 0.053459 0.996802 -0.758648 0.646610 -0.079679 -0.648287 -0.761372 -0.006131 -0.064630 0.047004 0.996802 -0.822240 0.563537 -0.079679 -0.564919 -0.825124 -0.006131 -0.069200 0.039971 0.996802 -0.876774 0.474256 -0.079679 -0.475329 -0.879787 -0.006131 -0.073008 0.032498 0.996802 -0.921650 0.379752 -0.079679 -0.380503 -0.924759 -0.006131 -0.076012 0.024667 0.996802 -0.956094 0.282021 -0.079679 -0.282446 -0.959264 -0.006131 -0.078162 0.016643 0.996802 -0.980386 0.180263 -0.079679 -0.180352 -0.983583 -0.006131 -0.079476 0.008359 0.996802 -0.531964 -0.574781 -0.621805 0.373796 -0.818307 0.436634 -0.759796 -0.000155 0.650161 -0.468793 -0.627369 -0.621805 0.457502 -0.774624 0.436634 -0.755596 -0.079786 0.650161 -0.401131 -0.672646 -0.621805 0.535446 -0.722944 0.436634 -0.743230 -0.157795 0.650161 -0.328424 -0.710983 -0.621805 0.608267 -0.662844 0.436634 -0.722599 -0.234822 0.650161 -0.252099 -0.741488 -0.621805 0.674388 -0.595443 0.436634 -0.694008 -0.309262 0.650161 -0.173761 -0.763653 -0.621805 0.732558 -0.522216 0.436634 -0.658153 -0.379638 0.650161 -0.092768 -0.777658 -0.621805 0.783256 -0.442562 0.436634 -0.614740 -0.446526 0.650161 -0.010753 -0.783098 -0.621805 0.825326 -0.358034 0.436634 -0.564555 -0.508496 0.650161 0.071381 -0.779912 -0.621805 0.858305 -0.269562 0.436634 -0.508151 -0.564865 0.650161 0.151960 -0.768288 -0.621805 0.881651 -0.179003 0.436634 -0.446766 -0.614566 0.650161 0.231645 -0.748131 -0.621805 0.895556 -0.085614 0.436634 -0.379894 -0.658005 0.650161 0.308779 -0.719732 -0.621805 0.899597 0.008719 0.436634 -0.308838 -0.694197 0.650161 0.381827 -0.683788 -0.621805 0.893831 0.102061 0.436634 -0.235103 -0.722508 0.650161 0.451390 -0.640004 -0.621805 0.878212 0.195179 0.436634 -0.158084 -0.743169 0.650161 0.515981 -0.589170 -0.621805 0.852919 0.286147 0.436634 -0.079324 -0.755644 0.650161 0.574456 -0.532315 -0.621805 0.818536 0.373296 0.436634 -0.000309 -0.759796 0.650161 0.627082 -0.469176 -0.621805 0.774904 0.457029 0.436634 0.079324 -0.755644 0.650161 0.672802 -0.400870 -0.621805 0.722736 0.535727 0.436634 0.158084 -0.743169 0.650161 0.711110 -0.328147 -0.621805 0.662607 0.608525 0.436634 0.235103 -0.722508 0.650161 0.741334 -0.252552 -0.621805 0.595855 0.674024 0.436634 0.308838 -0.694197 0.650161 0.763720 -0.173464 -0.621805 0.521931 0.732761 0.436634 0.379894 -0.658005 0.650161 0.777695 -0.092466 -0.621805 0.442258 0.783428 0.436634 0.446766 -0.614566 0.650161 0.783092 -0.011231 -0.621805 0.358538 0.825107 0.436634 0.508151 -0.564865 0.650161 0.779956 0.070904 -0.621805 0.270086 0.858140 0.436634 0.564555 -0.508496 0.650161 0.768229 0.152259 -0.621805 0.178660 0.881721 0.436634 0.614740 -0.446526 0.650161 0.748040 0.231936 -0.621805 0.085265 0.895589 0.436634 0.658153 -0.379638 0.650161 0.719921 0.308339 -0.621805 -0.008169 0.899602 0.436634 0.694008 -0.309262 0.650161 0.683640 0.382093 -0.621805 -0.102409 0.893791 0.436634 0.722599 -0.234822 0.650161 0.639828 0.451639 -0.621805 -0.195520 0.878136 0.436634 0.743230 -0.157795 0.650161 0.589486 0.515621 -0.621805 -0.285626 0.853094 0.436634 0.755596 -0.079786 0.650161 0.532198 0.574564 -0.621805 -0.373463 0.818460 0.436634 0.759796 -0.000155 0.650161 0.469049 0.627178 -0.621805 -0.457187 0.774810 0.436634 0.755628 0.079478 0.650161 0.400733 0.672883 -0.621805 -0.535874 0.722627 0.436634 0.743137 0.158236 0.650161 0.328714 0.710849 -0.621805 -0.607997 0.663092 0.436634 0.722695 0.234528 0.650161 0.252401 0.741385 -0.621805 -0.674145 0.595717 0.436634 0.694134 0.308980 0.650161 0.173309 0.763756 -0.621805 -0.732868 0.521781 0.436634 0.657928 0.380028 0.650161 0.092307 0.777713 -0.621805 -0.783518 0.442098 0.436634 0.614475 0.446891 0.650161 0.011072 0.783094 -0.621805 -0.825180 0.358370 0.436634 0.564762 0.508266 0.650161 -0.071063 0.779941 -0.621805 -0.858195 0.269912 0.436634 0.508381 0.564658 0.650161 -0.152415 0.768198 -0.621805 -0.881757 0.178480 0.436634 0.446401 0.614830 0.650161 -0.231340 0.748225 -0.621805 -0.895521 0.085978 0.436634 0.380162 0.657851 0.650161 -0.308485 0.719858 -0.621805 -0.899600 -0.008352 0.436634 0.309121 0.694071 0.650161 -0.382233 0.683562 -0.621805 -0.893771 -0.102591 0.436634 0.234675 0.722647 0.650161 -0.451770 0.639736 -0.621805 -0.878096 -0.195699 0.436634 0.157644 0.743262 0.650161 -0.515741 0.589381 -0.621805 -0.853035 -0.285799 0.436634 0.079632 0.755612 0.650161 -0.574672 0.532081 -0.621805 -0.818384 -0.373630 0.436634 0.000000 0.759796 0.650161 -0.627273 0.468921 -0.621805 -0.774717 -0.457344 0.436634 -0.079632 0.755612 0.650161 -0.672564 0.401268 -0.621805 -0.723053 -0.535299 0.436634 -0.157644 0.743262 0.650161 -0.710916 0.328569 -0.621805 -0.662968 -0.608132 0.436634 -0.234675 0.722647 0.650161 -0.741437 0.252250 -0.621805 -0.595580 -0.674266 0.436634 -0.309121 0.694071 0.650161 -0.763791 0.173153 -0.621805 -0.521632 -0.732974 0.436634 -0.380162 0.657851 0.650161 -0.777640 0.092926 -0.621805 -0.442722 -0.783166 0.436634 -0.446401 0.614830 0.650161 -0.783096 0.010912 -0.621805 -0.358202 -0.825253 0.436634 -0.508381 0.564658 0.650161 -0.779927 -0.071222 -0.621805 -0.269737 -0.858250 0.436634 -0.564762 0.508266 0.650161 -0.768319 -0.151803 -0.621805 -0.179182 -0.881615 0.436634 -0.614475 0.446891 0.650161 -0.748178 -0.231493 -0.621805 -0.085796 -0.895539 0.436634 -0.657928 0.380028 0.650161 -0.719795 -0.308632 -0.621805 0.008535 -0.899599 0.436634 -0.694134 0.308980 0.650161 -0.683484 -0.382372 -0.621805 0.102773 -0.893750 0.436634 -0.722695 0.234528 0.650161 -0.640096 -0.451260 -0.621805 0.195000 -0.878252 0.436634 -0.743137 0.158236 0.650161 -0.589275 -0.515862 -0.621805 0.285973 -0.852977 0.436634 -0.755628 0.079478 0.650161 -0.377576 0.544426 -0.749024 -0.244871 -0.838809 -0.486249 -0.893015 -0.000182 0.450028 -0.432556 0.501855 -0.749024 -0.155609 -0.859853 -0.486249 -0.888077 -0.093775 0.450028 -0.482318 0.454239 -0.749024 -0.065504 -0.871362 -0.486249 -0.873544 -0.185462 0.450028 -0.527269 0.401187 -0.749024 0.026181 -0.873428 -0.486249 -0.849295 -0.275994 0.450028 -0.566412 0.343716 -0.749024 0.117579 -0.865874 -0.486249 -0.815691 -0.363487 0.450028 -0.599034 0.283058 -0.749024 0.206832 -0.848989 -0.486249 -0.773550 -0.446202 0.450028 -0.625401 0.218716 -0.749024 0.294673 -0.822636 -0.486249 -0.722524 -0.524818 0.450028 -0.644880 0.151965 -0.749024 0.379268 -0.787221 -0.486249 -0.663540 -0.597653 0.450028 -0.657255 0.083540 -0.749024 0.459686 -0.743136 -0.486249 -0.597248 -0.663905 0.450028 -0.662376 0.014857 -0.749024 0.534349 -0.691399 -0.486249 -0.525099 -0.722320 0.450028 -0.660285 -0.054647 -0.749024 0.603870 -0.631588 -0.486249 -0.446503 -0.773376 0.450028 -0.650922 -0.123548 -0.749024 0.666739 -0.564820 -0.486249 -0.362988 -0.815913 0.450028 -0.634579 -0.190455 -0.749024 0.721772 -0.492552 -0.486249 -0.276325 -0.849188 0.450028 -0.611123 -0.255914 -0.749024 0.769420 -0.414192 -0.486249 -0.185802 -0.873472 0.450028 -0.580935 -0.318555 -0.749024 0.808592 -0.331270 -0.486249 -0.093233 -0.888134 0.450028 -0.544657 -0.377243 -0.749024 0.838659 -0.245383 -0.486249 -0.000364 -0.893015 0.450028 -0.502119 -0.432249 -0.749024 0.859758 -0.156134 -0.486249 0.093233 -0.888134 0.450028 -0.454051 -0.482494 -0.749024 0.871387 -0.065165 -0.486249 0.185802 -0.873472 0.450028 -0.400981 -0.527425 -0.749024 0.873418 0.026521 -0.486249 0.276325 -0.849188 0.450028 -0.344062 -0.566202 -0.749024 0.865945 0.117050 -0.486249 0.362988 -0.815913 0.450028 -0.282825 -0.599144 -0.749024 0.848909 0.207162 -0.486249 0.446503 -0.773376 0.450028 -0.218472 -0.625486 -0.749024 0.822521 0.294993 -0.486249 0.525099 -0.722320 0.450028 -0.152359 -0.644787 -0.749024 0.787453 0.378787 -0.486249 0.597248 -0.663905 0.450028 -0.083941 -0.657204 -0.749024 0.743416 0.459232 -0.486249 0.663540 -0.597653 0.450028 -0.014599 -0.662382 -0.749024 0.691191 0.534618 -0.486249 0.722524 -0.524818 0.450028 0.054903 -0.660264 -0.749024 0.631353 0.604115 -0.486249 0.773550 -0.446202 0.450028 0.123151 -0.650997 -0.749024 0.565227 0.666394 -0.486249 0.815691 -0.363487 0.450028 0.190702 -0.634504 -0.749024 0.492271 0.721963 -0.486249 0.849295 -0.275994 0.450028 0.256152 -0.611023 -0.749024 0.413893 0.769581 -0.486249 0.873544 -0.185462 0.450028 0.318200 -0.581130 -0.749024 0.331764 0.808390 -0.486249 0.888077 -0.093775 0.450028 0.377354 -0.544580 -0.749024 0.245212 0.838709 -0.486249 0.893015 -0.000182 0.450028 0.432351 -0.502031 -0.749024 0.155959 0.859790 -0.486249 0.888115 0.093413 0.450028 0.482587 -0.453953 -0.749024 0.064988 0.871400 -0.486249 0.873434 0.185980 0.450028 0.527105 -0.401401 -0.749024 -0.025826 0.873439 -0.486249 0.849407 0.275648 0.450028 0.566272 -0.343946 -0.749024 -0.117226 0.865921 -0.486249 0.815839 0.363154 0.450028 0.599201 -0.282703 -0.749024 -0.207335 0.848866 -0.486249 0.773285 0.446660 0.450028 0.625531 -0.218345 -0.749024 -0.295161 0.822461 -0.486249 0.722213 0.525246 0.450028 0.644818 -0.152227 -0.749024 -0.378948 0.787376 -0.486249 0.663784 0.597383 0.450028 0.657221 -0.083807 -0.749024 -0.459383 0.743323 -0.486249 0.597518 0.663662 0.450028 0.662385 -0.014464 -0.749024 -0.534759 0.691082 -0.486249 0.524671 0.722631 0.450028 0.660308 0.054378 -0.749024 -0.603612 0.631834 -0.486249 0.446818 0.773194 0.450028 0.650972 0.123283 -0.749024 -0.666509 0.565091 -0.486249 0.363320 0.815766 0.450028 0.634466 0.190831 -0.749024 -0.722064 0.492124 -0.486249 0.275821 0.849351 0.450028 0.610971 0.256276 -0.749024 -0.769665 0.413736 -0.486249 0.185284 0.873582 0.450028 0.581065 0.318318 -0.749024 -0.808457 0.331600 -0.486249 0.093594 0.888096 0.450028 0.544503 0.377465 -0.749024 -0.838759 0.245041 -0.486249 0.000000 0.893015 0.450028 0.501943 0.432454 -0.749024 -0.859822 0.155784 -0.486249 -0.093594 0.888096 0.450028 0.454337 0.482225 -0.749024 -0.871348 0.065682 -0.486249 -0.185284 0.873582 0.450028 0.401294 0.527187 -0.749024 -0.873433 -0.026003 -0.486249 -0.275821 0.849351 0.450028 0.343831 0.566342 -0.749024 -0.865898 -0.117402 -0.486249 -0.363320 0.815766 0.450028 0.282581 0.599259 -0.749024 -0.848824 -0.207508 -0.486249 -0.446818 0.773194 0.450028 0.218843 0.625356 -0.749024 -0.822696 -0.294505 -0.486249 -0.524671 0.722631 0.450028 0.152096 0.644849 -0.749024 -0.787299 -0.379108 -0.486249 -0.597518 0.663662 0.450028 0.083674 0.657238 -0.749024 -0.743229 -0.459535 -0.486249 -0.663784 0.597383 0.450028 0.014992 0.662373 -0.749024 -0.691508 -0.534208 -0.486249 -0.722213 0.525246 0.450028 -0.054512 0.660296 -0.749024 -0.631711 -0.603741 -0.486249 -0.773285 0.446660 0.450028 -0.123416 0.650947 -0.749024 -0.564955 -0.666624 -0.486249 -0.815839 0.363154 0.450028 -0.190960 0.634427 -0.749024 -0.491977 -0.722164 -0.486249 -0.849407 0.275648 0.450028 -0.255790 0.611175 -0.749024 -0.414349 -0.769335 -0.486249 -0.873434 0.185980 0.450028 -0.318436 0.581000 -0.749024 -0.331435 -0.808525 -0.486249 -0.888115 0.093413 0.450028 0.417812 0.180882 0.890345 -0.077012 0.983505 -0.163669 -0.905264 -0.000184 0.424850 0.396553 0.223675 0.890345 -0.179666 0.970017 -0.163669 -0.900259 -0.095061 0.424850 0.371190 0.263634 0.890345 -0.279395 0.946124 -0.163669 -0.885526 -0.188006 0.424850 0.341515 0.301085 0.890345 -0.377017 0.911631 -0.163669 -0.860945 -0.279780 0.424850 0.308079 0.335220 0.890345 -0.470486 0.867096 -0.163669 -0.826880 -0.368472 0.424850 0.271614 0.365392 0.890345 -0.557960 0.813568 -0.163669 -0.784160 -0.452322 0.424850 0.231822 0.391846 0.890345 -0.640154 0.750610 -0.163669 -0.732435 -0.532016 0.424850 0.189477 0.413985 0.890345 -0.715298 0.679383 -0.163669 -0.672642 -0.605851 0.424850 0.145045 0.431563 0.890345 -0.782563 0.600673 -0.163669 -0.605440 -0.673012 0.424850 0.099460 0.444289 0.890345 -0.840692 0.516188 -0.163669 -0.532301 -0.732228 0.424850 0.052347 0.452266 0.890345 -0.890162 0.425234 -0.163669 -0.452627 -0.783984 0.424850 0.004658 0.455262 0.890345 -0.929827 0.329597 -0.163669 -0.367967 -0.827105 0.424850 -0.042629 0.453286 0.890345 -0.959019 0.231288 -0.163669 -0.280115 -0.860836 0.424850 -0.089902 0.446321 0.890345 -0.977978 0.129502 -0.163669 -0.188351 -0.885453 0.424850 -0.136184 0.434441 0.890345 -0.986165 0.026290 -0.163669 -0.094511 -0.900317 0.424850 -0.180626 0.417922 0.890345 -0.983552 -0.076411 -0.163669 -0.000369 -0.905264 0.424850 -0.223433 0.396690 0.890345 -0.970126 -0.179073 -0.163669 0.094511 -0.900317 0.424850 -0.263778 0.371088 0.890345 -0.946015 -0.279763 -0.163669 0.188351 -0.885453 0.424850 -0.301218 0.341398 0.890345 -0.911484 -0.377372 -0.163669 0.280115 -0.860836 0.424850 -0.335032 0.308283 0.890345 -0.867383 -0.469956 -0.163669 0.367967 -0.827105 0.424850 -0.365497 0.271472 0.890345 -0.813351 -0.558276 -0.163669 0.452627 -0.783984 0.424850 -0.391936 0.231670 0.890345 -0.750361 -0.640446 -0.163669 0.532301 -0.732228 0.424850 -0.413869 0.189730 0.890345 -0.679820 -0.714883 -0.163669 0.605440 -0.673012 0.424850 -0.431475 0.145309 0.890345 -0.601151 -0.782196 -0.163669 0.672642 -0.605851 0.424850 -0.444328 0.099287 0.890345 -0.515860 -0.840893 -0.163669 0.732435 -0.532016 0.424850 -0.452287 0.052171 0.890345 -0.424888 -0.890327 -0.163669 0.784160 -0.452322 0.424850 -0.455259 0.004936 0.890345 -0.330165 -0.929626 -0.163669 0.826880 -0.368472 0.424850 -0.453269 -0.042805 0.890345 -0.230915 -0.959109 -0.163669 0.860945 -0.279780 0.424850 -0.446286 -0.090075 0.890345 -0.129122 -0.978029 -0.163669 0.885526 -0.188006 0.424850 -0.434524 -0.135919 0.890345 -0.026892 -0.986149 -0.163669 0.900259 -0.095061 0.424850 -0.417886 -0.180711 0.890345 0.076611 -0.983536 -0.163669 0.905264 -0.000184 0.424850 -0.396644 -0.223514 0.890345 0.179271 -0.970090 -0.163669 0.900297 0.094695 0.424850 -0.371034 -0.263854 0.890345 0.279956 -0.945958 -0.163669 0.885414 0.188531 0.424850 -0.341638 -0.300946 0.890345 0.376646 -0.911784 -0.163669 0.861058 0.279429 0.424850 -0.308215 -0.335095 0.890345 0.470133 -0.867288 -0.163669 0.827030 0.368136 0.424850 -0.271397 -0.365552 0.890345 0.558442 -0.813238 -0.163669 0.783892 0.452787 0.424850 -0.231590 -0.391984 0.890345 0.640599 -0.750230 -0.163669 0.732119 0.532451 0.424850 -0.189646 -0.413908 0.890345 0.715021 -0.679674 -0.163669 0.672889 0.605577 0.424850 -0.145221 -0.431504 0.890345 0.782318 -0.600992 -0.163669 0.605714 0.672765 0.424850 -0.099196 -0.444348 0.890345 0.840998 -0.515689 -0.163669 0.531867 0.732543 0.424850 -0.052531 -0.452245 0.890345 0.889989 -0.425597 -0.163669 0.452946 0.783800 0.424850 -0.004844 -0.455260 0.890345 0.929693 -0.329976 -0.163669 0.368304 0.826955 0.424850 0.042898 -0.453260 0.890345 0.959156 -0.230720 -0.163669 0.279605 0.861001 0.424850 0.090166 -0.446268 0.890345 0.978055 -0.128923 -0.163669 0.187826 0.885564 0.424850 0.136007 -0.434496 0.890345 0.986154 -0.026692 -0.163669 0.094878 0.900278 0.424850 0.180797 -0.417849 0.890345 0.983521 0.076811 -0.163669 0.000000 0.905264 0.424850 0.223594 -0.396599 0.890345 0.970053 0.179468 -0.163669 -0.094878 0.900278 0.424850 0.263558 -0.371244 0.890345 0.946181 0.279203 -0.163669 -0.187826 0.885564 0.424850 0.301016 -0.341577 0.890345 0.911708 0.376831 -0.163669 -0.279605 0.861001 0.424850 0.335158 -0.308147 0.890345 0.867192 0.470309 -0.163669 -0.368304 0.826955 0.424850 0.365608 -0.271323 0.890345 0.813124 0.558607 -0.163669 -0.452946 0.783800 0.424850 0.391799 -0.231902 0.890345 0.750740 0.640002 -0.163669 -0.531867 0.732543 0.424850 0.413946 -0.189562 0.890345 0.679529 0.715160 -0.163669 -0.605714 0.672765 0.424850 0.431534 -0.145133 0.890345 0.600832 0.782440 -0.163669 -0.672889 0.605577 0.424850 0.444269 -0.099550 0.890345 0.516359 0.840587 -0.163669 -0.732119 0.532451 0.424850 0.452256 -0.052439 0.890345 0.425415 0.890075 -0.163669 -0.783892 0.452787 0.424850 0.455261 -0.004751 0.890345 0.329786 0.929760 -0.163669 -0.827030 0.368136 0.424850 0.453252 0.042990 0.890345 0.230524 0.959203 -0.163669 -0.861058 0.279429 0.424850 0.446340 0.089811 0.890345 0.129702 0.977952 -0.163669 -0.885414 0.188531 0.424850 0.434469 0.136096 0.890345 0.026491 0.986160 -0.163669 -0.900297 0.094695 0.424850 -0.112563 0.929750 0.350562 0.283741 0.368191 -0.885396 -0.952271 -0.000194 -0.305253 -0.209387 0.912832 0.350562 0.243589 0.395901 -0.885396 -0.947006 -0.099998 -0.305253 -0.303020 0.886163 0.350562 0.201173 0.419049 -0.885396 -0.931509 -0.197769 -0.305253 -0.394227 0.849524 0.350562 0.156146 0.437826 -0.885396 -0.905651 -0.294308 -0.305253 -0.481092 0.803528 0.350562 0.109399 0.451780 -0.885396 -0.869817 -0.387606 -0.305253 -0.561909 0.749242 0.350562 0.061907 0.460696 -0.885396 -0.824879 -0.475810 -0.305253 -0.637340 0.686224 0.350562 0.013282 0.464647 -0.885396 -0.770468 -0.559642 -0.305253 -0.705751 0.615647 0.350562 -0.035489 0.463480 -0.885396 -0.707570 -0.637311 -0.305253 -0.766389 0.538289 0.350562 -0.083870 0.457208 -0.885396 -0.636879 -0.707959 -0.305253 -0.818129 0.455819 0.350562 -0.130881 0.446031 -0.885396 -0.559942 -0.770250 -0.305253 -0.861396 0.367563 0.350562 -0.176907 0.429857 -0.885396 -0.476131 -0.824694 -0.305253 -0.895175 0.275258 0.350562 -0.220985 0.408948 -0.885396 -0.387075 -0.870054 -0.305253 -0.918914 0.180841 0.350562 -0.262245 0.383798 -0.885396 -0.294661 -0.905536 -0.305253 -0.932806 0.083536 0.350562 -0.301025 0.354199 -0.885396 -0.198131 -0.931432 -0.305253 -0.936424 -0.014689 0.350562 -0.336490 0.320699 -0.885396 -0.099419 -0.947067 -0.305253 -0.929819 -0.111995 0.350562 -0.368017 0.283966 -0.885396 -0.000388 -0.952271 -0.305253 -0.912960 -0.208830 0.350562 -0.395752 0.243831 -0.885396 0.099419 -0.947067 -0.305253 -0.886045 -0.303364 0.350562 -0.419128 0.201010 -0.885396 0.198131 -0.931432 -0.305253 -0.849371 -0.394558 0.350562 -0.437887 0.155976 -0.885396 0.294661 -0.905536 -0.305253 -0.803821 -0.480601 0.350562 -0.451713 0.109675 -0.885396 0.387075 -0.870054 -0.305253 -0.749024 -0.562200 0.350562 -0.460720 0.061728 -0.885396 0.476131 -0.824694 -0.305253 -0.685976 -0.637607 0.350562 -0.464652 0.013101 -0.885396 0.559942 -0.770250 -0.305253 -0.616078 -0.705375 0.350562 -0.463502 -0.035206 -0.885396 0.636879 -0.707959 -0.305253 -0.538757 -0.766060 0.350562 -0.457259 -0.083591 -0.885396 0.707570 -0.637311 -0.305253 -0.455501 -0.818306 0.350562 -0.445980 -0.131054 -0.885396 0.770468 -0.559642 -0.305253 -0.367228 -0.861539 0.350562 -0.429788 -0.177074 -0.885396 0.824879 -0.475810 -0.305253 -0.275805 -0.895007 0.350562 -0.409083 -0.220735 -0.885396 0.869817 -0.387606 -0.305253 -0.180483 -0.918984 0.350562 -0.383696 -0.262394 -0.885396 0.905651 -0.294308 -0.305253 -0.083173 -0.932839 0.350562 -0.354082 -0.301163 -0.885396 0.931509 -0.197769 -0.305253 0.014117 -0.936433 0.350562 -0.320904 -0.336294 -0.885396 0.947006 -0.099998 -0.305253 0.112184 -0.929796 0.350562 -0.283891 -0.368075 -0.885396 0.952271 -0.000194 -0.305253 0.209016 -0.912918 0.350562 -0.243750 -0.395802 -0.885396 0.947047 0.099612 -0.305253 0.303545 -0.885983 0.350562 -0.200925 -0.419169 -0.885396 0.931391 0.198321 -0.305253 0.393881 -0.849685 0.350562 -0.156324 -0.437762 -0.885396 0.905771 0.293939 -0.305253 0.480765 -0.803723 0.350562 -0.109583 -0.451735 -0.885396 0.869975 0.387252 -0.305253 0.562353 -0.748909 0.350562 -0.061634 -0.460732 -0.885396 0.824597 0.476299 -0.305253 0.637747 -0.685846 0.350562 -0.013007 -0.464655 -0.885396 0.770136 0.560099 -0.305253 0.705500 -0.615934 0.350562 0.035301 -0.463494 -0.885396 0.707830 0.637023 -0.305253 0.766169 -0.538601 0.350562 0.083684 -0.457242 -0.885396 0.637167 0.707700 -0.305253 0.818399 -0.455334 0.350562 0.131145 -0.445953 -0.885396 0.559486 0.770582 -0.305253 0.861246 -0.367914 0.350562 0.176732 -0.429929 -0.885396 0.476467 0.824500 -0.305253 0.895063 -0.275623 0.350562 0.220818 -0.409038 -0.885396 0.387429 0.869896 -0.305253 0.919021 -0.180296 0.350562 0.262472 -0.383642 -0.885396 0.294124 0.905711 -0.305253 0.932856 -0.082983 0.350562 0.301235 -0.354020 -0.885396 0.197579 0.931549 -0.305253 0.936430 0.014308 0.350562 0.336359 -0.320836 -0.885396 0.099805 0.947027 -0.305253 0.929773 0.112374 0.350562 0.368133 -0.283816 -0.885396 0.000000 0.952271 -0.305253 0.912875 0.209202 0.350562 0.395851 -0.243670 -0.885396 -0.099805 0.947027 -0.305253 0.886225 0.302839 0.350562 0.419008 -0.201259 -0.885396 -0.197579 0.931549 -0.305253 0.849604 0.394054 0.350562 0.437794 -0.156235 -0.885396 -0.294124 0.905711 -0.305253 0.803626 0.480928 0.350562 0.451758 -0.109491 -0.885396 -0.387429 0.869896 -0.305253 0.748795 0.562505 0.350562 0.460745 -0.061540 -0.885396 -0.476467 0.824500 -0.305253 0.686354 0.637200 0.350562 0.464644 -0.013377 -0.885396 -0.559486 0.770582 -0.305253 0.615791 0.705626 0.350562 0.463487 0.035395 -0.885396 -0.637167 0.707700 -0.305253 0.538445 0.766279 0.350562 0.457225 0.083777 -0.885396 -0.707830 0.637023 -0.305253 0.455986 0.818036 0.350562 0.446057 0.130790 -0.885396 -0.770136 0.560099 -0.305253 0.367738 0.861321 0.350562 0.429893 0.176820 -0.885396 -0.824597 0.476299 -0.305253 0.275441 0.895119 0.350562 0.408993 0.220902 -0.885396 -0.869975 0.387252 -0.305253 0.180109 0.919058 0.350562 0.383589 0.262550 -0.885396 -0.905771 0.293939 -0.305253 0.083726 0.932789 0.350562 0.354260 0.300953 -0.885396 -0.931391 0.198321 -0.305253 -0.014498 0.936427 0.350562 0.320767 0.336425 -0.885396 -0.947047 0.099612 -0.305253 -0.502805 -0.586985 0.634536 -0.364705 0.809598 0.459937 -0.783695 -0.000160 -0.621146 -0.438515 -0.636450 0.634536 -0.447548 0.766915 0.459937 -0.779362 -0.082296 -0.621146 -0.370074 -0.678535 0.634536 -0.524745 0.716310 0.459937 -0.766608 -0.162759 -0.621146 -0.296921 -0.713584 0.634536 -0.596929 0.657368 0.459937 -0.745328 -0.242208 -0.621146 -0.220497 -0.740773 0.634536 -0.662539 0.591185 0.459937 -0.715838 -0.318990 -0.621146 -0.142404 -0.759661 0.634536 -0.720332 0.519211 0.459937 -0.678855 -0.391579 -0.621146 -0.062002 -0.770402 0.634536 -0.770781 0.440856 0.459937 -0.634076 -0.460572 -0.621146 0.019084 -0.772658 0.634536 -0.812741 0.357644 0.459937 -0.582312 -0.524491 -0.621146 0.099959 -0.766402 0.634536 -0.845749 0.270494 0.459937 -0.524135 -0.582633 -0.621146 0.178981 -0.751884 0.634536 -0.869260 0.181233 0.459937 -0.460818 -0.633896 -0.621146 0.256798 -0.728985 0.634536 -0.883467 0.089130 0.459937 -0.391843 -0.678702 -0.621146 0.331787 -0.698056 0.634536 -0.887943 -0.003955 0.459937 -0.318552 -0.716032 -0.621146 0.402461 -0.659841 0.634536 -0.882734 -0.096113 0.459937 -0.242498 -0.745233 -0.621146 0.469400 -0.614026 0.634536 -0.867799 -0.188100 0.459937 -0.163057 -0.766545 -0.621146 0.531169 -0.561448 0.634536 -0.843306 -0.278016 0.459937 -0.081819 -0.779412 -0.621146 0.586678 -0.503163 0.634536 -0.809820 -0.364210 0.459937 -0.000319 -0.783695 -0.621146 0.636182 -0.438904 0.634536 -0.767188 -0.447079 0.459937 0.081819 -0.779412 -0.621146 0.678679 -0.369810 0.634536 -0.716106 -0.525024 0.459937 0.163057 -0.766545 -0.621146 0.713700 -0.296643 0.634536 -0.657136 -0.597185 0.459937 0.242498 -0.745233 -0.621146 0.740639 -0.220949 0.634536 -0.591590 -0.662177 0.459937 0.318552 -0.716032 -0.621146 0.759717 -0.142108 0.634536 -0.518931 -0.720533 0.459937 0.391843 -0.678702 -0.621146 0.770427 -0.061702 0.634536 -0.440556 -0.770953 0.459937 0.460818 -0.633896 -0.621146 0.772669 0.018612 0.634536 -0.358141 -0.812523 0.459937 0.524135 -0.582633 -0.621146 0.766463 0.099490 0.634536 -0.271010 -0.845583 0.459937 0.582312 -0.524491 -0.621146 0.751815 0.179273 0.634536 -0.180894 -0.869330 0.459937 0.634076 -0.460572 -0.621146 0.728885 0.257081 0.634536 -0.088786 -0.883501 0.459937 0.678855 -0.391579 -0.621146 0.698258 0.331360 0.634536 0.003412 -0.887945 0.459937 0.715838 -0.318990 -0.621146 0.659684 0.402717 0.634536 0.096456 -0.882697 0.459937 0.745328 -0.242208 -0.621146 0.613843 0.469639 0.634536 0.188438 -0.867726 0.459937 0.766608 -0.162759 -0.621146 0.561772 0.530826 0.634536 0.277501 -0.843476 0.459937 0.779362 -0.082296 -0.621146 0.503044 0.586780 0.634536 0.364375 -0.809746 0.459937 0.783695 -0.000160 -0.621146 0.438774 0.636271 0.634536 0.447235 -0.767097 0.459937 0.779396 0.081978 -0.621146 0.369672 0.678754 0.634536 0.525169 -0.715999 0.459937 0.766511 0.163213 -0.621146 0.297211 0.713463 0.634536 0.596662 -0.657611 0.459937 0.745426 0.241905 -0.621146 0.220798 0.740684 0.634536 0.662298 -0.591455 0.459937 0.715968 0.318698 -0.621146 0.141954 0.759746 0.634536 0.720639 -0.518784 0.459937 0.678623 0.391982 -0.621146 0.061545 0.770439 0.634536 0.771043 -0.440399 0.459937 0.633803 0.460947 -0.621146 -0.018769 0.772665 0.634536 0.812595 -0.357975 0.459937 0.582526 0.524254 -0.621146 -0.099646 0.766443 0.634536 0.845638 -0.270838 0.459937 0.524372 0.582419 -0.621146 -0.179426 0.751778 0.634536 0.869367 -0.180717 0.459937 0.460443 0.634169 -0.621146 -0.256501 0.729089 0.634536 0.883430 -0.089490 0.459937 0.392120 0.678543 -0.621146 -0.331502 0.698191 0.634536 0.887944 0.003593 0.459937 0.318844 0.715903 -0.621146 -0.402852 0.659602 0.634536 0.882677 0.096636 0.459937 0.242056 0.745377 -0.621146 -0.469764 0.613747 0.634536 0.867688 0.188615 0.459937 0.162602 0.766641 -0.621146 -0.530941 0.561664 0.634536 0.843419 0.277673 0.459937 0.082137 0.779379 -0.621146 -0.586883 0.502924 0.634536 0.809672 0.364540 0.459937 0.000000 0.783695 -0.621146 -0.636361 0.438645 0.634536 0.767006 0.447391 0.459937 -0.082137 0.779379 -0.621146 -0.678459 0.370212 0.634536 0.716417 0.524599 0.459937 -0.162602 0.766641 -0.621146 -0.713524 0.297066 0.634536 0.657490 0.596795 0.459937 -0.242056 0.745377 -0.621146 -0.740729 0.220648 0.634536 0.591320 0.662418 0.459937 -0.318844 0.715903 -0.621146 -0.759775 0.141799 0.634536 0.518637 0.720745 0.459937 -0.392120 0.678543 -0.621146 -0.770390 0.062158 0.634536 0.441013 0.770692 0.459937 -0.460443 0.634169 -0.621146 -0.772662 -0.018926 0.634536 0.357810 0.812668 0.459937 -0.524372 0.582419 -0.621146 -0.766423 -0.099803 0.634536 0.270666 0.845694 0.459937 -0.582526 0.524254 -0.621146 -0.751921 -0.178828 0.634536 0.181410 0.869223 0.459937 -0.633803 0.460947 -0.621146 -0.729037 -0.256649 0.634536 0.089310 0.883449 0.459937 -0.678623 0.391982 -0.621146 -0.698123 -0.331644 0.634536 -0.003774 0.887943 0.459937 -0.715968 0.318698 -0.621146 -0.659520 -0.402986 0.634536 -0.096816 0.882658 0.459937 -0.745426 0.241905 -0.621146 -0.614121 -0.469275 0.634536 -0.187924 0.867838 0.459937 -0.766511 0.163213 -0.621146 -0.561556 -0.531055 0.634536 -0.277844 0.843362 0.459937 -0.779396 0.081978 -0.621146 0.371592 -0.305177 0.876804 0.118901 0.952296 0.281062 -0.920751 -0.000188 0.390152 0.401531 -0.264551 0.876804 0.018439 0.959513 0.281062 -0.915660 -0.096688 0.390152 0.426825 -0.221437 0.876804 -0.081270 0.956242 0.281062 -0.900675 -0.191222 0.390152 0.447682 -0.175483 0.876804 -0.181044 0.942458 0.281062 -0.875673 -0.284566 0.390152 0.463609 -0.127597 0.876804 -0.278823 0.918293 0.281062 -0.841026 -0.374776 0.390152 0.474350 -0.078779 0.876804 -0.372647 0.884386 0.281062 -0.797575 -0.460060 0.390152 0.479994 -0.028630 0.876804 -0.463285 0.840459 0.281062 -0.744965 -0.541118 0.390152 0.480351 0.021835 0.876804 -0.548819 0.787275 0.281062 -0.684149 -0.616215 0.390152 0.475417 0.072059 0.876804 -0.628309 0.725419 0.281062 -0.615797 -0.684525 0.390152 0.465368 0.121024 0.876804 -0.700222 0.656273 0.281062 -0.541408 -0.744754 0.390152 0.450121 0.169131 0.876804 -0.765147 0.579270 0.281062 -0.460370 -0.797396 0.390152 0.429915 0.215376 0.876804 -0.821645 0.495887 0.281062 -0.374262 -0.841255 0.390152 0.405234 0.258842 0.876804 -0.868685 0.407911 0.281062 -0.284907 -0.875562 0.390152 0.375874 0.299888 0.876804 -0.906653 0.314620 0.281062 -0.191573 -0.900601 0.390152 0.342373 0.337631 0.876804 -0.934634 0.217863 0.281062 -0.096128 -0.915719 0.390152 0.305404 0.371406 0.876804 -0.952223 0.119483 0.281062 -0.000375 -0.920750 0.390152 0.264796 0.401369 0.876804 -0.959501 0.019025 0.281062 0.096128 -0.915719 0.390152 0.221271 0.426911 0.876804 -0.956211 -0.081643 0.281062 0.191573 -0.900601 0.390152 0.175309 0.447751 0.876804 -0.942388 -0.181411 0.281062 0.284907 -0.875562 0.390152 0.127880 0.463531 0.876804 -0.918463 -0.278262 0.281062 0.374262 -0.841255 0.390152 0.078594 0.474381 0.876804 -0.884241 -0.372991 0.281062 0.460370 -0.797396 0.390152 0.028443 0.480005 0.876804 -0.840279 -0.463612 0.281062 0.541408 -0.744754 0.390152 -0.021541 0.480364 0.876804 -0.787610 -0.548338 0.281062 0.615797 -0.684525 0.390152 -0.071768 0.475461 0.876804 -0.725802 -0.627866 0.281062 0.684149 -0.616215 0.390152 -0.121205 0.465321 0.876804 -0.656000 -0.700477 0.281062 0.744965 -0.541118 0.390152 -0.169306 0.450055 0.876804 -0.578973 -0.765373 0.281062 0.797575 -0.460060 0.390152 -0.215113 0.430047 0.876804 -0.496389 -0.821342 0.281062 0.841026 -0.374776 0.390152 -0.259000 0.405133 0.876804 -0.407573 -0.868843 0.281062 0.875673 -0.284566 0.390152 -0.300035 0.375757 0.876804 -0.314267 -0.906775 0.281062 0.900675 -0.191222 0.390152 -0.337422 0.342579 0.876804 -0.218434 -0.934500 0.281062 0.915660 -0.096688 0.390152 -0.371468 0.305328 0.876804 -0.119289 -0.952247 0.281062 0.920751 -0.000188 0.390152 -0.401423 0.264714 0.876804 -0.018829 -0.959505 0.281062 0.915699 0.096315 0.390152 -0.426956 0.221184 0.876804 0.081837 -0.956194 0.281062 0.900562 0.191756 0.390152 -0.447611 0.175666 0.876804 0.180660 -0.942532 0.281062 0.875789 0.284210 0.390152 -0.463557 0.127785 0.876804 0.278449 -0.918406 0.281062 0.841178 0.374433 0.390152 -0.474397 0.078498 0.876804 0.373171 -0.884165 0.281062 0.797302 0.460533 0.390152 -0.480011 0.028345 0.876804 0.463783 -0.840184 0.281062 0.744644 0.541559 0.390152 -0.480360 -0.021639 0.876804 0.548499 -0.787498 0.281062 0.684400 0.615937 0.390152 -0.475446 -0.071865 0.876804 0.628013 -0.725675 0.281062 0.616076 0.684275 0.390152 -0.465296 -0.121300 0.876804 0.700611 -0.655858 0.281062 0.540966 0.745075 0.390152 -0.450190 -0.168948 0.876804 0.764911 -0.579582 0.281062 0.460695 0.797209 0.390152 -0.430003 -0.215200 0.876804 0.821443 -0.496222 0.281062 0.374605 0.841102 0.390152 -0.405080 -0.259083 0.876804 0.868926 -0.407396 0.281062 0.284388 0.875731 0.390152 -0.375696 -0.300111 0.876804 0.906839 -0.314082 0.281062 0.191039 0.900714 0.390152 -0.342511 -0.337491 0.876804 0.934545 -0.218244 0.281062 0.096501 0.915680 0.390152 -0.305253 -0.371530 0.876804 0.952271 -0.119095 0.281062 0.000000 0.920751 0.390152 -0.264632 -0.401477 0.876804 0.959509 -0.018634 0.281062 -0.096501 0.915680 0.390152 -0.221524 -0.426780 0.876804 0.956259 0.081076 0.281062 -0.191039 0.900714 0.390152 -0.175575 -0.447647 0.876804 0.942495 0.180852 0.281062 -0.284388 0.875731 0.390152 -0.127691 -0.463583 0.876804 0.918350 0.278636 0.281062 -0.374605 0.841102 0.390152 -0.078401 -0.474413 0.876804 0.884089 0.373351 0.281062 -0.460695 0.797209 0.390152 -0.028727 -0.479988 0.876804 0.840553 0.463114 0.281062 -0.540966 0.745075 0.390152 0.021737 -0.480356 0.876804 0.787387 0.548659 0.281062 -0.616076 0.684275 0.390152 0.071962 -0.475432 0.876804 0.725547 0.628161 0.281062 -0.684400 0.615937 0.390152 0.120929 -0.465392 0.876804 0.656415 0.700088 0.281062 -0.744644 0.541559 0.390152 0.169039 -0.450155 0.876804 0.579426 0.765029 0.281062 -0.797302 0.460533 0.390152 0.215288 -0.429959 0.876804 0.496054 0.821544 0.281062 -0.841178 0.374433 0.390152 0.259165 -0.405028 0.876804 0.407219 0.869009 0.281062 -0.875789 0.284210 0.390152 0.299812 -0.375935 0.876804 0.314804 0.906588 0.281062 -0.900562 0.191756 0.390152 0.337561 -0.342442 0.876804 0.218053 0.934589 0.281062 -0.915699 0.096315 0.390152 -0.602502 0.541861 0.585984 0.388324 0.840468 -0.377914 -0.697278 -0.000142 -0.716801 -0.655975 0.475731 0.585984 0.298098 0.876538 -0.377914 -0.693423 -0.073221 -0.716801 -0.701817 0.405062 0.585984 0.205492 0.902748 -0.377914 -0.682075 -0.144811 -0.716801 -0.740405 0.329275 0.585984 0.109745 0.919313 -0.377914 -0.663141 -0.215500 -0.716801 -0.770838 0.249862 0.585984 0.012790 0.925753 -0.377914 -0.636903 -0.283815 -0.716801 -0.792612 0.168489 0.585984 -0.083384 0.922078 -0.377914 -0.603998 -0.348400 -0.716801 -0.805906 0.084490 0.585984 -0.179565 0.908261 -0.377914 -0.564157 -0.409785 -0.716801 -0.810322 -0.000440 0.585984 -0.273768 0.884439 -0.377914 -0.518101 -0.466656 -0.716801 -0.805813 -0.085365 0.585984 -0.364956 0.850875 -0.377914 -0.466339 -0.518386 -0.716801 -0.792597 -0.168557 0.585984 -0.451316 0.808391 -0.377914 -0.410004 -0.563997 -0.716801 -0.770566 -0.250699 0.585984 -0.533555 0.756637 -0.377914 -0.348635 -0.603862 -0.716801 -0.740047 -0.330079 0.585984 -0.609918 0.696550 -0.377914 -0.283426 -0.637076 -0.716801 -0.701782 -0.405122 0.585984 -0.678933 0.629469 -0.377914 -0.215758 -0.663057 -0.716801 -0.655458 -0.476442 0.585984 -0.741167 0.554845 -0.377914 -0.145077 -0.682018 -0.716801 -0.601913 -0.542515 0.585984 -0.795236 0.474110 -0.377914 -0.072797 -0.693467 -0.716801 -0.542229 -0.602171 0.585984 -0.840230 0.388837 -0.377914 -0.000284 -0.697278 -0.716801 -0.476131 -0.655684 0.585984 -0.876356 0.298633 -0.377914 0.072797 -0.693467 -0.716801 -0.404789 -0.701975 0.585984 -0.902828 0.205140 -0.377914 0.145077 -0.682018 -0.716801 -0.328987 -0.740533 0.585984 -0.919356 0.109388 -0.377914 0.215758 -0.663057 -0.716801 -0.250333 -0.770685 0.585984 -0.925745 0.013356 -0.377914 0.283426 -0.637076 -0.716801 -0.168181 -0.792677 0.585984 -0.922046 -0.083742 -0.377914 0.348635 -0.603862 -0.716801 -0.084177 -0.805938 0.585984 -0.908191 -0.179918 -0.377914 0.410004 -0.563997 -0.716801 -0.000055 -0.810322 0.585984 -0.884606 -0.273228 -0.377914 0.466339 -0.518386 -0.716801 0.084873 -0.805865 0.585984 -0.851098 -0.364436 -0.377914 0.518101 -0.466656 -0.716801 0.168866 -0.792532 0.585984 -0.808215 -0.451630 -0.377914 0.564157 -0.409785 -0.716801 0.250999 -0.770469 0.585984 -0.756430 -0.533849 -0.377914 0.603998 -0.348400 -0.716801 0.329627 -0.740249 0.585984 -0.696922 -0.609492 -0.377914 0.636903 -0.283815 -0.716801 0.405395 -0.701625 0.585984 -0.629205 -0.679178 -0.377914 0.663141 -0.215500 -0.716801 0.476697 -0.655272 0.585984 -0.554557 -0.741382 -0.377914 0.682075 -0.144811 -0.716801 0.542147 -0.602245 0.585984 -0.474596 -0.794947 -0.377914 0.693423 -0.073221 -0.716801 0.602281 -0.542107 0.585984 -0.388666 -0.840310 -0.377914 0.697278 -0.000142 -0.716801 0.655781 -0.475998 0.585984 -0.298455 -0.876417 -0.377914 0.693452 0.072939 -0.716801 0.702057 -0.404646 0.585984 -0.204956 -0.902870 -0.377914 0.681989 0.145216 -0.716801 0.740271 -0.329577 0.585984 -0.110120 -0.919269 -0.377914 0.663229 0.215230 -0.716801 0.770736 -0.250176 0.585984 -0.013167 -0.925747 -0.377914 0.637018 0.283556 -0.716801 0.792712 -0.168020 0.585984 0.083930 -0.922029 -0.377914 0.603791 0.348758 -0.716801 0.805955 -0.084012 0.585984 0.180103 -0.908154 -0.377914 0.563914 0.410119 -0.716801 0.810322 0.000110 0.585984 0.273408 -0.884550 -0.377914 0.518291 0.466445 -0.716801 0.805848 0.085037 0.585984 0.364609 -0.851024 -0.377914 0.466550 0.518196 -0.716801 0.792497 0.169027 0.585984 0.451795 -0.808123 -0.377914 0.409670 0.564240 -0.716801 0.770668 0.250385 0.585984 0.533247 -0.756855 -0.377914 0.348881 0.603720 -0.716801 0.740182 0.329778 0.585984 0.609634 -0.696798 -0.377914 0.283686 0.636961 -0.716801 0.701542 0.405538 0.585984 0.679306 -0.629067 -0.377914 0.215365 0.663185 -0.716801 0.655175 0.476831 0.585984 0.741495 -0.554406 -0.377914 0.144672 0.682104 -0.716801 0.602134 0.542270 0.585984 0.795043 -0.474434 -0.377914 0.073080 0.693438 -0.716801 0.541984 0.602391 0.585984 0.840389 -0.388495 -0.377914 0.000000 0.697278 -0.716801 0.475864 0.655878 0.585984 0.876477 -0.298276 -0.377914 -0.073080 0.693438 -0.716801 0.405205 0.701735 0.585984 0.902707 -0.205675 -0.377914 -0.144672 0.682104 -0.716801 0.329426 0.740338 0.585984 0.919291 -0.109932 -0.377914 -0.215365 0.663185 -0.716801 0.250019 0.770787 0.585984 0.925750 -0.012979 -0.377914 -0.283686 0.636961 -0.716801 0.167858 0.792746 0.585984 0.922012 0.084118 -0.377914 -0.348881 0.603720 -0.716801 0.084654 0.805888 0.585984 0.908297 0.179380 -0.377914 -0.409670 0.564240 -0.716801 -0.000275 0.810322 0.585984 0.884495 0.273588 -0.377914 -0.466550 0.518196 -0.716801 -0.085201 0.805831 0.585984 0.850949 0.364783 -0.377914 -0.518291 0.466445 -0.716801 -0.168396 0.792632 0.585984 0.808483 0.451151 -0.377914 -0.563914 0.410119 -0.716801 -0.250542 0.770617 0.585984 0.756746 0.533401 -0.377914 -0.603791 0.348758 -0.716801 -0.329928 0.740115 0.585984 0.696674 0.609776 -0.377914 -0.637018 0.283556 -0.716801 -0.405681 0.701460 0.585984 0.628928 0.679434 -0.377914 -0.663229 0.215230 -0.716801 -0.476309 0.655555 0.585984 0.554996 0.741054 -0.377914 -0.681989 0.145216 -0.716801 -0.542393 0.602024 0.585984 0.474272 0.795140 -0.377914 -0.693452 0.072939 -0.716801 0.478936 0.833257 0.276230 -0.721899 0.552886 -0.416148 -0.499481 -0.000102 0.866325 0.388967 0.878864 0.276230 -0.775870 0.474181 -0.416148 -0.496720 -0.052450 0.866325 0.295628 0.914495 0.276230 -0.820904 0.391074 -0.416148 -0.488591 -0.103733 0.866325 0.198155 0.940442 0.276230 -0.857370 0.302883 -0.416148 -0.475028 -0.154369 0.866325 0.098498 0.956031 0.276230 -0.884392 0.211356 -0.416148 -0.456233 -0.203305 0.866325 -0.001282 0.961091 0.276230 -0.901555 0.118403 -0.416148 -0.432662 -0.249570 0.866325 -0.102004 0.955663 0.276230 -0.909000 0.023262 -0.416148 -0.404123 -0.293541 0.866325 -0.201603 0.939709 0.276230 -0.906431 -0.072136 -0.416148 -0.371132 -0.334280 0.866325 -0.298981 0.913405 0.276230 -0.893879 -0.166739 -0.416148 -0.334053 -0.371336 0.866325 -0.392188 0.877431 0.276230 -0.871739 -0.258634 -0.416148 -0.293699 -0.404008 0.866325 -0.481989 0.831495 0.276230 -0.839832 -0.348574 -0.416148 -0.249738 -0.432565 0.866325 -0.566481 0.776399 0.276230 -0.798673 -0.434675 -0.416148 -0.203027 -0.456357 0.866325 -0.644021 0.713397 0.276230 -0.749233 -0.515239 -0.416148 -0.154554 -0.474968 0.866325 -0.715243 0.641970 0.276230 -0.691106 -0.590926 -0.416148 -0.103923 -0.488551 0.866325 -0.778587 0.563471 0.276230 -0.625367 -0.660104 -0.416148 -0.052147 -0.496752 0.866325 -0.832964 0.479445 0.276230 -0.553327 -0.721561 -0.416148 -0.000203 -0.499481 0.866325 -0.878626 0.389504 0.276230 -0.474655 -0.775580 -0.416148 0.052147 -0.496752 0.866325 -0.914610 0.295273 0.276230 -0.390754 -0.821056 -0.416148 0.103923 -0.488551 0.866325 -0.940519 0.197789 0.276230 -0.302549 -0.857488 -0.416148 0.154554 -0.474968 0.866325 -0.955971 0.099082 0.276230 -0.211897 -0.884263 -0.416148 0.203027 -0.456357 0.866325 -0.961090 -0.001656 0.276230 -0.118053 -0.901601 -0.416148 0.249738 -0.432565 0.866325 -0.955624 -0.102376 0.276230 -0.022908 -0.909008 -0.416148 0.293699 -0.404008 0.866325 -0.939832 -0.201029 0.276230 0.071582 -0.906475 -0.416148 0.334053 -0.371336 0.866325 -0.913587 -0.298423 0.276230 0.166193 -0.893980 -0.416148 0.371132 -0.334280 0.866325 -0.877279 -0.392530 0.276230 0.258973 -0.871639 -0.416148 0.404123 -0.293541 0.866325 -0.831307 -0.482313 0.276230 0.348901 -0.839696 -0.416148 0.432662 -0.249570 0.866325 -0.776745 -0.566007 0.276230 0.434187 -0.798939 -0.416148 0.456233 -0.203305 0.866325 -0.713146 -0.644298 0.276230 0.515530 -0.749033 -0.416148 0.475028 -0.154369 0.866325 -0.641691 -0.715493 0.276230 0.591195 -0.690876 -0.416148 0.488591 -0.103733 0.866325 -0.563947 -0.778242 0.276230 0.659722 -0.625770 -0.416148 0.496720 -0.052450 0.866325 -0.479276 -0.833062 0.276230 0.721674 -0.553180 -0.416148 0.499481 -0.000102 0.866325 -0.389325 -0.878705 0.276230 0.775677 -0.474497 -0.416148 0.496741 0.052248 0.866325 -0.295086 -0.914670 0.276230 0.821135 -0.390587 -0.416148 0.488529 0.104022 0.866325 -0.198538 -0.940362 0.276230 0.857246 -0.303232 -0.416148 0.475091 0.154176 0.866325 -0.098888 -0.955991 0.276230 0.884306 -0.211717 -0.416148 0.456316 0.203120 0.866325 0.001852 -0.961090 0.276230 0.901625 -0.117869 -0.416148 0.432514 0.249826 0.866325 0.102571 -0.955603 0.276230 0.909013 -0.022723 -0.416148 0.403949 0.293781 0.866325 0.201220 -0.939791 0.276230 0.906461 0.071767 -0.416148 0.371268 0.334128 0.866325 0.298609 -0.913526 0.276230 0.893947 0.166375 -0.416148 0.334204 0.371200 0.866325 0.392708 -0.877199 0.276230 0.871586 0.259151 -0.416148 0.293459 0.404182 0.866325 0.481651 -0.831691 0.276230 0.839974 0.348232 -0.416148 0.249914 0.432463 0.866325 0.566165 -0.776630 0.276230 0.798850 0.434349 -0.416148 0.203213 0.456274 0.866325 0.644443 -0.713015 0.276230 0.748928 0.515683 -0.416148 0.154273 0.475060 0.866325 0.715623 -0.641545 0.276230 0.690756 0.591335 -0.416148 0.103633 0.488612 0.866325 0.778357 -0.563788 0.276230 0.625635 0.659850 -0.416148 0.052349 0.496731 0.866325 0.833159 -0.479106 0.276230 0.553033 0.721787 -0.416148 0.000000 0.499481 0.866325 0.878785 -0.389146 0.276230 0.474339 0.775773 -0.416148 -0.052349 0.496731 0.866325 0.914435 -0.295815 0.276230 0.391241 0.820824 -0.416148 -0.103633 0.488612 0.866325 0.940402 -0.198346 0.276230 0.303058 0.857308 -0.416148 -0.154273 0.475060 0.866325 0.956011 -0.098693 0.276230 0.211537 0.884349 -0.416148 -0.203213 0.456274 0.866325 0.961089 0.002047 0.276230 0.117685 0.901649 -0.416148 -0.249914 0.432463 0.866325 0.955684 0.101810 0.276230 0.023447 0.908995 -0.416148 -0.293459 0.404182 0.866325 0.939750 0.201411 0.276230 -0.071951 0.906446 -0.416148 -0.334204 0.371200 0.866325 0.913465 0.298795 0.276230 -0.166557 0.893913 -0.416148 -0.371268 0.334128 0.866325 0.877511 0.392009 0.276230 -0.258457 0.871792 -0.416148 -0.403949 0.293781 0.866325 0.831593 0.481820 0.276230 -0.348403 0.839903 -0.416148 -0.432514 0.249826 0.866325 0.776515 0.566323 0.276230 -0.434512 0.798762 -0.416148 -0.456316 0.203120 0.866325 0.712883 0.644589 0.276230 -0.515835 0.748823 -0.416148 -0.475091 0.154176 0.866325 0.642115 0.715112 0.276230 -0.590785 0.691226 -0.416148 -0.488529 0.104022 0.866325 0.563630 0.778472 0.276230 -0.659977 0.625501 -0.416148 -0.496741 0.052248 0.866325 0.180552 -0.053142 0.982129 0.009411 0.998587 0.052302 -0.983521 -0.000200 0.180797 0.185127 -0.033926 0.982129 -0.095300 0.994074 0.052302 -0.978083 -0.103279 0.180797 0.187648 -0.014524 0.982129 -0.197982 0.978809 0.052302 -0.962076 -0.204259 0.180797 0.188137 0.005223 0.982129 -0.299478 0.952669 0.052302 -0.935370 -0.303966 0.180797 0.186554 0.024912 0.982129 -0.397675 0.916034 0.052302 -0.898361 -0.400326 0.180797 0.182960 0.044144 0.982129 -0.490623 0.869801 0.052302 -0.851948 -0.491424 0.180797 0.177325 0.063076 0.982129 -0.579082 0.813590 0.052302 -0.795751 -0.578007 0.180797 0.169738 0.081314 0.982129 -0.661163 0.748417 0.052302 -0.730789 -0.658224 0.180797 0.160281 0.098656 0.982129 -0.735961 0.675001 0.052302 -0.657778 -0.731191 0.180797 0.149173 0.114762 0.982129 -0.802058 0.594952 0.052302 -0.578317 -0.795526 0.180797 0.136324 0.129764 0.982129 -0.859996 0.507614 0.052302 -0.491755 -0.851757 0.180797 0.121972 0.143337 0.982129 -0.908461 0.414684 0.052302 -0.399776 -0.898605 0.180797 0.106433 0.155225 0.982129 -0.946602 0.318134 0.052302 -0.304330 -0.935252 0.180797 0.089578 0.165525 0.982129 -0.974731 0.217171 0.052302 -0.204633 -0.961997 0.180797 0.071737 0.174002 0.982129 -0.992124 0.113816 0.052302 -0.102682 -0.978146 0.180797 0.053252 0.180519 0.982129 -0.998581 0.010021 0.052302 -0.000401 -0.983520 0.180797 0.034039 0.185106 0.982129 -0.994132 -0.094692 0.052302 0.102682 -0.978146 0.180797 0.014451 0.187654 0.982129 -0.978732 -0.198363 0.052302 0.204633 -0.961997 0.180797 -0.005296 0.188135 0.982129 -0.952552 -0.299849 0.052302 0.304330 -0.935252 0.180797 -0.024798 0.186569 0.982129 -0.916277 -0.397115 0.052302 0.399776 -0.898605 0.180797 -0.044215 0.182942 0.982129 -0.869610 -0.490961 0.052302 0.491755 -0.851757 0.180797 -0.063145 0.177301 0.982129 -0.813365 -0.579398 0.052302 0.578317 -0.795526 0.180797 -0.081210 0.169787 0.982129 -0.748821 -0.660705 0.052302 0.657778 -0.731191 0.180797 -0.098558 0.160341 0.982129 -0.675450 -0.735548 0.052302 0.730789 -0.658224 0.180797 -0.114820 0.149128 0.982129 -0.594640 -0.802289 0.052302 0.795751 -0.578007 0.180797 -0.129817 0.136273 0.982129 -0.507279 -0.860193 0.052302 0.851948 -0.491424 0.180797 -0.143263 0.122060 0.982129 -0.415239 -0.908207 0.052302 0.898361 -0.400326 0.180797 -0.155267 0.106373 0.982129 -0.317766 -0.946726 0.052302 0.935370 -0.303966 0.180797 -0.165560 0.089514 0.982129 -0.216792 -0.974816 0.052302 0.962076 -0.204259 0.180797 -0.173958 0.071843 0.982129 -0.114422 -0.992054 0.052302 0.978083 -0.103279 0.180797 -0.180530 0.053215 0.982129 -0.009818 -0.998583 0.052302 0.983521 -0.000200 0.180797 -0.185113 0.034001 0.982129 0.094895 -0.994112 0.052302 0.978125 0.102881 0.180797 -0.187657 0.014413 0.982129 0.198562 -0.978692 0.052302 0.961955 0.204829 0.180797 -0.188139 -0.005146 0.982129 0.299090 -0.952790 0.052302 0.935494 0.303585 0.180797 -0.186564 -0.024836 0.982129 0.397302 -0.916196 0.052302 0.898524 0.399960 0.180797 -0.182933 -0.044253 0.982129 0.491138 -0.869510 0.052302 0.851657 0.491928 0.180797 -0.177288 -0.063182 0.982129 0.579564 -0.813247 0.052302 0.795408 0.578479 0.180797 -0.169771 -0.081245 0.982129 0.660858 -0.748687 0.052302 0.731057 0.657927 0.180797 -0.160321 -0.098591 0.982129 0.735686 -0.675301 0.052302 0.658076 0.730923 0.180797 -0.149105 -0.114850 0.982129 0.802410 -0.594476 0.052302 0.577845 0.795869 0.180797 -0.136376 -0.129709 0.982129 0.859789 -0.507964 0.052302 0.492102 0.851556 0.180797 -0.122031 -0.143288 0.982129 0.908292 -0.415054 0.052302 0.400143 0.898442 0.180797 -0.106341 -0.155288 0.982129 0.946790 -0.317573 0.052302 0.303776 0.935432 0.180797 -0.089480 -0.165578 0.982129 0.974860 -0.216593 0.052302 0.204063 0.962118 0.180797 -0.071808 -0.173973 0.982129 0.992078 -0.114220 0.052302 0.103080 0.978104 0.180797 -0.053179 -0.180541 0.982129 0.998585 -0.009614 0.052302 0.000000 0.983521 0.180797 -0.033964 -0.185120 0.982129 0.994093 0.095097 0.052302 -0.103080 0.978104 0.180797 -0.014562 -0.187646 0.982129 0.978850 0.197783 0.052302 -0.204063 0.962118 0.180797 0.005184 -0.188138 0.982129 0.952730 0.299284 0.052302 -0.303776 0.935432 0.180797 0.024874 -0.186559 0.982129 0.916115 0.397489 0.052302 -0.400143 0.898442 0.180797 0.044290 -0.182924 0.982129 0.869410 0.491315 0.052302 -0.492102 0.851556 0.180797 0.063040 -0.177338 0.982129 0.813708 0.578916 0.052302 -0.577845 0.795869 0.180797 0.081279 -0.169754 0.982129 0.748552 0.661010 0.052302 -0.658076 0.730923 0.180797 0.098623 -0.160301 0.982129 0.675151 0.735823 0.052302 -0.731057 0.657927 0.180797 0.114732 -0.149196 0.982129 0.595115 0.801937 0.052302 -0.795408 0.578479 0.180797 0.129737 -0.136350 0.982129 0.507789 0.859892 0.052302 -0.851657 0.491928 0.180797 0.143313 -0.122002 0.982129 0.414869 0.908377 0.052302 -0.898524 0.399960 0.180797 0.155310 -0.106310 0.982129 0.317380 0.946855 0.052302 -0.935494 0.303585 0.180797 0.165507 -0.089612 0.982129 0.217370 0.974687 0.052302 -0.961955 0.204829 0.180797 0.173988 -0.071772 0.982129 0.114018 0.992101 0.052302 -0.978125 0.102881 0.180797 0.167989 0.959977 0.224108 -0.576249 0.280080 -0.767784 -0.799823 -0.000163 0.600236 0.066452 0.972296 0.224108 -0.602430 0.218143 -0.767784 -0.795401 -0.083989 0.600236 -0.034844 0.973941 0.224108 -0.621821 0.154424 -0.767784 -0.782384 -0.166108 0.600236 -0.136728 0.964925 0.224108 -0.634581 0.088402 -0.767784 -0.760666 -0.247193 0.600236 -0.237106 0.945281 0.224108 -0.640351 0.021407 -0.767784 -0.730569 -0.325554 0.600236 -0.333957 0.915559 0.224108 -0.639114 -0.045185 -0.767784 -0.692825 -0.399638 0.600236 -0.428075 0.875515 0.224108 -0.630858 -0.111920 -0.767784 -0.647124 -0.470050 0.600236 -0.517478 0.825828 0.224108 -0.615654 -0.177422 -0.767784 -0.594296 -0.535284 0.600236 -0.601180 0.767045 0.224108 -0.593668 -0.240970 -0.767784 -0.534921 -0.594623 0.600236 -0.677561 0.700490 0.224108 -0.565444 -0.301298 -0.767784 -0.470301 -0.646941 0.600236 -0.747246 0.625619 0.224108 -0.530752 -0.358901 -0.767784 -0.399907 -0.692669 0.600236 -0.808700 0.543857 0.224108 -0.490214 -0.412551 -0.767784 -0.325108 -0.730768 0.600236 -0.860789 0.456965 0.224108 -0.444737 -0.461213 -0.767784 -0.247489 -0.760570 0.600236 -0.903942 0.364231 0.224108 -0.393949 -0.505284 -0.767784 -0.166412 -0.782319 0.600236 -0.937138 0.267486 0.224108 -0.338822 -0.543790 -0.767784 -0.083503 -0.795452 0.600236 -0.959874 0.168576 0.224108 -0.280432 -0.576078 -0.767784 -0.000326 -0.799823 0.600236 -0.972255 0.067046 0.224108 -0.218511 -0.602297 -0.767784 0.083503 -0.795452 0.600236 -0.973927 -0.035223 0.224108 -0.154182 -0.621881 -0.767784 0.166412 -0.782319 0.600236 -0.964872 -0.137104 0.224108 -0.088156 -0.634615 -0.767784 0.247489 -0.760570 0.600236 -0.945426 -0.236529 0.224108 -0.021798 -0.640338 -0.767784 0.325108 -0.730768 0.600236 -0.915429 -0.334313 0.224108 0.045434 -0.639096 -0.767784 0.399907 -0.692669 0.600236 -0.875349 -0.428416 0.224108 0.112165 -0.630815 -0.767784 0.470301 -0.646941 0.600236 -0.826144 -0.516973 0.224108 0.177046 -0.615762 -0.767784 0.534921 -0.594623 0.600236 -0.767412 -0.600712 0.224108 0.240607 -0.593815 -0.767784 0.594296 -0.535284 0.600236 -0.700226 -0.677834 0.224108 0.301518 -0.565327 -0.767784 0.647124 -0.470050 0.600236 -0.625328 -0.747489 0.224108 0.359108 -0.530613 -0.767784 0.692825 -0.399638 0.600236 -0.544351 -0.808367 0.224108 0.412252 -0.490466 -0.767784 0.730569 -0.325554 0.600236 -0.456630 -0.860967 0.224108 0.461386 -0.444557 -0.767784 0.760666 -0.247193 0.600236 -0.363880 -0.904084 0.224108 0.505437 -0.393753 -0.767784 0.782384 -0.166108 0.600236 -0.268058 -0.936974 0.224108 0.543583 -0.339154 -0.767784 0.795401 -0.083989 0.600236 -0.168380 -0.959908 0.224108 0.576135 -0.280315 -0.767784 0.799823 -0.000163 0.600236 -0.066848 -0.972269 0.224108 0.602341 -0.218388 -0.767784 0.795435 0.083665 0.600236 0.035421 -0.973920 0.224108 0.621912 -0.154056 -0.767784 0.782285 0.166572 0.600236 0.136335 -0.964981 0.224108 0.634545 -0.088661 -0.767784 0.760766 0.246883 0.600236 0.236721 -0.945377 0.224108 0.640343 -0.021668 -0.767784 0.730701 0.325257 0.600236 0.334500 -0.915361 0.224108 0.639087 0.045564 -0.767784 0.692588 0.400048 0.600236 0.428594 -0.875261 0.224108 0.630792 0.112294 -0.767784 0.646846 0.470433 0.600236 0.517141 -0.826039 0.224108 0.615726 0.177171 -0.767784 0.594514 0.535042 0.600236 0.600868 -0.767289 0.224108 0.593766 0.240728 -0.767784 0.535163 0.594405 0.600236 0.677976 -0.700088 0.224108 0.565266 0.301633 -0.767784 0.469918 0.647220 0.600236 0.746991 -0.625923 0.224108 0.530898 0.358685 -0.767784 0.400189 0.692506 0.600236 0.808478 -0.544186 0.224108 0.490382 0.412352 -0.767784 0.325406 0.730635 0.600236 0.861060 -0.456455 0.224108 0.444463 0.461476 -0.767784 0.247038 0.760716 0.600236 0.904158 -0.363695 0.224108 0.393650 0.505518 -0.767784 0.165949 0.782418 0.600236 0.937029 -0.267867 0.224108 0.339044 0.543652 -0.767784 0.083827 0.795418 0.600236 0.959942 -0.168185 0.224108 0.280198 0.576192 -0.767784 0.000000 0.799823 0.600236 0.972282 -0.066650 0.224108 0.218265 0.602385 -0.767784 -0.083827 0.795418 0.600236 0.973948 0.034646 0.224108 0.154551 0.621789 -0.767784 -0.165949 0.782418 0.600236 0.964953 0.136532 0.224108 0.088532 0.634563 -0.767784 -0.247038 0.760716 0.600236 0.945329 0.236914 0.224108 0.021537 0.640347 -0.767784 -0.325406 0.730635 0.600236 0.915293 0.334686 0.224108 -0.045694 0.639078 -0.767784 -0.400189 0.692506 0.600236 0.875603 0.427897 0.224108 -0.111792 0.630881 -0.767784 -0.469918 0.647220 0.600236 0.825934 0.517309 0.224108 -0.177297 0.615690 -0.767784 -0.535163 0.594405 0.600236 0.767167 0.601024 0.224108 -0.240849 0.593717 -0.767784 -0.594514 0.535042 0.600236 0.700628 0.677418 0.224108 -0.301183 0.565506 -0.767784 -0.646846 0.470433 0.600236 0.625771 0.747118 0.224108 -0.358793 0.530825 -0.767784 -0.692588 0.400048 0.600236 0.544021 0.808589 0.224108 -0.412452 0.490298 -0.767784 -0.730701 0.325257 0.600236 0.456279 0.861153 0.224108 -0.461567 0.444369 -0.767784 -0.760766 0.246883 0.600236 0.364415 0.903868 0.224108 -0.505204 0.394052 -0.767784 -0.782285 0.166572 0.600236 0.267677 0.937083 0.224108 -0.543721 0.338933 -0.767784 -0.795435 0.083665 0.600236 -0.893215 0.344403 -0.289056 -0.327652 -0.938822 -0.106103 -0.307914 -0.000063 0.951414 -0.924392 0.248891 -0.289056 -0.227452 -0.967992 -0.106103 -0.306212 -0.032334 0.951414 -0.945235 0.151582 -0.289056 -0.125733 -0.986374 -0.106103 -0.301201 -0.063948 0.951414 -0.955916 0.051680 -0.289056 -0.021662 -0.994119 -0.106103 -0.292840 -0.095164 0.951414 -0.956068 -0.048791 -0.289056 0.082649 -0.990914 -0.106103 -0.281253 -0.125331 0.951414 -0.945837 -0.147780 -0.289056 0.185072 -0.976980 -0.106103 -0.266722 -0.153852 0.951414 -0.925140 -0.246096 -0.289056 0.286447 -0.952203 -0.106103 -0.249129 -0.180959 0.951414 -0.894252 -0.341702 -0.289056 0.384667 -0.916937 -0.106103 -0.228791 -0.206073 0.951414 -0.853514 -0.433544 -0.289056 0.478650 -0.871571 -0.106103 -0.205933 -0.228917 0.951414 -0.803895 -0.519807 -0.289056 0.566544 -0.817172 -0.106103 -0.181056 -0.249058 0.951414 -0.744988 -0.601198 -0.289056 0.649069 -0.753294 -0.106103 -0.153955 -0.266663 0.951414 -0.677875 -0.675968 -0.289056 0.724445 -0.681118 -0.106103 -0.125159 -0.281330 0.951414 -0.604038 -0.742687 -0.289056 0.791239 -0.602231 -0.106103 -0.095278 -0.292803 0.951414 -0.522873 -0.801904 -0.289056 0.850000 -0.515987 -0.106103 -0.064065 -0.301176 0.951414 -0.435948 -0.852289 -0.289056 0.899398 -0.424059 -0.106103 -0.032147 -0.306232 0.951414 -0.344948 -0.893005 -0.289056 0.938622 -0.328225 -0.106103 -0.000125 -0.307914 0.951414 -0.249455 -0.924239 -0.289056 0.967853 -0.228043 -0.106103 0.032147 -0.306232 0.951414 -0.151215 -0.945294 -0.289056 0.986423 -0.125349 -0.106103 0.064065 -0.301176 0.951414 -0.051308 -0.955936 -0.289056 0.994128 -0.021275 -0.106103 0.095278 -0.292803 0.951414 0.048207 -0.956098 -0.289056 0.990965 0.082043 -0.106103 0.125159 -0.281330 0.951414 0.148148 -0.945780 -0.289056 0.976908 0.185451 -0.106103 0.153955 -0.266663 0.951414 0.246456 -0.925044 -0.289056 0.952091 0.286817 -0.106103 0.181056 -0.249058 0.951414 0.341156 -0.894460 -0.289056 0.917172 0.384107 -0.106103 0.205933 -0.228917 0.951414 0.433023 -0.853779 -0.289056 0.871864 0.478117 -0.106103 0.228791 -0.206073 0.951414 0.520120 -0.803693 -0.289056 0.816952 0.566862 -0.106103 0.249129 -0.180959 0.951414 0.601488 -0.744754 -0.289056 0.753041 0.649362 -0.106103 0.266722 -0.153852 0.951414 0.675553 -0.678288 -0.289056 0.681561 0.724029 -0.106103 0.281253 -0.125331 0.951414 0.742922 -0.603749 -0.289056 0.601923 0.791474 -0.106103 0.292840 -0.095164 0.951414 0.802108 -0.522561 -0.289056 0.515656 0.850200 -0.106103 0.301201 -0.063948 0.951414 0.852022 -0.436468 -0.289056 0.424609 0.899138 -0.106103 0.306212 -0.032334 0.951414 0.893075 -0.344767 -0.289056 0.328034 0.938688 -0.106103 0.307914 -0.000063 0.951414 0.924290 -0.249267 -0.289056 0.227846 0.967899 -0.106103 0.306225 0.032209 0.951414 0.945325 -0.151022 -0.289056 0.125148 0.986448 -0.106103 0.301163 0.064126 0.951414 0.955895 -0.052069 -0.289056 0.022066 0.994110 -0.106103 0.292878 0.095044 0.951414 0.956088 0.048402 -0.289056 -0.082245 0.990948 -0.106103 0.281304 0.125217 0.951414 0.945749 0.148340 -0.289056 -0.185650 0.976871 -0.106103 0.266631 0.154010 0.951414 0.924994 0.246645 -0.289056 -0.287011 0.952033 -0.106103 0.249021 0.181106 0.951414 0.894391 0.341338 -0.289056 -0.384293 0.917094 -0.106103 0.228875 0.205979 0.951414 0.853690 0.433197 -0.289056 -0.478295 0.871766 -0.106103 0.206026 0.228833 0.951414 0.803587 0.520284 -0.289056 -0.567028 0.816836 -0.106103 0.180908 0.249166 0.951414 0.745233 0.600895 -0.289056 -0.648762 0.753558 -0.106103 0.154064 0.266600 0.951414 0.678150 0.675691 -0.289056 -0.724167 0.681413 -0.106103 0.125274 0.281279 0.951414 0.603598 0.743045 -0.289056 -0.791596 0.601762 -0.106103 0.095104 0.292859 0.951414 0.522397 0.802214 -0.289056 -0.850305 0.515483 -0.106103 0.063887 0.301214 0.951414 0.436295 0.852111 -0.289056 -0.899225 0.424425 -0.106103 0.032272 0.306218 0.951414 0.344585 0.893145 -0.289056 -0.938755 0.327843 -0.106103 0.000000 0.307914 0.951414 0.249079 0.924341 -0.289056 -0.967945 0.227649 -0.106103 -0.032272 0.306218 0.951414 0.151775 0.945204 -0.289056 -0.986348 0.125934 -0.106103 -0.063887 0.301214 0.951414 0.051875 0.955906 -0.289056 -0.994115 0.021864 -0.106103 -0.095104 0.292859 0.951414 -0.048597 0.956078 -0.289056 -0.990931 -0.082447 -0.106103 -0.125274 0.281279 0.951414 -0.148533 0.945719 -0.289056 -0.976833 -0.185849 -0.106103 -0.154064 0.266600 0.951414 -0.245908 0.925190 -0.289056 -0.952261 -0.286253 -0.106103 -0.180908 0.249166 0.951414 -0.341520 0.894321 -0.289056 -0.917015 -0.384480 -0.106103 -0.206026 0.228833 0.951414 -0.433370 0.853602 -0.289056 -0.871669 -0.478472 -0.106103 -0.228875 0.205979 0.951414 -0.519644 0.804001 -0.289056 -0.817288 -0.566377 -0.106103 -0.249021 0.181106 0.951414 -0.601047 0.745110 -0.289056 -0.753426 -0.648916 -0.106103 -0.266631 0.154010 0.951414 -0.675829 0.678013 -0.289056 -0.681266 -0.724306 -0.106103 -0.281304 0.125217 0.951414 -0.743168 0.603447 -0.289056 -0.601601 -0.791719 -0.106103 -0.292878 0.095044 0.951414 -0.801798 0.523036 -0.289056 -0.516160 -0.849895 -0.106103 -0.301163 0.064126 0.951414 -0.852200 0.436121 -0.289056 -0.424242 -0.899311 -0.106103 -0.306225 0.032209 0.951414 0.003011 0.286716 -0.958011 0.001114 -0.958016 -0.286714 -0.999995 -0.000204 -0.003204 -0.027056 0.285452 -0.958011 0.101514 -0.952623 -0.286714 -0.994466 -0.105009 -0.003204 -0.056543 0.281101 -0.958011 0.199860 -0.936937 -0.286714 -0.978192 -0.207680 -0.003204 -0.085693 0.273627 -0.958011 0.296957 -0.910830 -0.286714 -0.951038 -0.309058 -0.003204 -0.113899 0.263139 -0.958011 0.390783 -0.874691 -0.286714 -0.913409 -0.407031 -0.003204 -0.140601 0.249893 -0.958011 0.479476 -0.829396 -0.286714 -0.866218 -0.499655 -0.003204 -0.166017 0.233781 -0.958011 0.563762 -0.774576 -0.286714 -0.809080 -0.587689 -0.003204 -0.189605 0.215093 -0.958011 0.641838 -0.711224 -0.286714 -0.743030 -0.669250 -0.003204 -0.211104 0.194037 -0.958011 0.712844 -0.640038 -0.286714 -0.668796 -0.743439 -0.003204 -0.230107 0.171073 -0.958011 0.775437 -0.562577 -0.286714 -0.588004 -0.808852 -0.003204 -0.246769 0.146014 -0.958011 0.830128 -0.478207 -0.286714 -0.499992 -0.866024 -0.003204 -0.260713 0.119347 -0.958011 0.875676 -0.388570 -0.286714 -0.406473 -0.913657 -0.003204 -0.271694 0.091637 -0.958011 0.911283 -0.295565 -0.286714 -0.309428 -0.950918 -0.003204 -0.279802 0.062656 -0.958011 0.937241 -0.198428 -0.286714 -0.208060 -0.978111 -0.003204 -0.284828 0.032986 -0.958011 0.952876 -0.099105 -0.286714 -0.104402 -0.994530 -0.003204 -0.286714 0.003186 -0.958011 0.958016 0.000528 -0.286714 -0.000407 -0.999995 -0.003204 -0.285469 -0.026881 -0.958011 0.952685 0.100932 -0.286714 0.104402 -0.994530 -0.003204 -0.281079 -0.056652 -0.958011 0.936859 0.200225 -0.286714 0.208060 -0.978111 -0.003204 -0.273594 -0.085800 -0.958011 0.910715 0.297312 -0.286714 0.309428 -0.950918 -0.003204 -0.263208 -0.113738 -0.958011 0.874929 0.390249 -0.286714 0.406473 -0.913657 -0.003204 -0.249838 -0.140698 -0.958011 0.829210 0.479798 -0.286714 0.499992 -0.866024 -0.003204 -0.233716 -0.166108 -0.958011 0.774357 0.564063 -0.286714 0.588004 -0.808852 -0.003204 -0.215209 -0.189473 -0.958011 0.711616 0.641403 -0.286714 0.668796 -0.743439 -0.003204 -0.194166 -0.210985 -0.958011 0.640473 0.712453 -0.286714 0.743030 -0.669250 -0.003204 -0.170984 -0.230173 -0.958011 0.562275 0.775656 -0.286714 0.809080 -0.587689 -0.003204 -0.145918 -0.246826 -0.958011 0.477885 0.830314 -0.286714 0.866218 -0.499655 -0.003204 -0.119506 -0.260640 -0.958011 0.389105 0.875438 -0.286714 0.913409 -0.407031 -0.003204 -0.091531 -0.271730 -0.958011 0.295210 0.911398 -0.286714 0.951038 -0.309058 -0.003204 -0.062548 -0.279826 -0.958011 0.198063 0.937319 -0.286714 0.978192 -0.207680 -0.003204 -0.033160 -0.284808 -0.958011 0.099688 0.952816 -0.286714 0.994466 -0.105009 -0.003204 -0.003128 -0.286715 -0.958011 -0.000723 0.958016 -0.286714 0.999995 -0.000204 -0.003204 0.026939 -0.285463 -0.958011 -0.101126 0.952664 -0.286714 0.994509 0.104604 -0.003204 0.056710 -0.281068 -0.958011 -0.200416 0.936818 -0.286714 0.978068 0.208260 -0.003204 0.085582 -0.273662 -0.958011 -0.296586 0.910951 -0.286714 0.951164 0.308670 -0.003204 0.113792 -0.263185 -0.958011 -0.390427 0.874850 -0.286714 0.913574 0.406659 -0.003204 0.140749 -0.249809 -0.958011 -0.479967 0.829112 -0.286714 0.865922 0.500168 -0.003204 0.166156 -0.233682 -0.958011 -0.564221 0.774242 -0.286714 0.808732 0.588169 -0.003204 0.189517 -0.215170 -0.958011 -0.641548 0.711485 -0.286714 0.743303 0.668947 -0.003204 0.211025 -0.194123 -0.958011 -0.712584 0.640328 -0.286714 0.669099 0.743167 -0.003204 0.230208 -0.170937 -0.958011 -0.775770 0.562117 -0.286714 0.587525 0.809200 -0.003204 0.246709 -0.146115 -0.958011 -0.829933 0.478545 -0.286714 0.500345 0.865820 -0.003204 0.260665 -0.119453 -0.958011 -0.875518 0.388927 -0.286714 0.406845 0.913492 -0.003204 0.271749 -0.091476 -0.958011 -0.911458 0.295024 -0.286714 0.308864 0.951101 -0.003204 0.279839 -0.062491 -0.958011 -0.937359 0.197872 -0.286714 0.207481 0.978234 -0.003204 0.284815 -0.033102 -0.958011 -0.952836 0.099493 -0.286714 0.104807 0.994487 -0.003204 0.286715 -0.003069 -0.958011 -0.958016 -0.000919 -0.286714 0.000000 0.999995 -0.003204 0.285458 0.026998 -0.958011 -0.952643 -0.101320 -0.286714 -0.104807 0.994487 -0.003204 0.281113 0.056486 -0.958011 -0.936978 -0.199669 -0.286714 -0.207481 0.978234 -0.003204 0.273644 0.085637 -0.958011 -0.910891 -0.296772 -0.286714 -0.308864 0.951101 -0.003204 0.263162 0.113846 -0.958011 -0.874770 -0.390605 -0.286714 -0.406845 0.913492 -0.003204 0.249781 0.140800 -0.958011 -0.829014 -0.480136 -0.286714 -0.500345 0.865820 -0.003204 0.233814 0.165970 -0.958011 -0.774691 -0.563604 -0.286714 -0.587525 0.809200 -0.003204 0.215132 0.189561 -0.958011 -0.711354 -0.641693 -0.286714 -0.669099 0.743167 -0.003204 0.194080 0.211064 -0.958011 -0.640183 -0.712714 -0.286714 -0.743303 0.668947 -0.003204 0.171120 0.230072 -0.958011 -0.562735 -0.775322 -0.286714 -0.808732 0.588169 -0.003204 0.146064 0.246739 -0.958011 -0.478376 -0.830031 -0.286714 -0.865922 0.500168 -0.003204 0.119400 0.260689 -0.958011 -0.388749 -0.875597 -0.286714 -0.913574 0.406659 -0.003204 0.091420 0.271767 -0.958011 -0.294839 -0.911518 -0.286714 -0.951164 0.308670 -0.003204 0.062713 0.279789 -0.958011 -0.198619 -0.937201 -0.286714 -0.978068 0.208260 -0.003204 0.033044 0.284821 -0.958011 -0.099299 -0.952856 -0.286714 -0.994509 0.104604 -0.003204 -0.187033 -0.937478 -0.293518 0.504203 -0.348043 0.790345 -0.843088 -0.000172 0.537775 -0.087749 -0.951918 -0.293518 0.537904 -0.293282 0.790345 -0.838427 -0.088532 0.537775 0.011546 -0.955884 -0.293518 0.565444 -0.235857 0.790345 -0.824706 -0.175093 0.537775 0.111666 -0.949409 -0.293518 0.587049 -0.175295 0.790345 -0.801813 -0.260564 0.537775 0.210556 -0.932477 -0.293518 0.602188 -0.112803 0.790345 -0.770088 -0.343165 0.537775 0.306221 -0.905580 -0.293518 0.610645 -0.049678 0.790345 -0.730302 -0.421256 0.537775 0.399446 -0.868499 -0.293518 0.612488 0.014595 0.790345 -0.682130 -0.495476 0.537775 0.488271 -0.821851 -0.293518 0.607585 0.078708 0.790345 -0.626443 -0.564240 0.537775 0.571718 -0.766150 -0.293518 0.595990 0.141954 0.790345 -0.563857 -0.626788 0.537775 0.648165 -0.702659 -0.293518 0.578033 0.203058 0.790345 -0.495742 -0.681937 0.537775 0.718239 -0.630857 -0.293518 0.553568 0.262522 0.790345 -0.421540 -0.730138 0.537775 0.780402 -0.552106 -0.293518 0.523005 0.319094 0.790345 -0.342694 -0.770298 0.537775 0.833500 -0.468107 -0.293518 0.487053 0.371664 0.790345 -0.260876 -0.801711 0.537775 0.877971 -0.378172 -0.293518 0.445418 0.420664 0.790345 -0.175414 -0.824638 0.537775 0.912771 -0.284072 -0.293518 0.398876 0.465030 0.790345 -0.088020 -0.838481 0.537775 0.937364 -0.187606 -0.293518 0.348351 0.503991 0.790345 -0.000343 -0.843088 0.537775 0.951864 -0.088330 -0.293518 0.293611 0.537725 0.790345 0.088020 -0.838481 0.537775 0.955879 0.011918 -0.293518 0.235637 0.565536 0.790345 0.175414 -0.824638 0.537775 0.949366 0.112036 -0.293518 0.175067 0.587117 0.790345 0.260876 -0.801711 0.537775 0.932606 0.209986 -0.293518 0.113171 0.602119 0.790345 0.342694 -0.770298 0.537775 0.905461 0.306574 -0.293518 0.049441 0.610664 0.790345 0.421540 -0.730138 0.537775 0.868343 0.399784 -0.293518 -0.014833 0.612483 0.790345 0.495742 -0.681937 0.537775 0.822149 0.487769 -0.293518 -0.078337 0.607633 0.790345 0.563857 -0.626788 0.537775 0.766499 0.571250 -0.293518 -0.141590 0.596077 0.790345 0.626443 -0.564240 0.537775 0.702407 0.648438 -0.293518 -0.203283 0.577954 0.790345 0.682130 -0.495476 0.537775 0.630577 0.718484 -0.293518 -0.262737 0.553466 0.790345 0.730302 -0.421256 0.537775 0.552583 0.780064 -0.293518 -0.318774 0.523200 0.790345 0.770088 -0.343165 0.537775 0.467783 0.833682 -0.293518 -0.371854 0.486908 0.790345 0.801813 -0.260564 0.537775 0.377831 0.878118 -0.293518 -0.420837 0.445254 0.790345 0.824706 -0.175093 0.537775 0.284630 0.912597 -0.293518 -0.464786 0.399160 0.790345 0.838427 -0.088532 0.537775 0.187415 0.937402 -0.293518 -0.504061 0.348249 0.790345 0.843088 -0.000172 0.537775 0.088137 0.951882 -0.293518 -0.537784 0.293501 0.790345 0.838463 0.088191 0.537775 -0.012113 0.955877 -0.293518 -0.565584 0.235521 0.790345 0.824602 0.175582 0.537775 -0.111279 0.949455 -0.293518 -0.586978 0.175534 0.790345 0.801919 0.260238 0.537775 -0.210176 0.932563 -0.293518 -0.602142 0.113048 0.790345 0.770228 0.342851 0.537775 -0.306758 0.905399 -0.293518 -0.610674 0.049316 0.790345 0.730052 0.421688 0.537775 -0.399961 0.868262 -0.293518 -0.612480 -0.014958 0.790345 0.681836 0.495881 0.537775 -0.487936 0.822050 -0.293518 -0.607617 -0.078461 0.790345 0.626673 0.563984 0.537775 -0.571406 0.766383 -0.293518 -0.596048 -0.141711 0.790345 0.564112 0.626558 0.537775 -0.648581 0.702275 -0.293518 -0.577913 -0.203401 0.790345 0.495337 0.682230 0.537775 -0.717982 0.631149 -0.293518 -0.553675 -0.262296 0.790345 0.421837 0.729967 0.537775 -0.780177 0.552424 -0.293518 -0.523135 -0.318881 0.790345 0.343008 0.770158 0.537775 -0.833778 0.467613 -0.293518 -0.486833 -0.371953 0.790345 0.260401 0.801866 0.537775 -0.878195 0.377652 -0.293518 -0.445168 -0.420928 0.790345 0.174925 0.824742 0.537775 -0.912655 0.284444 -0.293518 -0.399065 -0.464868 0.790345 0.088362 0.838445 0.537775 -0.937440 0.187224 -0.293518 -0.348146 -0.504132 0.790345 0.000000 0.843088 0.537775 -0.951900 0.087943 -0.293518 -0.293392 -0.537844 0.790345 -0.088362 0.838445 0.537775 -0.955886 -0.011352 -0.293518 -0.235972 -0.565396 0.790345 -0.174925 0.824742 0.537775 -0.949432 -0.111473 -0.293518 -0.175415 -0.587013 0.790345 -0.260401 0.801866 0.537775 -0.932520 -0.210366 -0.293518 -0.112925 -0.602165 0.790345 -0.343008 0.770158 0.537775 -0.905336 -0.306942 -0.293518 -0.049192 -0.610684 0.790345 -0.421837 0.729967 0.537775 -0.868580 -0.399269 -0.293518 0.014470 -0.612491 0.790345 -0.495337 0.682230 0.537775 -0.821950 -0.488104 -0.293518 0.078584 -0.607602 0.790345 -0.564112 0.626558 0.537775 -0.766267 -0.571562 -0.293518 0.141832 -0.596019 0.790345 -0.626673 0.563984 0.537775 -0.702791 -0.648022 -0.293518 0.202940 -0.578075 0.790345 -0.681836 0.495881 0.537775 -0.631003 -0.718110 -0.293518 0.262409 -0.553621 0.790345 -0.730052 0.421688 0.537775 -0.552265 -0.780289 -0.293518 0.318987 -0.523070 0.790345 -0.770228 0.342851 0.537775 -0.467443 -0.833873 -0.293518 0.372052 -0.486757 0.790345 -0.801919 0.260238 0.537775 -0.378351 -0.877894 -0.293518 0.420573 -0.445503 0.790345 -0.824602 0.175582 0.537775 -0.284258 -0.912713 -0.293518 0.464949 -0.398971 0.790345 -0.838463 0.088191 0.537775 0.945195 0.137553 -0.296117 0.131281 -0.990494 -0.041064 -0.298950 -0.000061 -0.954269 0.925573 0.235859 -0.296117 0.234369 -0.971280 -0.041064 -0.297298 -0.031393 -0.954269 0.896087 0.330671 -0.296117 0.333933 -0.941702 -0.041064 -0.292432 -0.062086 -0.954269 0.856495 0.422766 -0.296117 0.430791 -0.901517 -0.041064 -0.284315 -0.092393 -0.954269 0.807469 0.510204 -0.296117 0.522904 -0.851402 -0.041064 -0.273065 -0.121683 -0.954269 0.750141 0.591273 -0.296117 0.608465 -0.792517 -0.041064 -0.258958 -0.149373 -0.954269 0.684040 0.666637 -0.296117 0.688176 -0.724381 -0.041064 -0.241876 -0.175691 -0.954269 0.610404 0.734658 -0.296117 0.760306 -0.648266 -0.041064 -0.222130 -0.200074 -0.954269 0.530045 0.794586 -0.296117 0.824061 -0.565010 -0.041064 -0.199938 -0.222253 -0.954269 0.444693 0.845318 -0.296117 0.878264 -0.476409 -0.041064 -0.175785 -0.241808 -0.954269 0.353648 0.887270 -0.296117 0.923358 -0.381737 -0.041064 -0.149474 -0.258900 -0.954269 0.258708 0.919448 -0.296117 0.958282 -0.282860 -0.041064 -0.121516 -0.273140 -0.954269 0.161860 0.941337 -0.296117 0.982468 -0.181850 -0.041064 -0.092504 -0.284279 -0.954269 0.062310 0.953117 -0.296117 0.996117 -0.077879 -0.041064 -0.062200 -0.292408 -0.954269 -0.037927 0.954398 -0.296117 0.998793 0.026950 -0.041064 -0.031211 -0.297317 -0.954269 -0.136976 0.945279 -0.296117 0.990574 0.130676 -0.041064 -0.000122 -0.298950 -0.954269 -0.235293 0.925717 -0.296117 0.971423 0.233775 -0.041064 0.031211 -0.297317 -0.954269 -0.331019 0.895958 -0.296117 0.941572 0.334300 -0.041064 0.062200 -0.292408 -0.954269 -0.423099 0.856331 -0.296117 0.901349 0.431142 -0.041064 0.092504 -0.284279 -0.954269 -0.509711 0.807781 -0.296117 0.851721 0.522384 -0.041064 0.121516 -0.273140 -0.954269 -0.591565 0.749911 -0.296117 0.792281 0.608773 -0.041064 0.149474 -0.258900 -0.954269 -0.666903 0.683780 -0.296117 0.724113 0.688457 -0.041064 0.175785 -0.241808 -0.954269 -0.734285 0.610853 -0.296117 0.648730 0.759910 -0.041064 0.199938 -0.222253 -0.954269 -0.794262 0.530530 -0.296117 0.565513 0.823716 -0.041064 0.222130 -0.200074 -0.954269 -0.845491 0.444364 -0.296117 0.476068 0.878449 -0.041064 0.241876 -0.175691 -0.954269 -0.887407 0.353303 -0.296117 0.381378 0.923507 -0.041064 0.258958 -0.149373 -0.954269 -0.919290 0.259270 -0.296117 0.283446 0.958109 -0.041064 0.273065 -0.121683 -0.954269 -0.941400 0.161494 -0.296117 0.181468 0.982539 -0.041064 0.284315 -0.092393 -0.954269 -0.953141 0.061939 -0.296117 0.077491 0.996147 -0.041064 0.292432 -0.062086 -0.954269 -0.954421 -0.037344 -0.296117 -0.026340 0.998809 -0.041064 0.297298 -0.031393 -0.954269 -0.945251 -0.137168 -0.296117 -0.130877 0.990548 -0.041064 0.298950 -0.000061 -0.954269 -0.925669 -0.235482 -0.296117 -0.233973 0.971376 -0.041064 0.297310 0.031272 -0.954269 -0.895891 -0.331202 -0.296117 -0.334492 0.941504 -0.041064 0.292395 0.062260 -0.954269 -0.856667 -0.422417 -0.296117 -0.430424 0.901692 -0.041064 0.284352 0.092278 -0.954269 -0.807677 -0.509875 -0.296117 -0.522557 0.851615 -0.041064 0.273115 0.121572 -0.954269 -0.749790 -0.591718 -0.296117 -0.608935 0.792157 -0.041064 0.258869 0.149526 -0.954269 -0.683644 -0.667042 -0.296117 -0.688605 0.723973 -0.041064 0.241772 0.175834 -0.954269 -0.610703 -0.734409 -0.296117 -0.760042 0.648576 -0.041064 0.222212 0.199983 -0.954269 -0.530368 -0.794370 -0.296117 -0.823831 0.565346 -0.041064 0.200028 0.222171 -0.954269 -0.444192 -0.845582 -0.296117 -0.878546 0.475889 -0.041064 0.175642 0.241912 -0.954269 -0.354010 -0.887126 -0.296117 -0.923203 0.382113 -0.041064 0.149579 0.258839 -0.954269 -0.259083 -0.919343 -0.296117 -0.958166 0.283251 -0.041064 0.121627 0.273090 -0.954269 -0.161302 -0.941433 -0.296117 -0.982576 0.181268 -0.041064 0.092335 0.284333 -0.954269 -0.061745 -0.953154 -0.296117 -0.996163 0.077288 -0.041064 0.062027 0.292445 -0.954269 0.037538 -0.954414 -0.296117 -0.998804 -0.026543 -0.041064 0.031332 0.297304 -0.954269 0.137361 -0.945223 -0.296117 -0.990521 -0.131079 -0.041064 0.000000 0.298950 -0.954269 0.235670 -0.925621 -0.296117 -0.971328 -0.234171 -0.041064 -0.031332 0.297304 -0.954269 0.330488 -0.896154 -0.296117 -0.941770 -0.333742 -0.041064 -0.062027 0.292445 -0.954269 0.422591 -0.856581 -0.296117 -0.901604 -0.430608 -0.041064 -0.092335 0.284333 -0.954269 0.510040 -0.807573 -0.296117 -0.851508 -0.522731 -0.041064 -0.121627 0.273090 -0.954269 0.591870 -0.749670 -0.296117 -0.792033 -0.609096 -0.041064 -0.149579 0.258839 -0.954269 0.666498 -0.684175 -0.296117 -0.724521 -0.688028 -0.041064 -0.175642 0.241912 -0.954269 0.734533 -0.610554 -0.296117 -0.648421 -0.760174 -0.041064 -0.200028 0.222171 -0.954269 0.794478 -0.530207 -0.296117 -0.565178 -0.823946 -0.041064 -0.222212 0.199983 -0.954269 0.845228 -0.444865 -0.296117 -0.476588 -0.878167 -0.041064 -0.241772 0.175834 -0.954269 0.887198 -0.353829 -0.296117 -0.381925 -0.923281 -0.041064 -0.258869 0.149526 -0.954269 0.919395 -0.258896 -0.296117 -0.283055 -0.958224 -0.041064 -0.273115 0.121572 -0.954269 0.941466 -0.161111 -0.296117 -0.181068 -0.982613 -0.041064 -0.284352 0.092278 -0.954269 0.953104 -0.062504 -0.296117 -0.078082 -0.996101 -0.041064 -0.292395 0.062260 -0.954269 0.954406 0.037732 -0.296117 0.026747 -0.998798 -0.041064 -0.297310 0.031272 -0.954269 -0.050449 -0.936402 -0.347284 0.135184 -0.350929 0.926593 -0.989535 -0.000202 0.144291 0.047970 -0.936532 -0.347284 0.171220 -0.334828 0.926593 -0.984064 -0.103911 0.144291 0.144935 -0.926492 -0.347284 0.205054 -0.315244 0.926593 -0.967960 -0.205508 0.144291 0.241240 -0.906199 -0.347284 0.236964 -0.292017 0.926593 -0.941090 -0.305825 0.144291 0.334887 -0.875925 -0.347284 0.266265 -0.265573 0.926593 -0.903855 -0.402774 0.144291 0.424010 -0.836426 -0.347284 0.292396 -0.236497 0.926593 -0.857158 -0.494429 0.144291 0.509338 -0.787381 -0.347284 0.315572 -0.204549 0.926593 -0.800618 -0.581542 0.144291 0.589056 -0.729662 -0.347284 0.335272 -0.170348 0.926593 -0.735259 -0.662250 0.144291 0.662286 -0.663906 -0.347284 0.351280 -0.134271 0.926593 -0.661801 -0.735663 0.144291 0.727629 -0.591565 -0.347284 0.363321 -0.097078 0.926593 -0.581854 -0.800391 0.144291 0.785622 -0.512046 -0.347284 0.371494 -0.058465 0.926593 -0.494762 -0.856966 0.144291 0.834962 -0.426887 -0.347284 0.375576 -0.019208 0.926593 -0.402221 -0.904101 0.144291 0.874766 -0.337902 -0.347284 0.375541 0.019886 0.926593 -0.306191 -0.940971 0.144291 0.905363 -0.244359 -0.347284 0.371388 0.059135 0.926593 -0.205884 -0.967880 0.144291 0.925988 -0.148124 -0.347284 0.363145 0.097734 0.926593 -0.103310 -0.984128 0.144291 0.936371 -0.051021 -0.347284 0.351012 0.134970 0.926593 -0.000403 -0.989535 0.144291 0.936561 0.047398 -0.347284 0.334933 0.171015 0.926593 0.103310 -0.984128 0.144291 0.926436 0.145295 -0.347284 0.315165 0.205177 0.926593 0.205884 -0.967880 0.144291 0.906105 0.241592 -0.347284 0.291925 0.237078 0.926593 0.306191 -0.940971 0.144291 0.876129 0.334352 -0.347284 0.265736 0.266103 0.926593 0.402221 -0.904101 0.144291 0.836262 0.424335 -0.347284 0.236383 0.292488 0.926593 0.494762 -0.856966 0.144291 0.787182 0.509645 -0.347284 0.204426 0.315652 0.926593 0.581854 -0.800391 0.144291 0.730022 0.588610 -0.347284 0.170553 0.335168 0.926593 0.661801 -0.735663 0.144291 0.664311 0.661880 -0.347284 0.134486 0.351198 0.926593 0.735259 -0.662250 0.144291 0.591282 0.727859 -0.347284 0.096937 0.363358 0.926593 0.800618 -0.581542 0.144291 0.511741 0.785821 -0.347284 0.058321 0.371517 0.926593 0.857158 -0.494429 0.144291 0.427398 0.834701 -0.347284 0.019437 0.375564 0.926593 0.903855 -0.402774 0.144291 0.337561 0.874898 -0.347284 -0.020032 0.375533 0.926593 0.941090 -0.305825 0.144291 0.244006 0.905458 -0.347284 -0.059280 0.371365 0.926593 0.967960 -0.205508 0.144291 0.148690 0.925897 -0.347284 -0.097512 0.363205 0.926593 0.984064 -0.103911 0.144291 0.050831 0.936381 -0.347284 -0.135041 0.350984 0.926593 0.989535 -0.000202 0.144291 -0.047589 0.936552 -0.347284 -0.171083 0.334898 0.926593 0.984107 0.103510 0.144291 -0.145484 0.926406 -0.347284 -0.205241 0.315123 0.926593 0.967838 0.206081 0.144291 -0.240871 0.906297 -0.347284 -0.236846 0.292114 0.926593 0.941215 0.305442 0.144291 -0.334531 0.876061 -0.347284 -0.266157 0.265682 0.926593 0.904019 0.402406 0.144291 -0.424506 0.836175 -0.347284 -0.292536 0.236323 0.926593 0.856865 0.494937 0.144291 -0.509805 0.787079 -0.347284 -0.315693 0.204362 0.926593 0.800273 0.582017 0.144291 -0.588759 0.729902 -0.347284 -0.335203 0.170485 0.926593 0.735528 0.661950 0.144291 -0.662015 0.664176 -0.347284 -0.351225 0.134414 0.926593 0.662100 0.735393 0.144291 -0.727980 0.591134 -0.347284 -0.363378 0.096863 0.926593 0.581379 0.800736 0.144291 -0.785414 0.512366 -0.347284 -0.371470 0.058616 0.926593 0.495111 0.856764 0.144291 -0.834788 0.427228 -0.347284 -0.375568 0.019361 0.926593 0.402590 0.903937 0.144291 -0.874967 0.337383 -0.347284 -0.375529 -0.020108 0.926593 0.305633 0.941153 0.144291 -0.905508 0.243822 -0.347284 -0.371353 -0.059355 0.926593 0.205311 0.968002 0.144291 -0.925927 0.148502 -0.347284 -0.363185 -0.097586 0.926593 0.103710 0.984086 0.144291 -0.936392 0.050640 -0.347284 -0.350957 -0.135113 0.926593 0.000000 0.989535 0.144291 -0.936542 -0.047780 -0.347284 -0.334863 -0.171151 0.926593 -0.103710 0.984086 0.144291 -0.926522 -0.144746 -0.347284 -0.315286 -0.204990 0.926593 -0.205311 0.968002 0.144291 -0.906248 -0.241055 -0.347284 -0.292065 -0.236905 0.926593 -0.305633 0.941153 0.144291 -0.875993 -0.334709 -0.347284 -0.265627 -0.266211 0.926593 -0.402590 0.903937 0.144291 -0.836089 -0.424676 -0.347284 -0.236264 -0.292584 0.926593 -0.495111 0.856764 0.144291 -0.787484 -0.509178 -0.347284 -0.204613 -0.315531 0.926593 -0.581379 0.800736 0.144291 -0.729782 -0.588908 -0.347284 -0.170416 -0.335238 0.926593 -0.662100 0.735393 0.144291 -0.664041 -0.662151 -0.347284 -0.134343 -0.351252 0.926593 -0.735528 0.661950 0.144291 -0.591713 -0.727509 -0.347284 -0.097152 -0.363301 0.926593 -0.800273 0.582017 0.144291 -0.512206 -0.785518 -0.347284 -0.058541 -0.371482 0.926593 -0.856865 0.494937 0.144291 -0.427058 -0.834875 -0.347284 -0.019284 -0.375572 0.926593 -0.904019 0.402406 0.144291 -0.337205 -0.875035 -0.347284 0.020185 -0.375525 0.926593 -0.941215 0.305442 0.144291 -0.244543 -0.905313 -0.347284 0.059060 -0.371400 0.926593 -0.967838 0.206081 0.144291 -0.148313 -0.925957 -0.347284 0.097660 -0.363165 0.926593 -0.984107 0.103510 0.144291 0.235168 -0.521960 -0.819911 -0.143687 -0.852970 0.501793 -0.961275 -0.000196 -0.275590 0.288578 -0.494438 -0.819911 -0.053498 -0.863332 0.501793 -0.955961 -0.100943 -0.275590 0.338348 -0.461809 -0.819911 0.036416 -0.864221 0.501793 -0.940316 -0.199639 -0.275590 0.384886 -0.423804 -0.819911 0.126792 -0.855644 0.501793 -0.914214 -0.297091 -0.275590 0.427184 -0.381131 -0.819911 0.215771 -0.837643 0.501793 -0.878042 -0.391271 -0.275590 0.464442 -0.334725 -0.819911 0.301563 -0.810718 0.501793 -0.832679 -0.480309 -0.275590 0.496965 -0.284205 -0.819911 0.384871 -0.774647 0.501793 -0.777753 -0.564934 -0.275590 0.524015 -0.230554 -0.819911 0.463940 -0.730043 0.501793 -0.714260 -0.643337 -0.275590 0.545293 -0.174363 -0.819911 0.537899 -0.677398 0.501793 -0.642900 -0.714653 -0.275590 0.560447 -0.116813 -0.819911 0.605315 -0.617897 0.501793 -0.565237 -0.777533 -0.275590 0.569604 -0.057431 -0.819911 0.666741 -0.551053 0.501793 -0.480632 -0.832492 -0.275590 0.572486 0.002584 -0.819911 0.720824 -0.478139 0.501793 -0.390734 -0.878281 -0.275590 0.569124 0.062001 -0.819911 0.766566 -0.400725 0.501793 -0.297447 -0.914098 -0.275590 0.559492 0.121308 -0.819911 0.804343 -0.318176 0.501793 -0.200004 -0.940238 -0.275590 0.543696 0.179279 -0.819911 0.833260 -0.232123 0.501793 -0.100359 -0.956022 -0.275590 0.522104 0.234849 -0.819911 0.852882 -0.144208 0.501793 -0.000392 -0.961275 -0.275590 0.494614 0.288276 -0.819911 0.863299 -0.054025 0.501793 0.100359 -0.956022 -0.275590 0.461677 0.338528 -0.819911 0.864206 0.036752 0.501793 0.200004 -0.940238 -0.275590 0.423654 0.385050 -0.819911 0.855595 0.127125 0.501793 0.297447 -0.914098 -0.275590 0.381392 0.426951 -0.819911 0.837775 0.215259 0.501793 0.390734 -0.878281 -0.275590 0.334544 0.464572 -0.819911 0.810600 0.301879 0.501793 0.480632 -0.832492 -0.275590 0.284011 0.497076 -0.819911 0.774497 0.385173 0.501793 0.565237 -0.777533 -0.275590 0.230874 0.523874 -0.819911 0.730326 0.463494 0.501793 0.642900 -0.714653 -0.275590 0.174697 0.545186 -0.819911 0.677727 0.537485 0.501793 0.714260 -0.643337 -0.275590 0.116595 0.560493 -0.819911 0.617662 0.605555 0.501793 0.777753 -0.564934 -0.275590 0.057209 0.569626 -0.819911 0.550794 0.666956 0.501793 0.832679 -0.480309 -0.275590 -0.002234 0.572487 -0.819911 0.478579 0.720531 0.501793 0.878042 -0.391271 -0.275590 -0.062223 0.569100 -0.819911 0.400426 0.766722 0.501793 0.914214 -0.297091 -0.275590 -0.121526 0.559444 -0.819911 0.317863 0.804466 0.501793 0.940316 -0.199639 -0.275590 -0.178947 0.543806 -0.819911 0.232632 0.833118 0.501793 0.955961 -0.100943 -0.275590 -0.234956 0.522056 -0.819911 0.144034 0.852911 0.501793 0.961275 -0.000196 -0.275590 -0.288377 0.494556 -0.819911 0.053850 0.863310 0.501793 0.956002 0.100554 -0.275590 -0.338622 0.461608 -0.819911 -0.036928 0.864199 0.501793 0.940198 0.200196 -0.275590 -0.384713 0.423961 -0.819911 -0.126443 0.855696 0.501793 0.914335 0.296719 -0.275590 -0.427028 0.381305 -0.819911 -0.215430 0.837731 0.501793 0.878201 0.390913 -0.275590 -0.464640 0.334449 -0.819911 -0.302044 0.810539 0.501793 0.832394 0.480802 -0.275590 -0.497134 0.283910 -0.819911 -0.385330 0.774418 0.501793 0.777418 0.565395 -0.275590 -0.523921 0.230767 -0.819911 -0.463643 0.730232 0.501793 0.714522 0.643046 -0.275590 -0.545222 0.174586 -0.819911 -0.537623 0.677617 0.501793 0.643191 0.714391 -0.275590 -0.560517 0.116481 -0.819911 -0.605681 0.617538 0.501793 0.564776 0.777868 -0.275590 -0.569580 0.057663 -0.819911 -0.666517 0.551324 0.501793 0.480972 0.832296 -0.275590 -0.572487 -0.002351 -0.819911 -0.720629 0.478432 0.501793 0.391092 0.878121 -0.275590 -0.569087 -0.062339 -0.819911 -0.766803 0.400270 0.501793 0.296905 0.914274 -0.275590 -0.559420 -0.121640 -0.819911 -0.804531 0.317699 0.501793 0.199447 0.940357 -0.275590 -0.543769 -0.179057 -0.819911 -0.833165 0.232462 0.501793 0.100749 0.955981 -0.275590 -0.522008 -0.235062 -0.819911 -0.852941 0.143860 0.501793 0.000000 0.961275 -0.275590 -0.494497 -0.288478 -0.819911 -0.863321 0.053674 0.501793 -0.100749 0.955981 -0.275590 -0.461877 -0.338254 -0.819911 -0.864228 -0.036240 0.501793 -0.199447 0.940357 -0.275590 -0.423882 -0.384799 -0.819911 -0.855670 -0.126618 0.501793 -0.296905 0.914274 -0.275590 -0.381218 -0.427106 -0.819911 -0.837687 -0.215601 0.501793 -0.391092 0.878121 -0.275590 -0.334355 -0.464708 -0.819911 -0.810477 -0.302209 0.501793 -0.480972 0.832296 -0.275590 -0.284306 -0.496907 -0.819911 -0.774725 -0.384714 0.501793 -0.564776 0.777868 -0.275590 -0.230660 -0.523968 -0.819911 -0.730137 -0.463792 0.501793 -0.643191 0.714391 -0.275590 -0.174474 -0.545257 -0.819911 -0.677508 -0.537761 0.501793 -0.714522 0.643046 -0.275590 -0.116927 -0.560424 -0.819911 -0.618021 -0.605189 0.501793 -0.777418 0.565395 -0.275590 -0.057547 -0.569592 -0.819911 -0.551189 -0.666629 0.501793 -0.832394 0.480802 -0.275590 0.002467 -0.572486 -0.819911 -0.478286 -0.720726 0.501793 -0.878201 0.390913 -0.275590 0.062455 -0.569075 -0.819911 -0.400114 -0.766885 0.501793 -0.914335 0.296719 -0.275590 0.121194 -0.559516 -0.819911 -0.318340 -0.804278 0.501793 -0.940198 0.200196 -0.275590 0.179168 -0.543733 -0.819911 -0.232293 -0.833213 0.501793 -0.956002 0.100554 -0.275590 0.721047 0.175039 0.670412 -0.128286 0.984561 -0.119085 -0.680907 -0.000139 0.732370 0.698730 0.249646 0.670412 -0.230769 0.965694 -0.119085 -0.677142 -0.071502 0.732370 0.669039 0.320834 0.670412 -0.329773 0.936519 -0.119085 -0.666061 -0.141411 0.732370 0.631728 0.389187 0.670412 -0.426111 0.896799 -0.119085 -0.647571 -0.210441 0.732370 0.587459 0.453253 0.670412 -0.517755 0.847200 -0.119085 -0.621949 -0.277152 0.732370 0.537232 0.511790 0.670412 -0.602908 0.788873 -0.119085 -0.589817 -0.340220 0.732370 0.480634 0.565277 0.670412 -0.682267 0.721340 -0.119085 -0.550911 -0.400164 0.732370 0.418742 0.612538 0.670412 -0.754111 0.645860 -0.119085 -0.505937 -0.455699 0.732370 0.352237 0.653052 0.670412 -0.817648 0.563267 -0.119085 -0.455390 -0.506215 0.732370 0.282539 0.686090 0.670412 -0.871705 0.475341 -0.119085 -0.400378 -0.550755 0.732370 0.209076 0.711923 0.670412 -0.916723 0.381363 -0.119085 -0.340450 -0.589685 0.732370 0.133310 0.729915 0.670412 -0.951644 0.283183 -0.119085 -0.276772 -0.622119 0.732370 0.056815 0.739810 0.670412 -0.975900 0.182860 -0.119085 -0.210692 -0.647490 0.732370 -0.021035 0.741691 0.670412 -0.989690 0.079572 -0.119085 -0.141671 -0.666006 0.732370 -0.098654 0.735401 0.670412 -0.992579 -0.024593 -0.119085 -0.071088 -0.677186 0.732370 -0.174599 0.721154 0.670412 -0.984640 -0.127685 -0.119085 -0.000277 -0.680907 0.732370 -0.249219 0.698883 0.670412 -0.965835 -0.230179 -0.119085 0.071088 -0.677186 0.732370 -0.321094 0.668914 0.670412 -0.936391 -0.330138 -0.119085 0.141671 -0.666006 0.732370 -0.389433 0.631577 0.670412 -0.896633 -0.426460 -0.119085 0.210692 -0.647490 0.732370 -0.452894 0.587736 0.670412 -0.847516 -0.517237 -0.119085 0.276772 -0.622119 0.732370 -0.511999 0.537033 0.670412 -0.788639 -0.603215 -0.119085 0.340450 -0.589685 0.732370 -0.565464 0.480414 0.670412 -0.721074 -0.682547 -0.119085 0.400378 -0.550755 0.732370 -0.612282 0.419116 0.670412 -0.646321 -0.753716 -0.119085 0.455390 -0.506215 0.732370 -0.652836 0.352636 0.670412 -0.563766 -0.817304 -0.119085 0.505937 -0.455699 0.732370 -0.686200 0.282272 0.670412 -0.475002 -0.871890 -0.119085 0.550911 -0.400164 0.732370 -0.712004 0.208799 0.670412 -0.381006 -0.916871 -0.119085 0.589817 -0.340220 0.732370 -0.729833 0.133756 0.670412 -0.283765 -0.951471 -0.119085 0.621949 -0.277152 0.732370 -0.739832 0.056527 0.670412 -0.182481 -0.975971 -0.119085 0.647571 -0.210441 0.732370 -0.741682 -0.021324 0.670412 -0.079187 -0.989721 -0.119085 0.666061 -0.141411 0.732370 -0.735461 -0.098205 0.670412 0.023986 -0.992594 -0.119085 0.677142 -0.071502 0.732370 -0.721118 -0.174745 0.670412 0.127885 -0.984614 -0.119085 0.680907 -0.000139 0.732370 -0.698832 -0.249361 0.670412 0.230376 -0.965788 -0.119085 0.677171 0.071226 0.732370 -0.668848 -0.321231 0.670412 0.330328 -0.936324 -0.119085 0.665977 0.141806 0.732370 -0.631887 -0.388930 0.670412 0.425746 -0.896972 -0.119085 0.647657 0.210177 0.732370 -0.587644 -0.453014 0.670412 0.517410 -0.847411 -0.119085 0.622062 0.276898 0.732370 -0.536929 -0.512108 0.670412 0.603375 -0.788516 -0.119085 0.589615 0.340570 0.732370 -0.480299 -0.565562 0.670412 0.682694 -0.720935 -0.119085 0.550674 0.400490 0.732370 -0.418991 -0.612367 0.670412 0.753848 -0.646167 -0.119085 0.506123 0.455493 0.732370 -0.352503 -0.652908 0.670412 0.817419 -0.563600 -0.119085 0.455596 0.506030 0.732370 -0.282132 -0.686257 0.670412 0.871986 -0.474825 -0.119085 0.400051 0.550993 0.732370 -0.209366 -0.711838 0.670412 0.916568 -0.381736 -0.119085 0.340690 0.589546 0.732370 -0.133607 -0.729861 0.670412 0.951528 -0.283571 -0.119085 0.277025 0.622006 0.732370 -0.056377 -0.739844 0.670412 0.976008 -0.182282 -0.119085 0.210309 0.647614 0.732370 0.021475 -0.741678 0.670412 0.989737 -0.078985 -0.119085 0.141276 0.666089 0.732370 0.098354 -0.735441 0.670412 0.992589 0.024189 -0.119085 0.071364 0.677157 0.732370 0.174892 -0.721083 0.670412 0.984588 0.128086 -0.119085 0.000000 0.680907 0.732370 0.249504 -0.698781 0.670412 0.965741 0.230572 -0.119085 -0.071364 0.677157 0.732370 0.320698 -0.669104 0.670412 0.936586 0.329583 -0.119085 -0.141276 0.666089 0.732370 0.389059 -0.631808 0.670412 0.896886 0.425928 -0.119085 -0.210309 0.647614 0.732370 0.453134 -0.587552 0.670412 0.847306 0.517583 -0.119085 -0.277025 0.622006 0.732370 0.512218 -0.536824 0.670412 0.788393 0.603536 -0.119085 -0.340690 0.589546 0.732370 0.565179 -0.480749 0.670412 0.721478 0.682120 -0.119085 -0.400051 0.550993 0.732370 0.612453 -0.418866 0.670412 0.646014 0.753979 -0.119085 -0.455596 0.506030 0.732370 0.652980 -0.352370 0.670412 0.563434 0.817534 -0.119085 -0.506123 0.455493 0.732370 0.686032 -0.282679 0.670412 0.475519 0.871608 -0.119085 -0.550674 0.400490 0.732370 0.711881 -0.209221 0.670412 0.381549 0.916645 -0.119085 -0.589615 0.340570 0.732370 0.729888 -0.133458 0.670412 0.283377 0.951586 -0.119085 -0.622062 0.276898 0.732370 0.739855 -0.056226 0.670412 0.182083 0.976045 -0.119085 -0.647657 0.210177 0.732370 0.741695 0.020884 0.670412 0.079774 0.989674 -0.119085 -0.665977 0.141806 0.732370 0.735421 0.098504 0.670412 -0.024391 0.992584 -0.119085 -0.677171 0.071226 0.732370 -0.876130 -0.456809 -0.154020 0.449916 -0.889565 0.079053 -0.173123 -0.000035 0.984900 -0.823428 -0.546117 -0.154020 0.540671 -0.837511 0.079053 -0.172166 -0.018180 0.984900 -0.762285 -0.628649 -0.154020 0.624694 -0.776858 0.079053 -0.169349 -0.035954 0.984900 -0.692200 -0.705080 -0.154020 0.702674 -0.707107 0.079053 -0.164648 -0.053505 0.984900 -0.614490 -0.773744 -0.154020 0.772914 -0.629567 0.079053 -0.158133 -0.070467 0.984900 -0.530845 -0.833355 -0.154020 0.834095 -0.545927 0.079053 -0.149963 -0.086502 0.984900 -0.440580 -0.884402 -0.154020 0.886718 -0.455502 0.079053 -0.140071 -0.101743 0.984900 -0.345462 -0.925707 -0.154020 0.929574 -0.360058 0.079053 -0.128637 -0.115863 0.984900 -0.246539 -0.956816 -0.154020 0.962191 -0.260649 0.079053 -0.115785 -0.128707 0.984900 -0.145877 -0.977240 -0.154020 0.984051 -0.159353 0.079053 -0.101798 -0.140032 0.984900 -0.042652 -0.987147 -0.154020 0.995333 -0.055340 0.079053 -0.086561 -0.149930 0.984900 0.061043 -0.986180 -0.154020 0.995651 0.049283 0.079053 -0.070370 -0.158176 0.984900 0.163091 -0.974515 -0.154020 0.985156 0.152378 0.079053 -0.053569 -0.164627 0.984900 0.264329 -0.952055 -0.154020 0.963760 0.254790 0.079053 -0.036020 -0.169335 0.984900 0.362655 -0.919108 -0.154020 0.931748 0.354395 0.079053 -0.018074 -0.172177 0.984900 0.456273 -0.876409 -0.154020 0.889840 0.449373 0.079053 -0.000071 -0.173123 0.984900 0.545614 -0.823761 -0.154020 0.837841 0.540159 0.079053 0.018074 -0.172177 0.984900 0.628945 -0.762040 -0.154020 0.776614 0.624996 0.079053 0.036020 -0.169335 0.984900 0.705349 -0.691925 -0.154020 0.706833 0.702949 0.079053 0.053569 -0.164627 0.984900 0.773368 -0.614963 -0.154020 0.630039 0.772529 0.079053 0.070370 -0.158176 0.984900 0.833562 -0.530521 -0.154020 0.545603 0.834307 0.079053 0.086561 -0.149930 0.984900 0.884573 -0.440236 -0.154020 0.455157 0.886895 0.079053 0.101798 -0.140032 0.984900 0.925496 -0.346028 -0.154020 0.360626 0.929354 0.079053 0.115785 -0.128707 0.984900 0.956665 -0.247123 -0.154020 0.261237 0.962032 0.079053 0.128637 -0.115863 0.984900 0.977296 -0.145497 -0.154020 0.158970 0.984113 0.079053 0.140071 -0.101743 0.984900 0.987163 -0.042268 -0.154020 0.054953 0.995355 0.079053 0.149963 -0.086502 0.984900 0.986217 0.060440 -0.154020 -0.048674 0.995681 0.079053 0.158133 -0.070467 0.984900 0.974451 0.163470 -0.154020 -0.152761 0.985096 0.079053 0.164648 -0.053505 0.984900 0.951952 0.264699 -0.154020 -0.255165 0.963660 0.079053 0.169349 -0.035954 0.984900 0.919329 0.362094 -0.154020 -0.353826 0.931964 0.079053 0.172166 -0.018180 0.984900 0.876316 0.456452 -0.154020 -0.449554 0.889748 0.079053 0.173123 -0.000035 0.984900 0.823650 0.545782 -0.154020 -0.540330 0.837731 0.079053 0.172174 0.018110 0.984900 0.761912 0.629101 -0.154020 -0.625154 0.776487 0.079053 0.169327 0.036055 0.984900 0.692487 0.704798 -0.154020 -0.702386 0.707393 0.079053 0.164669 0.053438 0.984900 0.614805 0.773494 -0.154020 -0.772657 0.629882 0.079053 0.158162 0.070403 0.984900 0.530352 0.833670 -0.154020 -0.834418 0.545433 0.079053 0.149912 0.086591 0.984900 0.440056 0.884663 -0.154020 -0.886988 0.454976 0.079053 0.140011 0.101826 0.984900 0.345839 0.925566 -0.154020 -0.929428 0.360437 0.079053 0.128684 0.115811 0.984900 0.246929 0.956715 -0.154020 -0.962085 0.261041 0.079053 0.115837 0.128660 0.984900 0.145298 0.977326 -0.154020 -0.984146 0.158770 0.079053 0.101715 0.140092 0.984900 0.043054 0.987129 -0.154020 -0.995310 0.055746 0.079053 0.086622 0.149894 0.984900 -0.060641 0.986205 -0.154020 -0.995671 -0.048877 0.079053 0.070435 0.158147 0.984900 -0.163669 0.974418 -0.154020 -0.985065 -0.152961 0.079053 0.053472 0.164659 0.984900 -0.264893 0.951898 -0.154020 -0.963609 -0.255361 0.079053 0.035920 0.169356 0.984900 -0.362281 0.919255 -0.154020 -0.931892 -0.354016 0.079053 0.018145 0.172170 0.984900 -0.456630 0.876223 -0.154020 -0.889657 -0.449735 0.079053 0.000000 0.173123 0.984900 -0.545950 0.823539 -0.154020 -0.837621 -0.540501 0.079053 -0.018145 0.172170 0.984900 -0.628494 0.762413 -0.154020 -0.776985 -0.624536 0.079053 -0.035920 0.169356 0.984900 -0.704939 0.692343 -0.154020 -0.707250 -0.702530 0.079053 -0.053472 0.164659 0.984900 -0.773619 0.614648 -0.154020 -0.629725 -0.772786 0.079053 -0.070435 0.158147 0.984900 -0.833778 0.530182 -0.154020 -0.545263 -0.834529 0.079053 -0.086622 0.149894 0.984900 -0.884312 0.440760 -0.154020 -0.455682 -0.886625 0.079053 -0.101715 0.140092 0.984900 -0.925637 0.345651 -0.154020 -0.360248 -0.929501 0.079053 -0.115837 0.128660 0.984900 -0.956765 0.246734 -0.154020 -0.260845 -0.962138 0.079053 -0.128684 0.115811 0.984900 -0.977210 0.146076 -0.154020 -0.159554 -0.984019 0.079053 -0.140011 0.101826 0.984900 -0.987138 0.042853 -0.154020 -0.055543 -0.995322 0.079053 -0.149912 0.086591 0.984900 -0.986193 -0.060842 -0.154020 0.049080 -0.995661 0.079053 -0.158162 0.070403 0.984900 -0.974385 -0.163867 -0.154020 0.153162 -0.985034 0.079053 -0.164669 0.053438 0.984900 -0.952108 -0.264135 -0.154020 0.254593 -0.963812 0.079053 -0.169327 0.036055 0.984900 -0.919182 -0.362468 -0.154020 0.354206 -0.931820 0.079053 -0.172174 0.018110 0.984900 -0.290150 -0.908778 0.299894 -0.632156 0.417281 0.652882 -0.718465 -0.000146 -0.695563 -0.193305 -0.934182 0.299894 -0.672409 0.348728 0.652882 -0.714493 -0.075446 -0.695563 -0.095281 -0.949202 0.299894 -0.704978 0.277039 0.652882 -0.702800 -0.149211 -0.695563 0.004727 -0.953961 0.299894 -0.730131 0.201627 0.652882 -0.683291 -0.222048 -0.695563 0.104683 -0.948211 0.299894 -0.747242 0.123993 0.652882 -0.656255 -0.292439 -0.695563 0.202554 -0.932221 0.299894 -0.756076 0.045750 0.652882 -0.622351 -0.358987 -0.695563 0.299141 -0.905858 0.299894 -0.756707 -0.033744 0.652882 -0.581299 -0.422236 -0.695563 0.392434 -0.869516 0.299894 -0.749003 -0.112866 0.652882 -0.533844 -0.480835 -0.695563 0.481405 -0.823598 0.299894 -0.733049 -0.190746 0.652882 -0.480509 -0.534138 -0.695563 0.564303 -0.769172 0.299894 -0.709286 -0.265815 0.652882 -0.422462 -0.581134 -0.695563 0.641810 -0.705793 0.299894 -0.677521 -0.338689 0.652882 -0.359229 -0.622211 -0.695563 0.712248 -0.634639 0.299894 -0.638292 -0.407833 0.652882 -0.292038 -0.656434 -0.695563 0.774283 -0.557270 0.299894 -0.592505 -0.471892 0.652882 -0.222314 -0.683204 -0.695563 0.828424 -0.473050 0.299894 -0.539784 -0.531392 0.652882 -0.149485 -0.702742 -0.695563 0.873441 -0.383620 0.299894 -0.481118 -0.585039 0.652882 -0.075009 -0.714539 -0.695563 0.908600 -0.290705 0.299894 -0.417667 -0.631901 0.652882 -0.000293 -0.718465 -0.695563 0.934064 -0.193876 0.299894 -0.349139 -0.672195 0.652882 0.075009 -0.714539 -0.695563 0.949239 -0.094912 0.299894 -0.276765 -0.705086 0.652882 0.149485 -0.702742 -0.695563 0.953959 0.005098 0.299894 -0.201343 -0.730209 0.652882 0.222314 -0.683204 -0.695563 0.948275 0.104104 0.299894 -0.124450 -0.747166 0.652882 0.292038 -0.656434 -0.695563 0.932142 0.202916 0.299894 -0.045456 -0.756094 0.652882 0.359229 -0.622211 -0.695563 0.905741 0.299494 0.299894 0.034038 -0.756694 0.652882 0.422462 -0.581134 -0.695563 0.869756 0.391903 0.299894 0.112409 -0.749072 0.652882 0.480509 -0.534138 -0.695563 0.823892 0.480901 0.299894 0.190298 -0.733165 0.652882 0.533844 -0.480835 -0.695563 0.768952 0.564603 0.299894 0.266091 -0.709183 0.652882 0.581299 -0.422236 -0.695563 0.705543 0.642085 0.299894 0.338953 -0.677389 0.652882 0.622351 -0.358987 -0.695563 0.635074 0.711860 0.299894 0.407443 -0.638541 0.652882 0.656255 -0.292439 -0.695563 0.556969 0.774500 0.299894 0.472123 -0.592322 0.652882 0.683291 -0.222048 -0.695563 0.472728 0.828608 0.299894 0.531602 -0.539578 0.652882 0.702800 -0.149211 -0.695563 0.384154 0.873206 0.299894 0.584745 -0.481475 0.652882 0.714493 -0.075446 -0.695563 0.290520 0.908659 0.299894 0.631986 -0.417538 0.652882 0.718465 -0.000146 -0.695563 0.193686 0.934104 0.299894 0.672267 -0.349002 0.652882 0.714523 0.075155 -0.695563 0.094718 0.949259 0.299894 0.705142 -0.276621 0.652882 0.702711 0.149628 -0.695563 -0.004339 0.953963 0.299894 0.730049 -0.201924 0.652882 0.683381 0.221770 -0.695563 -0.104297 0.948254 0.299894 0.747191 -0.124298 0.652882 0.656374 0.292172 -0.695563 -0.203106 0.932101 0.299894 0.756103 -0.045302 0.652882 0.622138 0.359355 -0.695563 -0.299678 0.905680 0.299894 0.756687 0.034192 0.652882 0.581048 0.422581 -0.695563 -0.392080 0.869676 0.299894 0.749049 0.112561 0.652882 0.534040 0.480618 -0.695563 -0.481069 0.823794 0.299894 0.733127 0.190447 0.652882 0.480726 0.533942 -0.695563 -0.564759 0.768837 0.299894 0.709129 0.266235 0.652882 0.422118 0.581385 -0.695563 -0.641523 0.706054 0.299894 0.677659 0.338413 0.652882 0.359482 0.622065 -0.695563 -0.711989 0.634929 0.299894 0.638458 0.407573 0.652882 0.292305 0.656315 -0.695563 -0.774613 0.556811 0.299894 0.592226 0.472243 0.652882 0.221909 0.683336 -0.695563 -0.828705 0.472559 0.299894 0.539469 0.531712 0.652882 0.149068 0.702830 -0.695563 -0.873285 0.383976 0.299894 0.481356 0.584843 0.652882 0.075300 0.714508 -0.695563 -0.908719 0.290335 0.299894 0.417409 0.632071 0.652882 0.000000 0.718465 -0.695563 -0.934143 0.193495 0.299894 0.348865 0.672338 0.652882 -0.075300 0.714508 -0.695563 -0.949183 0.095474 0.299894 0.277183 0.704921 0.652882 -0.149068 0.702830 -0.695563 -0.953962 -0.004533 0.299894 0.201776 0.730090 0.652882 -0.221909 0.683336 -0.695563 -0.948233 -0.104490 0.299894 0.124146 0.747217 0.652882 -0.292305 0.656315 -0.695563 -0.932059 -0.203296 0.299894 0.045148 0.756113 0.652882 -0.359482 0.622065 -0.695563 -0.905918 -0.298957 0.299894 -0.033590 0.756714 0.652882 -0.422118 0.581385 -0.695563 -0.869596 -0.392257 0.299894 -0.112714 0.749026 0.652882 -0.480726 0.533942 -0.695563 -0.823696 -0.481237 0.299894 -0.190596 0.733088 0.652882 -0.534040 0.480618 -0.695563 -0.769287 -0.564147 0.299894 -0.265670 0.709341 0.652882 -0.581048 0.422581 -0.695563 -0.705923 -0.641667 0.299894 -0.338551 0.677590 0.652882 -0.622138 0.359355 -0.695563 -0.634784 -0.712118 0.299894 -0.407703 0.638375 0.652882 -0.656374 0.292172 -0.695563 -0.556653 -0.774726 0.299894 -0.472364 0.592129 0.652882 -0.683381 0.221770 -0.695563 -0.473219 -0.828328 0.299894 -0.531282 0.539893 0.652882 -0.702711 0.149628 -0.695563 -0.383798 -0.873363 0.299894 -0.584941 0.481237 0.652882 -0.714523 0.075155 -0.695563 -0.548890 0.370620 0.749240 0.218885 0.928785 -0.299079 -0.806727 -0.000164 -0.590924 -0.584711 0.311051 0.749240 0.120336 0.946610 -0.299079 -0.802267 -0.084714 -0.590924 -0.613843 0.248670 0.749240 0.021416 0.953988 -0.299079 -0.789138 -0.167542 -0.590924 -0.636524 0.182965 0.749240 -0.078687 0.950979 -0.299079 -0.767232 -0.249326 -0.590924 -0.652195 0.115245 0.749240 -0.177923 0.937494 -0.299079 -0.736875 -0.328365 -0.590924 -0.660635 0.046916 0.749240 -0.274285 0.913958 -0.299079 -0.698806 -0.403088 -0.590924 -0.661914 -0.022581 0.749240 -0.368564 0.880177 -0.299079 -0.652711 -0.474107 -0.590924 -0.655901 -0.091830 0.749240 -0.458783 0.836702 -0.299079 -0.599426 -0.539905 -0.590924 -0.642665 -0.160068 0.749240 -0.543949 0.784010 -0.299079 -0.539539 -0.599756 -0.590924 -0.622575 -0.225919 0.749240 -0.622400 0.723305 -0.299079 -0.474361 -0.652526 -0.590924 -0.595468 -0.289926 0.749240 -0.694780 0.654090 -0.299079 -0.403359 -0.698649 -0.590924 -0.561803 -0.350738 0.749240 -0.759506 0.577669 -0.299079 -0.327914 -0.737076 -0.590924 -0.522356 -0.407165 0.749240 -0.815372 0.495702 -0.299079 -0.249625 -0.767135 -0.590924 -0.476805 -0.459670 0.749240 -0.862834 0.407515 -0.299079 -0.167849 -0.789073 -0.590924 -0.426003 -0.507111 0.749240 -0.900793 0.314839 -0.299079 -0.084224 -0.802319 -0.590924 -0.370955 -0.548664 0.749240 -0.928651 0.219452 -0.299079 -0.000329 -0.806727 -0.590924 -0.311408 -0.584521 0.749240 -0.946537 0.120914 -0.299079 0.084224 -0.802319 -0.590924 -0.248431 -0.613939 0.749240 -0.953996 0.021045 -0.299079 0.167849 -0.789073 -0.590924 -0.182717 -0.636595 0.749240 -0.950948 -0.079057 -0.299079 0.249625 -0.767135 -0.590924 -0.115644 -0.652124 0.749240 -0.937603 -0.177350 -0.299079 0.327914 -0.737076 -0.590924 -0.046659 -0.660653 0.749240 -0.913851 -0.274641 -0.299079 0.403359 -0.698649 -0.590924 0.022839 -0.661905 0.749240 -0.880034 -0.368906 -0.299079 0.474361 -0.652526 -0.590924 0.091429 -0.655957 0.749240 -0.836982 -0.458272 -0.299079 0.539539 -0.599756 -0.590924 0.159675 -0.642762 0.749240 -0.784342 -0.543470 -0.299079 0.599426 -0.539905 -0.590924 0.226162 -0.622487 0.749240 -0.723063 -0.622681 -0.299079 0.652711 -0.474107 -0.590924 0.290157 -0.595356 0.749240 -0.653819 -0.695034 -0.299079 0.698806 -0.403088 -0.590924 0.350395 -0.562017 0.749240 -0.578133 -0.759153 -0.299079 0.736875 -0.328365 -0.590924 0.407368 -0.522198 0.749240 -0.495385 -0.815565 -0.299079 0.767232 -0.249326 -0.590924 0.459855 -0.476627 0.749240 -0.407179 -0.862993 -0.299079 0.789138 -0.167542 -0.590924 0.506850 -0.426313 0.749240 -0.315390 -0.900600 -0.299079 0.802267 -0.084714 -0.590924 0.548739 -0.370843 0.749240 -0.219263 -0.928695 -0.299079 0.806727 -0.000164 -0.590924 0.584584 -0.311289 0.749240 -0.120722 -0.946561 -0.299079 0.802301 0.084387 -0.590924 0.613990 -0.248306 0.749240 -0.020850 -0.954001 -0.299079 0.789038 0.168010 -0.590924 0.636450 -0.183224 0.749240 0.078300 -0.951010 -0.299079 0.767334 0.249014 -0.590924 0.652148 -0.115511 0.749240 0.177541 -0.937566 -0.299079 0.737009 0.328065 -0.590924 0.660662 -0.046525 0.749240 0.274827 -0.913795 -0.299079 0.698567 0.403502 -0.590924 0.661900 0.022974 0.749240 0.369086 -0.879959 -0.299079 0.652429 0.474494 -0.590924 0.655939 0.091563 0.749240 0.458442 -0.836889 -0.299079 0.599646 0.539661 -0.590924 0.642730 0.159806 0.749240 0.543629 -0.784231 -0.299079 0.539783 0.599536 -0.590924 0.622441 0.226288 0.749240 0.622828 -0.722936 -0.299079 0.473974 0.652807 -0.590924 0.595586 0.289683 0.749240 0.694513 -0.654372 -0.299079 0.403644 0.698484 -0.590924 0.561945 0.350509 0.749240 0.759271 -0.577979 -0.299079 0.328215 0.736942 -0.590924 0.522115 0.407475 0.749240 0.815666 -0.495218 -0.299079 0.249170 0.767283 -0.590924 0.476533 0.459952 0.749240 0.863076 -0.407003 -0.299079 0.167381 0.789172 -0.590924 0.426209 0.506937 0.749240 0.900665 -0.315206 -0.299079 0.084551 0.802284 -0.590924 0.370731 0.548815 0.749240 0.928740 -0.219074 -0.299079 0.000000 0.806727 -0.590924 0.311170 0.584648 0.749240 0.946586 -0.120529 -0.299079 -0.084551 0.802284 -0.590924 0.248795 0.613792 0.749240 0.953984 -0.021610 -0.299079 -0.167381 0.789172 -0.590924 0.183095 0.636487 0.749240 0.950994 0.078493 -0.299079 -0.249170 0.767283 -0.590924 0.115378 0.652171 0.749240 0.937530 0.177732 -0.299079 -0.328215 0.736942 -0.590924 0.046390 0.660672 0.749240 0.913739 0.275013 -0.299079 -0.403644 0.698484 -0.590924 -0.022447 0.661918 0.749240 0.880252 0.368385 -0.299079 -0.473974 0.652807 -0.590924 -0.091697 0.655920 0.749240 0.836795 0.458613 -0.299079 -0.539783 0.599536 -0.590924 -0.159937 0.642697 0.749240 0.784121 0.543789 -0.299079 -0.599646 0.539661 -0.590924 -0.225793 0.622621 0.749240 0.723432 0.622252 -0.299079 -0.652429 0.474494 -0.590924 -0.289804 0.595527 0.749240 0.654231 0.694646 -0.299079 -0.698567 0.403502 -0.590924 -0.350624 0.561874 0.749240 0.577824 0.759389 -0.299079 -0.737009 0.328065 -0.590924 -0.407581 0.522032 0.749240 0.495052 0.815767 -0.299079 -0.767334 0.249014 -0.590924 -0.459572 0.476899 0.749240 0.407691 0.862751 -0.299079 -0.789038 0.168010 -0.590924 -0.507024 0.426106 0.749240 0.315023 0.900729 -0.299079 -0.802301 0.084387 -0.590924 -0.029169 0.613740 -0.788969 -0.022418 -0.789508 -0.613330 -0.999323 -0.000204 0.036788 -0.093333 0.607303 -0.788969 0.060452 -0.787510 -0.613330 -0.993798 -0.104939 0.036788 -0.155874 0.594332 -0.788969 0.141879 -0.776979 -0.613330 -0.977534 -0.207540 0.036788 -0.217306 0.574722 -0.788969 0.222530 -0.757830 -0.613330 -0.950399 -0.308850 0.036788 -0.276344 0.548782 -0.788969 0.300731 -0.730333 -0.613330 -0.912795 -0.406758 0.036788 -0.331822 0.517128 -0.788969 0.374924 -0.695168 -0.613330 -0.865636 -0.499320 0.036788 -0.384193 0.479503 -0.788969 0.445717 -0.652044 -0.613330 -0.808537 -0.587294 0.036788 -0.432332 0.436596 -0.788969 0.511602 -0.601739 -0.613330 -0.742531 -0.668800 0.036788 -0.475710 0.388880 -0.788969 0.571850 -0.544805 -0.613330 -0.668347 -0.742940 0.036788 -0.513510 0.337394 -0.788969 0.625318 -0.482496 -0.613330 -0.587609 -0.808308 0.036788 -0.546043 0.281716 -0.788969 0.672444 -0.414301 -0.613330 -0.499656 -0.865442 0.036788 -0.572562 0.222936 -0.788969 0.712162 -0.341543 -0.613330 -0.406200 -0.913043 0.036788 -0.592612 0.162292 -0.788969 0.743770 -0.265766 -0.613330 -0.309220 -0.950279 0.036788 -0.606357 0.099288 -0.788969 0.767528 -0.186350 -0.613330 -0.207921 -0.977454 0.036788 -0.613424 0.035191 -0.788969 0.782832 -0.104881 -0.613330 -0.104331 -0.993862 0.036788 -0.613757 -0.028794 -0.788969 0.789495 -0.022900 -0.613330 -0.000407 -0.999323 0.036788 -0.607359 -0.092962 -0.788969 0.787547 0.059971 -0.613330 0.104331 -0.993862 0.036788 -0.594271 -0.156106 -0.788969 0.776924 0.142181 -0.613330 0.207921 -0.977454 0.036788 -0.574637 -0.217530 -0.788969 0.757743 0.222825 -0.613330 0.309220 -0.950279 0.036788 -0.548950 -0.276009 -0.788969 0.730517 0.300284 -0.613330 0.406200 -0.913043 0.036788 -0.516999 -0.332023 -0.788969 0.695022 0.375194 -0.613330 0.499656 -0.865442 0.036788 -0.479354 -0.384379 -0.788969 0.651871 0.445971 -0.613330 0.587609 -0.808308 0.036788 -0.436860 -0.432066 -0.788969 0.602051 0.511234 -0.613330 0.668347 -0.742940 0.036788 -0.389171 -0.475472 -0.788969 0.545155 0.571518 -0.613330 0.742531 -0.668800 0.036788 -0.337194 -0.513641 -0.788969 0.482253 0.625506 -0.613330 0.808537 -0.587294 0.036788 -0.281504 -0.546153 -0.788969 0.414040 0.672605 -0.613330 0.865636 -0.499320 0.036788 -0.223285 -0.572426 -0.788969 0.341978 0.711953 -0.613330 0.912795 -0.406758 0.036788 -0.162061 -0.592675 -0.788969 0.265476 0.743874 -0.613330 0.950399 -0.308850 0.036788 -0.099052 -0.606396 -0.788969 0.186051 0.767601 -0.613330 0.977534 -0.207540 0.036788 -0.035566 -0.613402 -0.788969 0.105359 0.782768 -0.613330 0.993798 -0.104939 0.036788 0.028919 -0.613752 -0.788969 0.022739 0.789499 -0.613330 0.999323 -0.000204 0.036788 0.093086 -0.607340 -0.788969 -0.060131 0.787534 -0.613330 0.993841 0.104534 0.036788 0.156227 -0.594240 -0.788969 -0.142339 0.776895 -0.613330 0.977411 0.208120 0.036788 0.217072 -0.574811 -0.788969 -0.222222 0.757921 -0.613330 0.950525 0.308463 0.036788 0.276121 -0.548894 -0.788969 -0.300433 0.730456 -0.613330 0.912961 0.406386 0.036788 0.332128 -0.516932 -0.788969 -0.375336 0.694945 -0.613330 0.865340 0.499832 0.036788 0.384477 -0.479275 -0.788969 -0.446104 0.651780 -0.613330 0.808189 0.587774 0.036788 0.432154 -0.436772 -0.788969 -0.511356 0.601947 -0.613330 0.742804 0.668498 0.036788 0.475551 -0.389074 -0.788969 -0.571629 0.545038 -0.613330 0.668649 0.742667 0.036788 0.513710 -0.337090 -0.788969 -0.625604 0.482126 -0.613330 0.587130 0.808656 0.036788 0.545928 -0.281939 -0.788969 -0.672275 0.414575 -0.613330 0.500009 0.865239 0.036788 0.572471 -0.223169 -0.788969 -0.712023 0.341833 -0.613330 0.406572 0.912878 0.036788 0.592708 -0.161941 -0.788969 -0.743928 0.265325 -0.613330 0.308656 0.950462 0.036788 0.606416 -0.098929 -0.788969 -0.767639 0.185895 -0.613330 0.207341 0.977577 0.036788 0.613410 -0.035441 -0.788969 -0.782789 0.105200 -0.613330 0.104736 0.993819 0.036788 0.613746 0.029044 -0.788969 -0.789504 0.022578 -0.613330 0.000000 0.999323 0.036788 0.607322 0.093209 -0.788969 -0.787522 -0.060292 -0.613330 -0.104736 0.993819 0.036788 0.594364 0.155753 -0.788969 -0.777008 -0.141721 -0.613330 -0.207341 0.977577 0.036788 0.574766 0.217189 -0.788969 -0.757875 -0.222376 -0.613330 -0.308656 0.950462 0.036788 0.548838 0.276233 -0.788969 -0.730395 -0.300582 -0.613330 -0.406572 0.912878 0.036788 0.516864 0.332233 -0.788969 -0.694869 -0.375477 -0.613330 -0.500009 0.865239 0.036788 0.479581 0.384095 -0.788969 -0.652135 -0.445585 -0.613330 -0.587130 0.808656 0.036788 0.436684 0.432243 -0.788969 -0.601843 -0.511479 -0.613330 -0.668649 0.742667 0.036788 0.388977 0.475630 -0.788969 -0.544922 -0.571740 -0.613330 -0.742804 0.668498 0.036788 0.337499 0.513441 -0.788969 -0.482624 -0.625220 -0.613330 -0.808189 0.587774 0.036788 0.281828 0.545986 -0.788969 -0.414438 -0.672359 -0.613330 -0.865340 0.499832 0.036788 0.223052 0.572516 -0.788969 -0.341688 -0.712092 -0.613330 -0.912961 0.406386 0.036788 0.161820 0.592741 -0.788969 -0.265173 -0.743982 -0.613330 -0.950525 0.308463 0.036788 0.099412 0.606337 -0.788969 -0.186506 -0.767490 -0.613330 -0.977411 0.208120 0.036788 0.035316 0.613417 -0.788969 -0.105040 -0.782811 -0.613330 -0.993841 0.104534 0.036788 -0.225673 -0.069194 0.971743 -0.015846 0.997603 0.067356 -0.974074 -0.000198 -0.226228 -0.217178 -0.092465 0.971743 -0.120315 0.990448 0.067356 -0.968689 -0.102287 -0.226228 -0.206405 -0.114512 0.971743 -0.222486 0.972606 0.067356 -0.952836 -0.202297 -0.226228 -0.193267 -0.135514 0.971743 -0.323197 0.943932 0.067356 -0.926386 -0.301047 -0.226228 -0.177999 -0.155023 0.971743 -0.420348 0.904860 0.067356 -0.889733 -0.396481 -0.226228 -0.160944 -0.172664 0.971743 -0.512012 0.856333 0.067356 -0.843765 -0.486704 -0.226228 -0.141962 -0.188581 0.971743 -0.598942 0.797954 0.067356 -0.788109 -0.572456 -0.226228 -0.121415 -0.202421 0.971743 -0.679275 0.730786 0.067356 -0.723771 -0.651903 -0.226228 -0.099531 -0.214032 0.971743 -0.752126 0.655569 0.067356 -0.651460 -0.724169 -0.226228 -0.076774 -0.223208 0.971743 -0.816118 0.573946 0.067356 -0.572763 -0.787886 -0.226228 -0.052958 -0.230025 0.971743 -0.871777 0.485250 0.067356 -0.487032 -0.843576 -0.226228 -0.028558 -0.234308 0.971743 -0.917834 0.391209 0.067356 -0.395937 -0.889975 -0.226228 -0.004079 -0.236007 0.971743 -0.953487 0.293813 0.067356 -0.301407 -0.926269 -0.226228 0.020678 -0.235135 0.971743 -0.979029 0.192263 0.067356 -0.202667 -0.952757 -0.226228 0.045208 -0.231673 0.971743 -0.993788 0.088594 0.067356 -0.101695 -0.968751 -0.226228 0.069057 -0.225715 0.971743 -0.997613 -0.015237 0.067356 -0.000397 -0.974074 -0.226228 0.092333 -0.217234 0.971743 -0.990521 -0.119710 0.067356 0.101695 -0.968751 -0.226228 0.114592 -0.206361 0.971743 -0.972520 -0.222865 0.067356 0.202667 -0.952757 -0.226228 0.135589 -0.193214 0.971743 -0.943806 -0.323564 0.067356 0.301407 -0.926269 -0.226228 0.154914 -0.178094 0.971743 -0.905116 -0.419795 0.067356 0.395937 -0.889975 -0.226228 0.172727 -0.160877 0.971743 -0.856134 -0.512345 0.067356 0.487032 -0.843576 -0.226228 0.188636 -0.141888 0.971743 -0.797721 -0.599253 0.067356 0.572763 -0.787886 -0.226228 0.202347 -0.121539 0.971743 -0.731201 -0.678828 0.067356 0.651460 -0.724169 -0.226228 0.213971 -0.099662 0.971743 -0.656028 -0.751725 0.067356 0.723771 -0.651903 -0.226228 0.223238 -0.076687 0.971743 -0.573629 -0.816341 0.067356 0.788109 -0.572456 -0.226228 0.230045 -0.052868 0.971743 -0.484911 -0.871966 0.067356 0.843765 -0.486704 -0.226228 0.234291 -0.028701 0.971743 -0.391770 -0.917594 0.067356 0.889733 -0.396481 -0.226228 0.236009 -0.003987 0.971743 -0.293442 -0.953601 0.067356 0.926386 -0.301047 -0.226228 0.235127 0.020770 0.971743 -0.191882 -0.979104 0.067356 0.952836 -0.202297 -0.226228 0.231700 0.045067 0.971743 -0.089202 -0.993734 0.067356 0.968689 -0.102287 -0.226228 0.225701 0.069102 0.971743 0.015440 -0.997610 0.067356 0.974074 -0.000198 -0.226228 0.217215 0.092377 0.971743 0.119912 -0.990497 0.067356 0.968730 0.101893 -0.226228 0.206337 0.114634 0.971743 0.223063 -0.972474 0.067356 0.952716 0.202861 -0.226228 0.193322 0.135435 0.971743 0.322812 -0.944063 0.067356 0.926509 0.300669 -0.226228 0.178063 0.154951 0.971743 0.419979 -0.905031 0.067356 0.889894 0.396118 -0.226228 0.160842 0.172759 0.971743 0.512520 -0.856030 0.067356 0.843477 0.487204 -0.226228 0.141850 0.188665 0.971743 0.599415 -0.797599 0.067356 0.787769 0.572923 -0.226228 0.121498 0.202372 0.971743 0.678977 -0.731063 0.067356 0.724036 0.651608 -0.226228 0.099618 0.213991 0.971743 0.751859 -0.655875 0.067356 0.651755 0.723903 -0.226228 0.076642 0.223253 0.971743 0.816458 -0.573463 0.067356 0.572295 0.788225 -0.226228 0.053051 0.230003 0.971743 0.871579 -0.485605 0.067356 0.487376 0.843378 -0.226228 0.028653 0.234297 0.971743 0.917674 -0.391583 0.067356 0.396299 0.889813 -0.226228 0.003939 0.236009 0.971743 0.953661 -0.293248 0.067356 0.300858 0.926448 -0.226228 -0.020818 0.235123 0.971743 0.979143 -0.191682 0.067356 0.202103 0.952877 -0.226228 -0.045114 0.231691 0.971743 0.993752 -0.088999 0.067356 0.102090 0.968710 -0.226228 -0.069148 0.225687 0.971743 0.997606 0.015643 0.067356 0.000000 0.974074 -0.226228 -0.092421 0.217196 0.971743 0.990473 0.120113 0.067356 -0.102090 0.968710 -0.226228 -0.114470 0.206428 0.971743 0.972652 0.222288 0.067356 -0.202103 0.952877 -0.226228 -0.135474 0.193294 0.971743 0.943997 0.323005 0.067356 -0.300858 0.926448 -0.226228 -0.154987 0.178031 0.971743 0.904945 0.420163 0.067356 -0.396299 0.889813 -0.226228 -0.172792 0.160807 0.971743 0.855925 0.512694 0.067356 -0.487376 0.843378 -0.226228 -0.188552 0.142000 0.971743 0.798076 0.598780 0.067356 -0.572295 0.788225 -0.226228 -0.202396 0.121456 0.971743 0.730925 0.679126 0.067356 -0.651755 0.723903 -0.226228 -0.214011 0.099575 0.971743 0.655722 0.751992 0.067356 -0.724036 0.651608 -0.226228 -0.223192 0.076820 0.971743 0.574113 0.816001 0.067356 -0.787769 0.572923 -0.226228 -0.230014 0.053004 0.971743 0.485428 0.871678 0.067356 -0.843477 0.487204 -0.226228 -0.234303 0.028605 0.971743 0.391396 0.917754 0.067356 -0.889894 0.396118 -0.226228 -0.236010 0.003891 0.971743 0.293054 0.953721 0.067356 -0.926509 0.300669 -0.226228 -0.235139 -0.020631 0.971743 0.192462 0.978990 0.067356 -0.952716 0.202861 -0.226228 -0.231682 -0.045161 0.971743 0.088797 0.993770 0.067356 -0.968730 0.101893 -0.226228 -0.526770 0.797185 0.294973 0.695479 0.603735 -0.389632 -0.488694 -0.000100 -0.872455 -0.607420 0.737586 0.294973 0.628373 0.673301 -0.389632 -0.485992 -0.051318 -0.872455 -0.680708 0.670542 0.294973 0.555081 0.734896 -0.389632 -0.478039 -0.101493 -0.872455 -0.747237 0.595506 0.294973 0.475001 0.789025 -0.389632 -0.464769 -0.151036 -0.872455 -0.805535 0.513911 0.294973 0.389690 0.834463 -0.389632 -0.446380 -0.198915 -0.872455 -0.854533 0.427509 0.294973 0.300956 0.870409 -0.389632 -0.423318 -0.244180 -0.872455 -0.894633 0.335594 0.294973 0.208074 0.897158 -0.389632 -0.395395 -0.287202 -0.872455 -0.924878 0.239982 0.294973 0.112899 0.914024 -0.389632 -0.363117 -0.327060 -0.872455 -0.944936 0.141726 0.294973 0.016481 0.920823 -0.389632 -0.326839 -0.363316 -0.872455 -0.954544 0.042864 0.294973 -0.079201 0.917559 -0.389632 -0.287356 -0.395283 -0.872455 -0.953779 -0.057415 0.294973 -0.174931 0.904204 -0.389632 -0.244345 -0.423223 -0.872455 -0.942509 -0.157062 0.294973 -0.268735 0.880890 -0.389632 -0.198642 -0.446501 -0.872455 -0.921111 -0.254058 0.294973 -0.358731 0.848233 -0.389632 -0.151216 -0.464710 -0.872455 -0.889411 -0.349197 0.294973 -0.445656 0.805964 -0.389632 -0.101679 -0.478000 -0.872455 -0.847914 -0.440491 0.294973 -0.527672 0.754817 -0.389632 -0.051021 -0.486024 -0.872455 -0.797507 -0.526283 0.294973 -0.603310 0.695848 -0.389632 -0.000199 -0.488694 -0.872455 -0.737957 -0.606969 0.294973 -0.672917 0.628784 -0.389632 0.051021 -0.486024 -0.872455 -0.670278 -0.680969 0.294973 -0.735112 0.554795 -0.389632 0.101679 -0.478000 -0.872455 -0.595216 -0.747469 0.294973 -0.789210 0.474694 -0.389632 0.151216 -0.464710 -0.872455 -0.514403 -0.805221 0.294973 -0.834225 0.390200 -0.389632 0.198642 -0.446501 -0.872455 -0.427177 -0.854699 0.294973 -0.870526 0.300618 -0.389632 0.244345 -0.423223 -0.872455 -0.335246 -0.894763 0.294973 -0.897239 0.207725 -0.389632 0.287356 -0.395283 -0.872455 -0.240547 -0.924732 0.294973 -0.913955 0.113458 -0.389632 0.326839 -0.363316 -0.872455 -0.142303 -0.944850 0.294973 -0.920813 0.017044 -0.389632 0.363117 -0.327060 -0.872455 -0.042492 -0.954560 0.294973 -0.917528 -0.079558 -0.389632 0.395395 -0.287202 -0.872455 0.057786 -0.953757 0.294973 -0.904136 -0.175283 -0.389632 0.423318 -0.244180 -0.872455 0.156486 -0.942605 0.294973 -0.881055 -0.268197 -0.389632 0.446380 -0.198915 -0.872455 0.254416 -0.921012 0.294973 -0.848093 -0.359061 -0.389632 0.464769 -0.151036 -0.872455 0.349543 -0.889275 0.294973 -0.805790 -0.445969 -0.389632 0.478039 -0.101493 -0.872455 0.439973 -0.848183 0.294973 -0.755139 -0.527211 -0.389632 0.485992 -0.051318 -0.872455 0.526445 -0.797400 0.294973 -0.695725 -0.603451 -0.389632 0.488694 -0.000100 -0.872455 0.607119 -0.737833 0.294973 -0.628647 -0.673045 -0.389632 0.486013 0.051120 -0.872455 0.681106 -0.670139 0.294973 -0.554645 -0.735225 -0.389632 0.477979 0.101776 -0.872455 0.746995 -0.595811 0.294973 -0.475323 -0.788831 -0.389632 0.464831 0.150846 -0.872455 0.805326 -0.514239 0.294973 -0.390030 -0.834304 -0.389632 0.446461 0.198733 -0.872455 0.854786 -0.427003 0.294973 -0.300440 -0.870587 -0.389632 0.423173 0.244431 -0.872455 0.894832 -0.335063 0.294973 -0.207542 -0.897281 -0.389632 0.395225 0.287436 -0.872455 0.924781 -0.240358 0.294973 -0.113272 -0.913978 -0.389632 0.363250 0.326912 -0.872455 0.944879 -0.142111 0.294973 -0.016856 -0.920816 -0.389632 0.326986 0.363183 -0.872455 0.954569 -0.042298 0.294973 0.079745 -0.917512 -0.389632 0.287121 0.395454 -0.872455 0.953802 0.057027 0.294973 0.174563 -0.904276 -0.389632 0.244517 0.423124 -0.872455 0.942573 0.156678 0.294973 0.268376 -0.881000 -0.389632 0.198824 0.446420 -0.872455 0.920961 0.254603 0.294973 0.359233 -0.848020 -0.389632 0.150941 0.464800 -0.872455 0.889204 0.349725 0.294973 0.446133 -0.805699 -0.389632 0.101395 0.478060 -0.872455 0.848094 0.440146 0.294973 0.527365 -0.755032 -0.389632 0.051219 0.486003 -0.872455 0.797293 0.526608 0.294973 0.603593 -0.695602 -0.389632 0.000000 0.488694 -0.872455 0.737709 0.607270 0.294973 0.673173 -0.628510 -0.389632 -0.051219 0.486003 -0.872455 0.670681 0.680572 0.294973 0.734783 -0.555230 -0.389632 -0.101395 0.478060 -0.872455 0.595659 0.747116 0.294973 0.788928 -0.475162 -0.389632 -0.150941 0.464800 -0.872455 0.514075 0.805430 0.294973 0.834384 -0.389860 -0.389632 -0.198824 0.446420 -0.872455 0.426829 0.854873 0.294973 0.870648 -0.300263 -0.389632 -0.244517 0.423124 -0.872455 0.335776 0.894565 0.294973 0.897115 -0.208256 -0.389632 -0.287121 0.395454 -0.872455 0.240170 0.924830 0.294973 0.914001 -0.113085 -0.389632 -0.326986 0.363183 -0.872455 0.141918 0.944908 0.294973 0.920820 -0.016669 -0.389632 -0.363250 0.326912 -0.872455 0.043058 0.954535 0.294973 0.917575 0.079014 -0.389632 -0.395225 0.287436 -0.872455 -0.057221 0.953791 0.294973 0.904240 0.174747 -0.389632 -0.423173 0.244431 -0.872455 -0.156870 0.942541 0.294973 0.880945 0.268556 -0.389632 -0.446461 0.198733 -0.872455 -0.254791 0.920909 0.294973 0.847947 0.359406 -0.389632 -0.464831 0.150846 -0.872455 -0.349016 0.889482 0.294973 0.806054 0.445492 -0.389632 -0.477979 0.101776 -0.872455 -0.440318 0.848004 0.294973 0.754924 0.527518 -0.389632 -0.486013 0.051120 -0.872455 0.878601 0.277300 -0.388799 0.253615 -0.960783 -0.112136 -0.404647 -0.000082 -0.914473 0.844699 0.367856 -0.388799 0.352915 -0.928911 -0.112136 -0.402410 -0.042492 -0.914473 0.801947 0.453559 -0.388799 0.447441 -0.887255 -0.112136 -0.395824 -0.084037 -0.914473 0.749994 0.535111 -0.388799 0.537968 -0.835474 -0.112136 -0.384837 -0.125060 -0.914473 0.689780 0.610769 -0.388799 0.622569 -0.774489 -0.112136 -0.369610 -0.164705 -0.914473 0.622648 0.679077 -0.388799 0.699607 -0.705674 -0.112136 -0.350514 -0.202185 -0.914473 0.548047 0.740595 -0.388799 0.769713 -0.628464 -0.112136 -0.327394 -0.237808 -0.914473 0.467409 0.793955 -0.388799 0.831342 -0.544331 -0.112136 -0.300667 -0.270811 -0.914473 0.381622 0.838570 -0.388799 0.883813 -0.454203 -0.112136 -0.270628 -0.300832 -0.914473 0.292506 0.873656 -0.388799 0.926190 -0.359998 -0.112136 -0.237935 -0.327301 -0.914473 0.199330 0.899502 -0.388799 0.958819 -0.260944 -0.112136 -0.202321 -0.350436 -0.914473 0.103958 0.915439 -0.388799 0.980887 -0.159016 -0.112136 -0.164479 -0.369711 -0.914473 0.008362 0.921285 -0.388799 0.992095 -0.056328 -0.112136 -0.125210 -0.384788 -0.914473 -0.088241 0.917087 -0.388799 0.992535 0.047961 -0.112136 -0.084191 -0.395792 -0.914473 -0.183873 0.902788 -0.388799 0.982042 0.151721 -0.112136 -0.042246 -0.402436 -0.914473 -0.276763 0.878770 -0.388799 0.960938 0.253028 -0.112136 -0.000165 -0.404647 -0.914473 -0.367340 0.844924 -0.388799 0.929127 0.352348 -0.112136 0.042246 -0.402436 -0.914473 -0.453871 0.801771 -0.388799 0.887081 0.447787 -0.112136 0.084191 -0.395792 -0.914473 -0.535403 0.749786 -0.388799 0.835264 0.538293 -0.112136 0.125210 -0.384788 -0.914473 -0.610347 0.690153 -0.388799 0.774870 0.622095 -0.112136 0.164479 -0.369711 -0.914473 -0.679319 0.622384 -0.388799 0.705402 0.699881 -0.112136 0.202321 -0.350436 -0.914473 -0.740808 0.547758 -0.388799 0.628165 0.769958 -0.112136 0.237935 -0.327301 -0.914473 -0.793669 0.467894 -0.388799 0.544839 0.831009 -0.112136 0.270628 -0.300832 -0.914473 -0.838337 0.382134 -0.388799 0.454743 0.883535 -0.112136 0.300667 -0.270811 -0.914473 -0.873770 0.292166 -0.388799 0.359637 0.926330 -0.112136 0.327394 -0.237808 -0.914473 -0.899579 0.198980 -0.388799 0.260571 0.958920 -0.112136 0.350514 -0.202185 -0.914473 -0.915375 0.104517 -0.388799 0.159615 0.980790 -0.112136 0.369610 -0.164705 -0.914473 -0.921288 0.008003 -0.388799 0.055942 0.992117 -0.112136 0.384837 -0.125060 -0.914473 -0.917053 -0.088598 -0.388799 -0.048347 0.992516 -0.112136 0.395824 -0.084037 -0.914473 -0.902900 -0.183321 -0.388799 -0.151121 0.982134 -0.112136 0.402410 -0.042492 -0.914473 -0.878714 -0.276942 -0.388799 -0.253224 0.960887 -0.112136 0.404647 -0.000082 -0.914473 -0.844849 -0.367512 -0.388799 -0.352537 0.929055 -0.112136 0.402427 0.042328 -0.914473 -0.801678 -0.454034 -0.388799 -0.447967 0.886990 -0.112136 0.395774 0.084272 -0.914473 -0.750212 -0.534806 -0.388799 -0.537627 0.835693 -0.112136 0.384887 0.124903 -0.914473 -0.690029 -0.610488 -0.388799 -0.622253 0.774743 -0.112136 0.369677 0.164554 -0.914473 -0.622245 -0.679446 -0.388799 -0.700025 0.705260 -0.112136 0.350395 0.202393 -0.914473 -0.547607 -0.740919 -0.388799 -0.770086 0.628008 -0.112136 0.327253 0.238002 -0.914473 -0.467732 -0.793765 -0.388799 -0.831120 0.544670 -0.112136 0.300777 0.270689 -0.914473 -0.381964 -0.838415 -0.388799 -0.883628 0.454563 -0.112136 0.270750 0.300722 -0.914473 -0.291988 -0.873830 -0.388799 -0.926403 0.359449 -0.112136 0.237741 0.327442 -0.914473 -0.199696 -0.899420 -0.388799 -0.958713 0.261334 -0.112136 0.202464 0.350353 -0.914473 -0.104330 -0.915396 -0.388799 -0.980822 0.159415 -0.112136 0.164629 0.369643 -0.914473 -0.007816 -0.921289 -0.388799 -0.992128 0.055740 -0.112136 0.124982 0.384862 -0.914473 0.088785 -0.917035 -0.388799 -0.992506 -0.048549 -0.112136 0.083957 0.395841 -0.914473 0.183505 -0.902863 -0.388799 -0.982104 -0.151322 -0.112136 0.042410 0.402418 -0.914473 0.277121 -0.878658 -0.388799 -0.960835 -0.253420 -0.112136 0.000000 0.404647 -0.914473 0.367684 -0.844774 -0.388799 -0.928983 -0.352726 -0.112136 -0.042410 0.402418 -0.914473 0.453396 -0.802040 -0.388799 -0.887346 -0.447261 -0.112136 -0.083957 0.395841 -0.914473 0.534958 -0.750103 -0.388799 -0.835583 -0.537798 -0.112136 -0.124982 0.384862 -0.914473 0.610628 -0.689905 -0.388799 -0.774616 -0.622411 -0.112136 -0.164629 0.369643 -0.914473 0.679572 -0.622107 -0.388799 -0.705117 -0.700168 -0.112136 -0.202464 0.350353 -0.914473 0.740483 -0.548197 -0.388799 -0.628621 -0.769585 -0.112136 -0.237741 0.327442 -0.914473 0.793860 -0.467570 -0.388799 -0.544501 -0.831231 -0.112136 -0.270750 0.300722 -0.914473 0.838492 -0.381793 -0.388799 -0.454383 -0.883720 -0.112136 -0.300777 0.270689 -0.914473 0.873597 -0.292684 -0.388799 -0.360186 -0.926116 -0.112136 -0.327253 0.238002 -0.914473 0.899461 -0.199513 -0.388799 -0.261139 -0.958766 -0.112136 -0.350395 0.202393 -0.914473 0.915418 -0.104144 -0.388799 -0.159215 -0.980855 -0.112136 -0.369677 0.164554 -0.914473 0.921291 -0.007628 -0.388799 -0.055538 -0.992140 -0.112136 -0.384887 0.124903 -0.914473 0.917105 0.088055 -0.388799 0.047759 -0.992545 -0.112136 -0.395774 0.084272 -0.914473 0.902825 0.183689 -0.388799 0.151521 -0.982073 -0.112136 -0.402427 0.042328 -0.914473 -0.147624 -0.989011 0.008078 -0.987537 0.147845 0.053964 -0.054566 -0.000011 -0.998510 -0.043156 -0.999036 0.008078 -0.997594 0.043530 0.053964 -0.054264 -0.005730 -0.998510 0.060790 -0.998118 0.008078 -0.996722 -0.060268 0.053964 -0.053376 -0.011332 -0.998510 0.165065 -0.986250 0.008078 -0.984917 -0.164400 0.053964 -0.051894 -0.016864 -0.998510 0.267522 -0.963518 0.008078 -0.962262 -0.266721 0.053964 -0.049841 -0.022210 -0.998510 0.366102 -0.930540 0.008078 -0.929374 -0.365174 0.053964 -0.047266 -0.027264 -0.998510 0.461612 -0.887045 0.008078 -0.885982 -0.460568 0.053964 -0.044148 -0.032068 -0.998510 0.552039 -0.833779 0.008078 -0.832832 -0.550889 0.053964 -0.040544 -0.036518 -0.998510 0.636385 -0.771330 0.008078 -0.770508 -0.635142 0.053964 -0.036493 -0.040566 -0.998510 0.713020 -0.701097 0.008078 -0.700409 -0.711698 0.053964 -0.032085 -0.044136 -0.998510 0.782573 -0.622506 0.008078 -0.621961 -0.781187 0.053964 -0.027283 -0.047255 -0.998510 0.843506 -0.537059 0.008078 -0.536661 -0.842070 0.053964 -0.022180 -0.049855 -0.998510 0.894702 -0.446590 0.008078 -0.446344 -0.893233 0.053964 -0.016884 -0.051888 -0.998510 0.936580 -0.350360 0.008078 -0.350269 -0.935093 0.053964 -0.011353 -0.053372 -0.998510 0.968142 -0.250270 0.008078 -0.250335 -0.966654 0.053964 -0.005697 -0.054267 -0.998510 0.988920 -0.148229 0.008078 -0.148449 -0.987447 0.053964 -0.000022 -0.054566 -0.998510 0.999009 -0.043766 0.008078 -0.044140 -0.997567 0.053964 0.005697 -0.054267 -0.998510 0.998094 0.061178 0.008078 0.060656 -0.996699 0.053964 0.011353 -0.053372 -0.998510 0.986185 0.165449 0.008078 0.164783 -0.984852 0.053964 0.016884 -0.051888 -0.998510 0.963681 0.266933 0.008078 0.266133 -0.962425 0.053964 0.022180 -0.049855 -0.998510 0.930397 0.366464 0.008078 0.365536 -0.929232 0.053964 0.027283 -0.047255 -0.998510 0.886865 0.461958 0.008078 0.460913 -0.885803 0.053964 0.032085 -0.044136 -0.998510 0.834116 0.551529 0.008078 0.550380 -0.833168 0.053964 0.036493 -0.040566 -0.998510 0.771718 0.635913 0.008078 0.634671 -0.770896 0.053964 0.040544 -0.036518 -0.998510 0.700820 0.713293 0.008078 0.711971 -0.700132 0.053964 0.044148 -0.032068 -0.998510 0.622202 0.782815 0.008078 0.781429 -0.621657 0.053964 0.047266 -0.027264 -0.998510 0.537574 0.843178 0.008078 0.841742 -0.537176 0.053964 0.049841 -0.022210 -0.998510 0.446242 0.894876 0.008078 0.893406 -0.445997 0.053964 0.051894 -0.016864 -0.998510 0.349995 0.936717 0.008078 0.935230 -0.349905 0.053964 0.053376 -0.011332 -0.998510 0.250861 0.967989 0.008078 0.966501 -0.250926 0.053964 0.054264 -0.005730 -0.998510 0.148027 0.988950 0.008078 0.987477 -0.148248 0.053964 0.054566 -0.000011 -0.998510 0.043563 0.999018 0.008078 0.997576 -0.043936 0.053964 0.054266 0.005708 -0.998510 -0.061381 0.998082 0.008078 0.996687 0.060859 0.053964 0.053369 0.011364 -0.998510 -0.164663 0.986317 0.008078 0.984983 0.163998 0.053964 0.051901 0.016843 -0.998510 -0.267129 0.963627 0.008078 0.962370 0.266329 0.053964 0.049850 0.022190 -0.998510 -0.366653 0.930323 0.008078 0.929157 0.365725 0.053964 0.047250 0.027292 -0.998510 -0.462138 0.886771 0.008078 0.885709 0.461093 0.053964 0.044129 0.032094 -0.998510 -0.551699 0.834004 0.008078 0.833056 0.550550 0.053964 0.040559 0.036502 -0.998510 -0.636070 0.771589 0.008078 0.770767 0.634828 0.053964 0.036510 0.040552 -0.998510 -0.713435 0.700675 0.008078 0.699987 0.712113 0.053964 0.032059 0.044155 -0.998510 -0.782319 0.622825 0.008078 0.622279 0.780933 0.053964 0.027302 0.047244 -0.998510 -0.843287 0.537402 0.008078 0.537004 0.841852 0.053964 0.022200 0.049846 -0.998510 -0.894967 0.446060 0.008078 0.445815 0.893497 0.053964 0.016853 0.051898 -0.998510 -0.936788 0.349804 0.008078 0.349714 0.935301 0.053964 0.011321 0.053378 -0.998510 -0.968040 0.250664 0.008078 0.250729 0.966552 0.053964 0.005719 0.054265 -0.998510 -0.988980 0.147826 0.008078 0.148046 0.987507 0.053964 0.000000 0.054566 -0.998510 -0.999027 0.043359 0.008078 0.043733 0.997585 0.053964 -0.005719 0.054265 -0.998510 -0.998130 -0.060586 0.008078 -0.060065 0.996735 0.053964 -0.011321 0.053378 -0.998510 -0.986283 -0.164864 0.008078 -0.164199 0.984950 0.053964 -0.016853 0.051898 -0.998510 -0.963572 -0.267326 0.008078 -0.266525 0.962316 0.053964 -0.022200 0.049846 -0.998510 -0.930248 -0.366843 0.008078 -0.365914 0.929083 0.053964 -0.027302 0.047244 -0.998510 -0.887139 -0.461432 0.008078 -0.460388 0.886076 0.053964 -0.032059 0.044155 -0.998510 -0.833892 -0.551869 0.008078 -0.550719 0.832944 0.053964 -0.036510 0.040552 -0.998510 -0.771459 -0.636228 0.008078 -0.634985 0.770637 0.053964 -0.040559 0.036502 -0.998510 -0.701242 -0.712877 0.008078 -0.711556 0.700554 0.053964 -0.044129 0.032094 -0.998510 -0.622666 -0.782446 0.008078 -0.781060 0.622120 0.053964 -0.047250 0.027292 -0.998510 -0.537230 -0.843397 0.008078 -0.841961 0.536833 0.053964 -0.049850 0.022190 -0.998510 -0.445878 -0.895057 0.008078 -0.893588 0.445633 0.053964 -0.051901 0.016843 -0.998510 -0.350550 -0.936509 0.008078 -0.935022 0.350459 0.053964 -0.053369 0.011364 -0.998510 -0.250467 -0.968091 0.008078 -0.966603 0.250532 0.053964 -0.054266 0.005708 -0.998510 -0.337645 0.920602 0.196181 0.795863 0.390501 -0.462721 -0.502591 -0.000102 -0.864525 -0.432272 0.880145 0.196181 0.750553 0.471763 -0.462721 -0.499812 -0.052777 -0.864525 -0.521306 0.830514 0.196181 0.697523 0.547131 -0.462721 -0.491632 -0.104378 -0.864525 -0.605479 0.771303 0.196181 0.636338 0.617223 -0.462721 -0.477985 -0.155330 -0.864525 -0.682982 0.703597 0.196181 0.568144 0.680516 -0.462721 -0.459073 -0.204571 -0.864525 -0.752334 0.628893 0.196181 0.494428 0.735820 -0.462721 -0.435355 -0.251123 -0.864525 -0.814103 0.546579 0.196181 0.414586 0.783587 -0.462721 -0.406638 -0.295369 -0.864525 -0.866905 0.458245 0.196181 0.330177 0.822723 -0.462721 -0.373442 -0.336360 -0.864525 -0.910158 0.364864 0.196181 0.242131 0.852797 -0.462721 -0.336132 -0.373647 -0.864525 -0.943118 0.268406 0.196181 0.152292 0.873325 -0.462721 -0.295527 -0.406523 -0.864525 -0.966055 0.168083 0.196181 0.059922 0.884477 -0.462721 -0.251293 -0.435258 -0.864525 -0.978350 0.065907 0.196181 -0.033107 0.885886 -0.462721 -0.204290 -0.459198 -0.864525 -0.979906 -0.036014 0.196181 -0.124894 0.877662 -0.462721 -0.155516 -0.477925 -0.864525 -0.970735 -0.138517 0.196181 -0.216192 0.859739 -0.462721 -0.104570 -0.491592 -0.864525 -0.950871 -0.239494 0.196181 -0.305108 0.832345 -0.462721 -0.052472 -0.499844 -0.864525 -0.920808 -0.337083 0.196181 -0.390015 0.796102 -0.462721 -0.000205 -0.502590 -0.864525 -0.880408 -0.431734 0.196181 -0.471304 0.750841 -0.462721 0.052472 -0.499844 -0.864525 -0.830311 -0.521629 0.196181 -0.547402 0.697310 -0.462721 0.104570 -0.491592 -0.864525 -0.771068 -0.605779 0.196181 -0.617470 0.636098 -0.462721 0.155516 -0.477925 -0.864525 -0.704014 -0.682552 0.196181 -0.680169 0.568560 -0.462721 0.204290 -0.459198 -0.864525 -0.628600 -0.752579 0.196181 -0.736012 0.494142 -0.462721 0.251293 -0.435258 -0.864525 -0.546263 -0.814316 0.196181 -0.783748 0.414281 -0.462721 0.295527 -0.406523 -0.864525 -0.458775 -0.866625 0.196181 -0.822521 0.330679 -0.462721 0.336132 -0.373647 -0.864525 -0.365420 -0.909935 0.196181 -0.852649 0.242652 -0.462721 0.373442 -0.336360 -0.864525 -0.268039 -0.943222 0.196181 -0.873384 0.151952 -0.462721 0.406638 -0.295369 -0.864525 -0.167707 -0.966120 0.196181 -0.884500 0.059578 -0.462721 0.435355 -0.251123 -0.864525 -0.066505 -0.978310 0.196181 -0.885906 -0.032566 -0.462721 0.459073 -0.204571 -0.864525 0.036395 -0.979892 0.196181 -0.877614 -0.125236 -0.462721 0.477985 -0.155330 -0.864525 0.138894 -0.970681 0.196181 -0.859655 -0.216526 -0.462721 0.491632 -0.104378 -0.864525 0.238913 -0.951017 0.196181 -0.832532 -0.304599 -0.462721 0.499812 -0.052777 -0.864525 0.337270 -0.920740 0.196181 -0.796022 -0.390177 -0.462721 0.502591 -0.000102 -0.864525 0.431913 -0.880321 0.196181 -0.750745 -0.471457 -0.462721 0.499833 0.052573 -0.864525 0.521798 -0.830205 0.196181 -0.697198 -0.547544 -0.462721 0.491570 0.104670 -0.864525 0.605165 -0.771550 0.196181 -0.636589 -0.616964 -0.462721 0.478048 0.155136 -0.864525 0.682696 -0.703875 0.196181 -0.568421 -0.680285 -0.462721 0.459156 0.204384 -0.864525 0.752707 -0.628447 0.196181 -0.493992 -0.736113 -0.462721 0.435207 0.251381 -0.864525 0.814427 -0.546097 0.196181 -0.414121 -0.783832 -0.462721 0.406463 0.295610 -0.864525 0.866718 -0.458598 0.196181 -0.330512 -0.822588 -0.462721 0.373579 0.336208 -0.864525 0.910009 -0.365234 0.196181 -0.242478 -0.852698 -0.462721 0.336284 0.373510 -0.864525 0.943277 -0.267847 0.196181 -0.151774 -0.873415 -0.462721 0.295286 0.406698 -0.864525 0.965986 -0.168476 0.196181 -0.060283 -0.884452 -0.462721 0.251470 0.435155 -0.864525 0.978323 -0.066306 0.196181 0.032746 -0.885899 -0.462721 0.204478 0.459115 -0.864525 0.979885 0.036595 0.196181 0.125415 -0.877588 -0.462721 0.155233 0.478017 -0.864525 0.970653 0.139092 0.196181 0.216701 -0.859610 -0.462721 0.104278 0.491654 -0.864525 0.950969 0.239106 0.196181 0.304769 -0.832470 -0.462721 0.052675 0.499823 -0.864525 0.920671 0.337458 0.196181 0.390339 -0.795943 -0.462721 0.000000 0.502591 -0.864525 0.880233 0.432092 0.196181 0.471610 -0.750649 -0.462721 -0.052675 0.499823 -0.864525 0.830620 0.521137 0.196181 0.546989 -0.697634 -0.462721 -0.104278 0.491654 -0.864525 0.771426 0.605322 0.196181 0.617093 -0.636463 -0.462721 -0.155233 0.478017 -0.864525 0.703736 0.682839 0.196181 0.680400 -0.568282 -0.462721 -0.204478 0.459115 -0.864525 0.628294 0.752835 0.196181 0.736213 -0.493842 -0.462721 -0.251470 0.435155 -0.864525 0.546745 0.813992 0.196181 0.783502 -0.414745 -0.462721 -0.295286 0.406698 -0.864525 0.458422 0.866812 0.196181 0.822656 -0.330344 -0.462721 -0.336284 0.373510 -0.864525 0.365049 0.910084 0.196181 0.852747 -0.242305 -0.462721 -0.373579 0.336208 -0.864525 0.268598 0.943063 0.196181 0.873294 -0.152470 -0.462721 -0.406463 0.295610 -0.864525 0.168279 0.966020 0.196181 0.884464 -0.060102 -0.462721 -0.435207 0.251381 -0.864525 0.066107 0.978337 0.196181 0.885893 0.032927 -0.462721 -0.459156 0.204384 -0.864525 -0.036794 0.979877 0.196181 0.877563 0.125593 -0.462721 -0.478048 0.155136 -0.864525 -0.138319 0.970763 0.196181 0.859783 0.216017 -0.462721 -0.491570 0.104670 -0.864525 -0.239300 0.950920 0.196181 0.832407 0.304938 -0.462721 -0.499833 0.052573 -0.864525 0.122494 -0.835014 -0.536420 -0.185542 -0.550229 0.814139 -0.974971 -0.000199 -0.222330 0.209335 -0.817577 -0.536420 -0.126852 -0.566644 0.814139 -0.969581 -0.102381 -0.222330 0.293079 -0.791428 -0.536420 -0.067342 -0.576752 0.814139 -0.953714 -0.202483 -0.222330 0.374412 -0.756352 -0.536420 -0.006524 -0.580633 0.814139 -0.927240 -0.301324 -0.222330 0.451621 -0.712946 -0.536420 0.054367 -0.578119 0.814139 -0.890552 -0.396846 -0.222330 0.523194 -0.662210 -0.536420 0.114089 -0.569351 0.814139 -0.844543 -0.487152 -0.222330 0.589716 -0.603728 -0.536420 0.173133 -0.554258 0.814139 -0.788834 -0.572983 -0.222330 0.649744 -0.538597 -0.536420 0.230270 -0.533060 0.814139 -0.724437 -0.652503 -0.222330 0.702614 -0.467533 -0.536420 0.284870 -0.505991 0.814139 -0.652060 -0.724836 -0.222330 0.747353 -0.392066 -0.536420 0.335859 -0.473684 0.814139 -0.573290 -0.788611 -0.222330 0.784329 -0.311579 -0.536420 0.383655 -0.435874 0.814139 -0.487481 -0.844353 -0.222330 0.812665 -0.227660 -0.536420 0.427225 -0.393264 0.814139 -0.396302 -0.890794 -0.222330 0.831908 -0.142065 -0.536420 0.465742 -0.346788 0.814139 -0.301685 -0.927122 -0.222330 0.842216 -0.054093 -0.536420 0.499523 -0.296065 0.814139 -0.202854 -0.953635 -0.222330 0.843247 0.034476 -0.536420 0.527801 -0.242081 0.814139 -0.101789 -0.969643 -0.222330 0.835089 0.121984 -0.536420 0.550115 -0.185878 0.814139 -0.000397 -0.974971 -0.222330 0.817705 0.208835 -0.536420 0.566567 -0.127199 0.814139 0.101789 -0.969643 -0.222330 0.791314 0.293386 -0.536420 0.576778 -0.067118 0.814139 0.202854 -0.953635 -0.222330 0.756207 0.374706 -0.536420 0.580636 -0.006298 0.814139 0.301685 -0.927122 -0.222330 0.713222 0.451185 -0.536420 0.578152 0.054014 0.814139 0.396302 -0.890794 -0.222330 0.662006 0.523451 -0.536420 0.569307 0.114311 0.814139 0.487481 -0.844353 -0.222330 0.603499 0.589951 -0.536420 0.554191 0.173349 0.814139 0.573290 -0.788611 -0.222330 0.538994 0.649414 -0.536420 0.533201 0.229944 0.814139 0.652060 -0.724836 -0.222330 0.467962 0.702328 -0.536420 0.506164 0.284561 0.814139 0.724437 -0.652503 -0.222330 0.391776 0.747506 -0.536420 0.473553 0.336043 0.814139 0.788834 -0.572983 -0.222330 0.311274 0.784450 -0.536420 0.435725 0.383824 0.814139 0.844543 -0.487152 -0.222330 0.228156 0.812526 -0.536420 0.393525 0.426984 0.814139 0.890552 -0.396846 -0.222330 0.141741 0.831963 -0.536420 0.346607 0.465877 0.814139 0.927240 -0.301324 -0.222330 0.053765 0.842237 -0.536420 0.295870 0.499638 0.814139 0.953714 -0.202483 -0.222330 -0.033960 0.843267 -0.536420 0.242403 0.527653 0.814139 0.969581 -0.102381 -0.222330 -0.122154 0.835064 -0.536420 0.185766 0.550153 0.814139 0.974971 -0.000199 -0.222330 -0.209002 0.817662 -0.536420 0.127083 0.566593 0.814139 0.969623 0.101987 -0.222330 -0.293548 0.791254 -0.536420 0.067000 0.576791 0.814139 0.953594 0.203048 -0.222330 -0.374104 0.756505 -0.536420 0.006760 0.580630 0.814139 0.927362 0.300946 -0.222330 -0.451330 0.713130 -0.536420 -0.054131 0.578141 0.814139 0.890714 0.396483 -0.222330 -0.523586 0.661900 -0.536420 -0.114427 0.569284 0.814139 0.844254 0.487652 -0.222330 -0.590074 0.603379 -0.536420 -0.173461 0.554156 0.814139 0.788495 0.573451 -0.222330 -0.649524 0.538861 -0.536420 -0.230053 0.533154 0.814139 0.724703 0.652208 -0.222330 -0.702424 0.467819 -0.536420 -0.284664 0.506107 0.814139 0.652355 0.724570 -0.222330 -0.747586 0.391623 -0.536420 -0.336140 0.473484 0.814139 0.572823 0.788951 -0.222330 -0.784202 0.311899 -0.536420 -0.383477 0.436031 0.814139 0.487824 0.844154 -0.222330 -0.812572 0.227991 -0.536420 -0.427064 0.393438 0.814139 0.396664 0.890633 -0.222330 -0.831992 0.141572 -0.536420 -0.465947 0.346512 0.814139 0.301135 0.927301 -0.222330 -0.842248 0.053593 -0.536420 -0.499698 0.295769 0.814139 0.202289 0.953755 -0.222330 -0.843261 -0.034132 -0.536420 -0.527703 0.242296 0.814139 0.102184 0.969602 -0.222330 -0.835039 -0.122324 -0.536420 -0.550191 0.185654 0.814139 0.000000 0.974971 -0.222330 -0.817620 -0.209168 -0.536420 -0.566619 0.126968 0.814139 -0.102184 0.969602 -0.222330 -0.791488 -0.292917 -0.536420 -0.576738 0.067460 0.814139 -0.202289 0.953755 -0.222330 -0.756429 -0.374258 -0.536420 -0.580632 0.006642 0.814139 -0.301135 0.927301 -0.222330 -0.713038 -0.451476 -0.536420 -0.578130 -0.054249 0.814139 -0.396664 0.890633 -0.222330 -0.661793 -0.523721 -0.536420 -0.569260 -0.114542 0.814139 -0.487824 0.844154 -0.222330 -0.603848 -0.589593 -0.536420 -0.554294 -0.173020 0.814139 -0.572823 0.788951 -0.222330 -0.538729 -0.649634 -0.536420 -0.533107 -0.230161 0.814139 -0.652355 0.724570 -0.222330 -0.467676 -0.702519 -0.536420 -0.506049 -0.284767 0.814139 -0.724703 0.652208 -0.222330 -0.392219 -0.747274 -0.536420 -0.473752 -0.335763 0.814139 -0.788495 0.573451 -0.222330 -0.311739 -0.784265 -0.536420 -0.435952 -0.383566 0.814139 -0.844254 0.487652 -0.222330 -0.227825 -0.812619 -0.536420 -0.393351 -0.427144 0.814139 -0.890714 0.396483 -0.222330 -0.141402 -0.832021 -0.536420 -0.346417 -0.466018 0.814139 -0.927362 0.300946 -0.222330 -0.054264 -0.842205 -0.536420 -0.296167 -0.499462 0.814139 -0.953594 0.203048 -0.222330 0.034304 -0.843254 -0.536420 -0.242188 -0.527752 0.814139 -0.969623 0.101987 -0.222330 -0.292348 0.163005 -0.942317 -0.048112 -0.986625 -0.155743 -0.955101 -0.000195 0.296281 -0.307823 0.131467 -0.942317 0.055558 -0.986234 -0.155743 -0.949820 -0.100295 0.296281 -0.319807 0.098801 -0.942317 0.157642 -0.975137 -0.155743 -0.934276 -0.198356 0.296281 -0.328401 0.064739 -0.942317 0.258975 -0.953245 -0.155743 -0.908342 -0.295183 0.296281 -0.333378 0.029964 -0.942317 0.357455 -0.920853 -0.155743 -0.872402 -0.388758 0.296281 -0.334687 -0.004807 -0.942317 0.451120 -0.878769 -0.155743 -0.827330 -0.477224 0.296281 -0.332340 -0.039858 -0.942317 0.540737 -0.826648 -0.155743 -0.772757 -0.561305 0.296281 -0.326332 -0.074470 -0.942317 0.624397 -0.765423 -0.155743 -0.709673 -0.639205 0.296281 -0.316730 -0.108262 -0.942317 0.701180 -0.695766 -0.155743 -0.638771 -0.710063 0.296281 -0.303779 -0.140558 -0.942317 0.769621 -0.619215 -0.155743 -0.561606 -0.772539 0.296281 -0.287375 -0.171622 -0.942317 0.830281 -0.535143 -0.155743 -0.477545 -0.827145 0.296281 -0.267805 -0.200796 -0.942317 0.881795 -0.445176 -0.155743 -0.388225 -0.872639 0.296281 -0.245513 -0.227512 -0.942317 0.923245 -0.351230 -0.155743 -0.295536 -0.908227 0.296281 -0.220316 -0.251991 -0.942317 0.954972 -0.252532 -0.155743 -0.198720 -0.934199 0.296281 -0.192692 -0.273694 -0.942317 0.976180 -0.151054 -0.155743 -0.099715 -0.949881 0.296281 -0.163184 -0.292249 -0.942317 0.986596 -0.048715 -0.155743 -0.000389 -0.955101 0.296281 -0.131655 -0.307742 -0.942317 0.986268 0.054956 -0.155743 0.099715 -0.949881 0.296281 -0.098677 -0.319846 -0.942317 0.975076 0.158021 -0.155743 0.198720 -0.934199 0.296281 -0.064611 -0.328426 -0.942317 0.953144 0.259346 -0.155743 0.295536 -0.908227 0.296281 -0.030167 -0.333359 -0.942317 0.921071 0.356893 -0.155743 0.388225 -0.872639 0.296281 0.004937 -0.334685 -0.942317 0.878593 0.451462 -0.155743 0.477545 -0.827145 0.296281 0.039987 -0.332324 -0.942317 0.826438 0.541058 -0.155743 0.561606 -0.772539 0.296281 0.074271 -0.326377 -0.942317 0.765804 0.623930 -0.155743 0.638771 -0.710063 0.296281 0.108068 -0.316796 -0.942317 0.696194 0.700755 -0.155743 0.709673 -0.639205 0.296281 0.140676 -0.303725 -0.942317 0.618915 0.769862 -0.155743 0.772757 -0.561305 0.296281 0.171733 -0.287308 -0.942317 0.534820 0.830489 -0.155743 0.827330 -0.477224 0.296281 0.200632 -0.267928 -0.942317 0.445715 0.881523 -0.155743 0.872402 -0.388758 0.296281 0.227608 -0.245424 -0.942317 0.350870 0.923382 -0.155743 0.908342 -0.295183 0.296281 0.252076 -0.220218 -0.942317 0.252161 0.955070 -0.155743 0.934276 -0.198356 0.296281 0.273576 -0.192859 -0.942317 0.151650 0.976087 -0.155743 0.949820 -0.100295 0.296281 0.292282 -0.163124 -0.942317 0.048514 0.986605 -0.155743 0.955101 -0.000195 0.296281 0.307769 -0.131593 -0.942317 -0.055157 0.986256 -0.155743 0.949861 0.099908 0.296281 0.319866 -0.098612 -0.942317 -0.158220 0.975044 -0.155743 0.934159 0.198910 0.296281 0.328375 -0.064873 -0.942317 -0.258587 0.953350 -0.155743 0.908462 0.294813 0.296281 0.333365 -0.030099 -0.942317 -0.357080 0.920998 -0.155743 0.872560 0.388402 0.296281 0.334684 0.005005 -0.942317 -0.451641 0.878501 -0.155743 0.827047 0.477714 0.296281 0.332316 0.040055 -0.942317 -0.541227 0.826328 -0.155743 0.772424 0.561763 0.296281 0.326362 0.074337 -0.942317 -0.624086 0.765677 -0.155743 0.709933 0.638915 0.296281 0.316774 0.108133 -0.942317 -0.700897 0.696051 -0.155743 0.639060 0.709803 0.296281 0.303696 0.140738 -0.942317 -0.769988 0.618759 -0.155743 0.561148 0.772872 0.296281 0.287445 0.171505 -0.942317 -0.830063 0.535481 -0.155743 0.477882 0.826950 0.296281 0.267887 0.200686 -0.942317 -0.881613 0.445535 -0.155743 0.388580 0.872481 0.296281 0.245378 0.227658 -0.942317 -0.923453 0.350682 -0.155743 0.294998 0.908402 0.296281 0.220167 0.252121 -0.942317 -0.955121 0.251966 -0.155743 0.198166 0.934317 0.296281 0.192804 0.273615 -0.942317 -0.976118 0.151451 -0.155743 0.100101 0.949841 0.296281 0.163065 0.292315 -0.942317 -0.986615 0.048313 -0.155743 0.000000 0.955101 0.296281 0.131530 0.307796 -0.942317 -0.986245 -0.055357 -0.155743 -0.100101 0.949841 0.296281 0.098866 0.319787 -0.942317 -0.975170 -0.157443 -0.155743 -0.198166 0.934317 0.296281 0.064806 0.328388 -0.942317 -0.953298 -0.258781 -0.155743 -0.294998 0.908402 0.296281 0.030032 0.333371 -0.942317 -0.920925 -0.357268 -0.155743 -0.388580 0.872481 0.296281 -0.005074 0.334683 -0.942317 -0.878409 -0.451820 -0.155743 -0.477882 0.826950 0.296281 -0.039790 0.332348 -0.942317 -0.826759 -0.540569 -0.155743 -0.561148 0.772872 0.296281 -0.074404 0.326347 -0.942317 -0.765550 -0.624242 -0.155743 -0.639060 0.709803 0.296281 -0.108197 0.316752 -0.942317 -0.695908 -0.701039 -0.155743 -0.709933 0.638915 0.296281 -0.140496 0.303808 -0.942317 -0.619372 -0.769495 -0.155743 -0.772424 0.561763 0.296281 -0.171563 0.287410 -0.942317 -0.535312 -0.830172 -0.155743 -0.827047 0.477714 0.296281 -0.200741 0.267846 -0.942317 -0.445356 -0.881704 -0.155743 -0.872560 0.388402 0.296281 -0.227708 0.245332 -0.942317 -0.350494 -0.923525 -0.155743 -0.908462 0.294813 0.296281 -0.251946 0.220367 -0.942317 -0.252727 -0.954920 -0.155743 -0.934159 0.198910 0.296281 -0.273654 0.192748 -0.942317 -0.151253 -0.976149 -0.155743 -0.949861 0.099908 0.296281 -0.284810 0.551138 0.784303 0.187903 0.834414 -0.518117 -0.939987 -0.000191 -0.341210 -0.341004 0.518252 0.784303 0.099416 0.849513 -0.518117 -0.934790 -0.098708 -0.341210 -0.392963 0.480051 0.784303 0.010689 0.855243 -0.518117 -0.919492 -0.195217 -0.341210 -0.441111 0.436222 0.784303 -0.079006 0.851653 -0.518117 -0.893968 -0.290512 -0.341210 -0.484401 0.387588 0.784303 -0.167830 0.838682 -0.518117 -0.858597 -0.382606 -0.341210 -0.522021 0.335207 0.784303 -0.253989 0.816728 -0.518117 -0.814238 -0.469672 -0.341210 -0.554278 0.278649 0.784303 -0.338189 0.785610 -0.518117 -0.760529 -0.552423 -0.341210 -0.580429 0.219022 0.784303 -0.418664 0.745839 -0.518117 -0.698443 -0.629090 -0.341210 -0.600188 0.156983 0.784303 -0.494528 0.697852 -0.518117 -0.628663 -0.698827 -0.341210 -0.613242 0.093828 0.784303 -0.564302 0.642743 -0.518117 -0.552719 -0.760314 -0.341210 -0.619698 0.029039 0.784303 -0.628558 0.580060 -0.518117 -0.469989 -0.814056 -0.341210 -0.619329 -0.036070 0.784303 -0.685891 0.510988 -0.518117 -0.382081 -0.858830 -0.341210 -0.612238 -0.100169 0.784303 -0.735232 0.437024 -0.518117 -0.290859 -0.893855 -0.341210 -0.598368 -0.163784 0.784303 -0.776986 0.357559 -0.518117 -0.195575 -0.919416 -0.341210 -0.577906 -0.225596 0.784303 -0.810181 0.274156 -0.518117 -0.098137 -0.934850 -0.341210 -0.551311 -0.284473 0.784303 -0.834299 0.188413 -0.518117 -0.000383 -0.939987 -0.341210 -0.518460 -0.340688 0.784303 -0.849452 0.099935 -0.518117 0.098137 -0.934850 -0.341210 -0.479898 -0.393150 0.784303 -0.855247 0.010356 -0.518117 0.195575 -0.919416 -0.341210 -0.436050 -0.441281 0.784303 -0.851622 -0.079337 -0.518117 0.290859 -0.893855 -0.341210 -0.387884 -0.484164 0.784303 -0.838785 -0.167318 -0.518117 0.382081 -0.858830 -0.341210 -0.335004 -0.522151 0.784303 -0.816629 -0.254307 -0.518117 0.469989 -0.814056 -0.341210 -0.278434 -0.554386 0.784303 -0.785478 -0.338495 -0.518117 0.552719 -0.760314 -0.341210 -0.219377 -0.580295 0.784303 -0.746094 -0.418209 -0.518117 0.628663 -0.698827 -0.341210 -0.157350 -0.600092 0.784303 -0.698154 -0.494101 -0.518117 0.698443 -0.629090 -0.341210 -0.093589 -0.613278 0.784303 -0.642524 -0.564552 -0.518117 0.760529 -0.552423 -0.341210 -0.028798 -0.619709 0.784303 -0.579816 -0.628783 -0.518117 0.814238 -0.469672 -0.341210 0.035692 -0.619351 0.784303 -0.511407 -0.685578 -0.518117 0.858597 -0.382606 -0.341210 0.100407 -0.612199 0.784303 -0.436737 -0.735402 -0.518117 0.893968 -0.290512 -0.341210 0.164017 -0.598304 0.784303 -0.357257 -0.777125 -0.518117 0.919492 -0.195217 -0.341210 0.225242 -0.578044 0.784303 -0.274651 -0.810014 -0.518117 0.934790 -0.098708 -0.341210 0.284585 -0.551253 0.784303 -0.188243 -0.834338 -0.518117 0.939987 -0.000191 -0.341210 0.340793 -0.518391 0.784303 -0.099762 -0.849472 -0.518117 0.934830 0.098327 -0.341210 0.393247 -0.479818 0.784303 -0.010182 -0.855249 -0.518117 0.919376 0.195762 -0.341210 0.440934 -0.436402 0.784303 0.078659 -0.851685 -0.518117 0.894086 0.290148 -0.341210 0.484243 -0.387785 0.784303 0.167489 -0.838751 -0.518117 0.858753 0.382256 -0.341210 0.522219 -0.334897 0.784303 0.254473 -0.816577 -0.518117 0.813960 0.470154 -0.341210 0.554443 -0.278321 0.784303 0.338655 -0.785410 -0.518117 0.760201 0.552874 -0.341210 0.580340 -0.219259 0.784303 0.418360 -0.746009 -0.518117 0.698699 0.628805 -0.341210 0.600124 -0.157227 0.784303 0.494243 -0.698053 -0.518117 0.628947 0.698571 -0.341210 0.613297 -0.093464 0.784303 0.564682 -0.642409 -0.518117 0.552268 0.760642 -0.341210 0.619686 -0.029291 0.784303 0.628321 -0.580316 -0.518117 0.470320 0.813864 -0.341210 0.619343 0.035818 0.784303 0.685682 -0.511268 -0.518117 0.382431 0.858675 -0.341210 0.612178 0.100532 0.784303 0.735491 -0.436588 -0.518117 0.290330 0.894027 -0.341210 0.598270 0.164139 0.784303 0.777197 -0.357098 -0.518117 0.195030 0.919532 -0.341210 0.577998 0.225360 0.784303 0.810069 -0.274486 -0.518117 0.098517 0.934810 -0.341210 0.551196 0.284697 0.784303 0.834376 -0.188073 -0.518117 0.000000 0.939987 -0.341210 0.518321 0.340899 0.784303 0.849492 -0.099589 -0.518117 -0.098517 0.934810 -0.341210 0.480131 0.392865 0.784303 0.855241 -0.010863 -0.518117 -0.195030 0.919532 -0.341210 0.436312 0.441023 0.784303 0.851669 0.078832 -0.518117 -0.290330 0.894027 -0.341210 0.387687 0.484322 0.784303 0.838717 0.167659 -0.518117 -0.382431 0.858675 -0.341210 0.334791 0.522287 0.784303 0.816526 0.254639 -0.518117 -0.470320 0.813864 -0.341210 0.278762 0.554221 0.784303 0.785679 0.338029 -0.518117 -0.552268 0.760642 -0.341210 0.219141 0.580385 0.784303 0.745924 0.418512 -0.518117 -0.628947 0.698571 -0.341210 0.157105 0.600156 0.784303 0.697953 0.494386 -0.518117 -0.698699 0.628805 -0.341210 0.093953 0.613223 0.784303 0.642858 0.564171 -0.518117 -0.760201 0.552874 -0.341210 0.029165 0.619692 0.784303 0.580189 0.628440 -0.518117 -0.813960 0.470154 -0.341210 -0.035944 0.619336 0.784303 0.511128 0.685786 -0.518117 -0.858753 0.382256 -0.341210 -0.100657 0.612158 0.784303 0.436438 0.735579 -0.518117 -0.894086 0.290148 -0.341210 -0.163663 0.598401 0.784303 0.357717 0.776913 -0.518117 -0.919376 0.195762 -0.341210 -0.225478 0.577952 0.784303 0.274321 0.810125 -0.518117 -0.934830 0.098327 -0.341210 -0.448437 -0.529755 0.719906 -0.280267 0.848151 0.449545 -0.848737 -0.000173 -0.528815 -0.390445 -0.573837 0.719906 -0.367615 0.814106 0.449545 -0.844045 -0.089126 -0.528815 -0.328764 -0.611269 0.719906 -0.450144 0.771544 0.449545 -0.830232 -0.176267 -0.528815 -0.262888 -0.642359 0.719906 -0.528528 0.720116 0.449545 -0.807185 -0.262310 -0.528815 -0.194116 -0.666374 0.719906 -0.601090 0.660757 0.449545 -0.775248 -0.345464 -0.528815 -0.123889 -0.682926 0.719906 -0.666438 0.594786 0.449545 -0.735196 -0.424078 -0.528815 -0.051632 -0.692149 0.719906 -0.725105 0.521663 0.449545 -0.686700 -0.498796 -0.528815 0.021195 -0.693748 0.719906 -0.775785 0.442794 0.449545 -0.630641 -0.568020 -0.528815 0.093788 -0.687706 0.719906 -0.817921 0.359047 0.449545 -0.567635 -0.630988 -0.528815 0.164674 -0.674254 0.719906 -0.850775 0.272197 0.449545 -0.499063 -0.686506 -0.528815 0.234433 -0.653282 0.719906 -0.874618 0.181530 0.449545 -0.424364 -0.735031 -0.528815 0.301611 -0.625113 0.719906 -0.888826 0.088864 0.449545 -0.344990 -0.775459 -0.528815 0.364876 -0.590425 0.719906 -0.893249 -0.003887 0.449545 -0.262624 -0.807083 -0.528815 0.424747 -0.548932 0.719906 -0.887922 -0.097485 0.449545 -0.176590 -0.830163 -0.528815 0.479940 -0.501392 0.719906 -0.872815 -0.190009 0.449545 -0.088610 -0.844099 -0.528815 0.529481 -0.448761 0.719906 -0.848322 -0.279748 0.449545 -0.000346 -0.848737 -0.528815 0.573598 -0.390796 0.719906 -0.814330 -0.367118 0.449545 0.088610 -0.844099 -0.528815 0.611397 -0.328526 0.719906 -0.771369 -0.450444 0.449545 0.176590 -0.830163 -0.528815 0.642462 -0.262638 0.719906 -0.719911 -0.528808 0.449545 0.262624 -0.807083 -0.528815 0.666256 -0.194524 0.719906 -0.661124 -0.600686 0.449545 0.344990 -0.775459 -0.528815 0.682974 -0.123624 0.719906 -0.594527 -0.666669 0.449545 0.424364 -0.735031 -0.528815 0.692169 -0.051363 0.719906 -0.521381 -0.725308 0.449545 0.499063 -0.686506 -0.528815 0.693761 0.020771 0.719906 -0.443268 -0.775515 0.449545 0.567635 -0.630988 -0.528815 0.687763 0.093368 0.719906 -0.359547 -0.817701 0.449545 0.630641 -0.568020 -0.528815 0.674190 0.164936 0.719906 -0.271866 -0.850881 0.449545 0.686700 -0.498796 -0.528815 0.653190 0.234687 0.719906 -0.181190 -0.874688 0.449545 0.735196 -0.424078 -0.528815 0.625298 0.301229 0.719906 -0.089407 -0.888772 0.449545 0.775248 -0.345464 -0.528815 0.590283 0.365106 0.719906 0.004235 -0.893248 0.449545 0.807185 -0.262310 -0.528815 0.548766 0.424961 0.719906 0.097830 -0.887884 0.449545 0.830232 -0.176267 -0.528815 0.501685 0.479633 0.719906 0.189475 -0.872931 0.449545 0.844045 -0.089126 -0.528815 0.448653 0.529572 0.719906 0.279921 -0.848265 0.449545 0.848737 -0.000173 -0.528815 0.390679 0.573677 0.719906 0.367284 -0.814255 0.449545 0.844081 0.088782 -0.528815 0.328402 0.611464 0.719906 0.450601 -0.771277 0.449545 0.830127 0.176759 -0.528815 0.263150 0.642252 0.719906 0.528234 -0.720332 0.449545 0.807292 0.261981 -0.528815 0.194388 0.666295 0.719906 0.600821 -0.661002 0.449545 0.775388 0.345148 -0.528815 0.123485 0.682999 0.719906 0.666790 -0.594391 0.449545 0.734944 0.424514 -0.528815 0.051222 0.692179 0.719906 0.725414 -0.521233 0.449545 0.686404 0.499203 -0.528815 -0.020912 0.693757 0.719906 0.775605 -0.443110 0.449545 0.630872 0.567763 -0.528815 -0.093508 0.687744 0.719906 0.817775 -0.359380 0.449545 0.567892 0.630756 -0.528815 -0.165073 0.674156 0.719906 0.850936 -0.271692 0.449545 0.498656 0.686802 -0.528815 -0.234167 0.653377 0.719906 0.874544 -0.181886 0.449545 0.424663 0.734858 -0.528815 -0.301356 0.625236 0.719906 0.888790 -0.089226 0.449545 0.345306 0.775318 -0.528815 -0.365226 0.590209 0.719906 0.893247 0.004417 0.449545 0.262146 0.807239 -0.528815 -0.425072 0.548680 0.719906 0.887864 0.098011 0.449545 0.176097 0.830268 -0.528815 -0.479736 0.501587 0.719906 0.872892 0.189653 0.449545 0.088954 0.844063 -0.528815 -0.529663 0.448545 0.719906 0.848208 0.280094 0.449545 0.000000 0.848737 -0.528815 -0.573757 0.390562 0.719906 0.814181 0.367450 0.449545 -0.088954 0.844063 -0.528815 -0.611202 0.328889 0.719906 0.771636 0.449986 0.449545 -0.176097 0.830268 -0.528815 -0.642306 0.263019 0.719906 0.720224 0.528381 0.449545 -0.262146 0.807239 -0.528815 -0.666335 0.194252 0.719906 0.660879 0.600956 0.449545 -0.345306 0.775318 -0.528815 -0.683024 0.123346 0.719906 0.594255 0.666911 0.449545 -0.424663 0.734858 -0.528815 -0.692138 0.051773 0.719906 0.521811 0.724999 0.449545 -0.498656 0.686802 -0.528815 -0.693753 -0.021053 0.719906 0.442952 0.775695 0.449545 -0.567892 0.630756 -0.528815 -0.687725 -0.093648 0.719906 0.359214 0.817848 0.449545 -0.630872 0.567763 -0.528815 -0.674288 -0.164536 0.719906 0.272370 0.850720 0.449545 -0.686404 0.499203 -0.528815 -0.653329 -0.234300 0.719906 0.181708 0.874581 0.449545 -0.734944 0.424514 -0.528815 -0.625175 -0.301484 0.719906 0.089045 0.888808 0.449545 -0.775388 0.345148 -0.528815 -0.590134 -0.365346 0.719906 -0.004599 0.893246 0.449545 -0.807292 0.261981 -0.528815 -0.549018 -0.424635 0.719906 -0.097304 0.887942 0.449545 -0.830127 0.176759 -0.528815 -0.501490 -0.479838 0.719906 -0.189831 0.872854 0.449545 -0.844081 0.088782 -0.528815 0.782176 -0.348559 -0.516436 -0.290811 -0.937287 0.192153 -0.551025 -0.000112 -0.834488 0.814400 -0.264662 -0.516436 -0.190975 -0.962604 0.192153 -0.547979 -0.057863 -0.834488 0.837475 -0.178687 -0.516436 -0.090013 -0.977228 0.192153 -0.539011 -0.114437 -0.834488 0.851591 -0.089930 -0.516436 0.012904 -0.981280 0.192153 -0.524049 -0.170299 -0.834488 0.856326 -0.000181 -0.516436 0.115678 -0.974523 0.192153 -0.503314 -0.224286 -0.834488 0.851718 0.088717 -0.516436 0.216221 -0.957249 0.192153 -0.477311 -0.275324 -0.834488 0.837729 0.177494 -0.516436 0.315356 -0.929316 0.192153 -0.445826 -0.323833 -0.834488 0.814512 0.264317 -0.516436 0.411018 -0.891146 0.192153 -0.409431 -0.368776 -0.834488 0.782324 0.348228 -0.516436 0.502153 -0.843160 0.192153 -0.368526 -0.409656 -0.834488 0.741947 0.427561 -0.516436 0.586971 -0.786475 0.192153 -0.324007 -0.445700 -0.834488 0.693049 0.502968 -0.516436 0.666166 -0.720625 0.192153 -0.275510 -0.477204 -0.834488 0.636517 0.572834 -0.516436 0.738024 -0.646837 0.192153 -0.223978 -0.503451 -0.834488 0.573611 0.635818 -0.516436 0.801186 -0.566726 0.192153 -0.170503 -0.523982 -0.834488 0.503813 0.692435 -0.516436 0.856171 -0.479634 0.192153 -0.114647 -0.538967 -0.834488 0.428467 0.741424 -0.516436 0.901724 -0.387260 0.192153 -0.057528 -0.548014 -0.834488 0.349037 0.781963 -0.516436 0.937109 -0.291384 0.192153 -0.000224 -0.551025 -0.834488 0.265160 0.814238 -0.516436 0.962487 -0.191563 0.192153 0.057528 -0.548014 -0.834488 0.178361 0.837545 -0.516436 0.977263 -0.089632 0.192153 0.114647 -0.538967 -0.834488 0.089598 0.851625 -0.516436 0.981275 0.013285 0.192153 0.170503 -0.523982 -0.834488 0.000705 0.856325 -0.516436 0.974594 0.115082 0.192153 0.223978 -0.503451 -0.834488 -0.089048 0.851683 -0.516436 0.957165 0.216593 0.192153 0.275510 -0.477204 -0.834488 -0.177820 0.837660 -0.516436 0.929193 0.315718 0.192153 0.324007 -0.445700 -0.834488 -0.263819 0.814674 -0.516436 0.891397 0.410474 0.192153 0.368526 -0.409656 -0.834488 -0.347750 0.782537 -0.516436 0.843467 0.501638 0.192153 0.409431 -0.368776 -0.834488 -0.427850 0.741780 -0.516436 0.786246 0.587277 0.192153 0.445826 -0.323833 -0.834488 -0.503237 0.692853 -0.516436 0.720365 0.666446 0.192153 0.477311 -0.275324 -0.834488 -0.572445 0.636867 -0.516436 0.647288 0.737629 0.192153 0.503314 -0.224286 -0.834488 -0.636041 0.573363 -0.516436 0.566414 0.801407 0.192153 0.524049 -0.170299 -0.834488 -0.692631 0.503544 -0.516436 0.479301 0.856357 0.192153 0.539011 -0.114437 -0.834488 -0.741162 0.428919 -0.516436 0.387811 0.901488 0.192153 0.547979 -0.057863 -0.834488 -0.782034 0.348878 -0.516436 0.291193 0.937168 0.192153 0.551025 -0.000112 -0.834488 -0.814292 0.264994 -0.516436 0.191367 0.962526 0.192153 0.548002 0.057640 -0.834488 -0.837581 0.178191 -0.516436 0.089433 0.977281 0.192153 0.538943 0.114757 -0.834488 -0.851554 0.090276 -0.516436 -0.012504 0.981285 0.192153 0.524118 0.170086 -0.834488 -0.856326 0.000530 -0.516436 -0.115281 0.974570 0.192153 0.503405 0.224081 -0.834488 -0.851665 -0.089222 -0.516436 -0.216788 0.957121 0.192153 0.477148 0.275607 -0.834488 -0.837623 -0.177991 -0.516436 -0.315907 0.929129 0.192153 0.445634 0.324098 -0.834488 -0.814620 -0.263985 -0.516436 -0.410655 0.891313 0.192153 0.409581 0.368609 -0.834488 -0.782466 -0.347909 -0.516436 -0.501810 0.843365 0.192153 0.368692 0.409506 -0.834488 -0.741693 -0.428001 -0.516436 -0.587437 0.786127 0.192153 0.323743 0.445892 -0.834488 -0.693254 -0.502686 -0.516436 -0.665873 0.720896 0.192153 0.275704 0.477091 -0.834488 -0.636751 -0.572575 -0.516436 -0.737760 0.647137 0.192153 0.224183 0.503360 -0.834488 -0.573234 -0.636158 -0.516436 -0.801522 0.566251 0.192153 0.170193 0.524083 -0.834488 -0.503403 -0.692733 -0.516436 -0.856455 0.479127 0.192153 0.114328 0.539034 -0.834488 -0.428768 -0.741250 -0.516436 -0.901567 0.387627 0.192153 0.057751 0.547991 -0.834488 -0.348719 -0.782105 -0.516436 -0.937227 0.291002 0.192153 0.000000 0.551025 -0.834488 -0.264828 -0.814346 -0.516436 -0.962565 0.191171 0.192153 -0.057751 0.547991 -0.834488 -0.178858 -0.837439 -0.516436 -0.977210 0.090212 0.192153 -0.114328 0.539034 -0.834488 -0.090103 -0.851572 -0.516436 -0.981283 -0.012704 0.192153 -0.170193 0.524083 -0.834488 -0.000356 -0.856326 -0.516436 -0.974547 -0.115479 0.192153 -0.224183 0.503360 -0.834488 0.089395 -0.851647 -0.516436 -0.957077 -0.216983 0.192153 -0.275704 0.477091 -0.834488 0.177324 -0.837765 -0.516436 -0.929380 -0.315167 0.192153 -0.323743 0.445892 -0.834488 0.264151 -0.814566 -0.516436 -0.891230 -0.410837 0.192153 -0.368692 0.409506 -0.834488 0.348069 -0.782395 -0.516436 -0.843263 -0.501982 0.192153 -0.409581 0.368609 -0.834488 0.427410 -0.742034 -0.516436 -0.786594 -0.586811 0.192153 -0.445634 0.324098 -0.834488 0.502827 -0.693151 -0.516436 -0.720760 -0.666019 0.192153 -0.477148 0.275607 -0.834488 0.572705 -0.636634 -0.516436 -0.646987 -0.737892 0.192153 -0.503405 0.224081 -0.834488 0.636274 -0.573104 -0.516436 -0.566087 -0.801637 0.192153 -0.524118 0.170086 -0.834488 0.692332 -0.503954 -0.516436 -0.479809 -0.856073 0.192153 -0.538943 0.114757 -0.834488 0.741337 -0.428618 -0.516436 -0.387444 -0.901646 0.192153 -0.548002 0.057640 -0.834488 0.971992 -0.229925 0.048638 0.229637 0.973208 0.011501 -0.049979 -0.000010 0.998750 0.990737 -0.126787 0.048638 0.126373 0.991916 0.011501 -0.049703 -0.005248 0.998750 0.998546 -0.023251 0.048638 0.022717 0.999676 0.011501 -0.048889 -0.010380 0.998750 0.995483 0.081532 0.048638 -0.082182 0.996551 0.011501 -0.047532 -0.015447 0.998750 0.981456 0.185417 0.048638 -0.186175 0.982449 0.011501 -0.045652 -0.020343 0.998750 0.956904 0.286303 0.048638 -0.287160 0.957814 0.011501 -0.043293 -0.024972 0.998750 0.921627 0.385016 0.048638 -0.385964 0.922442 0.011501 -0.040437 -0.029372 0.998750 0.876199 0.479489 0.048638 -0.480517 0.876910 0.011501 -0.037136 -0.033449 0.998750 0.821120 0.568680 0.048638 -0.569777 0.821719 0.011501 -0.033426 -0.037157 0.998750 0.757647 0.650850 0.048638 -0.652003 0.758129 0.011501 -0.029388 -0.040426 0.998750 0.685260 0.726672 0.048638 -0.727869 0.685619 0.011501 -0.024989 -0.043283 0.998750 0.605326 0.794490 0.048638 -0.795719 0.605557 0.011501 -0.020315 -0.045664 0.998750 0.519577 0.853038 0.048638 -0.854284 0.519680 0.011501 -0.015465 -0.047526 0.998750 0.427311 0.902795 0.048638 -0.904045 0.427283 0.011501 -0.010399 -0.048885 0.998750 0.330338 0.942609 0.048638 -0.943848 0.330179 0.011501 -0.005218 -0.049706 0.998750 0.230518 0.971852 0.048638 -0.973068 0.230231 0.011501 -0.000020 -0.049979 0.998750 0.127392 0.990659 0.048638 -0.991839 0.126979 0.011501 0.005218 -0.049706 0.998750 0.022862 0.998555 0.048638 -0.999685 0.022328 0.011501 0.010399 -0.048885 0.998750 -0.081920 0.995451 0.048638 -0.996519 -0.082569 0.011501 0.015465 -0.047526 0.998750 -0.184817 0.981569 0.048638 -0.982563 -0.185574 0.011501 0.020315 -0.045664 0.998750 -0.286675 0.956793 0.048638 -0.957702 -0.287532 0.011501 0.024989 -0.043283 0.998750 -0.385375 0.921477 0.048638 -0.922292 -0.386322 0.011501 0.029388 -0.040426 0.998750 -0.478954 0.876492 0.048638 -0.877204 -0.479981 0.011501 0.033426 -0.037157 0.998750 -0.568178 0.821467 0.048638 -0.822067 -0.569275 0.011501 0.037136 -0.033449 0.998750 -0.651145 0.757393 0.048638 -0.757876 -0.652298 0.011501 0.040437 -0.029372 0.998750 -0.726939 0.684978 0.048638 -0.685336 -0.728136 0.011501 0.043293 -0.024972 0.998750 -0.794120 0.605811 0.048638 -0.606043 -0.795348 0.011501 0.045652 -0.020343 0.998750 -0.853240 0.519245 0.048638 -0.519347 -0.854486 0.011501 0.047532 -0.015447 0.998750 -0.902962 0.426960 0.048638 -0.426931 -0.904211 0.011501 0.048889 -0.010380 0.998750 -0.942407 0.330914 0.048638 -0.330756 -0.943646 0.011501 0.049703 -0.005248 0.998750 -0.971899 0.230321 0.048638 -0.230033 -0.973115 0.011501 0.049979 -0.000010 0.998750 -0.990685 0.127190 0.048638 -0.126777 -0.991865 0.011501 0.049705 0.005228 0.998750 -0.998559 0.022659 0.048638 -0.022124 -0.999689 0.011501 0.048883 0.010409 0.998750 -0.995516 -0.081127 0.048638 0.081776 -0.996584 0.011501 0.047539 0.015427 0.998750 -0.981531 -0.185017 0.048638 0.185775 -0.982525 0.011501 0.045660 0.020325 0.998750 -0.956734 -0.286870 0.048638 0.287727 -0.957643 0.011501 0.043278 0.024998 0.998750 -0.921399 -0.385562 0.048638 0.386510 -0.922213 0.011501 0.040420 0.029396 0.998750 -0.876394 -0.479132 0.048638 0.480159 -0.877106 0.011501 0.037150 0.033434 0.998750 -0.821351 -0.568346 0.048638 0.569442 -0.821951 0.011501 0.033441 0.037143 0.998750 -0.757261 -0.651299 0.048638 0.652452 -0.757743 0.011501 0.029364 0.040443 0.998750 -0.685556 -0.726393 0.048638 0.727590 -0.685916 0.011501 0.025007 0.043273 0.998750 -0.605649 -0.794244 0.048638 0.795472 -0.605881 0.011501 0.020334 0.045656 0.998750 -0.519071 -0.853346 0.048638 0.854591 -0.519173 0.011501 0.015437 0.047535 0.998750 -0.426776 -0.903049 0.048638 0.904298 -0.426747 0.011501 0.010370 0.048892 0.998750 -0.330722 -0.942474 0.048638 0.943714 -0.330564 0.011501 0.005238 0.049704 0.998750 -0.230123 -0.971945 0.048638 0.973162 -0.229835 0.011501 0.000000 0.049979 0.998750 -0.126988 -0.990711 0.048638 0.991890 -0.126575 0.011501 -0.005238 0.049704 0.998750 -0.023454 -0.998541 0.048638 0.999671 -0.022920 0.011501 -0.010370 0.048892 0.998750 0.081330 -0.995500 0.048638 0.996568 0.081979 0.011501 -0.015437 0.047535 0.998750 0.185217 -0.981493 0.048638 0.982487 0.185975 0.011501 -0.020334 0.045656 0.998750 0.287065 -0.956676 0.048638 0.957585 0.287922 0.011501 -0.025007 0.043273 0.998750 0.384829 -0.921706 0.048638 0.922521 0.385776 0.011501 -0.029364 0.040443 0.998750 0.479310 -0.876297 0.048638 0.877008 0.480338 0.011501 -0.033441 0.037143 0.998750 0.568513 -0.821235 0.048638 0.821835 0.569609 0.011501 -0.037150 0.033434 0.998750 0.650696 -0.757779 0.048638 0.758262 0.651848 0.011501 -0.040420 0.029396 0.998750 0.726533 -0.685408 0.048638 0.685768 0.727730 0.011501 -0.043278 0.024998 0.998750 0.794367 -0.605488 0.048638 0.605719 0.795595 0.011501 -0.045660 0.020325 0.998750 0.853452 -0.518898 0.048638 0.518999 0.854697 0.011501 -0.047539 0.015427 0.998750 0.902708 -0.427495 0.048638 0.427467 0.903958 0.011501 -0.048883 0.010409 0.998750 0.942541 -0.330530 0.048638 0.330371 0.943781 0.011501 -0.049705 0.005228 0.998750 0.145528 0.975927 -0.162444 0.651716 -0.218097 -0.726430 -0.744371 -0.000152 -0.667766 0.042442 0.985805 -0.162444 0.670985 -0.148591 -0.726430 -0.740256 -0.078166 -0.667766 -0.060126 0.984884 -0.162444 0.682785 -0.078132 -0.726430 -0.728141 -0.154592 -0.667766 -0.163018 0.973158 -0.162444 0.687213 -0.006141 -0.726430 -0.707929 -0.230055 -0.667766 -0.264114 0.950713 -0.162444 0.684072 0.065918 -0.726430 -0.679919 -0.302984 -0.667766 -0.361383 0.918158 -0.162444 0.673533 0.136577 -0.726430 -0.644791 -0.371931 -0.667766 -0.455622 0.875226 -0.162444 0.655509 0.206416 -0.726430 -0.602259 -0.437461 -0.667766 -0.544843 0.822653 -0.162444 0.630265 0.273981 -0.726430 -0.553093 -0.498173 -0.667766 -0.628062 0.761019 -0.162444 0.598079 0.338529 -0.726430 -0.497835 -0.553397 -0.667766 -0.703672 0.691706 -0.162444 0.559704 0.398788 -0.726430 -0.437695 -0.602089 -0.667766 -0.772293 0.614147 -0.162444 0.514825 0.455252 -0.726430 -0.372182 -0.644647 -0.667766 -0.832406 0.529823 -0.162444 0.464276 0.506702 -0.726430 -0.302568 -0.680104 -0.667766 -0.882911 0.440546 -0.162444 0.409166 0.552162 -0.726430 -0.230330 -0.707839 -0.667766 -0.924221 0.345584 -0.162444 0.349042 0.592005 -0.726430 -0.154875 -0.728081 -0.667766 -0.955350 0.246816 -0.162444 0.285073 0.625326 -0.726430 -0.077714 -0.740303 -0.667766 -0.975838 0.146124 -0.162444 0.218495 0.651582 -0.726430 -0.000303 -0.744371 -0.667766 -0.985778 0.043044 -0.162444 0.149001 0.670894 -0.726430 0.077714 -0.740303 -0.667766 -0.984861 -0.060510 -0.162444 0.077866 0.682815 -0.726430 0.154875 -0.728081 -0.667766 -0.973095 -0.163397 -0.162444 0.005873 0.687215 -0.726430 0.230330 -0.707839 -0.667766 -0.950874 -0.263533 -0.162444 -0.065500 0.684112 -0.726430 0.302568 -0.680104 -0.667766 -0.918017 -0.361740 -0.162444 -0.136839 0.673479 -0.726430 0.372182 -0.644647 -0.667766 -0.875048 -0.455963 -0.162444 -0.206671 0.655429 -0.726430 0.437695 -0.602089 -0.667766 -0.822986 -0.544340 -0.162444 -0.273596 0.630432 -0.726430 0.497835 -0.553397 -0.667766 -0.761402 -0.627597 -0.162444 -0.338163 0.598285 -0.726430 0.553093 -0.498173 -0.667766 -0.691432 -0.703941 -0.162444 -0.399005 0.559548 -0.726430 0.602259 -0.437461 -0.667766 -0.613846 -0.772531 -0.162444 -0.455452 0.514648 -0.726430 0.644791 -0.371931 -0.667766 -0.530331 -0.832082 -0.162444 -0.506419 0.464586 -0.726430 0.679919 -0.302984 -0.667766 -0.440202 -0.883082 -0.162444 -0.552321 0.408951 -0.726430 0.707929 -0.230055 -0.667766 -0.345224 -0.924355 -0.162444 -0.592140 0.348811 -0.726430 0.728141 -0.154592 -0.667766 -0.247399 -0.955199 -0.162444 -0.625152 0.285455 -0.726430 0.740256 -0.078166 -0.667766 -0.145925 -0.975868 -0.162444 -0.651627 0.218362 -0.726430 0.744371 -0.000152 -0.667766 -0.042843 -0.985787 -0.162444 -0.670924 0.148865 -0.726430 0.740287 0.077865 -0.667766 0.060710 -0.984848 -0.162444 -0.682831 0.077727 -0.726430 0.728050 0.155023 -0.667766 0.162622 -0.973225 -0.162444 -0.687211 0.006421 -0.726430 0.708022 0.229766 -0.667766 0.263727 -0.950821 -0.162444 -0.684099 -0.065639 -0.726430 0.680042 0.302707 -0.667766 0.361927 -0.917944 -0.162444 -0.673452 -0.136976 -0.726430 0.644571 0.372313 -0.667766 0.456141 -0.874956 -0.162444 -0.655387 -0.206804 -0.726430 0.602000 0.437818 -0.667766 0.544508 -0.822875 -0.162444 -0.630377 -0.273724 -0.726430 0.553296 0.497948 -0.667766 0.627752 -0.761275 -0.162444 -0.598216 -0.338285 -0.726430 0.498060 0.553195 -0.667766 0.704082 -0.691289 -0.162444 -0.559467 -0.399119 -0.726430 0.437339 0.602348 -0.667766 0.772042 -0.614461 -0.162444 -0.515011 -0.455042 -0.726430 0.372444 0.644495 -0.667766 0.832190 -0.530162 -0.162444 -0.464483 -0.506513 -0.726430 0.302845 0.679980 -0.667766 0.883172 -0.440022 -0.162444 -0.408838 -0.552405 -0.726430 0.229911 0.707976 -0.667766 0.924425 -0.345036 -0.162444 -0.348691 -0.592211 -0.726430 0.154443 0.728173 -0.667766 0.955250 -0.247205 -0.162444 -0.285328 -0.625210 -0.726430 0.078015 0.740272 -0.667766 0.975897 -0.145726 -0.162444 -0.218230 -0.651671 -0.726430 0.000000 0.744371 -0.667766 0.985796 -0.042643 -0.162444 -0.148728 -0.670954 -0.726430 -0.078015 0.740272 -0.667766 0.984896 0.059926 -0.162444 -0.078271 -0.682769 -0.726430 -0.154443 0.728173 -0.667766 0.973191 0.162820 -0.162444 -0.006281 -0.687212 -0.726430 -0.229911 0.707976 -0.667766 0.950767 0.263921 -0.162444 0.065779 -0.684085 -0.726430 -0.302845 0.679980 -0.667766 0.917870 0.362114 -0.162444 0.137113 -0.673424 -0.726430 -0.372444 0.644495 -0.667766 0.875319 0.455444 -0.162444 0.206282 -0.655551 -0.726430 -0.437339 0.602348 -0.667766 0.822764 0.544676 -0.162444 0.273853 -0.630321 -0.726430 -0.498060 0.553195 -0.667766 0.761147 0.627907 -0.162444 0.338407 -0.598148 -0.726430 -0.553296 0.497948 -0.667766 0.691849 0.703531 -0.162444 0.398674 -0.559785 -0.726430 -0.602000 0.437818 -0.667766 0.614304 0.772168 -0.162444 0.455147 -0.514918 -0.726430 -0.644571 0.372313 -0.667766 0.529992 0.832298 -0.162444 0.506608 -0.464379 -0.726430 -0.680042 0.302707 -0.667766 0.439842 0.883261 -0.162444 0.552488 -0.408726 -0.726430 -0.708022 0.229766 -0.667766 0.345772 0.924150 -0.162444 0.591934 -0.349162 -0.726430 -0.728050 0.155023 -0.667766 0.247010 0.955300 -0.162444 0.625268 -0.285200 -0.726430 -0.740287 0.077865 -0.667766 -0.657167 -0.199983 0.726732 -0.134246 0.979799 0.148227 -0.741694 -0.000151 -0.670738 -0.632588 -0.267757 0.726732 -0.236196 0.960333 0.148227 -0.737593 -0.077885 -0.670738 -0.601373 -0.331981 0.726732 -0.334615 0.930624 0.148227 -0.725523 -0.154036 -0.670738 -0.563267 -0.393181 0.726732 -0.430308 0.890429 0.148227 -0.705383 -0.229227 -0.670738 -0.518957 -0.450050 0.726732 -0.521262 0.840426 0.148227 -0.677473 -0.301894 -0.670738 -0.469432 -0.501492 0.726732 -0.605692 0.781771 0.148227 -0.642472 -0.370593 -0.670738 -0.414287 -0.547930 0.726732 -0.684291 0.713985 0.148227 -0.600093 -0.435888 -0.670738 -0.354578 -0.588333 0.726732 -0.755353 0.638334 0.148227 -0.551104 -0.496381 -0.670738 -0.290964 -0.622255 0.726732 -0.818095 0.555652 0.148227 -0.496045 -0.551407 -0.670738 -0.224794 -0.649098 0.726732 -0.871359 0.467721 0.148227 -0.436121 -0.599924 -0.670738 -0.155525 -0.669084 0.726732 -0.915580 0.373820 0.148227 -0.370843 -0.642328 -0.670738 -0.084544 -0.681699 0.726732 -0.949717 0.275802 0.148227 -0.301480 -0.677658 -0.670738 -0.013318 -0.686792 0.726732 -0.973217 0.175719 0.148227 -0.229502 -0.705294 -0.670738 0.058736 -0.684406 0.726732 -0.986274 0.072752 0.148227 -0.154318 -0.725463 -0.670738 0.130143 -0.674480 0.726732 -0.988467 -0.031018 0.148227 -0.077434 -0.737641 -0.670738 0.199581 -0.657289 0.726732 -0.979881 -0.133647 0.148227 -0.000302 -0.741694 -0.670738 0.267371 -0.632751 0.726732 -0.960477 -0.235610 0.148227 0.077434 -0.737641 -0.670738 0.332215 -0.601244 0.726732 -0.930494 -0.334977 0.148227 0.154318 -0.725463 -0.670738 0.393400 -0.563114 0.726732 -0.890261 -0.430655 0.148227 0.229502 -0.705294 -0.670738 0.449733 -0.519232 0.726732 -0.840744 -0.520748 0.148227 0.301480 -0.677658 -0.670738 0.501675 -0.469237 0.726732 -0.781535 -0.605996 0.148227 0.370843 -0.642328 -0.670738 0.548091 -0.414073 0.726732 -0.713718 -0.684569 0.148227 0.436121 -0.599924 -0.670738 0.588116 -0.354937 0.726732 -0.638795 -0.754963 0.148227 0.496045 -0.551407 -0.670738 0.622077 -0.291344 0.726732 -0.556151 -0.817756 0.148227 0.551104 -0.496381 -0.670738 0.649186 -0.224541 0.726732 -0.467382 -0.871541 0.148227 0.600093 -0.435888 -0.670738 0.669144 -0.155265 0.726732 -0.373464 -0.915726 0.148227 0.642472 -0.370593 -0.670738 0.681647 -0.084961 0.726732 -0.276382 -0.949548 0.148227 0.677473 -0.301894 -0.670738 0.686797 -0.013051 0.726732 -0.175341 -0.973285 0.148227 0.705383 -0.229227 -0.670738 0.684383 0.059002 0.726732 -0.072368 -0.986302 0.148227 0.725523 -0.154036 -0.670738 0.674560 0.129731 0.726732 0.030414 -0.988486 0.148227 0.737593 -0.077885 -0.670738 0.657248 0.199715 0.726732 0.133847 -0.979854 0.148227 0.741694 -0.000151 -0.670738 0.632697 0.267499 0.726732 0.235805 -0.960429 0.148227 0.737625 0.077585 -0.670738 0.601176 0.332337 0.726732 0.335167 -0.930426 0.148227 0.725431 0.154466 -0.670738 0.563427 0.392951 0.726732 0.429945 -0.890604 0.148227 0.705476 0.228940 -0.670738 0.519140 0.449838 0.726732 0.520919 -0.840638 0.148227 0.677596 0.301618 -0.670738 0.469135 0.501770 0.726732 0.606155 -0.781412 0.148227 0.642253 0.370974 -0.670738 0.413962 0.548176 0.726732 0.684714 -0.713579 0.148227 0.599835 0.436244 -0.670738 0.354818 0.588188 0.726732 0.755093 -0.638641 0.148227 0.551306 0.496157 -0.670738 0.291217 0.622136 0.726732 0.817869 -0.555985 0.148227 0.496269 0.551205 -0.670738 0.224409 0.649232 0.726732 0.871636 -0.467204 0.148227 0.435766 0.600182 -0.670738 0.155798 0.669020 0.726732 0.915428 -0.374193 0.148227 0.371105 0.642177 -0.670738 0.084822 0.681664 0.726732 0.949604 -0.276189 0.148227 0.301756 0.677535 -0.670738 0.012911 0.686800 0.726732 0.973321 -0.175143 0.148227 0.229084 0.705430 -0.670738 -0.059141 0.684371 0.726732 0.986317 -0.072167 0.148227 0.153888 0.725554 -0.670738 -0.129868 0.674533 0.726732 0.988479 0.030615 0.148227 0.077735 0.737609 -0.670738 -0.199849 0.657207 0.726732 0.979827 0.134046 0.148227 0.000000 0.741694 -0.670738 -0.267628 0.632642 0.726732 0.960381 0.236001 0.148227 -0.077735 0.737609 -0.670738 -0.331858 0.601441 0.726732 0.930692 0.334425 0.148227 -0.153888 0.725554 -0.670738 -0.393066 0.563347 0.726732 0.890517 0.430127 0.148227 -0.229084 0.705430 -0.670738 -0.449944 0.519048 0.726732 0.840532 0.521090 0.148227 -0.301756 0.677535 -0.670738 -0.501866 0.469032 0.726732 0.781289 0.606314 0.148227 -0.371105 0.642177 -0.670738 -0.547846 0.414398 0.726732 0.714124 0.684146 0.148227 -0.435766 0.600182 -0.670738 -0.588261 0.354698 0.726732 0.638488 0.755223 0.148227 -0.496269 0.551205 -0.670738 -0.622196 0.291090 0.726732 0.555818 0.817982 0.148227 -0.551306 0.496157 -0.670738 -0.649053 0.224926 0.726732 0.467898 0.871263 0.148227 -0.599835 0.436244 -0.670738 -0.669052 0.155662 0.726732 0.374007 0.915504 0.148227 -0.642253 0.370974 -0.670738 -0.681682 0.084683 0.726732 0.275996 0.949661 0.148227 -0.677596 0.301618 -0.670738 -0.686803 0.012771 0.726732 0.174944 0.973357 0.148227 -0.705476 0.228940 -0.670738 -0.684418 -0.058596 0.726732 0.072952 0.986259 0.148227 -0.725431 0.154466 -0.670738 -0.674507 -0.130005 0.726732 -0.030816 0.988473 0.148227 -0.737625 0.077585 -0.670738 0.003955 -0.999953 0.008829 0.391052 0.009672 0.920318 -0.920360 -0.000187 0.391072 0.108736 -0.994031 0.008829 0.387885 0.050604 0.920318 -0.915272 -0.096647 0.391072 0.211341 -0.977373 0.008829 0.380536 0.090598 0.920318 -0.900293 -0.191141 0.391072 0.312613 -0.949840 0.008829 0.368945 0.129982 0.920318 -0.875302 -0.284446 0.391072 0.410441 -0.911844 0.008829 0.353290 0.167934 0.920318 -0.840669 -0.374617 0.391072 0.502884 -0.864309 0.008829 0.333947 0.203703 0.920318 -0.797237 -0.459865 0.391072 0.590700 -0.806843 0.008829 0.310758 0.237581 0.920318 -0.744649 -0.540888 0.391072 0.672010 -0.740489 0.008829 0.284147 0.268842 0.920318 -0.683859 -0.615954 0.391072 0.745918 -0.665980 0.008829 0.254405 0.297142 0.920318 -0.615536 -0.684235 0.391072 0.811024 -0.584946 0.008829 0.222184 0.321947 0.920318 -0.541178 -0.744439 0.391072 0.867864 -0.496723 0.008829 0.187218 0.343460 0.920318 -0.460175 -0.797058 0.391072 0.915145 -0.403029 0.008829 0.150189 0.361190 0.920318 -0.374103 -0.840898 0.391072 0.952039 -0.305848 0.008829 0.111882 0.374830 0.920318 -0.284786 -0.875191 0.391072 0.978851 -0.204383 0.008829 0.071981 0.384492 0.920318 -0.191492 -0.900219 0.391072 0.994881 -0.100666 0.008829 0.031287 0.389919 0.920318 -0.096088 -0.915330 0.391072 0.999955 0.003344 0.008829 -0.009433 0.391058 0.920318 -0.000375 -0.920360 0.391072 0.994098 0.108128 0.008829 -0.050367 0.387916 0.920318 0.096088 -0.915330 0.391072 0.977290 0.211721 0.008829 -0.090746 0.380500 0.920318 0.191492 -0.900219 0.391072 0.949718 0.312982 0.008829 -0.130125 0.368894 0.920318 0.284786 -0.875191 0.391072 0.912095 0.409884 0.008829 -0.167718 0.353392 0.920318 0.374103 -0.840898 0.391072 0.864113 0.503220 0.008829 -0.203832 0.333868 0.920318 0.460175 -0.797058 0.391072 0.806613 0.591014 0.008829 -0.237702 0.310666 0.920318 0.541178 -0.744439 0.391072 0.740900 0.671558 0.008829 -0.268668 0.284311 0.920318 0.615536 -0.684235 0.391072 0.666435 0.745511 0.008829 -0.296986 0.254587 0.920318 0.683859 -0.615954 0.391072 0.584630 0.811252 0.008829 -0.322033 0.222058 0.920318 0.744649 -0.540888 0.391072 0.496385 0.868057 0.008829 -0.343533 0.187084 0.920318 0.797237 -0.459865 0.391072 0.403588 0.914898 0.008829 -0.361099 0.150410 0.920318 0.840669 -0.374617 0.391072 0.305477 0.952158 0.008829 -0.374874 0.111736 0.920318 0.875302 -0.284446 0.391072 0.204002 0.978931 0.008829 -0.384520 0.071831 0.920318 0.900293 -0.191141 0.391072 0.101274 0.994819 0.008829 -0.389899 0.031525 0.920318 0.915272 -0.096647 0.391072 -0.003548 0.999955 0.008829 -0.391056 -0.009513 0.920318 0.920360 -0.000187 0.391072 -0.108331 0.994076 0.008829 -0.387905 -0.050446 0.920318 0.915311 0.096274 0.391072 -0.211920 0.977247 0.008829 -0.380482 -0.090823 0.920318 0.900180 0.191675 0.391072 -0.312226 0.949967 0.008829 -0.368998 -0.129832 0.920318 0.875418 0.284089 0.391072 -0.410070 0.912012 0.008829 -0.353358 -0.167790 0.920318 0.840822 0.374275 0.391072 -0.503396 0.864010 0.008829 -0.333826 -0.203900 0.920318 0.796964 0.460337 0.391072 -0.591179 0.806492 0.008829 -0.310618 -0.237765 0.920318 0.744328 0.541330 0.391072 -0.671708 0.740763 0.008829 -0.284256 -0.268726 0.920318 0.684110 0.615676 0.391072 -0.745646 0.666283 0.008829 -0.254526 -0.297038 0.920318 0.615815 0.683984 0.391072 -0.811371 0.584465 0.008829 -0.221993 -0.322079 0.920318 0.540737 0.744759 0.391072 -0.867662 0.497076 0.008829 -0.187358 -0.343384 0.920318 0.460500 0.796870 0.391072 -0.914980 0.403402 0.008829 -0.150337 -0.361129 0.920318 0.374446 0.840745 0.391072 -0.952221 0.305283 0.008829 -0.111660 -0.374897 0.920318 0.284267 0.875360 0.391072 -0.978972 0.203802 0.008829 -0.071753 -0.384535 0.920318 0.190958 0.900332 0.391072 -0.994840 0.101072 0.008829 -0.031446 -0.389906 0.920318 0.096460 0.915291 0.391072 -0.999954 -0.003751 0.008829 0.009593 -0.391054 0.920318 0.000000 0.920360 0.391072 -0.994054 -0.108533 0.008829 0.050525 -0.387895 0.920318 -0.096460 0.915291 0.391072 -0.977416 -0.211142 0.008829 0.090520 -0.380554 0.920318 -0.190958 0.900332 0.391072 -0.949903 -0.312419 0.008829 0.129907 -0.368971 0.920318 -0.284267 0.875360 0.391072 -0.911928 -0.410255 0.008829 0.167862 -0.353324 0.920318 -0.374446 0.840745 0.391072 -0.863908 -0.503572 0.008829 0.203968 -0.333785 0.920318 -0.460500 0.796870 0.391072 -0.806963 -0.590536 0.008829 0.237517 -0.310807 0.920318 -0.540737 0.744759 0.391072 -0.740626 -0.671859 0.008829 0.268784 -0.284202 0.920318 -0.615815 0.683984 0.391072 -0.666132 -0.745782 0.008829 0.297090 -0.254466 0.920318 -0.684110 0.615676 0.391072 -0.585111 -0.810905 0.008829 0.321902 -0.222249 0.920318 -0.744328 0.541330 0.391072 -0.496900 -0.867763 0.008829 0.343422 -0.187288 0.920318 -0.796964 0.460337 0.391072 -0.403215 -0.915063 0.008829 0.361160 -0.150263 0.920318 -0.840822 0.374275 0.391072 -0.305089 -0.952283 0.008829 0.374919 -0.111583 0.920318 -0.875418 0.284089 0.391072 -0.204582 -0.978810 0.008829 0.384477 -0.072059 0.920318 -0.900180 0.191675 0.391072 -0.100869 -0.994861 0.008829 0.389912 -0.031366 0.920318 -0.915311 0.096274 0.391072 -0.306182 0.773724 0.554621 0.373695 0.633523 -0.677496 -0.875559 -0.000178 -0.483110 -0.385588 0.737372 0.554621 0.305239 0.669200 -0.677496 -0.870719 -0.091942 -0.483110 -0.460053 0.693359 0.554621 0.234119 0.697272 -0.677496 -0.856469 -0.181837 -0.483110 -0.530188 0.641324 0.554621 0.159750 0.717969 -0.677496 -0.832694 -0.270600 -0.483110 -0.594484 0.582224 0.554621 0.083622 0.730758 -0.677496 -0.799748 -0.356382 -0.483110 -0.651714 0.517363 0.554621 0.007308 0.735491 -0.677496 -0.758430 -0.437480 -0.483110 -0.702348 0.446210 0.554621 -0.069817 0.732206 -0.677496 -0.708402 -0.514560 -0.483110 -0.745246 0.370141 0.554621 -0.146173 0.720856 -0.677496 -0.650571 -0.585971 -0.483110 -0.779935 0.289996 0.554621 -0.220918 0.701566 -0.677496 -0.585574 -0.650928 -0.483110 -0.805826 0.207462 0.554621 -0.292556 0.674841 -0.677496 -0.514835 -0.708201 -0.483110 -0.823132 0.121863 0.554621 -0.361673 0.640462 -0.677496 -0.437775 -0.758259 -0.483110 -0.831370 0.034921 0.554621 -0.426806 0.599029 -0.677496 -0.355893 -0.799965 -0.483110 -0.830504 -0.051574 0.554621 -0.486687 0.551485 -0.677496 -0.270924 -0.832589 -0.483110 -0.820524 -0.138333 0.554621 -0.541806 0.497439 -0.677496 -0.182170 -0.856398 -0.483110 -0.801507 -0.223568 0.554621 -0.590957 0.437914 -0.677496 -0.091410 -0.870775 -0.483110 -0.773911 -0.305710 0.554621 -0.633295 0.374082 -0.677496 -0.000357 -0.875559 -0.483110 -0.737608 -0.385137 0.554621 -0.669013 0.305648 -0.677496 0.091410 -0.870775 -0.483110 -0.693180 -0.460323 0.554621 -0.697363 0.233847 -0.677496 0.182170 -0.856398 -0.483110 -0.641117 -0.530438 0.554621 -0.718031 0.159471 -0.677496 0.270924 -0.832589 -0.483110 -0.582587 -0.594128 0.554621 -0.730707 0.084068 -0.677496 0.355893 -0.799965 -0.483110 -0.517110 -0.651915 0.554621 -0.735493 0.007022 -0.677496 0.437775 -0.758259 -0.483110 -0.445937 -0.702522 0.554621 -0.732179 -0.070102 -0.677496 0.514835 -0.708201 -0.483110 -0.370596 -0.745020 0.554621 -0.720945 -0.145732 -0.677496 0.585574 -0.650928 -0.483110 -0.290472 -0.779758 0.554621 -0.701701 -0.220490 -0.677496 0.650571 -0.585971 -0.483110 -0.207148 -0.805907 0.554621 -0.674727 -0.292819 -0.677496 0.708402 -0.514560 -0.483110 -0.121543 -0.823179 0.554621 -0.640322 -0.361922 -0.677496 0.758430 -0.437480 -0.483110 -0.035429 -0.831349 0.554621 -0.599290 -0.426440 -0.677496 0.799748 -0.356382 -0.483110 0.051897 -0.830483 0.554621 -0.551295 -0.486902 -0.677496 0.832694 -0.270600 -0.483110 0.138652 -0.820470 0.554621 -0.497228 -0.542000 -0.677496 0.856469 -0.181837 -0.483110 0.223078 -0.801643 0.554621 -0.438275 -0.590690 -0.677496 0.870719 -0.091942 -0.483110 0.305867 -0.773848 0.554621 -0.373953 -0.633371 -0.677496 0.875559 -0.000178 -0.483110 0.385288 -0.737529 0.554621 -0.305512 -0.669076 -0.677496 0.870756 0.091588 -0.483110 0.460464 -0.693087 0.554621 -0.233705 -0.697411 -0.677496 0.856361 0.182345 -0.483110 0.529927 -0.641540 0.554621 -0.160042 -0.717904 -0.677496 0.832805 0.270261 -0.483110 0.594247 -0.582466 0.554621 -0.083920 -0.730724 -0.677496 0.799893 0.356056 -0.483110 0.652020 -0.516977 0.554621 -0.006872 -0.735495 -0.677496 0.758170 0.437929 -0.483110 0.702612 -0.445793 0.554621 0.070251 -0.732164 -0.677496 0.708097 0.514979 -0.483110 0.745095 -0.370445 0.554621 0.145879 -0.720915 -0.677496 0.650809 0.585706 -0.483110 0.779817 -0.290313 0.554621 0.220633 -0.701656 -0.677496 0.585839 0.650690 -0.483110 0.805949 -0.206984 0.554621 0.292956 -0.674668 -0.677496 0.514415 0.708506 -0.483110 0.823082 -0.122198 0.554621 0.361412 -0.640610 -0.677496 0.438084 0.758081 -0.483110 0.831356 -0.035260 0.554621 0.426562 -0.599203 -0.677496 0.356219 0.799820 -0.483110 0.830473 0.052066 0.554621 0.487014 -0.551196 -0.677496 0.270430 0.832750 -0.483110 0.820442 0.138819 0.554621 0.542101 -0.497118 -0.677496 0.181663 0.856506 -0.483110 0.801598 0.223241 0.554621 0.590779 -0.438155 -0.677496 0.091765 0.870737 -0.483110 0.773786 0.306025 0.554621 0.633447 -0.373824 -0.677496 0.000000 0.875559 -0.483110 0.737451 0.385438 0.554621 0.669138 -0.305375 -0.677496 -0.091765 0.870737 -0.483110 0.693453 0.459912 0.554621 0.697224 -0.234261 -0.677496 -0.181663 0.856506 -0.483110 0.641432 0.530058 0.554621 0.717937 -0.159896 -0.677496 -0.270430 0.832750 -0.483110 0.582345 0.594365 0.554621 0.730741 -0.083771 -0.677496 -0.356219 0.799820 -0.483110 0.516844 0.652126 0.554621 0.735496 -0.006722 -0.677496 -0.438084 0.758081 -0.483110 0.446353 0.702257 0.554621 0.732220 0.069668 -0.677496 -0.514415 0.708506 -0.483110 0.370293 0.745171 0.554621 0.720886 0.146026 -0.677496 -0.585839 0.650690 -0.483110 0.290154 0.779876 0.554621 0.701611 0.220776 -0.677496 -0.650809 0.585706 -0.483110 0.207626 0.805784 0.554621 0.674901 0.292419 -0.677496 -0.708097 0.514979 -0.483110 0.122030 0.823107 0.554621 0.640536 0.361543 -0.677496 -0.758170 0.437929 -0.483110 0.035091 0.831363 0.554621 0.599116 0.426684 -0.677496 -0.799893 0.356056 -0.483110 -0.052235 0.830462 0.554621 0.551097 0.487126 -0.677496 -0.832805 0.270261 -0.483110 -0.138166 0.820552 0.554621 0.497550 0.541705 -0.677496 -0.856361 0.182345 -0.483110 -0.223404 0.801553 0.554621 0.438035 0.590868 -0.677496 -0.870756 0.091588 -0.483110 0.620304 -0.777702 0.101989 0.767390 0.628633 0.126225 -0.162279 -0.000033 0.986745 0.698397 -0.708407 0.101989 0.697279 0.705598 0.126225 -0.161382 -0.017041 0.986745 0.768165 -0.632077 0.101989 0.620261 0.774172 0.126225 -0.158741 -0.033702 0.986745 0.830180 -0.548087 0.101989 0.535707 0.834917 0.126225 -0.154334 -0.050154 0.986745 0.883052 -0.458059 0.101989 0.445251 0.886464 0.126225 -0.148228 -0.066053 0.986745 0.925833 -0.363912 0.101989 0.350819 0.927897 0.126225 -0.140570 -0.081084 0.986745 0.958874 -0.264874 0.101989 0.251637 0.959555 0.126225 -0.131298 -0.095370 0.986745 0.981354 -0.162919 0.101989 0.149683 0.980644 0.126225 -0.120579 -0.108606 0.986745 0.993024 -0.059168 0.101989 0.046080 0.990931 0.126225 -0.108532 -0.120645 0.986745 0.993801 0.044240 0.101989 -0.057040 0.990360 0.126225 -0.095421 -0.131260 0.986745 0.983691 0.148154 0.101989 -0.160523 0.978928 0.126225 -0.081139 -0.140538 0.986745 0.962746 0.250436 0.101989 -0.262238 0.956712 0.126225 -0.065962 -0.148268 0.986745 0.931546 0.349028 0.101989 -0.360140 0.924320 0.126225 -0.050214 -0.154315 0.986745 0.889835 0.444738 0.101989 -0.455031 0.881484 0.126225 -0.033764 -0.158728 0.986745 0.838323 0.535550 0.101989 -0.544911 0.828938 0.126225 -0.016942 -0.161392 0.986745 0.778081 0.619829 0.101989 -0.628164 0.767774 0.126225 -0.000066 -0.162279 0.986745 0.708834 0.697964 0.101989 -0.705172 0.697710 0.126225 0.016942 -0.161392 0.986745 0.631778 0.768411 0.101989 -0.774414 0.619960 0.126225 0.033764 -0.158728 0.986745 0.547764 0.830393 0.101989 -0.835125 0.535382 0.126225 0.050214 -0.154315 0.986745 0.458599 0.882771 0.101989 -0.886192 0.445793 0.126225 0.065962 -0.148268 0.986745 0.363552 0.925974 0.101989 -0.928034 0.350458 0.126225 0.081139 -0.140538 0.986745 0.264501 0.958977 0.101989 -0.959653 0.251263 0.126225 0.095421 -0.131260 0.986745 0.163518 0.981254 0.101989 -0.980552 0.150282 0.126225 0.108532 -0.120645 0.986745 0.059775 0.992988 0.101989 -0.990902 0.046685 0.126225 0.120579 -0.108606 0.986745 -0.044626 0.993784 0.101989 -0.990338 -0.057426 0.126225 0.131298 -0.095370 0.986745 -0.148536 0.983634 0.101989 -0.978865 -0.160904 0.126225 0.140570 -0.081084 0.986745 -0.249847 0.962899 0.101989 -0.956872 -0.261653 0.126225 0.148228 -0.066053 0.986745 -0.349390 0.931410 0.101989 -0.924179 -0.360499 0.126225 0.154334 -0.050154 0.986745 -0.445084 0.889662 0.101989 -0.881307 -0.455374 0.126225 0.158741 -0.033702 0.986745 -0.535038 0.838650 0.101989 -0.829271 -0.544405 0.126225 0.161382 -0.017041 0.986745 -0.619987 0.777955 0.101989 -0.767646 -0.628320 0.126225 0.162279 -0.000033 0.986745 -0.698108 0.708691 0.101989 -0.697566 -0.705314 0.126225 0.161389 0.016975 0.986745 -0.768539 0.631621 0.101989 -0.619802 -0.774540 0.126225 0.158721 0.033796 0.986745 -0.829957 0.548425 0.101989 -0.536047 -0.834698 0.126225 0.154355 0.050091 0.986745 -0.882865 0.458419 0.101989 -0.445612 -0.886283 0.126225 0.148255 0.065993 0.986745 -0.926048 0.363364 0.101989 -0.350269 -0.928105 0.126225 0.140522 0.081167 0.986745 -0.959031 0.264306 0.101989 -0.251068 -0.959704 0.126225 0.131241 0.095448 0.986745 -0.981288 0.163318 0.101989 -0.150082 -0.980583 0.126225 0.120623 0.108557 0.986745 -0.993000 0.059573 0.101989 -0.046483 -0.990912 0.126225 0.108581 0.120601 0.986745 -0.993775 -0.044829 0.101989 0.057627 -0.990326 0.126225 0.095343 0.131317 0.986745 -0.983752 -0.147753 0.101989 0.160124 -0.978993 0.126225 0.081196 0.140505 0.986745 -0.962848 -0.250043 0.101989 0.261848 -0.956819 0.126225 0.066023 0.148241 0.986745 -0.931339 -0.349580 0.101989 0.360687 -0.924106 0.126225 0.050122 0.154345 0.986745 -0.889571 -0.445265 0.101989 0.455554 -0.881214 0.126225 0.033670 0.158748 0.986745 -0.838541 -0.535208 0.101989 0.544574 -0.829160 0.126225 0.017008 0.161385 0.986745 -0.777829 -0.620146 0.101989 0.628476 -0.767519 0.126225 0.000000 0.162279 0.986745 -0.708549 -0.698252 0.101989 0.705456 -0.697423 0.126225 -0.017008 0.161385 0.986745 -0.632233 -0.768036 0.101989 0.774046 -0.620419 0.126225 -0.033670 0.158748 0.986745 -0.548256 -0.830069 0.101989 0.834807 -0.535877 0.126225 -0.050122 0.154345 0.986745 -0.458239 -0.882958 0.101989 0.886373 -0.445431 0.126225 -0.066023 0.148241 0.986745 -0.363175 -0.926122 0.101989 0.928176 -0.350080 0.126225 -0.081196 0.140505 0.986745 -0.265070 -0.958820 0.101989 0.959504 -0.251832 0.126225 -0.095343 0.131317 0.986745 -0.163118 -0.981321 0.101989 0.980613 -0.149882 0.126225 -0.108581 0.120601 0.986745 -0.059371 -0.993012 0.101989 0.990921 -0.046281 0.126225 -0.120623 0.108557 0.986745 0.044037 -0.993810 0.101989 0.990372 0.056839 0.126225 -0.131241 0.095448 0.986745 0.147953 -0.983722 0.101989 0.978960 0.160324 0.126225 -0.140522 0.081167 0.986745 0.250239 -0.962797 0.101989 0.956766 0.262043 0.126225 -0.148255 0.065993 0.986745 0.349769 -0.931268 0.101989 0.924032 0.360876 0.126225 -0.154355 0.050091 0.986745 0.444557 -0.889926 0.101989 0.881576 0.454852 0.126225 -0.158721 0.033796 0.986745 0.535379 -0.838432 0.101989 0.829049 0.544742 0.126225 -0.161389 0.016975 0.986745 0.016671 0.920675 -0.389975 0.039843 -0.390331 -0.919812 -0.999067 -0.000203 -0.043190 -0.079914 0.917351 -0.389975 0.080534 -0.384005 -0.919812 -0.993543 -0.104912 -0.043190 -0.174715 0.904099 -0.389975 0.119963 -0.373570 -0.919812 -0.977284 -0.207487 -0.043190 -0.268508 0.880808 -0.389975 0.158455 -0.358940 -0.919812 -0.950155 -0.308771 -0.043190 -0.359345 0.847815 -0.389975 0.195202 -0.340356 -0.919812 -0.912561 -0.406653 -0.043190 -0.445417 0.805930 -0.389975 0.229481 -0.318252 -0.919812 -0.865415 -0.499192 -0.043190 -0.527431 0.754809 -0.389975 0.261572 -0.292448 -0.919812 -0.808330 -0.587144 -0.043190 -0.603636 0.695373 -0.389975 0.290782 -0.263423 -0.919812 -0.742341 -0.668629 -0.043190 -0.673191 0.628278 -0.389975 0.316789 -0.231496 -0.919812 -0.668175 -0.742749 -0.043190 -0.734777 0.554997 -0.389975 0.339110 -0.197359 -0.919812 -0.587458 -0.808101 -0.043190 -0.788898 0.474931 -0.389975 0.357927 -0.160731 -0.919812 -0.499528 -0.865220 -0.043190 -0.834329 0.389633 -0.389975 0.372801 -0.122332 -0.919812 -0.406096 -0.912809 -0.043190 -0.870270 0.300914 -0.389975 0.383486 -0.082970 -0.919812 -0.309141 -0.950035 -0.043190 -0.897015 0.208046 -0.389975 0.390070 -0.042321 -0.919812 -0.207867 -0.977203 -0.043190 -0.913880 0.112887 -0.389975 0.392357 -0.001206 -0.919812 -0.104305 -0.993607 -0.043190 -0.920664 0.017234 -0.389975 0.390355 0.039605 -0.919812 -0.000407 -0.999067 -0.043190 -0.917400 -0.079353 -0.389975 0.384055 0.080299 -0.919812 0.104305 -0.993607 -0.043190 -0.904031 -0.175066 -0.389975 0.373524 0.120108 -0.919812 0.207867 -0.977203 -0.043190 -0.880703 -0.268851 -0.389975 0.358878 0.158595 -0.919812 0.309141 -0.950035 -0.043190 -0.848035 -0.358826 -0.389975 0.340475 0.194994 -0.919812 0.406096 -0.912809 -0.043190 -0.805757 -0.445730 -0.389975 0.318163 0.229604 -0.919812 0.499528 -0.865220 -0.043190 -0.754603 -0.527725 -0.389975 0.292347 0.261685 -0.919812 0.587458 -0.808101 -0.043190 -0.695742 -0.603211 -0.389975 0.263601 0.290621 -0.919812 0.668175 -0.742749 -0.043190 -0.628689 -0.672807 -0.389975 0.231690 0.316648 -0.919812 0.742341 -0.668629 -0.043190 -0.554711 -0.734993 -0.389975 0.197227 0.339186 -0.919812 0.808330 -0.587144 -0.043190 -0.474624 -0.789083 -0.389975 0.160592 0.357989 -0.919812 0.865415 -0.499192 -0.043190 -0.390143 -0.834091 -0.389975 0.122560 0.372726 -0.919812 0.912561 -0.406653 -0.043190 -0.300575 -0.870387 -0.389975 0.082821 0.383519 -0.919812 0.950155 -0.308771 -0.043190 -0.207697 -0.897096 -0.389975 0.042169 0.390087 -0.919812 0.977284 -0.207487 -0.043190 -0.113445 -0.913811 -0.389975 0.001445 0.392357 -0.919812 0.993543 -0.104912 -0.043190 -0.017046 -0.920668 -0.389975 -0.039684 0.390347 -0.919812 0.999067 -0.000203 -0.043190 0.079540 -0.917384 -0.389975 -0.080377 0.384038 -0.919812 0.993586 0.104507 -0.043190 0.175250 -0.903995 -0.389975 -0.120184 0.373499 -0.919812 0.977161 0.208066 -0.043190 0.268150 -0.880917 -0.389975 -0.158309 0.359004 -0.919812 0.950281 0.308384 -0.043190 0.358999 -0.847962 -0.389975 -0.195063 0.340435 -0.919812 0.912727 0.406282 -0.043190 0.445895 -0.805666 -0.389975 -0.229669 0.318116 -0.919812 0.865119 0.499704 -0.043190 0.527878 -0.754496 -0.389975 -0.261745 0.292293 -0.919812 0.807981 0.587623 -0.043190 0.603352 -0.695619 -0.389975 -0.290675 0.263542 -0.919812 0.742613 0.668327 -0.043190 0.672935 -0.628552 -0.389975 -0.316695 0.231625 -0.919812 0.668478 0.742477 -0.043190 0.735106 -0.554562 -0.389975 -0.339227 0.197158 -0.919812 0.586979 0.808449 -0.043190 0.788705 -0.475252 -0.389975 -0.357861 0.160877 -0.919812 0.499881 0.865017 -0.043190 0.834171 -0.389973 -0.389975 -0.372751 0.122484 -0.919812 0.406468 0.912644 -0.043190 0.870448 -0.300398 -0.389975 -0.383536 0.082743 -0.919812 0.308577 0.950218 -0.043190 0.897138 -0.207514 -0.389975 -0.390095 0.042090 -0.919812 0.207288 0.977326 -0.043190 0.913834 -0.113259 -0.389975 -0.392357 0.001365 -0.919812 0.104709 0.993565 -0.043190 0.920671 -0.016859 -0.389975 -0.390339 -0.039764 -0.919812 0.000000 0.999067 -0.043190 0.917368 0.079727 -0.389975 -0.384022 -0.080455 -0.919812 -0.104709 0.993565 -0.043190 0.904134 0.174531 -0.389975 -0.373595 -0.119887 -0.919812 -0.207288 0.977326 -0.043190 0.880863 0.268329 -0.389975 -0.358972 -0.158382 -0.919812 -0.308577 0.950218 -0.043190 0.847889 0.359172 -0.389975 -0.340396 -0.195133 -0.919812 -0.406468 0.912644 -0.043190 0.805575 0.446059 -0.389975 -0.318070 -0.229734 -0.919812 -0.499881 0.865017 -0.043190 0.754916 0.527277 -0.389975 -0.292502 -0.261512 -0.919812 -0.586979 0.808449 -0.043190 0.695496 0.603494 -0.389975 -0.263482 -0.290728 -0.919812 -0.668478 0.742477 -0.043190 0.628415 0.673063 -0.389975 -0.231561 -0.316742 -0.919812 -0.742613 0.668327 -0.043190 0.555147 0.734664 -0.389975 -0.197428 -0.339069 -0.919812 -0.807981 0.587623 -0.043190 0.475092 0.788801 -0.389975 -0.160804 -0.357894 -0.919812 -0.865119 0.499704 -0.043190 0.389803 0.834250 -0.389975 -0.122408 -0.372776 -0.919812 -0.912727 0.406282 -0.043190 0.300221 0.870510 -0.389975 -0.082664 -0.383552 -0.919812 -0.950281 0.308384 -0.043190 0.208229 0.896973 -0.389975 -0.042400 -0.390062 -0.919812 -0.977161 0.208066 -0.043190 0.113073 0.913857 -0.389975 -0.001285 -0.392357 -0.919812 -0.993586 0.104507 -0.043190 0.012703 0.919499 0.392888 -0.030231 0.393093 -0.919002 -0.999462 -0.000204 0.032790 -0.083737 0.915766 0.392888 -0.071263 0.387760 -0.919002 -0.993936 -0.104953 0.032790 -0.178353 0.902125 0.392888 -0.111133 0.378267 -0.919002 -0.977671 -0.207569 0.032790 -0.271920 0.878464 0.392888 -0.150166 0.364536 -0.919002 -0.950531 -0.308893 0.032790 -0.362492 0.845127 0.392888 -0.187545 0.346790 -0.919002 -0.912922 -0.406814 0.032790 -0.448268 0.802929 0.392888 -0.222532 0.325447 -0.919002 -0.865757 -0.499389 0.032790 -0.529952 0.751525 0.392888 -0.255416 0.300331 -0.919002 -0.808649 -0.587376 0.032790 -0.605798 0.691844 0.392888 -0.285486 0.271908 -0.919002 -0.742635 -0.668894 0.032790 -0.674972 0.624541 0.392888 -0.312412 0.240489 -0.919002 -0.668440 -0.743043 0.032790 -0.736160 0.551096 0.392888 -0.335690 0.206758 -0.919002 -0.587691 -0.808421 0.032790 -0.789865 0.470906 0.392888 -0.355511 0.170436 -0.919002 -0.499726 -0.865563 0.032790 -0.834869 0.385529 0.392888 -0.371416 0.132238 -0.919002 -0.406256 -0.913171 0.032790 -0.870381 0.296776 0.392888 -0.383137 0.092965 -0.919002 -0.309263 -0.950411 0.032790 -0.896692 0.203920 0.392888 -0.390770 0.052298 -0.919002 -0.207950 -0.977590 0.032790 -0.913125 0.108817 0.392888 -0.394099 0.011054 -0.919002 -0.104346 -0.994000 0.032790 -0.919491 0.013264 0.392888 -0.393112 -0.029991 -0.919002 -0.000407 -0.999462 0.032790 -0.915817 -0.083178 0.392888 -0.387803 -0.071026 -0.919002 0.104346 -0.994000 0.032790 -0.902055 -0.178704 0.392888 -0.378224 -0.111280 -0.919002 0.207950 -0.977590 0.032790 -0.878358 -0.272262 0.392888 -0.364478 -0.150307 -0.919002 0.309263 -0.950411 0.032790 -0.845348 -0.361975 0.392888 -0.346905 -0.187333 -0.919002 0.406256 -0.913171 0.032790 -0.802755 -0.448580 0.392888 -0.325360 -0.222659 -0.919002 0.499726 -0.865563 0.032790 -0.751319 -0.530244 0.392888 -0.300232 -0.255533 -0.919002 0.587691 -0.808421 0.032790 -0.692213 -0.605375 0.392888 -0.272082 -0.285320 -0.919002 0.668440 -0.743043 0.032790 -0.624953 -0.674590 0.392888 -0.240680 -0.312265 -0.919002 0.742635 -0.668894 0.032790 -0.550810 -0.736375 0.392888 -0.206627 -0.335770 -0.919002 0.808649 -0.587376 0.032790 -0.470599 -0.790048 0.392888 -0.170298 -0.355577 -0.919002 0.865757 -0.499389 0.032790 -0.386039 -0.834633 0.392888 -0.132464 -0.371335 -0.919002 0.912922 -0.406814 0.032790 -0.296438 -0.870496 0.392888 -0.092816 -0.383173 -0.919002 0.950531 -0.308893 0.032790 -0.203571 -0.896771 0.392888 -0.052146 -0.390790 -0.919002 0.977671 -0.207569 0.032790 -0.109375 -0.913059 0.392888 -0.011295 -0.394092 -0.919002 0.993936 -0.104953 0.032790 -0.013077 -0.919493 0.392888 0.030071 -0.393106 -0.919002 0.999462 -0.000204 0.032790 0.083364 -0.915800 0.392888 0.071105 -0.387789 -0.919002 0.993979 0.104548 0.032790 0.178888 -0.902019 0.392888 0.111357 -0.378201 -0.919002 0.977547 0.208149 0.032790 0.271562 -0.878574 0.392888 0.150017 -0.364597 -0.919002 0.950657 0.308506 0.032790 0.362147 -0.845274 0.392888 0.187403 -0.346866 -0.919002 0.913088 0.406442 0.032790 0.448744 -0.802663 0.392888 0.222725 -0.325315 -0.919002 0.865461 0.499902 0.032790 0.530397 -0.751211 0.392888 0.255594 -0.300180 -0.919002 0.808301 0.587855 0.032790 0.605516 -0.692090 0.392888 0.285375 -0.272024 -0.919002 0.742907 0.668591 0.032790 0.674718 -0.624816 0.392888 0.312314 -0.240617 -0.919002 0.668742 0.742771 0.032790 0.736487 -0.550660 0.392888 0.335812 -0.206559 -0.919002 0.587212 0.808769 0.032790 0.789673 -0.471228 0.392888 0.355441 -0.170581 -0.919002 0.500078 0.865359 0.032790 0.834712 -0.385869 0.392888 0.371362 -0.132389 -0.919002 0.406628 0.913005 0.032790 0.870557 -0.296260 0.392888 0.383192 -0.092738 -0.919002 0.308699 0.950594 0.032790 0.896812 -0.203388 0.392888 0.390801 -0.052066 -0.919002 0.207370 0.977713 0.032790 0.913081 -0.109189 0.392888 0.394095 -0.011215 -0.919002 0.104751 0.993958 0.032790 0.919496 -0.012890 0.392888 0.393099 0.030151 -0.919002 0.000000 0.999462 0.032790 0.915783 0.083551 0.392888 0.387774 0.071184 -0.919002 -0.104751 0.993958 0.032790 0.902161 0.178169 0.392888 0.378289 0.111056 -0.919002 -0.207370 0.977713 0.032790 0.878519 0.271741 0.392888 0.364567 0.150091 -0.919002 -0.308699 0.950594 0.032790 0.845200 0.362319 0.392888 0.346828 0.187474 -0.919002 -0.406628 0.913005 0.032790 0.802572 0.448907 0.392888 0.325269 0.222792 -0.919002 -0.500078 0.865359 0.032790 0.751633 0.529799 0.392888 0.300383 0.255355 -0.919002 -0.587212 0.808769 0.032790 0.691967 0.605657 0.392888 0.271966 0.285431 -0.919002 -0.668742 0.742771 0.032790 0.624679 0.674845 0.392888 0.240553 0.312363 -0.919002 -0.742907 0.668591 0.032790 0.551246 0.736048 0.392888 0.206826 0.335647 -0.919002 -0.808301 0.587855 0.032790 0.471067 0.789769 0.392888 0.170509 0.355476 -0.919002 -0.865461 0.499902 0.032790 0.385699 0.834790 0.392888 0.132313 0.371389 -0.919002 -0.913088 0.406442 0.032790 0.296083 0.870617 0.392888 0.092660 0.383211 -0.919002 -0.950657 0.308506 0.032790 0.204102 0.896650 0.392888 0.052378 0.390759 -0.919002 -0.977547 0.208149 0.032790 0.109003 0.913103 0.392888 0.011135 0.394097 -0.919002 -0.993979 0.104548 0.032790 -0.701921 -0.430785 0.567214 -0.335149 0.902455 0.270648 -0.628476 -0.000128 -0.777829 -0.652905 -0.501979 0.567214 -0.427887 0.862358 0.270648 -0.625002 -0.065996 -0.777829 -0.597266 -0.567046 0.567214 -0.515099 0.813279 0.270648 -0.614773 -0.130523 -0.777829 -0.534546 -0.626521 0.567214 -0.597500 0.754814 0.270648 -0.597708 -0.194236 -0.777829 -0.465938 -0.679095 0.567214 -0.673319 0.688034 0.270648 -0.574059 -0.255811 -0.777829 -0.392922 -0.723796 0.567214 -0.741107 0.614418 0.270648 -0.544401 -0.314023 -0.777829 -0.314899 -0.760990 0.567214 -0.801421 0.533361 0.270648 -0.508491 -0.369351 -0.777829 -0.233408 -0.789803 0.567214 -0.852907 0.446429 0.270648 -0.466979 -0.420610 -0.777829 -0.149345 -0.809916 0.567214 -0.894999 0.354579 0.270648 -0.420325 -0.467236 -0.777829 -0.064459 -0.821044 0.567214 -0.926973 0.259751 0.270648 -0.369548 -0.508347 -0.777829 0.021948 -0.823278 0.567214 -0.949092 0.161167 0.270648 -0.314235 -0.544278 -0.777829 0.108112 -0.816443 0.567214 -0.960756 0.060808 0.270648 -0.255460 -0.574215 -0.777829 0.192285 -0.800809 0.567214 -0.961877 -0.039259 0.270648 -0.194469 -0.597632 -0.777829 0.275157 -0.776245 0.567214 -0.952465 -0.139855 0.270648 -0.130762 -0.614723 -0.777829 0.354997 -0.743132 0.567214 -0.932562 -0.238910 0.270648 -0.065614 -0.625042 -0.777829 0.430356 -0.702184 0.567214 -0.902659 -0.334598 0.270648 -0.000256 -0.628476 -0.777829 0.501580 -0.653212 0.567214 -0.862620 -0.427360 0.270648 0.065614 -0.625042 -0.777829 0.567278 -0.597045 0.567214 -0.813078 -0.515415 0.270648 0.130762 -0.614723 -0.777829 0.626729 -0.534302 0.567214 -0.754581 -0.597793 0.270648 0.194469 -0.597632 -0.777829 0.678810 -0.466353 0.567214 -0.688446 -0.672898 0.270648 0.255460 -0.574215 -0.777829 0.723948 -0.392641 0.567214 -0.614130 -0.741346 0.270648 0.314235 -0.544278 -0.777829 0.761113 -0.314603 0.567214 -0.533049 -0.801629 0.270648 0.369548 -0.508347 -0.777829 0.789660 -0.233890 0.567214 -0.446950 -0.852635 0.270648 0.420325 -0.467236 -0.777829 0.809825 -0.149840 0.567214 -0.355126 -0.894782 0.270648 0.466979 -0.420610 -0.777829 0.821069 -0.064139 0.567214 -0.259390 -0.927074 0.270648 0.508491 -0.369351 -0.777829 0.823269 0.022268 0.567214 -0.160798 -0.949154 0.270648 0.544401 -0.314023 -0.777829 0.816509 0.107613 0.567214 -0.061395 -0.960719 0.270648 0.574059 -0.255811 -0.777829 0.800734 0.192597 0.567214 0.039633 -0.961862 0.270648 0.597708 -0.194236 -0.777829 0.776138 0.275459 0.567214 0.140225 -0.952411 0.270648 0.614773 -0.130523 -0.777829 0.743349 0.354543 0.567214 0.238340 -0.932708 0.270648 0.625002 -0.065996 -0.777829 0.702096 0.430499 0.567214 0.334782 -0.902591 0.270648 0.628476 -0.000128 -0.777829 0.653110 0.501713 0.567214 0.427536 -0.862533 0.270648 0.625028 0.065742 -0.777829 0.596930 0.567400 0.567214 0.515581 -0.812973 0.270648 0.614696 0.130887 -0.777829 0.534801 0.626303 0.567214 0.597192 -0.755057 0.270648 0.597787 0.193993 -0.777829 0.466215 0.678905 0.567214 0.673038 -0.688309 0.270648 0.574163 0.255577 -0.777829 0.392493 0.724028 0.567214 0.741471 -0.613979 0.270648 0.544214 0.314346 -0.777829 0.314448 0.761177 0.567214 0.801737 -0.532886 0.270648 0.508271 0.369652 -0.777829 0.233729 0.789708 0.567214 0.852726 -0.446776 0.270648 0.467151 0.420420 -0.777829 0.149675 0.809855 0.567214 0.894855 -0.354944 0.270648 0.420515 0.467065 -0.777829 0.063972 0.821082 0.567214 0.927127 -0.259202 0.270648 0.369247 0.508566 -0.777829 -0.021612 0.823287 0.567214 0.949026 -0.161554 0.270648 0.314456 0.544150 -0.777829 -0.107780 0.816487 0.567214 0.960731 -0.061199 0.270648 0.255694 0.574111 -0.777829 -0.192760 0.800694 0.567214 0.961854 0.039829 0.270648 0.194115 0.597747 -0.777829 -0.275617 0.776082 0.567214 0.952382 0.140419 0.270648 0.130397 0.614800 -0.777829 -0.354695 0.743276 0.567214 0.932659 0.238530 0.270648 0.065869 0.625015 -0.777829 -0.430642 0.702008 0.567214 0.902523 0.334966 0.270648 0.000000 0.628476 -0.777829 -0.501845 0.653008 0.567214 0.862446 0.427712 0.270648 -0.065869 0.625015 -0.777829 -0.566924 0.597381 0.567214 0.813384 0.514933 0.270648 -0.130397 0.614800 -0.777829 -0.626412 0.534674 0.567214 0.754935 0.597346 0.270648 -0.194115 0.597747 -0.777829 -0.679000 0.466077 0.567214 0.688172 0.673179 0.270648 -0.255694 0.574111 -0.777829 -0.724108 0.392346 0.567214 0.613828 0.741596 0.270648 -0.314456 0.544150 -0.777829 -0.760926 0.315054 0.567214 0.533524 0.801313 0.270648 -0.369247 0.508566 -0.777829 -0.789755 0.233569 0.567214 0.446602 0.852817 0.270648 -0.420515 0.467065 -0.777829 -0.809886 0.149510 0.567214 0.354761 0.894927 0.270648 -0.467151 0.420420 -0.777829 -0.821031 0.064626 0.567214 0.259940 0.926920 0.270648 -0.508271 0.369652 -0.777829 -0.823282 -0.021780 0.567214 0.161360 0.949059 0.270648 -0.544214 0.314346 -0.777829 -0.816465 -0.107946 0.567214 0.061004 0.960744 0.270648 -0.574163 0.255577 -0.777829 -0.800655 -0.192923 0.567214 -0.040025 0.961846 0.270648 -0.597787 0.193993 -0.777829 -0.776301 -0.274998 0.567214 -0.139661 0.952494 0.270648 -0.614696 0.130887 -0.777829 -0.743204 -0.354846 0.567214 -0.238720 0.932611 0.270648 -0.625028 0.065742 -0.777829 -0.675010 0.529180 -0.514130 -0.420888 -0.848509 -0.320757 -0.605982 -0.000123 0.795478 -0.726755 0.455520 -0.514130 -0.329640 -0.887948 -0.320757 -0.602632 -0.063634 0.795478 -0.770117 0.377613 -0.514130 -0.235679 -0.917371 -0.320757 -0.592770 -0.125851 0.795478 -0.805452 0.294819 -0.514130 -0.138234 -0.937020 -0.320757 -0.576315 -0.187284 0.795478 -0.831915 0.208778 -0.514130 -0.039266 -0.946347 -0.320757 -0.553512 -0.246655 0.795478 -0.849094 0.121287 -0.514130 0.059189 -0.945310 -0.320757 -0.524916 -0.302784 0.795478 -0.857129 0.031628 -0.514130 0.157938 -0.933901 -0.320757 -0.490291 -0.356131 0.795478 -0.855723 -0.058380 -0.514130 0.254948 -0.912204 -0.320757 -0.450266 -0.405556 0.795478 -0.844892 -0.147744 -0.514130 0.349149 -0.880460 -0.320757 -0.405281 -0.450513 0.795478 -0.824989 -0.234656 -0.514130 0.438666 -0.839456 -0.320757 -0.356322 -0.490152 0.795478 -0.795852 -0.319829 -0.514130 0.524231 -0.788858 -0.320757 -0.302988 -0.524798 0.795478 -0.757949 -0.401478 -0.514130 0.604022 -0.729570 -0.320757 -0.246317 -0.553663 0.795478 -0.712175 -0.477994 -0.514130 0.676497 -0.662923 -0.320757 -0.187509 -0.576242 0.795478 -0.658155 -0.550002 -0.514130 0.742250 -0.588371 -0.320757 -0.126082 -0.592721 0.795478 -0.596886 -0.615952 -0.514130 0.799828 -0.507337 -0.320757 -0.063266 -0.602671 0.795478 -0.529593 -0.674687 -0.514130 0.848252 -0.421406 -0.320757 -0.000247 -0.605982 0.795478 -0.455964 -0.726476 -0.514130 0.887747 -0.330183 -0.320757 0.063266 -0.602671 0.795478 -0.377313 -0.770263 -0.514130 0.917463 -0.235322 -0.320757 0.126082 -0.592721 0.795478 -0.294506 -0.805566 -0.514130 0.937074 -0.137869 -0.320757 0.187509 -0.576242 0.795478 -0.209287 -0.831787 -0.514130 0.946323 -0.039844 -0.320757 0.246317 -0.553663 0.795478 -0.120957 -0.849141 -0.514130 0.945287 0.059557 -0.320757 0.302988 -0.524798 0.795478 -0.031294 -0.857141 -0.514130 0.933839 0.158302 -0.320757 0.356322 -0.490152 0.795478 0.057857 -0.855759 -0.514130 0.912360 0.254391 -0.320757 0.405281 -0.450513 0.795478 0.147228 -0.844982 -0.514130 0.880673 0.348611 -0.320757 0.450266 -0.405556 0.795478 0.234977 -0.824898 -0.514130 0.839286 0.438992 -0.320757 0.490291 -0.356131 0.795478 0.320138 -0.795728 -0.514130 0.788654 0.524538 -0.320757 0.524916 -0.302784 0.795478 0.401015 -0.758194 -0.514130 0.729939 0.603576 -0.320757 0.553512 -0.246655 0.795478 0.478271 -0.711989 -0.514130 0.662660 0.676754 -0.320757 0.576315 -0.187284 0.795478 0.550258 -0.657941 -0.514130 0.588082 0.742479 -0.320757 0.592770 -0.125851 0.795478 0.615588 -0.597263 -0.514130 0.507826 0.799517 -0.320757 0.602632 -0.063634 0.795478 0.674795 -0.529455 -0.514130 0.421234 0.848338 -0.320757 0.605982 -0.000123 0.795478 0.726569 -0.455816 -0.514130 0.330002 0.887814 -0.320757 0.602658 0.063389 0.795478 0.770340 -0.377156 -0.514130 0.235135 0.917511 -0.320757 0.592695 0.126202 0.795478 0.805332 -0.295147 -0.514130 0.138615 0.936963 -0.320757 0.576391 0.187050 0.795478 0.831830 -0.209117 -0.514130 0.039651 0.946331 -0.320757 0.553613 0.246429 0.795478 0.849165 -0.120784 -0.514130 -0.059749 0.945275 -0.320757 0.524736 0.303095 0.795478 0.857148 -0.031120 -0.514130 -0.158492 0.933807 -0.320757 0.490080 0.356422 0.795478 0.855747 0.058031 -0.514130 -0.254576 0.912308 -0.320757 0.450431 0.405372 0.795478 0.844952 0.147400 -0.514130 -0.348791 0.880602 -0.320757 0.405464 0.450348 0.795478 0.824850 0.235145 -0.514130 -0.439163 0.839196 -0.320757 0.356031 0.490363 0.795478 0.795982 0.319504 -0.514130 -0.523909 0.789071 -0.320757 0.303202 0.524674 0.795478 0.758112 0.401169 -0.514130 -0.603724 0.729816 -0.320757 0.246542 0.553562 0.795478 0.711891 0.478416 -0.514130 -0.676889 0.662522 -0.320757 0.187167 0.576353 0.795478 0.657829 0.550392 -0.514130 -0.742599 0.587931 -0.320757 0.125730 0.592795 0.795478 0.597137 0.615709 -0.514130 -0.799621 0.507663 -0.320757 0.063511 0.602645 0.795478 0.529318 0.674902 -0.514130 -0.848424 0.421061 -0.320757 0.000000 0.605982 0.795478 0.455668 0.726662 -0.514130 -0.887881 0.329821 -0.320757 -0.063511 0.602645 0.795478 0.377769 0.770040 -0.514130 -0.917323 0.235866 -0.320757 -0.125730 0.592795 0.795478 0.294983 0.805392 -0.514130 -0.936992 0.138425 -0.320757 -0.187167 0.576353 0.795478 0.208948 0.831872 -0.514130 -0.946339 0.039459 -0.320757 -0.246542 0.553562 0.795478 0.120611 0.849190 -0.514130 -0.945263 -0.059942 -0.320757 -0.303202 0.524674 0.795478 0.031802 0.857123 -0.514130 -0.933933 -0.157748 -0.320757 -0.356031 0.490363 0.795478 -0.058205 0.855735 -0.514130 -0.912256 -0.254762 -0.320757 -0.405464 0.450348 0.795478 -0.147572 0.844922 -0.514130 -0.880531 -0.348970 -0.320757 -0.450431 0.405372 0.795478 -0.234488 0.825037 -0.514130 -0.839546 -0.438495 -0.320757 -0.490080 0.356422 0.795478 -0.319667 0.795917 -0.514130 -0.788965 -0.524070 -0.320757 -0.524736 0.303095 0.795478 -0.401324 0.758030 -0.514130 -0.729693 -0.603873 -0.320757 -0.553613 0.246429 0.795478 -0.478561 0.711794 -0.514130 -0.662384 -0.677024 -0.320757 -0.576391 0.187050 0.795478 -0.549868 0.658267 -0.514130 -0.588522 -0.742130 -0.320757 -0.592695 0.126202 0.795478 -0.615831 0.597012 -0.514130 -0.507500 -0.799724 -0.320757 -0.602658 0.063389 0.795478 -0.189910 0.518205 -0.833905 -0.114841 -0.855256 -0.505320 -0.975062 -0.000199 0.221933 -0.243176 0.495447 -0.833905 -0.024572 -0.862582 -0.505320 -0.969671 -0.102391 0.221933 -0.293295 0.467526 -0.833905 0.065108 -0.860472 -0.505320 -0.953802 -0.202502 0.221933 -0.340680 0.434211 -0.833905 0.154933 -0.848910 -0.505320 -0.927326 -0.301352 0.221933 -0.384312 0.396114 -0.833905 0.243052 -0.827996 -0.505320 -0.890635 -0.396883 0.221933 -0.423357 0.354077 -0.833905 0.327695 -0.798291 -0.505320 -0.844621 -0.487197 0.221933 -0.458136 0.307757 -0.833905 0.409557 -0.759549 -0.505320 -0.788908 -0.573036 0.221933 -0.487868 0.258046 -0.833905 0.486907 -0.712442 -0.505320 -0.724504 -0.652564 0.221933 -0.512226 0.205493 -0.833905 0.558895 -0.657487 -0.505320 -0.652121 -0.724903 0.221933 -0.530791 0.151207 -0.833905 0.624130 -0.595914 -0.505320 -0.573343 -0.788685 0.221933 -0.543715 0.094743 -0.833905 0.683149 -0.527218 -0.505320 -0.487526 -0.844431 0.221933 -0.550650 0.037236 -0.833905 0.734643 -0.452716 -0.505320 -0.396338 -0.890877 0.221933 -0.551541 -0.020129 -0.833905 0.777671 -0.374005 -0.505320 -0.301713 -0.927208 0.221933 -0.546393 -0.077824 -0.833905 0.812586 -0.290439 -0.505320 -0.202873 -0.953723 0.221933 -0.535228 -0.134661 -0.833905 0.838551 -0.203675 -0.505320 -0.101799 -0.969733 0.221933 -0.518321 -0.189593 -0.833905 0.855186 -0.115364 -0.505320 -0.000397 -0.975062 0.221933 -0.495596 -0.242873 -0.833905 0.862567 -0.025099 -0.505320 0.101799 -0.969733 0.221933 -0.467412 -0.293477 -0.833905 0.860447 0.065443 -0.505320 0.202873 -0.953723 0.221933 -0.434079 -0.340849 -0.833905 0.848849 0.155263 -0.505320 0.301713 -0.927208 0.221933 -0.396349 -0.384070 -0.833905 0.828145 0.242546 -0.505320 0.396338 -0.890877 0.221933 -0.353913 -0.423495 -0.833905 0.798163 0.328005 -0.505320 0.487526 -0.844431 0.221933 -0.307578 -0.458255 -0.833905 0.759390 0.409852 -0.505320 0.573343 -0.788685 0.221933 -0.258344 -0.487710 -0.833905 0.712739 0.486472 -0.505320 0.652121 -0.724903 0.221933 -0.205805 -0.512100 -0.833905 0.657828 0.558493 -0.505320 0.724504 -0.652564 0.221933 -0.151000 -0.530850 -0.833905 0.595671 0.624362 -0.505320 0.788908 -0.573036 0.221933 -0.094532 -0.543752 -0.833905 0.526953 0.683354 -0.505320 0.844621 -0.487197 0.221933 -0.037573 -0.550628 -0.833905 0.453165 0.734366 -0.505320 0.890635 -0.396883 0.221933 0.020344 -0.551533 -0.833905 0.373702 0.777817 -0.505320 0.927326 -0.301352 0.221933 0.078037 -0.546363 -0.833905 0.290123 0.812699 -0.505320 0.953802 -0.202502 0.221933 0.134334 -0.535310 -0.833905 0.204187 0.838427 -0.505320 0.969671 -0.102391 0.221933 0.189699 -0.518283 -0.833905 0.115190 0.855209 -0.505320 0.975062 -0.000199 0.221933 0.242974 -0.495546 -0.833905 0.024923 0.862572 -0.505320 0.969713 0.101996 0.221933 0.293572 -0.467352 -0.833905 -0.065618 0.860434 -0.505320 0.953682 0.203067 0.221933 0.340503 -0.434350 -0.833905 -0.154587 0.848973 -0.505320 0.927448 0.300974 0.221933 0.384151 -0.396271 -0.833905 -0.242714 0.828095 -0.505320 0.890796 0.396520 0.221933 0.423567 -0.353827 -0.833905 -0.328168 0.798096 -0.505320 0.844332 0.487698 0.221933 0.458318 -0.307485 -0.833905 -0.410007 0.759306 -0.505320 0.788568 0.573504 0.221933 0.487762 -0.258244 -0.833905 -0.486617 0.712640 -0.505320 0.724770 0.652268 0.221933 0.512142 -0.205701 -0.833905 -0.558627 0.657714 -0.505320 0.652416 0.724637 0.221933 0.530880 -0.150892 -0.833905 -0.624483 0.595544 -0.505320 0.572876 0.789024 0.221933 0.543676 -0.094965 -0.833905 -0.682934 0.527497 -0.505320 0.487870 0.844233 0.221933 0.550635 -0.037461 -0.833905 -0.734458 0.453015 -0.505320 0.396701 0.890715 0.221933 0.551529 0.020456 -0.833905 -0.777893 0.373544 -0.505320 0.301163 0.927387 0.221933 0.546347 0.078148 -0.833905 -0.812758 0.289958 -0.505320 0.202308 0.953844 0.221933 0.535283 0.134443 -0.833905 -0.838468 0.204016 -0.505320 0.102193 0.969692 0.221933 0.518244 0.189804 -0.833905 -0.855233 0.115015 -0.505320 0.000000 0.975062 0.221933 0.495497 0.243075 -0.833905 -0.862577 0.024747 -0.505320 -0.102193 0.969692 0.221933 0.467585 0.293200 -0.833905 -0.860486 -0.064933 -0.505320 -0.202308 0.953844 0.221933 0.434281 0.340592 -0.833905 -0.848941 -0.154760 -0.505320 -0.301163 0.927387 0.221933 0.396193 0.384232 -0.833905 -0.828046 -0.242883 -0.505320 -0.396701 0.890715 0.221933 0.353740 0.423639 -0.833905 -0.798029 -0.328330 -0.505320 -0.487870 0.844233 0.221933 0.307850 0.458073 -0.833905 -0.759633 -0.409402 -0.505320 -0.572876 0.789024 0.221933 0.258145 0.487815 -0.833905 -0.712541 -0.486762 -0.505320 -0.652416 0.724637 0.221933 0.205597 0.512184 -0.833905 -0.657600 -0.558761 -0.505320 -0.724770 0.652268 0.221933 0.151315 0.530760 -0.833905 -0.596041 -0.624009 -0.505320 -0.788568 0.573504 0.221933 0.094854 0.543696 -0.833905 -0.527358 -0.683042 -0.505320 -0.844332 0.487698 0.221933 0.037348 0.550643 -0.833905 -0.452866 -0.734551 -0.505320 -0.890796 0.396520 0.221933 -0.020569 0.551525 -0.833905 -0.373385 -0.777969 -0.505320 -0.927448 0.300974 0.221933 -0.077713 0.546409 -0.833905 -0.290605 -0.812527 -0.505320 -0.953682 0.203067 0.221933 -0.134552 0.535255 -0.833905 -0.203846 -0.838510 -0.505320 -0.969713 0.101996 0.221933 0.392489 -0.430562 0.812754 0.187052 0.902561 0.387808 -0.900536 -0.000183 0.434782 0.435453 -0.387055 0.812754 0.091426 0.917195 0.387808 -0.895557 -0.094565 0.434782 0.473281 -0.339758 0.812754 -0.004284 0.921730 0.387808 -0.880901 -0.187024 0.434782 0.506284 -0.288284 0.812754 -0.100864 0.916205 0.387808 -0.856448 -0.278319 0.434782 0.533710 -0.233634 0.812754 -0.196334 0.900587 0.387808 -0.822561 -0.366548 0.434782 0.555080 -0.176966 0.812754 -0.288765 0.875340 0.387808 -0.780065 -0.449960 0.434782 0.570570 -0.117815 0.812754 -0.378917 0.840254 0.387808 -0.728610 -0.529238 0.434782 0.579776 -0.057366 0.812754 -0.464894 0.795913 0.387808 -0.669129 -0.602687 0.434782 0.582595 0.003715 0.812754 -0.545751 0.742806 0.387808 -0.602278 -0.669497 0.434782 0.579062 0.064175 0.812754 -0.619915 0.682136 0.387808 -0.529521 -0.728404 0.434782 0.569146 0.124512 0.812754 -0.687994 0.613408 0.387808 -0.450263 -0.779890 0.434782 0.552962 0.183477 0.812754 -0.748494 0.537923 0.387808 -0.366045 -0.822785 0.434782 0.530927 0.239890 0.812754 -0.800293 0.457313 0.387808 -0.278652 -0.856340 0.434782 0.502861 0.294213 0.812754 -0.843815 0.370918 0.387808 -0.187367 -0.880828 0.434782 0.469256 0.345297 0.812754 -0.878043 0.280437 0.387808 -0.094018 -0.895614 0.434782 0.430802 0.392225 0.812754 -0.902447 0.187603 0.387808 -0.000367 -0.900536 0.434782 0.387321 0.435216 0.812754 -0.917139 0.091987 0.387808 0.094018 -0.895614 0.434782 0.339574 0.473413 0.812754 -0.921728 -0.004643 0.387808 0.187367 -0.880828 0.434782 0.288087 0.506396 0.812754 -0.916165 -0.101221 0.387808 0.278652 -0.856340 0.434782 0.233960 0.533567 0.812754 -0.900707 -0.195783 0.387808 0.366045 -0.822785 0.434782 0.176750 0.555149 0.812754 -0.875227 -0.289106 0.387808 0.450263 -0.779890 0.434782 0.117593 0.570616 0.812754 -0.840107 -0.379243 0.387808 0.529521 -0.728404 0.434782 0.057720 0.579741 0.812754 -0.796197 -0.464408 0.387808 0.602278 -0.669497 0.434782 -0.003359 0.582597 0.812754 -0.743139 -0.545298 0.387808 0.669129 -0.602687 0.434782 -0.064401 0.579036 0.812754 -0.681895 -0.620181 0.387808 0.728610 -0.529238 0.434782 -0.124733 0.569098 0.812754 -0.613140 -0.688232 0.387808 0.780065 -0.449960 0.434782 -0.183139 0.553074 0.812754 -0.538380 -0.748166 0.387808 0.822561 -0.366548 0.434782 -0.240096 0.530834 0.812754 -0.457002 -0.800471 0.387808 0.856448 -0.278319 0.434782 -0.294409 0.502746 0.812754 -0.370590 -0.843960 0.387808 0.880901 -0.187024 0.434782 -0.345010 0.469467 0.812754 -0.280974 -0.877872 0.387808 0.895557 -0.094565 0.434782 -0.392313 0.430722 0.812754 -0.187419 -0.902485 0.387808 0.900536 -0.000183 0.434782 -0.435295 0.387232 0.812754 -0.091800 -0.917157 0.387808 0.895595 0.094200 0.434782 -0.473483 0.339478 0.812754 0.004830 -0.921727 0.387808 0.880790 0.187546 0.434782 -0.506166 0.288490 0.812754 0.100491 -0.916246 0.387808 0.856561 0.277970 0.434782 -0.533614 0.233851 0.812754 0.195967 -0.900667 0.387808 0.822711 0.366213 0.434782 -0.555185 0.176637 0.812754 0.289284 -0.875168 0.387808 0.779798 0.450422 0.434782 -0.570640 0.117476 0.812754 0.379415 -0.840029 0.387808 0.728296 0.529670 0.434782 -0.579752 0.057602 0.812754 0.464570 -0.796103 0.387808 0.669374 0.602414 0.434782 -0.582596 -0.003477 0.812754 0.545449 -0.743028 0.387808 0.602550 0.669252 0.434782 -0.579023 -0.064518 0.812754 0.620319 -0.681769 0.387808 0.529090 0.728717 0.434782 -0.569197 -0.124280 0.812754 0.687744 -0.613688 0.387808 0.450581 0.779706 0.434782 -0.553037 -0.183251 0.812754 0.748275 -0.538228 0.387808 0.366380 0.822636 0.434782 -0.530785 -0.240204 0.812754 0.800564 -0.456839 0.387808 0.278144 0.856505 0.434782 -0.502687 -0.294511 0.812754 0.844035 -0.370418 0.387808 0.186845 0.880939 0.434782 -0.469396 -0.345105 0.812754 0.877929 -0.280795 0.387808 0.094383 0.895576 0.434782 -0.430642 -0.392401 0.812754 0.902523 -0.187235 0.387808 0.000000 0.900536 0.434782 -0.387144 -0.435374 0.812754 0.917176 -0.091613 0.387808 -0.094383 0.895576 0.434782 -0.339854 -0.473212 0.812754 0.921731 0.004096 0.387808 -0.186845 0.880939 0.434782 -0.288387 -0.506225 0.812754 0.916225 0.100678 0.387808 -0.278144 0.856505 0.434782 -0.233742 -0.533662 0.812754 0.900627 0.196150 0.387808 -0.366380 0.822636 0.434782 -0.176524 -0.555221 0.812754 0.875109 0.289462 0.387808 -0.450581 0.779706 0.434782 -0.117931 -0.570546 0.812754 0.840331 0.378745 0.387808 -0.529090 0.728717 0.434782 -0.057484 -0.579764 0.812754 0.796008 0.464732 0.387808 -0.602550 0.669252 0.434782 0.003596 -0.582596 0.812754 0.742917 0.545600 0.387808 -0.669374 0.602414 0.434782 0.064057 -0.579075 0.812754 0.682262 0.619776 0.387808 -0.728296 0.529670 0.434782 0.124396 -0.569172 0.812754 0.613548 0.687869 0.387808 -0.779798 0.450422 0.434782 0.183364 -0.552999 0.812754 0.538075 0.748385 0.387808 -0.822711 0.366213 0.434782 0.240312 -0.530736 0.812754 0.456676 0.800657 0.387808 -0.856561 0.277970 0.434782 0.294111 -0.502921 0.812754 0.371090 0.843740 0.387808 -0.880790 0.187546 0.434782 0.345201 -0.469326 0.812754 0.280616 0.877986 0.387808 -0.895595 0.094200 0.434782 0.473403 0.640325 -0.604874 0.394814 -0.768104 -0.504121 -0.787408 -0.000160 -0.616432 0.403685 0.686415 -0.604874 0.473143 -0.722494 -0.504121 -0.783055 -0.082685 -0.616432 0.330245 0.724614 -0.604874 0.545590 -0.669472 -0.504121 -0.770240 -0.163530 -0.616432 0.252482 0.755235 -0.604874 0.612751 -0.608603 -0.504121 -0.748859 -0.243356 -0.616432 0.171937 0.777538 -0.604874 0.673162 -0.541031 -0.504121 -0.719229 -0.320501 -0.616432 0.090290 0.791186 -0.604874 0.725691 -0.468225 -0.504121 -0.682071 -0.393435 -0.616432 0.006871 0.796291 -0.604874 0.770767 -0.389589 -0.504121 -0.637080 -0.462754 -0.616432 -0.076624 0.792626 -0.604874 0.807354 -0.306661 -0.504121 -0.585071 -0.526976 -0.616432 -0.159275 0.780230 -0.604874 0.835048 -0.220356 -0.504121 -0.526618 -0.585393 -0.616432 -0.239412 0.759479 -0.604874 0.853412 -0.132476 -0.504121 -0.463001 -0.636900 -0.616432 -0.317692 0.730205 -0.604874 0.862596 -0.042303 -0.504121 -0.393700 -0.681918 -0.616432 -0.392473 0.692887 -0.604874 0.862279 0.048336 -0.504121 -0.320062 -0.719425 -0.616432 -0.462283 0.648399 -0.604874 0.852602 0.137590 -0.504121 -0.243647 -0.748764 -0.616432 -0.527694 0.596378 -0.604874 0.833486 0.226191 -0.504121 -0.163829 -0.770176 -0.616432 -0.587292 0.537787 -0.604874 0.805189 0.312301 -0.504121 -0.082207 -0.783105 -0.616432 -0.640036 0.473794 -0.604874 0.768345 0.394345 -0.504121 -0.000321 -0.787408 -0.616432 -0.686168 0.404104 -0.604874 0.722783 0.472701 -0.504121 0.082207 -0.783105 -0.616432 -0.724742 0.329963 -0.604874 0.669260 0.545851 -0.504121 0.163829 -0.770176 -0.616432 -0.755333 0.252188 -0.604874 0.608365 0.612988 -0.504121 0.243647 -0.748764 -0.616432 -0.777432 0.172412 -0.604874 0.541442 0.672831 -0.504121 0.320062 -0.719425 -0.616432 -0.791221 0.089982 -0.604874 0.467943 0.725873 -0.504121 0.393700 -0.681918 -0.616432 -0.796294 0.006561 -0.604874 0.389289 0.770919 -0.504121 0.463001 -0.636900 -0.616432 -0.792673 -0.076140 -0.604874 0.307154 0.807167 -0.504121 0.526618 -0.585393 -0.616432 -0.780327 -0.158798 -0.604874 0.220866 0.834913 -0.504121 0.585071 -0.526976 -0.616432 -0.759386 -0.239707 -0.604874 0.132144 0.853463 -0.504121 0.637080 -0.462754 -0.616432 -0.730081 -0.317976 -0.604874 0.041968 0.862612 -0.504121 0.682071 -0.393435 -0.616432 -0.693126 -0.392050 -0.604874 -0.047809 0.862308 -0.504121 0.719229 -0.320501 -0.616432 -0.648219 -0.462535 -0.604874 -0.137922 0.852549 -0.504121 0.748859 -0.243356 -0.616432 -0.596172 -0.527926 -0.604874 -0.226516 0.833398 -0.504121 0.770240 -0.163530 -0.616432 -0.538146 -0.586964 -0.604874 -0.311809 0.805380 -0.504121 0.783055 -0.082685 -0.616432 -0.473664 -0.640133 -0.604874 -0.394501 0.768264 -0.504121 0.787408 -0.000160 -0.616432 -0.403965 -0.686250 -0.604874 -0.472848 0.722687 -0.504121 0.783088 0.082367 -0.616432 -0.329816 -0.724809 -0.604874 -0.545987 0.669149 -0.504121 0.770143 0.163986 -0.616432 -0.252789 -0.755132 -0.604874 -0.612503 0.608853 -0.504121 0.748958 0.243051 -0.616432 -0.172254 -0.777467 -0.604874 -0.672942 0.541305 -0.504121 0.719359 0.320208 -0.616432 -0.089821 -0.791239 -0.604874 -0.725968 0.467795 -0.504121 0.681838 0.393839 -0.616432 -0.006399 -0.796295 -0.604874 -0.770998 0.389132 -0.504121 0.636805 0.463131 -0.616432 0.076301 -0.792657 -0.604874 -0.807229 0.306990 -0.504121 0.585286 0.526737 -0.616432 0.158957 -0.780295 -0.604874 -0.834958 0.220696 -0.504121 0.526856 0.585178 -0.616432 0.239862 -0.759337 -0.604874 -0.853490 0.131971 -0.504121 0.462624 0.637174 -0.616432 0.317395 -0.730334 -0.604874 -0.862579 0.042654 -0.504121 0.393978 0.681757 -0.616432 0.392191 -0.693046 -0.604874 -0.862299 -0.047985 -0.504121 0.320355 0.719294 -0.616432 0.462667 -0.648125 -0.604874 -0.852520 -0.138096 -0.504121 0.243203 0.748908 -0.616432 0.528047 -0.596065 -0.604874 -0.833352 -0.226685 -0.504121 0.163373 0.770273 -0.616432 0.587073 -0.538026 -0.604874 -0.805316 -0.311973 -0.504121 0.082526 0.783071 -0.616432 0.640229 -0.473533 -0.604874 -0.768184 -0.394658 -0.504121 0.000000 0.787408 -0.616432 0.686333 -0.403825 -0.604874 -0.722590 -0.472995 -0.504121 -0.082526 0.783071 -0.616432 0.724546 -0.330393 -0.604874 -0.669583 -0.545454 -0.504121 -0.163373 0.770273 -0.616432 0.755184 -0.252636 -0.604874 -0.608728 -0.612627 -0.504121 -0.243203 0.748908 -0.616432 0.777503 -0.172096 -0.604874 -0.541168 -0.673052 -0.504121 -0.320355 0.719294 -0.616432 0.791257 -0.089660 -0.604874 -0.467647 -0.726063 -0.504121 -0.393978 0.681757 -0.616432 0.796290 -0.007033 -0.604874 -0.389745 -0.770688 -0.504121 -0.462624 0.637174 -0.616432 0.792642 0.076463 -0.604874 -0.306825 -0.807292 -0.504121 -0.526856 0.585178 -0.616432 0.780262 0.159116 -0.604874 -0.220526 -0.835003 -0.504121 -0.585286 0.526737 -0.616432 0.759528 0.239257 -0.604874 -0.132650 -0.853385 -0.504121 -0.636805 0.463131 -0.616432 0.730269 0.317544 -0.604874 -0.042479 -0.862587 -0.504121 -0.681838 0.393839 -0.616432 0.692966 0.392332 -0.604874 0.048160 -0.862289 -0.504121 -0.719359 0.320208 -0.616432 0.648031 0.462799 -0.604874 0.138269 -0.852492 -0.504121 -0.748958 0.243051 -0.616432 0.596485 0.527573 -0.604874 0.226022 -0.833532 -0.504121 -0.770143 0.163986 -0.616432 0.537907 0.587183 -0.604874 0.312137 -0.805253 -0.504121 -0.783088 0.082367 -0.616432 0.263003 -0.707623 -0.655820 -0.263139 -0.706590 0.656877 -0.928217 -0.000189 -0.372038 0.335718 -0.676161 -0.655820 -0.187634 -0.730278 0.656877 -0.923086 -0.097472 -0.372038 0.404098 -0.637656 -0.655820 -0.110808 -0.745811 0.656877 -0.907979 -0.192773 -0.372038 0.468704 -0.591792 -0.655820 -0.032031 -0.753317 0.656877 -0.882775 -0.286874 -0.372038 0.528146 -0.539409 -0.655820 0.047098 -0.752525 0.656877 -0.847846 -0.377815 -0.372038 0.581290 -0.481666 -0.655820 0.124965 -0.743570 0.656877 -0.804043 -0.463791 -0.372038 0.628571 -0.418090 -0.655820 0.202208 -0.726377 0.656877 -0.751006 -0.545506 -0.372038 0.668928 -0.349909 -0.655820 0.277224 -0.701184 0.656877 -0.689697 -0.621213 -0.372038 0.701917 -0.277873 -0.655820 0.349187 -0.668267 0.656877 -0.620791 -0.690077 -0.372038 0.726971 -0.203504 -0.655820 0.416675 -0.628406 0.656877 -0.545798 -0.750794 -0.372038 0.744296 -0.126191 -0.655820 0.480241 -0.581275 0.656877 -0.464104 -0.803863 -0.372038 0.753422 -0.047489 -0.655820 0.538518 -0.527741 0.656877 -0.377297 -0.848077 -0.372038 0.754281 0.030982 -0.655820 0.590394 -0.468984 0.656877 -0.287218 -0.882663 -0.372038 0.746880 0.109866 -0.655820 0.636296 -0.404524 0.656877 -0.193126 -0.907904 -0.372038 0.731252 0.187539 -0.655820 0.675189 -0.335608 0.656877 -0.096908 -0.923145 -0.372038 0.707783 0.262570 -0.655820 0.706430 -0.263570 0.656877 -0.000378 -0.928217 -0.372038 0.676366 0.335305 -0.655820 0.730163 -0.188080 0.656877 0.096908 -0.923145 -0.372038 0.637498 0.404346 -0.655820 0.745854 -0.110518 0.656877 0.193126 -0.907904 -0.372038 0.591609 0.468934 -0.655820 0.753329 -0.031738 0.656877 0.287218 -0.882663 -0.372038 0.539731 0.527817 -0.655820 0.752554 0.046638 0.656877 0.377297 -0.848077 -0.372038 0.481440 0.581477 -0.655820 0.743521 0.125255 0.656877 0.464104 -0.803863 -0.372038 0.417845 0.628733 -0.655820 0.726298 0.202491 0.656877 0.545798 -0.750794 -0.372038 0.350317 0.668714 -0.655820 0.701353 0.276796 0.656877 0.620791 -0.690077 -0.372038 0.278302 0.701747 -0.655820 0.668480 0.348778 0.656877 0.689697 -0.621213 -0.372038 0.203221 0.727050 -0.655820 0.628244 0.416919 0.656877 0.751006 -0.545506 -0.372038 0.125902 0.744345 -0.655820 0.581088 0.480467 0.656877 0.804043 -0.463791 -0.372038 0.047949 0.753393 -0.655820 0.528070 0.538196 0.656877 0.847846 -0.377815 -0.372038 -0.031276 0.754269 -0.655820 0.468755 0.590577 0.656877 0.882775 -0.286874 -0.372038 -0.110156 0.746837 -0.655820 0.404276 0.636453 0.656877 0.907979 -0.192773 -0.372038 -0.187092 0.731366 -0.655820 0.336020 0.674983 0.656877 0.923086 -0.097472 -0.372038 -0.262714 0.707730 -0.655820 0.263426 0.706483 0.656877 0.928217 -0.000189 -0.372038 -0.335443 0.676298 -0.655820 0.187931 0.730201 0.656877 0.923125 0.097096 -0.372038 -0.404476 0.637416 -0.655820 0.110366 0.745876 0.656877 0.907865 0.193311 -0.372038 -0.468463 0.591982 -0.655820 0.032338 0.753304 0.656877 0.882891 0.286515 -0.372038 -0.527927 0.539624 -0.655820 -0.046792 0.752544 0.656877 0.848000 0.377470 -0.372038 -0.581575 0.481321 -0.655820 -0.125406 0.743495 0.656877 0.803768 0.464267 -0.372038 -0.628818 0.417717 -0.655820 -0.202639 0.726257 0.656877 0.750683 0.545951 -0.372038 -0.668785 0.350181 -0.655820 -0.276939 0.701297 0.656877 0.689950 0.620932 -0.372038 -0.701803 0.278159 -0.655820 -0.348914 0.668409 0.656877 0.621072 0.689824 -0.372038 -0.727091 0.203073 -0.655820 -0.417047 0.628159 0.656877 0.545353 0.751117 -0.372038 -0.744244 0.126494 -0.655820 -0.480004 0.581470 0.656877 0.464431 0.803674 -0.372038 -0.753403 0.047796 -0.655820 -0.538303 0.527960 0.656877 0.377643 0.847923 -0.372038 -0.754263 -0.031430 -0.655820 -0.590672 0.468634 0.656877 0.286694 0.882833 -0.372038 -0.746815 -0.110309 -0.655820 -0.636536 0.404147 0.656877 0.192588 0.908018 -0.372038 -0.731328 -0.187241 -0.655820 -0.675052 0.335883 0.656877 0.097284 0.923105 -0.372038 -0.707676 -0.262859 -0.655820 -0.706537 0.263282 0.656877 0.000000 0.928217 -0.372038 -0.676229 -0.335580 -0.655820 -0.730240 0.187782 0.656877 -0.097284 0.923105 -0.372038 -0.637738 -0.403968 -0.655820 -0.745788 0.110960 0.656877 -0.192588 0.908018 -0.372038 -0.591887 -0.468583 -0.655820 -0.753310 0.032185 0.656877 -0.286694 0.882833 -0.372038 -0.539516 -0.528036 -0.655820 -0.752535 -0.046945 0.656877 -0.377643 0.847923 -0.372038 -0.481203 -0.581673 -0.655820 -0.743470 -0.125557 0.656877 -0.464431 0.803674 -0.372038 -0.418218 -0.628486 -0.655820 -0.726418 -0.202061 0.656877 -0.545353 0.751117 -0.372038 -0.350045 -0.668856 -0.655820 -0.701240 -0.277082 0.656877 -0.621072 0.689824 -0.372038 -0.278016 -0.701860 -0.655820 -0.668338 -0.349051 0.656877 -0.689950 0.620932 -0.372038 -0.203652 -0.726929 -0.655820 -0.628491 -0.416547 0.656877 -0.750683 0.545951 -0.372038 -0.126343 -0.744270 -0.655820 -0.581373 -0.480123 0.656877 -0.803768 0.464267 -0.372038 -0.047642 -0.753413 -0.655820 -0.527850 -0.538411 0.656877 -0.848000 0.377470 -0.372038 0.031583 -0.754256 -0.655820 -0.468514 -0.590768 0.656877 -0.882891 0.286515 -0.372038 0.109714 -0.746902 -0.655820 -0.404653 -0.636213 0.656877 -0.907865 0.193311 -0.372038 0.187390 -0.731290 -0.655820 -0.335745 -0.675120 0.656877 -0.923125 0.097096 -0.372038 0.293964 0.920340 0.257991 -0.691952 0.391119 -0.606819 -0.659385 -0.000134 0.751806 0.195887 0.946081 0.257991 -0.729133 0.316443 -0.606819 -0.655739 -0.069242 0.751806 0.096613 0.961305 0.257991 -0.758044 0.239040 -0.606819 -0.645008 -0.136942 0.751806 -0.004671 0.966136 0.257991 -0.778922 0.158275 -0.606819 -0.627103 -0.203789 0.751806 -0.105903 0.960326 0.257991 -0.791221 0.075767 -0.606819 -0.602291 -0.268391 0.751806 -0.205025 0.944143 0.257991 -0.794811 -0.006781 -0.606819 -0.571174 -0.329467 0.751806 -0.302848 0.917455 0.257991 -0.789723 -0.090046 -0.606819 -0.533498 -0.387515 0.751806 -0.397336 0.880661 0.257991 -0.775936 -0.172318 -0.606819 -0.489945 -0.441295 0.751806 -0.487448 0.834168 0.257991 -0.753603 -0.252693 -0.606819 -0.440996 -0.490215 0.751806 -0.571411 0.779057 0.257991 -0.723298 -0.329561 -0.606819 -0.387723 -0.533347 0.751806 -0.649915 0.714879 0.257991 -0.684774 -0.403553 -0.606819 -0.329689 -0.571046 0.751806 -0.721260 0.642826 0.257991 -0.638708 -0.473100 -0.606819 -0.268023 -0.602455 0.751806 -0.784096 0.564477 0.257991 -0.586143 -0.536849 -0.606819 -0.204033 -0.627024 0.751806 -0.838939 0.479189 0.257991 -0.526649 -0.595325 -0.606819 -0.137193 -0.644955 0.751806 -0.884541 0.388623 0.257991 -0.461354 -0.647243 -0.606819 -0.068841 -0.655781 0.751806 -0.920160 0.294526 0.257991 -0.391541 -0.691713 -0.606819 -0.000269 -0.659385 0.751806 -0.945961 0.196465 0.257991 -0.316889 -0.728939 -0.606819 0.068841 -0.655781 0.751806 -0.961342 0.096239 0.257991 -0.238745 -0.758137 -0.606819 0.137193 -0.644955 0.751806 -0.966134 -0.005047 0.257991 -0.157972 -0.778984 -0.606819 0.204033 -0.627024 0.751806 -0.960390 -0.105316 0.257991 -0.076250 -0.791174 -0.606819 0.268023 -0.602455 0.751806 -0.944063 -0.205392 0.257991 0.007090 -0.794809 -0.606819 0.329689 -0.571046 0.751806 -0.917337 -0.303205 0.257991 0.090353 -0.789688 -0.606819 0.387723 -0.533347 0.751806 -0.880904 -0.396798 0.257991 0.171844 -0.776042 -0.606819 0.440996 -0.490215 0.751806 -0.834465 -0.486938 0.257991 0.252233 -0.753757 -0.606819 0.489945 -0.441295 0.751806 -0.778835 -0.571714 0.257991 0.329843 -0.723170 -0.606819 0.533498 -0.387515 0.751806 -0.714626 -0.650193 0.257991 0.403819 -0.684617 -0.606819 0.571174 -0.329467 0.751806 -0.643266 -0.720867 0.257991 0.472709 -0.638997 -0.606819 0.602291 -0.268391 0.751806 -0.564172 -0.784316 0.257991 0.537077 -0.585934 -0.606819 0.627103 -0.203789 0.751806 -0.478862 -0.839125 0.257991 0.595530 -0.526418 -0.606819 0.645008 -0.136942 0.751806 -0.389163 -0.884304 0.257991 0.646961 -0.461750 -0.606819 0.655739 -0.069242 0.751806 -0.294339 -0.920220 0.257991 0.691792 -0.391401 -0.606819 0.659385 -0.000134 0.751806 -0.196272 -0.946001 0.257991 0.729004 -0.316740 -0.606819 0.655767 0.068975 0.751806 -0.096043 -0.961362 0.257991 0.758186 -0.238591 -0.606819 0.644927 0.137324 0.751806 0.004277 -0.966138 0.257991 0.778858 -0.158593 -0.606819 0.627186 0.203533 0.751806 0.105512 -0.960369 0.257991 0.791190 -0.076089 -0.606819 0.602400 0.268146 0.751806 0.205584 -0.944021 0.257991 0.794807 0.007252 -0.606819 0.570979 0.329805 0.751806 0.303392 -0.917275 0.257991 0.789670 0.090514 -0.606819 0.533268 0.387831 0.751806 0.396978 -0.880823 0.257991 0.776007 0.172002 -0.606819 0.490125 0.441096 0.751806 0.487108 -0.834366 0.257991 0.753706 0.252386 -0.606819 0.441196 0.490035 0.751806 0.571873 -0.778718 0.257991 0.723103 0.329990 -0.606819 0.387407 0.533577 0.751806 0.649624 -0.715143 0.257991 0.684939 0.403274 -0.606819 0.329921 0.570912 0.751806 0.720998 -0.643120 0.257991 0.638900 0.472840 -0.606819 0.268269 0.602345 0.751806 0.784431 -0.564012 0.257991 0.585825 0.537197 -0.606819 0.203661 0.627145 0.751806 0.839223 -0.478692 0.257991 0.526296 0.595637 -0.606819 0.136810 0.645036 0.751806 0.884383 -0.388983 0.257991 0.461618 0.647055 -0.606819 0.069108 0.655753 0.751806 0.920280 -0.294151 0.257991 0.391260 0.691872 -0.606819 0.000000 0.659385 0.751806 0.946041 -0.196079 0.257991 0.316592 0.729068 -0.606819 -0.069108 0.655753 0.751806 0.961285 -0.096809 0.257991 0.239195 0.757995 -0.606819 -0.136810 0.645036 0.751806 0.966137 0.004474 0.257991 0.158434 0.778890 -0.606819 -0.203661 0.627145 0.751806 0.960347 0.105707 0.257991 0.075928 0.791205 -0.606819 -0.268269 0.602345 0.751806 0.943979 0.205776 0.257991 -0.007414 0.794806 -0.606819 -0.329921 0.570912 0.751806 0.917517 0.302662 0.257991 -0.089885 0.789742 -0.606819 -0.387407 0.533577 0.751806 0.880742 0.397157 0.257991 -0.172160 0.775972 -0.606819 -0.441196 0.490035 0.751806 0.834267 0.487278 0.257991 -0.252540 0.753654 -0.606819 -0.490125 0.441096 0.751806 0.779174 0.571252 0.257991 -0.329414 0.723365 -0.606819 -0.533268 0.387831 0.751806 0.715011 0.649769 0.257991 -0.403414 0.684857 -0.606819 -0.570979 0.329805 0.751806 0.642973 0.721129 0.257991 -0.472970 0.638804 -0.606819 -0.602400 0.268146 0.751806 0.563852 0.784546 0.257991 -0.537316 0.585715 -0.606819 -0.627186 0.203533 0.751806 0.479360 0.838841 0.257991 -0.595218 0.526770 -0.606819 -0.644927 0.137324 0.751806 0.388803 0.884462 0.257991 -0.647149 0.461486 -0.606819 -0.655767 0.068975 0.751806 0.047190 0.152212 0.987221 -0.007473 0.988348 -0.152029 -0.998858 -0.000203 0.047778 0.030978 0.156320 0.987221 -0.111018 0.982121 -0.152029 -0.993335 -0.104890 0.047778 0.014582 0.158691 0.987221 -0.212375 0.965290 -0.152029 -0.977080 -0.207444 0.047778 -0.002130 0.159345 0.987221 -0.312374 0.937715 -0.152029 -0.949957 -0.308706 0.047778 -0.018819 0.158244 0.987221 -0.408933 0.899812 -0.152029 -0.912370 -0.406568 0.047778 -0.035145 0.155436 0.987221 -0.500136 0.852497 -0.152029 -0.865234 -0.499087 0.047778 -0.051242 0.150896 0.987221 -0.586729 0.795385 -0.152029 -0.808161 -0.587021 0.047778 -0.066775 0.144695 0.987221 -0.666860 0.729511 -0.152029 -0.742186 -0.668489 0.047778 -0.081572 0.136899 0.987221 -0.739645 0.655601 -0.152029 -0.668036 -0.742594 0.047778 -0.095343 0.127691 0.987221 -0.803708 0.575274 -0.152029 -0.587335 -0.807932 0.047778 -0.108201 0.116996 0.987221 -0.859575 0.487872 -0.152029 -0.499424 -0.865039 0.047778 -0.119867 0.105011 0.987221 -0.905973 0.395095 -0.152029 -0.406011 -0.912619 0.047778 -0.130121 0.092000 0.987221 -0.942094 0.298909 -0.152029 -0.309076 -0.949836 0.047778 -0.139047 0.077856 0.987221 -0.968233 0.198525 -0.152029 -0.207824 -0.976999 0.047778 -0.146441 0.062854 0.987221 -0.983707 0.095954 -0.152029 -0.104283 -0.993399 0.047778 -0.152183 0.047283 0.987221 -0.988352 -0.006869 -0.152029 -0.000407 -0.998858 0.047778 -0.156301 0.031073 0.987221 -0.982189 -0.110418 -0.152029 0.104283 -0.993399 0.047778 -0.158697 0.014521 0.987221 -0.965207 -0.212750 -0.152029 0.207824 -0.976999 0.047778 -0.159344 -0.002192 0.987221 -0.937593 -0.312739 -0.152029 0.309076 -0.949836 0.047778 -0.158256 -0.018722 0.987221 -0.900061 -0.408383 -0.152029 0.406011 -0.912619 0.047778 -0.155422 -0.035205 0.987221 -0.852303 -0.500467 -0.152029 0.499424 -0.865039 0.047778 -0.150876 -0.051301 0.987221 -0.795156 -0.587038 -0.152029 0.587335 -0.807932 0.047778 -0.144736 -0.066686 0.987221 -0.729918 -0.666414 -0.152029 0.668036 -0.742594 0.047778 -0.136949 -0.081489 0.987221 -0.656053 -0.739244 -0.152029 0.742186 -0.668489 0.047778 -0.127654 -0.095393 0.987221 -0.574962 -0.803932 -0.152029 0.808161 -0.587021 0.047778 -0.116953 -0.108247 0.987221 -0.487537 -0.859764 -0.152029 0.865234 -0.499087 0.047778 -0.105084 -0.119803 0.987221 -0.395649 -0.905731 -0.152029 0.912370 -0.406568 0.047778 -0.091949 -0.130157 0.987221 -0.298543 -0.942210 -0.152029 0.949957 -0.308706 0.047778 -0.077801 -0.139077 0.987221 -0.198148 -0.968310 -0.152029 0.977080 -0.207444 0.047778 -0.062943 -0.146402 0.987221 -0.096555 -0.983649 -0.152029 0.993335 -0.104890 0.047778 -0.047252 -0.152193 0.987221 0.007071 -0.988351 -0.152029 0.998858 -0.000203 0.047778 -0.031041 -0.156307 0.987221 0.110618 -0.982166 -0.152029 0.993378 0.104485 0.047778 -0.014488 -0.158700 0.987221 0.212947 -0.965164 -0.152029 0.976956 0.208023 0.047778 0.002065 -0.159346 0.987221 0.311992 -0.937842 -0.152029 0.950082 0.308319 0.047778 0.018754 -0.158252 0.987221 0.408567 -0.899978 -0.152029 0.912536 0.406197 0.047778 0.035237 -0.155415 0.987221 0.500641 -0.852201 -0.152029 0.864938 0.499600 0.047778 0.051331 -0.150866 0.987221 0.587200 -0.795037 -0.152029 0.807812 0.587500 0.047778 0.066716 -0.144722 0.987221 0.666562 -0.729782 -0.152029 0.742458 0.668187 0.047778 0.081516 -0.136933 0.987221 0.739378 -0.655902 -0.152029 0.668338 0.742322 0.047778 0.095419 -0.127635 0.987221 0.804049 -0.574798 -0.152029 0.586857 0.808280 0.047778 0.108154 -0.117040 0.987221 0.859376 -0.488222 -0.152029 0.499776 0.864836 0.047778 0.119824 -0.105060 0.987221 0.905812 -0.395464 -0.152029 0.406383 0.912453 0.047778 0.130176 -0.091923 0.987221 0.942271 -0.298351 -0.152029 0.308513 0.950020 0.047778 0.139093 -0.077773 0.987221 0.968351 -0.197951 -0.152029 0.207245 0.977122 0.047778 0.146415 -0.062913 0.987221 0.983668 -0.096354 -0.152029 0.104687 0.993357 0.047778 0.152202 -0.047221 0.987221 0.988349 0.007272 -0.152029 0.000000 0.998858 0.047778 0.156313 -0.031010 0.987221 0.982144 0.110818 -0.152029 -0.104687 0.993357 0.047778 0.158688 -0.014615 0.987221 0.965333 0.212178 -0.152029 -0.207245 0.977122 0.047778 0.159346 0.002097 0.987221 0.937779 0.312183 -0.152029 -0.308513 0.950020 0.047778 0.158248 0.018787 0.987221 0.899895 0.408750 -0.152029 -0.406383 0.912453 0.047778 0.155408 0.035269 0.987221 0.852099 0.500814 -0.152029 -0.499776 0.864836 0.047778 0.150907 0.051211 0.987221 0.795504 0.586567 -0.152029 -0.586857 0.808280 0.047778 0.144708 0.066745 0.987221 0.729646 0.666711 -0.152029 -0.668338 0.742322 0.047778 0.136916 0.081544 0.987221 0.655752 0.739511 -0.152029 -0.742458 0.668187 0.047778 0.127711 0.095317 0.987221 0.575438 0.803591 -0.152029 -0.807812 0.587500 0.047778 0.117018 0.108177 0.987221 0.488047 0.859475 -0.152029 -0.864938 0.499600 0.047778 0.105035 0.119846 0.987221 0.395280 0.905892 -0.152029 -0.912536 0.406197 0.047778 0.091896 0.130194 0.987221 0.298159 0.942331 -0.152029 -0.950082 0.308319 0.047778 0.077884 0.139031 0.987221 0.198722 0.968193 -0.152029 -0.976956 0.208023 0.047778 0.062884 0.146428 0.987221 0.096154 0.983688 -0.152029 -0.993378 0.104485 0.047778 -0.387631 -0.358152 0.849393 -0.148876 0.933663 0.325744 -0.909713 -0.000185 -0.415237 -0.347960 -0.396806 0.849393 -0.245910 0.912918 0.325744 -0.904684 -0.095529 -0.415237 -0.304886 -0.430785 0.849393 -0.339354 0.882457 0.325744 -0.889878 -0.188930 -0.415237 -0.258058 -0.460367 0.849393 -0.429973 0.842030 0.325744 -0.865176 -0.281155 -0.415237 -0.208387 -0.484878 0.849393 -0.515855 0.792328 0.325744 -0.830944 -0.370283 -0.415237 -0.156924 -0.503891 0.849393 -0.595322 0.734495 0.325744 -0.788014 -0.454545 -0.415237 -0.103249 -0.517563 0.849393 -0.669023 0.668056 0.325744 -0.736035 -0.534631 -0.415237 -0.048436 -0.525533 0.849393 -0.735356 0.594258 0.325744 -0.675948 -0.608829 -0.415237 0.006911 -0.527715 0.849393 -0.793588 0.513914 0.325744 -0.608416 -0.676320 -0.415237 0.061657 -0.524147 0.849393 -0.842651 0.428753 0.325744 -0.534918 -0.735827 -0.415237 0.116252 -0.514798 0.849393 -0.882947 0.338076 0.325744 -0.454852 -0.787838 -0.415237 0.169566 -0.499779 0.849393 -0.913517 0.243675 0.325744 -0.369776 -0.831170 -0.415237 0.220533 -0.479475 0.849393 -0.933878 0.147524 0.325744 -0.281492 -0.865067 -0.415237 0.269571 -0.453721 0.849393 -0.944196 0.048834 0.325744 -0.189276 -0.889805 -0.415237 0.315639 -0.422969 0.849393 -0.944114 -0.050393 0.325744 -0.094976 -0.904742 -0.415237 0.357915 -0.387850 0.849393 -0.933754 -0.148305 0.325744 -0.000371 -0.909713 -0.415237 0.396594 -0.348202 0.849393 -0.913068 -0.245352 0.325744 0.094976 -0.904742 -0.415237 0.430904 -0.304718 0.849393 -0.882325 -0.339697 0.325744 0.189276 -0.889805 -0.415237 0.460467 -0.257878 0.849393 -0.841862 -0.430300 0.325744 0.281492 -0.865067 -0.415237 0.484750 -0.208683 0.849393 -0.792643 -0.515371 0.325744 0.369776 -0.831170 -0.415237 0.503952 -0.156728 0.849393 -0.734263 -0.595608 0.325744 0.454852 -0.787838 -0.415237 0.517603 -0.103047 0.849393 -0.667795 -0.669283 0.325744 0.534918 -0.735827 -0.415237 0.525504 -0.048757 0.849393 -0.594707 -0.734993 0.325744 0.608416 -0.676320 -0.415237 0.527719 0.006588 0.849393 -0.514399 -0.793274 0.325744 0.675948 -0.608829 -0.415237 0.524123 0.061861 0.849393 -0.428425 -0.842818 0.325744 0.736035 -0.534631 -0.415237 0.514753 0.116452 0.849393 -0.337733 -0.883078 0.325744 0.788014 -0.454545 -0.415237 0.499882 0.169261 0.849393 -0.244233 -0.913368 0.325744 0.830944 -0.370283 -0.415237 0.479389 0.220720 0.849393 -0.147160 -0.933935 0.325744 0.865176 -0.281155 -0.415237 0.453616 0.269747 0.849393 -0.048467 -0.944215 0.325744 0.889878 -0.188930 -0.415237 0.423162 0.315381 0.849393 0.049817 -0.944145 0.325744 0.904684 -0.095529 -0.415237 0.387777 0.357994 0.849393 0.148495 -0.933724 0.325744 0.909713 -0.000185 -0.415237 0.348121 0.396665 0.849393 0.245538 -0.913018 0.325744 0.904722 0.095160 -0.415237 0.304631 0.430966 0.849393 0.339877 -0.882255 0.325744 0.889766 0.189458 -0.415237 0.258245 0.460262 0.849393 0.429630 -0.842205 0.325744 0.865291 0.280803 -0.415237 0.208584 0.484793 0.849393 0.515533 -0.792538 0.325744 0.831095 0.369945 -0.415237 0.156626 0.503984 0.849393 0.595757 -0.734142 0.325744 0.787745 0.455012 -0.415237 0.102942 0.517624 0.849393 0.669419 -0.667659 0.325744 0.735718 0.535068 -0.415237 0.048650 0.525514 0.849393 0.735114 -0.594557 0.325744 0.676196 0.608553 -0.415237 -0.006696 0.527718 0.849393 0.793379 -0.514238 0.325744 0.608691 0.676072 -0.415237 -0.061968 0.524110 0.849393 0.842905 -0.428254 0.325744 0.534482 0.736144 -0.415237 -0.116042 0.514845 0.849393 0.882809 -0.338436 0.325744 0.455173 0.787652 -0.415237 -0.169362 0.499848 0.849393 0.913418 -0.244047 0.325744 0.370114 0.831020 -0.415237 -0.220817 0.479344 0.849393 0.933965 -0.146970 0.325744 0.280979 0.865233 -0.415237 -0.269840 0.453561 0.849393 0.944225 -0.048274 0.325744 0.188749 0.889917 -0.415237 -0.315467 0.423098 0.849393 0.944134 0.050009 0.325744 0.095344 0.904703 -0.415237 -0.358073 0.387704 0.849393 0.933693 0.148685 0.325744 0.000000 0.909713 -0.415237 -0.396736 0.348040 0.849393 0.912968 0.245724 0.325744 -0.095344 0.904703 -0.415237 -0.430723 0.304974 0.849393 0.882526 0.339174 0.325744 -0.188749 0.889917 -0.415237 -0.460314 0.258151 0.849393 0.842117 0.429801 0.325744 -0.280979 0.865233 -0.415237 -0.484835 0.208485 0.849393 0.792433 0.515694 0.325744 -0.370114 0.831020 -0.415237 -0.504016 0.156523 0.849393 0.734020 0.595907 0.325744 -0.455173 0.787652 -0.415237 -0.517541 0.103354 0.849393 0.668192 0.668887 0.325744 -0.534482 0.736144 -0.415237 -0.525523 0.048543 0.849393 0.594408 0.735235 0.325744 -0.608691 0.676072 -0.415237 -0.527717 -0.006803 0.849393 0.514076 0.793484 0.325744 -0.676196 0.608553 -0.415237 -0.524159 -0.061550 0.849393 0.428925 0.842564 0.325744 -0.735718 0.535068 -0.415237 -0.514821 -0.116147 0.849393 0.338256 0.882878 0.325744 -0.787745 0.455012 -0.415237 -0.499813 -0.169464 0.849393 0.243861 0.913467 0.325744 -0.831095 0.369945 -0.415237 -0.479299 -0.220915 0.849393 0.146780 0.933995 0.325744 -0.865291 0.280803 -0.415237 -0.453776 -0.269478 0.849393 0.049026 0.944186 0.325744 -0.889766 0.189458 -0.415237 -0.423033 -0.315553 0.849393 -0.050201 0.944124 0.325744 -0.904722 0.095160 -0.415237 -0.004935 0.982192 0.187817 0.024714 0.187882 -0.981881 -0.999682 -0.000204 -0.025201 -0.107848 0.976265 0.187817 0.004886 0.189437 -0.981881 -0.994155 -0.104976 -0.025201 -0.208614 0.959794 0.187817 -0.014806 0.188921 -0.981881 -0.977886 -0.207615 -0.025201 -0.308059 0.932644 0.187817 -0.034525 0.186329 -0.981881 -0.950741 -0.308961 -0.025201 -0.404110 0.895221 0.187817 -0.053863 0.181684 -0.981881 -0.913123 -0.406904 -0.025201 -0.494862 0.848432 0.187817 -0.072433 0.175111 -0.981881 -0.865948 -0.499499 -0.025201 -0.581058 0.791894 0.187817 -0.090387 0.166555 -0.981881 -0.808828 -0.587506 -0.025201 -0.660854 0.726634 0.187817 -0.107345 0.156164 -0.981881 -0.742798 -0.669041 -0.025201 -0.733371 0.653370 0.187817 -0.123121 0.144054 -0.981881 -0.668587 -0.743207 -0.025201 -0.797236 0.573706 0.187817 -0.137411 0.130494 -0.981881 -0.587820 -0.808599 -0.025201 -0.852974 0.486991 0.187817 -0.150331 0.115373 -0.981881 -0.499836 -0.865753 -0.025201 -0.899316 0.394911 0.187817 -0.161595 0.098982 -0.981881 -0.406346 -0.913372 -0.025201 -0.935454 0.299417 0.187817 -0.170997 0.081672 -0.981881 -0.309331 -0.950620 -0.025201 -0.961683 0.199725 0.187817 -0.178615 0.063300 -0.981881 -0.207995 -0.977805 -0.025201 -0.977319 0.097834 0.187817 -0.184266 0.044232 -0.981881 -0.104369 -0.994219 -0.025201 -0.982194 -0.004335 0.187817 -0.187867 0.024829 -0.981881 -0.000407 -0.999682 -0.025201 -0.976331 -0.107252 0.187817 -0.189434 0.005002 -0.981881 0.104369 -0.994219 -0.025201 -0.959713 -0.208988 0.187817 -0.188915 -0.014879 -0.981881 0.207995 -0.977805 -0.025201 -0.932524 -0.308421 0.187817 -0.186315 -0.034597 -0.981881 0.309331 -0.950620 -0.025201 -0.895467 -0.403563 0.187817 -0.181717 -0.053752 -0.981881 0.406346 -0.913372 -0.025201 -0.848239 -0.495191 0.187817 -0.175083 -0.072501 -0.981881 0.499836 -0.865753 -0.025201 -0.791668 -0.581366 0.187817 -0.166520 -0.090452 -0.981881 0.587820 -0.808599 -0.025201 -0.727038 -0.660410 0.187817 -0.156230 -0.107250 -0.981881 0.668587 -0.743207 -0.025201 -0.653818 -0.732971 0.187817 -0.144129 -0.123033 -0.981881 0.742798 -0.669041 -0.025201 -0.573396 -0.797459 0.187817 -0.130440 -0.137462 -0.981881 0.808828 -0.587506 -0.025201 -0.486659 -0.853163 0.187817 -0.115315 -0.150376 -0.981881 0.865948 -0.499499 -0.025201 -0.395460 -0.899075 0.187817 -0.099081 -0.161534 -0.981881 0.913123 -0.406904 -0.025201 -0.299053 -0.935570 0.187817 -0.081605 -0.171029 -0.981881 0.950741 -0.308961 -0.025201 -0.199351 -0.961761 0.187817 -0.063231 -0.178640 -0.981881 0.977886 -0.207615 -0.025201 -0.098431 -0.977259 0.187817 -0.044344 -0.184239 -0.981881 0.994155 -0.104976 -0.025201 0.004535 -0.982194 0.187817 -0.024790 -0.187872 -0.981881 0.999682 -0.000204 -0.025201 0.107451 -0.976309 0.187817 -0.004964 -0.189435 -0.981881 0.994198 0.104571 -0.025201 0.209183 -0.959670 0.187817 0.014918 -0.188912 -0.981881 0.977763 0.208195 -0.025201 0.307679 -0.932769 0.187817 0.034449 -0.186343 -0.981881 0.950867 0.308574 -0.025201 0.403745 -0.895385 0.187817 0.053789 -0.181706 -0.981881 0.913289 0.406532 -0.025201 0.495364 -0.848139 0.187817 0.072537 -0.175068 -0.981881 0.865652 0.500012 -0.025201 0.581527 -0.791550 0.187817 0.090486 -0.166501 -0.981881 0.808479 0.587985 -0.025201 0.660558 -0.726903 0.187817 0.107282 -0.156208 -0.981881 0.743071 0.668738 -0.025201 0.733105 -0.653669 0.187817 0.123063 -0.144104 -0.981881 0.668890 0.742934 -0.025201 0.797576 -0.573234 0.187817 0.137488 -0.130412 -0.981881 0.587341 0.808947 -0.025201 0.852776 -0.487338 0.187817 0.150284 -0.115435 -0.981881 0.500189 0.865550 -0.025201 0.899156 -0.395277 0.187817 0.161554 -0.099048 -0.981881 0.406718 0.913206 -0.025201 0.935631 -0.298862 0.187817 0.171046 -0.081571 -0.981881 0.308767 0.950804 -0.025201 0.961801 -0.199155 0.187817 0.178653 -0.063195 -0.981881 0.207416 0.977928 -0.025201 0.977279 -0.098232 0.187817 0.184248 -0.044307 -0.981881 0.104774 0.994177 -0.025201 0.982193 0.004735 0.187817 0.187877 -0.024752 -0.981881 0.000000 0.999682 -0.025201 0.976287 0.107649 0.187817 0.189436 -0.004925 -0.981881 -0.104774 0.994177 -0.025201 0.959837 0.208419 0.187817 0.188924 0.014767 -0.981881 -0.207416 0.977928 -0.025201 0.932707 0.307869 0.187817 0.186336 0.034487 -0.981881 -0.308767 0.950804 -0.025201 0.895303 0.403927 0.187817 0.181695 0.053826 -0.981881 -0.406718 0.913206 -0.025201 0.848038 0.495537 0.187817 0.175053 0.072573 -0.981881 -0.500189 0.865550 -0.025201 0.792013 0.580896 0.187817 0.166573 0.090353 -0.981881 -0.587341 0.808947 -0.025201 0.726769 0.660706 0.187817 0.156186 0.107314 -0.981881 -0.668890 0.742934 -0.025201 0.653519 0.733238 0.187817 0.144079 0.123092 -0.981881 -0.743071 0.668738 -0.025201 0.573869 0.797119 0.187817 0.130522 0.137384 -0.981881 -0.808479 0.587985 -0.025201 0.487164 0.852875 0.187817 0.115404 0.150307 -0.981881 -0.865652 0.500012 -0.025201 0.395094 0.899236 0.187817 0.099015 0.161575 -0.981881 -0.913289 0.406532 -0.025201 0.298672 0.935692 0.187817 0.081536 0.171062 -0.981881 -0.950867 0.308574 -0.025201 0.199921 0.961642 0.187817 0.063337 0.178602 -0.981881 -0.977763 0.208195 -0.025201 0.098033 0.977299 0.187817 0.044269 0.184257 -0.981881 -0.994198 0.104571 -0.025201 -0.177875 0.896016 -0.406836 -0.358560 -0.444021 -0.821145 -0.916403 -0.000187 0.400256 -0.270805 0.872439 -0.406836 -0.310049 -0.479155 -0.821145 -0.911337 -0.096231 0.400256 -0.359912 0.839612 -0.406836 -0.258631 -0.508753 -0.821145 -0.896423 -0.190320 0.400256 -0.445927 0.797267 -0.406836 -0.203886 -0.533058 -0.821145 -0.871539 -0.283223 0.400256 -0.527030 0.746139 -0.406836 -0.146894 -0.551491 -0.821145 -0.837055 -0.373007 0.400256 -0.601641 0.687395 -0.406836 -0.088849 -0.563761 -0.821145 -0.793809 -0.457888 0.400256 -0.670372 0.620553 -0.406836 -0.029274 -0.569968 -0.821145 -0.741448 -0.538563 0.400256 -0.731718 0.546876 -0.406836 0.030624 -0.569897 -0.821145 -0.680919 -0.613306 0.400256 -0.785005 0.467175 -0.406836 0.090185 -0.563548 -0.821145 -0.612890 -0.681294 0.400256 -0.829262 0.383157 -0.406836 0.148201 -0.551141 -0.821145 -0.538852 -0.741238 0.400256 -0.864852 0.294134 -0.406836 0.205148 -0.532573 -0.821145 -0.458197 -0.793631 0.400256 -0.890917 0.201872 -0.406836 0.259836 -0.508139 -0.821145 -0.372495 -0.837283 0.400256 -0.907060 0.108293 -0.406836 0.311183 -0.478419 -0.821145 -0.283562 -0.871428 0.400256 -0.913414 0.012630 -0.406836 0.359611 -0.443170 -0.821145 -0.190668 -0.896349 0.400256 -0.909707 -0.083172 -0.406836 0.404078 -0.403040 -0.821145 -0.095674 -0.911395 0.400256 -0.896125 -0.177328 -0.406836 0.443802 -0.358831 -0.821145 -0.000373 -0.916403 0.400256 -0.872604 -0.270272 -0.406836 0.478966 -0.310341 -0.821145 0.095674 -0.911395 0.400256 -0.839472 -0.360238 -0.406836 0.508854 -0.258433 -0.821145 0.190668 -0.896349 0.400256 -0.797093 -0.446237 -0.406836 0.533137 -0.203678 -0.821145 0.283562 -0.871428 0.400256 -0.746461 -0.526574 -0.406836 0.551401 -0.147231 -0.821145 0.372495 -0.837283 0.400256 -0.687161 -0.601909 -0.406836 0.563795 -0.088630 -0.821145 0.458197 -0.793631 0.400256 -0.620293 -0.670613 -0.406836 0.569979 -0.029052 -0.821145 0.538852 -0.741238 0.400256 -0.547323 -0.731384 -0.406836 0.569915 0.030276 -0.821145 0.612890 -0.681294 0.400256 -0.467654 -0.784719 -0.406836 0.563603 0.089841 -0.821145 0.680919 -0.613306 0.400256 -0.382834 -0.829411 -0.406836 0.551083 0.148415 -0.821145 0.741448 -0.538563 0.400256 -0.293798 -0.864967 -0.406836 0.532493 0.205355 -0.821145 0.793809 -0.457888 0.400256 -0.202416 -0.890793 -0.406836 0.508298 0.259525 -0.821145 0.837055 -0.373007 0.400256 -0.107940 -0.907102 -0.406836 0.478298 0.311369 -0.821145 0.871539 -0.283223 0.400256 -0.012274 -0.913419 -0.406836 0.443030 0.359784 -0.821145 0.896423 -0.190320 0.400256 0.082616 -0.909758 -0.406836 0.403286 0.403832 -0.821145 0.911337 -0.096231 0.400256 0.177510 -0.896089 -0.406836 0.358741 0.443875 -0.821145 0.916403 -0.000187 0.400256 0.270449 -0.872549 -0.406836 0.310244 0.479029 -0.821145 0.911376 0.095860 0.400256 0.360409 -0.839399 -0.406836 0.258330 0.508907 -0.821145 0.896310 0.190851 0.400256 0.445602 -0.797448 -0.406836 0.204103 0.532975 -0.821145 0.871654 0.282868 0.400256 0.526726 -0.746354 -0.406836 0.147119 0.551431 -0.821145 0.837207 0.372666 0.400256 0.602049 -0.687039 -0.406836 0.088515 0.563813 -0.821145 0.793538 0.458358 0.400256 0.670739 -0.620156 -0.406836 0.028936 0.569985 -0.821145 0.741128 0.539003 0.400256 0.731495 -0.547174 -0.406836 -0.030392 0.569909 -0.821145 0.681169 0.613029 0.400256 0.784814 -0.467494 -0.406836 -0.089955 0.563585 -0.821145 0.613167 0.681044 0.400256 0.829489 -0.382666 -0.406836 -0.148528 0.551053 -0.821145 0.538412 0.741557 0.400256 0.864733 -0.294487 -0.406836 -0.204931 0.532657 -0.821145 0.458520 0.793445 0.400256 0.890834 -0.202235 -0.406836 -0.259629 0.508245 -0.821145 0.372836 0.837131 0.400256 0.907124 -0.107755 -0.406836 -0.311467 0.478235 -0.821145 0.283045 0.871596 0.400256 0.913421 -0.012088 -0.406836 -0.359874 0.442957 -0.821145 0.190137 0.896461 0.400256 0.909741 0.082802 -0.406836 -0.403914 0.403204 -0.821145 0.096046 0.911356 0.400256 0.896052 0.177693 -0.406836 -0.443948 0.358650 -0.821145 0.000000 0.916403 0.400256 0.872494 0.270627 -0.406836 -0.479092 0.310146 -0.821145 -0.096046 0.911356 0.400256 0.839685 0.359741 -0.406836 -0.508701 0.258735 -0.821145 -0.190137 0.896461 0.400256 0.797357 0.445765 -0.406836 -0.533016 0.203994 -0.821145 -0.283045 0.871596 0.400256 0.746247 0.526878 -0.406836 -0.551461 0.147007 -0.821145 -0.372836 0.837131 0.400256 0.686916 0.602188 -0.406836 -0.563831 0.088400 -0.821145 -0.458520 0.793445 0.400256 0.620690 0.670245 -0.406836 -0.569962 0.029390 -0.821145 -0.538412 0.741557 0.400256 0.547025 0.731607 -0.406836 -0.569903 -0.030508 -0.821145 -0.613167 0.681044 0.400256 0.467335 0.784910 -0.406836 -0.563567 -0.090070 -0.821145 -0.681169 0.613029 0.400256 0.383326 0.829184 -0.406836 -0.551171 -0.148089 -0.821145 -0.741128 0.539003 0.400256 0.294310 0.864793 -0.406836 -0.532615 -0.205040 -0.821145 -0.793538 0.458358 0.400256 0.202053 0.890876 -0.406836 -0.508192 -0.259732 -0.821145 -0.837207 0.372666 0.400256 0.107570 0.907146 -0.406836 -0.478171 -0.311564 -0.821145 -0.871654 0.282868 0.400256 0.012816 0.913411 -0.406836 -0.443243 -0.359521 -0.821145 -0.896310 0.190851 0.400256 -0.082987 0.909724 -0.406836 -0.403122 -0.403996 -0.821145 -0.911376 0.095860 0.400256 -0.602325 -0.060290 -0.795971 0.036510 -0.998181 0.047978 -0.797415 -0.000162 0.603431 -0.592689 -0.123086 -0.795971 0.140926 -0.988857 0.047978 -0.793007 -0.083736 0.603431 -0.576709 -0.183950 -0.795971 0.242820 -0.968884 0.047978 -0.780029 -0.165608 0.603431 -0.554253 -0.243380 -0.795971 0.343029 -0.938099 0.047978 -0.758376 -0.246449 0.603431 -0.525693 -0.300129 -0.795971 0.439459 -0.896980 0.047978 -0.728370 -0.324575 0.603431 -0.491695 -0.353081 -0.795971 0.530202 -0.846512 0.047978 -0.690740 -0.398435 0.603431 -0.451982 -0.402669 -0.795971 0.616003 -0.786282 0.047978 -0.645177 -0.468635 0.603431 -0.407290 -0.447823 -0.795971 0.695018 -0.717390 0.047978 -0.592507 -0.533673 0.603431 -0.358112 -0.488043 -0.795971 0.766378 -0.640596 0.047978 -0.533311 -0.592833 0.603431 -0.305512 -0.522583 -0.795971 0.828739 -0.557575 0.047978 -0.468886 -0.644994 0.603431 -0.249059 -0.551725 -0.795971 0.882613 -0.467646 0.047978 -0.398703 -0.690585 0.603431 -0.189862 -0.574789 -0.795971 0.926764 -0.372566 0.047978 -0.324129 -0.728568 0.603431 -0.129166 -0.591394 -0.795971 0.960434 -0.274344 0.047978 -0.246744 -0.758280 0.603431 -0.066473 -0.601674 -0.795971 0.983898 -0.172172 0.047978 -0.165912 -0.779965 0.603431 -0.003047 -0.605327 -0.795971 0.996524 -0.068105 0.047978 -0.083252 -0.793058 0.603431 0.059922 -0.602362 -0.795971 0.998203 0.035900 0.047978 -0.000325 -0.797415 0.603431 0.122724 -0.592764 -0.795971 0.988943 0.140321 0.047978 0.083252 -0.793058 0.603431 0.184174 -0.576637 -0.795971 0.968790 0.243197 0.047978 0.165912 -0.779965 0.603431 0.243595 -0.554159 -0.795971 0.937965 0.343394 0.047978 0.246744 -0.758280 0.603431 0.299808 -0.525876 -0.795971 0.897249 0.438911 0.047978 0.324129 -0.728568 0.603431 0.353272 -0.491558 -0.795971 0.846306 0.530532 0.047978 0.398703 -0.690585 0.603431 0.402845 -0.451825 -0.795971 0.786042 0.616309 0.047978 0.468886 -0.644994 0.603431 0.447574 -0.407564 -0.795971 0.717814 0.694580 0.047978 0.533311 -0.592833 0.603431 0.487825 -0.358410 -0.795971 0.641064 0.765987 0.047978 0.592507 -0.533673 0.603431 0.522702 -0.305309 -0.795971 0.557252 0.828956 0.047978 0.645177 -0.468635 0.603431 0.551822 -0.248844 -0.795971 0.467303 0.882794 0.047978 0.690740 -0.398435 0.603431 0.574673 -0.190214 -0.795971 0.373133 0.926537 0.047978 0.728370 -0.324575 0.603431 0.591444 -0.128936 -0.795971 0.273970 0.960541 0.047978 0.758376 -0.246449 0.603431 0.601700 -0.066239 -0.795971 0.171790 0.983965 0.047978 0.780029 -0.165608 0.603431 0.605325 -0.003417 -0.795971 0.068713 0.996482 0.047978 0.793007 -0.083736 0.603431 0.602350 0.060045 -0.795971 -0.036104 0.998196 0.047978 0.797415 -0.000162 0.603431 0.592739 0.122845 -0.795971 -0.140523 0.988914 0.047978 0.793041 0.083413 0.603431 0.576600 0.184291 -0.795971 -0.243394 0.968740 0.047978 0.779931 0.166070 0.603431 0.554352 0.243154 -0.795971 -0.342647 0.938239 0.047978 0.758477 0.246140 0.603431 0.525815 0.299915 -0.795971 -0.439094 0.897159 0.047978 0.728502 0.324278 0.603431 0.491486 0.353372 -0.795971 -0.530704 0.846198 0.047978 0.690503 0.398844 0.603431 0.451743 0.402937 -0.795971 -0.616469 0.785916 0.047978 0.644899 0.469017 0.603431 0.407472 0.447657 -0.795971 -0.694726 0.717673 0.047978 0.592724 0.533432 0.603431 0.358311 0.487897 -0.795971 -0.766117 0.640908 0.047978 0.533552 0.592616 0.603431 0.305202 0.522764 -0.795971 -0.829069 0.557083 0.047978 0.468504 0.645272 0.603431 0.249284 0.551623 -0.795971 -0.882422 0.468006 0.047978 0.398985 0.690422 0.603431 0.190097 0.574712 -0.795971 -0.926613 0.372944 0.047978 0.324426 0.728436 0.603431 0.128816 0.591470 -0.795971 -0.960597 0.273774 0.047978 0.246294 0.758426 0.603431 0.066116 0.601714 -0.795971 -0.984000 0.171589 0.047978 0.165449 0.780063 0.603431 0.003293 0.605326 -0.795971 -0.996496 0.068510 0.047978 0.083575 0.793024 0.603431 -0.060167 0.602337 -0.795971 -0.998188 -0.036307 0.047978 0.000000 0.797415 0.603431 -0.122965 0.592714 -0.795971 -0.988886 -0.140724 0.047978 -0.083575 0.793024 0.603431 -0.183832 0.576746 -0.795971 -0.968934 -0.242623 0.047978 -0.165449 0.780063 0.603431 -0.243267 0.554303 -0.795971 -0.938169 -0.342838 0.047978 -0.246294 0.758426 0.603431 -0.300022 0.525754 -0.795971 -0.897070 -0.439276 0.047978 -0.324426 0.728436 0.603431 -0.353472 0.491414 -0.795971 -0.846090 -0.530876 0.047978 -0.398985 0.690422 0.603431 -0.402577 0.452064 -0.795971 -0.786407 -0.615843 0.047978 -0.468504 0.645272 0.603431 -0.447740 0.407381 -0.795971 -0.717531 -0.694872 0.047978 -0.533552 0.592616 0.603431 -0.487970 0.358211 -0.795971 -0.640752 -0.766248 0.047978 -0.592724 0.533432 0.603431 -0.522521 0.305618 -0.795971 -0.557744 -0.828626 0.047978 -0.644899 0.469017 0.603431 -0.551674 0.249171 -0.795971 -0.467826 -0.882517 0.047978 -0.690503 0.398844 0.603431 -0.574751 0.189980 -0.795971 -0.372755 -0.926688 0.047978 -0.728502 0.324278 0.603431 -0.591496 0.128695 -0.795971 -0.273579 -0.960652 0.047978 -0.758477 0.246140 0.603431 -0.601661 0.066595 -0.795971 -0.172373 -0.983863 0.047978 -0.779931 0.166070 0.603431 -0.605327 0.003170 -0.795971 -0.068308 -0.996510 0.047978 -0.793041 0.083413 0.603431 -0.025439 -0.725810 0.687425 -0.027136 0.687895 0.725303 -0.999308 -0.000204 -0.037195 0.050771 -0.724479 0.687425 -0.099083 0.681263 0.725303 -0.993783 -0.104937 -0.037195 0.125707 -0.715294 0.687425 -0.169272 0.667296 0.725303 -0.977520 -0.207537 -0.037195 0.199983 -0.698179 0.687425 -0.238277 0.645880 0.725303 -0.950385 -0.308845 -0.037195 0.272056 -0.673374 0.687425 -0.304657 0.617349 0.725303 -0.912781 -0.406752 -0.037195 0.340490 -0.641493 0.687425 -0.367100 0.582386 0.725303 -0.865623 -0.499312 -0.037195 0.405848 -0.602274 0.687425 -0.426116 0.540704 0.725303 -0.808525 -0.587286 -0.037195 0.466736 -0.556422 0.687425 -0.480439 0.493066 0.725303 -0.742520 -0.668790 -0.037195 0.522482 -0.504440 0.687425 -0.529470 0.439997 0.725303 -0.668337 -0.742928 -0.037195 0.572026 -0.447474 0.687425 -0.572287 0.382654 0.725303 -0.587600 -0.808296 -0.037195 0.615774 -0.385057 0.687425 -0.609240 0.320567 0.725303 -0.499649 -0.865429 -0.037195 0.652740 -0.318399 0.687425 -0.639482 0.254949 0.725303 -0.406194 -0.913030 -0.037195 0.682267 -0.248916 0.687425 -0.662494 0.187185 0.725303 -0.309215 -0.950264 -0.037195 0.704597 -0.176039 0.687425 -0.678463 0.116720 0.725303 -0.207918 -0.977439 -0.037195 0.719167 -0.101222 0.687425 -0.686960 0.044969 0.725303 -0.104330 -0.993847 -0.037195 0.725794 -0.025882 0.687425 -0.687912 -0.026716 0.725303 -0.000407 -0.999308 -0.037195 0.724510 0.050329 0.687425 -0.681323 -0.098667 0.725303 0.104330 -0.993847 -0.037195 0.715245 0.125985 0.687425 -0.667230 -0.169531 0.725303 0.207918 -0.977439 -0.037195 0.698101 0.200254 0.687425 -0.645787 -0.238528 0.725303 0.309215 -0.950264 -0.037195 0.673540 0.271644 0.687425 -0.617535 -0.304280 0.725303 0.406194 -0.913030 -0.037195 0.641361 0.340740 0.687425 -0.582244 -0.367326 0.725303 0.499649 -0.865429 -0.037195 0.602117 0.406082 0.687425 -0.540538 -0.426327 0.725303 0.587600 -0.808296 -0.037195 0.556707 0.466396 0.687425 -0.493360 -0.480138 0.725303 0.668337 -0.742928 -0.037195 0.504759 0.522174 0.687425 -0.440321 -0.529201 0.725303 0.742520 -0.668790 -0.037195 0.447252 0.572200 0.687425 -0.382432 -0.572435 0.725303 0.808525 -0.587286 -0.037195 0.384818 0.615924 0.687425 -0.320330 -0.609364 0.725303 0.865623 -0.499312 -0.037195 0.318798 0.652545 0.687425 -0.255340 -0.639326 0.725303 0.912781 -0.406752 -0.037195 0.248651 0.682364 0.687425 -0.186927 -0.662567 0.725303 0.950385 -0.308845 -0.037195 0.175765 0.704666 0.687425 -0.116456 -0.678509 0.725303 0.977520 -0.207537 -0.037195 0.101662 0.719105 0.687425 -0.045389 -0.686932 0.725303 0.993783 -0.104937 -0.037195 0.025734 0.725800 0.687425 0.026856 -0.687906 0.725303 0.999308 -0.000204 -0.037195 -0.050476 0.724499 0.687425 0.098806 -0.681303 0.725303 0.993826 0.104532 -0.037195 -0.126131 0.715219 0.687425 0.169667 -0.667195 0.725303 0.977397 0.208117 -0.037195 -0.199698 0.698261 0.687425 0.238014 -0.645977 0.725303 0.950510 0.308458 -0.037195 -0.271781 0.673485 0.687425 0.304406 -0.617473 0.725303 0.912947 0.406380 -0.037195 -0.340870 0.641291 0.687425 0.367445 -0.582169 0.725303 0.865327 0.499825 -0.037195 -0.406205 0.602034 0.687425 0.426437 -0.540452 0.725303 0.808176 0.587765 -0.037195 -0.466509 0.556612 0.687425 0.480238 -0.493262 0.725303 0.742792 0.668488 -0.037195 -0.522277 0.504653 0.687425 0.529291 -0.440213 0.725303 0.668639 0.742656 -0.037195 -0.572291 0.447135 0.687425 0.572513 -0.382315 0.725303 0.587121 0.808644 -0.037195 -0.615618 0.385308 0.687425 0.609109 -0.320815 0.725303 0.500001 0.865226 -0.037195 -0.652610 0.318665 0.687425 0.639378 -0.255209 0.725303 0.406566 0.912864 -0.037195 -0.682414 0.248512 0.687425 0.662605 -0.186792 0.725303 0.308652 0.950448 -0.037195 -0.704702 0.175621 0.687425 0.678533 -0.116318 0.725303 0.207338 0.977562 -0.037195 -0.719126 0.101515 0.687425 0.686942 -0.045249 0.725303 0.104735 0.993804 -0.037195 -0.725805 0.025587 0.687425 0.687901 0.026996 0.725303 0.000000 0.999308 -0.037195 -0.724489 -0.050624 0.687425 0.681283 0.098945 0.725303 -0.104735 0.993804 -0.037195 -0.715319 -0.125561 0.687425 0.667330 0.169136 0.725303 -0.207338 0.977562 -0.037195 -0.698220 -0.199841 0.687425 0.645928 0.238145 0.725303 -0.308652 0.950448 -0.037195 -0.673430 -0.271918 0.687425 0.617411 0.304532 0.725303 -0.406566 0.912864 -0.037195 -0.641222 -0.341001 0.687425 0.582094 0.367564 0.725303 -0.500001 0.865226 -0.037195 -0.602357 -0.405726 0.687425 0.540791 0.426006 0.725303 -0.587121 0.808644 -0.037195 -0.556517 -0.466622 0.687425 0.493164 0.480339 0.725303 -0.668639 0.742656 -0.037195 -0.504546 -0.522379 0.687425 0.440105 0.529381 0.725303 -0.742792 0.668488 -0.037195 -0.447591 -0.571935 0.687425 0.382771 0.572209 0.725303 -0.808176 0.587765 -0.037195 -0.385183 -0.615696 0.687425 0.320691 0.609174 0.725303 -0.865327 0.499825 -0.037195 -0.318532 -0.652675 0.687425 0.255079 0.639430 0.725303 -0.912947 0.406380 -0.037195 -0.248373 -0.682465 0.687425 0.186657 0.662643 0.725303 -0.950510 0.308458 -0.037195 -0.176182 -0.704562 0.687425 0.116858 0.678440 0.725303 -0.977397 0.208117 -0.037195 -0.101369 -0.719146 0.687425 0.045109 0.686951 0.725303 -0.993826 0.104532 -0.037195 -0.048445 -0.997658 0.048280 -0.708137 0.068395 0.702754 -0.704411 -0.000143 -0.709792 0.056383 -0.997241 0.048280 -0.711406 -0.006200 0.702754 -0.700516 -0.073970 -0.709792 0.159605 -0.986000 0.048280 -0.706918 -0.080019 0.702754 -0.689052 -0.146293 -0.709792 0.262066 -0.963842 0.048280 -0.694638 -0.153669 0.702754 -0.669925 -0.217705 -0.709792 0.361640 -0.931067 0.048280 -0.674707 -0.225625 0.702754 -0.643418 -0.286719 -0.709792 0.456343 -0.888493 0.048280 -0.647639 -0.294449 0.702754 -0.610177 -0.351964 -0.709792 0.546950 -0.835772 0.048280 -0.613211 -0.360705 0.702754 -0.569928 -0.413977 -0.709792 0.631532 -0.773845 0.048280 -0.572030 -0.422987 0.702754 -0.523401 -0.471429 -0.709792 0.709159 -0.703394 0.048280 -0.524547 -0.480610 0.702754 -0.471110 -0.523689 -0.709792 0.778348 -0.625974 0.048280 -0.471820 -0.532468 0.702754 -0.414198 -0.569767 -0.709792 0.839668 -0.540950 0.048280 -0.413415 -0.578986 0.702754 -0.352202 -0.610040 -0.709792 0.891739 -0.449967 0.048280 -0.350456 -0.619126 0.702754 -0.286325 -0.643593 -0.709792 0.933633 -0.354962 0.048280 -0.284289 -0.652162 0.702754 -0.217965 -0.669840 -0.709792 0.965694 -0.255156 0.048280 -0.214372 -0.678366 0.702754 -0.146561 -0.688995 -0.709792 0.987117 -0.152539 0.048280 -0.142094 -0.697098 0.702754 -0.073542 -0.700561 -0.709792 0.997629 -0.049055 0.048280 -0.068827 -0.708095 0.702754 -0.000287 -0.704411 -0.709792 0.997275 0.055774 0.048280 0.005765 -0.711409 0.702754 0.073542 -0.700561 -0.709792 0.985937 0.159989 0.048280 0.080294 -0.706887 0.702754 0.146561 -0.688995 -0.709792 0.963740 0.262441 0.048280 0.153939 -0.694578 0.702754 0.217965 -0.669840 -0.709792 0.931288 0.361071 0.048280 0.225213 -0.674845 0.702754 0.286325 -0.643593 -0.709792 0.888316 0.456688 0.048280 0.294701 -0.647524 0.702754 0.352202 -0.610040 -0.709792 0.835559 0.547275 0.048280 0.360943 -0.613071 0.702754 0.414198 -0.569767 -0.709792 0.774231 0.631059 0.048280 0.422638 -0.572288 0.702754 0.471110 -0.523689 -0.709792 0.703827 0.708729 0.048280 0.480290 -0.524841 0.702754 0.523401 -0.471429 -0.709792 0.625671 0.778592 0.048280 0.532652 -0.471612 0.702754 0.569928 -0.413977 -0.709792 0.540623 0.839878 0.048280 0.579147 -0.413189 0.702754 0.610177 -0.351964 -0.709792 0.450512 0.891464 0.048280 0.618912 -0.350834 0.702754 0.643418 -0.286719 -0.709792 0.354599 0.933771 0.048280 0.652273 -0.284036 0.702754 0.669925 -0.217705 -0.709792 0.254780 0.965793 0.048280 0.678450 -0.214108 0.702754 0.689052 -0.146293 -0.709792 0.153142 0.987024 0.048280 0.697011 -0.142520 0.702754 0.700516 -0.073970 -0.709792 0.048852 0.997639 0.048280 0.708109 -0.068683 0.702754 0.704411 -0.000143 -0.709792 -0.055977 0.997264 0.048280 0.711408 0.005910 0.702754 0.700546 0.073685 -0.709792 -0.160189 0.985905 0.048280 0.706871 0.080438 0.702754 0.688965 0.146701 -0.709792 -0.261673 0.963948 0.048280 0.694701 0.153386 0.702754 0.670013 0.217432 -0.709792 -0.361261 0.931214 0.048280 0.674799 0.225351 0.702754 0.643535 0.286457 -0.709792 -0.456869 0.888223 0.048280 0.647464 0.294833 0.702754 0.609968 0.352326 -0.709792 -0.547445 0.835448 0.048280 0.612998 0.361068 0.702754 0.569682 0.414315 -0.709792 -0.631217 0.774102 0.048280 0.572202 0.422754 0.702754 0.523593 0.471216 -0.709792 -0.708872 0.703683 0.048280 0.524743 0.480397 0.702754 0.471323 0.523497 -0.709792 -0.778719 0.625512 0.048280 0.471504 0.532748 0.702754 0.413861 0.570012 -0.709792 -0.839448 0.541292 0.048280 0.413650 0.578817 0.702754 0.352450 0.609896 -0.709792 -0.891556 0.450331 0.048280 0.350708 0.618983 0.702754 0.286588 0.643477 -0.709792 -0.933843 0.354409 0.048280 0.283903 0.652331 0.702754 0.217568 0.669969 -0.709792 -0.965845 0.254584 0.048280 0.213970 0.678493 0.702754 0.146152 0.689082 -0.709792 -0.987055 0.152941 0.048280 0.142378 0.697040 0.702754 0.073827 0.700531 -0.709792 -0.997648 0.048648 0.048280 0.068539 0.708123 0.702754 0.000000 0.704411 -0.709792 -0.997253 -0.056180 0.048280 -0.006055 0.711407 0.702754 -0.073827 0.700531 -0.709792 -0.986032 -0.159404 0.048280 -0.079875 0.706934 0.702754 -0.146152 0.689082 -0.709792 -0.963895 -0.261869 0.048280 -0.153527 0.694669 0.702754 -0.217568 0.669969 -0.709792 -0.931141 -0.361450 0.048280 -0.225488 0.674753 0.702754 -0.286588 0.643477 -0.709792 -0.888130 -0.457050 0.048280 -0.294965 0.647404 0.702754 -0.352450 0.609896 -0.709792 -0.835884 -0.546779 0.048280 -0.360580 0.613285 0.702754 -0.413861 0.570012 -0.709792 -0.773974 -0.631375 0.048280 -0.422871 0.572116 0.702754 -0.471323 0.523497 -0.709792 -0.703538 -0.709015 0.048280 -0.480504 0.524645 0.702754 -0.523593 0.471216 -0.709792 -0.626132 -0.778221 0.048280 -0.532372 0.471928 0.702754 -0.569682 0.414315 -0.709792 -0.541121 -0.839558 0.048280 -0.578902 0.413532 0.702754 -0.609968 0.352326 -0.709792 -0.450149 -0.891647 0.048280 -0.619055 0.350582 0.702754 -0.643535 0.286457 -0.709792 -0.354219 -0.933915 0.048280 -0.652389 0.283770 0.702754 -0.670013 0.217432 -0.709792 -0.255353 -0.965642 0.048280 -0.678323 0.214510 0.702754 -0.688965 0.146701 -0.709792 -0.152740 -0.987086 0.048280 -0.697069 0.142236 0.702754 -0.700546 0.073685 -0.709792 0.766918 0.575313 0.284344 -0.539461 0.817933 -0.199919 -0.347590 -0.000071 0.937647 0.702397 0.652523 0.284344 -0.622215 0.756889 -0.199919 -0.345669 -0.036500 0.937647 0.630862 0.721915 0.284344 -0.697428 0.688206 -0.199919 -0.340012 -0.072188 0.937647 0.551726 0.784058 0.284344 -0.765716 0.611320 -0.199919 -0.330573 -0.107426 0.937647 0.466512 0.837565 0.284344 -0.825569 0.527701 -0.199919 -0.317494 -0.141481 0.937647 0.377041 0.881469 0.284344 -0.875890 0.439145 -0.199919 -0.301091 -0.173676 0.937647 0.282581 0.916131 0.284344 -0.917092 0.344927 -0.199919 -0.281230 -0.204276 0.937647 0.185007 0.940702 0.284344 -0.948192 0.246909 -0.199919 -0.258272 -0.232626 0.937647 0.085396 0.954912 0.284344 -0.968848 0.146172 -0.199919 -0.232468 -0.258414 0.937647 -0.014197 0.958617 0.284344 -0.978787 0.044804 -0.199919 -0.204386 -0.281150 0.937647 -0.114589 0.951850 0.284344 -0.978093 -0.058027 -0.199919 -0.173793 -0.301023 0.937647 -0.213719 0.934598 0.284344 -0.966624 -0.160219 -0.199919 -0.141287 -0.317580 0.937647 -0.309587 0.907361 0.284344 -0.944769 -0.259701 -0.199919 -0.107555 -0.330531 0.937647 -0.402980 0.869917 0.284344 -0.912347 -0.357289 -0.199919 -0.072320 -0.339984 0.937647 -0.491934 0.822891 0.284344 -0.869876 -0.450942 -0.199919 -0.036289 -0.345691 0.937647 -0.574845 0.767269 0.284344 -0.818262 -0.538961 -0.199919 -0.000142 -0.347590 0.937647 -0.652094 0.702796 0.284344 -0.757269 -0.621752 -0.199919 0.036289 -0.345691 0.937647 -0.722161 0.630581 0.284344 -0.687934 -0.697695 -0.199919 0.072320 -0.339984 0.937647 -0.784273 0.551420 0.284344 -0.611022 -0.765953 -0.199919 0.107555 -0.330531 0.937647 -0.837280 0.467024 0.284344 -0.528205 -0.825247 -0.199919 0.141287 -0.317580 0.937647 -0.881616 0.376699 0.284344 -0.438804 -0.876061 -0.199919 0.173793 -0.301023 0.937647 -0.916241 0.282224 0.284344 -0.344570 -0.917226 -0.199919 0.204386 -0.281150 0.937647 -0.940589 0.185582 0.284344 -0.247489 -0.948041 -0.199919 0.232468 -0.258414 0.937647 -0.954859 0.085979 0.284344 -0.146764 -0.968758 -0.199919 0.258272 -0.232626 0.937647 -0.958612 -0.014570 0.284344 -0.044423 -0.978805 -0.199919 0.281230 -0.204276 0.937647 -0.951805 -0.114959 0.284344 0.058407 -0.978070 -0.199919 0.301091 -0.173676 0.937647 -0.934728 -0.213148 0.284344 0.159628 -0.966722 -0.199919 0.317494 -0.141481 0.937647 -0.907241 -0.309940 0.284344 0.260068 -0.944668 -0.199919 0.330573 -0.107426 0.937647 -0.869760 -0.403318 0.284344 0.357644 -0.912208 -0.199919 0.340012 -0.072188 0.937647 -0.823191 -0.491431 0.284344 0.450410 -0.870151 -0.199919 0.345669 -0.036500 0.937647 -0.767152 -0.575001 0.284344 0.539128 -0.818153 -0.199919 0.347590 -0.000071 0.937647 -0.702663 -0.652237 0.284344 0.621907 -0.757142 -0.199919 0.345683 0.036360 0.937647 -0.630434 -0.722289 0.284344 0.697835 -0.687792 -0.199919 0.339969 0.072389 0.937647 -0.552045 -0.783834 0.284344 0.765466 -0.611632 -0.199919 0.330617 0.107291 0.937647 -0.466853 -0.837375 0.284344 0.825354 -0.528037 -0.199919 0.317551 0.141351 0.937647 -0.376519 -0.881693 0.284344 0.876151 -0.438626 -0.199919 0.300988 0.173855 0.937647 -0.282038 -0.916299 0.284344 0.917296 -0.344383 -0.199919 0.281109 0.204443 0.937647 -0.185390 -0.940627 0.284344 0.948091 -0.247296 -0.199919 0.258366 0.232521 0.937647 -0.085785 -0.954877 0.284344 0.968788 -0.146567 -0.199919 0.232573 0.258319 0.937647 0.014765 -0.958609 0.284344 0.978814 -0.044224 -0.199919 0.204219 0.281272 0.937647 0.114201 -0.951896 0.284344 0.978116 0.057629 -0.199919 0.173916 0.300952 0.937647 0.213338 -0.934685 0.284344 0.966689 0.159825 -0.199919 0.141416 0.317522 0.937647 0.310125 -0.907178 0.284344 0.944615 0.260260 -0.199919 0.107359 0.330595 0.937647 0.403495 -0.869678 0.284344 0.912135 0.357830 -0.199919 0.072119 0.340026 0.937647 0.491599 -0.823091 0.284344 0.870059 0.450587 -0.199919 0.036430 0.345676 0.937647 0.575157 -0.767035 0.284344 0.818043 0.539294 -0.199919 0.000000 0.347590 0.937647 0.652380 -0.702530 0.284344 0.757016 0.622061 -0.199919 -0.036430 0.345676 0.937647 0.721787 -0.631009 0.284344 0.688348 0.697287 -0.199919 -0.072119 0.340026 0.937647 0.783946 -0.551885 0.284344 0.611476 0.765591 -0.199919 -0.107359 0.330595 0.937647 0.837470 -0.466683 0.284344 0.527869 0.825462 -0.199919 -0.141416 0.317522 0.937647 0.881769 -0.376339 0.284344 0.438447 0.876240 -0.199919 -0.173916 0.300952 0.937647 0.916074 -0.282767 0.284344 0.345114 0.917022 -0.199919 -0.204219 0.281272 0.937647 0.940665 -0.185199 0.284344 0.247102 0.948142 -0.199919 -0.232573 0.258319 0.937647 0.954894 -0.085590 0.284344 0.146369 0.968818 -0.199919 -0.258366 0.232521 0.937647 0.958620 0.014002 0.284344 0.045003 0.978778 -0.199919 -0.281109 0.204443 0.937647 0.951873 0.114395 0.284344 -0.057828 0.978104 -0.199919 -0.300988 0.173855 0.937647 0.934641 0.213528 0.284344 -0.160022 0.966657 -0.199919 -0.317551 0.141351 0.937647 0.907115 0.310309 0.284344 -0.260453 0.944562 -0.199919 -0.330617 0.107291 0.937647 0.869999 0.402803 0.284344 -0.357103 0.912420 -0.199919 -0.339969 0.072389 0.937647 0.822991 0.491766 0.284344 -0.450764 0.869968 -0.199919 -0.345683 0.036360 0.937647 -0.253505 0.653143 0.713540 0.218419 0.757234 -0.615540 -0.942353 -0.000192 -0.334622 -0.320563 0.622977 0.713540 0.137852 0.775956 -0.615540 -0.937142 -0.098956 -0.334622 -0.383504 0.586333 0.713540 0.056554 0.786074 -0.615540 -0.921806 -0.195709 -0.334622 -0.442844 0.542909 0.713540 -0.026144 0.787672 -0.615540 -0.896218 -0.291243 -0.334622 -0.497305 0.493506 0.713540 -0.108554 0.780594 -0.615540 -0.860757 -0.383569 -0.334622 -0.545851 0.439213 0.713540 -0.189003 0.765107 -0.615540 -0.816287 -0.470854 -0.334622 -0.588877 0.379585 0.713540 -0.268150 0.741084 -0.615540 -0.762443 -0.553813 -0.334622 -0.625417 0.315776 0.713540 -0.344345 0.708899 -0.615540 -0.700200 -0.630673 -0.334622 -0.655068 0.248489 0.713540 -0.416746 0.668905 -0.615540 -0.630245 -0.700585 -0.334622 -0.677325 0.179142 0.713540 -0.483935 0.622027 -0.615540 -0.554110 -0.762227 -0.334622 -0.692370 0.107167 0.713540 -0.546462 0.567881 -0.615540 -0.471171 -0.816104 -0.334622 -0.699789 0.034011 0.713540 -0.602971 0.507481 -0.615540 -0.383043 -0.860992 -0.334622 -0.699538 -0.038820 0.713540 -0.652396 0.442143 -0.615540 -0.291591 -0.896104 -0.334622 -0.691617 -0.111922 0.713540 -0.695143 0.371332 -0.615540 -0.196067 -0.921730 -0.334622 -0.676078 -0.183792 0.713540 -0.730232 0.296431 -0.615540 -0.098384 -0.937203 -0.334622 -0.653298 -0.253106 0.713540 -0.757101 0.218882 -0.615540 -0.000384 -0.942353 -0.334622 -0.623173 -0.320182 0.713540 -0.775871 0.138326 -0.615540 0.098384 -0.937203 -0.334622 -0.586183 -0.383732 0.713540 -0.786096 0.056248 -0.615540 0.196067 -0.921730 -0.334622 -0.542737 -0.443055 0.713540 -0.787662 -0.026451 -0.615540 0.291591 -0.896104 -0.334622 -0.493810 -0.497004 0.713540 -0.780660 -0.108077 -0.615540 0.383043 -0.860992 -0.334622 -0.439001 -0.546021 0.713540 -0.765033 -0.189300 -0.615540 0.471171 -0.816104 -0.334622 -0.379356 -0.589025 0.713540 -0.740980 -0.268439 -0.615540 0.554110 -0.762227 -0.334622 -0.316158 -0.625224 0.713540 -0.709109 -0.343911 -0.615540 0.630245 -0.700585 -0.334622 -0.248889 -0.654916 0.713540 -0.669159 -0.416337 -0.615540 0.700200 -0.630673 -0.334622 -0.178878 -0.677395 0.713540 -0.621839 -0.484177 -0.615540 0.762443 -0.553813 -0.334622 -0.106897 -0.692412 0.713540 -0.567669 -0.546683 -0.615540 0.816287 -0.470854 -0.334622 -0.034439 -0.699768 0.713540 -0.507849 -0.602661 -0.615540 0.860757 -0.383569 -0.334622 0.039092 -0.699523 0.713540 -0.441889 -0.652568 -0.615540 0.896218 -0.291243 -0.334622 0.112191 -0.691574 0.713540 -0.371061 -0.695287 -0.615540 0.921806 -0.195709 -0.334622 0.183379 -0.676190 0.713540 -0.296877 -0.730051 -0.615540 0.937142 -0.098956 -0.334622 0.253239 -0.653247 0.713540 -0.218727 -0.757145 -0.615540 0.942353 -0.000192 -0.334622 0.320309 -0.623108 0.713540 -0.138168 -0.775899 -0.615540 0.937183 0.098574 -0.334622 0.383851 -0.586105 0.713540 -0.056088 -0.786107 -0.615540 0.921690 0.196255 -0.334622 0.442622 -0.543090 0.713540 0.025823 -0.787682 -0.615540 0.896336 0.290878 -0.334622 0.497104 -0.493709 0.713540 0.108236 -0.780638 -0.615540 0.860914 0.383218 -0.334622 0.546111 -0.438890 0.713540 0.189456 -0.764995 -0.615540 0.816008 0.471337 -0.334622 0.589102 -0.379236 0.713540 0.268590 -0.740925 -0.615540 0.762115 0.554265 -0.334622 0.625288 -0.316031 0.713540 0.344056 -0.709039 -0.615540 0.700457 0.630387 -0.334622 0.654967 -0.248756 0.713540 0.416473 -0.669074 -0.615540 0.630530 0.700329 -0.334622 0.677431 -0.178740 0.713540 0.484303 -0.621740 -0.615540 0.553658 0.762556 -0.334622 0.692326 -0.107449 0.713540 0.546231 -0.568104 -0.615540 0.471504 0.815912 -0.334622 0.699775 -0.034296 0.713540 0.602764 -0.507726 -0.615540 0.383393 0.860836 -0.334622 0.699515 0.039234 0.713540 0.652658 -0.441756 -0.615540 0.291060 0.896277 -0.334622 0.691551 0.112332 0.713540 0.695363 -0.370920 -0.615540 0.195521 0.921846 -0.334622 0.676153 0.183517 0.713540 0.730112 -0.296728 -0.615540 0.098765 0.937163 -0.334622 0.653195 0.253372 0.713540 0.757190 -0.218573 -0.615540 0.000000 0.942353 -0.334622 0.623042 0.320436 0.713540 0.775928 -0.138010 -0.615540 -0.098765 0.937163 -0.334622 0.586411 0.383384 0.713540 0.786062 -0.056714 -0.615540 -0.195521 0.921846 -0.334622 0.543000 0.442733 0.713540 0.787677 0.025984 -0.615540 -0.291060 0.896277 -0.334622 0.493607 0.497205 0.713540 0.780616 0.108395 -0.615540 -0.383393 0.860836 -0.334622 0.438778 0.546200 0.713540 0.764956 0.189612 -0.615540 -0.471504 0.815912 -0.334622 0.379705 0.588800 0.713540 0.741139 0.268000 -0.615540 -0.553658 0.762556 -0.334622 0.315903 0.625353 0.713540 0.708969 0.344200 -0.615540 -0.630530 0.700329 -0.334622 0.248622 0.655018 0.713540 0.668990 0.416610 -0.615540 -0.700457 0.630387 -0.334622 0.179280 0.677289 0.713540 0.622126 0.483808 -0.615540 -0.762115 0.554265 -0.334622 0.107308 0.692348 0.713540 0.567993 0.546347 -0.615540 -0.816008 0.471337 -0.334622 0.034154 0.699782 0.713540 0.507603 0.602868 -0.615540 -0.860914 0.383218 -0.334622 -0.039377 0.699507 0.713540 0.441623 0.652748 -0.615540 -0.896336 0.290878 -0.334622 -0.111782 0.691640 0.713540 0.371473 0.695067 -0.615540 -0.921690 0.196255 -0.334622 -0.183655 0.676115 0.713540 0.296580 0.730172 -0.615540 -0.937183 0.098574 -0.334622 -0.099182 -0.364621 -0.925859 0.039054 -0.931156 0.362523 -0.994303 -0.000202 0.106593 -0.060421 -0.373007 -0.925859 0.136430 -0.921935 0.362523 -0.988805 -0.104411 0.106593 -0.021371 -0.377264 -0.925859 0.231402 -0.902790 0.362523 -0.972624 -0.206498 0.106593 0.018286 -0.377427 -0.925859 0.324746 -0.873566 0.362523 -0.945624 -0.307298 0.106593 0.057743 -0.373431 -0.925859 0.414514 -0.834719 0.362523 -0.908209 -0.404714 0.106593 0.096198 -0.365419 -0.925859 0.498928 -0.787177 0.362523 -0.861288 -0.496811 0.106593 0.133966 -0.353325 -0.925859 0.578682 -0.730550 0.362523 -0.804475 -0.584344 0.106593 0.170260 -0.337338 -0.925859 0.652062 -0.665877 0.362523 -0.738801 -0.665440 0.106593 0.204677 -0.317636 -0.925859 0.718260 -0.593869 0.362523 -0.664989 -0.739207 0.106593 0.236546 -0.294671 -0.925859 0.776030 -0.516096 0.362523 -0.584657 -0.804248 0.106593 0.266127 -0.268257 -0.925859 0.825846 -0.431920 0.362523 -0.497146 -0.861094 0.106593 0.292776 -0.238887 -0.925859 0.866566 -0.342986 0.362523 -0.404159 -0.908457 0.106593 0.315994 -0.207203 -0.925859 0.897491 -0.251173 0.362523 -0.307666 -0.945505 0.106593 0.335970 -0.172943 -0.925859 0.918872 -0.155726 0.362523 -0.206876 -0.972543 0.106593 0.352245 -0.136779 -0.925859 0.930133 -0.058564 0.362523 -0.103807 -0.988869 0.106593 0.364560 -0.099404 -0.925859 0.931180 0.038485 0.362523 -0.000405 -0.994303 0.106593 0.372970 -0.060649 -0.925859 0.922018 0.135867 0.362523 0.103807 -0.988869 0.106593 0.377273 -0.021225 -0.925859 0.902700 0.231753 0.362523 0.206876 -0.972543 0.106593 0.377419 0.018433 -0.925859 0.873439 0.325086 0.362523 0.307666 -0.945505 0.106593 0.373467 0.057515 -0.925859 0.834972 0.414003 0.362523 0.404159 -0.908457 0.106593 0.365382 0.096340 -0.925859 0.786983 0.499234 0.362523 0.497146 -0.861094 0.106593 0.353272 0.134104 -0.925859 0.730325 0.578966 0.362523 0.584657 -0.804248 0.106593 0.337442 0.170053 -0.925859 0.666275 0.651655 0.362523 0.664989 -0.739207 0.106593 0.317761 0.204483 -0.925859 0.594307 0.717897 0.362523 0.738801 -0.665440 0.106593 0.294579 0.236661 -0.925859 0.515794 0.776231 0.362523 0.804475 -0.584344 0.106593 0.268153 0.266231 -0.925859 0.431599 0.826014 0.362523 0.861288 -0.496811 0.106593 0.239066 0.292630 -0.925859 0.343516 0.866357 0.362523 0.908209 -0.404714 0.106593 0.207080 0.316075 -0.925859 0.250823 0.897588 0.362523 0.945624 -0.307298 0.106593 0.172812 0.336037 -0.925859 0.155368 0.918933 0.362523 0.972624 -0.206498 0.106593 0.136994 0.352162 -0.925859 0.059132 0.930097 0.362523 0.988805 -0.104411 0.106593 0.099330 0.364580 -0.925859 -0.038674 0.931172 0.362523 0.994303 -0.000202 0.106593 0.060573 0.372983 -0.925859 -0.136055 0.921990 0.362523 0.988848 0.104009 0.106593 0.021148 0.377277 -0.925859 -0.231937 0.902653 0.362523 0.972501 0.207074 0.106593 -0.018133 0.377434 -0.925859 -0.324390 0.873698 0.362523 0.945750 0.306913 0.106593 -0.057591 0.373455 -0.925859 -0.414174 0.834888 0.362523 0.908374 0.404344 0.106593 -0.096414 0.365362 -0.925859 -0.499395 0.786881 0.362523 0.860993 0.497321 0.106593 -0.134176 0.353245 -0.925859 -0.579115 0.730207 0.362523 0.804128 0.584821 0.106593 -0.170122 0.337407 -0.925859 -0.651791 0.666142 0.362523 0.739072 0.665140 0.106593 -0.204548 0.317719 -0.925859 -0.718018 0.594161 0.362523 0.665290 0.738936 0.106593 -0.236721 0.294531 -0.925859 -0.776336 0.515636 0.362523 0.584180 0.804594 0.106593 -0.266018 0.268365 -0.925859 -0.825670 0.432256 0.362523 0.497497 0.860892 0.106593 -0.292679 0.239007 -0.925859 -0.866427 0.343339 0.362523 0.404529 0.908292 0.106593 -0.316117 0.207015 -0.925859 -0.897639 0.250641 0.362523 0.307106 0.945687 0.106593 -0.336073 0.172744 -0.925859 -0.918964 0.155181 0.362523 0.206300 0.972666 0.106593 -0.352190 0.136922 -0.925859 -0.930109 0.058943 0.362523 0.104210 0.988827 0.106593 -0.364600 0.099256 -0.925859 -0.931164 -0.038864 0.362523 0.000000 0.994303 0.106593 -0.372995 0.060497 -0.925859 -0.921962 -0.136243 0.362523 -0.104210 0.988827 0.106593 -0.377260 0.021448 -0.925859 -0.902837 -0.231218 0.362523 -0.206300 0.972666 0.106593 -0.377430 -0.018210 -0.925859 -0.873632 -0.324568 0.362523 -0.307106 0.945687 0.106593 -0.373443 -0.057667 -0.925859 -0.834803 -0.414344 0.362523 -0.404529 0.908292 0.106593 -0.365343 -0.096489 -0.925859 -0.786779 -0.499555 0.362523 -0.497497 0.860892 0.106593 -0.353352 -0.133894 -0.925859 -0.730668 -0.578533 0.362523 -0.584180 0.804594 0.106593 -0.337373 -0.170191 -0.925859 -0.666010 -0.651926 0.362523 -0.665290 0.738936 0.106593 -0.317677 -0.204613 -0.925859 -0.594015 -0.718139 0.362523 -0.739072 0.665140 0.106593 -0.294720 -0.236486 -0.925859 -0.516254 -0.775925 0.362523 -0.804128 0.584821 0.106593 -0.268311 -0.266072 -0.925859 -0.432088 -0.825758 0.362523 -0.860993 0.497321 0.106593 -0.238947 -0.292728 -0.925859 -0.343163 -0.866497 0.362523 -0.908374 0.404344 0.106593 -0.206951 -0.316159 -0.925859 -0.250458 -0.897690 0.362523 -0.945750 0.306913 0.106593 -0.173012 -0.335935 -0.925859 -0.155913 -0.918841 0.362523 -0.972501 0.207074 0.106593 -0.136850 -0.352218 -0.925859 -0.058753 -0.930121 0.362523 -0.988848 0.104009 0.106593 -0.581572 0.093540 -0.808099 -0.054505 -0.995615 -0.076020 -0.811667 -0.000165 0.584121 -0.588173 0.032072 -0.808099 0.050143 -0.995845 -0.076020 -0.807179 -0.085233 0.584121 -0.588324 -0.029161 -0.808099 0.153253 -0.985259 -0.076020 -0.793970 -0.168568 0.584121 -0.582028 -0.090661 -0.808099 0.255671 -0.963770 -0.076020 -0.771930 -0.250853 0.584121 -0.569321 -0.151162 -0.808099 0.355273 -0.931666 -0.076020 -0.741387 -0.330375 0.584121 -0.550552 -0.209448 -0.808099 0.450072 -0.889751 -0.076020 -0.703084 -0.405556 0.584121 -0.525568 -0.265996 -0.808099 0.540845 -0.837680 -0.076020 -0.656707 -0.477010 0.584121 -0.494795 -0.319615 -0.808099 0.625662 -0.776382 -0.076020 -0.603096 -0.543211 0.584121 -0.458572 -0.369713 -0.808099 0.703586 -0.706532 -0.076020 -0.542842 -0.603428 0.584121 -0.417714 -0.415321 -0.808099 0.773132 -0.629673 -0.076020 -0.477266 -0.656521 0.584121 -0.371885 -0.456813 -0.808099 0.834868 -0.545176 -0.076020 -0.405829 -0.702927 0.584121 -0.321959 -0.493273 -0.808099 0.887408 -0.454673 -0.076020 -0.329922 -0.741589 0.584121 -0.269012 -0.524031 -0.808099 0.929814 -0.360092 -0.076020 -0.251153 -0.771832 0.584121 -0.212608 -0.549339 -0.808099 0.962434 -0.260658 -0.076020 -0.168877 -0.793904 0.584121 -0.153862 -0.568597 -0.808099 0.984452 -0.158352 -0.076020 -0.084740 -0.807231 0.584121 -0.093896 -0.581515 -0.808099 0.995582 -0.055114 -0.076020 -0.000331 -0.811667 0.584121 -0.032432 -0.588153 -0.808099 0.995875 0.049534 -0.076020 0.084740 -0.807231 0.584121 0.029390 -0.588313 -0.808099 0.985199 0.153636 -0.076020 0.168877 -0.793904 0.584121 0.090887 -0.581993 -0.808099 0.963671 0.256046 -0.076020 0.251153 -0.771832 0.584121 0.150814 -0.569413 -0.808099 0.931883 0.354704 -0.076020 0.329922 -0.741589 0.584121 0.209662 -0.550470 -0.808099 0.889575 0.450418 -0.076020 0.405829 -0.702927 0.584121 0.266201 -0.525465 -0.808099 0.837469 0.541171 -0.076020 0.477266 -0.656521 0.584121 0.319312 -0.494990 -0.808099 0.776764 0.625187 -0.076020 0.542842 -0.603428 0.584121 0.369432 -0.458798 -0.808099 0.706962 0.703155 -0.076020 0.603096 -0.543211 0.584121 0.415483 -0.417552 -0.808099 0.629372 0.773377 -0.076020 0.656707 -0.477010 0.584121 0.456957 -0.371707 -0.808099 0.544851 0.835080 -0.076020 0.703084 -0.405556 0.584121 0.493076 -0.322261 -0.808099 0.455215 0.887130 -0.076020 0.741387 -0.330375 0.584121 0.524136 -0.268808 -0.808099 0.359730 0.929954 -0.076020 0.771930 -0.250853 0.584121 0.549422 -0.212394 -0.808099 0.260283 0.962535 -0.076020 0.793970 -0.168568 0.584121 0.568503 -0.154210 -0.808099 0.158954 0.984355 -0.076020 0.807179 -0.085233 0.584121 0.581534 -0.093777 -0.808099 0.054911 0.995593 -0.076020 0.811667 -0.000165 0.584121 0.588160 -0.032312 -0.808099 -0.049737 0.995865 -0.076020 0.807214 0.084904 0.584121 0.588307 0.029509 -0.808099 -0.153837 0.985168 -0.076020 0.793870 0.169038 0.584121 0.582065 0.090424 -0.808099 -0.255278 0.963874 -0.076020 0.772032 0.250539 0.584121 0.569382 0.150930 -0.808099 -0.354893 0.931811 -0.076020 0.741522 0.330073 0.584121 0.550428 0.209774 -0.808099 -0.450599 0.889484 -0.076020 0.702844 0.405972 0.584121 0.525410 0.266308 -0.808099 -0.541342 0.837359 -0.076020 0.656424 0.477399 0.584121 0.494925 0.319413 -0.808099 -0.625345 0.776636 -0.076020 0.603317 0.542965 0.584121 0.458723 0.369526 -0.808099 -0.703298 0.706818 -0.076020 0.543088 0.603207 0.584121 0.417468 0.415568 -0.808099 -0.773505 0.629215 -0.076020 0.476877 0.656804 0.584121 0.372071 0.456661 -0.808099 -0.834646 0.545516 -0.076020 0.406115 0.702761 0.584121 0.322160 0.493142 -0.808099 -0.887223 0.455034 -0.076020 0.330224 0.741455 0.584121 0.268701 0.524190 -0.808099 -0.930028 0.359541 -0.076020 0.250696 0.771981 0.584121 0.212282 0.549465 -0.808099 -0.962588 0.260087 -0.076020 0.168406 0.794004 0.584121 0.154094 0.568534 -0.808099 -0.984387 0.158753 -0.076020 0.085069 0.807197 0.584121 0.093659 0.581553 -0.808099 -0.995604 0.054708 -0.076020 0.000000 0.811667 0.584121 0.032192 0.588166 -0.808099 -0.995855 -0.049940 -0.076020 -0.085069 0.807197 0.584121 -0.029041 0.588330 -0.808099 -0.985290 -0.153052 -0.076020 -0.168406 0.794004 0.584121 -0.090542 0.582046 -0.808099 -0.963822 -0.255475 -0.076020 -0.250696 0.771981 0.584121 -0.151046 0.569351 -0.808099 -0.931739 -0.355083 -0.076020 -0.330224 0.741455 0.584121 -0.209886 0.550385 -0.808099 -0.889392 -0.450780 -0.076020 -0.406115 0.702761 0.584121 -0.265889 0.525622 -0.808099 -0.837790 -0.540675 -0.076020 -0.476877 0.656804 0.584121 -0.319514 0.494860 -0.808099 -0.776509 -0.625504 -0.076020 -0.543088 0.603207 0.584121 -0.369619 0.458648 -0.808099 -0.706675 -0.703442 -0.076020 -0.603317 0.542965 0.584121 -0.415235 0.417798 -0.808099 -0.629831 -0.773003 -0.076020 -0.656424 0.477399 0.584121 -0.456737 0.371978 -0.808099 -0.545346 -0.834757 -0.076020 -0.702844 0.405972 0.584121 -0.493207 0.322060 -0.808099 -0.454854 -0.887316 -0.076020 -0.741522 0.330073 0.584121 -0.524245 0.268594 -0.808099 -0.359352 -0.930101 -0.076020 -0.772032 0.250539 0.584121 -0.549296 0.212720 -0.808099 -0.260854 -0.962381 -0.076020 -0.793870 0.169038 0.584121 -0.568565 0.153978 -0.808099 -0.158553 -0.984420 -0.076020 -0.807214 0.084904 0.584121 0.179205 0.929072 -0.323592 0.450528 -0.369900 -0.812526 -0.874592 -0.000178 -0.484860 0.080845 0.942737 -0.323592 0.486815 -0.320644 -0.812526 -0.869756 -0.091841 -0.484860 -0.017460 0.946036 -0.323592 0.517471 -0.268374 -0.812526 -0.855523 -0.181636 -0.484860 -0.116515 0.938996 -0.323592 0.542749 -0.212661 -0.812526 -0.831774 -0.270301 -0.484860 -0.214287 0.921613 -0.323592 0.562048 -0.154606 -0.812526 -0.798864 -0.355988 -0.484860 -0.308804 0.894387 -0.323592 0.575061 -0.095423 -0.812526 -0.757591 -0.436997 -0.484860 -0.400842 0.857097 -0.323592 0.581895 -0.034627 -0.812526 -0.707619 -0.513991 -0.484860 -0.488464 0.810365 -0.323592 0.582320 0.026550 -0.812526 -0.649851 -0.585323 -0.484860 -0.570706 0.754708 -0.323592 0.576330 0.087435 -0.812526 -0.584926 -0.650209 -0.484860 -0.645970 0.691383 -0.323592 0.564139 0.146793 -0.812526 -0.514266 -0.707419 -0.484860 -0.714875 0.619873 -0.323592 0.545647 0.205111 -0.812526 -0.437291 -0.757421 -0.484860 -0.775905 0.541535 -0.323592 0.521145 0.261169 -0.812526 -0.355500 -0.799081 -0.484860 -0.827931 0.458061 -0.323592 0.491216 0.313859 -0.812526 -0.270624 -0.831669 -0.484860 -0.871379 0.368765 -0.323592 0.455616 0.363613 -0.812526 -0.181969 -0.855452 -0.484860 -0.905229 0.275407 -0.323592 0.414998 0.409363 -0.812526 -0.091309 -0.869812 -0.484860 -0.928962 0.179773 -0.323592 0.370175 0.450302 -0.812526 -0.000356 -0.874591 -0.484860 -0.942687 0.081421 -0.323592 0.320942 0.486619 -0.812526 0.091309 -0.869812 -0.484860 -0.946029 -0.017828 -0.323592 0.268173 0.517576 -0.812526 0.181969 -0.855452 -0.484860 -0.938950 -0.116881 -0.323592 0.212450 0.542831 -0.812526 0.270624 -0.831669 -0.484860 -0.921743 -0.213724 -0.323592 0.154950 0.561953 -0.812526 0.355500 -0.799081 -0.484860 -0.894267 -0.309152 -0.323592 0.095200 0.575098 -0.812526 0.437291 -0.757421 -0.484860 -0.856941 -0.401175 -0.323592 0.034401 0.581909 -0.812526 0.514266 -0.707419 -0.484860 -0.810663 -0.487969 -0.323592 -0.026195 0.582336 -0.812526 0.584926 -0.650209 -0.484860 -0.755056 -0.570245 -0.323592 -0.087083 0.576383 -0.812526 0.649851 -0.585323 -0.484860 -0.691132 -0.646239 -0.323592 -0.147013 0.564082 -0.812526 0.707619 -0.513991 -0.484860 -0.619595 -0.715116 -0.323592 -0.205323 0.545567 -0.812526 0.757591 -0.436997 -0.484860 -0.542009 -0.775574 -0.323592 -0.260850 0.521304 -0.812526 0.798864 -0.355988 -0.484860 -0.457739 -0.828109 -0.323592 -0.314050 0.491094 -0.812526 0.831774 -0.270301 -0.484860 -0.368426 -0.871522 -0.323592 -0.363791 0.455475 -0.812526 0.855523 -0.181636 -0.484860 -0.275960 -0.905060 -0.323592 -0.409109 0.415248 -0.812526 0.869756 -0.091841 -0.484860 -0.179583 -0.928999 -0.323592 -0.450377 0.370083 -0.812526 0.874592 -0.000178 -0.484860 -0.081229 -0.942704 -0.323592 -0.486684 0.320842 -0.812526 0.869793 0.091486 -0.484860 0.018021 -0.946025 -0.323592 -0.517630 0.268067 -0.812526 0.855415 0.182143 -0.484860 0.116133 -0.939043 -0.323592 -0.542662 0.212882 -0.812526 0.831884 0.269962 -0.484860 0.213912 -0.921700 -0.323592 -0.561985 0.154835 -0.812526 0.799009 0.355662 -0.484860 0.309334 -0.894204 -0.323592 -0.575118 0.095082 -0.812526 0.757332 0.437445 -0.484860 0.401350 -0.856859 -0.323592 -0.581916 0.034282 -0.812526 0.707314 0.514410 -0.484860 0.488134 -0.810564 -0.323592 -0.582330 -0.026313 -0.812526 0.650090 0.585059 -0.484860 0.570398 -0.754940 -0.323592 -0.576365 -0.087201 -0.812526 0.585191 0.649971 -0.484860 0.646380 -0.691000 -0.323592 -0.564052 -0.147128 -0.812526 0.513847 0.707723 -0.484860 0.714622 -0.620164 -0.323592 -0.545731 -0.204888 -0.812526 0.437600 0.757243 -0.484860 0.775684 -0.541851 -0.323592 -0.521251 -0.260956 -0.812526 0.355825 0.798936 -0.484860 0.828202 -0.457570 -0.323592 -0.491030 -0.314150 -0.812526 0.270131 0.831829 -0.484860 0.871597 -0.368248 -0.323592 -0.455401 -0.363883 -0.812526 0.181462 0.855559 -0.484860 0.905117 -0.275776 -0.323592 -0.415165 -0.409194 -0.812526 0.091663 0.869775 -0.484860 0.929035 -0.179394 -0.323592 -0.369992 -0.450452 -0.812526 0.000000 0.874592 -0.484860 0.942720 -0.081037 -0.323592 -0.320743 -0.486749 -0.812526 -0.091663 0.869775 -0.484860 0.946039 0.017267 -0.323592 -0.268480 -0.517417 -0.812526 -0.181462 0.855559 -0.484860 0.939019 0.116324 -0.323592 -0.212772 -0.542705 -0.812526 -0.270131 0.831829 -0.484860 0.921656 0.214099 -0.323592 -0.154721 -0.562017 -0.812526 -0.355825 0.798936 -0.484860 0.894141 0.309516 -0.323592 -0.094965 -0.575137 -0.812526 -0.437600 0.757243 -0.484860 0.857178 0.400667 -0.323592 -0.034746 -0.581888 -0.812526 -0.513847 0.707723 -0.484860 0.810465 0.488299 -0.323592 0.026432 -0.582325 -0.812526 -0.585191 0.649971 -0.484860 0.754824 0.570552 -0.323592 0.087318 -0.576348 -0.812526 -0.650090 0.585059 -0.484860 0.691515 0.645829 -0.323592 0.146678 -0.564169 -0.812526 -0.707314 0.514410 -0.484860 0.620019 0.714748 -0.323592 0.205000 -0.545689 -0.812526 -0.757332 0.437445 -0.484860 0.541693 0.775794 -0.323592 0.261063 -0.521198 -0.812526 -0.799009 0.355662 -0.484860 0.457401 0.828295 -0.323592 0.314250 -0.490966 -0.812526 -0.831884 0.269962 -0.484860 0.368942 0.871304 -0.323592 0.363521 -0.455691 -0.812526 -0.855415 0.182143 -0.484860 0.275592 0.905173 -0.323592 0.409278 -0.415081 -0.812526 -0.869793 0.091486 -0.484860 0.458213 0.824298 -0.332525 0.667262 -0.566156 -0.483971 -0.587198 -0.000120 -0.809443 0.369298 0.867782 -0.332525 0.722925 -0.493104 -0.483971 -0.583951 -0.061661 -0.809443 0.277215 0.901431 -0.332525 0.770209 -0.415391 -0.483971 -0.574395 -0.121950 -0.809443 0.181212 0.925521 -0.332525 0.809503 -0.332380 -0.483971 -0.558450 -0.181479 -0.809443 0.083213 0.939416 -0.332525 0.839881 -0.245708 -0.483971 -0.536354 -0.239009 -0.809443 -0.014760 0.942979 -0.332525 0.860850 -0.157190 -0.483971 -0.508644 -0.293398 -0.809443 -0.113509 0.936238 -0.332525 0.872584 -0.066101 -0.483971 -0.475093 -0.345092 -0.809443 -0.211009 0.919186 -0.332525 0.874706 0.025716 -0.483971 -0.436308 -0.392984 -0.809443 -0.306184 0.892008 -0.332525 0.867193 0.117250 -0.483971 -0.392718 -0.436548 -0.809443 -0.397131 0.855403 -0.332525 0.850336 0.206642 -0.483971 -0.345276 -0.474958 -0.809443 -0.484596 0.809069 -0.332525 0.823995 0.294625 -0.483971 -0.293596 -0.508530 -0.809443 -0.566724 0.753824 -0.332525 0.788578 0.379363 -0.483971 -0.238681 -0.536500 -0.809443 -0.641918 0.690918 -0.332525 0.744935 0.459178 -0.483971 -0.181696 -0.558380 -0.809443 -0.710796 0.619835 -0.332525 0.692707 0.534723 -0.483971 -0.122173 -0.574347 -0.809443 -0.771845 0.541925 -0.332525 0.632849 0.604379 -0.483971 -0.061305 -0.583989 -0.809443 -0.824018 0.458717 -0.332525 0.566564 0.666916 -0.483971 -0.000239 -0.587198 -0.809443 -0.867557 0.369828 -0.332525 0.493546 0.722623 -0.483971 0.061305 -0.583989 -0.809443 -0.901539 0.276865 -0.332525 0.415091 0.770371 -0.483971 0.122173 -0.574347 -0.809443 -0.925591 0.180852 -0.332525 0.332065 0.809632 -0.483971 0.181696 -0.558380 -0.809443 -0.939365 0.083787 -0.332525 0.246221 0.839730 -0.483971 0.238681 -0.536500 -0.809443 -0.942973 -0.015127 -0.332525 0.156855 0.860911 -0.483971 0.293596 -0.508530 -0.809443 -0.936194 -0.113874 -0.332525 0.065761 0.872609 -0.483971 0.345276 -0.474958 -0.809443 -0.919314 -0.210447 -0.332525 -0.025182 0.874722 -0.483971 0.392718 -0.436548 -0.809443 -0.892195 -0.305639 -0.332525 -0.116720 0.867265 -0.483971 0.436308 -0.392984 -0.809443 -0.855248 -0.397464 -0.332525 -0.206973 0.850255 -0.483971 0.475093 -0.345092 -0.809443 -0.808881 -0.484911 -0.332525 -0.294946 0.823880 -0.483971 0.508644 -0.293398 -0.809443 -0.754170 -0.566263 -0.332525 -0.378881 0.788810 -0.483971 0.536354 -0.239009 -0.809443 -0.690668 -0.642187 -0.332525 -0.459468 0.744756 -0.483971 0.558450 -0.181479 -0.809443 -0.619559 -0.711037 -0.332525 -0.534993 0.692499 -0.483971 0.574395 -0.121950 -0.809443 -0.542397 -0.771513 -0.332525 -0.603992 0.633218 -0.483971 0.583951 -0.061661 -0.809443 -0.458549 -0.824111 -0.332525 -0.667032 0.566428 -0.483971 0.587198 -0.000120 -0.809443 -0.369651 -0.867632 -0.332525 -0.722724 0.493399 -0.483971 0.583976 0.061424 -0.809443 -0.276681 -0.901595 -0.332525 -0.770455 0.414935 -0.483971 0.574323 0.122290 -0.809443 -0.181589 -0.925447 -0.332525 -0.809368 0.332710 -0.483971 0.558524 0.181251 -0.809443 -0.083596 -0.939382 -0.332525 -0.839781 0.246050 -0.483971 0.536452 0.238791 -0.809443 0.015319 -0.942970 -0.332525 -0.860943 0.156680 -0.483971 0.508470 0.293699 -0.809443 0.114064 -0.936171 -0.332525 -0.872623 0.065584 -0.483971 0.474888 0.345373 -0.809443 0.210634 -0.919271 -0.332525 -0.874716 -0.025360 -0.483971 0.436468 0.392807 -0.809443 0.305821 -0.892133 -0.332525 -0.867241 -0.116897 -0.483971 0.392895 0.436388 -0.809443 0.397638 -0.855167 -0.332525 -0.850213 -0.207146 -0.483971 0.344995 0.475163 -0.809443 0.484267 -0.809267 -0.332525 -0.824115 -0.294290 -0.483971 0.293803 0.508410 -0.809443 0.566417 -0.754055 -0.332525 -0.788733 -0.379042 -0.483971 0.238900 0.536403 -0.809443 0.642328 -0.690538 -0.332525 -0.744662 -0.459619 -0.483971 0.181365 0.558487 -0.809443 0.711163 -0.619414 -0.332525 -0.692390 -0.535134 -0.483971 0.121833 0.574420 -0.809443 0.771624 -0.542239 -0.332525 -0.633095 -0.604121 -0.483971 0.061543 0.583964 -0.809443 0.824205 -0.458381 -0.332525 -0.566292 -0.667147 -0.483971 0.000000 0.587198 -0.809443 0.867707 -0.369474 -0.332525 -0.493251 -0.722824 -0.483971 -0.061543 0.583964 -0.809443 0.901375 -0.277399 -0.332525 -0.415548 -0.770124 -0.483971 -0.121833 0.574420 -0.809443 0.925484 -0.181401 -0.332525 -0.332545 -0.809435 -0.483971 -0.181365 0.558487 -0.809443 0.939399 -0.083404 -0.332525 -0.245879 -0.839831 -0.483971 -0.238900 0.536403 -0.809443 0.942967 0.015511 -0.332525 -0.156504 -0.860975 -0.483971 -0.293803 0.508410 -0.809443 0.936262 0.113319 -0.332525 -0.066279 -0.872570 -0.483971 -0.344995 0.475163 -0.809443 0.919228 0.210822 -0.332525 0.025538 -0.874711 -0.483971 -0.392895 0.436388 -0.809443 0.892070 0.306002 -0.332525 0.117073 -0.867217 -0.483971 -0.436468 0.392807 -0.809443 0.855483 0.396957 -0.332525 0.206469 -0.850378 -0.483971 -0.474888 0.345373 -0.809443 0.809168 0.484432 -0.332525 0.294458 -0.824055 -0.483971 -0.508470 0.293699 -0.809443 0.753940 0.566570 -0.332525 0.379203 -0.788655 -0.483971 -0.536452 0.238791 -0.809443 0.690407 0.642468 -0.332525 0.459771 -0.744569 -0.483971 -0.558524 0.181251 -0.809443 0.619980 0.710670 -0.332525 0.534582 -0.692816 -0.483971 -0.574323 0.122290 -0.809443 0.542082 0.771734 -0.332525 0.604250 -0.632972 -0.483971 -0.583976 0.061424 -0.809443 -0.444701 0.326597 -0.834012 -0.153496 -0.945164 -0.288278 -0.882429 -0.000180 0.470446 -0.476481 0.278190 -0.834012 -0.053591 -0.956046 -0.288278 -0.877550 -0.092664 0.470446 -0.502786 0.227222 -0.834012 0.045948 -0.956444 -0.288278 -0.863189 -0.183264 0.470446 -0.523832 0.173275 -0.834012 0.145937 -0.946360 -0.288278 -0.839227 -0.272723 0.470446 -0.539107 0.117420 -0.834012 0.244319 -0.925853 -0.288278 -0.806022 -0.359178 0.470446 -0.548384 0.060819 -0.834012 0.339114 -0.895487 -0.288278 -0.764380 -0.440912 0.470446 -0.551738 0.003010 -0.834012 0.431100 -0.855014 -0.288278 -0.713959 -0.518596 0.470446 -0.549015 -0.054833 -0.834012 0.518337 -0.805122 -0.288278 -0.655675 -0.590568 0.470446 -0.540244 -0.112072 -0.834012 0.599865 -0.746363 -0.288278 -0.590168 -0.656035 0.470446 -0.525691 -0.167550 -0.834012 0.674106 -0.680057 -0.288278 -0.518874 -0.713758 0.470446 -0.505235 -0.221724 -0.834012 0.741668 -0.605660 -0.288278 -0.441210 -0.764208 0.470446 -0.479214 -0.273455 -0.834012 0.801061 -0.524592 -0.288278 -0.358685 -0.806241 0.470446 -0.448237 -0.321726 -0.834012 0.851192 -0.438598 -0.288278 -0.273049 -0.839121 0.470446 -0.412049 -0.366932 -0.834012 0.892472 -0.346971 -0.288278 -0.183599 -0.863117 0.470446 -0.371323 -0.408097 -0.834012 0.923922 -0.251523 -0.288278 -0.092127 -0.877606 0.470446 -0.326868 -0.444501 -0.834012 0.945070 -0.154074 -0.288278 -0.000359 -0.882429 0.470446 -0.278481 -0.476311 -0.834012 0.956013 -0.054175 -0.288278 0.092127 -0.877606 0.470446 -0.227027 -0.502875 -0.834012 0.956426 0.046320 -0.288278 0.183599 -0.863117 0.470446 -0.173071 -0.523899 -0.834012 0.946304 0.146306 -0.288278 0.273049 -0.839121 0.470446 -0.117749 -0.539035 -0.834012 0.926002 0.243753 -0.288278 0.358685 -0.806241 0.470446 -0.060606 -0.548408 -0.834012 0.895355 0.339462 -0.288278 0.441210 -0.764208 0.470446 -0.002795 -0.551739 -0.834012 0.854846 0.431433 -0.288278 0.518874 -0.713758 0.470446 0.054498 -0.549048 -0.834012 0.805439 0.517845 -0.288278 0.590168 -0.656035 0.470446 0.111742 -0.540313 -0.834012 0.746729 0.599409 -0.288278 0.655675 -0.590568 0.470446 0.167755 -0.525625 -0.834012 0.679794 0.674370 -0.288278 0.713959 -0.518596 0.470446 0.221920 -0.505149 -0.834012 0.605372 0.741904 -0.288278 0.764380 -0.440912 0.470446 0.273162 -0.479381 -0.834012 0.525082 0.800740 -0.288278 0.806022 -0.359178 0.470446 0.321900 -0.448112 -0.834012 0.438266 0.851363 -0.288278 0.839227 -0.272723 0.470446 0.367093 -0.411906 -0.834012 0.346624 0.892607 -0.288278 0.863189 -0.183264 0.470446 0.407870 -0.371572 -0.834012 0.252087 0.923768 -0.288278 0.877550 -0.092664 0.470446 0.444567 -0.326778 -0.834012 0.153881 0.945101 -0.288278 0.882429 -0.000180 0.470446 0.476368 -0.278384 -0.834012 0.053980 0.956024 -0.288278 0.877588 0.092306 0.470446 0.502921 -0.226924 -0.834012 -0.046515 0.956416 -0.288278 0.863080 0.183775 0.470446 0.523761 -0.173489 -0.834012 -0.145552 0.946420 -0.288278 0.839338 0.272381 0.470446 0.539059 -0.117639 -0.834012 -0.243942 0.925953 -0.288278 0.806168 0.358849 0.470446 0.548420 -0.060494 -0.834012 -0.339645 0.895286 -0.288278 0.764118 0.441365 0.470446 0.551740 -0.002683 -0.834012 -0.431607 0.854758 -0.288278 0.713652 0.519020 0.470446 0.549037 0.054609 -0.834012 -0.518009 0.805334 -0.288278 0.655915 0.590301 0.470446 0.540290 0.111852 -0.834012 -0.599561 0.746607 -0.288278 0.590435 0.655795 0.470446 0.525591 0.167862 -0.834012 -0.674509 0.679657 -0.288278 0.518451 0.714065 0.470446 0.505325 0.221518 -0.834012 -0.741421 0.605962 -0.288278 0.441521 0.764029 0.470446 0.479326 0.273260 -0.834012 -0.800847 0.524919 -0.288278 0.359014 0.806095 0.470446 0.448046 0.321992 -0.834012 -0.851452 0.438093 -0.288278 0.272552 0.839283 0.470446 0.411832 0.367177 -0.834012 -0.892678 0.346442 -0.288278 0.183088 0.863226 0.470446 0.371489 0.407946 -0.834012 -0.923820 0.251899 -0.288278 0.092485 0.877569 0.470446 0.326687 0.444634 -0.834012 -0.945133 0.153689 -0.288278 0.000000 0.882429 0.470446 0.278287 0.476424 -0.834012 -0.956035 0.053786 -0.288278 -0.092485 0.877569 0.470446 0.227325 0.502740 -0.834012 -0.956453 -0.045753 -0.288278 -0.183088 0.863226 0.470446 0.173382 0.523796 -0.834012 -0.946390 -0.145745 -0.288278 -0.272552 0.839283 0.470446 0.117529 0.539083 -0.834012 -0.925903 -0.244130 -0.288278 -0.359014 0.806095 0.470446 0.060382 0.548432 -0.834012 -0.895217 -0.339827 -0.288278 -0.441521 0.764029 0.470446 0.003122 0.551737 -0.834012 -0.855102 -0.430926 -0.288278 -0.518451 0.714065 0.470446 -0.054721 0.549026 -0.834012 -0.805228 -0.518173 -0.288278 -0.590435 0.655795 0.470446 -0.111962 0.540267 -0.834012 -0.746485 -0.599713 -0.288278 -0.655915 0.590301 0.470446 -0.167443 0.525725 -0.834012 -0.680194 -0.673967 -0.288278 -0.713652 0.519020 0.470446 -0.221621 0.505280 -0.834012 -0.605811 -0.741545 -0.288278 -0.764118 0.441365 0.470446 -0.273357 0.479270 -0.834012 -0.524755 -0.800954 -0.288278 -0.806168 0.358849 0.470446 -0.322083 0.447981 -0.834012 -0.437920 -0.851541 -0.288278 -0.839338 0.272381 0.470446 -0.366849 0.412124 -0.834012 -0.347153 -0.892402 -0.288278 -0.863080 0.183775 0.470446 -0.408022 0.371406 -0.834012 -0.251711 -0.923871 -0.288278 -0.877588 0.092306 0.470446 -0.019018 0.950793 -0.309244 -0.057706 -0.309828 -0.949040 -0.998152 -0.000203 0.060759 -0.118563 0.943563 -0.309244 -0.024916 -0.314170 -0.949040 -0.992634 -0.104816 0.060759 -0.215876 0.926156 -0.309244 0.007833 -0.315059 -0.949040 -0.976389 -0.207297 0.060759 -0.311755 0.898430 -0.309244 0.040811 -0.312503 -0.949040 -0.949286 -0.308488 0.060759 -0.404200 0.860808 -0.309244 0.073338 -0.306505 -0.949040 -0.911726 -0.406281 0.060759 -0.491379 0.814196 -0.309244 0.104761 -0.297235 -0.949040 -0.864622 -0.498735 0.060759 -0.574006 0.758212 -0.309244 0.135336 -0.284618 -0.949040 -0.807590 -0.586606 0.060759 -0.650311 0.693876 -0.309244 0.164421 -0.268867 -0.949040 -0.741661 -0.668017 0.060759 -0.719452 0.621897 -0.309244 0.191695 -0.250153 -0.949040 -0.667564 -0.742069 0.060759 -0.780126 0.543849 -0.309244 0.216628 -0.228901 -0.949040 -0.586921 -0.807361 0.060759 -0.832829 0.459091 -0.309244 0.239426 -0.204936 -0.949040 -0.499071 -0.864428 0.060759 -0.876358 0.369276 -0.309244 0.259586 -0.178714 -0.949040 -0.405724 -0.911974 0.060759 -0.909958 0.276304 -0.309244 0.276736 -0.150800 -0.949040 -0.308858 -0.949166 0.060759 -0.933905 0.179412 -0.309244 0.291017 -0.120966 -0.949040 -0.207677 -0.976309 0.060759 -0.947566 0.080544 -0.309244 0.302092 -0.089799 -0.949040 -0.104209 -0.992698 0.060759 -0.950804 -0.018437 -0.309244 0.309793 -0.057896 -0.949040 -0.000407 -0.998152 0.060759 -0.943635 -0.117986 -0.309244 0.314155 -0.025108 -0.949040 0.104209 -0.992698 0.060759 -0.926072 -0.216236 -0.309244 0.315056 0.007956 -0.949040 0.207677 -0.976309 0.060759 -0.898309 -0.312104 -0.309244 0.312487 0.040932 -0.949040 0.308858 -0.949166 0.060759 -0.861055 -0.403674 -0.309244 0.306549 0.073151 -0.949040 0.405724 -0.911974 0.060759 -0.814005 -0.491695 -0.309244 0.297194 0.104877 -0.949040 0.499071 -0.864428 0.060759 -0.757989 -0.574301 -0.309244 0.284566 0.135447 -0.949040 0.586921 -0.807361 0.060759 -0.694273 -0.649887 -0.309244 0.268967 0.164257 -0.949040 0.667564 -0.742069 0.060759 -0.622337 -0.719072 -0.309244 0.250270 0.191542 -0.949040 0.741661 -0.668017 0.060759 -0.543545 -0.780337 -0.309244 0.228817 0.216717 -0.949040 0.807590 -0.586606 0.060759 -0.458767 -0.833007 -0.309244 0.204843 0.239505 -0.949040 0.864622 -0.498735 0.060759 -0.369812 -0.876132 -0.309244 0.178873 0.259476 -0.949040 0.911726 -0.406281 0.060759 -0.275950 -0.910066 -0.309244 0.150693 0.276795 -0.949040 0.949286 -0.308488 0.060759 -0.179049 -0.933975 -0.309244 0.120853 0.291064 -0.949040 0.976389 -0.207297 0.060759 -0.081123 -0.947516 -0.309244 0.089984 0.302037 -0.949040 0.992634 -0.104816 0.060759 0.018630 -0.950800 -0.309244 0.057832 0.309805 -0.949040 0.998152 -0.000203 0.060759 0.118179 -0.943611 -0.309244 0.025044 0.314160 -0.949040 0.992676 0.104411 0.060759 0.216425 -0.926028 -0.309244 -0.008020 0.315054 -0.949040 0.976266 0.207876 0.060759 0.311389 -0.898557 -0.309244 -0.040683 0.312519 -0.949040 0.949411 0.308102 0.060759 0.403849 -0.860973 -0.309244 -0.073213 0.306534 -0.949040 0.911891 0.405910 0.060759 0.491861 -0.813905 -0.309244 -0.104937 0.297173 -0.949040 0.864327 0.499247 0.060759 0.574455 -0.757872 -0.309244 -0.135505 0.284538 -0.949040 0.807242 0.587085 0.060759 0.650028 -0.694141 -0.309244 -0.164312 0.268934 -0.949040 0.741933 0.667715 0.060759 0.719199 -0.622190 -0.309244 -0.191593 0.250231 -0.949040 0.667866 0.741797 0.060759 0.780448 -0.543387 -0.309244 -0.216764 0.228773 -0.949040 0.586442 0.807709 0.060759 0.832642 -0.459430 -0.309244 -0.239342 0.205034 -0.949040 0.499423 0.864225 0.060759 0.876207 -0.369633 -0.309244 -0.259513 0.178820 -0.949040 0.406096 0.911809 0.060759 0.910122 -0.275765 -0.309244 -0.276825 0.150636 -0.949040 0.308295 0.949349 0.060759 0.934012 -0.178858 -0.309244 -0.291088 0.120793 -0.949040 0.207098 0.976432 0.060759 0.947533 -0.080930 -0.309244 -0.302056 0.089922 -0.949040 0.104614 0.992655 0.060759 0.950796 0.018824 -0.309244 -0.309816 0.057769 -0.949040 0.000000 0.998152 0.060759 0.943587 0.118371 -0.309244 -0.314165 0.024980 -0.949040 -0.104614 0.992655 0.060759 0.926200 0.215687 -0.309244 -0.315061 -0.007769 -0.949040 -0.207098 0.976432 0.060759 0.898494 0.311572 -0.309244 -0.312511 -0.040747 -0.949040 -0.308295 0.949349 0.060759 0.860890 0.404025 -0.309244 -0.306519 -0.073276 -0.949040 -0.406096 0.911809 0.060759 0.813804 0.492027 -0.309244 -0.297152 -0.104998 -0.949040 -0.499423 0.864225 0.060759 0.758329 0.573852 -0.309244 -0.284646 -0.135279 -0.949040 -0.586442 0.807709 0.060759 0.694009 0.650169 -0.309244 -0.268900 -0.164366 -0.949040 -0.667866 0.741797 0.060759 0.622044 0.719326 -0.309244 -0.250192 -0.191644 -0.949040 -0.741933 0.667715 0.060759 0.544008 0.780015 -0.309244 -0.228945 -0.216581 -0.949040 -0.807242 0.587085 0.060759 0.459261 0.832735 -0.309244 -0.204985 -0.239384 -0.949040 -0.864327 0.499247 0.060759 0.369455 0.876283 -0.309244 -0.178767 -0.259549 -0.949040 -0.911891 0.405910 0.060759 0.275579 0.910178 -0.309244 -0.150580 -0.276856 -0.949040 -0.949411 0.308102 0.060759 0.179602 0.933869 -0.309244 -0.121025 -0.290992 -0.949040 -0.976266 0.207876 0.060759 0.080737 0.947549 -0.309244 -0.089861 -0.302074 -0.949040 -0.992676 0.104411 0.060759 -0.246925 0.921011 0.301276 0.583509 0.389537 -0.712585 -0.773657 -0.000158 -0.633605 -0.342093 0.890059 0.301276 0.539469 0.448548 -0.712585 -0.769380 -0.081242 -0.633605 -0.432644 0.849736 0.301276 0.489990 0.502128 -0.712585 -0.756789 -0.160674 -0.633605 -0.519320 0.799712 0.301276 0.434664 0.550717 -0.712585 -0.735781 -0.239106 -0.633605 -0.600276 0.740879 0.301276 0.374551 0.593240 -0.712585 -0.706669 -0.314904 -0.633605 -0.673945 0.674560 0.301276 0.310942 0.628918 -0.712585 -0.670159 -0.386564 -0.633605 -0.740932 0.600211 0.301276 0.243314 0.658043 -0.712585 -0.625954 -0.454672 -0.633605 -0.799757 0.519250 0.301276 0.173007 0.679920 -0.712585 -0.574854 -0.517773 -0.633605 -0.849774 0.432570 0.301276 0.100793 0.694308 -0.712585 -0.517421 -0.575170 -0.633605 -0.890089 0.342015 0.301276 0.028171 0.701020 -0.712585 -0.454916 -0.625777 -0.633605 -0.921032 0.246844 0.301276 -0.045456 0.700111 -0.712585 -0.386824 -0.670009 -0.633605 -0.941831 0.148954 0.301276 -0.118583 0.691491 -0.712585 -0.314472 -0.706861 -0.633605 -0.952205 0.050375 0.301276 -0.189727 0.675445 -0.712585 -0.239392 -0.735688 -0.633605 -0.952241 -0.049700 0.301276 -0.259474 0.651840 -0.712585 -0.160968 -0.756726 -0.633605 -0.941787 -0.149228 0.301276 -0.326362 0.621055 -0.712585 -0.080771 -0.769429 -0.633605 -0.921161 -0.246362 0.301276 -0.389181 0.583747 -0.712585 -0.000315 -0.773657 -0.633605 -0.890268 -0.341550 0.301276 -0.448218 0.539743 -0.712585 0.080771 -0.769429 -0.633605 -0.849568 -0.432975 0.301276 -0.502319 0.489794 -0.712585 0.160968 -0.756726 -0.633605 -0.799510 -0.519631 0.301276 -0.550886 0.434450 -0.712585 0.239392 -0.735688 -0.633605 -0.741246 -0.599823 0.301276 -0.593011 0.374914 -0.712585 0.314472 -0.706861 -0.633605 -0.674298 -0.674207 0.301276 -0.629039 0.310697 -0.712585 0.386824 -0.670009 -0.633605 -0.599922 -0.741165 0.301276 -0.658137 0.243058 -0.712585 0.454916 -0.625777 -0.633605 -0.519738 -0.799440 0.301276 -0.679814 0.173422 -0.712585 0.517421 -0.575170 -0.633605 -0.433089 -0.849510 0.301276 -0.694246 0.101217 -0.712585 0.574854 -0.517773 -0.633605 -0.341669 -0.890222 0.301276 -0.701031 0.027898 -0.712585 0.625954 -0.454672 -0.633605 -0.246486 -0.921128 0.301276 -0.700094 -0.045728 -0.712585 0.670159 -0.386564 -0.633605 -0.149529 -0.941740 0.301276 -0.691564 -0.118160 -0.712585 0.706669 -0.314904 -0.633605 -0.050005 -0.952225 0.301276 -0.675371 -0.189990 -0.712585 0.735781 -0.239106 -0.633605 0.050071 -0.952221 0.301276 -0.651739 -0.259727 -0.712585 0.756789 -0.160674 -0.633605 0.148653 -0.941878 0.301276 -0.621255 -0.325983 -0.712585 0.769380 -0.081242 -0.633605 0.246550 -0.921111 0.301276 -0.583668 -0.389299 -0.712585 0.773657 -0.000158 -0.633605 0.341731 -0.890198 0.301276 -0.539652 -0.448328 -0.712585 0.769413 0.080928 -0.633605 0.433148 -0.849479 0.301276 -0.489692 -0.502418 -0.712585 0.756693 0.161122 -0.633605 0.518994 -0.799923 0.301276 -0.434889 -0.550540 -0.712585 0.735878 0.238806 -0.633605 0.599974 -0.741124 0.301276 -0.374793 -0.593087 -0.712585 0.706797 0.314616 -0.633605 0.674344 -0.674160 0.301276 -0.310569 -0.629102 -0.712585 0.669930 0.386961 -0.633605 0.741287 -0.599771 0.301276 -0.242924 -0.658187 -0.712585 0.625684 0.455043 -0.633605 0.799546 -0.519576 0.301276 -0.173284 -0.679849 -0.712585 0.575064 0.517538 -0.633605 0.849598 -0.432916 0.301276 -0.101076 -0.694266 -0.712585 0.517656 0.574959 -0.633605 0.890291 -0.341488 0.301276 -0.027755 -0.701036 -0.712585 0.454545 0.626046 -0.633605 0.920932 -0.247219 0.301276 0.045171 -0.700130 -0.712585 0.387097 0.669851 -0.633605 0.941770 -0.149337 0.301276 0.118301 -0.691540 -0.712585 0.314760 0.706733 -0.633605 0.952235 -0.049811 0.301276 0.190128 -0.675332 -0.712585 0.238956 0.735830 -0.633605 0.952211 0.050265 0.301276 0.259860 -0.651686 -0.712585 0.160520 0.756821 -0.633605 0.941848 0.148845 0.301276 0.326109 -0.621188 -0.712585 0.081085 0.769396 -0.633605 0.921061 0.246737 0.301276 0.389418 -0.583589 -0.712585 0.000000 0.773657 -0.633605 0.890128 0.341912 0.301276 0.448438 -0.539561 -0.712585 -0.081085 0.769396 -0.633605 0.849824 0.432471 0.301276 0.502028 -0.490092 -0.712585 -0.160520 0.756821 -0.633605 0.799818 0.519157 0.301276 0.550628 -0.434777 -0.712585 -0.238956 0.735830 -0.633605 0.741001 0.600125 0.301276 0.593164 -0.374672 -0.712585 -0.314760 0.706733 -0.633605 0.674023 0.674482 0.301276 0.629165 -0.310441 -0.712585 -0.387097 0.669851 -0.633605 0.600361 0.740810 0.301276 0.657993 -0.243448 -0.712585 -0.454545 0.626046 -0.633605 0.519413 0.799652 0.301276 0.679885 -0.173145 -0.712585 -0.517656 0.574959 -0.633605 0.432743 0.849686 0.301276 0.694287 -0.100935 -0.712585 -0.575064 0.517538 -0.633605 0.342197 0.890019 0.301276 0.701014 -0.028314 -0.712585 -0.625684 0.455043 -0.633605 0.247032 0.920982 0.301276 0.700121 0.045314 -0.712585 -0.669930 0.386961 -0.633605 0.149146 0.941801 0.301276 0.691516 0.118442 -0.712585 -0.706797 0.314616 -0.633605 0.049617 0.952245 0.301276 0.675294 0.190265 -0.712585 -0.735878 0.238806 -0.633605 -0.049506 0.952251 0.301276 0.651893 0.259341 -0.712585 -0.756693 0.161122 -0.633605 -0.149036 0.941818 0.301276 0.621122 0.326236 -0.712585 -0.769413 0.080928 -0.633605 -0.233382 -0.875419 0.423290 -0.423000 0.483365 0.766440 -0.875559 -0.000178 -0.483110 -0.140346 -0.895058 0.423290 -0.471330 0.436369 0.766440 -0.870719 -0.091942 -0.483110 -0.046670 -0.904791 0.423290 -0.514084 0.385081 0.766440 -0.856469 -0.181837 -0.483110 0.048416 -0.904700 0.423290 -0.551612 0.329081 0.766440 -0.832694 -0.270600 -0.483110 0.142968 -0.894643 0.423290 -0.583064 0.269456 0.766440 -0.799748 -0.356382 -0.483110 0.235071 -0.874967 0.423290 -0.607887 0.207470 0.766440 -0.758430 -0.437480 -0.483110 0.325479 -0.845511 0.423290 -0.626283 0.142617 0.766440 -0.708402 -0.514560 -0.483110 0.412302 -0.806742 0.423290 -0.637781 0.076193 0.766440 -0.650571 -0.585971 -0.483110 0.494584 -0.759087 0.423290 -0.642254 0.008929 0.766440 -0.585574 -0.650928 -0.483110 0.570714 -0.703641 0.423290 -0.639711 -0.057794 0.766440 -0.514835 -0.708201 -0.483110 0.641318 -0.639951 0.423290 -0.630130 -0.124522 0.766440 -0.437775 -0.758259 -0.483110 0.704857 -0.569212 0.423290 -0.613609 -0.189878 0.766440 -0.355893 -0.799965 -0.483110 0.760140 -0.492963 0.423290 -0.590582 -0.252552 0.766440 -0.270924 -0.832589 -0.483110 0.807620 -0.410580 0.423290 -0.560860 -0.313059 0.766440 -0.182170 -0.856398 -0.483110 0.846204 -0.323674 0.423290 -0.524961 -0.370117 0.766440 -0.091410 -0.870775 -0.483110 0.875276 -0.233917 0.423290 -0.483623 -0.422704 0.766440 -0.000357 -0.875559 -0.483110 0.894972 -0.140893 0.423290 -0.436657 -0.471063 0.766440 0.091410 -0.870775 -0.483110 0.904810 -0.046318 0.423290 -0.384881 -0.514234 0.766440 0.182170 -0.856398 -0.483110 0.904681 0.048768 0.423290 -0.328866 -0.551740 0.766440 0.270924 -0.832589 -0.483110 0.894730 0.142422 0.423290 -0.269812 -0.582899 0.766440 0.355893 -0.799965 -0.483110 0.874875 0.235411 0.423290 -0.207234 -0.607967 0.766440 0.437775 -0.758259 -0.483110 0.845384 0.325808 0.423290 -0.142373 -0.626338 0.766440 0.514835 -0.708201 -0.483110 0.806994 0.411809 0.423290 -0.076582 -0.637734 0.766440 0.585574 -0.650928 -0.483110 0.759389 0.494120 0.423290 -0.009321 -0.642249 0.766440 0.650571 -0.585971 -0.483110 0.703419 0.570988 0.423290 0.058042 -0.639688 0.766440 0.708402 -0.514560 -0.483110 0.639701 0.641567 0.423290 0.124767 -0.630082 0.766440 0.758430 -0.437480 -0.483110 0.569642 0.704509 0.423290 0.189503 -0.613725 0.766440 0.799748 -0.356382 -0.483110 0.492667 0.760332 0.423290 0.252782 -0.590484 0.766440 0.832694 -0.270600 -0.483110 0.410266 0.807779 0.423290 0.313277 -0.560738 0.766440 0.856469 -0.181837 -0.483110 0.324191 0.846006 0.423290 0.369796 -0.525187 0.766440 0.870719 -0.091942 -0.483110 0.233738 0.875324 0.423290 0.422803 -0.483537 0.766440 0.875559 -0.000178 -0.483110 0.140711 0.895001 0.423290 0.471152 -0.436561 0.766440 0.870756 0.091588 -0.483110 0.046133 0.904819 0.423290 0.514312 -0.384777 0.766440 0.856361 0.182345 -0.483110 -0.048047 0.904719 0.423290 0.551478 -0.329306 0.766440 0.832805 0.270261 -0.483110 -0.142604 0.894701 0.423290 0.582954 -0.269693 0.766440 0.799893 0.356056 -0.483110 -0.235590 0.874828 0.423290 0.608009 -0.207110 0.766440 0.758170 0.437929 -0.483110 -0.325980 0.845318 0.423290 0.626367 -0.142246 0.766440 0.708097 0.514979 -0.483110 -0.411974 0.806910 0.423290 0.637750 -0.076452 0.766440 0.650809 0.585706 -0.483110 -0.494275 0.759288 0.423290 0.642250 -0.009190 0.766440 0.585839 0.650690 -0.483110 -0.571131 0.703303 0.423290 0.639676 0.058173 0.766440 0.514415 0.708506 -0.483110 -0.641057 0.640212 0.423290 0.630181 0.124265 0.766440 0.438084 0.758081 -0.483110 -0.704625 0.569499 0.423290 0.613687 0.189628 0.766440 0.356219 0.799820 -0.483110 -0.760432 0.492512 0.423290 0.590432 0.252902 0.766440 0.270430 0.832750 -0.483110 -0.807863 0.410101 0.423290 0.560675 0.313391 0.766440 0.181663 0.856506 -0.483110 -0.846072 0.324019 0.423290 0.525111 0.369903 0.766440 0.091765 0.870737 -0.483110 -0.875372 0.233560 0.423290 0.483451 0.422901 0.766440 0.000000 0.875559 -0.483110 -0.895029 0.140529 0.423290 0.436465 0.471241 0.766440 -0.091765 0.870737 -0.483110 -0.904782 0.046854 0.423290 0.385186 0.514006 0.766440 -0.181663 0.856506 -0.483110 -0.904710 -0.048232 0.423290 0.329193 0.551545 0.766440 -0.270430 0.832750 -0.483110 -0.894672 -0.142786 0.423290 0.269574 0.583009 0.766440 -0.356219 0.799820 -0.483110 -0.874780 -0.235768 0.423290 0.206986 0.608052 0.766440 -0.438084 0.758081 -0.483110 -0.845577 -0.325307 0.423290 0.142744 0.626254 0.766440 -0.514415 0.708506 -0.483110 -0.806826 -0.412138 0.423290 0.076322 0.637766 0.766440 -0.585839 0.650690 -0.483110 -0.759187 -0.494429 0.423290 0.009060 0.642252 0.766440 -0.650809 0.585706 -0.483110 -0.703757 -0.570571 0.423290 -0.057663 0.639723 0.766440 -0.708097 0.514979 -0.483110 -0.640081 -0.641187 0.423290 -0.124393 0.630156 0.766440 -0.758170 0.437929 -0.483110 -0.569355 -0.704741 0.423290 -0.189753 0.613648 0.766440 -0.799893 0.356056 -0.483110 -0.492358 -0.760532 0.423290 -0.253023 0.590381 0.766440 -0.832805 0.270261 -0.483110 -0.410744 -0.807536 0.423290 -0.312944 0.560924 0.766440 -0.856361 0.182345 -0.483110 -0.323847 -0.846138 0.423290 -0.370010 0.525036 0.766440 -0.870756 0.091588 -0.483110 0.010260 -0.866526 -0.499027 -0.017404 -0.499132 0.866351 -0.999796 -0.000204 -0.020202 0.101022 -0.860678 -0.499027 0.035004 -0.498207 0.866351 -0.994268 -0.104988 -0.020202 0.189825 -0.845541 -0.499027 0.086535 -0.491881 0.866351 -0.977997 -0.207639 -0.020202 0.277398 -0.820989 -0.499027 0.137611 -0.480103 0.866351 -0.950849 -0.308996 -0.020202 0.361916 -0.787394 -0.499027 0.187172 -0.463036 0.866351 -0.913227 -0.406950 -0.020202 0.441702 -0.745568 -0.499027 0.234230 -0.441103 0.866351 -0.866046 -0.499556 -0.020202 0.517410 -0.695168 -0.499027 0.279170 -0.414125 0.866351 -0.808919 -0.587572 -0.020202 0.587419 -0.637112 -0.499027 0.321036 -0.382585 0.866351 -0.742883 -0.669117 -0.020202 0.650958 -0.572037 -0.499027 0.359366 -0.346831 0.866351 -0.668663 -0.743291 -0.020202 0.706825 -0.501368 -0.499027 0.393429 -0.307651 0.866351 -0.587887 -0.808691 -0.020202 0.755480 -0.424527 -0.499027 0.423507 -0.264722 0.866351 -0.499893 -0.865852 -0.020202 0.795812 -0.343009 -0.499027 0.448919 -0.218878 0.866351 -0.406392 -0.913475 -0.020202 0.827121 -0.258540 -0.499027 0.469216 -0.171092 0.866351 -0.309366 -0.950728 -0.020202 0.849663 -0.170428 -0.499027 0.484563 -0.120972 0.866351 -0.208019 -0.977916 -0.020202 0.862845 -0.080439 -0.499027 0.494573 -0.069520 0.866351 -0.104381 -0.994332 -0.020202 0.866532 0.009731 -0.499027 0.499121 -0.017709 0.866351 -0.000407 -0.999796 -0.020202 0.860740 0.100496 -0.499027 0.498228 0.034700 0.866351 0.104381 -0.994332 -0.020202 0.845467 0.190154 -0.499027 0.491848 0.086727 0.866351 0.208019 -0.977916 -0.020202 0.820881 0.277718 -0.499027 0.480049 0.137798 0.866351 0.309366 -0.950728 -0.020202 0.787615 0.361435 -0.499027 0.463150 0.186889 0.866351 0.406392 -0.913475 -0.020202 0.745396 0.441992 -0.499027 0.441012 0.234401 0.866351 0.499893 -0.865852 -0.020202 0.694967 0.517681 -0.499027 0.414017 0.279331 0.866351 0.587887 -0.808691 -0.020202 0.637470 0.587030 -0.499027 0.382781 0.320802 0.866351 0.668663 -0.743291 -0.020202 0.572434 0.650608 -0.499027 0.347051 0.359154 0.866351 0.742883 -0.669117 -0.020202 0.501093 0.707020 -0.499027 0.307498 0.393549 0.866351 0.808919 -0.587572 -0.020202 0.424233 0.755645 -0.499027 0.264557 0.423610 0.866351 0.866046 -0.499556 -0.020202 0.343495 0.795603 -0.499027 0.219152 0.448785 0.866351 0.913227 -0.406950 -0.020202 0.258219 0.827222 -0.499027 0.170909 0.469282 0.866351 0.950849 -0.308996 -0.020202 0.170098 0.849729 -0.499027 0.120784 0.484610 0.866351 0.977997 -0.207639 -0.020202 0.080966 0.862796 -0.499027 0.069822 0.494531 0.866351 0.994268 -0.104988 -0.020202 -0.009907 0.866530 -0.499027 0.017607 0.499125 0.866351 0.999796 -0.000204 -0.020202 -0.100671 0.860719 -0.499027 -0.034801 0.498221 0.866351 0.994311 0.104583 -0.020202 -0.190326 0.845428 -0.499027 -0.086827 0.491830 0.866351 0.977874 0.208218 -0.020202 -0.277064 0.821102 -0.499027 -0.137416 0.480159 0.866351 0.950974 0.308609 -0.020202 -0.361595 0.787541 -0.499027 -0.186983 0.463112 0.866351 0.913393 0.406578 -0.020202 -0.442144 0.745306 -0.499027 -0.234491 0.440965 0.866351 0.865750 0.500069 -0.020202 -0.517822 0.694862 -0.499027 -0.279416 0.413960 0.866351 0.808571 0.588052 -0.020202 -0.587160 0.637351 -0.499027 -0.320880 0.382716 0.866351 0.743155 0.668814 -0.020202 -0.650725 0.572302 -0.499027 -0.359224 0.346978 0.866351 0.668966 0.743019 -0.020202 -0.707122 0.500949 -0.499027 -0.393612 0.307418 0.866351 0.587408 0.809039 -0.020202 -0.755307 0.424834 -0.499027 -0.423399 0.264895 0.866351 0.500245 0.865648 -0.020202 -0.795673 0.343333 -0.499027 -0.448830 0.219060 0.866351 0.406764 0.913310 -0.020202 -0.827274 0.258050 -0.499027 -0.469317 0.170813 0.866351 0.308802 0.950912 -0.020202 -0.849764 0.169925 -0.499027 -0.484635 0.120685 0.866351 0.207439 0.978039 -0.020202 -0.862812 0.080790 -0.499027 -0.494545 0.069722 0.866351 0.104786 0.994290 -0.020202 -0.866528 -0.010084 -0.499027 -0.499128 0.017506 0.866351 0.000000 0.999796 -0.020202 -0.860699 -0.100846 -0.499027 -0.498214 -0.034903 0.866351 -0.104786 0.994290 -0.020202 -0.845579 -0.189653 -0.499027 -0.491899 -0.086435 0.866351 -0.207439 0.978039 -0.020202 -0.821045 -0.277231 -0.499027 -0.480131 -0.137514 0.866351 -0.308802 0.950912 -0.020202 -0.787468 -0.361756 -0.499027 -0.463074 -0.187077 0.866351 -0.406764 0.913310 -0.020202 -0.745216 -0.442296 -0.499027 -0.440917 -0.234581 0.866351 -0.500245 0.865648 -0.020202 -0.695274 -0.517269 -0.499027 -0.414182 -0.279086 0.866351 -0.587408 0.809039 -0.020202 -0.637231 -0.587290 -0.499027 -0.382651 -0.320958 0.866351 -0.668966 0.743019 -0.020202 -0.572169 -0.650841 -0.499027 -0.346905 -0.359295 0.866351 -0.743155 0.668814 -0.020202 -0.501512 -0.706723 -0.499027 -0.307731 -0.393367 0.866351 -0.808571 0.588052 -0.020202 -0.424681 -0.755393 -0.499027 -0.264808 -0.423453 0.866351 -0.865750 0.500069 -0.020202 -0.343171 -0.795742 -0.499027 -0.218969 -0.448874 0.866351 -0.913393 0.406578 -0.020202 -0.257882 -0.827327 -0.499027 -0.170718 -0.469352 0.866351 -0.950974 0.308609 -0.020202 -0.170601 -0.849628 -0.499027 -0.121071 -0.484538 0.866351 -0.977874 0.208218 -0.020202 -0.080615 -0.862829 -0.499027 -0.069621 -0.494559 0.866351 -0.994311 0.104583 -0.020202 -0.660705 0.696572 0.279743 0.641402 0.717487 -0.271691 -0.389964 -0.000079 -0.920830 -0.730072 0.623489 0.279743 0.562672 0.780759 -0.271691 -0.387808 -0.040950 -0.920830 -0.790853 0.544330 0.279743 0.478579 0.834953 -0.271691 -0.381462 -0.080988 -0.920830 -0.843547 0.458445 0.279743 0.388434 0.880513 -0.271691 -0.370873 -0.120522 -0.920830 -0.886950 0.367510 0.279743 0.294011 0.916374 -0.271691 -0.356199 -0.158728 -0.920830 -0.920310 0.273448 0.279743 0.197291 0.941945 -0.271691 -0.337796 -0.194849 -0.920830 -0.943900 0.175487 0.279743 0.097482 0.957435 -0.271691 -0.315514 -0.229179 -0.920830 -0.957094 0.075593 0.279743 -0.003401 0.962379 -0.271691 -0.289757 -0.260985 -0.920830 -0.959746 -0.025134 0.279743 -0.104246 0.956722 -0.271691 -0.260808 -0.289916 -0.920830 -0.951951 -0.124632 0.279743 -0.203003 0.940731 -0.271691 -0.229302 -0.315425 -0.920830 -0.933646 -0.223717 0.279743 -0.300480 0.914273 -0.271691 -0.194980 -0.337720 -0.920830 -0.905057 -0.320337 0.279743 -0.394648 0.877746 -0.271691 -0.158511 -0.356295 -0.920830 -0.866912 -0.412563 0.279743 -0.483636 0.832034 -0.271691 -0.120666 -0.370826 -0.920830 -0.818898 -0.501149 0.279743 -0.568176 0.776763 -0.271691 -0.081137 -0.381430 -0.920830 -0.761863 -0.584216 0.279743 -0.646457 0.712936 -0.271691 -0.040713 -0.387833 -0.920830 -0.696976 -0.660279 0.279743 -0.717095 0.641841 -0.271691 -0.000159 -0.389964 -0.920830 -0.623935 -0.729691 0.279743 -0.780415 0.563149 -0.271691 0.040713 -0.387833 -0.920830 -0.544022 -0.791065 0.279743 -0.835139 0.478254 -0.271691 0.081137 -0.381430 -0.920830 -0.458117 -0.843726 0.279743 -0.880664 0.388092 -0.271691 0.120666 -0.370826 -0.920830 -0.368052 -0.886725 0.279743 -0.916194 0.294571 -0.271691 0.158511 -0.356295 -0.920830 -0.273090 -0.920416 0.279743 -0.942022 0.196925 -0.271691 0.194980 -0.337720 -0.920830 -0.175120 -0.943969 0.279743 -0.957473 0.097110 -0.271691 0.229302 -0.315425 -0.920830 -0.076177 -0.957048 0.279743 -0.962381 -0.002813 -0.271691 0.260808 -0.289916 -0.920830 0.024548 -0.959761 0.279743 -0.956786 -0.103662 -0.271691 0.289757 -0.260985 -0.920830 0.125002 -0.951902 0.279743 -0.940652 -0.203369 -0.271691 0.315514 -0.229179 -0.920830 0.224080 -0.933559 0.279743 -0.914157 -0.300835 -0.271691 0.337796 -0.194849 -0.920830 0.319784 -0.905252 0.279743 -0.877987 -0.394111 -0.271691 0.356199 -0.158728 -0.920830 0.412900 -0.866751 0.279743 -0.831846 -0.483960 -0.271691 0.370873 -0.120522 -0.920830 0.501468 -0.818703 0.279743 -0.776542 -0.568478 -0.271691 0.381462 -0.080988 -0.920830 0.583750 -0.762220 0.279743 -0.713331 -0.646021 -0.271691 0.387808 -0.040950 -0.920830 0.660421 -0.696841 0.279743 -0.641695 -0.717225 -0.271691 0.389964 -0.000079 -0.920830 0.729818 -0.623787 0.279743 -0.562990 -0.780530 -0.271691 0.387825 0.040792 -0.920830 0.791176 -0.543861 0.279743 -0.478084 -0.835236 -0.271691 0.381414 0.081214 -0.920830 0.843361 -0.458788 0.279743 -0.388793 -0.880355 -0.271691 0.370922 0.120371 -0.920830 0.886800 -0.367871 0.279743 -0.294384 -0.916254 -0.271691 0.356263 0.158583 -0.920830 0.920472 -0.272902 0.279743 -0.196733 -0.942062 -0.271691 0.337680 0.195049 -0.920830 0.944004 -0.174927 0.279743 -0.096915 -0.957492 -0.271691 0.315378 0.229366 -0.920830 0.957063 -0.075983 0.279743 0.003009 -0.962380 -0.271691 0.289863 0.260867 -0.920830 0.959756 0.024743 0.279743 0.103856 -0.956764 -0.271691 0.260926 0.289810 -0.920830 0.951877 0.125196 0.279743 0.203560 -0.940610 -0.271691 0.229115 0.315561 -0.920830 0.933737 0.223336 0.279743 0.300108 -0.914396 -0.271691 0.195118 0.337641 -0.920830 0.905187 0.319969 0.279743 0.394290 -0.877906 -0.271691 0.158656 0.356231 -0.920830 0.866667 0.413077 0.279743 0.484129 -0.831747 -0.271691 0.120447 0.370897 -0.920830 0.818600 0.501634 0.279743 0.568636 -0.776426 -0.271691 0.080910 0.381478 -0.920830 0.762101 0.583905 0.279743 0.646166 -0.713199 -0.271691 0.040871 0.387816 -0.920830 0.696707 0.660563 0.279743 0.717356 -0.641548 -0.271691 0.000000 0.389964 -0.920830 0.623638 0.729945 0.279743 0.780644 -0.562831 -0.271691 -0.040871 0.387816 -0.920830 0.544491 0.790742 0.279743 0.834855 -0.478749 -0.271691 -0.080910 0.381478 -0.920830 0.458617 0.843454 0.279743 0.880434 -0.388614 -0.271691 -0.120447 0.370897 -0.920830 0.367691 0.886875 0.279743 0.916314 -0.294198 -0.271691 -0.158656 0.356231 -0.920830 0.272715 0.920527 0.279743 0.942102 -0.196541 -0.271691 -0.195118 0.337641 -0.920830 0.175679 0.943865 0.279743 0.957415 -0.097677 -0.271691 -0.229115 0.315561 -0.920830 0.075788 0.957079 0.279743 0.962379 0.003205 -0.271691 -0.260926 0.289810 -0.920830 -0.024938 0.959751 0.279743 0.956743 0.104051 -0.271691 -0.289863 0.260867 -0.920830 -0.124438 0.951976 0.279743 0.940772 0.202811 -0.271691 -0.315378 0.229366 -0.920830 -0.223527 0.933691 0.279743 0.914335 0.300294 -0.271691 -0.337680 0.195049 -0.920830 -0.320153 0.905122 0.279743 0.877826 0.394469 -0.271691 -0.356263 0.158583 -0.920830 -0.413253 0.866583 0.279743 0.831648 0.484299 -0.271691 -0.370922 0.120371 -0.920830 -0.500982 0.819000 0.279743 0.776879 0.568018 -0.271691 -0.381414 0.081214 -0.920830 -0.584060 0.761982 0.279743 0.713068 0.646312 -0.271691 -0.387825 0.040792 -0.920830 -0.433976 -0.626705 -0.647230 0.349198 -0.779257 0.520403 -0.830497 -0.000169 0.557023 -0.365902 -0.668737 -0.647230 0.428947 -0.738367 0.520403 -0.825906 -0.087210 0.557023 -0.294502 -0.703109 -0.647230 0.503281 -0.689847 0.520403 -0.812390 -0.172479 0.557023 -0.219189 -0.730102 -0.647230 0.572810 -0.633300 0.520403 -0.789839 -0.256673 0.557023 -0.141462 -0.749054 -0.647230 0.636030 -0.569778 0.520403 -0.758587 -0.338040 0.557023 -0.062936 -0.759692 -0.647230 0.691743 -0.500672 0.520403 -0.719396 -0.414965 0.557023 0.017031 -0.762105 -0.647230 0.740407 -0.425415 0.520403 -0.671943 -0.488077 0.557023 0.096811 -0.756122 -0.647230 0.780916 -0.345472 0.520403 -0.617088 -0.555813 0.557023 0.175525 -0.741812 -0.647230 0.812823 -0.261723 0.520403 -0.555436 -0.617427 0.557023 0.251586 -0.719582 -0.647230 0.835602 -0.175928 0.520403 -0.488338 -0.671753 0.557023 0.325618 -0.689251 -0.647230 0.849438 -0.087382 0.520403 -0.415244 -0.719234 0.557023 0.396063 -0.651327 -0.647230 0.853918 0.002127 0.520403 -0.337576 -0.758794 0.557023 0.461539 -0.606692 -0.647230 0.849084 0.090762 0.520403 -0.256980 -0.789739 0.557023 0.522583 -0.554978 -0.647230 0.834895 0.179253 0.520403 -0.172795 -0.812323 0.557023 0.577870 -0.497151 -0.647230 0.811510 0.265768 0.520403 -0.086706 -0.825959 0.557023 0.626439 -0.434358 -0.647230 0.779470 0.348722 0.520403 -0.000338 -0.830497 0.557023 0.668513 -0.366311 -0.647230 0.738629 0.428495 0.520403 0.086706 -0.825959 0.557023 0.703223 -0.294229 -0.647230 0.689651 0.503549 0.520403 0.172795 -0.812323 0.557023 0.730188 -0.218905 -0.647230 0.633078 0.573056 0.520403 0.256980 -0.789739 0.557023 0.748967 -0.141920 -0.647230 0.570167 0.635681 0.520403 0.337576 -0.758794 0.557023 0.759717 -0.062641 -0.647230 0.500403 0.691938 0.520403 0.415244 -0.719234 0.557023 0.762098 0.017328 -0.647230 0.425126 0.740573 0.520403 0.488338 -0.671753 0.557023 0.756181 0.096350 -0.647230 0.345949 0.780705 0.520403 0.555436 -0.617427 0.557023 0.741919 0.175072 -0.647230 0.262220 0.812663 0.520403 0.617088 -0.555813 0.557023 0.719484 0.251866 -0.647230 0.175603 0.835670 0.520403 0.671943 -0.488077 0.557023 0.689124 0.325886 -0.647230 0.087052 0.849472 0.520403 0.719396 -0.414965 0.557023 0.651569 0.395665 -0.647230 -0.001605 0.853919 0.520403 0.758587 -0.338040 0.557023 0.606512 0.461775 -0.647230 -0.091093 0.849048 0.520403 0.789839 -0.256673 0.557023 0.554775 0.522799 -0.647230 -0.179577 0.834825 0.520403 0.812390 -0.172479 0.557023 0.497504 0.577567 -0.647230 -0.265273 0.811672 0.520403 0.825906 -0.087210 0.557023 0.434231 0.626528 -0.647230 -0.348881 0.779399 0.520403 0.830497 -0.000169 0.557023 0.366175 0.668588 -0.647230 -0.428646 0.738541 0.520403 0.825941 0.086874 0.557023 0.294085 0.703283 -0.647230 -0.503689 0.689549 0.520403 0.812287 0.172960 0.557023 0.219487 0.730013 -0.647230 -0.572552 0.633534 0.520403 0.789943 0.256351 0.557023 0.141767 0.748996 -0.647230 -0.635797 0.570037 0.520403 0.758725 0.337731 0.557023 0.062486 0.759730 -0.647230 -0.692040 0.500262 0.520403 0.719150 0.415391 0.557023 -0.017483 0.762094 -0.647230 -0.740659 0.424976 0.520403 0.671653 0.488475 0.557023 -0.096503 0.756162 -0.647230 -0.780775 0.345790 0.520403 0.617314 0.555562 0.557023 -0.175223 0.741883 -0.647230 -0.812717 0.262054 0.520403 0.555688 0.617201 0.557023 -0.252013 0.719432 -0.647230 -0.835706 0.175433 0.520403 0.487940 0.672042 0.557023 -0.325337 0.689383 -0.647230 -0.849402 0.087728 0.520403 0.415537 0.719065 0.557023 -0.395798 0.651489 -0.647230 -0.853919 -0.001779 0.520403 0.337885 0.758656 0.557023 -0.461899 0.606418 -0.647230 -0.849030 -0.091266 0.520403 0.256512 0.789891 0.557023 -0.522912 0.554668 -0.647230 -0.834788 -0.179747 0.520403 0.172313 0.812425 0.557023 -0.577668 0.497386 -0.647230 -0.811618 -0.265438 0.520403 0.087042 0.825923 0.557023 -0.626616 0.434103 -0.647230 -0.779328 -0.349039 0.520403 0.000000 0.830497 0.557023 -0.668662 0.366039 -0.647230 -0.738454 -0.428796 0.520403 -0.087042 0.825923 0.557023 -0.703049 0.294645 -0.647230 -0.689950 -0.503140 0.520403 -0.172313 0.812425 0.557023 -0.730058 0.219338 -0.647230 -0.633417 -0.572681 0.520403 -0.256512 0.789891 0.557023 -0.749025 0.141615 -0.647230 -0.569908 -0.635913 0.520403 -0.337885 0.758656 0.557023 -0.759742 0.062332 -0.647230 -0.500121 -0.692142 0.520403 -0.415537 0.719065 0.557023 -0.762108 -0.016876 -0.647230 -0.425565 -0.740321 0.520403 -0.487940 0.672042 0.557023 -0.756142 -0.096657 -0.647230 -0.345631 -0.780846 0.520403 -0.555688 0.617201 0.557023 -0.741847 -0.175374 -0.647230 -0.261889 -0.812770 0.520403 -0.617314 0.555562 0.557023 -0.719633 -0.251440 -0.647230 -0.176098 -0.835566 0.520403 -0.671653 0.488475 0.557023 -0.689317 -0.325478 -0.647230 -0.087555 -0.849420 0.520403 -0.719150 0.415391 0.557023 -0.651408 -0.395930 -0.647230 0.001953 -0.853918 0.520403 -0.758725 0.337731 0.557023 -0.606324 -0.462022 -0.647230 0.091439 -0.849011 0.520403 -0.789943 0.256351 0.557023 -0.555084 -0.522470 -0.647230 0.179083 -0.834931 0.520403 -0.812287 0.172960 0.557023 -0.497269 -0.577769 -0.647230 0.265603 -0.811564 0.520403 -0.825941 0.086874 0.557023 0.234136 0.963551 -0.129417 0.843478 -0.267523 -0.465807 -0.483451 -0.000098 -0.875372 0.131860 0.982784 -0.129417 0.866871 -0.177647 -0.465807 -0.480778 -0.050767 -0.875372 0.029122 0.991162 -0.129417 0.880629 -0.086695 -0.465807 -0.472910 -0.100404 -0.875372 -0.074919 0.988756 -0.129417 0.884866 0.006078 -0.465807 -0.459782 -0.149415 -0.875372 -0.178135 0.975458 -0.129417 0.879355 0.098785 -0.465807 -0.441590 -0.196781 -0.875372 -0.278438 0.951695 -0.129417 0.864349 0.189540 -0.465807 -0.418776 -0.241560 -0.875372 -0.376649 0.917271 -0.129417 0.839723 0.279086 -0.465807 -0.391153 -0.284120 -0.875372 -0.470711 0.872744 -0.129417 0.805848 0.365558 -0.465807 -0.359221 -0.323551 -0.875372 -0.559588 0.818604 -0.129417 0.763097 0.448003 -0.465807 -0.323332 -0.359418 -0.875372 -0.641546 0.756088 -0.129417 0.712466 0.524802 -0.465807 -0.284272 -0.391042 -0.875372 -0.717257 0.684685 -0.129417 0.653539 0.596583 -0.465807 -0.241723 -0.418682 -0.875372 -0.785066 0.605741 -0.129417 0.587413 0.661793 -0.465807 -0.196511 -0.441711 -0.875372 -0.843708 0.520968 -0.129417 0.515537 0.719198 -0.465807 -0.149594 -0.459724 -0.875372 -0.893663 0.429673 -0.129417 0.437321 0.769269 -0.465807 -0.100588 -0.472871 -0.875372 -0.933773 0.333644 -0.129417 0.354287 0.810867 -0.465807 -0.050473 -0.480809 -0.875372 -0.963408 0.234725 -0.129417 0.268039 0.843315 -0.465807 -0.000197 -0.483451 -0.875372 -0.982703 0.132460 -0.129417 0.178177 0.866762 -0.465807 0.050473 -0.480809 -0.875372 -0.991174 0.028736 -0.129417 0.086353 0.880663 -0.465807 0.100588 -0.472871 -0.875372 -0.988727 -0.075304 -0.129417 -0.006423 0.884863 -0.465807 0.149594 -0.459724 -0.875372 -0.975567 -0.177539 -0.129417 -0.098248 0.879415 -0.465807 0.196511 -0.441711 -0.875372 -0.951587 -0.278808 -0.129417 -0.189876 0.864275 -0.465807 0.241723 -0.418682 -0.875372 -0.917125 -0.377006 -0.129417 -0.279412 0.839615 -0.465807 0.284272 -0.391042 -0.875372 -0.873031 -0.470178 -0.129417 -0.365065 0.806072 -0.465807 0.323332 -0.359418 -0.875372 -0.818945 -0.559088 -0.129417 -0.447537 0.763371 -0.465807 0.359221 -0.323551 -0.875372 -0.755839 -0.641841 -0.129417 -0.525079 0.712261 -0.465807 0.391153 -0.284120 -0.875372 -0.684407 -0.717523 -0.129417 -0.596837 0.653307 -0.465807 0.418776 -0.241560 -0.875372 -0.606221 -0.784696 -0.129417 -0.661434 0.587818 -0.465807 0.441590 -0.196781 -0.875372 -0.520640 -0.843911 -0.129417 -0.719398 0.515257 -0.465807 0.459782 -0.149415 -0.875372 -0.429325 -0.893830 -0.129417 -0.769439 0.437021 -0.465807 0.472910 -0.100404 -0.875372 -0.334214 -0.933569 -0.129417 -0.810650 0.354783 -0.465807 0.480778 -0.050767 -0.875372 -0.234529 -0.963456 -0.129417 -0.843369 0.267867 -0.465807 0.483451 -0.000098 -0.875372 -0.132260 -0.982730 -0.129417 -0.866799 0.178000 -0.465807 0.480799 0.050571 -0.875372 -0.028535 -0.991180 -0.129417 -0.880681 0.086173 -0.465807 0.472850 0.100684 -0.875372 0.074517 -0.988786 -0.129417 -0.884868 -0.005718 -0.465807 0.459843 0.149228 -0.875372 0.177738 -0.975531 -0.129417 -0.879395 -0.098427 -0.465807 0.441671 0.196601 -0.875372 0.279002 -0.951530 -0.129417 -0.864236 -0.190052 -0.465807 0.418633 0.241808 -0.875372 0.377192 -0.917048 -0.129417 -0.839558 -0.279583 -0.465807 0.390984 0.284352 -0.875372 0.470356 -0.872936 -0.129417 -0.805997 -0.365229 -0.465807 0.359352 0.323405 -0.875372 0.559255 -0.818831 -0.129417 -0.763280 -0.447692 -0.465807 0.323478 0.359286 -0.875372 0.641994 -0.755708 -0.129417 -0.712155 -0.525224 -0.465807 0.284041 0.391210 -0.875372 0.716978 -0.684978 -0.129417 -0.653782 -0.596317 -0.465807 0.241893 0.418584 -0.875372 0.784819 -0.606061 -0.129417 -0.587683 -0.661553 -0.465807 0.196691 0.441631 -0.875372 0.844017 -0.520468 -0.129417 -0.515111 -0.719503 -0.465807 0.149321 0.459813 -0.875372 0.893917 -0.429143 -0.129417 -0.436865 -0.769528 -0.465807 0.100307 0.472930 -0.875372 0.933637 -0.334024 -0.129417 -0.354618 -0.810722 -0.465807 0.050669 0.480788 -0.875372 0.963504 -0.234333 -0.129417 -0.267695 -0.843424 -0.465807 0.000000 0.483451 -0.875372 0.982757 -0.132060 -0.129417 -0.177824 -0.866835 -0.465807 -0.050669 0.480788 -0.875372 0.991157 -0.029324 -0.129417 -0.086875 -0.880612 -0.465807 -0.100307 0.472930 -0.875372 0.988771 0.074718 -0.129417 0.005898 -0.884867 -0.465807 -0.149321 0.459813 -0.875372 0.975495 0.177937 -0.129417 0.098606 -0.879375 -0.465807 -0.196691 0.441631 -0.875372 0.951473 0.279196 -0.129417 0.190228 -0.864198 -0.465807 -0.241893 0.418584 -0.875372 0.917348 0.376462 -0.129417 0.278915 -0.839780 -0.465807 -0.284041 0.391210 -0.875372 0.872840 0.470533 -0.129417 0.365394 -0.805923 -0.465807 -0.323478 0.359286 -0.875372 0.818718 0.559422 -0.129417 0.447848 -0.763188 -0.465807 -0.359352 0.323405 -0.875372 0.756219 0.641392 -0.129417 0.524656 -0.712573 -0.465807 -0.390984 0.284352 -0.875372 0.684832 0.717117 -0.129417 0.596450 -0.653660 -0.465807 -0.418633 0.241808 -0.875372 0.605901 0.784943 -0.129417 0.661673 -0.587548 -0.465807 -0.441671 0.196601 -0.875372 0.520296 0.844123 -0.129417 0.719608 -0.514964 -0.465807 -0.459843 0.149228 -0.875372 0.429855 0.893575 -0.129417 0.769180 -0.437477 -0.465807 -0.472850 0.100684 -0.875372 0.333834 0.933706 -0.129417 0.810794 -0.354453 -0.465807 -0.480799 0.050571 -0.875372 -0.184310 0.189603 -0.964407 -0.035391 -0.981861 -0.186271 -0.982231 -0.000200 0.187677 -0.203166 0.169242 -0.964407 0.067710 -0.980163 -0.186271 -0.976800 -0.103144 0.187677 -0.219638 0.147236 -0.964407 0.169097 -0.967837 -0.186271 -0.960815 -0.203991 0.187677 -0.233860 0.123406 -0.964407 0.269602 -0.944785 -0.186271 -0.934144 -0.303567 0.187677 -0.245506 0.098216 -0.964407 0.367138 -0.911325 -0.186271 -0.897183 -0.399801 0.187677 -0.254375 0.072199 -0.964407 0.459761 -0.868287 -0.186271 -0.850831 -0.490779 0.187677 -0.260541 0.045141 -0.964407 0.548231 -0.815319 -0.186271 -0.794708 -0.577249 0.187677 -0.263838 0.017586 -0.964407 0.630663 -0.753370 -0.186271 -0.729831 -0.657361 0.187677 -0.264228 -0.010163 -0.964407 0.706149 -0.683123 -0.186271 -0.656915 -0.730233 0.187677 -0.261745 -0.037539 -0.964407 0.773250 -0.606125 -0.186271 -0.577559 -0.794483 0.187677 -0.256369 -0.064765 -0.964407 0.832518 -0.521744 -0.186271 -0.491110 -0.850640 0.187677 -0.248169 -0.091277 -0.964407 0.882615 -0.431617 -0.186271 -0.399252 -0.897427 0.187677 -0.237353 -0.116547 -0.964407 0.922654 -0.337659 -0.186271 -0.303931 -0.934025 0.187677 -0.223830 -0.140781 -0.964407 0.952961 -0.239098 -0.186271 -0.204364 -0.960735 0.187677 -0.207843 -0.163465 -0.964407 0.972772 -0.137904 -0.186271 -0.102547 -0.976863 0.187677 -0.189716 -0.184194 -0.964407 0.981839 -0.035991 -0.186271 -0.000400 -0.982231 0.187677 -0.169366 -0.203063 -0.964407 0.980204 0.067111 -0.186271 0.102547 -0.976863 0.187677 -0.147151 -0.219695 -0.964407 0.967772 0.169474 -0.186271 0.204364 -0.960735 0.187677 -0.123315 -0.233908 -0.964407 0.944680 0.269970 -0.186271 0.303931 -0.934025 0.187677 -0.098366 -0.245446 -0.964407 0.911549 0.366581 -0.186271 0.399252 -0.897427 0.187677 -0.072100 -0.254403 -0.964407 0.868109 0.460099 -0.186271 0.491110 -0.850640 0.187677 -0.045039 -0.260559 -0.964407 0.815106 0.548549 -0.186271 0.577559 -0.794483 0.187677 -0.017747 -0.263827 -0.964407 0.753755 0.630203 -0.186271 0.656915 -0.730233 0.187677 0.010002 -0.264234 -0.964407 0.683554 0.705731 -0.186271 0.729831 -0.657361 0.187677 0.037640 -0.261730 -0.964407 0.605824 0.773486 -0.186271 0.794708 -0.577249 0.187677 0.064864 -0.256344 -0.964407 0.521421 0.832721 -0.186271 0.850831 -0.490779 0.187677 0.091126 -0.248225 -0.964407 0.432156 0.882351 -0.186271 0.897183 -0.399801 0.187677 0.116639 -0.237307 -0.964407 0.337300 0.922785 -0.186271 0.934144 -0.303567 0.187677 0.140869 -0.223776 -0.964407 0.238727 0.953054 -0.186271 0.960815 -0.203991 0.187677 0.163338 -0.207943 -0.964407 0.138499 0.972688 -0.186271 0.976800 -0.103144 0.187677 0.184232 -0.189678 -0.964407 0.035791 0.981846 -0.186271 0.982231 -0.000200 0.187677 0.203097 -0.169325 -0.964407 -0.067311 0.980190 -0.186271 0.976842 0.102746 0.187677 0.219725 -0.147106 -0.964407 -0.169671 0.967737 -0.186271 0.960694 0.204560 0.187677 0.233810 -0.123501 -0.964407 -0.269217 0.944894 -0.186271 0.934267 0.303187 0.187677 0.245466 -0.098316 -0.964407 -0.366766 0.911474 -0.186271 0.897346 0.399435 0.187677 0.254418 -0.072048 -0.964407 -0.460275 0.868015 -0.186271 0.850540 0.491283 0.187677 0.260568 -0.044986 -0.964407 -0.548715 0.814994 -0.186271 0.794365 0.577720 0.187677 0.263830 -0.017693 -0.964407 -0.630356 0.753627 -0.186271 0.730099 0.657064 0.187677 0.264232 0.010056 -0.964407 -0.705870 0.683411 -0.186271 0.657213 0.729965 0.187677 0.261723 0.037694 -0.964407 -0.773609 0.605667 -0.186271 0.577088 0.794825 0.187677 0.256395 0.064660 -0.964407 -0.832305 0.522084 -0.186271 0.491457 0.850440 0.187677 0.248206 0.091176 -0.964407 -0.882439 0.431977 -0.186271 0.399618 0.897264 0.187677 0.237283 0.116688 -0.964407 -0.922854 0.337112 -0.186271 0.303377 0.934205 0.187677 0.223747 0.140914 -0.964407 -0.953103 0.238533 -0.186271 0.203795 0.960856 0.187677 0.207909 0.163381 -0.964407 -0.972716 0.138300 -0.186271 0.102945 0.976821 0.187677 0.189641 0.184271 -0.964407 -0.981854 0.035591 -0.186271 0.000000 0.982231 0.187677 0.169283 0.203132 -0.964407 -0.980176 -0.067510 -0.186271 -0.102945 0.976821 0.187677 0.147281 0.219608 -0.964407 -0.967872 -0.168900 -0.186271 -0.203795 0.960856 0.187677 0.123453 0.233835 -0.964407 -0.944839 -0.269410 -0.186271 -0.303377 0.934205 0.187677 0.098266 0.245486 -0.964407 -0.911400 -0.366952 -0.186271 -0.399618 0.897264 0.187677 0.071996 0.254433 -0.964407 -0.867921 -0.460452 -0.186271 -0.491457 0.850440 0.187677 0.045194 0.260532 -0.964407 -0.815431 -0.548065 -0.186271 -0.577088 0.794825 0.187677 0.017639 0.263834 -0.964407 -0.753499 -0.630510 -0.186271 -0.657213 0.729965 0.187677 -0.010110 0.264230 -0.964407 -0.683267 -0.706010 -0.186271 -0.730099 0.657064 0.187677 -0.037485 0.261752 -0.964407 -0.606282 -0.773127 -0.186271 -0.794365 0.577720 0.187677 -0.064712 0.256382 -0.964407 -0.521914 -0.832411 -0.186271 -0.850540 0.491283 0.187677 -0.091227 0.248188 -0.964407 -0.431797 -0.882527 -0.186271 -0.897346 0.399435 0.187677 -0.116736 0.237260 -0.964407 -0.336924 -0.922922 -0.186271 -0.934267 0.303187 0.187677 -0.140736 0.223859 -0.964407 -0.239292 -0.952913 -0.186271 -0.960694 0.204560 0.187677 -0.163423 0.207876 -0.964407 -0.138102 -0.972744 -0.186271 -0.976842 0.102746 0.187677 -0.459528 -0.881676 -0.107153 0.858664 -0.471856 0.200122 -0.227004 -0.000046 0.973894 -0.364591 -0.924982 -0.107153 0.903389 -0.379263 0.200122 -0.225749 -0.023838 0.973894 -0.266597 -0.957833 -0.107153 0.937880 -0.283430 0.200122 -0.222054 -0.047144 0.973894 -0.164740 -0.980499 -0.107153 0.962420 -0.183573 0.200122 -0.215890 -0.070158 0.973894 -0.061070 -0.992365 -0.107153 0.976359 -0.081693 0.200122 -0.207348 -0.092398 0.973894 0.042280 -0.993343 -0.107153 0.979565 0.020106 0.200122 -0.196636 -0.113424 0.973894 0.146157 -0.983441 -0.107153 0.972062 0.122661 0.200122 -0.183665 -0.133408 0.973894 0.248423 -0.962707 -0.107153 0.953853 0.223864 0.200122 -0.168672 -0.151923 0.973894 0.347954 -0.931368 -0.107153 0.925137 0.322602 0.200122 -0.151820 -0.168764 0.973894 0.442762 -0.890214 -0.107153 0.886648 0.416900 0.200122 -0.133480 -0.183613 0.973894 0.533624 -0.838906 -0.107153 0.838071 0.507531 0.200122 -0.113501 -0.196592 0.973894 0.618608 -0.778358 -0.107153 0.780262 0.592572 0.200122 -0.092271 -0.207405 0.973894 0.696069 -0.709934 -0.107153 0.714530 0.670371 0.200122 -0.070242 -0.215863 0.973894 0.766642 -0.633071 -0.107153 0.640335 0.741567 0.200122 -0.047231 -0.222036 0.973894 0.828770 -0.549234 -0.107153 0.559087 0.804595 0.200122 -0.023700 -0.225763 0.973894 0.881395 -0.460067 -0.107153 0.472380 0.858375 0.200122 -0.000092 -0.227004 0.973894 0.924759 -0.365156 -0.107153 0.379815 0.903157 0.200122 0.023700 -0.225763 0.973894 0.957937 -0.266224 -0.107153 0.283065 0.937990 0.200122 0.047231 -0.222036 0.973894 0.980563 -0.164359 -0.107153 0.183198 0.962491 0.200122 0.070242 -0.215863 0.973894 0.992328 -0.061676 -0.107153 0.082290 0.976309 0.200122 0.092271 -0.207405 0.973894 0.993327 0.042667 -0.107153 -0.020487 0.979557 0.200122 0.113501 -0.196592 0.973894 0.983384 0.146539 -0.107153 -0.123039 0.972015 0.200122 0.133480 -0.183613 0.973894 0.962858 0.247835 -0.107153 -0.223282 0.953990 0.200122 0.151820 -0.168764 0.973894 0.931580 0.347385 -0.107153 -0.322037 0.925334 0.200122 0.168672 -0.151923 0.973894 0.890041 0.443108 -0.107153 -0.417245 0.886486 0.200122 0.183665 -0.133408 0.973894 0.838699 0.533950 -0.107153 -0.507857 0.837874 0.200122 0.196636 -0.113424 0.973894 0.778736 0.618133 -0.107153 -0.592095 0.780624 0.200122 0.207348 -0.092398 0.973894 0.709663 0.696346 -0.107153 -0.670649 0.714269 0.200122 0.215890 -0.070158 0.973894 0.632772 0.766888 -0.107153 -0.741816 0.640047 0.200122 0.222054 -0.047144 0.973894 0.549741 0.828434 -0.107153 -0.804253 0.559579 0.200122 0.225749 -0.023838 0.973894 0.459887 0.881489 -0.107153 -0.858471 0.472205 0.200122 0.227004 -0.000046 0.973894 0.364968 0.924833 -0.107153 -0.903234 0.379631 0.200122 0.225758 0.023746 0.973894 0.266029 0.957991 -0.107153 -0.938047 0.282874 0.200122 0.222026 0.047276 0.973894 0.165140 0.980432 -0.107153 -0.962345 0.183965 0.200122 0.215919 0.070070 0.973894 0.061474 0.992340 -0.107153 -0.976326 0.082091 0.200122 0.207386 0.092314 0.973894 -0.042869 0.993318 -0.107153 -0.979552 -0.020687 0.200122 0.196569 0.113541 0.973894 -0.146740 0.983354 -0.107153 -0.971990 -0.123237 0.200122 0.183586 0.133517 0.973894 -0.248031 0.962808 -0.107153 -0.953944 -0.223476 0.200122 0.168733 0.151854 0.973894 -0.347575 0.931510 -0.107153 -0.925268 -0.322225 0.200122 0.151889 0.168702 0.973894 -0.443289 0.889951 -0.107153 -0.886401 -0.417426 0.200122 0.133371 0.183692 0.973894 -0.533282 0.839124 -0.107153 -0.838278 -0.507190 0.200122 0.113581 0.196545 0.973894 -0.618291 0.778610 -0.107153 -0.780504 -0.592254 0.200122 0.092356 0.207367 0.973894 -0.696490 0.709521 -0.107153 -0.714133 -0.670795 0.200122 0.070114 0.215905 0.973894 -0.767017 0.632616 -0.107153 -0.639896 -0.741946 0.200122 0.047099 0.222064 0.973894 -0.828546 0.549572 -0.107153 -0.559415 -0.804367 0.200122 0.023792 0.225754 0.973894 -0.881582 0.459708 -0.107153 -0.472030 -0.858568 0.200122 0.000000 0.227004 0.973894 -0.924908 0.364780 -0.107153 -0.379447 -0.903311 0.200122 -0.023792 0.225754 0.973894 -0.957779 0.266792 -0.107153 -0.283621 -0.937822 0.200122 -0.047099 0.222064 0.973894 -0.980466 0.164940 -0.107153 -0.183769 -0.962382 0.200122 -0.070114 0.215905 0.973894 -0.992353 0.061272 -0.107153 -0.081892 -0.976342 0.200122 -0.092356 0.207367 0.973894 -0.993309 -0.043071 -0.107153 0.020886 -0.979548 0.200122 -0.113581 0.196545 0.973894 -0.983471 -0.145957 -0.107153 0.122463 -0.972087 0.200122 -0.133371 0.183692 0.973894 -0.962757 -0.248227 -0.107153 0.223670 -0.953899 0.200122 -0.151889 0.168702 0.973894 -0.931439 -0.347764 -0.107153 0.322414 -0.925203 0.200122 -0.168733 0.151854 0.973894 -0.890304 -0.442580 -0.107153 0.416720 -0.886733 0.200122 -0.183586 0.133517 0.973894 -0.839015 -0.533453 -0.107153 0.507361 -0.838174 0.200122 -0.196569 0.113541 0.973894 -0.778484 -0.618450 -0.107153 0.592413 -0.780383 0.200122 -0.207386 0.092314 0.973894 -0.709379 -0.696635 -0.107153 0.670940 -0.713996 0.200122 -0.215919 0.070070 0.973894 -0.633227 -0.766513 -0.107153 0.741437 -0.640486 0.200122 -0.222026 0.047276 0.973894 -0.549403 -0.828658 -0.107153 0.804481 -0.559251 0.200122 -0.225758 0.023746 0.973894 0.023192 -0.756010 -0.654149 -0.026476 -0.654559 0.755547 -0.999380 -0.000204 -0.035196 0.102299 -0.749416 -0.654149 0.042273 -0.653729 0.755547 -0.993855 -0.104945 -0.035196 0.179546 -0.734747 -0.654149 0.109910 -0.645809 0.755547 -0.977591 -0.207552 -0.035196 0.255563 -0.711883 -0.654149 0.176990 -0.630733 0.755547 -0.950454 -0.308868 -0.035196 0.328766 -0.681177 -0.654149 0.242120 -0.608709 0.755547 -0.912847 -0.406781 -0.035196 0.397705 -0.643367 -0.654149 0.304004 -0.580285 0.755547 -0.865686 -0.499348 -0.035196 0.462944 -0.598141 -0.654149 0.363147 -0.545228 0.755547 -0.808583 -0.587328 -0.035196 0.523084 -0.546327 -0.654149 0.418291 -0.504164 0.755547 -0.742574 -0.668839 -0.035196 0.577462 -0.488495 -0.654149 0.468828 -0.457548 0.755547 -0.668385 -0.742982 -0.035196 0.625054 -0.425908 -0.654149 0.513794 -0.406405 0.755547 -0.587643 -0.808355 -0.035196 0.666250 -0.358052 -0.654149 0.553558 -0.350318 0.755547 -0.499685 -0.865492 -0.035196 0.700107 -0.286252 -0.654149 0.587225 -0.290371 0.755547 -0.406223 -0.913096 -0.035196 0.726040 -0.212026 -0.654149 0.614197 -0.227841 0.755547 -0.309238 -0.950333 -0.035196 0.744264 -0.134764 -0.654149 0.634693 -0.162214 0.755547 -0.207933 -0.977510 -0.035196 0.754289 -0.056018 -0.654149 0.648199 -0.094800 0.755547 -0.104337 -0.993919 -0.035196 0.756024 0.022730 -0.654149 0.654543 -0.026876 0.755547 -0.000407 -0.999380 -0.035196 0.749478 0.101842 -0.654149 0.653755 0.041873 0.755547 0.104337 -0.993919 -0.035196 0.734677 0.179831 -0.654149 0.645766 0.110161 0.755547 0.207933 -0.977510 -0.035196 0.711783 0.255840 -0.654149 0.630664 0.177235 0.755547 0.309238 -0.950333 -0.035196 0.681378 0.328350 -0.654149 0.608857 0.241748 0.755547 0.406223 -0.913096 -0.035196 0.643212 0.397955 -0.654149 0.580167 0.304229 0.755547 0.499685 -0.865492 -0.035196 0.597961 0.463177 -0.654149 0.545086 0.363360 0.755547 0.587643 -0.808355 -0.035196 0.546646 0.522750 -0.654149 0.504420 0.417983 0.755547 0.668385 -0.742982 -0.035196 0.488848 0.577163 -0.654149 0.457834 0.468548 0.755547 0.742574 -0.668839 -0.035196 0.425665 0.625219 -0.654149 0.406205 0.513952 0.755547 0.808583 -0.587328 -0.035196 0.357793 0.666389 -0.654149 0.350102 0.553694 0.755547 0.865686 -0.499348 -0.035196 0.286680 0.699932 -0.654149 0.290730 0.587048 0.755547 0.912847 -0.406781 -0.035196 0.211743 0.726123 -0.654149 0.227602 0.614285 0.755547 0.950454 -0.308868 -0.035196 0.134474 0.744316 -0.654149 0.161967 0.634756 0.755547 0.977591 -0.207552 -0.035196 0.056478 0.754255 -0.654149 0.095196 0.648141 0.755547 0.993855 -0.104945 -0.035196 -0.022884 0.756020 -0.654149 0.026742 0.654549 0.755547 0.999380 -0.000204 -0.035196 -0.101994 0.749458 -0.654149 -0.042006 0.653747 0.755547 0.993898 0.104540 -0.035196 -0.179981 0.734640 -0.654149 -0.110292 0.645744 0.755547 0.977467 0.208132 -0.035196 -0.255274 0.711987 -0.654149 -0.176733 0.630805 0.755547 0.950579 0.308481 -0.035196 -0.328489 0.681311 -0.654149 -0.241872 0.608808 0.755547 0.913013 0.406409 -0.035196 -0.398086 0.643131 -0.654149 -0.304348 0.580105 0.755547 0.865390 0.499861 -0.035196 -0.463298 0.597866 -0.654149 -0.363471 0.545012 0.755547 0.808235 0.587807 -0.035196 -0.522861 0.546540 -0.654149 -0.418086 0.504335 0.755547 0.742846 0.668536 -0.035196 -0.577263 0.488730 -0.654149 -0.468641 0.457739 0.755547 0.668688 0.742710 -0.035196 -0.625306 0.425537 -0.654149 -0.514034 0.406101 0.755547 0.587164 0.808703 -0.035196 -0.666104 0.358323 -0.654149 -0.553415 0.350543 0.755547 0.500037 0.865288 -0.035196 -0.699990 0.286538 -0.654149 -0.587107 0.290611 0.755547 0.406595 0.912930 -0.035196 -0.726166 0.211596 -0.654149 -0.614332 0.227477 0.755547 0.308674 0.950516 -0.035196 -0.744343 0.134323 -0.654149 -0.634789 0.161838 0.755547 0.207353 0.977633 -0.035196 -0.754266 0.056325 -0.654149 -0.648160 0.095064 0.755547 0.104742 0.993876 -0.035196 -0.756015 -0.023038 -0.654149 -0.654554 0.026609 0.755547 0.000000 0.999380 -0.035196 -0.749437 -0.102147 -0.654149 -0.653738 -0.042140 0.755547 -0.104742 0.993876 -0.035196 -0.734783 -0.179396 -0.654149 -0.645831 -0.109778 0.755547 -0.207353 0.977633 -0.035196 -0.711935 -0.255419 -0.654149 -0.630769 -0.176861 0.755547 -0.308674 0.950516 -0.035196 -0.681244 -0.328628 -0.654149 -0.608759 -0.241996 0.755547 -0.406595 0.912930 -0.035196 -0.643050 -0.398217 -0.654149 -0.580043 -0.304466 0.755547 -0.500037 0.865288 -0.035196 -0.598235 -0.462822 -0.654149 -0.545301 -0.363036 0.755547 -0.587164 0.808703 -0.035196 -0.546433 -0.522972 -0.654149 -0.504249 -0.418189 0.755547 -0.668688 0.742710 -0.035196 -0.488613 -0.577362 -0.654149 -0.457643 -0.468734 0.755547 -0.742846 0.668536 -0.035196 -0.426035 -0.624967 -0.654149 -0.406510 -0.513711 0.755547 -0.808235 0.587807 -0.035196 -0.358188 -0.666177 -0.654149 -0.350430 -0.553487 0.755547 -0.865390 0.499861 -0.035196 -0.286395 -0.700048 -0.654149 -0.290491 -0.587166 0.755547 -0.913013 0.406409 -0.035196 -0.211448 -0.726209 -0.654149 -0.227352 -0.614378 0.755547 -0.950579 0.308481 -0.035196 -0.134916 -0.744236 -0.654149 -0.162343 -0.634660 0.755547 -0.977467 0.208132 -0.035196 -0.056171 -0.754277 -0.654149 -0.094932 -0.648180 0.755547 -0.993898 0.104540 -0.035196 -0.176765 -0.445062 -0.877880 0.088070 -0.895500 0.436262 -0.980305 -0.000200 0.197490 -0.129145 -0.461137 -0.877880 0.181440 -0.881337 0.436262 -0.974885 -0.102942 0.197490 -0.080576 -0.472053 -0.877880 0.271954 -0.857739 0.436262 -0.958931 -0.203591 0.197490 -0.030657 -0.477898 -0.877880 0.360353 -0.824513 0.436262 -0.932312 -0.302972 0.197490 0.019599 -0.478479 -0.877880 0.444783 -0.782204 0.436262 -0.895424 -0.399017 0.197490 0.069165 -0.473859 -0.877880 0.523583 -0.731804 0.436262 -0.849163 -0.489817 0.197490 0.118448 -0.464000 -0.877880 0.597398 -0.672898 0.436262 -0.793150 -0.576118 0.197490 0.166426 -0.449031 -0.877880 0.664632 -0.606581 0.436262 -0.728400 -0.656072 0.197490 0.212571 -0.429115 -0.877880 0.724546 -0.533582 0.436262 -0.655627 -0.728801 0.197490 0.255970 -0.404729 -0.877880 0.776023 -0.455482 0.436262 -0.576426 -0.792925 0.197490 0.296979 -0.375673 -0.877880 0.819487 -0.371640 0.436262 -0.490147 -0.848972 0.197490 0.334716 -0.342478 -0.877880 0.853925 -0.283705 0.436262 -0.398469 -0.895667 0.197490 0.368461 -0.305880 -0.877880 0.878763 -0.193525 0.436262 -0.303335 -0.932194 0.197490 0.398491 -0.265578 -0.877880 0.894206 -0.100358 0.436262 -0.203964 -0.958852 0.197490 0.424130 -0.222351 -0.877880 0.899799 -0.006086 0.436262 -0.102346 -0.974948 0.197490 0.444954 -0.177037 -0.877880 0.895553 0.087523 0.436262 -0.000399 -0.980305 0.197490 0.461058 -0.129427 -0.877880 0.881448 0.180902 0.436262 0.102346 -0.974948 0.197490 0.472084 -0.080392 -0.877880 0.857634 0.272287 0.436262 0.203964 -0.958852 0.197490 0.477910 -0.030472 -0.877880 0.824373 0.360674 0.436262 0.303335 -0.932194 0.197490 0.478491 0.019306 -0.877880 0.782476 0.444305 0.436262 0.398469 -0.895667 0.197490 0.473832 0.069349 -0.877880 0.731600 0.523867 0.436262 0.490147 -0.848972 0.197490 0.463954 0.118628 -0.877880 0.672666 0.597659 0.436262 0.576426 -0.792925 0.197490 0.449132 0.166152 -0.877880 0.606987 0.664261 0.436262 0.655627 -0.728801 0.197490 0.429245 0.212309 -0.877880 0.534024 0.724220 0.436262 0.728400 -0.656072 0.197490 0.404629 0.256128 -0.877880 0.455180 0.776200 0.436262 0.793150 -0.576118 0.197490 0.375557 0.297125 -0.877880 0.371322 0.819632 0.436262 0.849163 -0.489817 0.197490 0.342683 0.334507 -0.877880 0.284227 0.853751 0.436262 0.895424 -0.399017 0.197490 0.305736 0.368580 -0.877880 0.193183 0.878838 0.436262 0.932312 -0.302972 0.197490 0.265423 0.398594 -0.877880 0.100010 0.894245 0.436262 0.958931 -0.203591 0.197490 0.222610 0.423994 -0.877880 0.006636 0.899795 0.436262 0.974885 -0.102942 0.197490 0.176946 0.444990 -0.877880 -0.087706 0.895535 0.436262 0.980305 -0.000200 0.197490 0.129333 0.461085 -0.877880 -0.181081 0.881411 0.436262 0.974927 0.102544 0.197490 0.080296 0.472100 -0.877880 -0.272462 0.857578 0.436262 0.958810 0.204159 0.197490 0.030852 0.477885 -0.877880 -0.360017 0.824660 0.436262 0.932435 0.302593 0.197490 -0.019404 0.478487 -0.877880 -0.444465 0.782385 0.436262 0.895586 0.398652 0.197490 -0.069446 0.473818 -0.877880 -0.524016 0.731493 0.436262 0.848872 0.490320 0.197490 -0.118723 0.463930 -0.877880 -0.597796 0.672544 0.436262 0.792808 0.576588 0.197490 -0.166243 0.449099 -0.877880 -0.664385 0.606851 0.436262 0.728667 0.655776 0.197490 -0.212396 0.429202 -0.877880 -0.724328 0.533877 0.436262 0.655924 0.728534 0.197490 -0.256210 0.404577 -0.877880 -0.776293 0.455022 0.436262 0.575956 0.793267 0.197490 -0.296826 0.375794 -0.877880 -0.819336 0.371974 0.436262 0.490493 0.848772 0.197490 -0.334577 0.342614 -0.877880 -0.853809 0.284053 0.436262 0.398834 0.895505 0.197490 -0.368643 0.305661 -0.877880 -0.878877 0.193004 0.436262 0.302782 0.932374 0.197490 -0.398648 0.265342 -0.877880 -0.894265 0.099828 0.436262 0.203395 0.958972 0.197490 -0.424040 0.222523 -0.877880 -0.899797 0.006453 0.436262 0.102743 0.974906 0.197490 -0.445026 0.176855 -0.877880 -0.895517 -0.087888 0.436262 0.000000 0.980305 0.197490 -0.461111 0.129239 -0.877880 -0.881374 -0.181261 0.436262 -0.102743 0.974906 0.197490 -0.472036 0.080672 -0.877880 -0.857795 -0.271779 0.436262 -0.203395 0.958972 0.197490 -0.477892 0.030755 -0.877880 -0.824586 -0.360185 0.436262 -0.302782 0.932374 0.197490 -0.478483 -0.019501 -0.877880 -0.782295 -0.444624 0.436262 -0.398834 0.895505 0.197490 -0.473804 -0.069542 -0.877880 -0.731387 -0.524166 0.436262 -0.490493 0.848772 0.197490 -0.464025 -0.118353 -0.877880 -0.673020 -0.597261 0.436262 -0.575956 0.793267 0.197490 -0.449065 -0.166334 -0.877880 -0.606716 -0.664508 0.436262 -0.655924 0.728534 0.197490 -0.429159 -0.212484 -0.877880 -0.533729 -0.724437 0.436262 -0.728667 0.655776 0.197490 -0.404781 -0.255888 -0.877880 -0.455640 -0.775931 0.436262 -0.792808 0.576588 0.197490 -0.375733 -0.296902 -0.877880 -0.371807 -0.819411 0.436262 -0.848872 0.490320 0.197490 -0.342546 -0.334647 -0.877880 -0.283879 -0.853867 0.436262 -0.895586 0.398652 0.197490 -0.305586 -0.368705 -0.877880 -0.192825 -0.878917 0.436262 -0.932435 0.302593 0.197490 -0.265659 -0.398436 -0.877880 -0.100540 -0.894185 0.436262 -0.958810 0.204159 0.197490 -0.222437 -0.424085 -0.877880 -0.006269 -0.899798 0.436262 -0.974927 0.102544 0.197490 0.154048 -0.273636 0.949417 0.043619 0.961833 0.270137 -0.987100 -0.000201 0.160104 0.181879 -0.255983 0.949417 -0.057428 0.961108 0.270137 -0.981643 -0.103655 0.160104 0.207470 -0.235719 0.949417 -0.156893 0.949953 0.270137 -0.965578 -0.205002 0.160104 0.231033 -0.212676 0.949417 -0.255590 0.928278 0.270137 -0.938774 -0.305072 0.160104 0.252050 -0.187291 0.949417 -0.351473 0.896378 0.270137 -0.901630 -0.401783 0.160104 0.270132 -0.160113 0.949417 -0.442629 0.855047 0.270137 -0.855049 -0.493212 0.160104 0.285425 -0.130920 0.949417 -0.529806 0.803947 0.270137 -0.798647 -0.580111 0.160104 0.297574 -0.100284 0.949417 -0.611148 0.743992 0.270137 -0.733449 -0.660620 0.160104 0.306446 -0.068544 0.949417 -0.685758 0.675842 0.270137 -0.660172 -0.733853 0.160104 0.311906 -0.036361 0.949417 -0.752214 0.601000 0.270137 -0.580422 -0.798422 0.160104 0.313999 -0.003470 0.949417 -0.811060 0.518852 0.270137 -0.493545 -0.854857 0.160104 0.312633 0.029458 0.949417 -0.860973 0.430990 0.270137 -0.401231 -0.901876 0.160104 0.307886 0.061754 0.949417 -0.901063 0.339282 0.270137 -0.305438 -0.938656 0.160104 0.299718 0.093683 0.949417 -0.931659 0.242975 0.270137 -0.205378 -0.965498 0.160104 0.288249 0.124579 0.949417 -0.951994 0.143992 0.270137 -0.103055 -0.981706 0.160104 0.273730 0.153881 0.949417 -0.961807 0.044207 0.270137 -0.000402 -0.987100 0.160104 0.256095 0.181722 0.949417 -0.961143 -0.056841 0.270137 0.103055 -0.981706 0.160104 0.235638 0.207562 0.949417 -0.949892 -0.157262 0.270137 0.205378 -0.965498 0.160104 0.212587 0.231115 0.949417 -0.928178 -0.255952 0.270137 0.305438 -0.938656 0.160104 0.187445 0.251936 0.949417 -0.896592 -0.350925 0.270137 0.401231 -0.901876 0.160104 0.160008 0.270194 0.949417 -0.854875 -0.442962 0.270137 0.493545 -0.854857 0.160104 0.130809 0.285476 0.949417 -0.803741 -0.530119 0.270137 0.580422 -0.798422 0.160104 0.100466 0.297513 0.949417 -0.744365 -0.610693 0.270137 0.660172 -0.733853 0.160104 0.068731 0.306404 0.949417 -0.676261 -0.685345 0.270137 0.733449 -0.660620 0.160104 0.036239 0.311920 0.949417 -0.600707 -0.752447 0.270137 0.798647 -0.580111 0.160104 0.003348 0.314000 0.949417 -0.518537 -0.811262 0.270137 0.855049 -0.493212 0.160104 -0.029267 0.312651 0.949417 -0.431516 -0.860709 0.270137 0.901630 -0.401783 0.160104 -0.061874 0.307862 0.949417 -0.338931 -0.901195 0.270137 0.938774 -0.305072 0.160104 -0.093799 0.299682 0.949417 -0.242613 -0.931754 0.270137 0.965578 -0.205002 0.160104 -0.124403 0.288325 0.949417 -0.144574 -0.951906 0.270137 0.981643 -0.103655 0.160104 -0.153937 0.273699 0.949417 -0.044011 -0.961815 0.270137 0.987100 -0.000201 0.160104 -0.181774 0.256058 0.949417 0.057036 -0.961131 0.270137 0.981685 0.103255 0.160104 -0.207610 0.235596 0.949417 0.157456 -0.949860 0.270137 0.965456 0.205574 0.160104 -0.230946 0.212771 0.949417 0.255212 -0.928382 0.270137 0.938899 0.304690 0.160104 -0.251974 0.187394 0.949417 0.351108 -0.896521 0.270137 0.901794 0.401415 0.160104 -0.270226 0.159953 0.949417 0.443136 -0.854785 0.270137 0.854756 0.493719 0.160104 -0.285502 0.130751 0.949417 0.530283 -0.803633 0.270137 0.798303 0.580584 0.160104 -0.297533 0.100405 0.949417 0.610845 -0.744241 0.270137 0.733718 0.660321 0.160104 -0.306418 0.068669 0.949417 0.685483 -0.676121 0.270137 0.660471 0.733584 0.160104 -0.311927 0.036176 0.949417 0.752570 -0.600554 0.270137 0.579948 0.798766 0.160104 -0.313997 0.003598 0.949417 0.810849 -0.519183 0.270137 0.493893 0.854656 0.160104 -0.312645 -0.029331 0.949417 0.860797 -0.431341 0.270137 0.401599 0.901712 0.160104 -0.307849 -0.061937 0.949417 0.901264 -0.338747 0.270137 0.304881 0.938837 0.160104 -0.299662 -0.093860 0.949417 0.931803 -0.242423 0.270137 0.204805 0.965620 0.160104 -0.288299 -0.124462 0.949417 0.951935 -0.144380 0.270137 0.103455 0.981664 0.160104 -0.273667 -0.153992 0.949417 0.961824 -0.043815 0.270137 0.000000 0.987100 0.160104 -0.256020 -0.181826 0.949417 0.961119 0.057232 0.270137 -0.103455 0.981664 0.160104 -0.235761 -0.207422 0.949417 0.949985 0.156699 0.270137 -0.204805 0.965620 0.160104 -0.212724 -0.230989 0.949417 0.928330 0.255401 0.270137 -0.304881 0.938837 0.160104 -0.187343 -0.252012 0.949417 0.896449 0.351290 0.270137 -0.401599 0.901712 0.160104 -0.159898 -0.270259 0.949417 0.854694 0.443310 0.270137 -0.493893 0.854656 0.160104 -0.130978 -0.285398 0.949417 0.804055 0.529643 0.270137 -0.579948 0.798766 0.160104 -0.100345 -0.297554 0.949417 0.744116 0.610997 0.270137 -0.660471 0.733584 0.160104 -0.068606 -0.306432 0.949417 0.675981 0.685620 0.270137 -0.733718 0.660321 0.160104 -0.036424 -0.311898 0.949417 0.601153 0.752091 0.270137 -0.798303 0.580584 0.160104 -0.003534 -0.313998 0.949417 0.519018 0.810954 0.270137 -0.854756 0.493719 0.160104 0.029394 -0.312639 0.949417 0.431165 0.860885 0.270137 -0.901794 0.401415 0.160104 0.061999 -0.307837 0.949417 0.338564 0.901333 0.270137 -0.938899 0.304690 0.160104 0.093622 -0.299737 0.949417 0.243165 0.931610 0.270137 -0.965456 0.205574 0.160104 0.124521 -0.288274 0.949417 0.144186 0.951964 0.270137 -0.981685 0.103255 0.160104 -0.173745 -0.969295 0.174011 -0.685287 0.245901 0.685503 -0.707244 -0.000144 -0.706969 -0.071199 -0.982166 0.174011 -0.707285 0.172723 0.685503 -0.703334 -0.074268 -0.706969 0.031146 -0.984251 0.174011 -0.721394 0.098365 0.685503 -0.691824 -0.146881 -0.706969 0.134132 -0.975566 0.174011 -0.727730 0.022216 0.685503 -0.672620 -0.218580 -0.706969 0.235639 -0.956135 0.174011 -0.726051 -0.054178 0.685503 -0.646006 -0.287872 -0.706969 0.333625 -0.926507 0.174011 -0.716504 -0.129258 0.685503 -0.612631 -0.353380 -0.706969 0.428892 -0.886438 0.174011 -0.699010 -0.203641 0.685503 -0.572221 -0.415642 -0.706969 0.519435 -0.836605 0.174011 -0.673818 -0.275781 0.685503 -0.525507 -0.473326 -0.706969 0.604256 -0.777557 0.174011 -0.641203 -0.344883 0.685503 -0.473005 -0.525796 -0.706969 0.681712 -0.710626 0.174011 -0.601935 -0.409584 0.685503 -0.415865 -0.572059 -0.706969 0.752436 -0.635264 0.174011 -0.555693 -0.470416 0.685503 -0.353618 -0.612494 -0.706969 0.814872 -0.552905 0.174011 -0.503329 -0.526065 0.685503 -0.287477 -0.646182 -0.706969 0.867868 -0.465323 0.174011 -0.445997 -0.575475 0.685503 -0.218842 -0.672535 -0.706969 0.911857 -0.371802 0.174011 -0.383227 -0.619049 0.685503 -0.147150 -0.691767 -0.706969 0.945803 -0.274185 0.174011 -0.316236 -0.655805 0.685503 -0.073838 -0.703379 -0.706969 0.969189 -0.174338 0.174011 -0.246319 -0.685136 0.685503 -0.000288 -0.707244 -0.706969 0.982123 -0.071800 0.174011 -0.173156 -0.707179 0.685503 0.073838 -0.703379 -0.706969 0.984239 0.031529 0.174011 -0.098084 -0.721432 0.685503 0.147150 -0.691767 -0.706969 0.975514 0.134511 0.174011 -0.021933 -0.727739 0.685503 0.218842 -0.672535 -0.706969 0.956279 0.235055 0.174011 0.053734 -0.726084 0.685503 0.287477 -0.646182 -0.706969 0.926377 0.333985 0.174011 0.129537 -0.716453 0.685503 0.353618 -0.612494 -0.706969 0.886271 0.429237 0.174011 0.203913 -0.698931 0.685503 0.415865 -0.572059 -0.706969 0.836922 0.518924 0.174011 0.275369 -0.673986 0.685503 0.473005 -0.525796 -0.706969 0.777926 0.603781 0.174011 0.344491 -0.641413 0.685503 0.525507 -0.473326 -0.706969 0.710361 0.681988 0.174011 0.409819 -0.601776 0.685503 0.572221 -0.415642 -0.706969 0.634971 0.752683 0.174011 0.470632 -0.555510 0.685503 0.612631 -0.353380 -0.706969 0.553403 0.814534 0.174011 0.525758 -0.503651 0.685503 0.646006 -0.287872 -0.706969 0.464986 0.868049 0.174011 0.575648 -0.445774 0.685503 0.672620 -0.218580 -0.706969 0.371447 0.912002 0.174011 0.619198 -0.382986 0.685503 0.691824 -0.146881 -0.706969 0.274763 0.945635 0.174011 0.655612 -0.316636 0.685503 0.703334 -0.074268 -0.706969 0.174140 0.969224 0.174011 0.685187 -0.246180 0.685503 0.707244 -0.000144 -0.706969 0.071600 0.982137 0.174011 0.707214 -0.173011 0.685503 0.703364 0.073981 -0.706969 -0.031730 0.984232 0.174011 0.721452 -0.097937 0.685503 0.691737 0.147291 -0.706969 -0.133734 0.975621 0.174011 0.727721 -0.022512 0.685503 0.672709 0.218306 -0.706969 -0.235250 0.956231 0.174011 0.726073 0.053882 0.685503 0.646124 0.287609 -0.706969 -0.334174 0.926309 0.174011 0.716427 0.129683 0.685503 0.612422 0.353743 -0.706969 -0.429417 0.886183 0.174011 0.698890 0.204055 0.685503 0.571974 0.415981 -0.706969 -0.519094 0.836816 0.174011 0.673930 0.275506 0.685503 0.525699 0.473112 -0.706969 -0.603940 0.777803 0.174011 0.641343 0.344622 0.685503 0.473219 0.525603 -0.706969 -0.682133 0.710222 0.174011 0.601692 0.409941 0.685503 0.415526 0.572305 -0.706969 -0.752177 0.635571 0.174011 0.555884 0.470189 0.685503 0.353868 0.612350 -0.706969 -0.814647 0.553237 0.174011 0.503543 0.525860 0.685503 0.287740 0.646065 -0.706969 -0.868143 0.464809 0.174011 0.445656 0.575739 0.685503 0.218443 0.672664 -0.706969 -0.912077 0.371261 0.174011 0.382860 0.619276 0.685503 0.146740 0.691854 -0.706969 -0.945691 0.274570 0.174011 0.316503 0.655676 0.685503 0.074124 0.703349 -0.706969 -0.969260 0.173943 0.174011 0.246040 0.685237 0.685503 0.000000 0.707244 -0.706969 -0.982152 0.071400 0.174011 0.172867 0.707250 0.685503 -0.074124 0.703349 -0.706969 -0.984257 -0.030946 0.174011 0.098512 0.721374 0.685503 -0.146740 0.691854 -0.706969 -0.975593 -0.133933 0.174011 0.022364 0.727726 0.685503 -0.218443 0.672664 -0.706969 -0.956183 -0.235444 0.174011 -0.054030 0.726062 0.685503 -0.287740 0.646065 -0.706969 -0.926241 -0.334363 0.174011 -0.129829 0.716400 0.685503 -0.353868 0.612350 -0.706969 -0.886525 -0.428711 0.174011 -0.203499 0.699052 0.685503 -0.415526 0.572305 -0.706969 -0.836711 -0.519264 0.174011 -0.275644 0.673874 0.685503 -0.473219 0.525603 -0.706969 -0.777680 -0.604098 0.174011 -0.344752 0.641273 0.685503 -0.525699 0.473112 -0.706969 -0.710765 -0.681567 0.174011 -0.409462 0.602018 0.685503 -0.571974 0.415981 -0.706969 -0.635417 -0.752307 0.174011 -0.470303 0.555788 0.685503 -0.612422 0.353743 -0.706969 -0.553071 -0.814759 0.174011 -0.525963 0.503436 0.685503 -0.646124 0.287609 -0.706969 -0.464632 -0.868238 0.174011 -0.575830 0.445539 0.685503 -0.672709 0.218306 -0.706969 -0.371988 -0.911781 0.174011 -0.618971 0.383353 0.685503 -0.691737 0.147291 -0.706969 -0.274378 -0.945747 0.174011 -0.655740 0.316369 0.685503 -0.703364 0.073981 -0.706969 -0.188939 -0.779749 -0.596903 0.235605 -0.626092 0.743303 -0.953306 -0.000194 0.302006 -0.106175 -0.795257 -0.596903 0.299926 -0.597951 0.743303 -0.948035 -0.100106 0.302006 -0.023044 -0.801982 -0.596903 0.360381 -0.563584 0.743303 -0.932521 -0.197984 0.302006 0.061136 -0.799981 -0.596903 0.417463 -0.522709 0.743303 -0.906635 -0.294628 0.302006 0.144643 -0.789167 -0.596903 0.469948 -0.476078 0.743303 -0.870762 -0.388027 0.302006 0.225788 -0.769888 -0.596903 0.516832 -0.424719 0.743303 -0.825775 -0.476327 0.302006 0.305234 -0.741983 -0.596903 0.558499 -0.368212 0.743303 -0.771305 -0.560251 0.302006 0.381318 -0.705906 -0.596903 0.594014 -0.307649 0.743303 -0.708339 -0.638003 0.302006 0.453202 -0.662054 -0.596903 0.622986 -0.243698 0.743303 -0.637571 -0.708729 0.302006 0.519483 -0.611428 -0.596903 0.644919 -0.177707 0.743303 -0.560551 -0.771087 0.302006 0.580704 -0.553616 -0.596903 0.659992 -0.109137 0.743303 -0.476648 -0.825590 0.302006 0.635528 -0.489705 -0.596903 0.667796 -0.039364 0.743303 -0.387495 -0.870999 0.302006 0.682932 -0.421083 -0.596903 0.668274 0.030175 0.743303 -0.294981 -0.906520 0.302006 0.723303 -0.347188 -0.596903 0.661431 0.100048 0.743303 -0.198346 -0.932444 0.302006 0.755707 -0.269468 -0.596903 0.647303 0.168820 0.743303 -0.099527 -0.948096 0.302006 0.779634 -0.189416 -0.596903 0.626236 0.235222 0.743303 -0.000388 -0.953306 0.302006 0.795192 -0.106661 -0.596903 0.598134 0.299561 0.743303 0.099527 -0.948096 0.302006 0.801991 -0.022732 -0.596903 0.563444 0.360600 0.743303 0.198346 -0.932444 0.302006 0.799957 0.061448 -0.596903 0.522547 0.417667 0.743303 0.294981 -0.906520 0.302006 0.789256 0.144161 -0.596903 0.476365 0.469657 0.743303 0.387495 -0.870999 0.302006 0.769800 0.226087 -0.596903 0.424518 0.516997 0.743303 0.476648 -0.825590 0.302006 0.741865 0.305522 -0.596903 0.367995 0.558642 0.743303 0.560551 -0.771087 0.302006 0.706139 0.380886 -0.596903 0.308012 0.593826 0.743303 0.637571 -0.708729 0.302006 0.662330 0.452797 -0.596903 0.244079 0.622837 0.743303 0.708339 -0.638003 0.302006 0.611226 0.519720 -0.596903 0.177457 0.644988 0.743303 0.771305 -0.560251 0.302006 0.553390 0.580919 -0.596903 0.108880 0.660035 0.743303 0.825775 -0.476327 0.302006 0.490093 0.635229 -0.596903 0.039772 0.667772 0.743303 0.870762 -0.388027 0.302006 0.420817 0.683096 -0.596903 -0.030435 0.668262 0.743303 0.906635 -0.294628 0.302006 0.346906 0.723438 -0.596903 -0.100306 0.661392 0.743303 0.932521 -0.197984 0.302006 0.269930 0.755543 -0.596903 -0.168425 0.647406 0.743303 0.948035 -0.100106 0.302006 0.189257 0.779672 -0.596903 -0.235350 0.626188 0.743303 0.953306 -0.000194 0.302006 0.106499 0.795214 -0.596903 -0.299683 0.598073 0.743303 0.948076 0.099720 0.302006 0.022569 0.801996 -0.596903 -0.360714 0.563370 0.743303 0.932403 0.198536 0.302006 -0.060811 0.800006 -0.596903 -0.417250 0.522879 0.743303 0.906755 0.294259 0.302006 -0.144322 0.789226 -0.596903 -0.469754 0.476269 0.743303 0.870920 0.387673 0.302006 -0.226244 0.769754 -0.596903 -0.517083 0.424412 0.743303 0.825493 0.476816 0.302006 -0.305673 0.741802 -0.596903 -0.558717 0.367881 0.743303 0.770973 0.560708 0.302006 -0.381030 0.706061 -0.596903 -0.593889 0.307891 0.743303 0.708599 0.637715 0.302006 -0.452932 0.662238 -0.596903 -0.622887 0.243952 0.743303 0.637859 0.708469 0.302006 -0.519845 0.611120 -0.596903 -0.645025 0.177325 0.743303 0.560094 0.771419 0.302006 -0.580478 0.553852 -0.596903 -0.659948 0.109405 0.743303 0.476984 0.825396 0.302006 -0.635329 0.489963 -0.596903 -0.667780 0.039636 0.743303 0.387850 0.870841 0.302006 -0.683181 0.420678 -0.596903 -0.668256 -0.030571 0.743303 0.294443 0.906695 0.302006 -0.723509 0.346759 -0.596903 -0.661372 -0.100440 0.743303 0.197794 0.932561 0.302006 -0.755598 0.269776 -0.596903 -0.647371 -0.168557 0.743303 0.099913 0.948056 0.302006 -0.779711 0.189098 -0.596903 -0.626140 -0.235477 0.743303 0.000000 0.953306 0.302006 -0.795235 0.106337 -0.596903 -0.598012 -0.299804 0.743303 -0.099913 0.948056 0.302006 -0.801978 0.023207 -0.596903 -0.563657 -0.360266 0.743303 -0.197794 0.932561 0.302006 -0.799993 -0.060973 -0.596903 -0.522794 -0.417357 0.743303 -0.294443 0.906695 0.302006 -0.789197 -0.144483 -0.596903 -0.476173 -0.469851 0.743303 -0.387850 0.870841 0.302006 -0.769708 -0.226400 -0.596903 -0.424307 -0.517170 0.743303 -0.476984 0.825396 0.302006 -0.742045 -0.305083 -0.596903 -0.368326 -0.558424 0.743303 -0.560094 0.771419 0.302006 -0.705984 -0.381174 -0.596903 -0.307770 -0.593951 0.743303 -0.637859 0.708469 0.302006 -0.662146 -0.453067 -0.596903 -0.243825 -0.622937 0.743303 -0.708599 0.637715 0.302006 -0.611534 -0.519358 -0.596903 -0.177839 -0.644883 0.743303 -0.770973 0.560708 0.302006 -0.553734 -0.580591 -0.596903 -0.109271 -0.659970 0.743303 -0.825493 0.476816 0.302006 -0.489834 -0.635428 -0.596903 -0.039500 -0.667788 0.743303 -0.870920 0.387673 0.302006 -0.420539 -0.683267 -0.596903 0.030707 -0.668250 0.743303 -0.906755 0.294259 0.302006 -0.347335 -0.723233 -0.596903 0.099914 -0.661452 0.743303 -0.932403 0.198536 0.302006 -0.269622 -0.755653 -0.596903 0.168688 -0.647337 0.743303 -0.948076 0.099720 0.302006 -0.107645 -0.941909 -0.318151 0.302424 -0.335869 0.892038 -0.947076 -0.000193 0.321011 -0.008334 -0.948003 -0.318151 0.335960 -0.302323 0.892038 -0.941839 -0.099452 0.321011 0.090126 -0.943746 -0.318151 0.365530 -0.265812 0.892038 -0.926426 -0.196690 0.321011 0.188541 -0.929103 -0.318151 0.391376 -0.226038 0.892038 -0.900709 -0.292702 0.321011 0.284879 -0.904225 -0.318151 0.412910 -0.183774 0.892038 -0.865071 -0.385491 0.321011 0.377210 -0.869766 -0.318151 0.429758 -0.139916 0.892038 -0.820379 -0.473214 0.321011 0.466290 -0.825441 -0.318151 0.442055 -0.094104 0.892038 -0.766264 -0.556589 0.321011 0.550234 -0.772025 -0.318151 0.449483 -0.047255 0.892038 -0.703710 -0.633834 0.321011 0.628118 -0.710104 -0.318151 0.451960 0.000114 0.892038 -0.633404 -0.704097 0.321011 0.698442 -0.641061 -0.318151 0.449506 0.047033 0.892038 -0.556887 -0.766048 0.321011 0.761783 -0.564328 -0.318151 0.442101 0.093885 0.892038 -0.473533 -0.820194 0.321011 0.816733 -0.481380 -0.318151 0.429827 0.139704 0.892038 -0.384963 -0.865307 0.321011 0.862293 -0.393992 -0.318151 0.413001 0.183570 0.892038 -0.293053 -0.900595 0.321011 0.898838 -0.301448 -0.318151 0.391487 0.225845 0.892038 -0.197050 -0.926350 0.321011 0.925481 -0.205583 -0.318151 0.365661 0.265632 0.892038 -0.098877 -0.941900 0.321011 0.941843 -0.108221 -0.318151 0.336053 0.302219 0.892038 -0.000386 -0.947076 0.321011 0.947998 -0.008913 -0.318151 0.302528 0.335775 0.892038 0.098877 -0.941900 0.321011 0.943711 0.090493 -0.318151 0.265670 0.365633 0.892038 0.197050 -0.926350 0.321011 0.929029 0.188903 -0.318151 0.225886 0.391463 0.892038 0.293053 -0.900595 0.321011 0.904399 0.284327 -0.318151 0.184027 0.412798 0.892038 0.384963 -0.865307 0.321011 0.869619 0.377548 -0.318151 0.139749 0.429812 0.892038 0.473533 -0.820194 0.321011 0.825260 0.466611 -0.318151 0.093932 0.442091 0.892038 0.556887 -0.766048 0.321011 0.772361 0.549763 -0.318151 0.047530 0.449454 0.892038 0.633404 -0.704097 0.321011 0.710488 0.627684 -0.318151 0.000162 0.451960 0.892038 0.703710 -0.633834 0.321011 0.640789 0.698691 -0.318151 -0.047208 0.449488 0.892038 0.766264 -0.556589 0.321011 0.564032 0.762002 -0.318151 -0.094057 0.442065 0.892038 0.820379 -0.473214 0.321011 0.481879 0.816439 -0.318151 -0.139441 0.429912 0.892038 0.865071 -0.385491 0.321011 0.393657 0.862447 -0.318151 -0.183731 0.412930 0.892038 0.900709 -0.292702 0.321011 0.301098 0.898955 -0.318151 -0.225997 0.391399 0.892038 0.926426 -0.196690 0.321011 0.206148 0.925355 -0.318151 -0.265408 0.365823 0.892038 0.941839 -0.099452 0.321011 0.108029 0.941865 -0.318151 -0.302287 0.335992 0.892038 0.947076 -0.000193 0.321011 0.008720 0.948000 -0.318151 -0.335837 0.302459 0.892038 0.941880 0.099069 0.321011 -0.090685 0.943693 -0.318151 -0.365687 0.265596 0.892038 0.926309 0.197239 0.321011 -0.188163 0.929180 -0.318151 -0.391283 0.226198 0.892038 0.900829 0.292336 0.321011 -0.284511 0.904341 -0.318151 -0.412836 0.183942 0.892038 0.865228 0.385139 0.321011 -0.377725 0.869542 -0.318151 -0.429840 0.139661 0.892038 0.820098 0.473700 0.321011 -0.466779 0.825165 -0.318151 -0.442111 0.093842 0.892038 0.765934 0.557043 0.321011 -0.549920 0.772249 -0.318151 -0.449464 0.047438 0.892038 0.703968 0.633547 0.321011 -0.627828 0.710360 -0.318151 -0.451960 0.000070 0.892038 0.633690 0.703839 0.321011 -0.698821 0.640647 -0.318151 -0.449478 -0.047299 0.892038 0.556433 0.766378 0.321011 -0.761553 0.564639 -0.318151 -0.442140 -0.093705 0.892038 0.473867 0.820001 0.321011 -0.816537 0.481713 -0.318151 -0.429884 -0.139529 0.892038 0.385315 0.865150 0.321011 -0.862527 0.393481 -0.318151 -0.412892 -0.183815 0.892038 0.292519 0.900769 0.321011 -0.899016 0.300915 -0.318151 -0.391353 -0.226077 0.892038 0.196501 0.926466 0.321011 -0.925397 0.205960 -0.318151 -0.365769 -0.265483 0.892038 0.099260 0.941860 0.321011 -0.941887 0.107837 -0.318151 -0.335930 -0.302356 0.892038 0.000000 0.947076 0.321011 -0.948002 0.008527 -0.318151 -0.302391 -0.335898 0.892038 -0.099260 0.941860 0.321011 -0.943765 -0.089934 -0.318151 -0.265887 -0.365475 0.892038 -0.196501 0.926466 0.321011 -0.929141 -0.188352 -0.318151 -0.226118 -0.391329 0.892038 -0.292519 0.900769 0.321011 -0.904283 -0.284695 -0.318151 -0.183858 -0.412873 0.892038 -0.385315 0.865150 0.321011 -0.869465 -0.377903 -0.318151 -0.139574 -0.429869 0.892038 -0.473867 0.820001 0.321011 -0.825536 -0.466122 -0.318151 -0.094194 -0.442036 0.892038 -0.556433 0.766378 0.321011 -0.772137 -0.550077 -0.318151 -0.047347 -0.449473 0.892038 -0.633690 0.703839 0.321011 -0.710232 -0.627973 -0.318151 0.000022 -0.451960 0.892038 -0.703968 0.633547 0.321011 -0.641203 -0.698311 -0.318151 0.046941 -0.449516 0.892038 -0.765934 0.557043 0.321011 -0.564484 -0.761668 -0.318151 0.093795 -0.442120 0.892038 -0.820098 0.473700 0.321011 -0.481547 -0.816635 -0.318151 0.139616 -0.429855 0.892038 -0.865228 0.385139 0.321011 -0.393305 -0.862607 -0.318151 0.183899 -0.412855 0.892038 -0.900829 0.292336 0.321011 -0.301631 -0.898776 -0.318151 0.225765 -0.391533 0.892038 -0.926309 0.197239 0.321011 -0.205771 -0.925439 -0.318151 0.265557 -0.365715 0.892038 -0.941880 0.099069 0.321011 0.345723 0.885676 -0.309925 0.659675 -0.464304 -0.590974 -0.667311 -0.000136 -0.744779 0.250994 0.917032 -0.309925 0.704704 -0.392608 -0.590974 -0.663622 -0.070074 -0.744779 0.154438 0.938134 -0.309925 0.741654 -0.317329 -0.590974 -0.652762 -0.138588 -0.744779 0.055265 0.949154 -0.309925 0.770828 -0.237851 -0.590974 -0.634641 -0.206239 -0.744779 -0.044518 0.949718 -0.309925 0.791511 -0.155753 -0.590974 -0.609531 -0.271618 -0.744779 -0.142870 0.939965 -0.309925 0.803404 -0.072742 -0.590974 -0.578040 -0.333427 -0.744779 -0.240598 0.919815 -0.309925 0.806603 0.011861 -0.590974 -0.539911 -0.392174 -0.744779 -0.335676 0.889533 -0.309925 0.800918 0.096333 -0.590974 -0.495835 -0.446600 -0.744779 -0.427057 0.849452 -0.309925 0.786410 0.179744 -0.590974 -0.446297 -0.496108 -0.744779 -0.512933 0.800529 -0.309925 0.763501 0.260413 -0.590974 -0.392384 -0.539759 -0.744779 -0.594010 0.742361 -0.309925 0.732003 0.338999 -0.590974 -0.333652 -0.577910 -0.744779 -0.668543 0.676016 -0.309925 0.692442 0.413851 -0.590974 -0.271245 -0.609697 -0.744779 -0.735110 0.602960 -0.309925 0.645738 0.483499 -0.590974 -0.206486 -0.634561 -0.744779 -0.794255 0.522594 -0.309925 0.591508 0.548514 -0.590974 -0.138842 -0.652708 -0.744779 -0.844653 0.436473 -0.309925 0.530762 0.607488 -0.590974 -0.069669 -0.663664 -0.744779 -0.885465 0.346264 -0.309925 0.464707 0.659391 -0.590974 -0.000272 -0.667311 -0.744779 -0.916879 0.251554 -0.309925 0.393038 0.704464 -0.590974 0.069669 -0.663664 -0.744779 -0.938194 0.154073 -0.309925 0.317041 0.741778 -0.590974 0.138842 -0.652708 -0.744779 -0.949175 0.054895 -0.309925 0.237551 0.770921 -0.590974 0.206486 -0.634561 -0.744779 -0.949745 -0.043937 -0.309925 0.156236 0.791416 -0.590974 0.271245 -0.609697 -0.744779 -0.939910 -0.143236 -0.309925 0.072430 0.803432 -0.590974 0.333652 -0.577910 -0.744779 -0.919721 -0.240956 -0.309925 -0.012174 0.806598 -0.590974 0.392384 -0.539759 -0.744779 -0.889737 -0.335133 -0.309925 -0.095844 0.800976 -0.590974 0.446297 -0.496108 -0.744779 -0.849713 -0.426538 -0.309925 -0.179264 0.786520 -0.590974 0.495835 -0.446600 -0.744779 -0.800329 -0.513245 -0.309925 -0.260710 0.763400 -0.590974 0.539911 -0.392174 -0.744779 -0.742130 -0.594298 -0.309925 -0.339284 0.731871 -0.590974 0.578040 -0.333427 -0.744779 -0.676424 -0.668130 -0.309925 -0.413428 0.692695 -0.590974 0.609531 -0.271618 -0.744779 -0.602674 -0.735344 -0.309925 -0.483750 0.645550 -0.590974 0.634641 -0.206239 -0.744779 -0.522285 -0.794459 -0.309925 -0.548744 0.591294 -0.590974 0.652762 -0.138588 -0.744779 -0.436989 -0.844386 -0.309925 -0.607163 0.531133 -0.590974 0.663622 -0.070074 -0.744779 -0.346084 -0.885535 -0.309925 -0.659486 0.464572 -0.590974 0.667311 -0.000136 -0.744779 -0.251368 -0.916930 -0.309925 -0.704544 0.392895 -0.590974 0.663650 0.069804 -0.744779 -0.153882 -0.938225 -0.309925 -0.741842 0.316890 -0.590974 0.652679 0.138975 -0.744779 -0.055651 -0.949131 -0.309925 -0.770731 0.238165 -0.590974 0.634725 0.205980 -0.744779 0.044131 -0.949736 -0.309925 -0.791448 0.156075 -0.590974 0.609641 0.271370 -0.744779 0.143427 -0.939880 -0.309925 -0.803447 0.072266 -0.590974 0.577842 0.333770 -0.744779 0.241143 -0.919672 -0.309925 -0.806596 -0.012339 -0.590974 0.539679 0.392494 -0.744779 0.335314 -0.889669 -0.309925 -0.800957 -0.096007 -0.590974 0.496017 0.446398 -0.744779 0.426711 -0.849626 -0.309925 -0.786483 -0.179424 -0.590974 0.446499 0.495926 -0.744779 0.513408 -0.800224 -0.309925 -0.763347 -0.260865 -0.590974 0.392064 0.539991 -0.744779 0.593707 -0.742603 -0.309925 -0.732141 -0.338701 -0.590974 0.333887 0.577774 -0.744779 0.668267 -0.676288 -0.309925 -0.692611 -0.413569 -0.590974 0.271494 0.609586 -0.744779 0.735467 -0.602524 -0.309925 -0.645451 -0.483882 -0.590974 0.206109 0.634683 -0.744779 0.794565 -0.522124 -0.309925 -0.591182 -0.548865 -0.590974 0.138455 0.652790 -0.744779 0.844475 -0.436817 -0.309925 -0.531009 -0.607271 -0.590974 0.069939 0.663636 -0.744779 0.885606 -0.345904 -0.309925 -0.464438 -0.659580 -0.590974 0.000000 0.667311 -0.744779 0.916981 -0.251181 -0.309925 -0.392751 -0.704624 -0.590974 -0.069939 0.663636 -0.744779 0.938103 -0.154629 -0.309925 -0.317480 -0.741590 -0.590974 -0.138455 0.652790 -0.744779 0.949142 -0.055458 -0.309925 -0.238008 -0.770780 -0.590974 -0.206109 0.634683 -0.744779 0.949727 0.044324 -0.309925 -0.155914 -0.791480 -0.590974 -0.271494 0.609586 -0.744779 0.939851 0.143618 -0.309925 -0.072103 -0.803461 -0.590974 -0.333887 0.577774 -0.744779 0.919864 0.240411 -0.309925 0.011696 -0.806605 -0.590974 -0.392064 0.539991 -0.744779 0.889601 0.335495 -0.309925 0.096170 -0.800937 -0.590974 -0.446499 0.495926 -0.744779 0.849539 0.426884 -0.309925 0.179584 -0.786447 -0.590974 -0.496017 0.446398 -0.744779 0.800633 0.512770 -0.309925 0.260257 -0.763554 -0.590974 -0.539679 0.392494 -0.744779 0.742482 0.593858 -0.309925 0.338850 -0.732072 -0.590974 -0.577842 0.333770 -0.744779 0.676152 0.668405 -0.309925 0.413710 -0.692527 -0.590974 -0.609641 0.271370 -0.744779 0.602374 0.735590 -0.309925 0.484013 -0.645353 -0.590974 -0.634725 0.205980 -0.744779 0.522756 0.794149 -0.309925 0.548394 -0.591619 -0.590974 -0.652679 0.138975 -0.744779 0.436645 0.844564 -0.309925 0.607380 -0.530885 -0.590974 -0.663650 0.069804 -0.744779 -0.397454 -0.551616 -0.733314 0.263038 -0.834098 0.484862 -0.879114 -0.000179 0.476612 -0.337452 -0.590234 -0.733314 0.349009 -0.801936 0.484862 -0.874254 -0.092316 0.476612 -0.274355 -0.622077 -0.733314 0.430374 -0.761372 0.484862 -0.859946 -0.182575 0.476612 -0.207646 -0.647405 -0.733314 0.507801 -0.712072 0.484862 -0.836075 -0.271698 0.476612 -0.138649 -0.665602 -0.733314 0.579635 -0.654929 0.484862 -0.802994 -0.357829 0.476612 -0.068802 -0.676400 -0.733314 0.644493 -0.591217 0.484862 -0.761509 -0.439256 0.476612 0.002468 -0.679885 -0.733314 0.702907 -0.520414 0.484862 -0.711278 -0.516648 0.476612 0.073712 -0.675882 -0.733314 0.753579 -0.443878 0.484862 -0.653212 -0.588350 0.476612 0.144143 -0.664434 -0.733314 0.795950 -0.362453 0.484862 -0.587951 -0.653571 0.476612 0.212341 -0.645880 -0.733314 0.829277 -0.277865 0.484862 -0.516925 -0.711076 0.476612 0.278864 -0.620068 -0.733314 0.853832 -0.189420 0.484862 -0.439552 -0.761338 0.476612 0.342316 -0.587426 -0.733314 0.868982 -0.098889 0.484862 -0.357338 -0.803213 0.476612 0.401449 -0.548716 -0.733314 0.874553 -0.008144 0.484862 -0.272024 -0.835969 0.476612 0.456747 -0.503619 -0.733314 0.870589 0.083561 0.484862 -0.182910 -0.859875 0.476612 0.507014 -0.452975 -0.733314 0.857037 0.174344 0.484862 -0.091781 -0.874310 0.476612 0.551373 -0.397791 -0.733314 0.834259 0.262528 0.484862 -0.000358 -0.879114 0.476612 0.590028 -0.337812 -0.733314 0.802149 0.348519 0.484862 0.091781 -0.874310 0.476612 0.622184 -0.274113 -0.733314 0.761204 0.430670 0.484862 0.182910 -0.859875 0.476612 0.647486 -0.207394 -0.733314 0.711874 0.508078 0.484862 0.272024 -0.835969 0.476612 0.665518 -0.139056 -0.733314 0.655283 0.579234 0.484862 0.357338 -0.803213 0.476612 0.676426 -0.068539 -0.733314 0.590966 0.644723 0.484862 0.439552 -0.761338 0.476612 0.679884 0.002733 -0.733314 0.520140 0.703109 0.484862 0.516925 -0.711076 0.476612 0.675927 0.073299 -0.733314 0.444338 0.753308 0.484862 0.587951 -0.653571 0.476612 0.664522 0.143737 -0.733314 0.362939 0.795729 0.484862 0.653212 -0.588350 0.476612 0.645798 0.212592 -0.733314 0.277542 0.829385 0.484862 0.711278 -0.516648 0.476612 0.619960 0.279105 -0.733314 0.189088 0.853905 0.484862 0.761509 -0.439256 0.476612 0.587636 0.341957 -0.733314 0.099420 0.868921 0.484862 0.802994 -0.357829 0.476612 0.548560 0.401662 -0.733314 0.007803 0.874556 0.484862 0.836075 -0.271698 0.476612 0.503441 0.456943 -0.733314 -0.083899 0.870557 0.484862 0.859946 -0.182575 0.476612 0.453285 0.506738 -0.733314 -0.173821 0.857143 0.484862 0.874254 -0.092316 0.476612 0.397679 0.551454 -0.733314 -0.262698 0.834205 0.484862 0.879114 -0.000179 0.476612 0.337692 0.590097 -0.733314 -0.348682 0.802078 0.484862 0.874291 0.091959 0.476612 0.273986 0.622239 -0.733314 -0.430825 0.761116 0.484862 0.859838 0.183085 0.476612 0.207909 0.647321 -0.733314 -0.507511 0.712279 0.484862 0.836186 0.271358 0.476612 0.138920 0.665546 -0.733314 -0.579368 0.655165 0.484862 0.803140 0.357502 0.476612 0.068401 0.676440 -0.733314 -0.644843 0.590835 0.484862 0.761248 0.439707 0.476612 -0.002871 0.679884 -0.733314 -0.703215 0.519997 0.484862 0.710971 0.517070 0.476612 -0.073436 0.675912 -0.733314 -0.753398 0.444185 0.484862 0.653451 0.588084 0.476612 -0.143872 0.664493 -0.733314 -0.795802 0.362777 0.484862 0.588217 0.653332 0.476612 -0.212723 0.645754 -0.733314 -0.829441 0.277373 0.484862 0.516504 0.711383 0.476612 -0.278612 0.620182 -0.733314 -0.853754 0.189768 0.484862 0.439862 0.761159 0.476612 -0.342077 0.587566 -0.733314 -0.868941 0.099243 0.484862 0.357665 0.803067 0.476612 -0.401774 0.548478 -0.733314 -0.874557 0.007625 0.484862 0.271528 0.836130 0.476612 -0.457045 0.503348 -0.733314 -0.870540 -0.084077 0.484862 0.182400 0.859984 0.476612 -0.506830 0.453182 -0.733314 -0.857108 -0.173995 0.484862 0.092137 0.874272 0.476612 -0.551535 0.397566 -0.733314 -0.834152 -0.262868 0.484862 0.000000 0.879114 0.476612 -0.590166 0.337572 -0.733314 -0.802007 -0.348845 0.484862 -0.092137 0.874272 0.476612 -0.622021 0.274481 -0.733314 -0.761459 -0.430219 0.484862 -0.182400 0.859984 0.476612 -0.647363 0.207777 -0.733314 -0.712175 -0.507656 0.484862 -0.271528 0.836130 0.476612 -0.665574 0.138785 -0.733314 -0.655047 -0.579501 0.484862 -0.357665 0.803067 0.476612 -0.676454 0.068263 -0.733314 -0.590704 -0.644963 0.484862 -0.439862 0.761159 0.476612 -0.679886 -0.002330 -0.733314 -0.520557 -0.702801 0.484862 -0.516504 0.711383 0.476612 -0.675897 -0.073574 -0.733314 -0.444031 -0.753488 0.484862 -0.588217 0.653332 0.476612 -0.664464 -0.144008 -0.733314 -0.362615 -0.795876 0.484862 -0.653451 0.588084 0.476612 -0.645924 -0.212209 -0.733314 -0.278033 -0.829220 0.484862 -0.710971 0.517070 0.476612 -0.620125 -0.278738 -0.733314 -0.189594 -0.853793 0.484862 -0.761248 0.439707 0.476612 -0.587496 -0.342196 -0.733314 -0.099066 -0.868962 0.484862 -0.803140 0.357502 0.476612 -0.548396 -0.401886 -0.733314 -0.007447 -0.874559 0.484862 -0.836186 0.271358 0.476612 -0.503712 -0.456645 -0.733314 0.083383 -0.870607 0.484862 -0.859838 0.183085 0.476612 -0.453078 -0.506922 -0.733314 0.174170 -0.857073 0.484862 -0.874291 0.091959 0.476612 0.348089 0.848916 -0.397714 0.559315 -0.528528 -0.638612 -0.752331 -0.000153 -0.658786 0.257199 0.880723 -0.397714 0.611628 -0.466997 -0.638612 -0.748171 -0.079002 -0.658786 0.164380 0.902665 -0.397714 0.656803 -0.400979 -0.638612 -0.735927 -0.156245 -0.658786 0.068869 0.914921 -0.397714 0.695211 -0.329933 -0.638612 -0.715499 -0.232515 -0.658786 -0.027401 0.917100 -0.397714 0.725962 -0.255253 -0.638612 -0.687189 -0.306224 -0.658786 -0.122460 0.909301 -0.397714 0.748538 -0.178510 -0.638612 -0.651686 -0.375908 -0.658786 -0.217086 0.891458 -0.397714 0.763124 -0.099075 -0.638612 -0.608699 -0.442139 -0.658786 -0.309322 0.863796 -0.397714 0.769305 -0.018548 -0.638612 -0.559007 -0.503500 -0.658786 -0.398150 0.826620 -0.397714 0.767012 0.062183 -0.638612 -0.503158 -0.559315 -0.658786 -0.481813 0.780820 -0.397714 0.756413 0.141473 -0.638612 -0.442376 -0.608527 -0.658786 -0.560995 0.726023 -0.397714 0.737420 0.219971 -0.638612 -0.376161 -0.651540 -0.658786 -0.633997 0.663228 -0.397714 0.710304 0.296046 -0.638612 -0.305804 -0.687376 -0.658786 -0.699423 0.593827 -0.397714 0.675733 0.368185 -0.638612 -0.232793 -0.715408 -0.658786 -0.757809 0.517252 -0.397714 0.633423 0.436979 -0.638612 -0.156531 -0.735866 -0.658786 -0.807847 0.434980 -0.397714 0.584135 0.500960 -0.638612 -0.078545 -0.748219 -0.658786 -0.848703 0.348608 -0.397714 0.528870 0.558992 -0.638612 -0.000306 -0.752331 -0.658786 -0.880565 0.257737 -0.397714 0.467371 0.611342 -0.638612 0.078545 -0.748219 -0.658786 -0.902728 0.164028 -0.397714 0.400724 0.656959 -0.638612 0.156531 -0.735866 -0.658786 -0.914948 0.068513 -0.397714 0.329663 0.695340 -0.638612 0.232793 -0.715408 -0.658786 -0.917117 -0.026841 -0.397714 0.255696 0.725806 -0.638612 0.305804 -0.687376 -0.658786 -0.909253 -0.122813 -0.397714 0.178219 0.748607 -0.638612 0.376161 -0.651540 -0.658786 -0.891374 -0.217433 -0.397714 0.098778 0.763163 -0.638612 0.442376 -0.608527 -0.658786 -0.863985 -0.308794 -0.397714 0.019018 0.769294 -0.638612 0.503158 -0.559315 -0.658786 -0.826863 -0.397645 -0.397714 -0.061714 0.767050 -0.638612 0.559007 -0.503500 -0.658786 -0.780633 -0.482117 -0.397714 -0.141767 0.756358 -0.638612 0.608699 -0.442139 -0.658786 -0.725804 -0.561277 -0.397714 -0.220258 0.737334 -0.638612 0.651686 -0.375908 -0.658786 -0.663615 -0.633592 -0.397714 -0.295612 0.710485 -0.638612 0.687189 -0.306224 -0.658786 -0.593555 -0.699654 -0.397714 -0.368448 0.675589 -0.638612 0.715499 -0.232515 -0.658786 -0.516957 -0.758010 -0.397714 -0.437225 0.633253 -0.638612 0.735927 -0.156245 -0.658786 -0.435473 -0.807581 -0.397714 -0.500603 0.584441 -0.638612 0.748171 -0.079002 -0.658786 -0.348435 -0.848774 -0.397714 -0.559099 0.528756 -0.638612 0.752331 -0.000153 -0.658786 -0.257558 -0.880618 -0.397714 -0.611437 0.467246 -0.638612 0.748203 0.078697 -0.658786 -0.163845 -0.902762 -0.397714 -0.657041 0.400590 -0.638612 0.735834 0.156681 -0.658786 -0.069241 -0.914893 -0.397714 -0.695077 0.330216 -0.638612 0.715593 0.232223 -0.658786 0.027027 -0.917111 -0.397714 -0.725858 0.255549 -0.638612 0.687313 0.305944 -0.658786 0.122998 -0.909228 -0.397714 -0.748644 0.178066 -0.638612 0.651463 0.376294 -0.658786 0.217615 -0.891329 -0.397714 -0.763183 0.098622 -0.638612 0.608437 0.442500 -0.658786 0.308970 -0.863922 -0.397714 -0.769298 0.018861 -0.638612 0.559212 0.503272 -0.658786 0.397814 -0.826782 -0.397714 -0.767038 -0.061871 -0.638612 0.503386 0.559110 -0.658786 0.482275 -0.780535 -0.397714 -0.756329 -0.141921 -0.638612 0.442015 0.608789 -0.658786 0.560699 -0.726251 -0.397714 -0.737509 -0.219670 -0.638612 0.376427 0.651386 -0.658786 0.633727 -0.663486 -0.397714 -0.710424 -0.295757 -0.638612 0.306084 0.687251 -0.658786 0.699775 -0.593413 -0.397714 -0.675514 -0.368586 -0.638612 0.232369 0.715546 -0.658786 0.758115 -0.516803 -0.397714 -0.633163 -0.437354 -0.638612 0.156095 0.735959 -0.658786 0.807670 -0.435309 -0.397714 -0.584339 -0.500722 -0.638612 0.078850 0.748187 -0.658786 0.848845 -0.348262 -0.397714 -0.528642 -0.559207 -0.638612 0.000000 0.752331 -0.658786 0.880670 -0.257379 -0.397714 -0.467122 -0.611533 -0.638612 -0.078850 0.748187 -0.658786 0.902631 -0.164563 -0.397714 -0.401113 -0.656722 -0.638612 -0.156095 0.735959 -0.658786 0.914907 -0.069055 -0.397714 -0.330075 -0.695144 -0.638612 -0.232369 0.715546 -0.658786 0.917106 0.027214 -0.397714 -0.255401 -0.725910 -0.638612 -0.306084 0.687251 -0.658786 0.909203 0.123184 -0.397714 -0.177914 -0.748680 -0.638612 -0.376427 0.651386 -0.658786 0.891502 0.216905 -0.397714 -0.099230 -0.763104 -0.638612 -0.442015 0.608789 -0.658786 0.863859 0.309146 -0.397714 -0.018705 -0.769302 -0.638612 -0.503386 0.559110 -0.658786 0.826701 0.397982 -0.397714 0.062027 -0.767025 -0.638612 -0.559212 0.503272 -0.658786 0.780918 0.481654 -0.397714 0.141318 -0.756442 -0.638612 -0.608437 0.442500 -0.658786 0.726137 0.560847 -0.397714 0.219821 -0.737464 -0.638612 -0.651463 0.376294 -0.658786 0.663357 0.633862 -0.397714 0.295902 -0.710364 -0.638612 -0.687313 0.305944 -0.658786 0.593270 0.699896 -0.397714 0.368723 -0.675439 -0.638612 -0.715593 0.232223 -0.658786 0.517407 0.757703 -0.397714 0.436850 -0.633512 -0.638612 -0.735834 0.156681 -0.658786 0.435144 0.807758 -0.397714 0.500841 -0.584237 -0.638612 -0.748203 0.078697 -0.658786 -0.961640 0.097445 0.256422 0.094141 0.995241 -0.025157 -0.257653 -0.000052 -0.966237 -0.966557 -0.003879 0.256422 -0.010686 0.999626 -0.025157 -0.256229 -0.027056 -0.966237 -0.960932 -0.104199 0.256422 -0.114402 0.993116 -0.025157 -0.252035 -0.053510 -0.966237 -0.944719 -0.204337 0.256422 -0.217857 0.975656 -0.025157 -0.245039 -0.079630 -0.966237 -0.918100 -0.302225 0.256422 -0.318913 0.947450 -0.025157 -0.235344 -0.104873 -0.966237 -0.881764 -0.395903 0.256422 -0.415548 0.909223 -0.025157 -0.223185 -0.128738 -0.966237 -0.835415 -0.486138 0.256422 -0.508552 0.860664 -0.025157 -0.208463 -0.151421 -0.966237 -0.779863 -0.571018 0.256422 -0.595955 0.802624 -0.025157 -0.191445 -0.172435 -0.966237 -0.715721 -0.649608 0.256422 -0.676793 0.735743 -0.025157 -0.172318 -0.191550 -0.966237 -0.644417 -0.720399 0.256422 -0.749516 0.661508 -0.025157 -0.151502 -0.208404 -0.966237 -0.565365 -0.783971 0.256422 -0.814719 0.579310 -0.025157 -0.128825 -0.223135 -0.966237 -0.480085 -0.838908 0.256422 -0.870948 0.490731 -0.025157 -0.104730 -0.235408 -0.966237 -0.390402 -0.884214 0.256422 -0.917186 0.397664 -0.025157 -0.079725 -0.245008 -0.966237 -0.295580 -0.920261 0.256422 -0.953813 0.299347 -0.025157 -0.053608 -0.252015 -0.966237 -0.197502 -0.946172 0.256422 -0.979933 0.197732 -0.025157 -0.026900 -0.256245 -0.966237 -0.098032 -0.961581 0.256422 -0.995183 0.094749 -0.025157 -0.000105 -0.257653 -0.966237 0.003288 -0.966559 0.256422 -0.999633 -0.010075 -0.025157 0.026900 -0.256245 -0.966237 0.104573 -0.960891 0.256422 -0.993071 -0.114788 -0.025157 0.053608 -0.252015 -0.966237 0.204705 -0.944639 0.256422 -0.975572 -0.218237 -0.025157 0.079725 -0.245008 -0.966237 0.301664 -0.918284 0.256422 -0.947645 -0.318334 -0.025157 0.104730 -0.235408 -0.966237 0.396246 -0.881611 0.256422 -0.909062 -0.415901 -0.025157 0.128825 -0.223135 -0.966237 0.486463 -0.835226 0.256422 -0.860466 -0.508887 -0.025157 0.151502 -0.208404 -0.966237 0.570541 -0.780212 0.256422 -0.802988 -0.595464 -0.025157 0.172318 -0.191550 -0.966237 0.649171 -0.716118 0.256422 -0.736156 -0.676344 -0.025157 0.191445 -0.172435 -0.966237 0.720650 -0.644136 0.256422 -0.661216 -0.749773 -0.025157 0.208463 -0.151421 -0.966237 0.784191 -0.565060 0.256422 -0.578993 -0.814944 -0.025157 0.223185 -0.128738 -0.966237 0.838614 -0.480598 0.256422 -0.491263 -0.870648 -0.025157 0.235344 -0.104873 -0.966237 0.884366 -0.390058 0.256422 -0.397308 -0.917341 -0.025157 0.245039 -0.079630 -0.966237 0.920376 -0.295222 0.256422 -0.298975 -0.953929 -0.025157 0.252035 -0.053510 -0.966237 0.946051 -0.198080 0.256422 -0.198330 -0.979812 -0.025157 0.256229 -0.027056 -0.966237 0.961601 -0.097836 0.256422 -0.094547 -0.995203 -0.025157 0.257653 -0.000052 -0.966237 0.966559 0.003485 0.256422 0.010279 -0.999631 -0.025157 0.256240 0.026952 -0.966237 0.960870 0.104768 0.256422 0.114990 -0.993048 -0.025157 0.252004 0.053659 -0.966237 0.944802 0.203953 0.256422 0.217460 -0.975745 -0.025157 0.245072 0.079530 -0.966237 0.918223 0.301851 0.256422 0.318527 -0.947580 -0.025157 0.235387 0.104778 -0.966237 0.881530 0.396425 0.256422 0.416086 -0.908977 -0.025157 0.223109 0.128871 -0.966237 0.835127 0.486633 0.256422 0.509062 -0.860362 -0.025157 0.208373 0.151544 -0.966237 0.780096 0.570700 0.256422 0.595628 -0.802866 -0.025157 0.191515 0.172357 -0.966237 0.715986 0.649317 0.256422 0.676494 -0.736019 -0.025157 0.172396 0.191480 -0.966237 0.643990 0.720781 0.256422 0.749908 -0.661064 -0.025157 0.151378 0.208494 -0.966237 0.565684 0.783741 0.256422 0.814483 -0.579642 -0.025157 0.128916 0.223083 -0.966237 0.480427 0.838712 0.256422 0.870748 -0.491086 -0.025157 0.104825 0.235365 -0.966237 0.389878 0.884445 0.256422 0.917422 -0.397121 -0.025157 0.079580 0.245055 -0.966237 0.295034 0.920436 0.256422 0.953990 -0.298781 -0.025157 0.053458 0.252046 -0.966237 0.197887 0.946091 0.256422 0.979853 -0.198131 -0.025157 0.027004 0.256234 -0.966237 0.097640 0.961621 0.256422 0.995222 -0.094344 -0.025157 0.000000 0.257653 -0.966237 -0.003682 0.966558 0.256422 0.999629 0.010482 -0.025157 -0.027004 0.256234 -0.966237 -0.104003 0.960953 0.256422 0.993139 0.114200 -0.025157 -0.053458 0.252046 -0.966237 -0.204145 0.944761 0.256422 0.975701 0.217659 -0.025157 -0.079580 0.245055 -0.966237 -0.302038 0.918162 0.256422 0.947515 0.318720 -0.025157 -0.104825 0.235365 -0.966237 -0.396605 0.881449 0.256422 0.908892 0.416271 -0.025157 -0.128916 0.223083 -0.966237 -0.485967 0.835514 0.256422 0.860767 0.508377 -0.025157 -0.151378 0.208494 -0.966237 -0.570859 0.779979 0.256422 0.802745 0.595791 -0.025157 -0.172396 0.191480 -0.966237 -0.649462 0.715854 0.256422 0.735881 0.676644 -0.025157 -0.191515 0.172357 -0.966237 -0.720268 0.644563 0.256422 0.661661 0.749381 -0.025157 -0.208373 0.151544 -0.966237 -0.783856 0.565524 0.256422 0.579476 0.814601 -0.025157 -0.223109 0.128871 -0.966237 -0.838810 0.480256 0.256422 0.490909 0.870848 -0.025157 -0.235387 0.104778 -0.966237 -0.884524 0.389698 0.256422 0.396934 0.917502 -0.025157 -0.245072 0.079530 -0.966237 -0.920201 0.295767 0.256422 0.299541 0.953752 -0.025157 -0.252004 0.053659 -0.966237 -0.946131 0.197695 0.256422 0.197931 0.979893 -0.025157 -0.256240 0.026952 -0.966237 -0.036368 -0.900632 0.433059 -0.075835 0.434583 0.897433 -0.996457 -0.000203 -0.084104 0.058225 -0.899483 0.433059 -0.120965 0.424242 0.897433 -0.990948 -0.104638 -0.084104 0.151288 -0.888579 0.433059 -0.164353 0.409392 0.897433 -0.974731 -0.206945 -0.084104 0.243584 -0.867829 0.433059 -0.206355 0.389912 0.897433 -0.947673 -0.307964 -0.084104 0.333197 -0.837520 0.433059 -0.246084 0.366137 0.897433 -0.910177 -0.405591 -0.084104 0.418342 -0.798405 0.433059 -0.282764 0.338612 0.897433 -0.863154 -0.497888 -0.084104 0.499717 -0.750162 0.433059 -0.316695 0.307112 0.897433 -0.806218 -0.585610 -0.084104 0.575587 -0.693657 0.433059 -0.347139 0.272228 0.897433 -0.740402 -0.666882 -0.084104 0.645117 -0.629511 0.433059 -0.373758 0.234346 0.897433 -0.666430 -0.740809 -0.084104 0.706983 -0.559138 0.433059 -0.396067 0.194279 0.897433 -0.585924 -0.805990 -0.084104 0.761691 -0.481962 0.433059 -0.414248 0.151699 0.897433 -0.498223 -0.862960 -0.084104 0.808009 -0.399477 0.433059 -0.427865 0.107447 0.897433 -0.405035 -0.910425 -0.084104 0.845114 -0.313437 0.433059 -0.436708 0.062449 0.897433 -0.308333 -0.947553 -0.084104 0.873310 -0.223137 0.433059 -0.440848 0.016335 0.897433 -0.207324 -0.974650 -0.084104 0.891886 -0.130379 0.433059 -0.440132 -0.029959 0.897433 -0.104032 -0.991012 -0.084104 0.900609 -0.036918 0.433059 -0.434630 -0.075569 0.897433 -0.000406 -0.996457 -0.084104 0.899518 0.057675 0.433059 -0.424316 -0.120705 0.897433 0.104032 -0.991012 -0.084104 0.888520 0.151634 0.433059 -0.409328 -0.164512 0.897433 0.207324 -0.974650 -0.084104 0.867734 0.243922 0.433059 -0.389832 -0.206506 0.897433 0.308333 -0.947553 -0.084104 0.837723 0.332685 0.433059 -0.366287 -0.245860 0.897433 0.405035 -0.910425 -0.084104 0.798242 0.418653 0.433059 -0.338502 -0.282895 0.897433 0.498223 -0.862960 -0.084104 0.749968 0.500008 0.433059 -0.306988 -0.316815 0.897433 0.585924 -0.805990 -0.084104 0.694008 0.575163 0.433059 -0.272440 -0.346972 0.897433 0.666430 -0.740809 -0.084104 0.629905 0.644732 0.433059 -0.234575 -0.373615 0.897433 0.740402 -0.666882 -0.084104 0.558863 0.707200 0.433059 -0.194125 -0.396143 0.897433 0.806218 -0.585610 -0.084104 0.481666 0.761878 0.433059 -0.151538 -0.414307 0.897433 0.863154 -0.497888 -0.084104 0.399971 0.807764 0.433059 -0.107708 -0.427800 0.897433 0.910177 -0.405591 -0.084104 0.313108 0.845236 0.433059 -0.062279 -0.436732 0.897433 0.947673 -0.307964 -0.084104 0.222797 0.873396 0.433059 -0.016163 -0.440854 0.897433 0.974731 -0.206945 -0.084104 0.130924 0.891807 0.433059 0.029690 -0.440150 0.897433 0.990948 -0.104638 -0.084104 0.036735 0.900617 0.433059 0.075658 -0.434614 0.897433 0.996457 -0.000203 -0.084104 -0.057858 0.899507 0.433059 0.120792 -0.424291 0.897433 0.990990 0.104234 -0.084104 -0.151815 0.888489 0.433059 0.164595 -0.409295 0.897433 0.974608 0.207523 -0.084104 -0.243231 0.867928 0.433059 0.206196 -0.389996 0.897433 0.947799 0.307578 -0.084104 -0.332856 0.837655 0.433059 0.245935 -0.366237 0.897433 0.910342 0.405220 -0.084104 -0.418815 0.798156 0.433059 0.282964 -0.338445 0.897433 0.862859 0.498399 -0.084104 -0.500161 0.749866 0.433059 0.316877 -0.306924 0.897433 0.805871 0.586088 -0.084104 -0.575304 0.693891 0.433059 0.347028 -0.272370 0.897433 0.740673 0.666581 -0.084104 -0.644861 0.629774 0.433059 0.373663 -0.234499 0.897433 0.666731 0.740537 -0.084104 -0.707314 0.558719 0.433059 0.396182 -0.194045 0.897433 0.585446 0.806337 -0.084104 -0.761494 0.482272 0.433059 0.414186 -0.151867 0.897433 0.498575 0.862757 -0.084104 -0.807846 0.399806 0.433059 0.427822 -0.107621 0.897433 0.405406 0.910260 -0.084104 -0.845299 0.312936 0.433059 0.436745 -0.062190 0.897433 0.307771 0.947736 -0.084104 -0.873442 0.222619 0.433059 0.440857 -0.016073 0.897433 0.206747 0.974773 -0.084104 -0.891833 0.130742 0.433059 0.440144 0.029780 0.897433 0.104436 0.990969 -0.084104 -0.900624 0.036552 0.433059 0.434599 0.075746 0.897433 0.000000 0.996457 -0.084104 -0.899495 -0.058042 0.433059 0.424267 0.120878 0.897433 -0.104436 0.990969 -0.084104 -0.888609 -0.151107 0.433059 0.409425 0.164269 0.897433 -0.206747 0.974773 -0.084104 -0.867878 -0.243407 0.433059 0.389954 0.206275 0.897433 -0.307771 0.947736 -0.084104 -0.837588 -0.333027 0.433059 0.366187 0.246009 0.897433 -0.405406 0.910260 -0.084104 -0.798071 -0.418978 0.433059 0.338387 0.283033 0.897433 -0.498575 0.862757 -0.084104 -0.750264 -0.499564 0.433059 0.307176 0.316633 0.897433 -0.585446 0.806337 -0.084104 -0.693774 -0.575446 0.433059 0.272299 0.347083 0.897433 -0.666731 0.740537 -0.084104 -0.629642 -0.644989 0.433059 0.234422 0.373711 0.897433 -0.740673 0.666581 -0.084104 -0.559282 -0.706869 0.433059 0.194360 0.396028 0.897433 -0.805871 0.586088 -0.084104 -0.482117 -0.761592 0.433059 0.151783 0.414217 0.897433 -0.862859 0.498399 -0.084104 -0.399642 -0.807927 0.433059 0.107534 0.427843 0.897433 -0.910342 0.405220 -0.084104 -0.312764 -0.845363 0.433059 0.062101 0.436757 0.897433 -0.947799 0.307578 -0.084104 -0.223315 -0.873264 0.433059 0.016424 0.440844 0.897433 -0.974608 0.207523 -0.084104 -0.130561 -0.891860 0.433059 -0.029870 0.440138 0.897433 -0.990990 0.104234 -0.084104 0.916763 -0.247415 -0.313580 -0.234077 -0.968910 0.080138 -0.323658 -0.000066 -0.946174 0.937645 -0.149969 -0.313580 -0.131239 -0.988106 0.080138 -0.321868 -0.033987 -0.946174 0.948147 -0.051819 -0.313580 -0.027952 -0.996392 0.080138 -0.316601 -0.067218 -0.946174 0.948356 0.047839 -0.313580 0.076631 -0.993834 0.080138 -0.307812 -0.100029 -0.946174 0.938119 0.146970 -0.313580 0.180370 -0.980329 0.080138 -0.295633 -0.131739 -0.946174 0.917793 0.243565 -0.313580 0.281166 -0.956307 0.080138 -0.280360 -0.161718 -0.946174 0.887211 0.338414 -0.313580 0.379845 -0.921572 0.080138 -0.261866 -0.190211 -0.946174 0.846857 0.429537 -0.313580 0.474341 -0.876686 0.080138 -0.240489 -0.216609 -0.946174 0.797174 0.515928 -0.313580 0.563611 -0.822144 0.080138 -0.216462 -0.240621 -0.946174 0.739307 0.595897 -0.313580 0.645915 -0.759192 0.080138 -0.190313 -0.261792 -0.946174 0.672781 0.670100 -0.313580 0.721926 -0.687314 0.080138 -0.161827 -0.280297 -0.946174 0.598844 0.736921 -0.313580 0.789986 -0.607865 0.080138 -0.131559 -0.295714 -0.946174 0.519107 0.795107 -0.313580 0.848821 -0.522571 0.080138 -0.100149 -0.307773 -0.946174 0.432915 0.845134 -0.313580 0.898916 -0.430730 0.080138 -0.067341 -0.316575 -0.946174 0.341955 0.885853 -0.313580 0.939109 -0.334145 0.080138 -0.033791 -0.321889 -0.946174 0.247975 0.916611 -0.313580 0.968767 -0.234669 0.080138 -0.000132 -0.323658 -0.946174 0.150541 0.937553 -0.313580 0.988026 -0.131842 0.080138 0.033791 -0.321889 -0.946174 0.051450 0.948167 -0.313580 0.996403 -0.027564 0.080138 0.067341 -0.316575 -0.946174 -0.048208 0.948337 -0.313580 0.993804 0.077018 0.080138 0.100149 -0.307773 -0.946174 -0.146397 0.938209 -0.313580 0.980439 0.179771 0.080138 0.131559 -0.295714 -0.946174 -0.243922 0.917698 -0.313580 0.956198 0.281538 0.080138 0.161827 -0.280297 -0.946174 -0.338760 0.887079 -0.313580 0.921424 0.380204 0.080138 0.190313 -0.261792 -0.946174 -0.429019 0.847119 -0.313580 0.876976 0.473805 0.080138 0.216462 -0.240621 -0.946174 -0.515441 0.797489 -0.313580 0.822488 0.563109 0.080138 0.240489 -0.216609 -0.946174 -0.596184 0.739075 -0.313580 0.758940 0.646210 0.080138 0.261866 -0.190211 -0.946174 -0.670361 0.672520 -0.313580 0.687033 0.722194 0.080138 0.280360 -0.161718 -0.946174 -0.736555 0.599295 -0.313580 0.608348 0.789614 0.080138 0.295633 -0.131739 -0.946174 -0.795309 0.518798 -0.313580 0.522240 0.849025 0.080138 0.307812 -0.100029 -0.946174 -0.845303 0.432586 -0.313580 0.430380 0.899083 0.080138 0.316601 -0.067218 -0.946174 -0.885643 0.342496 -0.313580 0.334719 0.938904 0.080138 0.321868 -0.033987 -0.946174 -0.916662 0.247788 -0.313580 0.234471 0.968814 0.080138 0.323658 -0.000066 -0.946174 -0.937583 0.150351 -0.313580 0.131641 0.988053 0.080138 0.321882 0.033856 -0.946174 -0.948178 0.051257 -0.313580 0.027361 0.996408 0.080138 0.316561 0.067405 -0.946174 -0.948376 -0.047453 -0.313580 -0.076226 0.993865 0.080138 0.307853 0.099904 -0.946174 -0.938179 -0.146588 -0.313580 -0.179971 0.980402 0.080138 0.295687 0.131619 -0.946174 -0.917649 -0.244108 -0.313580 -0.281733 0.956140 0.080138 0.280264 0.161884 -0.946174 -0.887010 -0.338940 -0.313580 -0.380391 0.921347 0.080138 0.261754 0.190366 -0.946174 -0.847031 -0.429192 -0.313580 -0.473984 0.876879 0.080138 0.240577 0.216511 -0.946174 -0.797384 -0.515603 -0.313580 -0.563276 0.822373 0.080138 0.216560 0.240533 -0.946174 -0.738954 -0.596335 -0.313580 -0.646365 0.758809 0.080138 0.190158 0.261905 -0.946174 -0.673054 -0.669826 -0.313580 -0.721646 0.687608 0.080138 0.161941 0.280231 -0.946174 -0.599145 -0.736677 -0.313580 -0.789738 0.608187 0.080138 0.131679 0.295660 -0.946174 -0.518636 -0.795415 -0.313580 -0.849131 0.522067 0.080138 0.099967 0.307833 -0.946174 -0.432414 -0.845391 -0.313580 -0.899171 0.430197 0.080138 0.067153 0.316614 -0.946174 -0.342316 -0.885713 -0.313580 -0.938972 0.334527 0.080138 0.033922 0.321875 -0.946174 -0.247601 -0.916712 -0.313580 -0.968862 0.234274 0.080138 0.000000 0.323658 -0.946174 -0.150160 -0.937614 -0.313580 -0.988080 0.131440 0.080138 -0.033922 0.321875 -0.946174 -0.052012 -0.948136 -0.313580 -0.996386 0.028155 0.080138 -0.067153 0.316614 -0.946174 0.047646 -0.948366 -0.313580 -0.993849 -0.076429 0.080138 -0.099967 0.307833 -0.946174 0.146779 -0.938149 -0.313580 -0.980366 -0.180170 0.080138 -0.131679 0.295660 -0.946174 0.244295 -0.917599 -0.313580 -0.956083 -0.281927 0.080138 -0.161941 0.280231 -0.946174 0.338234 -0.887280 -0.313580 -0.921650 -0.379658 0.080138 -0.190158 0.261905 -0.946174 0.429364 -0.846944 -0.313580 -0.876783 -0.474162 0.080138 -0.216560 0.240533 -0.946174 0.515765 -0.797279 -0.313580 -0.822258 -0.563444 0.080138 -0.240577 0.216511 -0.946174 0.595746 -0.739428 -0.313580 -0.759323 -0.645760 0.080138 -0.261754 0.190366 -0.946174 0.669963 -0.672917 -0.313580 -0.687461 -0.721786 0.080138 -0.280264 0.161884 -0.946174 0.736799 -0.598995 -0.313580 -0.608026 -0.789862 0.080138 -0.295687 0.131619 -0.946174 0.795520 -0.518474 -0.313580 -0.521894 -0.849237 0.080138 -0.307853 0.099904 -0.946174 0.845046 -0.433087 -0.313580 -0.430913 -0.898828 0.080138 -0.316561 0.067405 -0.946174 0.885783 -0.342135 -0.313580 -0.334336 -0.939041 0.080138 -0.321882 0.033856 -0.946174 0.188147 0.981279 0.041130 -0.958688 0.192590 -0.209345 -0.213347 -0.000043 0.976976 0.084266 0.995594 0.041130 -0.973593 0.091052 -0.209345 -0.212168 -0.022404 0.976976 -0.019545 0.998963 0.041130 -0.977785 -0.010511 -0.209345 -0.208696 -0.044308 0.976976 -0.124136 0.991412 0.041130 -0.971299 -0.112932 -0.209345 -0.202903 -0.065937 0.976976 -0.227359 0.972942 0.041130 -0.954113 -0.214109 -0.209345 -0.194874 -0.086839 0.976976 -0.327134 0.944082 0.041130 -0.926731 -0.312002 -0.209345 -0.184806 -0.106601 0.976976 -0.424279 0.904597 0.041130 -0.888927 -0.407411 -0.209345 -0.172616 -0.125383 0.976976 -0.516751 0.855147 0.041130 -0.841331 -0.498333 -0.209345 -0.158524 -0.142784 0.976976 -0.603530 0.796278 0.041130 -0.784469 -0.583766 -0.209345 -0.142687 -0.158612 0.976976 -0.682933 0.729322 0.041130 -0.719628 -0.662050 -0.209345 -0.125450 -0.172567 0.976976 -0.755610 0.653729 0.041130 -0.646277 -0.733826 -0.209345 -0.106673 -0.184765 0.976976 -0.819964 0.570935 0.041130 -0.565808 -0.797519 -0.209345 -0.086720 -0.194927 0.976976 -0.874804 0.482728 0.041130 -0.479958 -0.851948 -0.209345 -0.066016 -0.202877 0.976976 -0.920579 0.388383 0.041130 -0.388024 -0.897559 -0.209345 -0.044389 -0.208678 0.976976 -0.956215 0.289761 0.041130 -0.291817 -0.933283 -0.209345 -0.022274 -0.212182 0.976976 -0.981164 0.188746 0.041130 -0.193176 -0.958571 -0.209345 -0.000087 -0.213347 0.976976 -0.995542 0.084874 0.041130 -0.091647 -0.973538 -0.209345 0.022274 -0.212182 0.976976 -0.998955 -0.019934 0.041130 0.010892 -0.977781 -0.209345 0.044389 -0.208678 0.976976 -0.991364 -0.124521 0.041130 0.113310 -0.971255 -0.209345 0.066016 -0.202877 0.976976 -0.973081 -0.226765 0.041130 0.213526 -0.954244 -0.209345 0.086720 -0.194927 0.976976 -0.943955 -0.327502 0.041130 0.312362 -0.926609 -0.209345 0.106673 -0.184765 0.976976 -0.904432 -0.424631 0.041130 0.407757 -0.888768 -0.209345 0.125450 -0.172567 0.976976 -0.855463 -0.516228 0.041130 0.497819 -0.841636 -0.209345 0.142687 -0.158612 0.976976 -0.796647 -0.603044 0.041130 0.583287 -0.784825 -0.209345 0.158524 -0.142784 0.976976 -0.729056 -0.683217 0.041130 0.662330 -0.719370 -0.209345 0.172616 -0.125383 0.976976 -0.653435 -0.755864 0.041130 0.734077 -0.645992 -0.209345 0.184806 -0.106601 0.976976 -0.571436 -0.819615 0.041130 0.797173 -0.566295 -0.209345 0.194874 -0.086839 0.976976 -0.482387 -0.874992 0.041130 0.852134 -0.479627 -0.209345 0.202903 -0.065937 0.976976 -0.388025 -0.920731 0.041130 0.897710 -0.387675 -0.209345 0.208696 -0.044308 0.976976 -0.290345 -0.956038 0.041130 0.933105 -0.292387 -0.209345 0.212168 -0.022404 0.976976 -0.188547 -0.981203 0.041130 0.958610 -0.192981 -0.209345 0.213347 -0.000043 0.976976 -0.084671 -0.995560 0.041130 0.973556 -0.091449 -0.209345 0.212177 0.022317 0.976976 0.020137 -0.998951 0.041130 0.977779 0.011091 -0.209345 0.208669 0.044432 0.976976 0.123732 -0.991463 0.041130 0.971344 0.112537 -0.209345 0.202929 0.065854 0.976976 0.226963 -0.973035 0.041130 0.954200 0.213721 -0.209345 0.194910 0.086760 0.976976 0.327694 -0.943888 0.041130 0.926546 0.312551 -0.209345 0.184743 0.106710 0.976976 0.424815 -0.904345 0.041130 0.888685 0.407938 -0.209345 0.172542 0.125485 0.976976 0.516402 -0.855358 0.041130 0.841534 0.497990 -0.209345 0.158583 0.142719 0.976976 0.603206 -0.796524 0.041130 0.784707 0.583447 -0.209345 0.142751 0.158554 0.976976 0.683365 -0.728917 0.041130 0.719236 0.662476 -0.209345 0.125347 0.172642 0.976976 0.755344 -0.654037 0.041130 0.646576 0.733563 -0.209345 0.106748 0.184721 0.976976 0.819732 -0.571269 0.041130 0.566132 0.797288 -0.209345 0.086800 0.194892 0.976976 0.875090 -0.482209 0.041130 0.479453 0.852232 -0.209345 0.065896 0.202916 0.976976 0.920810 -0.387838 0.041130 0.387492 0.897789 -0.209345 0.044266 0.208705 0.976976 0.956097 -0.290151 0.041130 0.292197 0.933164 -0.209345 0.022360 0.212172 0.976976 0.981241 -0.188347 0.041130 0.192785 0.958649 -0.209345 0.000000 0.213347 0.976976 0.995577 -0.084468 0.041130 0.091250 0.973575 -0.209345 -0.022360 0.212172 0.976976 0.998967 0.019341 0.041130 -0.010312 0.977787 -0.209345 -0.044266 0.208705 0.976976 0.991438 0.123934 0.041130 -0.112734 0.971322 -0.209345 -0.065896 0.202916 0.976976 0.972988 0.227161 0.041130 -0.213915 0.954157 -0.209345 -0.086800 0.194892 0.976976 0.943821 0.327886 0.041130 -0.312739 0.926482 -0.209345 -0.106748 0.184721 0.976976 0.904683 0.424095 0.041130 -0.407230 0.889010 -0.209345 -0.125347 0.172642 0.976976 0.855253 0.516577 0.041130 -0.498162 0.841433 -0.209345 -0.142751 0.158554 0.976976 0.796401 0.603368 0.041130 -0.583606 0.784588 -0.209345 -0.158583 0.142719 0.976976 0.729461 0.682785 0.041130 -0.661903 0.719763 -0.209345 -0.172542 0.125485 0.976976 0.653883 0.755477 0.041130 -0.733694 0.646427 -0.209345 -0.184743 0.106710 0.976976 0.571102 0.819848 0.041130 -0.797404 0.565970 -0.209345 -0.194910 0.086760 0.976976 0.482031 0.875188 0.041130 -0.852330 0.479279 -0.209345 -0.202929 0.065854 0.976976 0.388571 0.920500 0.041130 -0.897480 0.388207 -0.209345 -0.208669 0.044432 0.976976 0.289956 0.956156 0.041130 -0.933224 0.292007 -0.209345 -0.212177 0.022317 0.976976 0.718194 0.337210 0.608677 -0.257340 0.941429 -0.217915 -0.646509 -0.000132 0.762906 0.678896 0.410625 0.608677 -0.354591 0.909274 -0.217915 -0.642935 -0.067890 0.762906 0.632600 0.478884 0.608677 -0.447069 0.867550 -0.217915 -0.632413 -0.134268 0.762906 0.578925 0.542548 0.608677 -0.535532 0.815916 -0.217915 -0.614858 -0.199810 0.762906 0.518874 0.600235 0.608677 -0.618097 0.755294 -0.217915 -0.590530 -0.263151 0.762906 0.453759 0.650858 0.608677 -0.693166 0.687047 -0.217915 -0.560021 -0.323033 0.762906 0.383045 0.694830 0.608677 -0.761356 0.610615 -0.217915 -0.523081 -0.379948 0.762906 0.308112 0.731149 0.608677 -0.821160 0.527456 -0.217915 -0.480379 -0.432679 0.762906 0.229786 0.759415 0.608677 -0.871918 0.438488 -0.217915 -0.432385 -0.480643 0.762906 0.149707 0.779166 0.608677 -0.912728 0.345602 -0.217915 -0.380152 -0.522933 0.762906 0.067221 0.790566 0.608677 -0.943923 0.248038 -0.217915 -0.323251 -0.559895 0.762906 -0.016007 0.793257 0.608677 -0.964720 0.147743 -0.217915 -0.262790 -0.590691 0.762906 -0.098270 0.787309 0.608677 -0.974845 0.046794 -0.217915 -0.200049 -0.614780 0.762906 -0.180245 0.772674 0.608677 -0.974381 -0.055634 -0.217915 -0.134514 -0.632361 0.762906 -0.260234 0.749527 0.608677 -0.963184 -0.157450 -0.217915 -0.067497 -0.642976 0.762906 -0.336771 0.718399 0.608677 -0.941586 -0.256764 -0.217915 -0.000263 -0.646509 0.762906 -0.410210 0.679147 0.608677 -0.909490 -0.354035 -0.217915 0.067497 -0.642976 0.762906 -0.479130 0.632414 0.608677 -0.867376 -0.447407 -0.217915 0.134514 -0.632361 0.762906 -0.542773 0.578714 0.608677 -0.815707 -0.535850 -0.217915 0.200049 -0.614780 0.762906 -0.599918 0.519241 0.608677 -0.755672 -0.617635 -0.217915 0.262790 -0.590691 0.762906 -0.651034 0.453506 0.608677 -0.686777 -0.693433 -0.217915 0.323251 -0.559895 0.762906 -0.694979 0.382775 0.608677 -0.610318 -0.761594 -0.217915 0.380152 -0.522933 0.762906 -0.730961 0.308559 0.608677 -0.527958 -0.820837 -0.217915 0.432385 -0.480643 0.762906 -0.759274 0.230250 0.608677 -0.439020 -0.871650 -0.217915 0.480379 -0.432679 0.762906 -0.779225 0.149404 0.608677 -0.345247 -0.912862 -0.217915 0.523081 -0.379948 0.762906 -0.790592 0.066913 0.608677 -0.247671 -0.944019 -0.217915 0.560021 -0.323033 0.762906 -0.793266 -0.015522 0.608677 -0.148332 -0.964630 -0.217915 0.590530 -0.263151 0.762906 -0.787271 -0.098576 0.608677 -0.046415 -0.974863 -0.217915 0.614858 -0.199810 0.762906 -0.772603 -0.180545 0.608677 0.056013 -0.974359 -0.217915 0.632413 -0.134268 0.762906 -0.749686 -0.259776 0.608677 0.156861 -0.963280 -0.217915 0.642935 -0.067890 0.762906 -0.718331 -0.336917 0.608677 0.256956 -0.941534 -0.217915 0.646509 -0.000132 0.762906 -0.679063 -0.410348 0.608677 0.354221 -0.909418 -0.217915 0.642963 0.067628 0.762906 -0.632316 -0.479259 0.608677 0.447583 -0.867284 -0.217915 0.632334 0.134643 0.762906 -0.579146 -0.542312 0.608677 0.535200 -0.816134 -0.217915 0.614939 0.199559 0.762906 -0.519119 -0.600024 0.608677 0.617789 -0.755546 -0.217915 0.590637 0.262910 0.762906 -0.453373 -0.651126 0.608677 0.693573 -0.686636 -0.217915 0.559830 0.323365 0.762906 -0.382633 -0.695057 0.608677 0.761718 -0.610163 -0.217915 0.522855 0.380259 0.762906 -0.308410 -0.731024 0.608677 0.820945 -0.527790 -0.217915 0.480555 0.432483 0.762906 -0.230095 -0.759321 0.608677 0.871740 -0.438843 -0.217915 0.432581 0.480467 0.762906 -0.149246 -0.779255 0.608677 0.912933 -0.345061 -0.217915 0.379842 0.523158 0.762906 -0.067543 -0.790538 0.608677 0.943822 -0.248423 -0.217915 0.323479 0.559764 0.762906 0.015683 -0.793263 0.608677 0.964660 -0.148136 -0.217915 0.263030 0.590584 0.762906 0.098737 -0.787251 0.608677 0.974873 -0.046216 -0.217915 0.199684 0.614899 0.762906 0.180702 -0.772567 0.608677 0.974348 0.056212 -0.217915 0.134139 0.632441 0.762906 0.259928 -0.749633 0.608677 0.963248 0.157058 -0.217915 0.067759 0.642949 0.762906 0.337064 -0.718262 0.608677 0.941482 0.257148 -0.217915 0.000000 0.646509 0.762906 0.410486 -0.678980 0.608677 0.909346 0.354406 -0.217915 -0.067759 0.642949 0.762906 0.478755 -0.632697 0.608677 0.867641 0.446892 -0.217915 -0.134139 0.632441 0.762906 0.542430 -0.579036 0.608677 0.816025 0.535366 -0.217915 -0.199684 0.614899 0.762906 0.600129 -0.518996 0.608677 0.755420 0.617943 -0.217915 -0.263030 0.590584 0.762906 0.651219 -0.453240 0.608677 0.686495 0.693713 -0.217915 -0.323479 0.559764 0.762906 0.694752 -0.383187 0.608677 0.610770 0.761232 -0.217915 -0.379842 0.523158 0.762906 0.731087 -0.308261 0.608677 0.527623 0.821052 -0.217915 -0.432581 0.480467 0.762906 0.759368 -0.229940 0.608677 0.438665 0.871829 -0.217915 -0.480555 0.432483 0.762906 0.779136 -0.149866 0.608677 0.345788 0.912657 -0.217915 -0.522855 0.380259 0.762906 0.790552 -0.067382 0.608677 0.248231 0.943872 -0.217915 -0.559830 0.323365 0.762906 0.793260 0.015845 0.608677 0.147939 0.964690 -0.217915 -0.590637 0.262910 0.762906 0.787231 0.098897 0.608677 0.046018 0.974882 -0.217915 -0.614939 0.199559 0.762906 0.772710 0.180087 0.608677 -0.055436 0.974392 -0.217915 -0.632334 0.134643 0.762906 0.749580 0.260081 0.608677 -0.157254 0.963216 -0.217915 -0.642963 0.067628 0.762906 0.246709 0.270438 -0.930590 0.069500 -0.962737 -0.261356 -0.966594 -0.000197 -0.256311 0.217006 0.294806 -0.930590 0.170019 -0.950151 -0.261356 -0.961250 -0.101502 -0.256311 0.185229 0.315741 -0.930590 0.267738 -0.927367 -0.261356 -0.945519 -0.200743 -0.256311 0.151117 0.333415 -0.930590 0.363458 -0.894199 -0.261356 -0.919273 -0.298735 -0.256311 0.115340 0.347417 -0.930590 0.455175 -0.851181 -0.261356 -0.882900 -0.393436 -0.256311 0.078651 0.357514 -0.930590 0.541079 -0.799329 -0.261356 -0.837286 -0.482967 -0.256311 0.040748 0.363788 -0.930590 0.621874 -0.738218 -0.261356 -0.782057 -0.568060 -0.256311 0.002396 0.366055 -0.930590 0.695819 -0.668976 -0.261356 -0.718213 -0.646897 -0.256311 -0.035983 0.364290 -0.930590 0.762101 -0.592364 -0.261356 -0.646458 -0.718608 -0.256311 -0.073606 0.358586 -0.930590 0.819478 -0.510048 -0.261356 -0.568364 -0.781835 -0.256311 -0.110783 0.348897 -0.930590 0.868421 -0.421352 -0.261356 -0.483292 -0.837098 -0.256311 -0.146740 0.335365 -0.930590 0.907799 -0.328014 -0.261356 -0.392896 -0.883140 -0.256311 -0.180762 0.318319 -0.930590 0.936946 -0.232001 -0.261356 -0.299093 -0.919156 -0.256311 -0.213129 0.297621 -0.930590 0.956102 -0.132525 -0.261356 -0.201111 -0.945441 -0.256311 -0.243148 0.273644 -0.930590 0.964725 -0.031589 -0.261356 -0.100915 -0.961312 -0.256311 -0.270288 0.246874 -0.930590 0.962780 0.068911 -0.261356 -0.000394 -0.966594 -0.256311 -0.294673 0.217186 -0.930590 0.950255 0.169438 -0.261356 0.100915 -0.961312 -0.256311 -0.315813 0.185106 -0.930590 0.927263 0.268098 -0.261356 0.201111 -0.945441 -0.256311 -0.333474 0.150987 -0.930590 0.894057 0.363806 -0.261356 0.299093 -0.919156 -0.256311 -0.347347 0.115553 -0.930590 0.851459 0.454654 -0.261356 0.392896 -0.883140 -0.256311 -0.357544 0.078512 -0.930590 0.799119 0.541389 -0.261356 0.483292 -0.837098 -0.256311 -0.363804 0.040606 -0.930590 0.737976 0.622161 -0.261356 0.568364 -0.781835 -0.256311 -0.366054 0.002619 -0.930590 0.669401 0.695411 -0.261356 0.646458 -0.718608 -0.256311 -0.364312 -0.035760 -0.930590 0.592830 0.761739 -0.261356 0.718213 -0.646897 -0.256311 -0.358558 -0.073746 -0.930590 0.509729 0.819676 -0.261356 0.782057 -0.568060 -0.256311 -0.348854 -0.110919 -0.930590 0.421014 0.868585 -0.261356 0.837286 -0.482967 -0.256311 -0.335454 -0.146535 -0.930590 0.328569 0.907599 -0.261356 0.882900 -0.393436 -0.256311 -0.318249 -0.180886 -0.930590 0.231637 0.937037 -0.261356 0.919273 -0.298735 -0.256311 -0.297538 -0.213245 -0.930590 0.132153 0.956153 -0.261356 0.945519 -0.200743 -0.256311 -0.273793 -0.242981 -0.930590 0.032178 0.964706 -0.261356 0.961250 -0.101502 -0.256311 -0.246819 -0.270338 -0.930590 -0.069107 0.962765 -0.261356 0.966594 -0.000197 -0.256311 -0.217126 -0.294717 -0.930590 -0.169632 0.950220 -0.261356 0.961292 0.101110 -0.256311 -0.185042 -0.315851 -0.930590 -0.268287 0.927208 -0.261356 0.945400 0.201304 -0.256311 -0.151253 -0.333354 -0.930590 -0.363093 0.894347 -0.261356 0.919394 0.298360 -0.256311 -0.115482 -0.347370 -0.930590 -0.454828 0.851366 -0.261356 0.883060 0.393076 -0.256311 -0.078439 -0.357560 -0.930590 -0.541552 0.799008 -0.261356 0.837000 0.483463 -0.256311 -0.040532 -0.363812 -0.930590 -0.622311 0.737849 -0.261356 0.781720 0.568524 -0.256311 -0.002545 -0.366054 -0.930590 -0.695547 0.669259 -0.261356 0.718476 0.646604 -0.256311 0.035834 -0.364305 -0.930590 -0.761859 0.592675 -0.261356 0.646750 0.718344 -0.256311 0.073819 -0.358543 -0.930590 -0.819780 0.509562 -0.261356 0.567901 0.782172 -0.256311 0.110641 -0.348942 -0.930590 -0.868250 0.421706 -0.261356 0.483633 0.836901 -0.256311 0.146604 -0.335424 -0.930590 -0.907666 0.328384 -0.261356 0.393256 0.882980 -0.256311 0.180951 -0.318212 -0.930590 -0.937084 0.231446 -0.261356 0.298548 0.919333 -0.256311 0.213305 -0.297495 -0.930590 -0.956180 0.131958 -0.261356 0.200551 0.945560 -0.256311 0.243036 -0.273743 -0.930590 -0.964713 0.031981 -0.261356 0.101306 0.961271 -0.256311 0.270388 -0.246764 -0.930590 -0.962751 -0.069303 -0.261356 0.000000 0.966594 -0.256311 0.294762 -0.217066 -0.930590 -0.950186 -0.169825 -0.261356 -0.101306 0.961271 -0.256311 0.315703 -0.185293 -0.930590 -0.927422 -0.267549 -0.261356 -0.200551 0.945560 -0.256311 0.333385 -0.151185 -0.930590 -0.894273 -0.363276 -0.261356 -0.298548 0.919333 -0.256311 0.347394 -0.115411 -0.930590 -0.851274 -0.455001 -0.261356 -0.393256 0.882980 -0.256311 0.357576 -0.078366 -0.930590 -0.798898 -0.541715 -0.261356 -0.483633 0.836901 -0.256311 0.363780 -0.040822 -0.930590 -0.738345 -0.621724 -0.261356 -0.567901 0.782172 -0.256311 0.366055 -0.002470 -0.930590 -0.669117 -0.695683 -0.261356 -0.646750 0.718344 -0.256311 0.364298 0.035909 -0.930590 -0.592520 -0.761980 -0.261356 -0.718476 0.646604 -0.256311 0.358601 0.073533 -0.930590 -0.510215 -0.819374 -0.261356 -0.781720 0.568524 -0.256311 0.348920 0.110712 -0.930590 -0.421529 -0.868336 -0.261356 -0.837000 0.483463 -0.256311 0.335395 0.146672 -0.930590 -0.328199 -0.907733 -0.261356 -0.883060 0.393076 -0.256311 0.318175 0.181016 -0.930590 -0.231255 -0.937131 -0.261356 -0.919394 0.298360 -0.256311 0.297664 0.213068 -0.930590 -0.132719 -0.956075 -0.261356 -0.945400 0.201304 -0.256311 0.273694 0.243092 -0.930590 -0.031785 -0.964719 -0.261356 -0.961292 0.101110 -0.256311 0.024644 -0.921991 -0.386427 -0.058156 -0.387212 0.920155 -0.998003 -0.000203 -0.063162 0.121139 -0.914330 -0.386427 -0.017253 -0.391174 0.920155 -0.992486 -0.104800 -0.063162 0.215404 -0.896814 -0.386427 0.023449 -0.390852 0.920155 -0.976243 -0.207266 -0.063162 0.308210 -0.869299 -0.386427 0.064284 -0.386242 0.920155 -0.949144 -0.308442 -0.063162 0.397621 -0.832209 -0.386427 0.104411 -0.377377 0.920155 -0.911590 -0.406220 -0.063162 0.481867 -0.786434 -0.386427 0.143023 -0.364499 0.920155 -0.864493 -0.498660 -0.063162 0.561637 -0.731600 -0.386427 0.180438 -0.347502 0.920155 -0.807469 -0.586519 -0.063162 0.635221 -0.668707 -0.386427 0.215865 -0.326677 0.920155 -0.741551 -0.667917 -0.063162 0.701807 -0.598449 -0.386427 0.248914 -0.302253 0.920155 -0.667464 -0.741958 -0.063162 0.760142 -0.522358 -0.386427 0.278947 -0.274780 0.920155 -0.586833 -0.807241 -0.063162 0.810703 -0.439813 -0.386427 0.306209 -0.244031 0.920155 -0.498996 -0.864299 -0.063162 0.852333 -0.352424 -0.386427 0.330099 -0.210594 0.920155 -0.405663 -0.911838 -0.063162 0.884314 -0.262037 -0.386427 0.350178 -0.175188 0.920155 -0.308811 -0.949024 -0.063162 0.906907 -0.167911 -0.386427 0.366610 -0.137522 0.920155 -0.207646 -0.976163 -0.063162 0.919510 -0.071936 -0.386427 0.379004 -0.098341 0.920155 -0.104194 -0.992549 -0.063162 0.922006 0.024081 -0.386427 0.387176 -0.058392 0.920155 -0.000406 -0.998003 -0.063162 0.914404 0.120581 -0.386427 0.391164 -0.017492 0.920155 0.104194 -0.992549 -0.063162 0.896730 0.215753 -0.386427 0.390843 0.023601 0.920155 0.207646 -0.976163 -0.063162 0.869179 0.308548 -0.386427 0.386217 0.064434 0.920155 0.308811 -0.949024 -0.063162 0.832452 0.397113 -0.386427 0.377441 0.104180 0.920155 0.405663 -0.911838 -0.063162 0.786247 0.482173 -0.386427 0.364443 0.143165 0.920155 0.498996 -0.864299 -0.063162 0.731381 0.561921 -0.386427 0.347431 0.180573 0.920155 0.586833 -0.807241 -0.063162 0.669095 0.634812 -0.386427 0.326808 0.215665 0.920155 0.667464 -0.741958 -0.063162 0.598877 0.701442 -0.386427 0.302405 0.248729 0.920155 0.741551 -0.667917 -0.063162 0.522063 0.760345 -0.386427 0.274671 0.279053 0.920155 0.807469 -0.586519 -0.063162 0.439498 0.810874 -0.386427 0.243912 0.306304 0.920155 0.864493 -0.498660 -0.063162 0.352944 0.852118 -0.386427 0.210796 0.329970 0.920155 0.911590 -0.406220 -0.063162 0.261692 0.884416 -0.386427 0.175051 0.350246 0.920155 0.949144 -0.308442 -0.063162 0.167558 0.906972 -0.386427 0.137379 0.366663 0.920155 0.976243 -0.207266 -0.063162 0.072498 0.919466 -0.386427 0.098572 0.378944 0.920155 0.992486 -0.104800 -0.063162 -0.024268 0.922001 -0.386427 0.058314 0.387188 0.920155 0.998003 -0.000203 -0.063162 -0.120767 0.914379 -0.386427 0.017412 0.391167 0.920155 0.992528 0.104396 -0.063162 -0.215935 0.896686 -0.386427 -0.023681 0.390838 0.920155 0.976120 0.207845 -0.063162 -0.307856 0.869425 -0.386427 -0.064127 0.386268 0.920155 0.949269 0.308056 -0.063162 -0.397282 0.832371 -0.386427 -0.104257 0.377420 0.920155 0.911755 0.405849 -0.063162 -0.482333 0.786148 -0.386427 -0.143239 0.364414 0.920155 0.864198 0.499172 -0.063162 -0.562070 0.731267 -0.386427 -0.180644 0.347395 0.920155 0.807121 0.586997 -0.063162 -0.634948 0.668966 -0.386427 -0.215731 0.326764 0.920155 0.741823 0.667615 -0.063162 -0.701564 0.598734 -0.386427 -0.248791 0.302355 0.920155 0.667766 0.741687 -0.063162 -0.760451 0.521908 -0.386427 -0.279109 0.274614 0.920155 0.586354 0.807588 -0.063162 -0.810523 0.440143 -0.386427 -0.306110 0.244156 0.920155 0.499348 0.864096 -0.063162 -0.852190 0.352771 -0.386427 -0.330013 0.210728 0.920155 0.406035 0.911672 -0.063162 -0.884469 0.261512 -0.386427 -0.350281 0.174980 0.920155 0.308249 0.949207 -0.063162 -0.907006 0.167373 -0.386427 -0.366691 0.137304 0.920155 0.207067 0.976286 -0.063162 -0.919481 0.072310 -0.386427 -0.378964 0.098495 0.920155 0.104598 0.992507 -0.063162 -0.921996 -0.024456 -0.386427 -0.387200 0.058235 0.920155 0.000000 0.998003 -0.063162 -0.914355 -0.120953 -0.386427 -0.391171 0.017333 0.920155 -0.104598 0.992507 -0.063162 -0.896858 -0.215221 -0.386427 -0.390857 -0.023370 0.920155 -0.207067 0.976286 -0.063162 -0.869362 -0.308033 -0.386427 -0.386255 -0.064205 0.920155 -0.308249 0.949207 -0.063162 -0.832290 -0.397452 -0.386427 -0.377398 -0.104334 0.920155 -0.406035 0.911672 -0.063162 -0.786050 -0.482493 -0.386427 -0.364385 -0.143313 0.920155 -0.499348 0.864096 -0.063162 -0.731714 -0.561488 -0.386427 -0.347538 -0.180367 0.920155 -0.586354 0.807588 -0.063162 -0.668836 -0.635084 -0.386427 -0.326721 -0.215798 0.920155 -0.667766 0.741687 -0.063162 -0.598591 -0.701686 -0.386427 -0.302304 -0.248852 0.920155 -0.741823 0.667615 -0.063162 -0.522513 -0.760036 -0.386427 -0.274837 -0.278891 0.920155 -0.807121 0.586997 -0.063162 -0.439978 -0.810613 -0.386427 -0.244093 -0.306159 0.920155 -0.864198 0.499172 -0.063162 -0.352597 -0.852261 -0.386427 -0.210661 -0.330056 0.920155 -0.911755 0.405849 -0.063162 -0.261332 -0.884522 -0.386427 -0.174909 -0.350317 0.920155 -0.949269 0.308056 -0.063162 -0.168096 -0.906873 -0.386427 -0.137596 -0.366582 0.920155 -0.976120 0.207845 -0.063162 -0.072123 -0.919496 -0.386427 -0.098418 -0.378984 0.920155 -0.992528 0.104396 -0.063162 0.573205 0.253133 -0.779333 0.150118 -0.967432 -0.203815 -0.805544 -0.000164 -0.592536 0.543518 0.311814 -0.779333 0.250685 -0.946370 -0.203815 -0.801090 -0.084590 -0.592536 0.508211 0.366554 -0.779333 0.347576 -0.915232 -0.203815 -0.787980 -0.167296 -0.592536 0.466994 0.417799 -0.779333 0.441584 -0.873763 -0.203815 -0.766107 -0.248961 -0.592536 0.420634 0.464442 -0.779333 0.530729 -0.822670 -0.203815 -0.735794 -0.327883 -0.592536 0.370146 0.505600 -0.779333 0.613265 -0.763129 -0.203815 -0.697780 -0.402496 -0.592536 0.315117 0.541609 -0.779333 0.689869 -0.694651 -0.203815 -0.651753 -0.473412 -0.592536 0.256617 0.571653 -0.779333 0.758874 -0.618522 -0.203815 -0.598547 -0.539113 -0.592536 0.195291 0.595400 -0.779333 0.819520 -0.535580 -0.203815 -0.538747 -0.598876 -0.592536 0.132425 0.612457 -0.779333 0.870692 -0.447610 -0.203815 -0.473665 -0.651569 -0.592536 0.067506 0.622963 -0.779333 0.912809 -0.353890 -0.203815 -0.402768 -0.697624 -0.592536 0.001843 0.626607 -0.779333 0.944872 -0.256272 -0.203815 -0.327433 -0.735995 -0.592536 -0.063216 0.623413 -0.779333 0.966371 -0.156798 -0.203815 -0.249259 -0.766010 -0.592536 -0.128206 0.613354 -0.779333 0.977483 -0.054652 -0.203815 -0.167603 -0.787915 -0.592536 -0.191784 0.596539 -0.779333 0.977827 0.048097 -0.203815 -0.084100 -0.801142 -0.592536 -0.252782 0.573359 -0.779333 0.967523 0.149527 -0.203815 -0.000328 -0.805544 -0.592536 -0.311482 0.543708 -0.779333 0.946523 0.250107 -0.203815 0.084100 -0.801142 -0.592536 -0.366751 0.508068 -0.779333 0.915097 0.347932 -0.203815 0.167603 -0.787915 -0.592536 -0.417981 0.466832 -0.779333 0.873592 0.441924 -0.203815 0.249259 -0.766010 -0.592536 -0.464185 0.420918 -0.779333 0.822994 0.530226 -0.203815 0.327433 -0.735995 -0.592536 -0.505744 0.369950 -0.779333 0.762890 0.613562 -0.203815 0.402768 -0.697624 -0.592536 -0.541732 0.314907 -0.779333 0.694383 0.690139 -0.203815 0.473665 -0.651569 -0.592536 -0.571496 0.256966 -0.779333 0.618986 0.758496 -0.203815 0.538747 -0.598876 -0.592536 -0.595281 0.195654 -0.779333 0.536081 0.819193 -0.203815 0.598547 -0.539113 -0.592536 -0.612508 0.132187 -0.779333 0.447271 0.870866 -0.203815 0.651753 -0.473412 -0.592536 -0.622989 0.067264 -0.779333 0.353535 0.912947 -0.203815 0.697780 -0.402496 -0.592536 -0.626606 0.002226 -0.779333 0.256849 0.944716 -0.203815 0.735794 -0.327883 -0.592536 -0.623388 -0.063459 -0.779333 0.156422 0.966432 -0.203815 0.766107 -0.248961 -0.592536 -0.613304 -0.128445 -0.779333 0.054271 0.977504 -0.203815 0.787980 -0.167296 -0.592536 -0.596656 -0.191419 -0.779333 -0.047499 0.977856 -0.203815 0.801090 -0.084590 -0.592536 -0.573308 -0.252899 -0.779333 -0.149724 0.967493 -0.203815 0.805544 -0.000164 -0.592536 -0.543645 -0.311593 -0.779333 -0.250300 0.946472 -0.203815 0.801125 0.084264 -0.592536 -0.507993 -0.366855 -0.779333 -0.348118 0.915026 -0.203815 0.787881 0.167763 -0.592536 -0.467165 -0.417609 -0.779333 -0.441228 0.873943 -0.203815 0.766208 0.248649 -0.592536 -0.420823 -0.464271 -0.779333 -0.530394 0.822886 -0.203815 0.735928 0.327583 -0.592536 -0.369847 -0.505819 -0.779333 -0.613717 0.762765 -0.203815 0.697542 0.402910 -0.592536 -0.314796 -0.541796 -0.779333 -0.690280 0.694242 -0.203815 0.651472 0.473798 -0.592536 -0.256850 -0.571549 -0.779333 -0.758622 0.618831 -0.203815 0.598766 0.538869 -0.592536 -0.195533 -0.595321 -0.779333 -0.819302 0.535914 -0.203815 0.538991 0.598656 -0.592536 -0.132062 -0.612535 -0.779333 -0.870957 0.447094 -0.203815 0.473279 0.651849 -0.592536 -0.067760 -0.622935 -0.779333 -0.912665 0.354262 -0.203815 0.403052 0.697460 -0.592536 -0.002099 -0.626606 -0.779333 -0.944768 0.256657 -0.203815 0.327733 0.735861 -0.592536 0.063586 -0.623375 -0.779333 -0.966464 0.156225 -0.203815 0.248805 0.766157 -0.592536 0.128570 -0.613278 -0.779333 -0.977515 0.054072 -0.203815 0.167136 0.788014 -0.592536 0.191541 -0.596617 -0.779333 -0.977847 -0.047698 -0.203815 0.084427 0.801107 -0.592536 0.253016 -0.573256 -0.779333 -0.967462 -0.149921 -0.203815 0.000000 0.805544 -0.592536 0.311704 -0.543581 -0.779333 -0.946421 -0.250492 -0.203815 -0.084427 0.801107 -0.592536 0.366450 -0.508285 -0.779333 -0.915303 -0.347389 -0.203815 -0.167136 0.788014 -0.592536 0.417704 -0.467079 -0.779333 -0.873853 -0.441406 -0.203815 -0.248805 0.766157 -0.592536 0.464357 -0.420729 -0.779333 -0.822778 -0.530562 -0.203815 -0.327733 0.735861 -0.592536 0.505895 -0.369744 -0.779333 -0.762640 -0.613873 -0.203815 -0.403052 0.697460 -0.592536 0.541545 -0.315228 -0.779333 -0.694792 -0.689727 -0.203815 -0.473279 0.651849 -0.592536 0.571601 -0.256734 -0.779333 -0.618677 -0.758748 -0.203815 -0.538991 0.598656 -0.592536 0.595360 -0.195412 -0.779333 -0.535747 -0.819411 -0.203815 -0.598766 0.538869 -0.592536 0.612430 -0.132550 -0.779333 -0.447787 -0.870601 -0.203815 -0.651472 0.473798 -0.592536 0.622949 -0.067633 -0.779333 -0.354076 -0.912737 -0.203815 -0.697542 0.402910 -0.592536 0.626607 -0.001971 -0.779333 -0.256465 -0.944820 -0.203815 -0.735928 0.327583 -0.592536 0.623362 0.063713 -0.779333 -0.156028 -0.966496 -0.203815 -0.766208 0.248649 -0.592536 0.613380 0.128081 -0.779333 -0.054851 -0.977472 -0.203815 -0.787881 0.167763 -0.592536 0.596578 0.191663 -0.779333 0.047898 -0.977837 -0.203815 -0.801125 0.084264 -0.592536 0.192096 -0.944833 -0.265311 -0.553697 -0.327552 0.765590 -0.810258 -0.000165 -0.586073 0.290063 -0.919496 -0.265311 -0.516318 -0.383780 0.765590 -0.805779 -0.085085 -0.586073 0.383951 -0.884416 -0.265311 -0.473687 -0.435307 0.765590 -0.792592 -0.168275 -0.586073 0.474530 -0.839304 -0.265311 -0.425455 -0.482555 0.765590 -0.770590 -0.250418 -0.586073 0.559882 -0.784948 -0.265311 -0.372537 -0.524488 0.765590 -0.740101 -0.329802 -0.586073 0.638344 -0.722584 -0.265311 -0.316075 -0.560328 0.765590 -0.701864 -0.404852 -0.586073 0.710560 -0.651701 -0.265311 -0.255608 -0.590369 0.765590 -0.655567 -0.476182 -0.586073 0.774950 -0.573640 -0.265311 -0.192326 -0.613907 0.765590 -0.602050 -0.542268 -0.586073 0.830803 -0.489261 -0.265311 -0.126924 -0.630683 0.765590 -0.541900 -0.602381 -0.586073 0.877106 -0.400369 -0.265311 -0.060766 -0.640452 0.765590 -0.476438 -0.655382 -0.586073 0.914237 -0.306237 -0.265311 0.006693 -0.643293 0.765590 -0.405125 -0.701707 -0.586073 0.941298 -0.208732 -0.265311 0.074078 -0.639049 0.765590 -0.329350 -0.740302 -0.586073 0.957881 -0.109886 -0.265311 0.140019 -0.627906 0.765590 -0.250718 -0.770493 -0.586073 0.964122 -0.008888 -0.265311 0.205057 -0.609773 0.765590 -0.168584 -0.792526 -0.586073 0.959744 0.092208 -0.265311 0.267836 -0.584923 0.765590 -0.084593 -0.805830 -0.586073 0.944950 0.191519 -0.265311 0.327214 -0.553897 0.765590 -0.000330 -0.810258 -0.586073 0.919673 0.289501 -0.265311 0.383464 -0.516552 0.765590 0.084593 -0.805830 -0.586073 0.884266 0.384295 -0.265311 0.435491 -0.473518 0.765590 0.168584 -0.792526 -0.586073 0.839120 0.474856 -0.265311 0.482720 -0.425267 0.765590 0.250718 -0.770493 -0.586073 0.785290 0.559402 -0.265311 0.524260 -0.372857 0.765590 0.329350 -0.740302 -0.586073 0.722335 0.638625 -0.265311 0.560451 -0.315857 0.765590 0.405125 -0.701707 -0.586073 0.651425 0.710814 -0.265311 0.590469 -0.255378 0.765590 0.476438 -0.655382 -0.586073 0.574113 0.774599 -0.265311 0.613790 -0.192700 0.765590 0.541900 -0.602381 -0.586073 0.489768 0.830504 -0.265311 0.630606 -0.127310 0.765590 0.602050 -0.542268 -0.586073 0.400028 0.877262 -0.265311 0.640476 -0.060516 0.765590 0.655567 -0.476182 -0.586073 0.305882 0.914356 -0.265311 0.643291 0.006943 0.765590 0.701864 -0.404852 -0.586073 0.209307 0.941170 -0.265311 0.639094 0.073687 0.765590 0.740101 -0.329802 -0.586073 0.109513 0.957923 -0.265311 0.627852 0.140263 0.765590 0.770590 -0.250418 -0.586073 0.008513 0.964125 -0.265311 0.609693 0.205294 0.765590 0.792592 -0.168275 -0.586073 -0.091622 0.959800 -0.265311 0.585087 0.267479 0.765590 0.805779 -0.085085 -0.586073 -0.191711 0.944911 -0.265311 0.553831 0.327327 0.765590 0.810258 -0.000165 -0.586073 -0.289689 0.919614 -0.265311 0.516474 0.383570 0.765590 0.805813 0.084757 -0.586073 -0.384475 0.884188 -0.265311 0.473429 0.435587 0.765590 0.792492 0.168745 -0.586073 -0.474188 0.839497 -0.265311 0.425652 0.482382 0.765590 0.770692 0.250104 -0.586073 -0.559562 0.785176 -0.265311 0.372750 0.524336 0.765590 0.740235 0.329501 -0.586073 -0.638772 0.722205 -0.265311 0.315743 0.560515 0.765590 0.701624 0.405268 -0.586073 -0.710946 0.651280 -0.265311 0.255258 0.590521 0.765590 0.655285 0.476571 -0.586073 -0.774716 0.573956 -0.265311 0.192576 0.613829 0.765590 0.602270 0.542023 -0.586073 -0.830604 0.489599 -0.265311 0.127181 0.630632 0.765590 0.542146 0.602160 -0.586073 -0.877343 0.399849 -0.265311 0.060386 0.640488 0.765590 0.476049 0.655664 -0.586073 -0.914112 0.306609 -0.265311 -0.006431 0.643296 0.765590 0.405411 0.701542 -0.586073 -0.941213 0.209115 -0.265311 -0.073818 0.639079 0.765590 0.329651 0.740168 -0.586073 -0.957946 0.109318 -0.265311 -0.140391 0.627823 0.765590 0.250261 0.770641 -0.586073 -0.964127 0.008316 -0.265311 -0.205418 0.609651 0.765590 0.168114 0.792626 -0.586073 -0.959781 -0.091817 -0.265311 -0.267598 0.585032 0.765590 0.084921 0.805796 -0.586073 -0.944872 -0.191904 -0.265311 -0.327440 0.553764 0.765590 0.000000 0.810258 -0.586073 -0.919555 -0.289876 -0.265311 -0.383675 0.516396 0.765590 -0.084921 0.805796 -0.586073 -0.884494 -0.383771 -0.265311 -0.435210 0.473776 0.765590 -0.168114 0.792626 -0.586073 -0.839401 -0.474359 -0.265311 -0.482468 0.425553 0.765590 -0.250261 0.770641 -0.586073 -0.785062 -0.559722 -0.265311 -0.524412 0.372643 0.765590 -0.329651 0.740168 -0.586073 -0.722075 -0.638919 -0.265311 -0.560580 0.315629 0.765590 -0.405411 0.701542 -0.586073 -0.651846 -0.710428 -0.265311 -0.590317 0.255728 0.765590 -0.476049 0.655664 -0.586073 -0.573798 -0.774833 -0.265311 -0.613868 0.192450 0.765590 -0.542146 0.602160 -0.586073 -0.489430 -0.830704 -0.265311 -0.630657 0.127053 0.765590 -0.602270 0.542023 -0.586073 -0.400548 -0.877024 -0.265311 -0.640440 0.060896 0.765590 -0.655285 0.476571 -0.586073 -0.306423 -0.914174 -0.265311 -0.643295 -0.006562 0.765590 -0.701624 0.405268 -0.586073 -0.208924 -0.941255 -0.265311 -0.639064 -0.073948 0.765590 -0.740235 0.329501 -0.586073 -0.109123 -0.957968 -0.265311 -0.627794 -0.140519 0.765590 -0.770692 0.250104 -0.586073 -0.009084 -0.964120 -0.265311 -0.609815 -0.204933 0.765590 -0.792492 0.168745 -0.586073 0.092013 -0.959762 -0.265311 -0.584978 -0.267717 0.765590 -0.805813 0.084757 -0.586073 0.629408 0.182891 0.755246 -0.117211 0.983133 -0.140396 -0.768184 -0.000156 0.640229 0.606774 0.247851 0.755246 -0.219604 0.965434 -0.140396 -0.763937 -0.080667 0.640229 0.577765 0.309502 0.755246 -0.318642 0.937420 -0.140396 -0.751435 -0.159537 0.640229 0.542145 0.368352 0.755246 -0.415136 0.898861 -0.140396 -0.730576 -0.237414 0.640229 0.500553 0.423144 0.755246 -0.507056 0.850402 -0.140396 -0.701670 -0.312676 0.640229 0.453921 0.472821 0.755246 -0.592599 0.793168 -0.140396 -0.665419 -0.383829 0.640229 0.401866 0.517791 0.755246 -0.672465 0.726691 -0.140396 -0.621526 -0.451456 0.640229 0.345385 0.557058 0.755246 -0.744924 0.652210 -0.140396 -0.570787 -0.514110 0.640229 0.285099 0.590189 0.755246 -0.809178 0.570544 -0.140396 -0.513761 -0.571101 0.640229 0.222289 0.616597 0.755246 -0.864035 0.483459 -0.140396 -0.451698 -0.621350 0.640229 0.156441 0.636499 0.755246 -0.909947 0.390239 -0.140396 -0.384088 -0.665269 0.640229 0.088870 0.649389 0.755246 -0.945835 0.292721 -0.140396 -0.312248 -0.701861 0.640229 0.020975 0.655106 0.755246 -0.971112 0.192950 -0.140396 -0.237699 -0.730484 0.640229 -0.047800 0.653697 0.755246 -0.985987 0.090107 -0.140396 -0.159830 -0.751373 0.640229 -0.116049 0.645087 0.755246 -0.990000 -0.013727 -0.140396 -0.080200 -0.763986 0.640229 -0.182507 0.629520 0.755246 -0.983205 -0.116610 -0.140396 -0.000313 -0.768184 0.640229 -0.247480 0.606925 0.755246 -0.965568 -0.219015 -0.140396 0.080200 -0.763986 0.640229 -0.309727 0.577645 0.755246 -0.937296 -0.319007 -0.140396 0.159830 -0.751373 0.640229 -0.368563 0.542002 0.755246 -0.898700 -0.415485 -0.140396 0.237699 -0.730484 0.640229 -0.422838 0.500812 0.755246 -0.850711 -0.506537 -0.140396 0.312248 -0.701861 0.640229 -0.472998 0.453737 0.755246 -0.792937 -0.592908 -0.140396 0.384088 -0.665269 0.640229 -0.517948 0.401665 0.755246 -0.726429 -0.672748 -0.140396 0.451698 -0.621350 0.640229 -0.556847 0.345725 0.755246 -0.652665 -0.744525 -0.140396 0.513761 -0.571101 0.640229 -0.590015 0.285459 0.755246 -0.571038 -0.808829 -0.140396 0.570787 -0.514110 0.640229 -0.616683 0.222049 0.755246 -0.483122 -0.864223 -0.140396 0.621526 -0.451456 0.640229 -0.636559 0.156194 0.755246 -0.389885 -0.910098 -0.140396 0.665419 -0.383829 0.640229 -0.649335 0.089267 0.755246 -0.293299 -0.945656 -0.140396 0.701670 -0.312676 0.640229 -0.655114 0.020720 0.755246 -0.192572 -0.971187 -0.140396 0.730576 -0.237414 0.640229 -0.653678 -0.048055 0.755246 -0.089724 -0.986022 -0.140396 0.751435 -0.159537 0.640229 -0.645157 -0.115655 0.755246 0.013122 -0.990008 -0.140396 0.763937 -0.080667 0.640229 -0.629483 -0.182635 0.755246 0.116810 -0.983181 -0.140396 0.768184 -0.000156 0.640229 -0.606874 -0.247604 0.755246 0.219211 -0.965523 -0.140396 0.763970 0.080356 0.640229 -0.577582 -0.309845 0.755246 0.319198 -0.937231 -0.140396 0.751340 0.159983 0.640229 -0.542295 -0.368131 0.755246 0.414769 -0.899030 -0.140396 0.730673 0.237117 0.640229 -0.500726 -0.422940 0.755246 0.506710 -0.850608 -0.140396 0.701797 0.312391 0.640229 -0.453641 -0.473090 0.755246 0.593069 -0.792817 -0.140396 0.665191 0.384223 0.640229 -0.401559 -0.518029 0.755246 0.672896 -0.726292 -0.140396 0.621258 0.451824 0.640229 -0.345611 -0.556917 0.755246 0.744658 -0.652513 -0.140396 0.570996 0.513877 0.640229 -0.285339 -0.590073 0.755246 0.808945 -0.570874 -0.140396 0.513994 0.570892 0.640229 -0.221924 -0.616728 0.755246 0.864322 -0.482947 -0.140396 0.451329 0.621618 0.640229 -0.156700 -0.636435 0.755246 0.909787 -0.390610 -0.140396 0.384359 0.665113 0.640229 -0.089135 -0.649353 0.755246 0.945715 -0.293106 -0.140396 0.312534 0.701733 0.640229 -0.020587 -0.655119 0.755246 0.971227 -0.192374 -0.140396 0.237266 0.730624 0.640229 0.048188 -0.653668 0.755246 0.986040 -0.089523 -0.140396 0.159384 0.751468 0.640229 0.115786 -0.645134 0.755246 0.990006 0.013324 -0.140396 0.080511 0.763953 0.640229 0.182763 -0.629446 0.755246 0.983157 0.117010 -0.140396 0.000000 0.768184 0.640229 0.247727 -0.606824 0.755246 0.965479 0.219408 -0.140396 -0.080511 0.763953 0.640229 0.309385 -0.577828 0.755246 0.937485 0.318451 -0.140396 -0.159384 0.751468 0.640229 0.368241 -0.542220 0.755246 0.898946 0.414953 -0.140396 -0.237266 0.730624 0.640229 0.423042 -0.500639 0.755246 0.850505 0.506883 -0.140396 -0.312534 0.701733 0.640229 0.473182 -0.453544 0.755246 0.792696 0.593230 -0.140396 -0.384359 0.665113 0.640229 0.517709 -0.401972 0.755246 0.726828 0.672317 -0.140396 -0.451329 0.621618 0.640229 0.556988 -0.345498 0.755246 0.652361 0.744791 -0.140396 -0.513994 0.570892 0.640229 0.590131 -0.285219 0.755246 0.570709 0.809061 -0.140396 -0.570996 0.513877 0.640229 0.616552 -0.222415 0.755246 0.483635 0.863937 -0.140396 -0.621258 0.451824 0.640229 0.636467 -0.156571 0.755246 0.390424 0.909867 -0.140396 -0.665191 0.384223 0.640229 0.649371 -0.089002 0.755246 0.292913 0.945775 -0.140396 -0.701797 0.312391 0.640229 0.655123 -0.020453 0.755246 0.192176 0.971266 -0.140396 -0.730673 0.237117 0.640229 0.653706 0.047667 0.755246 0.090308 0.985968 -0.140396 -0.751340 0.159983 0.640229 0.645110 0.115918 0.755246 -0.013526 0.990003 -0.140396 -0.763970 0.080356 0.640229 -0.027382 -0.996172 -0.083018 0.314131 -0.087417 0.945346 -0.948985 -0.000193 0.315322 0.077175 -0.993555 -0.083018 0.321563 -0.054012 0.945346 -0.943738 -0.099653 0.315322 0.179902 -0.980175 -0.083018 0.325433 -0.020338 0.945346 -0.928294 -0.197086 0.315322 0.281640 -0.955922 -0.083018 0.325772 0.013882 0.945346 -0.902525 -0.293292 0.315322 0.380277 -0.921139 -0.083018 0.322523 0.047949 0.945346 -0.866815 -0.386268 0.315322 0.473848 -0.876685 -0.083018 0.315803 0.081171 0.945346 -0.822032 -0.474168 0.315322 0.563121 -0.822194 -0.083018 0.305556 0.113823 0.945346 -0.767809 -0.557711 0.315322 0.646191 -0.758647 -0.083018 0.291944 0.145220 0.945346 -0.705128 -0.635111 0.315322 0.722144 -0.686743 -0.083018 0.275116 0.175018 0.945346 -0.634680 -0.705516 0.315322 0.789535 -0.608065 -0.083018 0.255460 0.202633 0.945346 -0.558010 -0.767592 0.315322 0.848916 -0.521967 -0.083018 0.232816 0.228291 0.945346 -0.474487 -0.821848 0.315322 0.898947 -0.430120 -0.083018 0.207607 0.251435 0.945346 -0.385738 -0.867051 0.315322 0.938741 -0.334474 -0.083018 0.180383 0.271628 0.945346 -0.293644 -0.902411 0.315322 0.968627 -0.234245 -0.083018 0.150921 0.289038 0.945346 -0.197447 -0.928217 0.315322 0.987842 -0.131436 -0.083018 0.119797 0.303264 0.945346 -0.099076 -0.943799 0.315322 0.996155 -0.027990 -0.083018 0.087609 0.314078 0.945346 -0.000387 -0.948985 0.315322 0.993602 0.076568 -0.083018 0.054209 0.321530 0.945346 0.099076 -0.943799 0.315322 0.980105 0.180283 -0.083018 0.020211 0.325441 0.945346 0.197447 -0.928217 0.315322 0.955812 0.282012 -0.083018 -0.014008 0.325767 0.945346 0.293644 -0.902411 0.315322 0.921372 0.379714 -0.083018 -0.047751 0.322552 0.945346 0.385738 -0.867051 0.315322 0.876500 0.474189 -0.083018 -0.081294 0.315771 0.945346 0.474487 -0.821848 0.315322 0.821975 0.563441 -0.083018 -0.113942 0.305512 0.945346 0.558010 -0.767592 0.315322 0.759041 0.645728 -0.083018 -0.145042 0.292033 0.945346 0.634680 -0.705516 0.315322 0.687184 0.721724 -0.083018 -0.174850 0.275223 0.945346 0.705128 -0.635111 0.315322 0.607757 0.789771 -0.083018 -0.202733 0.255381 0.945346 0.767809 -0.557711 0.315322 0.521637 0.849119 -0.083018 -0.228382 0.232727 0.945346 0.822032 -0.474168 0.315322 0.430669 0.898684 -0.083018 -0.251308 0.207761 0.945346 0.866815 -0.386268 0.315322 0.334109 0.938871 -0.083018 -0.271699 0.180278 0.945346 0.902525 -0.293292 0.315322 0.233868 0.968718 -0.083018 -0.289097 0.150809 0.945346 0.928294 -0.197086 0.315322 0.132039 0.987762 -0.083018 -0.303190 0.119982 0.945346 0.943738 -0.099653 0.315322 0.027788 0.996161 -0.083018 -0.314096 0.087545 0.945346 0.948985 -0.000193 0.315322 -0.076770 0.993587 -0.083018 -0.321541 0.054143 0.945346 0.943778 0.099268 0.315322 -0.180483 0.980068 -0.083018 -0.325445 0.020145 0.945346 0.928177 0.197636 0.315322 -0.281251 0.956037 -0.083018 -0.325778 -0.013749 0.945346 0.902644 0.292925 0.315322 -0.379901 0.921294 -0.083018 -0.322543 -0.047817 0.945346 0.866973 0.385915 0.315322 -0.474367 0.876404 -0.083018 -0.315755 -0.081359 0.945346 0.821751 0.474655 0.315322 -0.563608 0.821860 -0.083018 -0.305489 -0.114004 0.945346 0.767478 0.558166 0.315322 -0.645882 0.758910 -0.083018 -0.292003 -0.145101 0.945346 0.705387 0.634824 0.315322 -0.721864 0.687037 -0.083018 -0.275187 -0.174906 0.945346 0.634968 0.705257 0.315322 -0.789895 0.607597 -0.083018 -0.255340 -0.202785 0.945346 0.557555 0.767922 0.315322 -0.848703 0.522313 -0.083018 -0.232909 -0.228196 0.945346 0.474822 0.821654 0.315322 -0.898771 0.430486 -0.083018 -0.207710 -0.251350 0.945346 0.386092 0.866894 0.315322 -0.938939 0.333917 -0.083018 -0.180222 -0.271735 0.945346 0.293109 0.902585 0.315322 -0.968765 0.233671 -0.083018 -0.150750 -0.289127 0.945346 0.196897 0.928334 0.315322 -0.987789 0.131838 -0.083018 -0.119920 -0.303215 0.945346 0.099460 0.943758 0.315322 -0.996166 0.027585 -0.083018 -0.087481 -0.314113 0.945346 0.000000 0.948985 0.315322 -0.993571 -0.076973 -0.083018 -0.054078 -0.321552 0.945346 -0.099460 0.943758 0.315322 -0.980212 -0.179702 -0.083018 -0.020404 -0.325429 0.945346 -0.196897 0.928334 0.315322 -0.955979 -0.281445 -0.083018 0.013815 -0.325775 0.945346 -0.293109 0.902585 0.315322 -0.921217 -0.380089 -0.083018 0.047883 -0.322533 0.945346 -0.386092 0.866894 0.315322 -0.876307 -0.474546 -0.083018 0.081423 -0.315738 0.945346 -0.474822 0.821654 0.315322 -0.822309 -0.562953 -0.083018 0.113761 -0.305579 0.945346 -0.557555 0.767922 0.315322 -0.758778 -0.646037 -0.083018 0.145161 -0.291973 0.945346 -0.634968 0.705257 0.315322 -0.686890 -0.722004 -0.083018 0.174962 -0.275152 0.945346 -0.705387 0.634824 0.315322 -0.608226 -0.789411 -0.083018 0.202581 -0.255502 0.945346 -0.767478 0.558166 0.315322 -0.522140 -0.848810 -0.083018 0.228244 -0.232862 0.945346 -0.821751 0.474655 0.315322 -0.430303 -0.898859 -0.083018 0.251392 -0.207658 0.945346 -0.866973 0.385915 0.315322 -0.333726 -0.939007 -0.083018 0.271772 -0.180167 0.945346 -0.902644 0.292925 0.315322 -0.234442 -0.968579 -0.083018 0.289007 -0.150980 0.945346 -0.928177 0.197636 0.315322 -0.131637 -0.987816 -0.083018 0.303239 -0.119859 0.945346 -0.943778 0.099268 0.315322 -0.829198 -0.053347 -0.556403 0.044362 -0.998576 0.029631 -0.557192 -0.000113 0.830384 -0.819040 -0.139960 -0.556403 0.148776 -0.988427 0.029631 -0.554111 -0.058511 0.830384 -0.800085 -0.224230 -0.556403 0.250583 -0.967642 0.029631 -0.545043 -0.115718 0.830384 -0.772178 -0.306850 -0.556403 0.350619 -0.936049 0.029631 -0.529913 -0.172205 0.830384 -0.735765 -0.386090 -0.556403 0.446792 -0.894147 0.029631 -0.508946 -0.226796 0.830384 -0.691709 -0.460385 -0.556403 0.537202 -0.842933 0.029631 -0.482652 -0.278405 0.830384 -0.639648 -0.530346 -0.556403 0.622589 -0.781988 0.029631 -0.450815 -0.327457 0.830384 -0.580541 -0.594464 -0.556403 0.701118 -0.712430 0.029631 -0.414012 -0.372902 0.830384 -0.515039 -0.652035 -0.556403 0.771924 -0.635024 0.029631 -0.372649 -0.414240 0.830384 -0.444567 -0.701980 -0.556403 0.833677 -0.551457 0.029631 -0.327633 -0.450688 0.830384 -0.368546 -0.744708 -0.556403 0.886882 -0.461045 0.029631 -0.278593 -0.482544 0.830384 -0.288465 -0.779232 -0.556403 0.930318 -0.365554 0.029631 -0.226484 -0.509085 0.830384 -0.206013 -0.804968 -0.556403 0.963241 -0.267000 0.029631 -0.172411 -0.529846 0.830384 -0.120512 -0.822127 -0.556403 0.985919 -0.164575 0.029631 -0.115930 -0.544998 0.830384 -0.033683 -0.830229 -0.556403 0.997738 -0.060337 0.029631 -0.058172 -0.554147 0.830384 0.052841 -0.829230 -0.556403 0.998603 0.043752 0.029631 -0.000227 -0.557192 0.830384 0.139459 -0.819125 -0.556403 0.988518 0.148172 0.029631 0.058172 -0.554147 0.830384 0.224541 -0.799998 -0.556403 0.967544 0.250959 0.029631 0.115930 -0.544998 0.830384 0.307150 -0.772058 -0.556403 0.935913 0.350983 0.029631 0.172411 -0.529846 0.830384 0.385640 -0.736001 -0.556403 0.894420 0.446246 0.029631 0.226484 -0.509085 0.830384 0.460654 -0.691530 -0.556403 0.842724 0.537530 0.029631 0.278593 -0.482544 0.830384 0.530594 -0.639441 -0.556403 0.781746 0.622893 0.029631 0.327633 -0.450688 0.830384 0.594110 -0.580904 -0.556403 0.712858 0.700682 0.029631 0.372649 -0.414240 0.830384 0.651721 -0.515437 -0.556403 0.635495 0.771536 0.029631 0.414012 -0.372902 0.830384 0.702153 -0.444294 -0.556403 0.551133 0.833891 0.029631 0.450815 -0.327457 0.830384 0.744851 -0.368256 -0.556403 0.460700 0.887061 0.029631 0.482652 -0.278405 0.830384 0.779056 -0.288942 -0.556403 0.366122 0.930095 0.029631 0.508946 -0.226796 0.830384 0.805048 -0.205700 -0.556403 0.266625 0.963345 0.029631 0.529913 -0.172205 0.830384 0.822174 -0.120192 -0.556403 0.164191 0.985983 0.029631 0.545043 -0.115718 0.830384 0.830209 -0.034190 -0.556403 0.060947 0.997701 0.029631 0.554111 -0.058511 0.830384 0.829220 0.053010 -0.556403 -0.043955 0.998594 0.029631 0.557192 -0.000113 0.830384 0.819097 0.139626 -0.556403 -0.148373 0.988487 0.029631 0.554135 0.058285 0.830384 0.799952 0.224704 -0.556403 -0.251156 0.967493 0.029631 0.544974 0.116041 0.830384 0.772303 0.306535 -0.556403 -0.350237 0.936192 0.029631 0.529983 0.171989 0.830384 0.735922 0.385790 -0.556403 -0.446428 0.894329 0.029631 0.509039 0.226588 0.830384 0.691436 0.460795 -0.556403 -0.537701 0.842615 0.029631 0.482487 0.278691 0.830384 0.639333 0.530725 -0.556403 -0.623052 0.781619 0.029631 0.450621 0.327724 0.830384 0.580783 0.594228 -0.556403 -0.700828 0.712715 0.029631 0.414164 0.372734 0.830384 0.515305 0.651825 -0.556403 -0.771666 0.635338 0.029631 0.372818 0.414088 0.830384 0.444151 0.702243 -0.556403 -0.834004 0.550963 0.029631 0.327365 0.450882 0.830384 0.368849 0.744557 -0.556403 -0.886694 0.461406 0.029631 0.278789 0.482430 0.830384 0.288783 0.779115 -0.556403 -0.930169 0.365933 0.029631 0.226692 0.508993 0.830384 0.205536 0.805090 -0.556403 -0.963399 0.266429 0.029631 0.172097 0.529948 0.830384 0.120024 0.822198 -0.556403 -0.986017 0.163991 0.029631 0.115607 0.545067 0.830384 0.034021 0.830216 -0.556403 -0.997714 0.060743 0.029631 0.058398 0.554123 0.830384 -0.053179 0.829209 -0.556403 -0.998585 -0.044159 0.029631 0.000000 0.557192 0.830384 -0.139793 0.819069 -0.556403 -0.988457 -0.148574 0.029631 -0.058398 0.554123 0.830384 -0.224067 0.800131 -0.556403 -0.967693 -0.250386 0.029631 -0.115607 0.545067 0.830384 -0.306692 0.772240 -0.556403 -0.936121 -0.350428 0.029631 -0.172097 0.529948 0.830384 -0.385940 0.735844 -0.556403 -0.894238 -0.446610 0.029631 -0.226692 0.508993 0.830384 -0.460936 0.691342 -0.556403 -0.842505 -0.537873 0.029631 -0.278789 0.482430 0.830384 -0.530215 0.639755 -0.556403 -0.782115 -0.622430 0.029631 -0.327365 0.450882 0.830384 -0.594346 0.580662 -0.556403 -0.712572 -0.700973 0.029631 -0.372818 0.414088 0.830384 -0.651930 0.515172 -0.556403 -0.635181 -0.771795 0.029631 -0.414164 0.372734 0.830384 -0.701889 0.444710 -0.556403 -0.551627 -0.833565 0.029631 -0.450621 0.327724 0.830384 -0.744632 0.368698 -0.556403 -0.461225 -0.886788 0.029631 -0.482487 0.278691 0.830384 -0.779174 0.288624 -0.556403 -0.365743 -0.930244 0.029631 -0.509039 0.226588 0.830384 -0.805132 0.205372 -0.556403 -0.266233 -0.963453 0.029631 -0.529983 0.171989 0.830384 -0.822102 0.120679 -0.556403 -0.164776 -0.985886 0.029631 -0.544974 0.116041 0.830384 -0.830222 0.033852 -0.556403 -0.060540 -0.997726 0.029631 -0.554135 0.058285 0.830384 -0.017852 0.951102 0.308360 0.054314 0.308877 -0.949550 -0.998364 -0.000203 -0.057173 -0.117436 0.943993 0.308360 0.021643 0.312868 -0.949550 -0.992845 -0.104838 -0.057173 -0.214800 0.926701 0.308360 -0.010954 0.313424 -0.949550 -0.976597 -0.207341 -0.057173 -0.310742 0.899085 0.308360 -0.043743 0.310550 -0.949550 -0.949487 -0.308554 -0.057173 -0.403261 0.861565 0.308360 -0.076050 0.304255 -0.949550 -0.911919 -0.406367 -0.057173 -0.490524 0.815046 0.308360 -0.107224 0.294716 -0.949550 -0.864806 -0.498841 -0.057173 -0.573245 0.759147 0.308360 -0.137522 0.281855 -0.949550 -0.807761 -0.586731 -0.057173 -0.649652 0.694886 0.308360 -0.166305 0.265890 -0.949550 -0.741819 -0.668159 -0.057173 -0.718903 0.622971 0.308360 -0.193257 0.246995 -0.949550 -0.667705 -0.742227 -0.057173 -0.779691 0.544974 0.308360 -0.217854 0.225598 -0.949550 -0.587045 -0.807533 -0.057173 -0.832514 0.460255 0.308360 -0.240298 0.201523 -0.949550 -0.499177 -0.864612 -0.057173 -0.876167 0.370467 0.308360 -0.260096 0.175228 -0.949550 -0.405810 -0.912167 -0.057173 -0.909892 0.277508 0.308360 -0.276881 0.147280 -0.949550 -0.308923 -0.949367 -0.057173 -0.933966 0.180616 0.308360 -0.290792 0.117450 -0.949550 -0.207721 -0.976516 -0.057173 -0.947752 0.081735 0.308360 -0.301501 0.086326 -0.949550 -0.104231 -0.992908 -0.057173 -0.951113 -0.017271 0.308360 -0.308843 0.054503 -0.949550 -0.000407 -0.998364 -0.057173 -0.944064 -0.116860 0.308360 -0.312855 0.021834 -0.949550 0.104231 -0.992908 -0.057173 -0.926617 -0.215161 0.308360 -0.313420 -0.011076 -0.949550 0.207721 -0.976516 -0.057173 -0.898964 -0.311092 0.308360 -0.310533 -0.043864 -0.949550 0.308923 -0.949367 -0.057173 -0.861811 -0.402735 0.308360 -0.304302 -0.075864 -0.949550 0.405810 -0.912167 -0.057173 -0.814855 -0.490841 0.308360 -0.294675 -0.107339 -0.949550 0.499177 -0.864612 -0.057173 -0.758924 -0.573540 0.308360 -0.281802 -0.137632 -0.949550 0.587045 -0.807533 -0.057173 -0.695283 -0.649227 0.308360 -0.265991 -0.166143 -0.949550 0.667705 -0.742227 -0.057173 -0.623410 -0.718522 0.308360 -0.247113 -0.193106 -0.949550 0.741819 -0.668159 -0.057173 -0.544670 -0.779903 0.308360 -0.225514 -0.217941 -0.949550 0.807761 -0.586731 -0.057173 -0.459931 -0.832693 0.308360 -0.201430 -0.240376 -0.949550 0.864806 -0.498841 -0.057173 -0.371002 -0.875940 0.308360 -0.175387 -0.259989 -0.949550 0.911919 -0.406367 -0.057173 -0.277154 -0.910000 0.308360 -0.147173 -0.276939 -0.949550 0.949487 -0.308554 -0.057173 -0.180253 -0.934036 0.308360 -0.117337 -0.290838 -0.949550 0.976597 -0.207341 -0.057173 -0.082314 -0.947702 0.308360 -0.086510 -0.301448 -0.949550 0.992845 -0.104838 -0.057173 0.017465 -0.951109 0.308360 -0.054440 -0.308854 -0.949550 0.998364 -0.000203 -0.057173 0.117052 -0.944041 0.308360 -0.021770 -0.312859 -0.949550 0.992887 0.104434 -0.057173 0.215349 -0.926574 0.308360 0.011140 -0.313418 -0.949550 0.976474 0.207920 -0.057173 0.310376 -0.899211 0.308360 0.043616 -0.310568 -0.949550 0.949613 0.308167 -0.057173 0.402910 -0.861729 0.308360 0.075926 -0.304286 -0.949550 0.912085 0.405996 -0.057173 0.491007 -0.814755 0.308360 0.107399 -0.294653 -0.949550 0.864510 0.499353 -0.057173 0.573695 -0.758807 0.308360 0.137689 -0.281774 -0.949550 0.807413 0.587210 -0.057173 0.649369 -0.695150 0.308360 0.166197 -0.265957 -0.949550 0.742091 0.667857 -0.057173 0.718649 -0.623264 0.308360 0.193156 -0.247074 -0.949550 0.668008 0.741955 -0.057173 0.780014 -0.544511 0.308360 0.217987 -0.225469 -0.949550 0.586567 0.807881 -0.057173 0.832326 -0.460594 0.308360 0.240216 -0.201621 -0.949550 0.499529 0.864408 -0.057173 0.876016 -0.370824 0.308360 0.260024 -0.175334 -0.949550 0.406182 0.912002 -0.057173 0.910056 -0.276969 0.308360 0.276969 -0.147116 -0.949550 0.308360 0.949550 -0.057173 0.934072 -0.180063 0.308360 0.290862 -0.117278 -0.949550 0.207142 0.976639 -0.057173 0.947718 -0.082121 0.308360 0.301465 -0.086449 -0.949550 0.104636 0.992866 -0.057173 0.951106 0.017659 0.308360 0.308866 -0.054377 -0.949550 0.000000 0.998364 -0.057173 0.944017 0.117244 0.308360 0.312864 -0.021706 -0.949550 -0.104636 0.992866 -0.057173 0.926745 0.214611 0.308360 0.313427 0.010890 -0.949550 -0.207142 0.976639 -0.057173 0.899148 0.310559 0.308360 0.310559 0.043680 -0.949550 -0.308360 0.949550 -0.057173 0.861647 0.403086 0.308360 0.304271 0.075988 -0.949550 -0.406182 0.912002 -0.057173 0.814655 0.491173 0.308360 0.294631 0.107459 -0.949550 -0.499529 0.864408 -0.057173 0.759264 0.573090 0.308360 0.281883 0.137465 -0.949550 -0.586567 0.807881 -0.057173 0.695018 0.649510 0.308360 0.265924 0.166251 -0.949550 -0.668008 0.741955 -0.057173 0.623117 0.718776 0.308360 0.247035 0.193206 -0.949550 -0.742091 0.667857 -0.057173 0.545132 0.779580 0.308360 0.225643 0.217808 -0.949550 -0.807413 0.587210 -0.057173 0.460424 0.832420 0.308360 0.201572 0.240257 -0.949550 -0.864510 0.499353 -0.057173 0.370645 0.876091 0.308360 0.175281 0.260060 -0.949550 -0.912085 0.405996 -0.057173 0.276783 0.910113 0.308360 0.147060 0.276999 -0.949550 -0.949613 0.308167 -0.057173 0.180807 0.933929 0.308360 0.117509 0.290769 -0.949550 -0.976474 0.207920 -0.057173 0.081928 0.947735 0.308360 0.086388 0.301483 -0.949550 -0.992887 0.104434 -0.057173 -0.014751 0.994901 -0.099773 -0.143535 -0.100858 -0.984492 -0.989535 -0.000202 0.144291 -0.118943 0.987875 -0.099773 -0.132174 -0.115346 -0.984492 -0.984064 -0.103911 0.144291 -0.220854 0.970190 -0.099773 -0.119485 -0.128444 -0.984492 -0.967960 -0.205508 0.144291 -0.321321 0.941700 -0.099773 -0.105366 -0.140259 -0.984492 -0.941090 -0.305825 0.144291 -0.418248 0.902837 -0.099773 -0.090085 -0.150530 -0.984492 -0.903855 -0.402774 0.144291 -0.509714 0.854539 -0.099773 -0.073971 -0.159069 -0.984492 -0.857158 -0.494429 0.144291 -0.596468 0.796411 -0.099773 -0.056893 -0.165945 -0.984492 -0.800618 -0.581542 0.144291 -0.676653 0.729511 -0.099773 -0.039187 -0.170994 -0.984492 -0.735259 -0.662250 0.144291 -0.749384 0.654575 -0.099773 -0.021050 -0.174159 -0.984492 -0.661801 -0.735663 0.144291 -0.813288 0.573243 -0.099773 -0.002856 -0.175404 -0.984492 -0.581854 -0.800391 0.144291 -0.868889 0.484847 -0.099773 0.015543 -0.174737 -0.984492 -0.494762 -0.856966 0.144291 -0.914919 0.391111 -0.099773 0.033771 -0.172145 -0.984492 -0.402221 -0.904101 0.144291 -0.950578 0.294018 -0.099773 0.051460 -0.167709 -0.984492 -0.306191 -0.940971 0.144291 -0.976158 0.192771 -0.099773 0.068753 -0.161392 -0.984492 -0.205884 -0.967880 0.144291 -0.990986 0.089401 -0.099773 0.085290 -0.153298 -0.984492 -0.103310 -0.984128 0.144291 -0.994910 -0.014143 -0.099773 0.100770 -0.143597 -0.984492 -0.000403 -0.989535 0.144291 -0.987948 -0.118339 -0.099773 0.115265 -0.132244 -0.984492 0.103310 -0.984128 0.144291 -0.970104 -0.221231 -0.099773 0.128490 -0.119435 -0.984492 0.205884 -0.967880 0.144291 -0.941575 -0.321687 -0.099773 0.140300 -0.105311 -0.984492 0.306191 -0.940971 0.144291 -0.903092 -0.417696 -0.099773 0.150475 -0.090177 -0.984492 0.402221 -0.904101 0.144291 -0.854341 -0.510046 -0.099773 0.159097 -0.073910 -0.984492 0.494762 -0.856966 0.144291 -0.796179 -0.596778 -0.099773 0.165967 -0.056828 -0.984492 0.581854 -0.800391 0.144291 -0.729924 -0.676207 -0.099773 0.170970 -0.039291 -0.984492 0.661801 -0.735663 0.144291 -0.655033 -0.748984 -0.099773 0.174146 -0.021156 -0.984492 0.735259 -0.662250 0.144291 -0.572926 -0.813511 -0.099773 0.175405 -0.002788 -0.984492 0.800618 -0.581542 0.144291 -0.484509 -0.869078 -0.099773 0.174731 0.015611 -0.984492 0.857158 -0.494429 0.144291 -0.391670 -0.914680 -0.099773 0.172166 0.033666 -0.984492 0.903855 -0.402774 0.144291 -0.293648 -0.950693 -0.099773 0.167689 0.051525 -0.984492 0.941090 -0.305825 0.144291 -0.192391 -0.976233 -0.099773 0.161366 0.068816 -0.984492 0.967960 -0.205508 0.144291 -0.090006 -0.990931 -0.099773 0.153350 0.085196 -0.984492 0.984064 -0.103911 0.144291 0.014346 -0.994907 -0.099773 0.143576 0.100799 -0.984492 0.989535 -0.000202 0.144291 0.118540 -0.987924 -0.099773 0.132221 0.115292 -0.984492 0.984107 0.103510 0.144291 0.221429 -0.970059 -0.099773 0.119409 0.128515 -0.984492 0.967838 0.206081 0.144291 0.320937 -0.941831 -0.099773 0.105423 0.140216 -0.984492 0.941215 0.305442 0.144291 0.417880 -0.903007 -0.099773 0.090146 0.150493 -0.984492 0.904019 0.402406 0.144291 0.510220 -0.854237 -0.099773 0.073877 0.159112 -0.984492 0.856865 0.494937 0.144291 0.596940 -0.796058 -0.099773 0.056794 0.165979 -0.984492 0.800273 0.582017 0.144291 0.676356 -0.729786 -0.099773 0.039257 0.170978 -0.984492 0.735528 0.661950 0.144291 0.749118 -0.654880 -0.099773 0.021121 0.174151 -0.984492 0.662100 0.735393 0.144291 0.813628 -0.572761 -0.099773 0.002752 0.175405 -0.984492 0.581379 0.800736 0.144291 0.868692 -0.485201 -0.099773 -0.015472 0.174743 -0.984492 0.495111 0.856764 0.144291 0.914760 -0.391484 -0.099773 -0.033701 0.172159 -0.984492 0.402590 0.903937 0.144291 0.950752 -0.293454 -0.099773 -0.051559 0.167679 -0.984492 0.305633 0.941153 0.144291 0.976272 -0.192192 -0.099773 -0.068849 0.161352 -0.984492 0.205311 0.968002 0.144291 0.990949 -0.089805 -0.099773 -0.085227 0.153332 -0.984492 0.103710 0.984086 0.144291 0.994904 0.014549 -0.099773 -0.100828 0.143556 -0.984492 0.000000 0.989535 0.144291 0.987900 0.118742 -0.099773 -0.115319 0.132197 -0.984492 -0.103710 0.984086 0.144291 0.970235 0.220656 -0.099773 -0.128419 0.119512 -0.984492 -0.205311 0.968002 0.144291 0.941765 0.321129 -0.099773 -0.140238 0.105394 -0.984492 -0.305633 0.941153 0.144291 0.902922 0.418064 -0.099773 -0.150512 0.090116 -0.984492 -0.402590 0.903937 0.144291 0.854133 0.510394 -0.099773 -0.159127 0.073845 -0.984492 -0.495111 0.856764 0.144291 0.796533 0.596306 -0.099773 -0.165934 0.056926 -0.984492 -0.581379 0.800736 0.144291 0.729649 0.676504 -0.099773 -0.170986 0.039222 -0.984492 -0.662100 0.735393 0.144291 0.654728 0.749251 -0.099773 -0.174155 0.021085 -0.984492 -0.735528 0.661950 0.144291 0.573408 0.813172 -0.099773 -0.175403 0.002892 -0.984492 -0.800273 0.582017 0.144291 0.485024 0.868791 -0.099773 -0.174740 -0.015508 -0.984492 -0.856865 0.494937 0.144291 0.391297 0.914840 -0.099773 -0.172152 -0.033736 -0.984492 -0.904019 0.402406 0.144291 0.293261 0.950812 -0.099773 -0.167668 -0.051593 -0.984492 -0.941215 0.305442 0.144291 0.192970 0.976119 -0.099773 -0.161406 -0.068721 -0.984492 -0.967838 0.206081 0.144291 0.089603 0.990968 -0.099773 -0.153315 -0.085259 -0.984492 -0.984107 0.103510 0.144291 -0.965816 -0.057369 -0.252799 0.055513 -0.998353 0.014477 -0.253213 -0.000052 0.967411 -0.954485 -0.158278 -0.252799 0.159841 -0.987037 0.014477 -0.251813 -0.026590 0.967411 -0.932896 -0.256510 -0.252799 0.261445 -0.965110 0.014477 -0.247692 -0.052588 0.967411 -0.900874 -0.352872 -0.252799 0.361155 -0.932393 0.014477 -0.240816 -0.078258 0.967411 -0.858929 -0.445346 -0.252799 0.456888 -0.889407 0.014477 -0.231288 -0.103066 0.967411 -0.808056 -0.532108 -0.252799 0.546751 -0.837170 0.014477 -0.219339 -0.126520 0.967411 -0.747837 -0.613867 -0.252799 0.631481 -0.775256 0.014477 -0.204871 -0.148811 0.967411 -0.679380 -0.688865 -0.252799 0.709255 -0.704803 0.014477 -0.188146 -0.169464 0.967411 -0.603441 -0.756275 -0.252799 0.779218 -0.626586 0.014477 -0.169349 -0.188249 0.967411 -0.521669 -0.814834 -0.252799 0.840055 -0.542308 0.014477 -0.148891 -0.204813 0.967411 -0.433396 -0.865021 -0.252799 0.892266 -0.451277 0.014477 -0.126605 -0.219290 0.967411 -0.340349 -0.905680 -0.252799 0.934649 -0.355276 0.014477 -0.102925 -0.231351 0.967411 -0.244489 -0.936119 -0.252799 0.966481 -0.256328 0.014477 -0.078351 -0.240786 0.967411 -0.145030 -0.956587 -0.252799 0.988024 -0.153622 0.014477 -0.052684 -0.247672 0.967411 -0.043974 -0.966519 -0.252799 0.998683 -0.049224 0.014477 -0.026436 -0.251829 0.967411 0.056779 -0.965851 -0.252799 0.998387 0.054903 0.014477 -0.000103 -0.253213 0.967411 0.157695 -0.954581 -0.252799 0.987134 0.159238 0.014477 0.026436 -0.251829 0.967411 0.256873 -0.932796 -0.252799 0.965008 0.261820 0.014477 0.052684 -0.247672 0.967411 0.353222 -0.900737 -0.252799 0.932253 0.361518 0.014477 0.078351 -0.240786 0.967411 0.444821 -0.859201 -0.252799 0.889686 0.456344 0.014477 0.102925 -0.231351 0.967411 0.532422 -0.807849 -0.252799 0.836958 0.547076 0.014477 0.126605 -0.219290 0.967411 0.614158 -0.747598 -0.252799 0.775011 0.631782 0.014477 0.148891 -0.204813 0.967411 0.688450 -0.679801 -0.252799 0.705236 0.708825 0.014477 0.169349 -0.188249 0.967411 0.755906 -0.603903 -0.252799 0.627062 0.778835 0.014477 0.188146 -0.169464 0.967411 0.815037 -0.521352 -0.252799 0.541981 0.840266 0.014477 0.204871 -0.148811 0.967411 0.865189 -0.433060 -0.252799 0.450930 0.892442 0.014477 0.219339 -0.126520 0.967411 0.905471 -0.340902 -0.252799 0.355847 0.934432 0.014477 0.231288 -0.103066 0.967411 0.936214 -0.244125 -0.252799 0.255952 0.966581 0.014477 0.240816 -0.078258 0.967411 0.956644 -0.144658 -0.252799 0.153238 0.988083 0.014477 0.247692 -0.052588 0.967411 0.966492 -0.044565 -0.252799 0.049834 0.998653 0.014477 0.251813 -0.026590 0.967411 0.965840 0.056976 -0.252799 -0.055106 0.998376 0.014477 0.253213 -0.000052 0.967411 0.954549 0.157889 -0.252799 -0.159439 0.987102 0.014477 0.251824 0.026487 0.967411 0.932744 0.257063 -0.252799 -0.262017 0.964955 0.014477 0.247661 0.052734 0.967411 0.901018 0.352505 -0.252799 -0.360775 0.932540 0.014477 0.240848 0.078160 0.967411 0.859111 0.444996 -0.252799 -0.456525 0.889593 0.014477 0.231330 0.102972 0.967411 0.807740 0.532586 -0.252799 -0.547247 0.836846 0.014477 0.219264 0.126650 0.967411 0.747473 0.614310 -0.252799 -0.631940 0.774882 0.014477 0.204782 0.148933 0.967411 0.679661 0.688588 -0.252799 -0.708968 0.705092 0.014477 0.188215 0.169387 0.967411 0.603749 0.756029 -0.252799 -0.778962 0.626903 0.014477 0.169425 0.188180 0.967411 0.521186 0.815143 -0.252799 -0.840376 0.541810 0.014477 0.148770 0.204901 0.967411 0.433748 0.864844 -0.252799 -0.892082 0.451641 0.014477 0.126694 0.219238 0.967411 0.340718 0.905541 -0.252799 -0.934504 0.355657 0.014477 0.103019 0.231309 0.967411 0.243934 0.936263 -0.252799 -0.966633 0.255755 0.014477 0.078209 0.240832 0.967411 0.144463 0.956673 -0.252799 -0.988114 0.153037 0.014477 0.052537 0.247703 0.967411 0.044368 0.966501 -0.252799 -0.998663 0.049631 0.014477 0.026539 0.251818 0.967411 -0.057173 0.965828 -0.252799 -0.998364 -0.055309 0.014477 0.000000 0.253213 0.967411 -0.158083 0.954517 -0.252799 -0.987069 -0.159640 0.014477 -0.026539 0.251818 0.967411 -0.256320 0.932948 -0.252799 -0.965163 -0.261248 0.014477 -0.052537 0.247703 0.967411 -0.352688 0.900946 -0.252799 -0.932467 -0.360965 0.014477 -0.078209 0.240832 0.967411 -0.445171 0.859020 -0.252799 -0.889500 -0.456706 0.014477 -0.103019 0.231309 0.967411 -0.532751 0.807632 -0.252799 -0.836735 -0.547417 0.014477 -0.126694 0.219238 0.967411 -0.613715 0.747962 -0.252799 -0.775385 -0.631323 0.014477 -0.148770 0.204901 0.967411 -0.688727 0.679521 -0.252799 -0.704947 -0.709112 0.014477 -0.169425 0.188180 0.967411 -0.756152 0.603595 -0.252799 -0.626745 -0.779090 0.014477 -0.188215 0.169387 0.967411 -0.814727 0.521835 -0.252799 -0.542479 -0.839945 0.014477 -0.204782 0.148933 0.967411 -0.864932 0.433572 -0.252799 -0.451459 -0.892174 0.014477 -0.219264 0.126650 0.967411 -0.905610 0.340533 -0.252799 -0.355467 -0.934577 0.014477 -0.231330 0.102972 0.967411 -0.936313 0.243743 -0.252799 -0.255558 -0.966685 0.014477 -0.240848 0.078160 0.967411 -0.956558 0.145225 -0.252799 -0.153824 -0.987992 0.014477 -0.247661 0.052734 0.967411 -0.966510 0.044171 -0.252799 -0.049428 -0.998673 0.014477 -0.251824 0.026487 0.967411 0.115646 -0.899293 -0.421780 -0.237362 -0.437347 0.867402 -0.964513 -0.000196 -0.264035 0.209261 -0.882219 -0.421780 -0.190218 -0.459816 0.867402 -0.959180 -0.101283 -0.264035 0.299716 -0.855729 -0.421780 -0.141456 -0.477078 0.867402 -0.943483 -0.200311 -0.264035 0.387752 -0.819604 -0.421780 -0.090675 -0.489276 0.867402 -0.917293 -0.298092 -0.264035 0.471516 -0.774451 -0.421780 -0.038896 -0.496085 0.867402 -0.880999 -0.392589 -0.264035 0.549367 -0.721317 -0.421780 0.012814 -0.497443 0.867402 -0.835483 -0.481927 -0.264035 0.621940 -0.659767 -0.421780 0.064879 -0.493360 0.867402 -0.780373 -0.566837 -0.264035 0.687663 -0.590949 -0.421780 0.116229 -0.483843 0.867402 -0.716666 -0.645504 -0.264035 0.745811 -0.515623 -0.421780 0.166299 -0.468997 0.867402 -0.645066 -0.717060 -0.264035 0.795310 -0.435412 -0.421780 0.214089 -0.449199 0.867402 -0.567140 -0.780152 -0.264035 0.836564 -0.349660 -0.421780 0.259989 -0.424287 0.867402 -0.482251 -0.835296 -0.264035 0.868604 -0.260056 -0.421780 0.303025 -0.394701 0.867402 -0.392050 -0.881239 -0.264035 0.890908 -0.168479 -0.421780 0.342363 -0.361111 0.867402 -0.298449 -0.917177 -0.264035 0.903659 -0.074178 -0.421780 0.378324 -0.323240 0.867402 -0.200678 -0.943405 -0.264035 0.906456 0.020941 -0.421780 0.410119 -0.281809 0.867402 -0.100697 -0.959242 -0.264035 0.899363 0.115096 -0.421780 0.437202 -0.237629 0.867402 -0.000393 -0.964513 -0.264035 0.882347 0.208722 -0.421780 0.459699 -0.190499 0.867402 0.100697 -0.959242 -0.264035 0.855612 0.300049 -0.421780 0.477133 -0.141270 0.867402 0.200678 -0.943405 -0.264035 0.819453 0.388070 -0.421780 0.489312 -0.090485 0.867402 0.298449 -0.917177 -0.264035 0.774738 0.471043 -0.421780 0.496061 -0.039199 0.867402 0.392050 -0.881239 -0.264035 0.721103 0.549647 -0.421780 0.497438 0.013007 0.867402 0.482251 -0.835296 -0.264035 0.659525 0.622197 -0.421780 0.493335 0.065071 0.867402 0.567140 -0.780152 -0.264035 0.591369 0.687302 -0.421780 0.483914 0.115934 0.867402 0.645066 -0.717060 -0.264035 0.516078 0.745496 -0.421780 0.469098 0.166013 0.867402 0.716666 -0.645504 -0.264035 0.435102 0.795479 -0.421780 0.449115 0.214263 0.867402 0.780373 -0.566837 -0.264035 0.349334 0.836700 -0.421780 0.424186 0.260154 0.867402 0.835483 -0.481927 -0.264035 0.260587 0.868445 -0.421780 0.394886 0.302784 0.867402 0.880999 -0.392589 -0.264035 0.168132 0.890973 -0.421780 0.360978 0.342503 0.867402 0.917293 -0.298092 -0.264035 0.073826 0.903688 -0.421780 0.323093 0.378450 0.867402 0.943483 -0.200311 -0.264035 -0.020387 0.906469 -0.421780 0.282059 0.409946 0.867402 0.959180 -0.101283 -0.264035 -0.115279 0.899340 -0.421780 0.237540 0.437250 0.867402 0.964513 -0.000196 -0.264035 -0.208902 0.882305 -0.421780 0.190405 0.459738 0.867402 0.959222 0.100893 -0.264035 -0.300223 0.855551 -0.421780 0.141173 0.477162 0.867402 0.943364 0.200870 -0.264035 -0.387418 0.819761 -0.421780 0.090875 0.489239 0.867402 0.917414 0.297718 -0.264035 -0.471201 0.774643 -0.421780 0.039098 0.496069 0.867402 0.881159 0.392230 -0.264035 -0.549794 0.720991 -0.421780 -0.013109 0.497435 0.867402 0.835198 0.482421 -0.264035 -0.622331 0.659398 -0.421780 -0.065171 0.493321 0.867402 0.780036 0.567299 -0.264035 -0.687422 0.591229 -0.421780 -0.116032 0.483890 0.867402 0.716929 0.645212 -0.264035 -0.745601 0.515926 -0.421780 -0.166108 0.469064 0.867402 0.645358 0.716798 -0.264035 -0.795568 0.434940 -0.421780 -0.214355 0.449072 0.867402 0.566678 0.780488 -0.264035 -0.836422 0.350000 -0.421780 -0.259816 0.424393 0.867402 0.482592 0.835099 -0.264035 -0.868498 0.260410 -0.421780 -0.302864 0.394825 0.867402 0.392409 0.881079 -0.264035 -0.891007 0.167951 -0.421780 -0.342577 0.360908 0.867402 0.297905 0.917354 -0.264035 -0.903702 0.073642 -0.421780 -0.378516 0.323016 0.867402 0.200119 0.943524 -0.264035 -0.906465 -0.020572 -0.421780 -0.410004 0.281976 0.867402 0.101088 0.959201 -0.264035 -0.899316 -0.115462 -0.421780 -0.437299 0.237451 0.867402 0.000000 0.964513 -0.264035 -0.882262 -0.209081 -0.421780 -0.459777 0.190312 0.867402 -0.101088 0.959201 -0.264035 -0.855790 -0.299542 -0.421780 -0.477049 0.141553 0.867402 -0.200119 0.943524 -0.264035 -0.819683 -0.387585 -0.421780 -0.489258 0.090775 0.867402 -0.297905 0.917354 -0.264035 -0.774547 -0.471359 -0.421780 -0.496077 0.038997 0.867402 -0.392409 0.881079 -0.264035 -0.720879 -0.549941 -0.421780 -0.497432 -0.013210 0.867402 -0.482592 0.835099 -0.264035 -0.659893 -0.621806 -0.421780 -0.493373 -0.064778 0.867402 -0.566678 0.780488 -0.264035 -0.591089 -0.687543 -0.421780 -0.483867 -0.116131 0.867402 -0.645358 0.716798 -0.264035 -0.515774 -0.745706 -0.421780 -0.469030 -0.166204 0.867402 -0.716929 0.645212 -0.264035 -0.435574 -0.795221 -0.421780 -0.449242 -0.213997 0.867402 -0.780036 0.567299 -0.264035 -0.349830 -0.836493 -0.421780 -0.424340 -0.259902 0.867402 -0.835198 0.482421 -0.264035 -0.260233 -0.868551 -0.421780 -0.394763 -0.302945 0.867402 -0.881159 0.392230 -0.264035 -0.167769 -0.891041 -0.421780 -0.360838 -0.342650 0.867402 -0.917414 0.297718 -0.264035 -0.074362 -0.903644 -0.421780 -0.323317 -0.378258 0.867402 -0.943364 0.200870 -0.264035 0.020756 -0.906460 -0.421780 -0.281892 -0.410061 0.867402 -0.959222 0.100893 -0.264035 0.979162 -0.107793 0.172111 0.106160 0.994173 0.018696 -0.173123 -0.000035 0.984900 0.985067 -0.004576 0.172111 0.001378 0.999824 0.018696 -0.172166 -0.018180 0.984900 0.980220 0.097711 0.172111 -0.102423 0.994565 0.018696 -0.169349 -0.035954 0.984900 0.964580 0.199907 0.172111 -0.206097 0.978353 0.018696 -0.164648 -0.053505 0.984900 0.938316 0.299901 0.172111 -0.307500 0.951364 0.018696 -0.158133 -0.070467 0.984900 0.902113 0.395689 0.172111 -0.404603 0.914302 0.018696 -0.149963 -0.086502 0.984900 0.855674 0.488058 0.172111 -0.498199 0.866861 0.018696 -0.140071 -0.101743 0.984900 0.799809 0.575051 0.172111 -0.586309 0.809872 0.018696 -0.128637 -0.115863 0.984900 0.735135 0.655709 0.172111 -0.667960 0.743962 0.018696 -0.115785 -0.128707 0.984900 0.663092 0.728483 0.172111 -0.741584 0.670600 0.018696 -0.101798 -0.140032 0.984900 0.583090 0.793967 0.172111 -0.807783 0.589183 0.018696 -0.086561 -0.149930 0.984900 0.496665 0.850707 0.172111 -0.865085 0.501277 0.018696 -0.070370 -0.158176 0.984900 0.405667 0.897670 0.172111 -0.912450 0.408762 0.018696 -0.053569 -0.164627 0.984900 0.309351 0.935243 0.172111 -0.950266 0.310879 0.018696 -0.036020 -0.169335 0.984900 0.209627 0.962515 0.172111 -0.977614 0.209572 0.018696 -0.018074 -0.172177 0.984900 0.108391 0.979096 0.172111 -0.994108 0.106767 0.018696 -0.000071 -0.173123 0.984900 0.005178 0.985064 0.172111 -0.999823 0.001989 0.018696 0.018074 -0.172177 0.984900 -0.098092 0.980182 0.172111 -0.994525 -0.102810 0.018696 0.036020 -0.169335 0.984900 -0.200282 0.964502 0.172111 -0.978273 -0.206478 0.018696 0.053569 -0.164627 0.984900 -0.299327 0.938499 0.172111 -0.951552 -0.306919 0.018696 0.070370 -0.158176 0.984900 -0.396040 0.901959 0.172111 -0.914144 -0.404958 0.018696 0.086561 -0.149930 0.984900 -0.488391 0.855484 0.172111 -0.866667 -0.498537 0.018696 0.101798 -0.140032 0.984900 -0.574562 0.800160 0.172111 -0.810230 -0.585814 0.018696 0.115785 -0.128707 0.984900 -0.655260 0.735535 0.172111 -0.744370 -0.667506 0.018696 0.128637 -0.115863 0.984900 -0.728741 0.662808 0.172111 -0.670311 -0.741845 0.018696 0.140071 -0.101743 0.984900 -0.794194 0.582781 0.172111 -0.588869 -0.808012 0.018696 0.149963 -0.086502 0.984900 -0.850403 0.497185 0.172111 -0.501805 -0.864779 0.018696 0.158133 -0.070467 0.984900 -0.897828 0.405318 0.172111 -0.408407 -0.912609 0.018696 0.164648 -0.053505 0.984900 -0.935364 0.308987 0.172111 -0.310509 -0.950386 0.018696 0.169349 -0.035954 0.984900 -0.962386 0.210215 0.172111 -0.210170 -0.977486 0.018696 0.172166 -0.018180 0.984900 -0.979118 0.108192 0.172111 -0.106564 -0.994130 0.018696 0.173123 -0.000035 0.984900 -0.985065 0.004978 0.172111 -0.001786 -0.999824 0.018696 0.172174 0.018110 0.984900 -0.980161 -0.098292 0.172111 0.103013 -0.994504 0.018696 0.169327 0.036055 0.984900 -0.964662 -0.199514 0.172111 0.205698 -0.978437 0.018696 0.164669 0.053438 0.984900 -0.938438 -0.299518 0.172111 0.307113 -0.951489 0.018696 0.158162 0.070403 0.984900 -0.901878 -0.396224 0.172111 0.405144 -0.914062 0.018696 0.149912 0.086591 0.984900 -0.855384 -0.488565 0.172111 0.498713 -0.866565 0.018696 0.140011 0.101826 0.984900 -0.800043 -0.574725 0.172111 0.585979 -0.810111 0.018696 0.128684 0.115811 0.984900 -0.735402 -0.655410 0.172111 0.667657 -0.744234 0.018696 0.115837 0.128660 0.984900 -0.662660 -0.728876 0.172111 0.741981 -0.670160 0.018696 0.101715 0.140092 0.984900 -0.583413 -0.793730 0.172111 0.807543 -0.589512 0.018696 0.086622 0.149894 0.984900 -0.497011 -0.850504 0.172111 0.864881 -0.501629 0.018696 0.070435 0.158147 0.984900 -0.405135 -0.897911 0.172111 0.912692 -0.408221 0.018696 0.053472 0.164659 0.984900 -0.308796 -0.935426 0.172111 0.950450 -0.310316 0.018696 0.035920 0.169356 0.984900 -0.210019 -0.962429 0.172111 0.977529 -0.209970 0.018696 0.018145 0.172170 0.984900 -0.107993 -0.979140 0.172111 0.994152 -0.106362 0.018696 0.000000 0.173123 0.984900 -0.004777 -0.985066 0.172111 0.999824 -0.001582 0.018696 -0.018145 0.172170 0.984900 0.097511 -0.980240 0.172111 0.994586 0.102221 0.018696 -0.035920 0.169356 0.984900 0.199710 -0.964621 0.172111 0.978395 0.205898 0.018696 -0.053472 0.164659 0.984900 0.299709 -0.938377 0.172111 0.951427 0.307306 0.018696 -0.070435 0.158147 0.984900 0.396408 -0.901798 0.172111 0.913979 0.405330 0.018696 -0.086622 0.149894 0.984900 0.487884 -0.855773 0.172111 0.866962 0.498023 0.018696 -0.101715 0.140092 0.984900 0.574888 -0.799926 0.172111 0.809991 0.586144 0.018696 -0.115837 0.128660 0.984900 0.655560 -0.735268 0.172111 0.744098 0.667809 0.018696 -0.128684 0.115811 0.984900 0.728348 -0.663240 0.172111 0.670751 0.741447 0.018696 -0.140011 0.101826 0.984900 0.793849 -0.583251 0.172111 0.589348 0.807663 0.018696 -0.149912 0.086591 0.984900 0.850606 -0.496838 0.172111 0.501453 0.864983 0.018696 -0.158162 0.070403 0.984900 0.897993 -0.404952 0.172111 0.408035 0.912775 0.018696 -0.164669 0.053438 0.984900 0.935180 -0.309541 0.172111 0.311073 0.950202 0.018696 -0.169327 0.036055 0.984900 0.962472 -0.209823 0.172111 0.209771 0.977572 0.018696 -0.172174 0.018110 0.984900 0.391694 -0.896597 -0.206616 -0.792929 -0.442848 0.418508 -0.466733 -0.000095 -0.884398 0.483506 -0.850606 -0.206616 -0.742148 -0.523514 0.418508 -0.464152 -0.049011 -0.884398 0.569198 -0.795816 -0.206616 -0.683791 -0.597730 0.418508 -0.456556 -0.096931 -0.884398 0.649470 -0.731777 -0.206616 -0.617379 -0.666104 0.418508 -0.443883 -0.144248 -0.884398 0.722589 -0.659678 -0.206616 -0.544166 -0.727141 0.418508 -0.426320 -0.189976 -0.884398 0.787167 -0.581100 -0.206616 -0.465740 -0.779703 0.418508 -0.404294 -0.233207 -0.884398 0.843736 -0.495399 -0.206616 -0.381456 -0.824222 0.418508 -0.377626 -0.274295 -0.884398 0.891010 -0.404241 -0.206616 -0.292971 -0.859662 0.418508 -0.346798 -0.312362 -0.884398 0.928470 -0.308630 -0.206616 -0.201259 -0.885633 0.418508 -0.312151 -0.346989 -0.884398 0.955493 -0.210576 -0.206616 -0.108231 -0.901741 0.418508 -0.274442 -0.377519 -0.884398 0.972301 -0.109274 -0.206616 -0.013126 -0.908118 0.418508 -0.233364 -0.404204 -0.884398 0.978399 -0.006768 -0.206616 0.082123 -0.904492 0.418508 -0.189715 -0.426436 -0.884398 0.973815 0.094839 -0.206616 0.175577 -0.891080 0.418508 -0.144421 -0.443827 -0.884398 0.958512 0.196379 -0.206616 0.268002 -0.867771 0.418508 -0.097109 -0.456519 -0.884398 0.932651 0.295757 -0.206616 0.357474 -0.834903 0.418508 -0.048728 -0.464182 -0.884398 0.896836 0.391146 -0.206616 0.442364 -0.793199 0.418508 -0.000190 -0.466733 -0.884398 0.850902 0.482987 -0.206616 0.523060 -0.742468 0.418508 0.048728 -0.464182 -0.884398 0.795595 0.569507 -0.206616 0.597995 -0.683559 0.418508 0.097109 -0.456519 -0.884398 0.731525 0.649755 -0.206616 0.666344 -0.617120 0.418508 0.144421 -0.443827 -0.884398 0.660120 0.722185 -0.206616 0.726808 -0.544611 0.418508 0.189715 -0.426436 -0.884398 0.580794 0.787393 -0.206616 0.779885 -0.465436 0.418508 0.233364 -0.404204 -0.884398 0.495071 0.843928 -0.206616 0.824370 -0.381135 0.418508 0.274442 -0.377519 -0.884398 0.404785 0.890763 -0.206616 0.859483 -0.293496 0.418508 0.312151 -0.346989 -0.884398 0.309198 0.928282 -0.206616 0.885510 -0.201800 0.418508 0.346798 -0.312362 -0.884398 0.210204 0.955575 -0.206616 0.901783 -0.107880 0.418508 0.377626 -0.274295 -0.884398 0.108895 0.972343 -0.206616 0.908123 -0.012773 0.418508 0.404294 -0.233207 -0.884398 0.007365 0.978394 -0.206616 0.904543 0.081571 0.418508 0.426320 -0.189976 -0.884398 -0.095218 0.973778 -0.206616 0.891012 0.175924 0.418508 0.443883 -0.144248 -0.884398 -0.196752 0.958435 -0.206616 0.867666 0.268339 0.418508 0.456556 -0.096931 -0.884398 -0.295187 0.932831 -0.206616 0.835121 0.356964 0.418508 0.464152 -0.049011 -0.884398 -0.391329 0.896756 -0.206616 0.793109 0.442525 0.418508 0.466733 -0.000095 -0.884398 -0.483160 0.850803 -0.206616 0.742362 0.523211 0.418508 0.464172 0.048822 -0.884398 -0.569669 0.795479 -0.206616 0.683437 0.598135 0.418508 0.456499 0.097202 -0.884398 -0.649172 0.732042 -0.206616 0.617650 0.665852 0.418508 0.443941 0.144067 -0.884398 -0.722320 0.659972 -0.206616 0.544462 0.726919 0.418508 0.426397 0.189802 -0.884398 -0.787512 0.580633 -0.206616 0.465278 0.779979 0.418508 0.404156 0.233446 -0.884398 -0.844029 0.494899 -0.206616 0.380968 0.824448 0.418508 0.377464 0.274519 -0.884398 -0.890845 0.404604 -0.206616 0.293321 0.859543 0.418508 0.346926 0.312221 -0.884398 -0.928344 0.309009 -0.206616 0.201619 0.885551 0.418508 0.312292 0.346862 -0.884398 -0.955618 0.210010 -0.206616 0.107697 0.901805 0.418508 0.274218 0.377682 -0.884398 -0.972256 0.109670 -0.206616 0.013496 0.908113 0.418508 0.233528 0.404109 -0.884398 -0.978396 0.007166 -0.206616 -0.081755 0.904526 0.418508 0.189889 0.426359 -0.884398 -0.973758 -0.095416 -0.206616 -0.176105 0.890976 0.418508 0.144158 0.443912 -0.884398 -0.958395 -0.196948 -0.206616 -0.268516 0.867612 0.418508 0.096839 0.456576 -0.884398 -0.932771 -0.295377 -0.206616 -0.357134 0.835048 0.418508 0.048917 0.464162 -0.884398 -0.896676 -0.391511 -0.206616 -0.442687 0.793019 0.418508 0.000000 0.466733 -0.884398 -0.850705 -0.483333 -0.206616 -0.523363 0.742255 0.418508 -0.048917 0.464162 -0.884398 -0.795932 -0.569036 -0.206616 -0.597590 0.683913 0.418508 -0.096839 0.456576 -0.884398 -0.731910 -0.649321 -0.206616 -0.665978 0.617515 0.418508 -0.144158 0.443912 -0.884398 -0.659825 -0.722454 -0.206616 -0.727030 0.544314 0.418508 -0.189889 0.426359 -0.884398 -0.580473 -0.787630 -0.206616 -0.780074 0.465119 0.418508 -0.233528 0.404109 -0.884398 -0.495571 -0.843635 -0.206616 -0.824144 0.381624 0.418508 -0.274218 0.377682 -0.884398 -0.404422 -0.890928 -0.206616 -0.859602 0.293146 0.418508 -0.312292 0.346862 -0.884398 -0.308819 -0.928407 -0.206616 -0.885592 0.201439 0.418508 -0.346926 0.312221 -0.884398 -0.210770 -0.955450 -0.206616 -0.901719 0.108415 0.418508 -0.377464 0.274519 -0.884398 -0.109472 -0.972279 -0.206616 -0.908115 0.013311 0.418508 -0.404156 0.233446 -0.884398 -0.006967 -0.978397 -0.206616 -0.904509 -0.081939 0.418508 -0.426397 0.189802 -0.884398 0.095614 -0.973739 -0.206616 -0.890940 -0.176287 0.418508 -0.443941 0.144067 -0.884398 0.196184 -0.958552 -0.206616 -0.867825 -0.267825 0.418508 -0.456499 0.097202 -0.884398 0.295567 -0.932711 -0.206616 -0.834976 -0.357304 0.418508 -0.464172 0.048822 -0.884398 -0.744591 -0.586225 -0.319257 0.538826 -0.810149 0.230924 -0.394019 -0.000080 0.919102 -0.679050 -0.661035 -0.319257 0.620768 -0.749214 0.230924 -0.391840 -0.041376 0.919102 -0.606757 -0.727957 -0.319257 0.695192 -0.680722 0.230924 -0.385428 -0.081830 0.919102 -0.527120 -0.787540 -0.319257 0.762708 -0.604112 0.230924 -0.374729 -0.121775 0.919102 -0.441677 -0.838449 -0.319257 0.821822 -0.520848 0.230924 -0.359902 -0.160379 0.919102 -0.352249 -0.879770 -0.319257 0.871452 -0.432718 0.230924 -0.341308 -0.196875 0.919102 -0.258103 -0.911843 -0.319257 0.912005 -0.339000 0.230924 -0.318794 -0.231562 0.919102 -0.161114 -0.933872 -0.319257 0.942512 -0.241549 0.230924 -0.292769 -0.263698 0.919102 -0.062350 -0.945615 -0.319257 0.962637 -0.141436 0.230924 -0.263520 -0.292930 0.919102 0.036154 -0.946978 -0.319257 0.972119 -0.040738 0.230924 -0.231686 -0.318704 0.919102 0.135205 -0.937974 -0.319257 0.971034 0.061371 0.230924 -0.197007 -0.341231 0.919102 0.232766 -0.918637 -0.319257 0.959254 0.162804 0.230924 -0.160159 -0.360000 0.919102 0.326875 -0.889510 -0.319257 0.937170 0.261507 0.230924 -0.121921 -0.374681 0.919102 0.418302 -0.850352 -0.319257 0.904601 0.358289 0.230924 -0.081980 -0.385396 0.919102 0.505121 -0.801828 -0.319257 0.862068 0.451125 0.230924 -0.041136 -0.391866 0.919102 0.585770 -0.744949 -0.319257 0.810478 0.538331 0.230924 -0.000160 -0.394019 0.919102 0.660620 -0.679453 -0.319257 0.749593 0.620310 0.230924 0.041136 -0.391866 0.919102 0.728193 -0.606474 -0.319257 0.680452 0.695457 0.230924 0.081980 -0.385396 0.919102 0.787745 -0.526814 -0.319257 0.603815 0.762943 0.230924 0.121921 -0.374681 0.919102 0.838179 -0.442189 -0.319257 0.521350 0.821504 0.230924 0.160159 -0.360000 0.919102 0.879907 -0.351907 -0.319257 0.432379 0.871621 0.230924 0.197007 -0.341231 0.919102 0.911943 -0.257748 -0.319257 0.338646 0.912137 0.230924 0.231686 -0.318704 0.919102 0.933774 -0.161684 -0.319257 0.242124 0.942364 0.230924 0.263520 -0.292930 0.919102 0.945577 -0.062928 -0.319257 0.142024 0.962550 0.230924 0.292769 -0.263698 0.919102 0.946964 0.036522 -0.319257 0.040360 0.972134 0.230924 0.318794 -0.231562 0.919102 0.937921 0.135569 -0.319257 -0.061749 0.971010 0.230924 0.341308 -0.196875 0.919102 0.918779 0.232205 -0.319257 -0.162218 0.959354 0.230924 0.359902 -0.160379 0.919102 0.889383 0.327221 -0.319257 -0.261872 0.937068 0.230924 0.374729 -0.121775 0.919102 0.850189 0.418632 -0.319257 -0.358641 0.904462 0.230924 0.385428 -0.081830 0.919102 0.802136 0.504631 -0.319257 -0.450598 0.862343 0.230924 0.391840 -0.041376 0.919102 0.744830 0.585921 -0.319257 -0.538496 0.810368 0.230924 0.394019 -0.000080 0.919102 0.679319 0.660758 -0.319257 -0.620463 0.749467 0.230924 0.391857 0.041216 0.919102 0.606325 0.728316 -0.319257 -0.695595 0.680310 0.230924 0.385379 0.082059 0.919102 0.527441 0.787325 -0.319257 -0.762461 0.604423 0.230924 0.374778 0.121622 0.919102 0.442019 0.838269 -0.319257 -0.821610 0.521182 0.230924 0.359967 0.160232 0.919102 0.351728 0.879979 -0.319257 -0.871709 0.432202 0.230924 0.341191 0.197077 0.919102 0.257562 0.911996 -0.319257 -0.912206 0.338460 0.230924 0.318657 0.231751 0.919102 0.161494 0.933807 -0.319257 -0.942413 0.241933 0.230924 0.292877 0.263579 0.919102 0.062735 0.945589 -0.319257 -0.962579 0.141829 0.230924 0.263639 0.292823 0.919102 -0.036715 0.946957 -0.319257 -0.972143 0.040162 0.230924 0.231497 0.318842 0.919102 -0.134823 0.938029 -0.319257 -0.971059 -0.060975 0.230924 0.197146 0.341151 0.919102 -0.232392 0.918732 -0.319257 -0.959321 -0.162414 0.230924 0.160305 0.359935 0.919102 -0.327402 0.889316 -0.319257 -0.937015 -0.262063 0.230924 0.121699 0.374754 0.919102 -0.418806 0.850104 -0.319257 -0.904388 -0.358825 0.230924 0.081752 0.385444 0.919102 -0.504794 0.802033 -0.319257 -0.862251 -0.450774 0.230924 0.041296 0.391849 0.919102 -0.586073 0.744710 -0.319257 -0.810258 -0.538661 0.230924 0.000000 0.394019 0.919102 -0.660896 0.679184 -0.319257 -0.749340 -0.620615 0.230924 -0.041296 0.391849 0.919102 -0.727833 0.606905 -0.319257 -0.680864 -0.695053 0.230924 -0.081752 0.385444 0.919102 -0.787433 0.527280 -0.319257 -0.604267 -0.762585 0.230924 -0.121699 0.374754 0.919102 -0.838359 0.441848 -0.319257 -0.521015 -0.821716 0.230924 -0.160305 0.359935 0.919102 -0.880050 0.351548 -0.319257 -0.432024 -0.871797 0.230924 -0.197146 0.341151 0.919102 -0.911791 0.258289 -0.319257 -0.339186 -0.911936 0.230924 -0.231497 0.318842 0.919102 -0.933839 0.161304 -0.319257 -0.241741 -0.942463 0.230924 -0.263639 0.292823 0.919102 -0.945602 0.062543 -0.319257 -0.141632 -0.962608 0.230924 -0.292877 0.263579 0.919102 -0.946986 -0.035961 -0.319257 -0.040936 -0.972110 0.230924 -0.318657 0.231751 0.919102 -0.938001 -0.135014 -0.319257 0.061173 -0.971047 0.230924 -0.341191 0.197077 0.919102 -0.918685 -0.232579 -0.319257 0.162609 -0.959288 0.230924 -0.359967 0.160232 0.919102 -0.889249 -0.327583 -0.319257 0.262254 -0.936962 0.230924 -0.374778 0.121622 0.919102 -0.850437 -0.418128 -0.319257 0.358105 -0.904674 0.230924 -0.385379 0.082059 0.919102 -0.801931 -0.504958 -0.319257 0.450949 -0.862160 0.230924 -0.391857 0.041216 0.919102 -0.730392 -0.078273 0.678528 -0.057440 0.996932 0.053172 -0.680608 -0.000139 -0.732647 -0.718166 -0.154392 0.678528 -0.161610 0.985421 0.053172 -0.676845 -0.071470 -0.732647 -0.698258 -0.228113 0.678528 -0.263036 0.963320 0.053172 -0.665769 -0.141349 -0.732647 -0.670504 -0.300039 0.678528 -0.362550 0.930446 0.053172 -0.647288 -0.210348 -0.732647 -0.635365 -0.368660 0.678528 -0.458071 0.887324 0.053172 -0.621677 -0.277030 -0.732647 -0.593661 -0.432627 0.678528 -0.547711 0.834976 0.053172 -0.589559 -0.340071 -0.732647 -0.545049 -0.492464 0.678528 -0.632206 0.772974 0.053172 -0.550670 -0.399988 -0.732647 -0.490433 -0.546877 0.678528 -0.709737 0.702457 0.053172 -0.505715 -0.455500 -0.732647 -0.430416 -0.595266 0.678528 -0.779451 0.624203 0.053172 -0.455191 -0.505993 -0.732647 -0.366294 -0.636732 0.678528 -0.840040 0.539913 0.053172 -0.400203 -0.550514 -0.732647 -0.297543 -0.671616 0.678528 -0.892000 0.448897 0.053172 -0.340301 -0.589426 -0.732647 -0.225514 -0.699102 0.678528 -0.934135 0.352937 0.053172 -0.276650 -0.621846 -0.732647 -0.151720 -0.718735 0.678528 -0.965727 0.254055 0.053172 -0.210600 -0.647206 -0.732647 -0.075556 -0.730678 0.678528 -0.987035 0.151441 0.053172 -0.141608 -0.665714 -0.732647 0.001441 -0.734573 0.678528 -0.997471 0.047158 0.053172 -0.071057 -0.676889 -0.732647 0.077827 -0.730440 0.678528 -0.996967 -0.056831 0.053172 -0.000277 -0.680608 -0.732647 0.153953 -0.718260 0.678528 -0.985520 -0.161008 0.053172 0.071057 -0.676889 -0.732647 0.228384 -0.698169 0.678528 -0.963217 -0.263410 0.053172 0.141608 -0.665714 -0.732647 0.300300 -0.670388 0.678528 -0.930305 -0.362912 0.053172 0.210600 -0.647206 -0.732647 0.368272 -0.635591 0.678528 -0.887604 -0.457528 0.053172 0.276650 -0.621846 -0.732647 0.432858 -0.593493 0.678528 -0.834763 -0.548036 0.053172 0.340301 -0.589426 -0.732647 0.492676 -0.544857 0.678528 -0.772728 -0.632507 0.053172 0.400203 -0.550514 -0.732647 0.546577 -0.490767 0.678528 -0.702890 -0.709308 0.053172 0.455191 -0.505993 -0.732647 0.595003 -0.430779 0.678528 -0.624679 -0.779070 0.053172 0.505715 -0.455500 -0.732647 0.636875 -0.366046 0.678528 -0.539586 -0.840250 0.053172 0.550670 -0.399988 -0.732647 0.671731 -0.297281 0.678528 -0.448550 -0.892174 0.053172 0.589559 -0.340071 -0.732647 0.698964 -0.225941 0.678528 -0.353508 -0.933919 0.053172 0.621677 -0.277030 -0.732647 0.718794 -0.151440 0.678528 -0.253679 -0.965826 0.053172 0.647288 -0.210348 -0.732647 0.730708 -0.075271 0.678528 -0.151057 -0.987094 0.053172 0.665769 -0.141349 -0.732647 0.734574 0.000992 0.678528 -0.047768 -0.997442 0.053172 0.676845 -0.071470 -0.732647 0.730424 0.077975 0.678528 0.057034 -0.996955 0.053172 0.680608 -0.000139 -0.732647 0.718229 0.154100 0.678528 0.161208 -0.985487 0.053172 0.676875 0.071195 -0.732647 0.698123 0.228526 0.678528 0.263607 -0.963164 0.053172 0.665685 0.141744 -0.732647 0.670627 0.299766 0.678528 0.362171 -0.930594 0.053172 0.647373 0.210085 -0.732647 0.635516 0.368401 0.678528 0.457709 -0.887511 0.053172 0.621790 0.276777 -0.732647 0.593404 0.432979 0.678528 0.548206 -0.834652 0.053172 0.589357 0.340421 -0.732647 0.544757 0.492787 0.678528 0.632664 -0.772599 0.053172 0.550433 0.400315 -0.732647 0.490656 0.546677 0.678528 0.709451 -0.702746 0.053172 0.505901 0.455294 -0.732647 0.430658 0.595091 0.678528 0.779197 -0.624520 0.053172 0.455397 0.505808 -0.732647 0.365917 0.636949 0.678528 0.840360 -0.539415 0.053172 0.399876 0.550751 -0.732647 0.297816 0.671495 0.678528 0.891817 -0.449261 0.053172 0.340541 0.589288 -0.732647 0.225798 0.699010 0.678528 0.933991 -0.353318 0.053172 0.276904 0.621733 -0.732647 0.151294 0.718825 0.678528 0.965877 -0.253483 0.053172 0.210216 0.647331 -0.732647 0.075122 0.730723 0.678528 0.987125 -0.150856 0.053172 0.141214 0.665798 -0.732647 -0.001142 0.734573 0.678528 0.997452 -0.047565 0.053172 0.071333 0.676860 -0.732647 -0.078124 0.730408 0.678528 0.996944 0.057237 0.053172 0.000000 0.680608 -0.732647 -0.154246 0.718198 0.678528 0.985454 0.161409 0.053172 -0.071333 0.676860 -0.732647 -0.227970 0.698304 0.678528 0.963373 0.262839 0.053172 -0.141214 0.665798 -0.732647 -0.299902 0.670566 0.678528 0.930520 0.362360 0.053172 -0.210216 0.647331 -0.732647 -0.368530 0.635441 0.678528 0.887417 0.457890 0.053172 -0.276904 0.621733 -0.732647 -0.433100 0.593316 0.678528 0.834540 0.548376 0.053172 -0.340541 0.589288 -0.732647 -0.492353 0.545149 0.678528 0.773102 0.632049 0.053172 -0.399876 0.550751 -0.732647 -0.546777 0.490545 0.678528 0.702601 0.709594 0.053172 -0.455397 0.505808 -0.732647 -0.595178 0.430537 0.678528 0.624361 0.779324 0.053172 -0.505901 0.455294 -0.732647 -0.636658 0.366424 0.678528 0.540084 0.839930 0.053172 -0.550433 0.400315 -0.732647 -0.671555 0.297679 0.678528 0.449079 0.891909 0.053172 -0.589357 0.340421 -0.732647 -0.699056 0.225656 0.678528 0.353127 0.934063 0.053172 -0.621790 0.276777 -0.732647 -0.718856 0.151147 0.678528 0.253286 0.965929 0.053172 -0.647373 0.210085 -0.732647 -0.730663 0.075704 0.678528 0.151642 0.987004 0.053172 -0.665685 0.141744 -0.732647 -0.734573 -0.001291 0.678528 0.047362 0.997462 0.053172 -0.676875 0.071195 -0.732647 0.907571 -0.069961 0.414030 0.063616 0.997550 0.029114 -0.415052 -0.000085 0.909798 0.909905 0.025544 0.414030 -0.041285 0.998723 0.029114 -0.412757 -0.043584 0.909798 0.902337 0.119866 0.414030 -0.144742 0.989041 0.029114 -0.406002 -0.086198 0.909798 0.884804 0.213777 0.414030 -0.247604 0.968424 0.029114 -0.394732 -0.128276 0.909798 0.857526 0.305333 0.414030 -0.347738 0.937140 0.029114 -0.379114 -0.168940 0.909798 0.821195 0.392706 0.414030 -0.443146 0.895977 0.029114 -0.359528 -0.207384 0.909798 0.775514 0.476610 0.414030 -0.534610 0.844597 0.029114 -0.335812 -0.243923 0.909798 0.721291 0.555264 0.414030 -0.620185 0.783915 0.029114 -0.308398 -0.277775 0.909798 0.659123 0.627803 0.414030 -0.698930 0.714598 0.029114 -0.277587 -0.308567 0.909798 0.590388 0.692836 0.414030 -0.769338 0.638179 0.029114 -0.244053 -0.335717 0.909798 0.514522 0.750897 0.414030 -0.831986 0.554032 0.029114 -0.207524 -0.359447 0.909798 0.432989 0.800687 0.414030 -0.885471 0.463782 0.029114 -0.168708 -0.379217 0.909798 0.347528 0.841311 0.414030 -0.928833 0.369354 0.029114 -0.128429 -0.394682 0.909798 0.257439 0.873101 0.414030 -0.962428 0.269971 0.029114 -0.086356 -0.405969 0.909798 0.164514 0.895274 0.414030 -0.985423 0.167615 0.029114 -0.043332 -0.412784 0.909798 0.070516 0.907528 0.414030 -0.997511 0.064225 0.029114 -0.000169 -0.415052 0.909798 -0.024988 0.909920 0.414030 -0.998748 -0.040675 0.029114 0.043332 -0.412784 0.909798 -0.120217 0.902290 0.414030 -0.988985 -0.145127 0.029114 0.086356 -0.405969 0.909798 -0.214121 0.884721 0.414030 -0.968327 -0.247980 0.029114 0.128429 -0.394682 0.909798 -0.304809 0.857713 0.414030 -0.937352 -0.347165 0.029114 0.168708 -0.379217 0.909798 -0.393025 0.821043 0.414030 -0.895804 -0.443494 0.029114 0.207524 -0.359447 0.909798 -0.476912 0.775329 0.414030 -0.844389 -0.534938 0.029114 0.244053 -0.335717 0.909798 -0.554824 0.721630 0.414030 -0.784294 -0.619706 0.029114 0.277587 -0.308567 0.909798 -0.627400 0.659506 0.414030 -0.715024 -0.698493 0.029114 0.308398 -0.277775 0.909798 -0.693066 0.590118 0.414030 -0.637879 -0.769586 0.029114 0.335812 -0.243923 0.909798 -0.751097 0.514230 0.414030 -0.553708 -0.832202 0.029114 0.359528 -0.207384 0.909798 -0.800423 0.433478 0.414030 -0.464323 -0.885187 0.029114 0.379114 -0.168940 0.909798 -0.841446 0.347201 0.414030 -0.368992 -0.928976 0.029114 0.394732 -0.128276 0.909798 -0.873201 0.257099 0.414030 -0.269597 -0.962533 0.029114 0.406002 -0.086198 0.909798 -0.895173 0.165060 0.414030 -0.168217 -0.985320 0.029114 0.412757 -0.043584 0.909798 -0.907542 0.070331 0.414030 -0.064022 -0.997524 0.029114 0.415052 -0.000085 0.909798 -0.909915 -0.025173 0.414030 0.040878 -0.998740 0.029114 0.412775 0.043416 0.909798 -0.902266 -0.120400 0.414030 0.145328 -0.988955 0.029114 0.405951 0.086439 0.909798 -0.884891 -0.213416 0.414030 0.247209 -0.968525 0.029114 0.394784 0.128115 0.909798 -0.857650 -0.304984 0.414030 0.347356 -0.937281 0.029114 0.379183 0.168786 0.909798 -0.820962 -0.393192 0.414030 0.443677 -0.895714 0.029114 0.359405 0.207597 0.909798 -0.775232 -0.477070 0.414030 0.535110 -0.844280 0.029114 0.335668 0.244122 0.909798 -0.721517 -0.554971 0.414030 0.619866 -0.784167 0.029114 0.308511 0.277649 0.909798 -0.659379 -0.627534 0.414030 0.698639 -0.714882 0.029114 0.277712 0.308454 0.909798 -0.589977 -0.693186 0.414030 0.769716 -0.637723 0.029114 0.243855 0.335862 0.909798 -0.514828 -0.750688 0.414030 0.831760 -0.554371 0.029114 0.207670 0.359362 0.909798 -0.433315 -0.800511 0.414030 0.885282 -0.464143 0.029114 0.168863 0.379148 0.909798 -0.347029 -0.841517 0.414030 0.929051 -0.368803 0.029114 0.128195 0.394758 0.909798 -0.256921 -0.873253 0.414030 0.962588 -0.269401 0.029114 0.086116 0.406020 0.909798 -0.164878 -0.895206 0.414030 0.985354 -0.168016 0.029114 0.043500 0.412766 0.909798 -0.070146 -0.907557 0.414030 0.997537 -0.063819 0.029114 0.000000 0.415052 0.909798 0.025359 -0.909910 0.414030 0.998731 0.041082 0.029114 -0.043500 0.412766 0.909798 0.119682 -0.902361 0.414030 0.989070 0.144541 0.029114 -0.086116 0.406020 0.909798 0.213597 -0.884848 0.414030 0.968474 0.247406 0.029114 -0.128195 0.394758 0.909798 0.305159 -0.857588 0.414030 0.937211 0.347547 0.029114 -0.168863 0.379148 0.909798 0.393359 -0.820882 0.414030 0.895624 0.443859 0.029114 -0.207670 0.359362 0.909798 0.476452 -0.775611 0.414030 0.844706 0.534438 0.029114 -0.243855 0.335862 0.909798 0.555118 -0.721404 0.414030 0.784041 0.620026 0.029114 -0.277712 0.308454 0.909798 0.627669 -0.659251 0.414030 0.714740 0.698784 0.029114 -0.308511 0.277649 0.909798 0.692716 -0.590529 0.414030 0.638335 0.769208 0.029114 -0.335668 0.244122 0.909798 0.750792 -0.514675 0.414030 0.554201 0.831873 0.029114 -0.359405 0.207597 0.909798 0.800599 -0.433152 0.414030 0.463963 0.885376 0.029114 -0.379183 0.168786 0.909798 0.841587 -0.346858 0.414030 0.368614 0.929127 0.029114 -0.394784 0.128115 0.909798 0.873048 -0.257616 0.414030 0.270167 0.962373 0.029114 -0.405951 0.086439 0.909798 0.895240 -0.164696 0.414030 0.167816 0.985388 0.029114 -0.412775 0.043416 0.909798 -0.158235 0.730975 -0.663805 -0.169215 -0.682405 -0.711119 -0.972794 -0.000198 0.231672 -0.233975 0.710365 -0.663805 -0.096762 -0.696381 -0.711119 -0.967416 -0.102153 0.231672 -0.306456 0.682237 -0.663805 -0.023946 -0.702664 -0.711119 -0.951584 -0.202031 0.231672 -0.376271 0.646361 -0.663805 0.049830 -0.701304 -0.711119 -0.925169 -0.300651 0.231672 -0.441942 0.603365 -0.663805 0.123057 -0.692219 -0.711119 -0.888563 -0.395959 0.231672 -0.502191 0.554226 -0.663805 0.194253 -0.675704 -0.711119 -0.842656 -0.486064 0.231672 -0.557512 0.498540 -0.663805 0.264002 -0.651623 -0.711119 -0.787073 -0.571703 0.231672 -0.606692 0.437363 -0.663805 0.330843 -0.620365 -0.711119 -0.722819 -0.651046 0.231672 -0.649190 0.371369 -0.663805 0.394039 -0.582274 -0.711119 -0.650604 -0.723217 0.231672 -0.684235 0.301968 -0.663805 0.452358 -0.538221 -0.711119 -0.572010 -0.786850 0.231672 -0.712115 0.228592 -0.663805 0.506276 -0.487847 -0.711119 -0.486392 -0.842467 0.231672 -0.732151 0.152699 -0.663805 0.554617 -0.432099 -0.711119 -0.395416 -0.888805 0.231672 -0.744047 0.075867 -0.663805 0.596478 -0.372188 -0.711119 -0.301011 -0.925052 0.231672 -0.747901 -0.002532 -0.663805 0.632201 -0.307623 -0.711119 -0.202401 -0.951505 0.231672 -0.743517 -0.080904 -0.663805 0.660960 -0.239669 -0.711119 -0.101562 -0.967478 0.231672 -0.731071 -0.157788 -0.663805 0.682301 -0.169632 -0.711119 -0.000396 -0.972794 0.231672 -0.710508 -0.233541 -0.663805 0.696322 -0.097188 -0.711119 0.101562 -0.967478 0.231672 -0.682118 -0.306721 -0.663805 0.702673 -0.023673 -0.711119 0.202401 -0.951505 0.231672 -0.646214 -0.376523 -0.663805 0.701284 0.050103 -0.711119 0.301011 -0.925052 0.231672 -0.603635 -0.441573 -0.663805 0.692294 0.122634 -0.711119 0.395416 -0.888805 0.231672 -0.554031 -0.502407 -0.663805 0.675628 0.194516 -0.711119 0.486392 -0.842467 0.231672 -0.498323 -0.557706 -0.663805 0.651520 0.264255 -0.711119 0.572010 -0.786850 0.231672 -0.437734 -0.606425 -0.663805 0.620567 0.330464 -0.711119 0.650604 -0.723217 0.231672 -0.371765 -0.648963 -0.663805 0.582514 0.393684 -0.711119 0.722819 -0.651046 0.231672 -0.301702 -0.684352 -0.663805 0.538045 0.452567 -0.711119 0.787073 -0.571703 0.231672 -0.228315 -0.712204 -0.663805 0.487650 0.506465 -0.711119 0.842656 -0.486064 0.231672 -0.153146 -0.732058 -0.663805 0.432437 0.554353 -0.711119 0.888563 -0.395959 0.231672 -0.075578 -0.744077 -0.663805 0.371956 0.596623 -0.711119 0.925169 -0.300651 0.231672 0.002823 -0.747900 -0.663805 0.307377 0.632321 -0.711119 0.951584 -0.202031 0.231672 0.080449 -0.743566 -0.663805 0.240073 0.660814 -0.711119 0.967416 -0.102153 0.231672 0.157937 -0.731039 -0.663805 0.169493 0.682336 -0.711119 0.972794 -0.000198 0.231672 0.233686 -0.710460 -0.663805 0.097046 0.696342 -0.711119 0.967457 0.101759 0.231672 0.306860 -0.682055 -0.663805 0.023530 0.702678 -0.711119 0.951464 0.202595 0.231672 0.376008 -0.646514 -0.663805 -0.049544 0.701324 -0.711119 0.925291 0.300274 0.231672 0.441696 -0.603545 -0.663805 -0.122775 0.692269 -0.711119 0.888724 0.395597 0.231672 0.502519 -0.553928 -0.663805 -0.194654 0.675588 -0.711119 0.842368 0.486563 0.231672 0.557808 -0.498210 -0.663805 -0.264388 0.651467 -0.711119 0.786734 0.572170 0.231672 0.606514 -0.437610 -0.663805 -0.330590 0.620500 -0.711119 0.723084 0.650751 0.231672 0.649038 -0.371633 -0.663805 -0.393802 0.582434 -0.711119 0.650898 0.722952 0.231672 0.684414 -0.301563 -0.663805 -0.452677 0.537953 -0.711119 0.571543 0.787189 0.231672 0.712022 -0.228882 -0.663805 -0.506077 0.488053 -0.711119 0.486735 0.842269 0.231672 0.732089 -0.152997 -0.663805 -0.554441 0.432325 -0.711119 0.395778 0.888644 0.231672 0.744092 -0.075426 -0.663805 -0.596699 0.371834 -0.711119 0.300463 0.925230 0.231672 0.747899 0.002975 -0.663805 -0.632383 0.307248 -0.711119 0.201837 0.951625 0.231672 0.743549 0.080601 -0.663805 -0.660863 0.239939 -0.711119 0.101956 0.967436 0.231672 0.731007 0.158086 -0.663805 -0.682370 0.169354 -0.711119 0.000000 0.972794 0.231672 0.710412 0.233830 -0.663805 -0.696361 0.096904 -0.711119 -0.101956 0.967436 0.231672 0.682299 0.306317 -0.663805 -0.702659 0.024089 -0.711119 -0.201837 0.951625 0.231672 0.646437 0.376140 -0.663805 -0.701314 -0.049687 -0.711119 -0.300463 0.925230 0.231672 0.603455 0.441819 -0.663805 -0.692244 -0.122916 -0.711119 -0.395778 0.888644 0.231672 0.553826 0.502632 -0.663805 -0.675549 -0.194791 -0.711119 -0.486735 0.842269 0.231672 0.498654 0.557411 -0.663805 -0.651677 -0.263869 -0.711119 -0.571543 0.787189 0.231672 0.437487 0.606603 -0.663805 -0.620432 -0.330716 -0.711119 -0.650898 0.722952 0.231672 0.371501 0.649114 -0.663805 -0.582354 -0.393921 -0.711119 -0.723084 0.650751 0.231672 0.302108 0.684173 -0.663805 -0.538314 -0.452248 -0.711119 -0.786734 0.572170 0.231672 0.228737 0.712068 -0.663805 -0.487950 -0.506176 -0.711119 -0.842368 0.486563 0.231672 0.152848 0.732120 -0.663805 -0.432212 -0.554529 -0.711119 -0.888724 0.395597 0.231672 0.075275 0.744108 -0.663805 -0.371713 -0.596774 -0.711119 -0.925291 0.300274 0.231672 -0.002380 0.747901 -0.663805 -0.307752 -0.632138 -0.711119 -0.951464 0.202595 0.231672 -0.080752 0.743533 -0.663805 -0.239804 -0.660911 -0.711119 -0.967457 0.101759 0.231672 -0.192124 -0.068190 -0.978999 0.013328 -0.997672 0.066875 -0.981280 -0.000200 0.192586 -0.183919 -0.087950 -0.978999 0.117818 -0.990781 0.066875 -0.975855 -0.103044 0.192586 -0.173795 -0.106568 -0.978999 0.220037 -0.973197 0.066875 -0.959885 -0.203793 0.192586 -0.161669 -0.124196 -0.978999 0.320823 -0.944775 0.066875 -0.933239 -0.303274 0.192586 -0.147762 -0.140456 -0.978999 0.418075 -0.905947 0.066875 -0.896314 -0.399414 0.192586 -0.132382 -0.155037 -0.978999 0.509865 -0.857651 0.066875 -0.850007 -0.490304 0.192586 -0.115404 -0.168058 -0.978999 0.596945 -0.799490 0.066875 -0.793939 -0.576691 0.192586 -0.097155 -0.179227 -0.978999 0.677450 -0.732523 0.066875 -0.729125 -0.656725 0.192586 -0.077835 -0.188423 -0.978999 0.750492 -0.657487 0.066875 -0.656280 -0.729526 0.192586 -0.057854 -0.195485 -0.978999 0.814693 -0.576024 0.066875 -0.577000 -0.793714 0.192586 -0.037047 -0.200472 -0.978999 0.870577 -0.487466 0.066875 -0.490635 -0.849817 0.192586 -0.015832 -0.203251 -0.978999 0.916873 -0.393538 0.066875 -0.398866 -0.896558 0.192586 0.005353 -0.203796 -0.978999 0.952773 -0.296229 0.066875 -0.303637 -0.933121 0.192586 0.026683 -0.202113 -0.978999 0.978572 -0.194740 0.066875 -0.204167 -0.959806 0.192586 0.047719 -0.198203 -0.978999 0.993593 -0.091106 0.066875 -0.102448 -0.975918 0.192586 0.068073 -0.192166 -0.978999 0.997680 0.012719 0.066875 -0.000400 -0.981280 0.192586 0.087838 -0.183973 -0.978999 0.990853 0.117213 0.066875 0.102448 -0.975918 0.192586 0.106636 -0.173753 -0.978999 0.973111 0.220415 0.066875 0.204167 -0.959806 0.192586 0.124259 -0.161620 -0.978999 0.944650 0.321191 0.066875 0.303637 -0.933121 0.192586 0.140366 -0.147847 -0.978999 0.906203 0.417522 0.066875 0.398866 -0.896558 0.192586 0.155088 -0.132322 -0.978999 0.857453 0.510199 0.066875 0.490635 -0.849817 0.192586 0.168103 -0.115339 -0.978999 0.799258 0.597256 0.066875 0.577000 -0.793714 0.192586 0.179168 -0.097264 -0.978999 0.732937 0.677002 0.066875 0.656280 -0.729526 0.192586 0.188375 -0.077950 -0.978999 0.657945 0.750091 0.066875 0.729125 -0.656725 0.192586 0.195507 -0.057778 -0.978999 0.575707 0.814917 0.066875 0.793939 -0.576691 0.192586 0.200486 -0.036969 -0.978999 0.487127 0.870767 0.066875 0.850007 -0.490304 0.192586 0.203241 -0.015957 -0.978999 0.394098 0.916632 0.066875 0.896314 -0.399414 0.192586 0.203794 0.005432 -0.978999 0.295858 0.952888 0.066875 0.933239 -0.303274 0.192586 0.202102 0.026762 -0.978999 0.194359 0.978648 0.066875 0.959885 -0.203793 0.192586 0.198232 0.047598 -0.978999 0.091713 0.993537 0.066875 0.975855 -0.103044 0.192586 0.192152 0.068112 -0.978999 -0.012922 0.997678 0.066875 0.981280 -0.000200 0.192586 0.183955 0.087875 -0.978999 -0.117414 0.990829 0.066875 0.975897 0.102646 0.192586 0.173732 0.106671 -0.978999 -0.220614 0.973066 0.066875 0.959764 0.204362 0.192586 0.161719 0.124130 -0.978999 -0.320438 0.944906 0.066875 0.933363 0.302894 0.192586 0.147819 0.140396 -0.978999 -0.417706 0.906118 0.066875 0.896477 0.399049 0.192586 0.132290 0.155115 -0.978999 -0.510373 0.857349 0.066875 0.849717 0.490808 0.192586 0.115304 0.168126 -0.978999 -0.597419 0.799136 0.066875 0.793597 0.577161 0.192586 0.097228 0.179188 -0.978999 -0.677151 0.732799 0.066875 0.729392 0.656428 0.192586 0.077912 0.188391 -0.978999 -0.750224 0.657792 0.066875 0.656577 0.729258 0.192586 0.057738 0.195519 -0.978999 -0.815034 0.575541 0.066875 0.576529 0.794056 0.192586 0.037129 0.200457 -0.978999 -0.870379 0.487820 0.066875 0.490981 0.849617 0.192586 0.015915 0.203244 -0.978999 -0.916712 0.393912 0.066875 0.399231 0.896396 0.192586 -0.005474 0.203793 -0.978999 -0.952948 0.295664 0.066875 0.303084 0.933301 0.192586 -0.026803 0.202097 -0.978999 -0.978688 0.194160 0.066875 0.203598 0.959926 0.192586 -0.047638 0.198222 -0.978999 -0.993556 0.091511 0.066875 0.102845 0.975876 0.192586 -0.068151 0.192138 -0.978999 -0.997675 -0.013125 0.066875 0.000000 0.981280 0.192586 -0.087913 0.183937 -0.978999 -0.990805 -0.117616 0.066875 -0.102845 0.975876 0.192586 -0.106533 0.173817 -0.978999 -0.973241 -0.219839 0.066875 -0.203598 0.959926 0.192586 -0.124163 0.161694 -0.978999 -0.944841 -0.320631 0.066875 -0.303084 0.933301 0.192586 -0.140426 0.147790 -0.978999 -0.906033 -0.417891 0.066875 -0.399231 0.896396 0.192586 -0.155142 0.132259 -0.978999 -0.857245 -0.510548 0.066875 -0.490981 0.849617 0.192586 -0.168034 0.115438 -0.978999 -0.799612 -0.596782 0.066875 -0.576529 0.794056 0.192586 -0.179208 0.097191 -0.978999 -0.732661 -0.677301 0.066875 -0.656577 0.729258 0.192586 -0.188407 0.077874 -0.978999 -0.657640 -0.750358 0.066875 -0.729392 0.656428 0.192586 -0.195473 0.057894 -0.978999 -0.576190 -0.814575 0.066875 -0.793597 0.577161 0.192586 -0.200464 0.037088 -0.978999 -0.487643 -0.870478 0.066875 -0.849717 0.490808 0.192586 -0.203247 0.015874 -0.978999 -0.393725 -0.916792 0.066875 -0.896477 0.399049 0.192586 -0.203792 -0.005515 -0.978999 -0.295470 -0.953008 0.066875 -0.933363 0.302894 0.192586 -0.202118 -0.026642 -0.978999 -0.194939 -0.978533 0.066875 -0.959764 0.204362 0.192586 -0.198213 -0.047678 -0.978999 -0.091309 -0.993575 0.066875 -0.975897 0.102646 0.192586 0.301121 0.173969 0.937582 -0.053384 0.984751 -0.165576 -0.952090 -0.000194 0.305817 0.281230 0.204570 0.937582 -0.156299 0.973733 -0.165576 -0.946826 -0.099979 0.305817 0.258473 0.232660 0.937582 -0.256541 0.952246 -0.165576 -0.931332 -0.197731 0.305817 0.232665 0.258469 0.937582 -0.354930 0.920114 -0.165576 -0.905479 -0.294252 0.305817 0.204295 0.281430 0.937582 -0.449410 0.877847 -0.165576 -0.869652 -0.387532 0.305817 0.173975 0.301118 0.937582 -0.538113 0.826450 -0.165576 -0.824722 -0.475719 0.305817 0.141457 0.317693 0.937582 -0.621767 0.765500 -0.165576 -0.770322 -0.559536 0.305817 0.107382 0.330770 0.937582 -0.698573 0.696118 -0.165576 -0.707436 -0.637190 0.305817 0.072123 0.340202 0.937582 -0.767684 0.619069 -0.165576 -0.636757 -0.707825 0.305817 0.036416 0.345851 0.937582 -0.827803 0.536029 -0.165576 -0.559836 -0.770104 0.305817 -0.000032 0.347763 0.937582 -0.879424 0.446317 -0.165576 -0.476040 -0.824537 0.305817 -0.036480 0.345845 0.937582 -0.921357 0.351689 -0.165576 -0.387001 -0.869889 0.305817 -0.072186 0.340189 0.937582 -0.952889 0.254140 -0.165576 -0.294605 -0.905364 0.305817 -0.107443 0.330750 0.937582 -0.974277 0.152871 -0.165576 -0.198093 -0.931255 0.305817 -0.141516 0.317667 0.937582 -0.984933 0.049918 -0.165576 -0.099400 -0.946887 0.305817 -0.173785 0.301228 0.937582 -0.984784 -0.052783 -0.165576 -0.000388 -0.952090 0.305817 -0.204399 0.281355 0.937582 -0.973828 -0.155704 -0.165576 0.099400 -0.946887 0.305817 -0.232761 0.258383 0.937582 -0.952146 -0.256911 -0.165576 0.198093 -0.931255 0.305817 -0.258559 0.232565 0.937582 -0.919976 -0.355288 -0.165576 0.294605 -0.905364 0.305817 -0.281305 0.204467 0.937582 -0.878122 -0.448873 -0.165576 0.387001 -0.869889 0.305817 -0.301186 0.173858 0.937582 -0.826240 -0.538435 -0.165576 0.476040 -0.824537 0.305817 -0.317748 0.141334 0.937582 -0.765258 -0.622065 -0.165576 0.559836 -0.770104 0.305817 -0.330704 0.107584 0.937582 -0.696545 -0.698147 -0.165576 0.636757 -0.707825 0.305817 -0.340158 0.072331 0.937582 -0.619538 -0.767305 -0.165576 0.707436 -0.637190 0.305817 -0.345865 0.036282 0.937582 -0.535707 -0.828011 -0.165576 0.770322 -0.559536 0.305817 -0.347763 -0.000167 0.937582 -0.445975 -0.879597 -0.165576 0.824722 -0.475719 0.305817 -0.345867 -0.036269 0.937582 -0.352252 -0.921142 -0.165576 0.869652 -0.387532 0.305817 -0.340161 -0.072318 0.937582 -0.253770 -0.952988 -0.165576 0.905479 -0.294252 0.305817 -0.330708 -0.107571 0.937582 -0.152492 -0.974336 -0.165576 0.931332 -0.197731 0.305817 -0.317754 -0.141322 0.937582 -0.050520 -0.984902 -0.165576 0.946826 -0.099979 0.305817 -0.301192 -0.173846 0.937582 0.052983 -0.984773 -0.165576 0.952090 -0.000194 0.305817 -0.281313 -0.204456 0.937582 0.155903 -0.973796 -0.165576 0.946867 0.099593 0.305817 -0.258335 -0.232813 0.937582 0.257105 -0.952093 -0.165576 0.931214 0.198283 0.305817 -0.232771 -0.258374 0.937582 0.354555 -0.920258 -0.165576 0.905598 0.293883 0.305817 -0.204409 -0.281347 0.937582 0.449052 -0.878030 -0.165576 0.869810 0.387178 0.305817 -0.173796 -0.301221 0.937582 0.538603 -0.826131 -0.165576 0.824440 0.476208 0.305817 -0.141269 -0.317777 0.937582 0.622221 -0.765131 -0.165576 0.769990 0.559993 0.305817 -0.107516 -0.330726 0.937582 0.698289 -0.696403 -0.165576 0.707695 0.636902 0.305817 -0.072262 -0.340173 0.937582 0.767431 -0.619382 -0.165576 0.637046 0.707565 0.305817 -0.036211 -0.345873 0.937582 0.828120 -0.535538 -0.165576 0.559379 0.770435 0.305817 -0.000110 -0.347763 0.937582 0.879242 -0.446675 -0.165576 0.476376 0.824343 0.305817 0.036339 -0.345859 0.937582 0.921214 -0.352064 -0.165576 0.387355 0.869731 0.305817 0.072387 -0.340146 0.937582 0.953039 -0.253576 -0.165576 0.294068 0.905539 0.305817 0.107639 -0.330686 0.937582 0.974367 -0.152294 -0.165576 0.197541 0.931372 0.305817 0.141386 -0.317725 0.937582 0.984913 -0.050319 -0.165576 0.099786 0.946847 0.305817 0.173908 -0.301157 0.937582 0.984762 0.053184 -0.165576 0.000000 0.952090 0.305817 0.204513 -0.281272 0.937582 0.973764 0.156101 -0.165576 -0.099786 0.946847 0.305817 0.232608 -0.258521 0.937582 0.952298 0.256347 -0.165576 -0.197541 0.931372 0.305817 0.258421 -0.232718 0.937582 0.920186 0.354743 -0.165576 -0.294068 0.905539 0.305817 0.281389 -0.204352 0.937582 0.877939 0.449231 -0.165576 -0.387355 0.869731 0.305817 0.301257 -0.173735 0.937582 0.826021 0.538771 -0.165576 -0.476376 0.824343 0.305817 0.317665 -0.141522 0.937582 0.765626 0.621611 -0.165576 -0.559379 0.770435 0.305817 0.330748 -0.107449 0.937582 0.696261 0.698431 -0.165576 -0.637046 0.707565 0.305817 0.340188 -0.072192 0.937582 0.619225 0.767558 -0.165576 -0.707695 0.636902 0.305817 0.345844 -0.036487 0.937582 0.536197 0.827694 -0.165576 -0.769990 0.559993 0.305817 0.347763 -0.000039 0.937582 0.446496 0.879333 -0.165576 -0.824440 0.476208 0.305817 0.345852 0.036409 0.937582 0.351877 0.921286 -0.165576 -0.869810 0.387178 0.305817 0.340131 0.072457 0.937582 0.253381 0.953091 -0.165576 -0.905598 0.293883 0.305817 0.330772 0.107375 0.937582 0.153070 0.974246 -0.165576 -0.931214 0.198283 0.305817 0.317696 0.141451 0.937582 0.050119 0.984923 -0.165576 -0.946867 0.099593 0.305817 0.058190 0.177857 -0.982334 0.010723 -0.984056 -0.177534 -0.998248 -0.000203 -0.059169 0.039228 0.182976 -0.982334 0.113800 -0.977513 -0.177534 -0.992729 -0.104826 -0.059169 0.020021 0.186060 -0.982334 0.214664 -0.960417 -0.177534 -0.976483 -0.207317 -0.059169 0.000411 0.187134 -0.982334 0.314140 -0.932630 -0.177534 -0.949377 -0.308518 -0.059169 -0.019205 0.186146 -0.982334 0.410156 -0.894569 -0.177534 -0.911813 -0.406320 -0.059169 -0.038425 0.183147 -0.982334 0.500808 -0.847156 -0.177534 -0.864705 -0.498782 -0.059169 -0.057409 0.178111 -0.982334 0.586837 -0.790002 -0.177534 -0.807667 -0.586663 -0.059169 -0.075760 0.171113 -0.982334 0.666403 -0.724147 -0.177534 -0.741732 -0.668081 -0.059169 -0.093276 0.162230 -0.982334 0.738629 -0.650315 -0.177534 -0.667628 -0.742140 -0.059169 -0.109614 0.151671 -0.982334 0.802149 -0.570122 -0.177534 -0.586977 -0.807439 -0.059169 -0.124906 0.139347 -0.982334 0.857484 -0.482911 -0.177534 -0.499119 -0.864511 -0.059169 -0.138823 0.125488 -0.982334 0.903374 -0.390381 -0.177534 -0.405763 -0.912061 -0.059169 -0.151100 0.110399 -0.982334 0.939019 -0.294490 -0.177534 -0.308887 -0.949256 -0.059169 -0.161839 0.093954 -0.982334 0.964713 -0.194452 -0.177534 -0.207697 -0.976402 -0.059169 -0.170794 0.076475 -0.982334 0.979779 -0.092272 -0.177534 -0.104219 -0.992793 -0.059169 -0.177822 0.058298 -0.982334 0.984063 0.010122 -0.177534 -0.000407 -0.998248 -0.059169 -0.182952 0.039340 -0.982334 0.977582 0.113203 -0.177534 0.104219 -0.992793 -0.059169 -0.186068 0.019949 -0.982334 0.960334 0.215037 -0.177534 0.207697 -0.976402 -0.059169 -0.187134 0.000338 -0.982334 0.932507 0.314503 -0.177534 0.308887 -0.949256 -0.059169 -0.186158 -0.019091 -0.982334 0.894819 0.409610 -0.177534 0.405763 -0.912061 -0.059169 -0.183132 -0.038496 -0.982334 0.846961 0.501137 -0.177534 0.499119 -0.864511 -0.059169 -0.178088 -0.057478 -0.982334 0.789774 0.587145 -0.177534 0.586977 -0.807439 -0.059169 -0.171159 -0.075655 -0.982334 0.724554 0.665961 -0.177534 0.667628 -0.742140 -0.059169 -0.162287 -0.093177 -0.982334 0.650766 0.738232 -0.177534 0.741732 -0.668081 -0.059169 -0.151628 -0.109673 -0.982334 0.569810 0.802371 -0.177534 0.807667 -0.586663 -0.059169 -0.139298 -0.124961 -0.982334 0.482577 0.857672 -0.177534 0.864705 -0.498782 -0.059169 -0.125573 -0.138746 -0.982334 0.390933 0.903135 -0.177534 0.911813 -0.406320 -0.059169 -0.110340 -0.151143 -0.982334 0.294125 0.939134 -0.177534 0.949377 -0.308518 -0.059169 -0.093891 -0.161875 -0.982334 0.194077 0.964788 -0.177534 0.976483 -0.207317 -0.059169 -0.076579 -0.170748 -0.982334 0.092871 0.979723 -0.177534 0.992729 -0.104826 -0.059169 -0.058262 -0.177833 -0.982334 -0.010323 0.984061 -0.177534 0.998248 -0.000203 -0.059169 -0.039303 -0.182960 -0.982334 -0.113402 0.977559 -0.177534 0.992771 0.104421 -0.059169 -0.019911 -0.186072 -0.982334 -0.215233 0.960290 -0.177534 0.976360 0.207896 -0.059169 -0.000487 -0.187134 -0.982334 -0.313760 0.932757 -0.177534 0.949502 0.308131 -0.059169 0.019129 -0.186154 -0.982334 -0.409792 0.894736 -0.177534 0.911978 0.405949 -0.059169 0.038534 -0.183124 -0.982334 -0.501310 0.846859 -0.177534 0.864410 0.499295 -0.059169 0.057514 -0.178077 -0.982334 -0.587306 0.789654 -0.177534 0.807319 0.587141 -0.059169 0.075690 -0.171144 -0.982334 -0.666108 0.724418 -0.177534 0.742004 0.667779 -0.059169 0.093210 -0.162268 -0.982334 -0.738364 0.650615 -0.177534 0.667930 0.741868 -0.059169 0.109704 -0.151606 -0.982334 -0.802487 0.569646 -0.177534 0.586498 0.807786 -0.059169 0.124850 -0.139398 -0.982334 -0.857287 0.483260 -0.177534 0.499471 0.864308 -0.059169 0.138772 -0.125545 -0.982334 -0.903215 0.390749 -0.177534 0.406134 0.911896 -0.059169 0.151166 -0.110309 -0.982334 -0.939194 0.293933 -0.177534 0.308324 0.949439 -0.059169 0.161894 -0.093858 -0.982334 -0.964828 0.193880 -0.177534 0.207118 0.976525 -0.059169 0.170763 -0.076545 -0.982334 -0.979742 0.092671 -0.177534 0.104624 0.992750 -0.059169 0.177845 -0.058226 -0.982334 -0.984058 -0.010523 -0.177534 0.000000 0.998248 -0.059169 0.182968 -0.039266 -0.982334 -0.977536 -0.113601 -0.177534 -0.104624 0.992750 -0.059169 0.186056 -0.020059 -0.982334 -0.960461 -0.214468 -0.177534 -0.207118 0.976525 -0.059169 0.187134 -0.000449 -0.982334 -0.932693 -0.313950 -0.177534 -0.308324 0.949439 -0.059169 0.186150 0.019167 -0.982334 -0.894652 -0.409974 -0.177534 -0.406134 0.911896 -0.059169 0.183116 0.038571 -0.982334 -0.846757 -0.501482 -0.177534 -0.499471 0.864308 -0.059169 0.178122 0.057372 -0.982334 -0.790122 -0.586677 -0.177534 -0.586498 0.807786 -0.059169 0.171128 0.075725 -0.982334 -0.724282 -0.666256 -0.177534 -0.667930 0.741868 -0.059169 0.162249 0.093243 -0.982334 -0.650465 -0.738497 -0.177534 -0.742004 0.667779 -0.059169 0.151693 0.109583 -0.982334 -0.570285 -0.802033 -0.177534 -0.807319 0.587141 -0.059169 0.139372 0.124878 -0.982334 -0.483085 -0.857386 -0.177534 -0.864410 0.499295 -0.059169 0.125517 0.138798 -0.982334 -0.390565 -0.903295 -0.177534 -0.911978 0.405949 -0.059169 0.110278 0.151188 -0.982334 -0.293742 -0.939254 -0.177534 -0.949502 0.308131 -0.059169 0.093987 0.161820 -0.982334 -0.194649 -0.964673 -0.177534 -0.976360 0.207896 -0.059169 0.076510 0.170779 -0.982334 -0.092472 -0.979761 -0.177534 -0.992771 0.104421 -0.059169 -0.536318 -0.020311 0.843771 -0.011041 0.999794 0.017050 -0.843943 -0.000172 -0.536432 -0.531236 -0.076410 0.843771 -0.115766 0.993130 0.017050 -0.839278 -0.088622 -0.536432 -0.520433 -0.131146 0.843771 -0.218239 0.975746 0.017050 -0.825543 -0.175271 -0.536432 -0.503822 -0.184969 0.843771 -0.319303 0.947499 0.017050 -0.802626 -0.260829 -0.536432 -0.481661 -0.236754 0.843771 -0.416849 0.908816 0.017050 -0.770869 -0.343513 -0.536432 -0.454481 -0.285477 0.843771 -0.508943 0.860631 0.017050 -0.731043 -0.421683 -0.536432 -0.422058 -0.331538 0.843771 -0.596340 0.802551 0.017050 -0.682822 -0.495979 -0.536432 -0.384986 -0.373947 0.843771 -0.677169 0.735630 0.017050 -0.627079 -0.564812 -0.536432 -0.343673 -0.412237 0.843771 -0.750539 0.660606 0.017050 -0.564429 -0.627424 -0.536432 -0.299021 -0.445687 0.843771 -0.815063 0.579121 0.017050 -0.496245 -0.682629 -0.536432 -0.250663 -0.474572 0.843771 -0.871270 0.490507 0.017050 -0.421967 -0.730879 -0.536432 -0.199544 -0.498229 0.843771 -0.917880 0.396491 0.017050 -0.343042 -0.771079 -0.536432 -0.146743 -0.516252 0.843771 -0.954082 0.299061 0.017050 -0.261141 -0.802525 -0.536432 -0.091828 -0.528789 0.843771 -0.980171 0.197419 0.017050 -0.175592 -0.825474 -0.536432 -0.035901 -0.535501 0.843771 -0.995464 0.093603 0.017050 -0.088109 -0.839331 -0.536432 0.019984 -0.536331 0.843771 -0.999800 -0.010430 0.017050 -0.000344 -0.843943 -0.536432 0.076085 -0.531283 0.843771 -0.993201 -0.115159 0.017050 0.088109 -0.839331 -0.536432 0.131348 -0.520382 0.843771 -0.975661 -0.218619 0.017050 0.175592 -0.825474 -0.536432 0.185165 -0.503750 0.843771 -0.947375 -0.319671 0.017050 0.261141 -0.802525 -0.536432 0.236460 -0.481806 0.843771 -0.909070 -0.416294 0.017050 0.343042 -0.771079 -0.536432 0.285654 -0.454370 0.843771 -0.860433 -0.509278 0.017050 0.421967 -0.730879 -0.536432 0.331702 -0.421929 0.843771 -0.802318 -0.596653 0.017050 0.496245 -0.682629 -0.536432 0.373711 -0.385214 0.843771 -0.736043 -0.676720 0.017050 0.564429 -0.627424 -0.536432 0.412026 -0.343925 0.843771 -0.661065 -0.750135 0.017050 0.627079 -0.564812 -0.536432 0.445803 -0.298847 0.843771 -0.578804 -0.815288 0.017050 0.682822 -0.495979 -0.536432 0.474669 -0.250478 0.843771 -0.490169 -0.871461 0.017050 0.731043 -0.421683 -0.536432 0.498107 -0.199848 0.843771 -0.397051 -0.917638 0.017050 0.770869 -0.343513 -0.536432 0.516309 -0.146542 0.843771 -0.298690 -0.954198 0.017050 0.802626 -0.260829 -0.536432 0.528825 -0.091622 0.843771 -0.197038 -0.980248 0.017050 0.825543 -0.175271 -0.536432 0.535479 -0.036229 0.843771 -0.094211 -0.995406 0.017050 0.839278 -0.088622 -0.536432 0.536327 0.020093 0.843771 0.010634 -0.999798 0.017050 0.843943 -0.000172 -0.536432 0.531267 0.076193 0.843771 0.115361 -0.993177 0.017050 0.839314 0.088280 -0.536432 0.520356 0.131454 0.843771 0.218818 -0.975617 0.017050 0.825439 0.175760 -0.536432 0.503897 0.184763 0.843771 0.318917 -0.947629 0.017050 0.802733 0.260502 -0.536432 0.481758 0.236558 0.843771 0.416479 -0.908986 0.017050 0.771009 0.343199 -0.536432 0.454311 0.285747 0.843771 0.509453 -0.860330 0.017050 0.730793 0.422116 -0.536432 0.421861 0.331788 0.843771 0.596816 -0.802197 0.017050 0.682527 0.496384 -0.536432 0.385138 0.373790 0.843771 0.676870 -0.735905 0.017050 0.627309 0.564557 -0.536432 0.343841 0.412097 0.843771 0.750270 -0.660912 0.017050 0.564684 0.627194 -0.536432 0.298757 0.445864 0.843771 0.815406 -0.578638 0.017050 0.495840 0.682923 -0.536432 0.250856 0.474470 0.843771 0.871070 -0.490862 0.017050 0.422265 0.730707 -0.536432 0.199747 0.498148 0.843771 0.917719 -0.396864 0.017050 0.343356 0.770939 -0.536432 0.146437 0.516339 0.843771 0.954259 -0.298495 0.017050 0.260665 0.802679 -0.536432 0.091515 0.528843 0.843771 0.980288 -0.196838 0.017050 0.175103 0.825578 -0.536432 0.036119 0.535486 0.843771 0.995425 -0.094008 0.017050 0.088451 0.839296 -0.536432 -0.020202 0.536323 0.843771 0.999796 0.010837 0.017050 0.000000 0.843943 -0.536432 -0.076301 0.531252 0.843771 0.993154 0.115563 0.017050 -0.088451 0.839296 -0.536432 -0.131040 0.520460 0.843771 0.975791 0.218041 0.017050 -0.175103 0.825578 -0.536432 -0.184866 0.503860 0.843771 0.947564 0.319110 0.017050 -0.260665 0.802679 -0.536432 -0.236656 0.481709 0.843771 0.908901 0.416664 0.017050 -0.343356 0.770939 -0.536432 -0.285839 0.454253 0.843771 0.860226 0.509628 0.017050 -0.422265 0.730707 -0.536432 -0.331452 0.422125 0.843771 0.802672 0.596177 0.017050 -0.495840 0.682923 -0.536432 -0.373868 0.385062 0.843771 0.735768 0.677019 0.017050 -0.564684 0.627194 -0.536432 -0.412167 0.343757 0.843771 0.660759 0.750405 0.017050 -0.627309 0.564557 -0.536432 -0.445626 0.299112 0.843771 0.579287 0.814945 0.017050 -0.682527 0.496384 -0.536432 -0.474521 0.250759 0.843771 0.490685 0.871170 0.017050 -0.730793 0.422116 -0.536432 -0.498189 0.199645 0.843771 0.396678 0.917800 0.017050 -0.771009 0.343199 -0.536432 -0.516369 0.146332 0.843771 0.298301 0.954320 0.017050 -0.802733 0.260502 -0.536432 -0.528770 0.091936 0.843771 0.197619 0.980131 0.017050 -0.825439 0.175760 -0.536432 -0.535494 0.036010 0.843771 0.093806 0.995445 0.017050 -0.839314 0.088280 -0.536432 0.112382 -0.961421 -0.251079 -0.392161 -0.275083 0.877803 -0.913006 -0.000186 -0.407946 0.212527 -0.944347 -0.251079 -0.361171 -0.314669 0.877803 -0.907958 -0.095874 -0.407946 0.309414 -0.917182 -0.251079 -0.326553 -0.350463 0.877803 -0.893099 -0.189614 -0.407946 0.403837 -0.879702 -0.251079 -0.288023 -0.382758 0.877803 -0.868308 -0.282173 -0.407946 0.493812 -0.832532 -0.251079 -0.246321 -0.410837 0.877803 -0.833952 -0.371624 -0.407946 0.577571 -0.776769 -0.251079 -0.202340 -0.434188 0.877803 -0.790866 -0.456191 -0.407946 0.655801 -0.711958 -0.251079 -0.155720 -0.453004 0.877803 -0.738699 -0.536566 -0.407946 0.726808 -0.639304 -0.251079 -0.107384 -0.466829 0.877803 -0.678395 -0.611032 -0.407946 0.789809 -0.559609 -0.251079 -0.057866 -0.475513 0.877803 -0.610618 -0.678768 -0.407946 0.843636 -0.474593 -0.251079 -0.008189 -0.478951 0.877803 -0.536854 -0.738490 -0.407946 0.888730 -0.383560 -0.251079 0.042054 -0.477171 0.877803 -0.456498 -0.790689 -0.407946 0.924035 -0.288302 -0.251079 0.091833 -0.470136 0.877803 -0.371114 -0.834179 -0.407946 0.948972 -0.190818 -0.251079 0.140143 -0.458062 0.877803 -0.282511 -0.868198 -0.407946 0.963745 -0.090308 -0.251079 0.187379 -0.440852 0.877803 -0.189961 -0.893025 -0.407946 0.967902 0.011197 -0.251079 0.232552 -0.418785 0.877803 -0.095320 -0.908016 -0.407946 0.961489 0.111795 -0.251079 0.274843 -0.392329 0.877803 -0.000372 -0.913006 -0.407946 0.944477 0.211950 -0.251079 0.314448 -0.361363 0.877803 0.095320 -0.908016 -0.407946 0.917061 0.309771 -0.251079 0.350590 -0.326417 0.877803 0.189961 -0.893025 -0.407946 0.879544 0.404179 -0.251079 0.382870 -0.287874 0.877803 0.282511 -0.868198 -0.407946 0.832833 0.493303 -0.251079 0.410686 -0.246572 0.877803 0.371114 -0.834179 -0.407946 0.776545 0.577873 -0.251079 0.434267 -0.202171 0.877803 0.456498 -0.790689 -0.407946 0.711703 0.656078 -0.251079 0.453064 -0.155544 0.877803 0.536854 -0.738490 -0.407946 0.639748 0.726417 -0.251079 0.466764 -0.107669 0.877803 0.610618 -0.678768 -0.407946 0.560091 0.789467 -0.251079 0.475478 -0.058156 0.877803 0.678395 -0.611032 -0.407946 0.474264 0.843820 -0.251079 0.478954 -0.008003 0.877803 0.738699 -0.536566 -0.407946 0.383214 0.888879 -0.251079 0.477155 0.042239 0.877803 0.790866 -0.456191 -0.407946 0.288867 0.923859 -0.251079 0.470192 0.091546 0.877803 0.833952 -0.371624 -0.407946 0.190449 0.949046 -0.251079 0.458008 0.140321 0.877803 0.868308 -0.282173 -0.407946 0.089933 0.963780 -0.251079 0.440779 0.187551 0.877803 0.893099 -0.189614 -0.407946 -0.010605 0.967908 -0.251079 0.418927 0.232296 0.877803 0.907958 -0.095874 -0.407946 -0.111991 0.961466 -0.251079 0.392273 0.274923 0.877803 0.913006 -0.000186 -0.407946 -0.212142 0.944434 -0.251079 0.361299 0.314522 0.877803 0.907997 0.095505 -0.407946 -0.309958 0.916998 -0.251079 0.326345 0.350657 0.877803 0.892987 0.190143 -0.407946 -0.403479 0.879866 -0.251079 0.288179 0.382641 0.877803 0.868423 0.281819 -0.407946 -0.493473 0.832733 -0.251079 0.246489 0.410737 0.877803 0.834103 0.371284 -0.407946 -0.578031 0.776427 -0.251079 0.202083 0.434308 0.877803 0.790596 0.456659 -0.407946 -0.656223 0.711569 -0.251079 0.155451 0.453096 0.877803 0.738381 0.537004 -0.407946 -0.726547 0.639600 -0.251079 0.107574 0.466786 0.877803 0.678643 0.610756 -0.407946 -0.789581 0.559930 -0.251079 0.058059 0.475489 0.877803 0.610894 0.678519 -0.407946 -0.843917 0.474093 -0.251079 0.007905 0.478956 0.877803 0.536416 0.738808 -0.407946 -0.888574 0.383922 -0.251079 -0.041859 0.477189 0.877803 0.456820 0.790503 -0.407946 -0.923918 0.288679 -0.251079 -0.091642 0.470173 0.877803 0.371454 0.834027 -0.407946 -0.949085 0.190256 -0.251079 -0.140414 0.457979 0.877803 0.281996 0.868365 -0.407946 -0.963798 0.089737 -0.251079 -0.187641 0.440740 0.877803 0.189432 0.893138 -0.407946 -0.967906 -0.010802 -0.251079 -0.232381 0.418880 0.877803 0.095690 0.907978 -0.407946 -0.961443 -0.112186 -0.251079 -0.275003 0.392217 0.877803 0.000000 0.913006 -0.407946 -0.944390 -0.212335 -0.251079 -0.314596 0.361235 0.877803 -0.095690 0.907978 -0.407946 -0.917245 -0.309227 -0.251079 -0.350397 0.326624 0.877803 -0.189432 0.893138 -0.407946 -0.879784 -0.403658 -0.251079 -0.382699 0.288101 0.877803 -0.281996 0.868365 -0.407946 -0.832632 -0.493642 -0.251079 -0.410787 0.246405 0.877803 -0.371454 0.834027 -0.407946 -0.776309 -0.578190 -0.251079 -0.434349 0.201995 0.877803 -0.456820 0.790503 -0.407946 -0.712091 -0.655656 -0.251079 -0.452972 0.155812 0.877803 -0.536416 0.738808 -0.407946 -0.639452 -0.726677 -0.251079 -0.466808 0.107479 0.877803 -0.610894 0.678519 -0.407946 -0.559769 -0.789695 -0.251079 -0.475501 0.057963 0.877803 -0.678643 0.610756 -0.407946 -0.474765 -0.843539 -0.251079 -0.478949 0.008286 0.877803 -0.738381 0.537004 -0.407946 -0.383741 -0.888652 -0.251079 -0.477180 -0.041957 0.877803 -0.790596 0.456659 -0.407946 -0.288490 -0.923976 -0.251079 -0.470155 -0.091737 0.877803 -0.834103 0.371284 -0.407946 -0.190062 -0.949124 -0.251079 -0.457951 -0.140508 0.877803 -0.868423 0.281819 -0.407946 -0.090504 -0.963726 -0.251079 -0.440890 -0.187290 0.877803 -0.892987 0.190143 -0.407946 0.011000 -0.967904 -0.251079 -0.418832 -0.232466 0.877803 -0.907997 0.095505 -0.407946 0.626686 0.109704 -0.771511 0.069291 -0.993964 -0.085051 -0.776185 -0.000158 -0.630505 0.611737 0.174781 -0.771511 0.173084 -0.981228 -0.085051 -0.771894 -0.081507 -0.630505 0.590287 0.237342 -0.771511 0.274012 -0.957958 -0.085051 -0.759262 -0.161199 -0.630505 0.562161 0.297901 -0.771511 0.372904 -0.923964 -0.085051 -0.738185 -0.239887 -0.630505 0.527843 0.355179 -0.771511 0.467688 -0.879792 -0.085051 -0.708978 -0.315933 -0.630505 0.488119 0.408057 -0.771511 0.556495 -0.826486 -0.085051 -0.672349 -0.387827 -0.630505 0.442663 0.456968 -0.771511 0.640052 -0.763610 -0.085051 -0.627999 -0.456158 -0.630505 0.392332 0.500845 -0.771511 0.716558 -0.692322 -0.085051 -0.576732 -0.519465 -0.630505 0.337679 0.539206 -0.771511 0.785172 -0.613409 -0.085051 -0.519112 -0.577049 -0.630505 0.279878 0.571348 -0.771511 0.844610 -0.528584 -0.085051 -0.456402 -0.627822 -0.630505 0.218455 0.597535 -0.771511 0.895357 -0.437152 -0.085051 -0.388088 -0.672198 -0.630505 0.154626 0.617139 -0.771511 0.936243 -0.340904 -0.085051 -0.315500 -0.709171 -0.630505 0.089724 0.629857 -0.771511 0.966574 -0.241869 -0.085051 -0.240174 -0.738092 -0.630505 0.023216 0.635792 -0.771511 0.986601 -0.139233 -0.085051 -0.161494 -0.759199 -0.630505 -0.043547 0.634723 -0.771511 0.995759 -0.035063 -0.085051 -0.081035 -0.771943 -0.630505 -0.109321 0.626753 -0.771511 0.994007 0.068683 -0.085051 -0.000316 -0.776185 -0.630505 -0.174407 0.611844 -0.771511 0.981334 0.172484 -0.085051 0.081035 -0.771943 -0.630505 -0.237572 0.590195 -0.771511 0.957851 0.274385 -0.085051 0.161494 -0.759199 -0.630505 -0.298120 0.562045 -0.771511 0.923819 0.373263 -0.085051 0.240174 -0.738092 -0.630505 -0.354857 0.528060 -0.771511 0.880078 0.467151 -0.085051 0.315500 -0.709171 -0.630505 -0.408247 0.487960 -0.771511 0.826270 0.556816 -0.085051 0.388088 -0.672198 -0.630505 -0.457140 0.442485 -0.771511 0.763361 0.640349 -0.085051 0.456402 -0.627822 -0.630505 -0.500606 0.392638 -0.771511 0.692760 0.716135 -0.085051 0.519112 -0.577049 -0.630505 -0.539000 0.338008 -0.771511 0.613889 0.784797 -0.085051 0.576732 -0.519465 -0.630505 -0.571457 0.279655 -0.771511 0.528255 0.844815 -0.085051 0.627999 -0.456158 -0.630505 -0.597620 0.218223 -0.771511 0.436803 0.895527 -0.085051 0.672349 -0.387827 -0.630505 -0.617045 0.155003 -0.771511 0.341476 0.936034 -0.085051 0.708978 -0.315933 -0.630505 -0.629892 0.089479 -0.771511 0.241492 0.966668 -0.085051 0.738185 -0.239887 -0.630505 -0.635801 0.022969 -0.771511 0.138849 0.986655 -0.085051 0.759262 -0.161199 -0.630505 -0.634750 -0.043160 -0.771511 0.035671 0.995738 -0.085051 0.771894 -0.081507 -0.630505 -0.626731 -0.109448 -0.771511 -0.068886 0.993993 -0.085051 0.776185 -0.000158 -0.630505 -0.611808 -0.174531 -0.771511 -0.172684 0.981298 -0.085051 0.771927 0.081193 -0.630505 -0.590146 -0.237692 -0.771511 -0.274580 0.957795 -0.085051 0.759166 0.161649 -0.630505 -0.562282 -0.297672 -0.771511 -0.372528 0.924115 -0.085051 0.738283 0.239586 -0.630505 -0.527987 -0.354964 -0.771511 -0.467330 0.879982 -0.085051 0.709107 0.315644 -0.630505 -0.487877 -0.408346 -0.771511 -0.556984 0.826156 -0.085051 0.672119 0.388225 -0.630505 -0.442392 -0.457230 -0.771511 -0.640504 0.763231 -0.085051 0.627729 0.456530 -0.630505 -0.392536 -0.500686 -0.771511 -0.716276 0.692614 -0.085051 0.576944 0.519230 -0.630505 -0.337898 -0.539069 -0.771511 -0.784922 0.613729 -0.085051 0.519347 0.576838 -0.630505 -0.279539 -0.571514 -0.771511 -0.844923 0.528083 -0.085051 0.456030 0.628092 -0.630505 -0.218698 -0.597446 -0.771511 -0.895179 0.437516 -0.085051 0.388362 0.672040 -0.630505 -0.154877 -0.617076 -0.771511 -0.936104 0.341286 -0.085051 0.315789 0.709042 -0.630505 -0.089350 -0.629910 -0.771511 -0.966718 0.241296 -0.085051 0.239737 0.738234 -0.630505 -0.022839 -0.635806 -0.771511 -0.986683 0.138648 -0.085051 0.161044 0.759295 -0.630505 0.043289 -0.634741 -0.771511 -0.995745 0.035468 -0.085051 0.081350 0.771910 -0.630505 0.109576 -0.626708 -0.771511 -0.993978 -0.069088 -0.085051 0.000000 0.776185 -0.630505 0.174656 -0.611772 -0.771511 -0.981263 -0.172884 -0.085051 -0.081350 0.771910 -0.630505 0.237222 -0.590336 -0.771511 -0.958014 -0.273817 -0.085051 -0.161044 0.759295 -0.630505 0.297787 -0.562222 -0.771511 -0.924040 -0.372716 -0.085051 -0.239737 0.738234 -0.630505 0.355072 -0.527915 -0.771511 -0.879887 -0.467509 -0.085051 -0.315789 0.709042 -0.630505 0.408445 -0.487794 -0.771511 -0.826043 -0.557153 -0.085051 -0.388362 0.672040 -0.630505 0.456878 -0.442756 -0.771511 -0.763740 -0.639896 -0.085051 -0.456030 0.628092 -0.630505 0.500766 -0.392434 -0.771511 -0.692468 -0.716417 -0.085051 -0.519347 0.576838 -0.630505 0.539137 -0.337789 -0.771511 -0.613569 -0.785047 -0.085051 -0.576944 0.519230 -0.630505 0.571291 -0.279994 -0.771511 -0.528756 -0.844502 -0.085051 -0.627729 0.456530 -0.630505 0.597490 -0.218577 -0.771511 -0.437334 -0.895268 -0.085051 -0.672119 0.388225 -0.630505 0.617108 -0.154752 -0.771511 -0.341095 -0.936173 -0.085051 -0.709107 0.315644 -0.630505 0.629928 -0.089222 -0.771511 -0.241099 -0.966767 -0.085051 -0.738283 0.239586 -0.630505 0.635787 -0.023346 -0.771511 -0.139433 -0.986572 -0.085051 -0.759166 0.161649 -0.630505 0.634732 0.043418 -0.771511 -0.035266 -0.995752 -0.085051 -0.771927 0.081193 -0.630505 -0.465117 0.447252 -0.763958 -0.232417 -0.894408 -0.382121 -0.854195 -0.000174 0.519953 -0.509430 0.396041 -0.763958 -0.137397 -0.913841 -0.382121 -0.849472 -0.089699 0.519953 -0.547792 0.341016 -0.763958 -0.041786 -0.923167 -0.382121 -0.835570 -0.177400 0.519953 -0.580516 0.281725 -0.763958 0.055198 -0.922462 -0.382121 -0.812376 -0.263997 0.519953 -0.606846 0.219331 -0.763958 0.151575 -0.911597 -0.382121 -0.780233 -0.347686 0.519953 -0.626336 0.155148 -0.763958 0.245391 -0.890936 -0.382121 -0.739923 -0.426805 0.519953 -0.639147 0.088649 -0.763958 0.337416 -0.860310 -0.382121 -0.691116 -0.502004 0.519953 -0.644918 0.021174 -0.763958 0.425725 -0.820208 -0.382121 -0.634696 -0.571673 0.519953 -0.643586 -0.046535 -0.763958 0.509344 -0.771072 -0.382121 -0.571285 -0.635045 0.519953 -0.635277 -0.113096 -0.763958 0.586639 -0.714030 -0.382121 -0.502272 -0.690920 0.519953 -0.619925 -0.179055 -0.763958 0.658243 -0.648613 -0.382121 -0.427093 -0.739757 0.519953 -0.597745 -0.243041 -0.763958 0.722597 -0.576052 -0.382121 -0.347209 -0.780445 0.519953 -0.569284 -0.303781 -0.763958 0.778495 -0.497925 -0.382121 -0.264313 -0.812273 0.519953 -0.534311 -0.361773 -0.763958 0.826393 -0.413591 -0.382121 -0.177725 -0.835501 0.519953 -0.493452 -0.415781 -0.763958 0.865189 -0.324701 -0.382121 -0.089180 -0.849527 0.519953 -0.447536 -0.464844 -0.763958 0.894266 -0.232964 -0.382121 -0.000348 -0.854195 0.519953 -0.396352 -0.509188 -0.763958 0.913757 -0.137955 -0.382121 0.089180 -0.849527 0.519953 -0.340803 -0.547925 -0.763958 0.923183 -0.041427 -0.382121 0.177725 -0.835501 0.519953 -0.281499 -0.580626 -0.763958 0.922441 0.055557 -0.382121 0.264313 -0.812273 0.519953 -0.219702 -0.606712 -0.763958 0.911689 0.151018 -0.382121 0.347209 -0.780445 0.519953 -0.154904 -0.626396 -0.763958 0.890840 0.245738 -0.382121 0.427093 -0.739757 0.519953 -0.088401 -0.639182 -0.763958 0.860179 0.337751 -0.382121 0.502272 -0.690920 0.519953 -0.021568 -0.644905 -0.763958 0.820468 0.425224 -0.382121 0.571285 -0.635045 0.519953 0.046142 -0.643614 -0.763958 0.771383 0.508873 -0.382121 0.634696 -0.571673 0.519953 0.113343 -0.635233 -0.763958 0.713801 0.586917 -0.382121 0.691116 -0.502004 0.519953 0.179296 -0.619856 -0.763958 0.648357 0.658496 -0.382121 0.739923 -0.426805 0.519953 0.242676 -0.597893 -0.763958 0.576494 0.722245 -0.382121 0.780233 -0.347686 0.519953 0.304003 -0.569166 -0.763958 0.497622 0.778688 -0.382121 0.812376 -0.263997 0.519953 0.361981 -0.534170 -0.763958 0.413270 0.826554 -0.382121 0.835570 -0.177400 0.519953 0.415479 -0.493706 -0.763958 0.325230 0.864991 -0.382121 0.849472 -0.089699 0.519953 0.464935 -0.447441 -0.763958 0.232781 0.894313 -0.382121 0.854195 -0.000174 0.519953 0.509269 -0.396249 -0.763958 0.137769 0.913785 -0.382121 0.849508 0.089353 0.519953 0.547994 -0.340691 -0.763958 0.041239 0.923192 -0.382121 0.835465 0.177895 0.519953 0.580401 -0.281962 -0.763958 -0.054823 0.922485 -0.382121 0.812483 0.263666 0.519953 0.606756 -0.219579 -0.763958 -0.151204 0.911658 -0.382121 0.780374 0.347368 0.519953 0.626428 -0.154777 -0.763958 -0.245919 0.890790 -0.382121 0.739670 0.427243 0.519953 0.639200 -0.088270 -0.763958 -0.337926 0.860110 -0.382121 0.690818 0.502413 0.519953 0.644910 -0.021436 -0.763958 -0.425391 0.820382 -0.382121 0.634929 0.571414 0.519953 0.643605 0.046273 -0.763958 -0.509030 0.771280 -0.382121 0.571544 0.634812 0.519953 0.635210 0.113472 -0.763958 -0.587062 0.713682 -0.382121 0.501863 0.691218 0.519953 0.619998 0.178802 -0.763958 -0.657979 0.648881 -0.382121 0.427394 0.739583 0.519953 0.597844 0.242798 -0.763958 -0.722363 0.576347 -0.382121 0.347527 0.780304 0.519953 0.569104 0.304119 -0.763958 -0.778790 0.497464 -0.382121 0.263831 0.812429 0.519953 0.534096 0.362090 -0.763958 -0.826638 0.413101 -0.382121 0.177230 0.835606 0.519953 0.493621 0.415580 -0.763958 -0.865057 0.325054 -0.382121 0.089526 0.849490 0.519953 0.447347 0.465026 -0.763958 -0.894361 0.232599 -0.382121 0.000000 0.854195 0.519953 0.396145 0.509350 -0.763958 -0.913813 0.137583 -0.382121 -0.089526 0.849490 0.519953 0.341127 0.547723 -0.763958 -0.923159 0.041974 -0.382121 -0.177230 0.835606 0.519953 0.281843 0.580459 -0.763958 -0.922473 -0.055011 -0.382121 -0.263831 0.812429 0.519953 0.219455 0.606801 -0.763958 -0.911627 -0.151389 -0.382121 -0.347527 0.780304 0.519953 0.154649 0.626460 -0.763958 -0.890740 -0.246101 -0.382121 -0.427394 0.739583 0.519953 0.088779 0.639129 -0.763958 -0.860379 -0.337241 -0.382121 -0.501863 0.691218 0.519953 0.021305 0.644914 -0.763958 -0.820295 -0.425558 -0.382121 -0.571544 0.634812 0.519953 -0.046404 0.643595 -0.763958 -0.771176 -0.509187 -0.382121 -0.634929 0.571414 0.519953 -0.112966 0.635300 -0.763958 -0.714149 -0.586493 -0.382121 -0.690818 0.502413 0.519953 -0.178928 0.619962 -0.763958 -0.648747 -0.658111 -0.382121 -0.739670 0.427243 0.519953 -0.242919 0.597794 -0.763958 -0.576200 -0.722480 -0.382121 -0.780374 0.347368 0.519953 -0.304235 0.569042 -0.763958 -0.497305 -0.778891 -0.382121 -0.812483 0.263666 0.519953 -0.361665 0.534384 -0.763958 -0.413759 -0.826309 -0.382121 -0.835465 0.177895 0.519953 -0.415680 0.493536 -0.763958 -0.324878 -0.865123 -0.382121 -0.849508 0.089353 0.519953 0.064609 0.986595 -0.149851 0.391668 -0.163186 -0.905520 -0.917835 -0.000187 -0.396961 -0.039149 0.987933 -0.149851 0.406614 -0.121238 -0.905520 -0.912761 -0.096382 -0.396961 -0.141497 0.978531 -0.149851 0.417003 -0.078371 -0.905520 -0.897823 -0.190617 -0.396961 -0.243275 0.958312 -0.149851 0.422920 -0.034234 -0.905520 -0.872901 -0.283665 -0.396961 -0.342373 0.927537 -0.149851 0.424179 0.010279 -0.905520 -0.838363 -0.373589 -0.396961 -0.436813 0.886983 -0.149851 0.420820 0.054259 -0.905520 -0.795050 -0.458604 -0.396961 -0.527370 0.836317 -0.149851 0.412816 0.098065 -0.905520 -0.742606 -0.539405 -0.396961 -0.612117 0.776439 -0.149851 0.400264 0.140791 -0.905520 -0.681983 -0.614264 -0.396961 -0.690122 0.708008 -0.149851 0.383304 0.181966 -0.905520 -0.613848 -0.682358 -0.396961 -0.759894 0.632539 -0.149851 0.362343 0.220775 -0.905520 -0.539694 -0.742397 -0.396961 -0.822003 0.549413 -0.149851 0.337208 0.257535 -0.905520 -0.458913 -0.794872 -0.396961 -0.875059 0.460236 -0.149851 0.308360 0.291458 -0.905520 -0.373077 -0.838591 -0.396961 -0.918109 0.366907 -0.149851 0.276436 0.321895 -0.905520 -0.284005 -0.872790 -0.396961 -0.951507 0.268662 -0.149851 0.241177 0.349095 -0.905520 -0.190966 -0.897749 -0.396961 -0.974424 0.167457 -0.149851 0.203261 0.372449 -0.905520 -0.095824 -0.912820 -0.396961 -0.986556 0.065212 -0.149851 0.163425 0.391568 -0.905520 -0.000374 -0.917835 -0.396961 -0.987957 -0.038545 -0.149851 0.121486 0.406540 -0.905520 0.095824 -0.912820 -0.396961 -0.978476 -0.141878 -0.149851 0.078209 0.417034 -0.905520 0.190966 -0.897749 -0.396961 -0.958217 -0.243648 -0.149851 0.034070 0.422934 -0.905520 0.284005 -0.872790 -0.396961 -0.927746 -0.341806 -0.149851 -0.010020 0.424185 -0.905520 0.373077 -0.838591 -0.396961 -0.886813 -0.437158 -0.149851 -0.054422 0.420799 -0.905520 0.458913 -0.794872 -0.396961 -0.836112 -0.527695 -0.149851 -0.098225 0.412778 -0.905520 0.539694 -0.742397 -0.396961 -0.776812 -0.611643 -0.149851 -0.140546 0.400350 -0.905520 0.613848 -0.682358 -0.396961 -0.708430 -0.689690 -0.149851 -0.181732 0.383415 -0.905520 0.681983 -0.614264 -0.396961 -0.632244 -0.760140 -0.149851 -0.220916 0.362257 -0.905520 0.742606 -0.539405 -0.396961 -0.549094 -0.822217 -0.149851 -0.257666 0.337108 -0.905520 0.795050 -0.458604 -0.396961 -0.460770 -0.874777 -0.149851 -0.291270 0.308538 -0.905520 0.838363 -0.373589 -0.396961 -0.366550 -0.918252 -0.149851 -0.322003 0.276311 -0.905520 0.872901 -0.283665 -0.396961 -0.268291 -0.951611 -0.149851 -0.349189 0.241041 -0.905520 0.897823 -0.190617 -0.396961 -0.168053 -0.974322 -0.149851 -0.372325 0.203489 -0.905520 0.912761 -0.096382 -0.396961 -0.065011 -0.986569 -0.149851 -0.391602 0.163346 -0.905520 0.917835 -0.000187 -0.396961 0.038746 -0.987949 -0.149851 -0.406565 0.121403 -0.905520 0.912800 0.096010 -0.396961 0.142077 -0.978447 -0.149851 -0.417049 0.078124 -0.905520 0.897710 0.191149 -0.396961 0.242885 -0.958411 -0.149851 -0.422906 0.034407 -0.905520 0.873016 0.283310 -0.396961 0.341995 -0.927677 -0.149851 -0.424183 -0.010106 -0.905520 0.838515 0.373248 -0.396961 0.437339 -0.886724 -0.149851 -0.420788 -0.054508 -0.905520 0.794778 0.459075 -0.396961 0.527865 -0.836004 -0.149851 -0.412758 -0.098310 -0.905520 0.742287 0.539845 -0.396961 0.611801 -0.776688 -0.149851 -0.400322 -0.140628 -0.905520 0.682233 0.613987 -0.396961 0.689834 -0.708289 -0.149851 -0.383378 -0.181810 -0.905520 0.614126 0.682108 -0.396961 0.760269 -0.632089 -0.149851 -0.362212 -0.220989 -0.905520 0.539254 0.742716 -0.396961 0.821780 -0.549748 -0.149851 -0.337313 -0.257397 -0.905520 0.459237 0.794685 -0.396961 0.874871 -0.460592 -0.149851 -0.308478 -0.291333 -0.905520 0.373419 0.838439 -0.396961 0.918326 -0.366363 -0.149851 -0.276246 -0.322059 -0.905520 0.283488 0.872958 -0.396961 0.951666 -0.268098 -0.149851 -0.240970 -0.349238 -0.905520 0.190434 0.897862 -0.396961 0.974356 -0.167854 -0.149851 -0.203413 -0.372366 -0.905520 0.096196 0.912780 -0.396961 0.986582 -0.064810 -0.149851 -0.163266 -0.391635 -0.905520 0.000000 0.917835 -0.396961 0.987941 0.038948 -0.149851 -0.121321 -0.406589 -0.905520 -0.096196 0.912780 -0.396961 0.978560 0.141298 -0.149851 -0.078456 -0.416987 -0.905520 -0.190434 0.897862 -0.396961 0.958362 0.243080 -0.149851 -0.034321 -0.422913 -0.905520 -0.283488 0.872958 -0.396961 0.927607 0.342184 -0.149851 0.010193 -0.424181 -0.905520 -0.373419 0.838439 -0.396961 0.886635 0.437520 -0.149851 0.054594 -0.420777 -0.905520 -0.459237 0.794685 -0.396961 0.836424 0.527200 -0.149851 0.097981 -0.412836 -0.905520 -0.539254 0.742716 -0.396961 0.776563 0.611959 -0.149851 0.140709 -0.400293 -0.905520 -0.614126 0.682108 -0.396961 0.708149 0.689978 -0.149851 0.181888 -0.383341 -0.905520 -0.682233 0.613987 -0.396961 0.632694 0.759765 -0.149851 0.220701 -0.362388 -0.905520 -0.742287 0.539845 -0.396961 0.549581 0.821892 -0.149851 0.257466 -0.337261 -0.905520 -0.794778 0.459075 -0.396961 0.460414 0.874965 -0.149851 0.291396 -0.308419 -0.905520 -0.838515 0.373248 -0.396961 0.366176 0.918401 -0.149851 0.322115 -0.276180 -0.905520 -0.873016 0.283310 -0.396961 0.268855 0.951452 -0.149851 0.349046 -0.241248 -0.905520 -0.897710 0.191149 -0.396961 0.167656 0.974390 -0.149851 0.372408 -0.203337 -0.905520 -0.912800 0.096010 -0.396961 -0.675968 0.057626 -0.734675 -0.038908 -0.998338 -0.042509 -0.735903 -0.000150 0.677086 -0.678285 -0.013537 -0.734675 0.065939 -0.996918 -0.042509 -0.731835 -0.077277 0.677086 -0.673214 -0.083878 -0.734675 0.169076 -0.984686 -0.042509 -0.719858 -0.152833 0.677086 -0.660716 -0.153974 -0.734675 0.271347 -0.961542 -0.042509 -0.699876 -0.227438 0.677086 -0.640939 -0.222374 -0.734675 0.370629 -0.927808 -0.042509 -0.672184 -0.299537 0.677086 -0.614391 -0.287710 -0.734675 0.464944 -0.884319 -0.042509 -0.637456 -0.367700 0.677086 -0.580853 -0.350518 -0.734675 0.555067 -0.830719 -0.042509 -0.595408 -0.432485 0.677086 -0.540917 -0.409465 -0.734675 0.639075 -0.767969 -0.042509 -0.546801 -0.492506 0.677086 -0.495023 -0.463902 -0.734675 0.716044 -0.696760 -0.042509 -0.492172 -0.547102 0.677086 -0.444190 -0.512785 -0.734675 0.784508 -0.618661 -0.042509 -0.432716 -0.595240 0.677086 -0.388000 -0.556515 -0.734675 0.845027 -0.533031 -0.042509 -0.367948 -0.637313 0.677086 -0.327536 -0.594115 -0.734675 0.896239 -0.441531 -0.042509 -0.299126 -0.672367 0.677086 -0.264090 -0.624908 -0.734675 0.937232 -0.346104 -0.042509 -0.227710 -0.699787 0.677086 -0.197140 -0.649145 -0.734675 0.968345 -0.245970 -0.042509 -0.153113 -0.719799 0.677086 -0.128020 -0.666231 -0.734675 0.988791 -0.143125 -0.042509 -0.076830 -0.731882 0.677086 -0.058039 -0.675932 -0.734675 0.998314 -0.039518 -0.042509 -0.000300 -0.735903 0.677086 0.013123 -0.678293 -0.734675 0.996958 0.065330 -0.042509 0.076830 -0.731882 0.677086 0.084140 -0.673182 -0.734675 0.984620 0.169459 -0.042509 0.153113 -0.719799 0.677086 0.154231 -0.660656 -0.734675 0.961437 0.271721 -0.042509 0.227710 -0.699787 0.677086 0.221982 -0.641075 -0.734675 0.928034 0.370062 -0.042509 0.299126 -0.672367 0.677086 0.287949 -0.614279 -0.734675 0.884138 0.465288 -0.042509 0.367948 -0.637313 0.677086 0.350744 -0.580717 -0.734675 0.830503 0.555390 -0.042509 0.432716 -0.595240 0.677086 0.409135 -0.541167 -0.734675 0.768359 0.638606 -0.042509 0.492172 -0.547102 0.677086 0.463600 -0.495307 -0.734675 0.697197 0.715618 -0.042509 0.546801 -0.492506 0.677086 0.512958 -0.443990 -0.734675 0.618355 0.784748 -0.042509 0.595408 -0.432485 0.677086 0.556666 -0.387783 -0.734675 0.532703 0.845234 -0.042509 0.637456 -0.367700 0.677086 0.593915 -0.327899 -0.734675 0.442078 0.895969 -0.042509 0.672184 -0.299537 0.677086 0.625010 -0.263847 -0.734675 0.345740 0.937367 -0.042509 0.699876 -0.227438 0.677086 0.649221 -0.196888 -0.734675 0.245593 0.968441 -0.042509 0.719858 -0.152833 0.677086 0.666153 -0.128427 -0.734675 0.143729 0.988704 -0.042509 0.731835 -0.077277 0.677086 0.675944 -0.057902 -0.734675 0.039315 0.998322 -0.042509 0.735903 -0.000150 0.677086 0.678290 0.013261 -0.734675 -0.065533 0.996945 -0.042509 0.731866 0.076979 0.677086 0.673164 0.084278 -0.734675 -0.169659 0.984586 -0.042509 0.719768 0.153260 0.677086 0.660778 0.153705 -0.734675 -0.270955 0.961653 -0.042509 0.699968 0.227153 0.677086 0.641030 0.222113 -0.734675 -0.370251 0.927959 -0.042509 0.672306 0.299263 0.677086 0.614220 0.288074 -0.734675 -0.465468 0.884043 -0.042509 0.637238 0.368078 0.677086 0.580645 0.350862 -0.734675 -0.555559 0.830390 -0.042509 0.595152 0.432838 0.677086 0.541084 0.409245 -0.734675 -0.638762 0.768229 -0.042509 0.547002 0.492283 0.677086 0.495212 0.463700 -0.734675 -0.715760 0.697051 -0.042509 0.492395 0.546902 0.677086 0.443886 0.513048 -0.734675 -0.784874 0.618196 -0.042509 0.432364 0.595496 0.677086 0.388226 0.556357 -0.734675 -0.844810 0.533376 -0.042509 0.368207 0.637163 0.677086 0.327778 0.593982 -0.734675 -0.896059 0.441896 -0.042509 0.299400 0.672245 0.677086 0.263719 0.625064 -0.734675 -0.937437 0.345549 -0.042509 0.227295 0.699922 0.677086 0.196756 0.649261 -0.734675 -0.968491 0.245396 -0.042509 0.152687 0.719889 0.677086 0.128291 0.666179 -0.734675 -0.988733 0.143528 -0.042509 0.077128 0.731851 0.677086 0.057764 0.675956 -0.734675 -0.998330 0.039111 -0.042509 0.000000 0.735903 0.677086 -0.013399 0.678287 -0.734675 -0.996931 -0.065736 -0.042509 -0.077128 0.731851 0.677086 -0.083741 0.673231 -0.734675 -0.984720 -0.168875 -0.042509 -0.152687 0.719889 0.677086 -0.153840 0.660747 -0.734675 -0.961598 -0.271151 -0.042509 -0.227295 0.699922 0.677086 -0.222243 0.640984 -0.734675 -0.927883 -0.370440 -0.042509 -0.299400 0.672245 0.677086 -0.288199 0.614161 -0.734675 -0.883948 -0.465648 -0.042509 -0.368207 0.637163 0.677086 -0.350400 0.580924 -0.734675 -0.830832 -0.554897 -0.042509 -0.432364 0.595496 0.677086 -0.409355 0.541001 -0.734675 -0.768099 -0.638919 -0.042509 -0.492395 0.546902 0.677086 -0.463801 0.495118 -0.734675 -0.696905 -0.715902 -0.042509 -0.547002 0.492283 0.677086 -0.512695 0.444294 -0.734675 -0.618820 -0.784382 -0.042509 -0.595152 0.432838 0.677086 -0.556436 0.388113 -0.734675 -0.533203 -0.844918 -0.042509 -0.637238 0.368078 0.677086 -0.594049 0.327657 -0.734675 -0.441713 -0.896149 -0.042509 -0.672306 0.299263 0.677086 -0.625118 0.263592 -0.734675 -0.345358 -0.937508 -0.042509 -0.699968 0.227153 0.677086 -0.649104 0.197273 -0.734675 -0.246167 -0.968295 -0.042509 -0.719768 0.153260 0.677086 -0.666205 0.128155 -0.734675 -0.143327 -0.988762 -0.042509 -0.731866 0.076979 0.677086 0.300637 -0.832770 0.464877 0.451968 0.553618 0.699451 -0.839846 -0.000171 0.542824 0.386262 -0.796675 0.464877 0.391456 0.597939 0.699451 -0.835203 -0.088192 0.542824 0.466880 -0.752272 0.464877 0.327267 0.635346 0.699451 -0.821535 -0.174420 0.542824 0.543152 -0.699196 0.464877 0.258876 0.666147 0.699451 -0.798730 -0.259562 0.542824 0.613441 -0.638419 0.464877 0.187633 0.689611 0.699451 -0.767127 -0.341845 0.542824 0.676403 -0.571287 0.464877 0.115029 0.705363 0.699451 -0.727494 -0.419636 0.542824 0.732552 -0.497249 0.464877 0.040469 0.713534 0.699451 -0.679507 -0.493571 0.542824 0.780633 -0.417733 0.464877 -0.034538 0.713846 0.699451 -0.624035 -0.562070 0.542824 0.820115 -0.333617 0.464877 -0.109164 0.706295 0.699451 -0.561689 -0.624378 0.542824 0.850318 -0.246676 0.464877 -0.181896 0.691146 0.699451 -0.493835 -0.679315 0.542824 0.871488 -0.156198 0.464877 -0.253331 0.668275 0.699451 -0.419919 -0.727331 0.542824 0.883059 -0.063999 0.464877 -0.321976 0.638044 0.699451 -0.341376 -0.767336 0.542824 0.884932 0.028019 0.464877 -0.386474 0.601171 0.699451 -0.259873 -0.798629 0.542824 0.877121 0.120612 0.464877 -0.447352 0.557355 0.699451 -0.174740 -0.821467 0.542824 0.859650 0.211876 0.464877 -0.503303 0.507400 0.699451 -0.087682 -0.835257 0.542824 0.832954 0.300128 0.464877 -0.553342 0.452307 0.699451 -0.000342 -0.839846 0.542824 0.796911 0.385775 0.464877 -0.597700 0.391821 0.699451 0.087682 -0.835257 0.542824 0.752090 0.467172 0.464877 -0.635474 0.327020 0.699451 0.174740 -0.821467 0.542824 0.698985 0.543424 0.464877 -0.666248 0.258617 0.699451 0.259873 -0.798629 0.542824 0.638794 0.613051 0.464877 -0.689496 0.188055 0.699451 0.341376 -0.767336 0.542824 0.571024 0.676625 0.464877 -0.705408 0.114755 0.699451 0.419919 -0.727331 0.542824 0.496964 0.732746 0.464877 -0.713550 0.040191 0.699451 0.493835 -0.679315 0.542824 0.418210 0.780378 0.464877 -0.713867 -0.034102 0.699451 0.561689 -0.624378 0.542824 0.334118 0.819911 0.464877 -0.706361 -0.108732 0.699451 0.624035 -0.562070 0.542824 0.246345 0.850414 0.464877 -0.691075 -0.182165 0.699451 0.679507 -0.493571 0.542824 0.155859 0.871549 0.464877 -0.668177 -0.253591 0.699451 0.727494 -0.419636 0.542824 0.064539 0.883020 0.464877 -0.638241 -0.321586 0.699451 0.767127 -0.341845 0.542824 -0.028363 0.884921 0.464877 -0.601021 -0.386707 0.699451 0.798730 -0.259562 0.542824 -0.120953 0.877074 0.464877 -0.557181 -0.447569 0.699451 0.821535 -0.174420 0.542824 -0.211351 0.859779 0.464877 -0.507707 -0.502993 0.699451 0.835203 -0.088192 0.542824 -0.300298 0.832893 0.464877 -0.452194 -0.553434 0.699451 0.839846 -0.000171 0.542824 -0.385937 0.796832 0.464877 -0.391700 -0.597780 0.699451 0.835239 0.087852 0.542824 -0.467325 0.751995 0.464877 -0.326891 -0.635540 0.699451 0.821431 0.174907 0.542824 -0.542867 0.699417 0.464877 -0.259147 -0.666042 0.699451 0.798835 0.259237 0.542824 -0.613181 0.638669 0.464877 -0.187914 -0.689534 0.699451 0.767266 0.341533 0.542824 -0.676741 0.570886 0.464877 -0.114611 -0.705431 0.699451 0.727245 0.420067 0.542824 -0.732847 0.496814 0.464877 -0.040046 -0.713558 0.699451 0.679214 0.493974 0.542824 -0.780463 0.418051 0.464877 0.034247 -0.713860 0.699451 0.624263 0.561816 0.542824 -0.819979 0.333951 0.464877 0.108876 -0.706339 0.699451 0.561943 0.624149 0.542824 -0.850464 0.246172 0.464877 0.182306 -0.691038 0.699451 0.493433 0.679607 0.542824 -0.871424 0.156553 0.464877 0.253059 -0.668379 0.699451 0.420215 0.727160 0.542824 -0.883033 0.064359 0.464877 0.321716 -0.638175 0.699451 0.341689 0.767196 0.542824 -0.884915 -0.028543 0.464877 0.386830 -0.600942 0.699451 0.259400 0.798783 0.542824 -0.877050 -0.121132 0.464877 0.447682 -0.557090 0.699451 0.174253 0.821570 0.542824 -0.859736 -0.211526 0.464877 0.503097 -0.507605 0.699451 0.088022 0.835221 0.542824 -0.832832 -0.300468 0.464877 0.553526 -0.452081 0.699451 0.000000 0.839846 0.542824 -0.796754 -0.386100 0.464877 0.597859 -0.391578 0.699451 -0.088022 0.835221 0.542824 -0.752367 -0.466726 0.464877 0.635280 -0.327397 0.699451 -0.174253 0.821570 0.542824 -0.699307 -0.543009 0.464877 0.666094 -0.259012 0.699451 -0.259400 0.798783 0.542824 -0.638544 -0.613311 0.464877 0.689572 -0.187774 0.699451 -0.341689 0.767196 0.542824 -0.570748 -0.676857 0.464877 0.705455 -0.114468 0.699451 -0.420215 0.727160 0.542824 -0.497398 -0.732451 0.464877 0.713526 -0.040614 0.699451 -0.493433 0.679607 0.542824 -0.417892 -0.780548 0.464877 0.713853 0.034392 0.699451 -0.561943 0.624149 0.542824 -0.333784 -0.820047 0.464877 0.706317 0.109020 0.699451 -0.624263 0.561816 0.542824 -0.246849 -0.850267 0.464877 0.691183 0.181755 0.699451 -0.679214 0.493974 0.542824 -0.156375 -0.871456 0.464877 0.668327 0.253195 0.699451 -0.727245 0.420067 0.542824 -0.064179 -0.883046 0.464877 0.638110 0.321846 0.699451 -0.767266 0.341533 0.542824 0.028724 -0.884909 0.464877 0.600864 0.386952 0.699451 -0.798835 0.259237 0.542824 0.120433 -0.877146 0.464877 0.557446 0.447239 0.699451 -0.821431 0.174907 0.542824 0.211701 -0.859693 0.464877 0.507502 0.503200 0.699451 -0.835239 0.087852 0.542824 -0.032992 0.990209 0.135636 0.232658 0.139591 -0.962489 -0.971999 -0.000198 -0.234985 -0.136592 0.981298 0.135636 0.216747 0.163206 -0.962489 -0.966625 -0.102069 -0.234985 -0.237725 0.961816 0.135636 0.198633 0.184825 -0.962489 -0.950806 -0.201866 -0.234985 -0.337221 0.931604 0.135636 0.178168 0.204625 -0.962489 -0.924413 -0.300405 -0.234985 -0.433002 0.891130 0.135636 0.155740 0.222172 -0.962489 -0.887837 -0.395636 -0.234985 -0.523173 0.841364 0.135636 0.131834 0.237139 -0.962489 -0.841968 -0.485667 -0.234985 -0.608473 0.781898 0.135636 0.106255 0.249650 -0.962489 -0.786429 -0.571236 -0.234985 -0.687070 0.713819 0.135636 0.079504 0.259411 -0.962489 -0.722228 -0.650514 -0.234985 -0.758099 0.637878 0.135636 0.051878 0.266315 -0.962489 -0.650072 -0.722626 -0.234985 -0.820223 0.555731 0.135636 0.023951 0.270262 -0.962489 -0.571542 -0.786207 -0.234985 -0.873950 0.466705 0.135636 -0.004506 0.271284 -0.962489 -0.485994 -0.841779 -0.234985 -0.918051 0.372538 0.135636 -0.032914 0.269317 -0.962489 -0.395093 -0.888078 -0.234985 -0.951765 0.275220 0.135636 -0.060695 0.264445 -0.962489 -0.300765 -0.924296 -0.234985 -0.975368 0.173953 0.135636 -0.088076 0.256628 -0.962489 -0.202236 -0.950727 -0.234985 -0.988228 0.070769 0.135636 -0.114488 0.245983 -0.962489 -0.101479 -0.966687 -0.234985 -0.990229 -0.032387 0.135636 -0.139448 0.232743 -0.962489 -0.000396 -0.971999 -0.234985 -0.981381 -0.135992 0.135636 -0.163073 0.216846 -0.962489 0.101479 -0.966687 -0.234985 -0.961723 -0.238099 0.135636 -0.184902 0.198561 -0.962489 0.202236 -0.950727 -0.234985 -0.931472 -0.337583 0.135636 -0.204695 0.178088 -0.962489 0.300765 -0.924296 -0.234985 -0.891394 -0.432458 0.135636 -0.222076 0.155876 -0.962489 0.395093 -0.888078 -0.234985 -0.841160 -0.523500 0.135636 -0.237190 0.131742 -0.962489 0.485994 -0.841779 -0.234985 -0.781661 -0.608777 0.135636 -0.249691 0.106157 -0.962489 0.571542 -0.786207 -0.234985 -0.714239 -0.686634 0.135636 -0.259363 0.079663 -0.962489 0.650072 -0.722626 -0.234985 -0.638341 -0.757710 0.135636 -0.266284 0.052041 -0.962489 0.722228 -0.650514 -0.234985 -0.555412 -0.820439 0.135636 -0.270271 0.023846 -0.962489 0.786429 -0.571236 -0.234985 -0.466365 -0.874132 0.135636 -0.271282 -0.004612 -0.962489 0.841968 -0.485667 -0.234985 -0.373099 -0.917823 0.135636 -0.269338 -0.032749 -0.962489 0.887837 -0.395636 -0.234985 -0.274850 -0.951872 0.135636 -0.264422 -0.060798 -0.962489 0.924413 -0.300405 -0.234985 -0.173573 -0.975436 0.135636 -0.256593 -0.088176 -0.962489 0.950806 -0.201866 -0.234985 -0.071373 -0.988185 0.135636 -0.246053 -0.114337 -0.962489 0.966625 -0.102069 -0.234985 0.032589 -0.990223 0.135636 -0.232715 -0.139496 -0.962489 0.971999 -0.000198 -0.234985 0.136192 -0.981354 0.135636 -0.216813 -0.163118 -0.962489 0.966666 0.101676 -0.234985 0.238295 -0.961675 0.135636 -0.198523 -0.184943 -0.962489 0.950686 0.202429 -0.234985 0.336841 -0.931741 0.135636 -0.178251 -0.204553 -0.962489 0.924535 0.300029 -0.234985 0.432639 -0.891306 0.135636 -0.155831 -0.222108 -0.962489 0.887998 0.395274 -0.234985 0.523672 -0.841053 0.135636 -0.131694 -0.237217 -0.962489 0.841680 0.486166 -0.234985 0.608936 -0.781537 0.135636 -0.106107 -0.249713 -0.962489 0.786091 0.571702 -0.234985 0.686779 -0.714099 0.135636 -0.079610 -0.259379 -0.962489 0.722493 0.650219 -0.234985 0.757840 -0.638187 0.135636 -0.051987 -0.266294 -0.962489 0.650367 0.722361 -0.234985 0.820552 -0.555245 0.135636 -0.023791 -0.270276 -0.962489 0.571076 0.786546 -0.234985 0.873760 -0.467061 0.135636 0.004396 -0.271286 -0.962489 0.486337 0.841581 -0.234985 0.917899 -0.372912 0.135636 0.032804 -0.269331 -0.962489 0.395455 0.887917 -0.234985 0.951928 -0.274656 0.135636 0.060851 -0.264409 -0.962489 0.300217 0.924474 -0.234985 0.975471 -0.173375 0.135636 0.088228 -0.256576 -0.962489 0.201672 0.950847 -0.234985 0.988199 -0.071172 0.135636 0.114387 -0.246030 -0.962489 0.101872 0.966646 -0.234985 0.990216 0.032791 0.135636 0.139543 -0.232686 -0.962489 0.000000 0.971999 -0.234985 0.981326 0.136392 0.135636 0.163162 -0.216780 -0.962489 -0.101872 0.966646 -0.234985 0.961864 0.237529 0.135636 0.184785 -0.198670 -0.962489 -0.201672 0.950847 -0.234985 0.931672 0.337031 0.135636 0.204589 -0.178209 -0.962489 -0.300217 0.924474 -0.234985 0.891218 0.432821 0.135636 0.222140 -0.155785 -0.962489 -0.395455 0.887917 -0.234985 0.840947 0.523843 0.135636 0.237244 -0.131646 -0.962489 -0.486337 0.841581 -0.234985 0.782022 0.608313 0.135636 0.249629 -0.106305 -0.962489 -0.571076 0.786546 -0.234985 0.713959 0.686925 0.135636 0.259395 -0.079557 -0.962489 -0.650367 0.722361 -0.234985 0.638032 0.757969 0.135636 0.266305 -0.051932 -0.962489 -0.722493 0.650219 -0.234985 0.555898 0.820110 0.135636 0.270257 -0.024006 -0.962489 -0.786091 0.571702 -0.234985 0.466883 0.873855 0.135636 0.271285 0.004451 -0.962489 -0.841680 0.486166 -0.234985 0.372726 0.917975 0.135636 0.269324 0.032859 -0.962489 -0.887998 0.395274 -0.234985 0.274462 0.951984 0.135636 0.264397 0.060905 -0.962489 -0.924535 0.300029 -0.234985 0.174152 0.975333 0.135636 0.256646 0.088024 -0.962489 -0.950686 0.202429 -0.234985 0.070970 0.988214 0.135636 0.246007 0.114437 -0.962489 -0.966666 0.101676 -0.234985 0.113015 0.956242 -0.269869 0.369964 -0.292578 -0.881774 -0.922146 -0.000188 -0.386841 0.012172 0.962820 -0.269869 0.398591 -0.252191 -0.881774 -0.917048 -0.096834 -0.386841 -0.087847 0.958882 -0.269869 0.422618 -0.209450 -0.881774 -0.902040 -0.191512 -0.386841 -0.187860 0.944394 -0.269869 0.442242 -0.164003 -0.881774 -0.877001 -0.284998 -0.386841 -0.285805 0.919503 -0.269869 0.456996 -0.116749 -0.881774 -0.842301 -0.375344 -0.386841 -0.379717 0.884865 -0.269869 0.466646 -0.068677 -0.881774 -0.798784 -0.460758 -0.386841 -0.470366 0.840195 -0.269869 0.471274 -0.019391 -0.881774 -0.746094 -0.541938 -0.386841 -0.555834 0.786270 -0.269869 0.470711 0.030109 -0.881774 -0.685186 -0.617150 -0.386841 -0.635179 0.723684 -0.269869 0.464963 0.079277 -0.881774 -0.616731 -0.685563 -0.386841 -0.706875 0.653834 -0.269869 0.454221 0.127118 -0.881774 -0.542228 -0.745883 -0.386841 -0.771508 0.576148 -0.269869 0.438396 0.174023 -0.881774 -0.461068 -0.798605 -0.386841 -0.827644 0.492115 -0.269869 0.417743 0.219012 -0.881774 -0.374829 -0.842530 -0.386841 -0.874259 0.403536 -0.269869 0.392750 0.261196 -0.881774 -0.285339 -0.876890 -0.386841 -0.911738 0.309685 -0.269869 0.363211 0.300920 -0.881774 -0.191863 -0.901966 -0.386841 -0.939174 0.212423 -0.269869 0.329672 0.337330 -0.881774 -0.096274 -0.917107 -0.386841 -0.956173 0.113600 -0.269869 0.292803 0.369786 -0.881774 -0.000376 -0.922146 -0.386841 -0.962813 0.012760 -0.269869 0.252435 0.398437 -0.881774 0.096274 -0.917107 -0.386841 -0.958847 -0.088220 -0.269869 0.209285 0.422700 -0.881774 0.191863 -0.901966 -0.386841 -0.944320 -0.188228 -0.269869 0.163831 0.442306 -0.881774 0.285339 -0.876890 -0.386841 -0.919678 -0.285243 -0.269869 0.117029 0.456924 -0.881774 0.374829 -0.842530 -0.386841 -0.884717 -0.380061 -0.269869 0.068495 0.466673 -0.881774 0.461068 -0.798605 -0.386841 -0.840012 -0.470693 -0.269869 0.019207 0.471282 -0.881774 0.542228 -0.745883 -0.386841 -0.786609 -0.555353 -0.269869 -0.029821 0.470729 -0.881774 0.616731 -0.685563 -0.386841 -0.724072 -0.634737 -0.269869 -0.078993 0.465011 -0.881774 0.685186 -0.617150 -0.386841 -0.653559 -0.707129 -0.269869 -0.127295 0.454171 -0.881774 0.746094 -0.541938 -0.386841 -0.575848 -0.771732 -0.269869 -0.174194 0.438328 -0.881774 0.798784 -0.460758 -0.386841 -0.492620 -0.827343 -0.269869 -0.218757 0.417877 -0.881774 0.842301 -0.375344 -0.386841 -0.403196 -0.874416 -0.269869 -0.261348 0.392648 -0.881774 0.877001 -0.284998 -0.386841 -0.309330 -0.911858 -0.269869 -0.301061 0.363094 -0.881774 0.902040 -0.191512 -0.386841 -0.212997 -0.939044 -0.269869 -0.337128 0.329878 -0.881774 0.917048 -0.096834 -0.386841 -0.113405 -0.956196 -0.269869 -0.369845 0.292728 -0.881774 0.922146 -0.000188 -0.386841 -0.012564 -0.962815 -0.269869 -0.398488 0.252354 -0.881774 0.917087 0.096461 -0.386841 0.088415 -0.958829 -0.269869 -0.422742 0.209199 -0.881774 0.901927 0.192047 -0.386841 0.187476 -0.944470 -0.269869 -0.442176 0.164183 -0.881774 0.877117 0.284641 -0.386841 0.285431 -0.919620 -0.269869 -0.456948 0.116936 -0.881774 0.842454 0.375001 -0.386841 0.380241 -0.884640 -0.269869 -0.466687 0.068400 -0.881774 0.798511 0.461231 -0.386841 0.470864 -0.839916 -0.269869 -0.471286 0.019111 -0.881774 0.745773 0.542380 -0.386841 0.555513 -0.786496 -0.269869 -0.470723 -0.029917 -0.881774 0.685438 0.616870 -0.386841 0.634884 -0.723943 -0.269869 -0.464995 -0.079088 -0.881774 0.617010 0.685312 -0.386841 0.707262 -0.653415 -0.269869 -0.454145 -0.127387 -0.881774 0.541786 0.746205 -0.386841 0.771273 -0.576462 -0.269869 -0.438467 -0.173845 -0.881774 0.461394 0.798417 -0.386841 0.827443 -0.492452 -0.269869 -0.417832 -0.218842 -0.881774 0.375173 0.842377 -0.386841 0.874498 -0.403018 -0.269869 -0.392595 -0.261428 -0.881774 0.284819 0.877059 -0.386841 0.911921 -0.309145 -0.269869 -0.363033 -0.301135 -0.881774 0.191329 0.902079 -0.386841 0.939087 -0.212805 -0.269869 -0.329810 -0.337196 -0.881774 0.096648 0.917068 -0.386841 0.956219 -0.113210 -0.269869 -0.292653 -0.369905 -0.881774 0.000000 0.922146 -0.386841 0.962818 -0.012368 -0.269869 -0.252272 -0.398540 -0.881774 -0.096648 0.917068 -0.386841 0.958899 0.087651 -0.269869 -0.209536 -0.422575 -0.881774 -0.191329 0.902079 -0.386841 0.944432 0.187668 -0.269869 -0.164093 -0.442209 -0.881774 -0.284819 0.877059 -0.386841 0.919562 0.285618 -0.269869 -0.116843 -0.456972 -0.881774 -0.375173 0.842377 -0.386841 0.884562 0.380421 -0.269869 -0.068305 -0.466701 -0.881774 -0.461394 0.798417 -0.386841 0.840290 0.470195 -0.269869 -0.019487 -0.471270 -0.881774 -0.541786 0.746205 -0.386841 0.786383 0.555674 -0.269869 0.030013 -0.470717 -0.881774 -0.617010 0.685312 -0.386841 0.723813 0.635032 -0.269869 0.079182 -0.464979 -0.881774 -0.685438 0.616870 -0.386841 0.653978 0.706742 -0.269869 0.127025 -0.454247 -0.881774 -0.745773 0.542380 -0.386841 0.576305 0.771391 -0.269869 0.173934 -0.438432 -0.881774 -0.798511 0.461231 -0.386841 0.492283 0.827543 -0.269869 0.218927 -0.417787 -0.881774 -0.842454 0.375001 -0.386841 0.402840 0.874580 -0.269869 0.261508 -0.392541 -0.881774 -0.877117 0.284641 -0.386841 0.309871 0.911675 -0.269869 0.300846 -0.363273 -0.881774 -0.901927 0.192047 -0.386841 0.212614 0.939130 -0.269869 0.337263 -0.329741 -0.881774 -0.917087 0.096461 -0.386841 0.056609 0.571892 -0.818373 0.039712 -0.820329 -0.570512 -0.997606 -0.000203 -0.069148 -0.003642 0.574675 -0.818373 0.125469 -0.811649 -0.570512 -0.992091 -0.104758 -0.069148 -0.063280 0.571192 -0.818373 0.209051 -0.794238 -0.570512 -0.975855 -0.207184 -0.069148 -0.122797 0.561414 -0.818373 0.291141 -0.767954 -0.570512 -0.948766 -0.308319 -0.069148 -0.180961 0.545452 -0.818373 0.370025 -0.733211 -0.570512 -0.911227 -0.406059 -0.069148 -0.236608 0.523719 -0.818373 0.444142 -0.690836 -0.570512 -0.864149 -0.498462 -0.069148 -0.290194 0.496036 -0.818373 0.514101 -0.640482 -0.570512 -0.807148 -0.586286 -0.069148 -0.340584 0.462890 -0.818373 0.578396 -0.583073 -0.570512 -0.741256 -0.667651 -0.069148 -0.387223 0.424645 -0.818373 0.636321 -0.519242 -0.570512 -0.667199 -0.741663 -0.069148 -0.429214 0.382152 -0.818373 0.686787 -0.450378 -0.570512 -0.586600 -0.806920 -0.069148 -0.466903 0.335063 -0.818373 0.730207 -0.375917 -0.570512 -0.498798 -0.863956 -0.069148 -0.499448 0.284283 -0.818373 0.765585 -0.297316 -0.570512 -0.405502 -0.911475 -0.069148 -0.526262 0.230898 -0.818373 0.792313 -0.216232 -0.570512 -0.308689 -0.948646 -0.069148 -0.547563 0.174470 -0.818373 0.810612 -0.132001 -0.570512 -0.207564 -0.975775 -0.069148 -0.562833 0.116121 -0.818373 0.819983 -0.046316 -0.570512 -0.104152 -0.992155 -0.069148 -0.571857 0.056958 -0.818373 0.820353 0.039211 -0.570512 -0.000406 -0.997606 -0.069148 -0.574677 -0.003291 -0.818373 0.811725 0.124973 -0.570512 0.104152 -0.992155 -0.069148 -0.571168 -0.063503 -0.818373 0.794157 0.209360 -0.570512 0.207564 -0.975775 -0.069148 -0.561366 -0.123015 -0.818373 0.767841 0.291440 -0.570512 0.308689 -0.948646 -0.069148 -0.545563 -0.180628 -0.818373 0.733437 0.369577 -0.570512 0.405502 -0.911475 -0.069148 -0.523627 -0.236812 -0.818373 0.690663 0.444411 -0.570512 0.498798 -0.863956 -0.069148 -0.495924 -0.290387 -0.818373 0.640282 0.514350 -0.570512 0.586600 -0.806920 -0.069148 -0.463098 -0.340302 -0.818373 0.583426 0.578040 -0.570512 0.667199 -0.741663 -0.069148 -0.424882 -0.386963 -0.818373 0.519630 0.636004 -0.570512 0.741256 -0.667651 -0.069148 -0.381985 -0.429363 -0.818373 0.450111 0.686962 -0.570512 0.807148 -0.586286 -0.069148 -0.334881 -0.467033 -0.818373 0.375633 0.730353 -0.570512 0.864149 -0.498462 -0.069148 -0.284588 -0.499274 -0.818373 0.297784 0.765403 -0.570512 0.911227 -0.406059 -0.069148 -0.230693 -0.526351 -0.818373 0.215924 0.792397 -0.570512 0.948766 -0.308319 -0.069148 -0.174257 -0.547631 -0.818373 0.131686 0.810664 -0.570512 0.975855 -0.207184 -0.069148 -0.116464 -0.562762 -0.818373 0.046817 0.819954 -0.570512 0.992091 -0.104758 -0.069148 -0.056841 -0.571869 -0.818373 -0.039378 0.820345 -0.570512 0.997606 -0.000203 -0.069148 0.003408 -0.574677 -0.818373 -0.125139 0.811700 -0.570512 0.992133 0.104354 -0.069148 0.063619 -0.571155 -0.818373 -0.209522 0.794114 -0.570512 0.975732 0.207762 -0.069148 0.122568 -0.561464 -0.818373 -0.290829 0.768072 -0.570512 0.948892 0.307933 -0.069148 0.180739 -0.545526 -0.818373 -0.369726 0.733361 -0.570512 0.911392 0.405688 -0.069148 0.236918 -0.523579 -0.818373 -0.444552 0.690573 -0.570512 0.863854 0.498974 -0.069148 0.290488 -0.495864 -0.818373 -0.514480 0.640177 -0.570512 0.806800 0.586764 -0.069148 0.340396 -0.463029 -0.818373 -0.578159 0.583309 -0.570512 0.741527 0.667350 -0.069148 0.387050 -0.424803 -0.818373 -0.636110 0.519501 -0.570512 0.667501 0.741392 -0.069148 0.429441 -0.381898 -0.818373 -0.687054 0.449971 -0.570512 0.586121 0.807267 -0.069148 0.466766 -0.335253 -0.818373 -0.730054 0.376215 -0.570512 0.499150 0.863752 -0.069148 0.499332 -0.284486 -0.818373 -0.765463 0.297628 -0.570512 0.405873 0.911310 -0.069148 0.526398 -0.230586 -0.818373 -0.792441 0.215763 -0.570512 0.308126 0.948829 -0.069148 0.547666 -0.174145 -0.818373 -0.810690 0.131521 -0.570512 0.206985 0.975897 -0.069148 0.562786 -0.116350 -0.818373 -0.819964 0.046650 -0.570512 0.104556 0.992112 -0.069148 0.571880 -0.056725 -0.818373 -0.820337 -0.039545 -0.570512 0.000000 0.997606 -0.069148 0.574676 0.003525 -0.818373 -0.811674 -0.125304 -0.570512 -0.104556 0.992112 -0.069148 0.571205 0.063164 -0.818373 -0.794281 -0.208889 -0.570512 -0.206985 0.975897 -0.069148 0.561439 0.122683 -0.818373 -0.768013 -0.290985 -0.570512 -0.308126 0.948829 -0.069148 0.545489 0.180850 -0.818373 -0.733286 -0.369876 -0.570512 -0.405873 0.911310 -0.069148 0.523530 0.237025 -0.818373 -0.690482 -0.444692 -0.570512 -0.499150 0.863752 -0.069148 0.496096 0.290093 -0.818373 -0.640587 -0.513970 -0.570512 -0.586121 0.807267 -0.069148 0.462959 0.340490 -0.818373 -0.583191 -0.578278 -0.570512 -0.667501 0.741392 -0.069148 0.424724 0.387136 -0.818373 -0.519371 -0.636215 -0.570512 -0.741527 0.667350 -0.069148 0.382239 0.429136 -0.818373 -0.450518 -0.686695 -0.570512 -0.806800 0.586764 -0.069148 0.335158 0.466834 -0.818373 -0.376066 -0.730131 -0.570512 -0.863854 0.498974 -0.069148 0.284384 0.499390 -0.818373 -0.297472 -0.765524 -0.570512 -0.911392 0.405688 -0.069148 0.230478 0.526445 -0.818373 -0.215601 -0.792485 -0.570512 -0.948892 0.307933 -0.069148 0.174581 0.547527 -0.818373 -0.132166 -0.810585 -0.570512 -0.975732 0.207762 -0.069148 0.116235 0.562809 -0.818373 -0.046483 -0.819973 -0.570512 -0.992133 0.104354 -0.069148 -0.163339 0.040752 0.985728 0.006464 0.999169 -0.040236 -0.986549 -0.000201 -0.163467 -0.166711 0.023408 0.985728 -0.098292 0.994344 -0.040236 -0.981094 -0.103597 -0.163467 -0.168240 0.005975 0.985728 -0.200987 0.978767 -0.040236 -0.965039 -0.204887 -0.163467 -0.167940 -0.011691 0.985728 -0.302461 0.952312 -0.040236 -0.938250 -0.304902 -0.163467 -0.165789 -0.029227 0.985728 -0.400605 0.915367 -0.040236 -0.901127 -0.401558 -0.163467 -0.161859 -0.046281 0.985728 -0.493467 0.868833 -0.040236 -0.854571 -0.492937 -0.163467 -0.156117 -0.062990 0.985728 -0.581809 0.812330 -0.040236 -0.798201 -0.579787 -0.163467 -0.148656 -0.079005 0.985728 -0.663743 0.746878 -0.040236 -0.733040 -0.660251 -0.163467 -0.139557 -0.094150 0.985728 -0.738365 0.673199 -0.040236 -0.659803 -0.733443 -0.163467 -0.129029 -0.108129 0.985728 -0.804263 0.592910 -0.040236 -0.580098 -0.797976 -0.163467 -0.116986 -0.121057 0.985728 -0.861974 0.505352 -0.040236 -0.493269 -0.854379 -0.163467 -0.103654 -0.132651 0.985728 -0.910192 0.412228 -0.040236 -0.401007 -0.901372 -0.163467 -0.089323 -0.142695 0.985728 -0.948068 0.315512 -0.040236 -0.305267 -0.938131 -0.163467 -0.073875 -0.151271 0.985728 -0.975915 0.214410 -0.040236 -0.205263 -0.964959 -0.163467 -0.057614 -0.158180 0.985728 -0.993012 0.110946 -0.040236 -0.102998 -0.981158 -0.163467 -0.040852 -0.163314 0.985728 -0.999165 0.007074 -0.040236 -0.000402 -0.986549 -0.163467 -0.023510 -0.166696 0.985728 -0.994404 -0.097685 -0.040236 0.102998 -0.981158 -0.163467 -0.005910 -0.168242 0.985728 -0.978689 -0.201367 -0.040236 0.205263 -0.964959 -0.163467 0.011756 -0.167935 0.985728 -0.952194 -0.302832 -0.040236 0.305267 -0.938131 -0.163467 0.029126 -0.165807 0.985728 -0.915612 -0.400045 -0.040236 0.401007 -0.901372 -0.163467 0.046344 -0.161841 0.985728 -0.868641 -0.493805 -0.040236 0.493269 -0.854379 -0.163467 0.063050 -0.156093 0.985728 -0.812103 -0.582125 -0.040236 0.580098 -0.797976 -0.163467 0.078914 -0.148704 0.985728 -0.747283 -0.663286 -0.040236 0.659803 -0.733443 -0.163467 0.094065 -0.139614 0.985728 -0.673650 -0.737954 -0.040236 0.733040 -0.660251 -0.163467 0.108179 -0.128987 0.985728 -0.592597 -0.804493 -0.040236 0.798201 -0.579787 -0.163467 0.121102 -0.116938 0.985728 -0.505017 -0.862171 -0.040236 0.854571 -0.492937 -0.163467 0.132588 -0.103735 0.985728 -0.412784 -0.909940 -0.040236 0.901127 -0.401558 -0.163467 0.142730 -0.089267 0.985728 -0.315143 -0.948191 -0.040236 0.938250 -0.304902 -0.163467 0.151299 -0.073816 0.985728 -0.214030 -0.975998 -0.040236 0.965039 -0.204887 -0.163467 0.158145 -0.057711 0.985728 -0.111552 -0.992944 -0.040236 0.981094 -0.103597 -0.163467 0.163322 -0.040818 0.985728 -0.006870 -0.999167 -0.040236 0.986549 -0.000201 -0.163467 0.166701 -0.023476 0.985728 0.097887 -0.994384 -0.040236 0.981137 0.103198 -0.163467 0.168243 -0.005875 0.985728 0.201567 -0.978648 -0.040236 0.964917 0.205459 -0.163467 0.167944 0.011622 0.985728 0.302074 -0.952435 -0.040236 0.938374 0.304520 -0.163467 0.165801 0.029160 0.985728 0.400232 -0.915530 -0.040236 0.901290 0.401191 -0.163467 0.161832 0.046376 0.985728 0.493982 -0.868541 -0.040236 0.854279 0.493443 -0.163467 0.156080 0.063082 0.985728 0.582291 -0.811984 -0.040236 0.797858 0.580260 -0.163467 0.148688 0.078944 0.985728 0.663439 -0.747148 -0.040236 0.733308 0.659953 -0.163467 0.139595 0.094093 0.985728 0.738091 -0.673500 -0.040236 0.660102 0.733174 -0.163467 0.128965 0.108206 0.985728 0.804614 -0.592434 -0.040236 0.579625 0.798319 -0.163467 0.117035 0.121009 0.985728 0.861768 -0.505704 -0.040236 0.493617 0.854178 -0.163467 0.103708 0.132609 0.985728 0.910024 -0.412599 -0.040236 0.401375 0.901209 -0.163467 0.089238 0.142748 0.985728 0.948255 -0.314950 -0.040236 0.304711 0.938312 -0.163467 0.073786 0.151314 0.985728 0.976042 -0.213831 -0.040236 0.204691 0.965080 -0.163467 0.057679 0.158157 0.985728 0.992966 -0.111350 -0.040236 0.103397 0.981115 -0.163467 0.040785 0.163331 0.985728 0.999168 -0.006667 -0.040236 0.000000 0.986549 -0.163467 0.023442 0.166706 0.985728 0.994364 0.098090 -0.040236 -0.103397 0.981115 -0.163467 0.006009 0.168239 0.985728 0.978808 0.200787 -0.040236 -0.204691 0.965080 -0.163467 -0.011656 0.167942 0.985728 0.952374 0.302268 -0.040236 -0.304711 0.938312 -0.163467 -0.029194 0.165795 0.985728 0.915449 0.400418 -0.040236 -0.401375 0.901209 -0.163467 -0.046409 0.161823 0.985728 0.868440 0.494159 -0.040236 -0.493617 0.854178 -0.163467 -0.062958 0.156130 0.985728 0.812448 0.581644 -0.040236 -0.579625 0.798319 -0.163467 -0.078975 0.148672 0.985728 0.747013 0.663591 -0.040236 -0.660102 0.733174 -0.163467 -0.094122 0.139576 0.985728 0.673350 0.738228 -0.040236 -0.733308 0.659953 -0.163467 -0.108103 0.129051 0.985728 0.593074 0.804142 -0.040236 -0.797858 0.580260 -0.163467 -0.121033 0.117010 0.985728 0.505528 0.861871 -0.040236 -0.854279 0.493443 -0.163467 -0.132630 0.103681 0.985728 0.412414 0.910108 -0.040236 -0.901290 0.401191 -0.163467 -0.142766 0.089209 0.985728 0.314756 0.948319 -0.040236 -0.938374 0.304520 -0.163467 -0.151256 0.073906 0.985728 0.214608 0.975871 -0.040236 -0.964917 0.205459 -0.163467 -0.158168 0.057646 0.985728 0.111148 0.992989 -0.040236 -0.981137 0.103198 -0.163467 -0.498263 -0.497158 -0.710329 0.285656 -0.867660 0.406900 -0.818618 -0.000167 0.574339 -0.443413 -0.546642 -0.710329 0.375020 -0.832942 0.406900 -0.814092 -0.085963 0.574339 -0.384269 -0.589720 -0.710329 0.459463 -0.789510 0.406900 -0.800769 -0.170011 0.574339 -0.320346 -0.626746 -0.710329 0.539679 -0.737007 0.406900 -0.778540 -0.253001 0.574339 -0.252894 -0.656869 -0.710329 0.613950 -0.676386 0.406900 -0.747736 -0.333205 0.574339 -0.183336 -0.679574 -0.710329 0.680851 -0.608995 0.406900 -0.709105 -0.409029 0.574339 -0.111102 -0.695046 -0.710329 0.740928 -0.534283 0.406900 -0.662331 -0.481095 0.574339 -0.037645 -0.702862 -0.710329 0.792844 -0.453686 0.406900 -0.608261 -0.547863 0.574339 0.036228 -0.702937 -0.710329 0.836027 -0.368092 0.406900 -0.547491 -0.608595 0.574339 0.109006 -0.695378 -0.710329 0.869722 -0.279313 0.406900 -0.481353 -0.662144 0.574339 0.181286 -0.680123 -0.710329 0.894206 -0.186621 0.406900 -0.409304 -0.708946 0.574339 0.251569 -0.657378 -0.710329 0.908841 -0.091874 0.406900 -0.332748 -0.747940 0.574339 0.318454 -0.627710 -0.710329 0.913468 0.002971 0.406900 -0.253304 -0.778442 0.574339 0.382489 -0.590876 -0.710329 0.908126 0.098693 0.406900 -0.170323 -0.800703 0.574339 0.442310 -0.547534 -0.710329 0.892781 0.193327 0.406900 -0.085465 -0.814144 0.574339 0.496854 -0.498567 -0.710329 0.867834 0.285126 0.406900 -0.000333 -0.818618 0.574339 0.546371 -0.443747 -0.710329 0.833171 0.374511 0.406900 0.085465 -0.814144 0.574339 0.589870 -0.384039 -0.710329 0.789331 0.459770 0.406900 0.170323 -0.800703 0.574339 0.626871 -0.320102 -0.710329 0.736797 0.539966 0.406900 0.253304 -0.778442 0.574339 0.656715 -0.253295 -0.710329 0.676761 0.613537 0.406900 0.332748 -0.747940 0.574339 0.679645 -0.183072 -0.710329 0.608730 0.681087 0.406900 0.409304 -0.708946 0.574339 0.695089 -0.110832 -0.710329 0.533995 0.741136 0.406900 0.481353 -0.662144 0.574339 0.702839 -0.038074 -0.710329 0.454170 0.792567 0.406900 0.547491 -0.608595 0.574339 0.702959 0.035798 -0.710329 0.368602 0.835802 0.406900 0.608261 -0.547863 0.574339 0.695335 0.109276 -0.710329 0.278974 0.869831 0.406900 0.662331 -0.481095 0.574339 0.680053 0.181551 -0.710329 0.186274 0.894279 0.406900 0.709105 -0.409029 0.574339 0.657531 0.251168 -0.710329 0.092430 0.908785 0.406900 0.747736 -0.333205 0.574339 0.627586 0.318698 -0.710329 -0.003327 0.913467 0.406900 0.778540 -0.253001 0.574339 0.590727 0.382719 -0.710329 -0.099046 0.908087 0.406900 0.800769 -0.170011 0.574339 0.547805 0.441976 -0.710329 -0.192782 0.892899 0.406900 0.814092 -0.085963 0.574339 0.498465 0.496955 -0.710329 -0.285302 0.867776 0.406900 0.818618 -0.000167 0.574339 0.443636 0.546461 -0.710329 -0.374680 0.833095 0.406900 0.814127 0.085631 0.574339 0.383919 0.589948 -0.710329 -0.459931 0.789238 0.406900 0.800668 0.170486 0.574339 0.320601 0.626616 -0.710329 -0.539379 0.737227 0.406900 0.778643 0.252684 0.574339 0.253161 0.656766 -0.710329 -0.613675 0.676636 0.406900 0.747872 0.332900 0.574339 0.182933 0.679682 -0.710329 -0.681211 0.608592 0.406900 0.708863 0.409449 0.574339 0.110690 0.695112 -0.710329 -0.741244 0.533844 0.406900 0.662046 0.481488 0.574339 0.037931 0.702847 -0.710329 -0.792659 0.454009 0.406900 0.608484 0.547615 0.574339 -0.035942 0.702951 -0.710329 -0.835877 0.368432 0.406900 0.547739 0.608372 0.574339 -0.109418 0.695313 -0.710329 -0.869888 0.278797 0.406900 0.480960 0.662429 0.574339 -0.181009 0.680197 -0.710329 -0.894130 0.186986 0.406900 0.409593 0.708779 0.574339 -0.251302 0.657480 -0.710329 -0.908803 0.092244 0.406900 0.333052 0.747804 0.574339 -0.318826 0.627521 -0.710329 -0.913466 -0.003513 0.406900 0.252843 0.778592 0.574339 -0.382839 0.590649 -0.710329 -0.908067 -0.099231 0.406900 0.169848 0.800804 0.574339 -0.442087 0.547715 -0.710329 -0.892859 -0.192964 0.406900 0.085797 0.814109 0.574339 -0.497057 0.498364 -0.710329 -0.867718 -0.285479 0.406900 0.000000 0.818618 0.574339 -0.546552 0.443524 -0.710329 -0.833019 -0.374850 0.406900 -0.085797 0.814109 0.574339 -0.589642 0.384389 -0.710329 -0.789604 -0.459302 0.406900 -0.169848 0.800804 0.574339 -0.626681 0.320473 -0.710329 -0.737117 -0.539529 0.406900 -0.252843 0.778592 0.574339 -0.656818 0.253028 -0.710329 -0.676511 -0.613813 0.406900 -0.333052 0.747804 0.574339 -0.679719 0.182795 -0.710329 -0.608453 -0.681335 0.406900 -0.409593 0.708779 0.574339 -0.695023 0.111244 -0.710329 -0.534434 -0.740819 0.406900 -0.480960 0.662429 0.574339 -0.702855 0.037788 -0.710329 -0.453848 -0.792752 0.406900 -0.547739 0.608372 0.574339 -0.702944 -0.036085 -0.710329 -0.368262 -0.835952 0.406900 -0.608484 0.547615 0.574339 -0.695400 -0.108864 -0.710329 -0.279490 -0.869666 0.406900 -0.662046 0.481488 0.574339 -0.680160 -0.181148 -0.710329 -0.186803 -0.894168 0.406900 -0.708863 0.409449 0.574339 -0.657429 -0.251435 -0.710329 -0.092059 -0.908822 0.406900 -0.747872 0.332900 0.574339 -0.627456 -0.318954 -0.710329 0.003699 -0.913465 0.406900 -0.778643 0.252684 0.574339 -0.590954 -0.382368 -0.710329 0.098508 -0.908146 0.406900 -0.800668 0.170486 0.574339 -0.547625 -0.442199 -0.710329 0.193146 -0.892820 0.406900 -0.814127 0.085631 0.574339 0.068433 -0.883449 -0.463502 -0.128610 -0.468527 0.874038 -0.989331 -0.000201 -0.145683 0.160648 -0.871412 -0.463502 -0.078797 -0.479426 0.874038 -0.983861 -0.103889 -0.145683 0.250243 -0.850026 -0.463502 -0.028601 -0.485015 0.874038 -0.967761 -0.205465 -0.145683 0.337954 -0.819117 -0.463502 0.022390 -0.485342 0.874038 -0.940896 -0.305762 -0.145683 0.421942 -0.779186 -0.463502 0.073134 -0.480322 0.874038 -0.903668 -0.402691 -0.145683 0.500551 -0.731173 -0.463502 0.122602 -0.470135 0.874038 -0.856981 -0.494327 -0.145683 0.574427 -0.674685 -0.463502 0.171200 -0.454696 0.874038 -0.800453 -0.581422 -0.145683 0.641975 -0.610765 -0.463502 0.217913 -0.434249 0.874038 -0.735107 -0.662113 -0.145683 0.702452 -0.540118 -0.463502 0.262225 -0.409018 0.874038 -0.661664 -0.735511 -0.145683 0.754728 -0.464276 -0.463502 0.303269 -0.379586 0.874038 -0.581734 -0.800226 -0.145683 0.799230 -0.382618 -0.463502 0.341382 -0.345711 0.874038 -0.494660 -0.856789 -0.145683 0.834930 -0.296746 -0.463502 0.375735 -0.308027 0.874038 -0.402138 -0.903914 -0.145683 0.861224 -0.208466 -0.463502 0.405682 -0.267357 0.874038 -0.306128 -0.940777 -0.145683 0.878330 -0.117056 -0.463502 0.431469 -0.223366 0.874038 -0.205842 -0.967680 -0.145683 0.885761 -0.024356 -0.463502 0.452503 -0.176915 0.874038 -0.103288 -0.983925 -0.145683 0.883491 0.067893 -0.463502 0.468448 -0.128897 0.874038 -0.000403 -0.989331 -0.145683 0.871510 0.160115 -0.463502 0.479377 -0.079090 0.874038 0.103288 -0.983925 -0.145683 0.849929 0.250574 -0.463502 0.485026 -0.028412 0.874038 0.205842 -0.967680 -0.145683 0.818986 0.338272 -0.463502 0.485333 0.022578 0.874038 0.306128 -0.940777 -0.145683 0.779444 0.421466 -0.463502 0.480367 0.072840 0.874038 0.402138 -0.903914 -0.145683 0.730978 0.500836 -0.463502 0.470087 0.122785 0.874038 0.494660 -0.856789 -0.145683 0.674461 0.574689 -0.463502 0.454629 0.171377 0.874038 0.581734 -0.800226 -0.145683 0.611157 0.641602 -0.463502 0.434382 0.217647 0.874038 0.661664 -0.735511 -0.145683 0.540547 0.702122 -0.463502 0.409178 0.261975 0.874038 0.735107 -0.662113 -0.145683 0.463982 0.754908 -0.463502 0.379468 0.303417 0.874038 0.800453 -0.581422 -0.145683 0.382307 0.799379 -0.463502 0.345578 0.341517 0.874038 0.856981 -0.494327 -0.145683 0.297256 0.834748 -0.463502 0.308257 0.375547 0.874038 0.903668 -0.402691 -0.145683 0.208131 0.861306 -0.463502 0.267199 0.405786 0.874038 0.940896 -0.305762 -0.145683 0.116714 0.878376 -0.463502 0.223198 0.431556 0.874038 0.967761 -0.205465 -0.145683 0.024897 0.885746 -0.463502 0.177191 0.452395 0.874038 0.983861 -0.103889 -0.145683 -0.068073 0.883477 -0.463502 0.128801 0.468474 0.874038 0.989331 -0.000201 -0.145683 -0.160293 0.871477 -0.463502 0.078992 0.479393 0.874038 0.983904 0.103489 -0.145683 -0.250747 0.849878 -0.463502 0.028314 0.485032 0.874038 0.967639 0.206039 -0.145683 -0.337620 0.819255 -0.463502 -0.022192 0.485351 0.874038 0.941021 0.305379 -0.145683 -0.421624 0.779358 -0.463502 -0.072938 0.480352 0.874038 0.903832 0.402323 -0.145683 -0.500985 0.730876 -0.463502 -0.122880 0.470062 0.874038 0.856688 0.494835 -0.145683 -0.574827 0.674344 -0.463502 -0.171470 0.454594 0.874038 0.800108 0.581897 -0.145683 -0.641726 0.611026 -0.463502 -0.217736 0.434337 0.874038 0.735377 0.661814 -0.145683 -0.702232 0.540404 -0.463502 -0.262058 0.409125 0.874038 0.661964 0.735242 -0.145683 -0.755002 0.463829 -0.463502 -0.303494 0.379406 0.874038 0.581259 0.800571 -0.145683 -0.799074 0.382944 -0.463502 -0.341242 0.345850 0.874038 0.495009 0.856587 -0.145683 -0.834809 0.297086 -0.463502 -0.375610 0.308180 0.874038 0.402507 0.903750 -0.145683 -0.861348 0.207956 -0.463502 -0.405841 0.267117 0.874038 0.305570 0.940959 -0.145683 -0.878399 0.116535 -0.463502 -0.431601 0.223110 0.874038 0.205268 0.967802 -0.145683 -0.885751 0.024716 -0.463502 -0.452431 0.177099 0.874038 0.103689 0.983883 -0.145683 -0.883463 -0.068253 -0.463502 -0.468500 0.128706 0.874038 0.000000 0.989331 -0.145683 -0.871444 -0.160470 -0.463502 -0.479409 0.078895 0.874038 -0.103689 0.983883 -0.145683 -0.850077 -0.250070 -0.463502 -0.485009 0.028700 0.874038 -0.205268 0.967802 -0.145683 -0.819186 -0.337787 -0.463502 -0.485346 -0.022291 0.874038 -0.305570 0.940959 -0.145683 -0.779272 -0.421783 -0.463502 -0.480337 -0.073036 0.874038 -0.402507 0.903750 -0.145683 -0.730774 -0.501133 -0.463502 -0.470037 -0.122976 0.874038 -0.495009 0.856587 -0.145683 -0.674802 -0.574289 -0.463502 -0.454731 -0.171108 0.874038 -0.581259 0.800571 -0.145683 -0.610896 -0.641851 -0.463502 -0.434293 -0.217824 0.874038 -0.661964 0.735242 -0.145683 -0.540261 -0.702342 -0.463502 -0.409072 -0.262142 0.874038 -0.735377 0.661814 -0.145683 -0.464430 -0.754633 -0.463502 -0.379648 -0.303192 0.874038 -0.800108 0.581897 -0.145683 -0.382781 -0.799152 -0.463502 -0.345780 -0.341312 0.874038 -0.856688 0.494835 -0.145683 -0.296916 -0.834869 -0.463502 -0.308104 -0.375672 0.874038 -0.903832 0.402323 -0.145683 -0.207780 -0.861390 -0.463502 -0.267034 -0.405895 0.874038 -0.941021 0.305379 -0.145683 -0.117235 -0.878306 -0.463502 -0.223454 -0.431423 0.874038 -0.967639 0.206039 -0.145683 -0.024536 -0.885756 -0.463502 -0.177007 -0.452467 0.874038 -0.983904 0.103489 -0.145683 -0.298847 0.231611 0.925768 0.070962 0.972808 -0.220473 -0.951659 -0.000194 -0.307157 -0.321476 0.199014 0.925768 -0.031387 0.974888 -0.220473 -0.946397 -0.099933 -0.307157 -0.340399 0.164566 0.925768 -0.132423 0.966362 -0.220473 -0.930910 -0.197641 -0.307157 -0.355772 0.127983 0.925768 -0.232975 0.947161 -0.220473 -0.905068 -0.294119 -0.307157 -0.367226 0.089991 0.925768 -0.330961 0.917527 -0.220473 -0.869258 -0.387357 -0.307157 -0.374584 0.051382 0.925768 -0.424424 0.878212 -0.220473 -0.824349 -0.475504 -0.307157 -0.377906 0.011840 0.925768 -0.514129 0.828893 -0.220473 -0.769973 -0.559283 -0.307157 -0.377066 -0.027833 0.925768 -0.598172 0.770443 -0.220473 -0.707115 -0.636901 -0.307157 -0.372072 -0.067199 0.925768 -0.675625 0.703507 -0.220473 -0.636469 -0.707504 -0.307157 -0.363086 -0.105461 0.925768 -0.745008 0.629568 -0.220473 -0.559582 -0.769755 -0.307157 -0.350033 -0.142934 0.925768 -0.806888 0.548018 -0.220473 -0.475824 -0.824164 -0.307157 -0.333125 -0.178833 0.925768 -0.859880 0.460432 -0.220473 -0.386826 -0.869495 -0.307157 -0.312760 -0.212449 0.925768 -0.903033 0.368678 -0.220473 -0.294471 -0.904954 -0.307157 -0.288771 -0.244059 0.925768 -0.936699 0.272003 -0.220473 -0.198004 -0.930833 -0.307157 -0.261602 -0.272980 0.925768 -0.960049 0.172333 -0.220473 -0.099355 -0.946458 -0.307157 -0.231794 -0.298706 0.925768 -0.972765 0.071556 -0.220473 -0.000388 -0.951659 -0.307157 -0.199211 -0.321354 0.925768 -0.974907 -0.030791 -0.220473 0.099355 -0.946458 -0.307157 -0.164433 -0.340463 0.925768 -0.966311 -0.132799 -0.220473 0.198004 -0.930833 -0.307157 -0.127845 -0.355822 0.925768 -0.947070 -0.233344 -0.220473 0.294471 -0.904954 -0.307157 -0.090215 -0.367171 0.925768 -0.917729 -0.330401 -0.220473 0.386826 -0.869495 -0.307157 -0.051236 -0.374604 0.925768 -0.878047 -0.424765 -0.220473 0.475824 -0.824164 -0.307157 -0.011693 -0.377911 0.925768 -0.828692 -0.514452 -0.220473 0.559582 -0.769755 -0.307157 0.027602 -0.377083 0.925768 -0.770808 -0.597701 -0.220473 0.636469 -0.707504 -0.307157 0.066971 -0.372113 0.925768 -0.703920 -0.675195 -0.220473 0.707115 -0.636901 -0.307157 0.105603 -0.363045 0.925768 -0.629278 -0.745253 -0.220473 0.769973 -0.559283 -0.307157 0.143071 -0.349978 0.925768 -0.547704 -0.807101 -0.220473 0.824349 -0.475504 -0.307157 0.178630 -0.333234 0.925768 -0.460958 -0.859599 -0.220473 0.869258 -0.387357 -0.307157 0.212571 -0.312677 0.925768 -0.368327 -0.903176 -0.220473 0.905068 -0.294119 -0.307157 0.244171 -0.288676 0.925768 -0.271639 -0.936805 -0.220473 0.930910 -0.197641 -0.307157 0.272820 -0.261768 0.925768 -0.172919 -0.959943 -0.220473 0.946397 -0.099933 -0.307157 0.298753 -0.231733 0.925768 -0.071358 -0.972779 -0.220473 0.951659 -0.000194 -0.307157 0.321395 -0.199145 0.925768 0.030990 -0.974901 -0.220473 0.946438 0.099548 -0.307157 0.340497 -0.164364 0.925768 0.132995 -0.966284 -0.220473 0.930792 0.198193 -0.307157 0.355720 -0.128128 0.925768 0.232589 -0.947256 -0.220473 0.905188 0.293750 -0.307157 0.367190 -0.090141 0.925768 0.330588 -0.917662 -0.220473 0.869416 0.387003 -0.307157 0.374615 -0.051160 0.925768 0.424944 -0.877960 -0.220473 0.824067 0.475992 -0.307157 0.377913 -0.011616 0.925768 0.514621 -0.828588 -0.220473 0.769641 0.559739 -0.307157 0.377077 0.027679 0.925768 0.597858 -0.770687 -0.220473 0.707375 0.636613 -0.307157 0.372100 0.067047 0.925768 0.675339 -0.703782 -0.220473 0.636757 0.707245 -0.307157 0.363023 0.105676 0.925768 0.745381 -0.629126 -0.220473 0.559126 0.770086 -0.307157 0.350091 0.142792 0.925768 0.806664 -0.548347 -0.220473 0.476160 0.823970 -0.307157 0.333198 0.178698 0.925768 0.859692 -0.460782 -0.220473 0.387180 0.869337 -0.307157 0.312634 0.212635 0.925768 0.903251 -0.368143 -0.220473 0.293935 0.905128 -0.307157 0.288626 0.244230 0.925768 0.936861 -0.271448 -0.220473 0.197452 0.930950 -0.307157 0.261713 0.272873 0.925768 0.959978 -0.172724 -0.220473 0.099741 0.946418 -0.307157 0.231672 0.298800 0.925768 0.972794 -0.071160 -0.220473 0.000000 0.951659 -0.307157 0.199080 0.321435 0.925768 0.974894 0.031188 -0.220473 -0.099741 0.946418 -0.307157 0.164635 0.340366 0.925768 0.966389 0.132226 -0.220473 -0.197452 0.930950 -0.307157 0.128056 0.355746 0.925768 0.947209 0.232782 -0.220473 -0.293935 0.905128 -0.307157 0.090066 0.367208 0.925768 0.917595 0.330774 -0.220473 -0.387180 0.869337 -0.307157 0.051084 0.374625 0.925768 0.877874 0.425123 -0.220473 -0.476160 0.823970 -0.307157 0.011917 0.377904 0.925768 0.828997 0.513961 -0.220473 -0.559126 0.770086 -0.307157 -0.027756 0.377072 0.925768 0.770565 0.598015 -0.220473 -0.636757 0.707245 -0.307157 -0.067123 0.372086 0.925768 0.703645 0.675482 -0.220473 -0.707375 0.636613 -0.307157 -0.105387 0.363107 0.925768 0.629719 0.744879 -0.220473 -0.769641 0.559739 -0.307157 -0.142863 0.350062 0.925768 0.548182 0.806776 -0.220473 -0.824067 0.475992 -0.307157 -0.178765 0.333161 0.925768 0.460607 0.859786 -0.220473 -0.869416 0.387003 -0.307157 -0.212699 0.312590 0.925768 0.367959 0.903326 -0.220473 -0.905188 0.293750 -0.307157 -0.244000 0.288821 0.925768 0.272194 0.936644 -0.220473 -0.930792 0.198193 -0.307157 -0.272927 0.261657 0.925768 0.172528 0.960013 -0.220473 -0.946438 0.099548 -0.307157 0.178034 -0.695527 -0.696093 -0.172076 -0.718500 0.673905 -0.968862 -0.000197 -0.247601 0.249950 -0.673037 -0.696093 -0.095824 -0.732578 0.673905 -0.963505 -0.101740 -0.247601 0.318469 -0.643453 -0.696093 -0.019256 -0.738567 0.673905 -0.947738 -0.201214 -0.247601 0.384154 -0.606531 -0.696093 0.058257 -0.736518 0.673905 -0.921429 -0.299436 -0.247601 0.445607 -0.562928 -0.696093 0.135129 -0.726356 0.673905 -0.884971 -0.394359 -0.247601 0.501638 -0.513627 -0.696093 0.209804 -0.708403 0.673905 -0.839250 -0.484100 -0.247601 0.552707 -0.458223 -0.696093 0.282894 -0.682513 0.673905 -0.783891 -0.569393 -0.247601 0.597689 -0.397772 -0.696093 0.352868 -0.649104 0.673905 -0.719898 -0.648414 -0.247601 0.636086 -0.332939 -0.696093 0.418955 -0.608546 0.673905 -0.647974 -0.720294 -0.247601 0.667213 -0.265106 -0.696093 0.479867 -0.561765 0.673905 -0.569698 -0.783670 -0.247601 0.691323 -0.193718 -0.696093 0.536101 -0.508378 0.673905 -0.484426 -0.839062 -0.247601 0.707819 -0.120195 -0.696093 0.586430 -0.449391 0.673905 -0.393818 -0.885212 -0.247601 0.716472 -0.046065 -0.696093 0.629914 -0.386084 0.673905 -0.299794 -0.921313 -0.247601 0.717354 0.029280 -0.696093 0.666909 -0.317938 0.673905 -0.201583 -0.947659 -0.247601 0.710335 0.104302 -0.696093 0.696558 -0.246290 0.673905 -0.101151 -0.963567 -0.247601 0.695636 0.177609 -0.696093 0.718395 -0.172515 0.673905 -0.000395 -0.968862 -0.247601 0.673190 0.249539 -0.696093 0.732519 -0.096272 0.673905 0.101151 -0.963567 -0.247601 0.643329 0.318720 -0.696093 0.738575 -0.018968 0.673905 0.201583 -0.947659 -0.247601 0.606381 0.384390 -0.696093 0.736495 0.058544 0.673905 0.299794 -0.921313 -0.247601 0.563201 0.445263 -0.696093 0.726438 0.134685 0.673905 0.393818 -0.885212 -0.247601 0.513432 0.501838 -0.696093 0.708321 0.210079 0.673905 0.484426 -0.839062 -0.247601 0.458008 0.552886 -0.696093 0.682402 0.283159 0.673905 0.569698 -0.783670 -0.247601 0.398137 0.597445 -0.696093 0.649320 0.352471 0.673905 0.647974 -0.720294 -0.247601 0.333328 0.635883 -0.696093 0.608802 0.418584 0.673905 0.719898 -0.648414 -0.247601 0.264847 0.667316 -0.696093 0.561579 0.480085 0.673905 0.783891 -0.569393 -0.247601 0.193449 0.691398 -0.696093 0.508170 0.536298 0.673905 0.839250 -0.484100 -0.247601 0.120628 0.707745 -0.696093 0.449749 0.586155 0.673905 0.884971 -0.394359 -0.247601 0.045787 0.716490 -0.696093 0.385839 0.630064 0.673905 0.921429 -0.299436 -0.247601 -0.029559 0.717343 -0.696093 0.317679 0.667033 0.673905 0.947738 -0.201214 -0.247601 -0.103868 0.710398 -0.696093 0.246716 0.696408 0.673905 0.963505 -0.101740 -0.247601 -0.177751 0.695599 -0.696093 0.172369 0.718430 0.673905 0.968862 -0.000197 -0.247601 -0.249676 0.673139 -0.696093 0.096123 0.732539 0.673905 0.963547 0.101347 -0.247601 -0.318851 0.643264 -0.696093 0.018818 0.738578 0.673905 0.947618 0.201776 -0.247601 -0.383907 0.606687 -0.696093 -0.057957 0.736541 0.673905 0.921551 0.299060 -0.247601 -0.445378 0.563110 -0.696093 -0.134833 0.726411 0.673905 0.885132 0.393999 -0.247601 -0.501943 0.513330 -0.696093 -0.210223 0.708278 0.673905 0.838963 0.484597 -0.247601 -0.552979 0.457896 -0.696093 -0.283298 0.682345 0.673905 0.783554 0.569857 -0.247601 -0.597526 0.398015 -0.696093 -0.352604 0.649248 0.673905 0.720162 0.648121 -0.247601 -0.635951 0.333198 -0.696093 -0.418708 0.608717 0.673905 0.648268 0.720030 -0.247601 -0.667370 0.264711 -0.696093 -0.480199 0.561481 0.673905 0.569233 0.784007 -0.247601 -0.691244 0.193999 -0.696093 -0.535894 0.508596 0.673905 0.484768 0.838865 -0.247601 -0.707770 0.120484 -0.696093 -0.586247 0.449630 0.673905 0.394179 0.885052 -0.247601 -0.716499 0.045641 -0.696093 -0.630143 0.385711 0.673905 0.299248 0.921490 -0.247601 -0.717337 -0.029705 -0.696093 -0.667097 0.317543 0.673905 0.201021 0.947779 -0.247601 -0.710377 -0.104013 -0.696093 -0.696458 0.246574 0.673905 0.101544 0.963526 -0.247601 -0.695563 -0.177893 -0.696093 -0.718465 0.172222 0.673905 0.000000 0.968862 -0.247601 -0.673088 -0.249813 -0.696093 -0.732558 0.095974 0.673905 -0.101544 0.963526 -0.247601 -0.643517 -0.318338 -0.696093 -0.738563 0.019406 0.673905 -0.201021 0.947779 -0.247601 -0.606609 -0.384030 -0.696093 -0.736530 -0.058107 0.673905 -0.299248 0.921490 -0.247601 -0.563019 -0.445492 -0.696093 -0.726383 -0.134981 0.673905 -0.394179 0.885052 -0.247601 -0.513228 -0.502047 -0.696093 -0.708236 -0.210368 0.673905 -0.484768 0.838865 -0.247601 -0.458336 -0.552614 -0.696093 -0.682570 -0.282755 0.673905 -0.569233 0.784007 -0.247601 -0.397894 -0.597608 -0.696093 -0.649176 -0.352736 0.673905 -0.648268 0.720030 -0.247601 -0.333069 -0.636018 -0.696093 -0.608632 -0.418831 0.673905 -0.720162 0.648121 -0.247601 -0.265242 -0.667159 -0.696093 -0.561863 -0.479752 0.673905 -0.783554 0.569857 -0.247601 -0.193858 -0.691284 -0.696093 -0.508487 -0.535997 0.673905 -0.838963 0.484597 -0.247601 -0.120339 -0.707794 -0.696093 -0.449510 -0.586338 0.673905 -0.885132 0.393999 -0.247601 -0.045495 -0.716508 -0.696093 -0.385582 -0.630221 0.673905 -0.921551 0.299060 -0.247601 0.029134 -0.717360 -0.696093 -0.318074 -0.666844 0.673905 -0.947618 0.201776 -0.247601 0.104158 -0.710356 -0.696093 -0.246432 -0.696508 0.673905 -0.963547 0.101347 -0.247601 0.525776 0.822040 0.218655 -0.759073 0.569430 -0.315528 -0.383885 -0.000078 0.923381 0.436724 0.872618 0.218655 -0.814573 0.486737 -0.315528 -0.381763 -0.040312 0.923381 0.343776 0.913240 0.218655 -0.860701 0.399544 -0.315528 -0.375515 -0.079726 0.923381 0.246169 0.944241 0.218655 -0.897836 0.307136 -0.315528 -0.365091 -0.118643 0.923381 0.145850 0.964841 0.218655 -0.925081 0.211345 -0.315528 -0.350646 -0.156254 0.923381 0.044899 0.974769 0.218655 -0.942023 0.114168 -0.315528 -0.332530 -0.191811 0.923381 -0.057511 0.974106 0.218655 -0.948801 0.014809 -0.315528 -0.310595 -0.225606 0.923381 -0.159288 0.962714 0.218655 -0.945127 -0.084714 -0.315528 -0.285240 -0.256916 0.923381 -0.259310 0.940717 0.218655 -0.931044 -0.183304 -0.315528 -0.256742 -0.285397 0.923381 -0.355567 0.908715 0.218655 -0.906984 -0.278967 -0.315528 -0.225727 -0.310508 0.923381 -0.448848 0.866444 0.218655 -0.872751 -0.372489 -0.315528 -0.191940 -0.332455 0.923381 -0.537186 0.814629 0.218655 -0.828905 -0.461908 -0.315528 -0.156040 -0.350741 0.923381 -0.618852 0.754461 0.218655 -0.776474 -0.545463 -0.315528 -0.118785 -0.365045 0.923381 -0.694517 0.685446 0.218655 -0.715029 -0.623839 -0.315528 -0.079872 -0.375484 0.923381 -0.762532 0.608881 0.218655 -0.645708 -0.695344 -0.315528 -0.040078 -0.381787 0.923381 -0.821719 0.526278 0.218655 -0.569893 -0.758725 -0.315528 -0.000156 -0.383885 0.923381 -0.872351 0.437258 0.218655 -0.487235 -0.814275 -0.315528 0.040078 -0.381787 0.923381 -0.913374 0.343421 0.218655 -0.399210 -0.860857 -0.315528 0.079872 -0.375484 0.923381 -0.944337 0.245801 0.218655 -0.306787 -0.897955 -0.315528 0.118785 -0.365045 0.923381 -0.964752 0.146439 0.218655 -0.211910 -0.924952 -0.315528 0.156040 -0.350741 0.923381 -0.974786 0.044520 0.218655 -0.113802 -0.942068 -0.315528 0.191940 -0.332455 0.923381 -0.974084 -0.057890 0.218655 -0.014439 -0.948806 -0.315528 0.225727 -0.310508 0.923381 -0.962811 -0.158699 0.218655 0.084137 -0.945179 -0.315528 0.256742 -0.285397 0.923381 -0.940875 -0.258735 0.218655 0.182735 -0.931155 -0.315528 0.285240 -0.256916 0.923381 -0.908576 -0.355920 0.218655 0.279320 -0.906875 -0.315528 0.310595 -0.225606 0.923381 -0.866269 -0.449185 0.218655 0.372829 -0.872606 -0.315528 0.332530 -0.191811 0.923381 -0.814958 -0.536688 0.218655 0.461402 -0.829187 -0.315528 0.350646 -0.156254 0.923381 -0.754220 -0.619146 0.218655 0.545765 -0.776262 -0.315528 0.365091 -0.118643 0.923381 -0.685176 -0.694784 0.218655 0.624117 -0.714786 -0.315528 0.375515 -0.079726 0.923381 -0.609346 -0.762159 0.218655 0.694949 -0.646133 -0.315528 0.381763 -0.040312 0.923381 -0.526111 -0.821826 0.218655 0.758841 -0.569739 -0.315528 0.383885 -0.000078 0.923381 -0.437080 -0.872440 0.218655 0.814375 -0.487069 -0.315528 0.381779 0.040156 0.923381 -0.343235 -0.913444 0.218655 0.860938 -0.399034 -0.315528 0.375468 0.079948 0.923381 -0.246553 -0.944141 0.218655 0.897711 -0.307502 -0.315528 0.365139 0.118494 0.923381 -0.146243 -0.964781 0.218655 0.924995 -0.211722 -0.315528 0.350709 0.156111 0.923381 -0.044321 -0.974795 0.218655 0.942091 -0.113610 -0.315528 0.332416 0.192008 0.923381 0.058088 -0.974072 0.218655 0.948809 -0.014246 -0.315528 0.310462 0.225790 0.923381 0.158896 -0.962778 0.218655 0.945162 0.084329 -0.315528 0.285344 0.256800 0.923381 0.258927 -0.940823 0.218655 0.931118 0.182924 -0.315528 0.256858 0.285292 0.923381 0.356105 -0.908504 0.218655 0.906818 0.279505 -0.315528 0.225543 0.310641 0.923381 0.448495 -0.866627 0.218655 0.872902 0.372134 -0.315528 0.192076 0.332377 0.923381 0.536854 -0.814848 0.218655 0.829093 0.461571 -0.315528 0.156183 0.350677 0.923381 0.619299 -0.754094 0.218655 0.776151 0.545924 -0.315528 0.118569 0.365115 0.923381 0.694923 -0.685034 0.218655 0.714659 0.624263 -0.315528 0.079649 0.375531 0.923381 0.762284 -0.609191 0.218655 0.645992 0.695081 -0.315528 0.040234 0.381771 0.923381 0.821933 -0.525943 0.218655 0.569584 0.758957 -0.315528 0.000000 0.383885 0.923381 0.872529 -0.436902 0.218655 0.486903 0.814474 -0.315528 -0.040234 0.381771 0.923381 0.913170 -0.343962 0.218655 0.399720 0.860620 -0.315528 -0.079649 0.375531 0.923381 0.944191 -0.246361 0.218655 0.307319 0.897773 -0.315528 -0.118569 0.365115 0.923381 0.964811 -0.146046 0.218655 0.211534 0.925038 -0.315528 -0.156183 0.350677 0.923381 0.974804 -0.044123 0.218655 0.113418 0.942114 -0.315528 -0.192076 0.332377 0.923381 0.974118 0.057313 0.218655 0.015002 0.948798 -0.315528 -0.225543 0.310641 0.923381 0.962746 0.159092 0.218655 -0.084522 0.945145 -0.315528 -0.256858 0.285292 0.923381 0.940770 0.259118 0.218655 -0.183114 0.931081 -0.315528 -0.285344 0.256800 0.923381 0.908787 0.355382 0.218655 -0.278783 0.907041 -0.315528 -0.310462 0.225790 0.923381 0.866535 0.448672 0.218655 -0.372312 0.872827 -0.315528 -0.332416 0.192008 0.923381 0.814739 0.537020 0.218655 -0.461740 0.828999 -0.315528 -0.350709 0.156111 0.923381 0.753968 0.619453 0.218655 -0.546082 0.776039 -0.315528 -0.365139 0.118494 0.923381 0.685587 0.694377 0.218655 -0.623694 0.715156 -0.315528 -0.375468 0.079948 0.923381 0.609036 0.762408 0.218655 -0.695212 0.645850 -0.315528 -0.381779 0.040156 0.923381 -0.808294 0.456993 0.371238 0.415246 0.889470 -0.190822 -0.417409 -0.000085 -0.908719 -0.851739 0.369761 0.371238 0.319736 0.928092 -0.190822 -0.415102 -0.043832 -0.908719 -0.885523 0.279342 0.371238 0.221661 0.956271 -0.190822 -0.408309 -0.086688 -0.908719 -0.909923 0.184994 0.371238 0.120216 0.974236 -0.190822 -0.396974 -0.129004 -0.908719 -0.924300 0.088609 0.371238 0.017447 0.981470 -0.190822 -0.381267 -0.169900 -0.908719 -0.928505 -0.007824 0.371238 -0.084536 0.977978 -0.190822 -0.361570 -0.208562 -0.908719 -0.922571 -0.105095 0.371238 -0.186569 0.963732 -0.190822 -0.337720 -0.245308 -0.908719 -0.906475 -0.201208 0.371238 -0.286548 0.938870 -0.190822 -0.310150 -0.279353 -0.908719 -0.880395 -0.295105 0.371238 -0.383370 0.903667 -0.190822 -0.279163 -0.310320 -0.908719 -0.845002 -0.384907 0.371238 -0.475111 0.858986 -0.190822 -0.245440 -0.337624 -0.908719 -0.800008 -0.471349 0.371238 -0.562522 0.804460 -0.190822 -0.208703 -0.361488 -0.908719 -0.746201 -0.552600 0.371238 -0.643737 0.741073 -0.190822 -0.169666 -0.381371 -0.908719 -0.684802 -0.627079 0.371238 -0.717192 0.670241 -0.190822 -0.129159 -0.396924 -0.908719 -0.615308 -0.695398 0.371238 -0.783488 0.591383 -0.190822 -0.086847 -0.408275 -0.908719 -0.539037 -0.756056 0.371238 -0.841154 0.506011 -0.190822 -0.043578 -0.415128 -0.908719 -0.457487 -0.808015 0.371238 -0.889217 0.415790 -0.190822 -0.000170 -0.417409 -0.908719 -0.370281 -0.851513 0.371238 -0.927897 0.320303 -0.190822 0.043578 -0.415128 -0.908719 -0.278997 -0.885631 0.371238 -0.956357 0.221289 -0.190822 0.086847 -0.408275 -0.908719 -0.184640 -0.909995 0.371238 -0.974282 0.119837 -0.190822 0.129159 -0.396924 -0.908719 -0.089174 -0.924246 0.371238 -0.981459 0.018047 -0.190822 0.169666 -0.381371 -0.908719 0.008185 -0.928502 0.371238 -0.977945 -0.084916 -0.190822 0.208703 -0.361488 -0.908719 0.105454 -0.922530 0.371238 -0.963659 -0.186944 -0.190822 0.245440 -0.337624 -0.908719 0.200654 -0.906598 0.371238 -0.939045 -0.285974 -0.190822 0.279163 -0.310320 -0.908719 0.294567 -0.880575 0.371238 -0.903901 -0.382818 -0.190822 0.310150 -0.279353 -0.908719 0.385235 -0.844853 0.371238 -0.858801 -0.475445 -0.190822 0.337720 -0.245308 -0.908719 0.471660 -0.799824 0.371238 -0.804241 -0.562835 -0.190822 0.361570 -0.208562 -0.908719 0.552144 -0.746538 0.371238 -0.741466 -0.643284 -0.190822 0.381267 -0.169900 -0.908719 0.627345 -0.684558 0.371238 -0.669962 -0.717452 -0.190822 0.396974 -0.129004 -0.908719 0.695637 -0.615038 0.371238 -0.591078 -0.783718 -0.190822 0.408309 -0.086688 -0.908719 0.755727 -0.539499 0.371238 -0.506525 -0.840845 -0.190822 0.415102 -0.043832 -0.908719 0.808108 -0.457322 0.371238 -0.415608 -0.889301 -0.190822 0.417409 -0.000085 -0.908719 0.851588 -0.370108 0.371238 -0.320114 -0.927962 -0.190822 0.415119 0.043663 -0.908719 0.885688 -0.278817 0.371238 -0.221094 -0.956402 -0.190822 0.408257 0.086930 -0.908719 0.909847 -0.185365 0.371238 -0.120613 -0.974187 -0.190822 0.397027 0.128843 -0.908719 0.924264 -0.088985 0.371238 -0.017847 -0.981462 -0.190822 0.381337 0.169744 -0.908719 0.928500 0.008374 0.371238 0.085115 -0.977928 -0.190822 0.361446 0.208776 -0.908719 0.922509 0.105642 0.371238 0.187141 -0.963621 -0.190822 0.337574 0.245508 -0.908719 0.906557 0.200839 0.371238 0.286165 -0.938987 -0.190822 0.310263 0.279226 -0.908719 0.880515 0.294746 0.371238 0.383002 -0.903823 -0.190822 0.279290 0.310206 -0.908719 0.844774 0.385407 0.371238 0.475620 -0.858704 -0.190822 0.245240 0.337769 -0.908719 0.800200 0.471023 0.371238 0.562194 -0.804689 -0.190822 0.208850 0.361403 -0.908719 0.746426 0.552296 0.371238 0.643435 -0.741335 -0.190822 0.169822 0.381302 -0.908719 0.684431 0.627485 0.371238 0.717589 -0.669816 -0.190822 0.128923 0.397001 -0.908719 0.614896 0.695762 0.371238 0.783838 -0.590919 -0.190822 0.086605 0.408326 -0.908719 0.539345 0.755837 0.371238 0.840948 -0.506353 -0.190822 0.043748 0.415111 -0.908719 0.457157 0.808201 0.371238 0.889386 -0.415427 -0.190822 0.000000 0.417409 -0.908719 0.369934 0.851664 0.371238 0.928027 -0.319925 -0.190822 -0.043748 0.415111 -0.908719 0.279522 0.885466 0.371238 0.956225 -0.221856 -0.190822 -0.086605 0.408326 -0.908719 0.185179 0.909885 0.371238 0.974211 -0.120415 -0.190822 -0.128923 0.397001 -0.908719 0.088797 0.924282 0.371238 0.981466 -0.017647 -0.190822 -0.169822 0.381302 -0.908719 -0.008563 0.928498 0.371238 0.977910 0.085315 -0.190822 -0.208850 0.361403 -0.908719 -0.104907 0.922592 0.371238 0.963770 0.186373 -0.190822 -0.245240 0.337769 -0.908719 -0.201023 0.906516 0.371238 0.938929 0.286357 -0.190822 -0.279290 0.310206 -0.908719 -0.294926 0.880455 0.371238 0.903745 0.383186 -0.190822 -0.310263 0.279226 -0.908719 -0.384735 0.845081 0.371238 0.859083 0.474936 -0.190822 -0.337574 0.245508 -0.908719 -0.471186 0.800104 0.371238 0.804575 0.562358 -0.190822 -0.361446 0.208776 -0.908719 -0.552448 0.746313 0.371238 0.741204 0.643586 -0.190822 -0.381337 0.169744 -0.908719 -0.627624 0.684303 0.371238 0.669670 0.717725 -0.190822 -0.397027 0.128843 -0.908719 -0.695272 0.615450 0.371238 0.591543 0.783367 -0.190822 -0.408257 0.086930 -0.908719 -0.755947 0.539191 0.371238 0.506182 0.841051 -0.190822 -0.415119 0.043663 -0.908719 -0.088657 -0.020220 -0.995857 0.001995 -0.999796 0.020123 -0.996060 -0.000203 0.088680 -0.086050 -0.029401 -0.995857 0.106770 -0.994080 0.020123 -0.990553 -0.104596 0.088680 -0.082533 -0.038175 -0.995857 0.209391 -0.977625 0.020123 -0.974343 -0.206863 0.088680 -0.078077 -0.046615 -0.995857 0.310700 -0.950295 0.020123 -0.947296 -0.307842 0.088680 -0.072762 -0.054541 -0.995857 0.408587 -0.912498 0.020123 -0.909815 -0.405430 0.088680 -0.066706 -0.061800 -0.995857 0.501108 -0.865151 0.020123 -0.862810 -0.497689 0.088680 -0.059862 -0.068451 -0.995857 0.589022 -0.807867 0.020123 -0.805897 -0.585377 0.088680 -0.052358 -0.074348 -0.995857 0.670448 -0.741684 0.020123 -0.740107 -0.666617 0.088680 -0.044278 -0.079426 -0.995857 0.744489 -0.667331 0.020123 -0.666165 -0.740514 0.088680 -0.035793 -0.083594 -0.995857 0.809744 -0.586438 0.020123 -0.585690 -0.805669 0.088680 -0.026835 -0.086884 -0.995857 0.866747 -0.498341 0.020123 -0.498025 -0.862616 0.088680 -0.017581 -0.089218 -0.995857 0.914204 -0.404755 0.020123 -0.404874 -0.910062 0.088680 -0.008224 -0.090561 -0.995857 0.951283 -0.307662 0.020123 -0.308210 -0.947176 0.088680 0.001313 -0.090925 -0.995857 0.978289 -0.206267 0.020123 -0.207242 -0.974262 0.088680 0.010835 -0.090286 -0.995857 0.994519 -0.102599 0.020123 -0.103991 -0.990617 0.088680 0.020166 -0.088670 -0.995857 0.999797 0.001384 0.020123 -0.000406 -0.996060 0.088680 0.029348 -0.086068 -0.995857 0.994145 0.106163 0.020123 0.103991 -0.990617 0.088680 0.038207 -0.082518 -0.995857 0.977543 0.209771 0.020123 0.207242 -0.974262 0.088680 0.046645 -0.078059 -0.995857 0.950174 0.311070 0.020123 0.308210 -0.947176 0.088680 0.054497 -0.072795 -0.995857 0.912747 0.408029 0.020123 0.404874 -0.910062 0.088680 0.061826 -0.066682 -0.995857 0.864956 0.501444 0.020123 0.498025 -0.862616 0.088680 0.068474 -0.059835 -0.995857 0.807637 0.589336 0.020123 0.585690 -0.805669 0.088680 0.074316 -0.052404 -0.995857 0.742093 0.669995 0.020123 0.666165 -0.740514 0.088680 0.079399 -0.044326 -0.995857 0.667786 0.744082 0.020123 0.740107 -0.666617 0.088680 0.083607 -0.035760 -0.995857 0.586123 0.809972 0.020123 0.805897 -0.585377 0.088680 0.086895 -0.026801 -0.995857 0.498004 0.866941 0.020123 0.862810 -0.497689 0.088680 0.089208 -0.017635 -0.995857 0.405314 0.913956 0.020123 0.909815 -0.405430 0.088680 0.090565 -0.008188 -0.995857 0.307292 0.951402 0.020123 0.947296 -0.307842 0.088680 0.090924 0.001348 -0.995857 0.205886 0.978369 0.020123 0.974343 -0.206863 0.088680 0.090293 0.010780 -0.995857 0.103207 0.994456 0.020123 0.990553 -0.104596 0.088680 0.088666 0.020184 -0.995857 -0.001588 0.999796 0.020123 0.996060 -0.000203 0.088680 0.086062 0.029366 -0.995857 -0.106365 0.994124 0.020123 0.990596 0.104193 0.088680 0.082510 0.038224 -0.995857 -0.209971 0.977501 0.020123 0.974220 0.207440 0.088680 0.078096 0.046583 -0.995857 -0.310313 0.950422 0.020123 0.947421 0.307456 0.088680 0.072784 0.054512 -0.995857 -0.408215 0.912664 0.020123 0.909980 0.405059 0.088680 0.066670 0.061840 -0.995857 -0.501620 0.864854 0.020123 0.862515 0.498200 0.088680 0.059821 0.068487 -0.995857 -0.589501 0.807517 0.020123 0.805550 0.585854 0.088680 0.052388 0.074327 -0.995857 -0.670146 0.741957 0.020123 0.740378 0.666315 0.088680 0.044310 0.079408 -0.995857 -0.744218 0.667634 0.020123 0.666466 0.740242 0.088680 0.035743 0.083615 -0.995857 -0.810092 0.585958 0.020123 0.585213 0.806016 0.088680 0.026870 0.086874 -0.995857 -0.866544 0.498694 0.020123 0.498376 0.862414 0.088680 0.017617 0.089211 -0.995857 -0.914039 0.405128 0.020123 0.405244 0.909897 0.088680 0.008170 0.090566 -0.995857 -0.951465 0.307099 0.020123 0.307649 0.947359 0.088680 -0.001367 0.090924 -0.995857 -0.978411 0.205687 0.020123 0.206664 0.974385 0.088680 -0.010799 0.090291 -0.995857 -0.994477 0.103004 0.020123 0.104394 0.990574 0.088680 -0.020202 0.088662 -0.995857 -0.999796 -0.001792 0.020123 0.000000 0.996060 0.088680 -0.029383 0.086056 -0.995857 -0.994102 -0.106567 0.020123 -0.104394 0.990574 0.088680 -0.038158 0.082541 -0.995857 -0.977668 -0.209192 0.020123 -0.206664 0.974385 0.088680 -0.046599 0.078087 -0.995857 -0.950358 -0.310506 0.020123 -0.307649 0.947359 0.088680 -0.054526 0.072773 -0.995857 -0.912581 -0.408401 0.020123 -0.405244 0.909897 0.088680 -0.061853 0.066657 -0.995857 -0.864752 -0.501796 0.020123 -0.498376 0.862414 0.088680 -0.068439 0.059876 -0.995857 -0.807986 -0.588857 0.020123 -0.585213 0.806016 0.088680 -0.074337 0.052373 -0.995857 -0.741820 -0.670297 0.020123 -0.666466 0.740242 0.088680 -0.079417 0.044294 -0.995857 -0.667483 -0.744353 0.020123 -0.740378 0.666315 0.088680 -0.083586 0.035810 -0.995857 -0.586603 -0.809625 0.020123 -0.805550 0.585854 0.088680 -0.086879 0.026852 -0.995857 -0.498518 -0.866646 0.020123 -0.862515 0.498200 0.088680 -0.089215 0.017599 -0.995857 -0.404941 -0.914121 0.020123 -0.909980 0.405059 0.088680 -0.090568 0.008152 -0.995857 -0.306905 -0.951527 0.020123 -0.947421 0.307456 0.088680 -0.090925 -0.001295 -0.995857 -0.206466 -0.978247 0.020123 -0.974220 0.207440 0.088680 -0.090288 -0.010817 -0.995857 -0.102802 -0.994498 0.020123 -0.990596 0.104193 0.088680 -0.515738 -0.781691 -0.350677 0.646518 -0.623666 0.439379 -0.562164 -0.000114 0.827026 -0.430971 -0.831439 -0.350677 0.708323 -0.552472 0.439379 -0.559056 -0.059033 0.827026 -0.342328 -0.871686 -0.350677 0.761849 -0.475954 0.439379 -0.549907 -0.116751 0.827026 -0.249084 -0.902764 -0.350677 0.807536 -0.393485 0.439379 -0.534642 -0.173742 0.827026 -0.153096 -0.923898 -0.350677 0.844329 -0.306683 0.439379 -0.513488 -0.228819 0.827026 -0.056356 -0.934799 -0.350677 0.871605 -0.217374 0.439379 -0.486959 -0.280890 0.827026 0.041927 -0.935558 -0.350677 0.889587 -0.124826 0.439379 -0.454838 -0.330379 0.827026 0.139750 -0.926011 -0.350677 0.897770 -0.030904 0.439379 -0.417707 -0.376230 0.827026 0.236033 -0.906264 -0.350677 0.896064 0.063359 0.439379 -0.375975 -0.417937 0.827026 0.328839 -0.876864 -0.350677 0.884645 0.156040 0.439379 -0.330556 -0.454710 0.827026 0.418930 -0.837570 -0.350677 0.863419 0.247898 0.439379 -0.281079 -0.486850 0.827026 0.504406 -0.789050 -0.350677 0.832682 0.337025 0.439379 -0.228506 -0.513628 0.827026 0.583594 -0.732424 -0.350677 0.793196 0.421647 0.439379 -0.173950 -0.534574 0.827026 0.657143 -0.667225 -0.350677 0.744636 0.502457 0.439379 -0.116965 -0.549861 0.827026 0.723454 -0.594677 -0.350677 0.687874 0.577733 0.439379 -0.058691 -0.559092 0.827026 0.781375 -0.516215 -0.350677 0.624061 0.646137 0.439379 -0.000229 -0.562164 0.827026 0.831175 -0.431479 -0.350677 0.552904 0.707985 0.439379 0.058691 -0.559092 0.827026 0.871819 -0.341989 -0.350677 0.475657 0.762034 0.439379 0.116965 -0.549861 0.827026 0.902861 -0.248733 -0.350677 0.393171 0.807689 0.439379 0.173950 -0.534574 0.827026 0.923804 -0.153661 -0.350677 0.307199 0.844142 0.439379 0.228506 -0.513628 0.827026 0.934821 -0.055993 -0.350677 0.217035 0.871689 0.439379 0.281079 -0.486850 0.827026 0.935541 0.042291 -0.350677 0.124480 0.889635 0.439379 0.330556 -0.454710 0.827026 0.926096 0.139184 -0.350677 0.031452 0.897751 0.439379 0.375975 -0.417937 0.827026 0.906408 0.235479 -0.350677 -0.062812 0.896103 0.439379 0.417707 -0.376230 0.827026 0.876736 0.329180 -0.350677 -0.156384 0.884585 0.439379 0.454838 -0.330379 0.827026 0.837407 0.419255 -0.350677 -0.248233 0.863323 0.439379 0.486959 -0.280890 0.827026 0.789359 0.503923 -0.350677 -0.336516 0.832888 0.439379 0.513488 -0.228819 0.827026 0.732196 0.583879 -0.350677 -0.421955 0.793032 0.439379 0.534642 -0.173742 0.827026 0.666969 0.657402 -0.350677 -0.502747 0.744440 0.439379 0.549907 -0.116751 0.827026 0.595119 0.723090 -0.350677 -0.577313 0.688227 0.439379 0.559056 -0.059033 0.827026 0.516056 0.781480 -0.350677 -0.646264 0.623930 0.439379 0.562164 -0.000114 0.827026 0.431309 0.831263 -0.350677 -0.708097 0.552760 0.439379 0.559080 0.058805 0.827026 0.341812 0.871889 -0.350677 -0.762131 0.475502 0.439379 0.549838 0.117077 0.827026 0.249452 0.902663 -0.350677 -0.807376 0.393814 0.439379 0.534713 0.173524 0.827026 0.153472 0.923836 -0.350677 -0.844204 0.307027 0.439379 0.513581 0.228610 0.827026 0.055803 0.934833 -0.350677 -0.871733 0.216857 0.439379 0.486793 0.281178 0.827026 -0.042482 0.935533 -0.350677 -0.889660 0.124299 0.439379 0.454642 0.330649 0.827026 -0.139373 0.926068 -0.350677 -0.897757 0.031269 0.439379 0.417860 0.376060 0.827026 -0.235663 0.906360 -0.350677 -0.896090 -0.062994 0.439379 0.376145 0.417784 0.827026 -0.329359 0.876669 -0.350677 -0.884553 -0.156564 0.439379 0.330287 0.454905 0.827026 -0.418588 0.837741 -0.350677 -0.863520 -0.247546 0.439379 0.281277 0.486735 0.827026 -0.504084 0.789256 -0.350677 -0.832820 -0.336686 0.439379 0.228715 0.513535 0.827026 -0.584028 0.732077 -0.350677 -0.792946 -0.422117 0.439379 0.173633 0.534677 0.827026 -0.657538 0.666835 -0.350677 -0.744338 -0.502899 0.439379 0.116639 0.549931 0.827026 -0.723211 0.594972 -0.350677 -0.688109 -0.577453 0.439379 0.058919 0.559068 0.827026 -0.781586 0.515897 -0.350677 -0.623798 -0.646391 0.439379 0.000000 0.562164 0.827026 -0.831351 0.431140 -0.350677 -0.552616 -0.708210 0.439379 -0.058919 0.559068 0.827026 -0.871617 0.342506 -0.350677 -0.476109 -0.761752 0.439379 -0.116639 0.549931 0.827026 -0.902713 0.249268 -0.350677 -0.393650 -0.807456 0.439379 -0.173633 0.534677 0.827026 -0.923867 0.153284 -0.350677 -0.306855 -0.844267 0.439379 -0.228715 0.513535 0.827026 -0.934844 0.055612 -0.350677 -0.216679 -0.871777 0.439379 -0.281277 0.486735 0.827026 -0.935566 -0.041737 -0.350677 -0.125007 -0.889561 0.439379 -0.330287 0.454905 0.827026 -0.926039 -0.139561 -0.350677 -0.031086 -0.897764 0.439379 -0.376145 0.417784 0.827026 -0.906312 -0.235848 -0.350677 0.063177 -0.896077 0.439379 -0.417860 0.376060 0.827026 -0.876931 -0.328660 -0.350677 0.155860 -0.884677 0.439379 -0.454642 0.330649 0.827026 -0.837655 -0.418759 -0.350677 0.247722 -0.863470 0.439379 -0.486793 0.281178 0.827026 -0.789153 -0.504245 -0.350677 0.336855 -0.832751 0.439379 -0.513581 0.228610 0.827026 -0.731959 -0.584177 -0.350677 0.422278 -0.792860 0.439379 -0.534713 0.173524 0.827026 -0.667359 -0.657007 -0.350677 0.502306 -0.744738 0.439379 -0.549838 0.117077 0.827026 -0.594824 -0.723332 -0.350677 0.577593 -0.687991 0.439379 -0.559080 0.058805 0.827026 -0.381019 -0.337525 -0.860757 0.136801 -0.941317 0.308558 -0.914391 -0.000186 0.404833 -0.343545 -0.375599 -0.860757 0.234705 -0.921795 0.308558 -0.909335 -0.096020 0.404833 -0.302697 -0.409234 -0.860757 0.329131 -0.892449 0.308558 -0.894454 -0.189902 0.404833 -0.258139 -0.438705 -0.860757 0.420853 -0.853038 0.308558 -0.869625 -0.282601 0.404833 -0.210738 -0.463344 -0.860757 0.507940 -0.804232 0.308558 -0.835217 -0.372187 0.404833 -0.161498 -0.482718 -0.860757 0.588685 -0.747156 0.308558 -0.792066 -0.456882 0.404833 -0.110017 -0.496985 -0.860757 0.663750 -0.681343 0.308558 -0.739819 -0.537380 0.404833 -0.057323 -0.505779 -0.860757 0.731504 -0.608025 0.308558 -0.679424 -0.611959 0.404833 -0.003998 -0.509001 -0.860757 0.791200 -0.528009 0.308558 -0.611544 -0.679797 0.404833 0.048864 -0.506666 -0.860757 0.841739 -0.443020 0.308558 -0.537668 -0.739610 0.404833 0.101697 -0.498754 -0.860757 0.883535 -0.352359 0.308558 -0.457190 -0.791888 0.404833 0.153410 -0.485349 -0.860757 0.915599 -0.257818 0.308558 -0.371677 -0.835444 0.404833 0.202966 -0.466801 -0.860757 0.937417 -0.161374 0.308558 -0.282939 -0.869515 0.404833 0.250773 -0.442957 -0.860757 0.949167 -0.062237 0.308558 -0.190250 -0.894380 0.404833 0.295817 -0.414235 -0.860757 0.950463 0.037585 0.308558 -0.095464 -0.909394 0.404833 0.337292 -0.381225 -0.860757 0.941400 0.136226 0.308558 -0.000372 -0.914391 0.404833 0.375389 -0.343775 -0.860757 0.921938 0.234142 0.308558 0.095464 -0.909394 0.404833 0.409352 -0.302538 -0.860757 0.892321 0.329478 0.308558 0.190250 -0.894380 0.404833 0.438806 -0.257969 -0.860757 0.852875 0.421185 0.308558 0.282939 -0.869515 0.404833 0.463215 -0.211021 -0.860757 0.804542 0.507448 0.308558 0.371677 -0.835444 0.404833 0.482780 -0.161311 -0.860757 0.746927 0.588975 0.308558 0.457190 -0.791888 0.404833 0.497028 -0.109823 -0.860757 0.681085 0.664015 0.308558 0.537668 -0.739610 0.404833 0.505744 -0.057632 -0.860757 0.608471 0.731132 0.308558 0.611544 -0.679797 0.404833 0.508999 -0.004309 -0.860757 0.528492 0.790878 0.308558 0.679424 -0.611959 0.404833 0.506647 0.049061 -0.860757 0.442692 0.841912 0.308558 0.739819 -0.537380 0.404833 0.498715 0.101891 -0.860757 0.352016 0.883672 0.308558 0.792066 -0.456882 0.404833 0.485443 0.153113 -0.860757 0.258377 0.915441 0.308558 0.835217 -0.372187 0.404833 0.466722 0.203148 -0.860757 0.161009 0.937479 0.308558 0.869625 -0.282601 0.404833 0.442860 0.250945 -0.860757 0.061868 0.949191 0.308558 0.894454 -0.189902 0.404833 0.414416 0.295564 -0.860757 -0.037004 0.950485 0.308558 0.909335 -0.096020 0.404833 0.381156 0.337370 -0.860757 -0.136418 0.941372 0.308558 0.914391 -0.000186 0.404833 0.343698 0.375459 -0.860757 -0.234329 0.921890 0.308558 0.909374 0.095650 0.404833 0.302454 0.409414 -0.860757 -0.329659 0.892254 0.308558 0.894341 0.190432 0.404833 0.258318 0.438600 -0.860757 -0.420505 0.853210 0.308558 0.869740 0.282247 0.404833 0.210927 0.463258 -0.860757 -0.507612 0.804439 0.308558 0.835368 0.371847 0.404833 0.161212 0.482813 -0.860757 -0.589127 0.746807 0.308558 0.791795 0.457352 0.404833 0.109722 0.497050 -0.860757 -0.664153 0.680949 0.308558 0.739501 0.537819 0.404833 0.057529 0.505755 -0.860757 -0.731256 0.608322 0.308558 0.679673 0.611682 0.404833 0.004206 0.508999 -0.860757 -0.790985 0.528331 0.308558 0.611821 0.679548 0.404833 -0.049164 0.506637 -0.860757 -0.842002 0.442521 0.308558 0.537230 0.739929 0.404833 -0.101494 0.498796 -0.860757 -0.883392 0.352719 0.308558 0.457513 0.791702 0.404833 -0.153212 0.485411 -0.860757 -0.915494 0.258191 0.308558 0.372017 0.835292 0.404833 -0.203243 0.466680 -0.860757 -0.937512 0.160819 0.308558 0.282424 0.869682 0.404833 -0.251035 0.442809 -0.860757 -0.949204 0.061675 0.308558 0.189719 0.894492 0.404833 -0.295648 0.414355 -0.860757 -0.950478 -0.037198 0.308558 0.095835 0.909355 0.404833 -0.337447 0.381087 -0.860757 -0.941344 -0.136610 0.308558 0.000000 0.914391 0.404833 -0.375529 0.343622 -0.860757 -0.921842 -0.234517 0.308558 -0.095835 0.909355 0.404833 -0.409173 0.302780 -0.860757 -0.892516 -0.328949 0.308558 -0.189719 0.894492 0.404833 -0.438653 0.258229 -0.860757 -0.853124 -0.420679 0.308558 -0.282424 0.869682 0.404833 -0.463301 0.210832 -0.860757 -0.804335 -0.507776 0.308558 -0.372017 0.835292 0.404833 -0.482846 0.161114 -0.860757 -0.746687 -0.589279 0.308558 -0.457513 0.791702 0.404833 -0.496963 0.110118 -0.860757 -0.681478 -0.663611 0.308558 -0.537230 0.739929 0.404833 -0.505767 0.057426 -0.860757 -0.608174 -0.731380 0.308558 -0.611821 0.679548 0.404833 -0.509000 0.004102 -0.860757 -0.528170 -0.791093 0.308558 -0.679673 0.611682 0.404833 -0.506676 -0.048761 -0.860757 -0.443191 -0.841649 0.308558 -0.739501 0.537819 0.404833 -0.498775 -0.101596 -0.860757 -0.352539 -0.883464 0.308558 -0.791795 0.457352 0.404833 -0.485380 -0.153311 -0.860757 -0.258004 -0.915546 0.308558 -0.835368 0.371847 0.404833 -0.466639 -0.203338 -0.860757 -0.160628 -0.937545 0.308558 -0.869740 0.282247 0.404833 -0.443008 -0.250683 -0.860757 -0.062431 -0.949154 0.308558 -0.894341 0.190432 0.404833 -0.414295 -0.295732 -0.860757 0.037391 -0.950470 0.308558 -0.909374 0.095650 0.404833 0.323257 -0.430576 -0.842680 -0.154018 -0.902554 0.402087 -0.933693 -0.000190 -0.358073 0.366604 -0.394325 -0.842680 -0.058575 -0.913726 0.402087 -0.928531 -0.098047 -0.358073 0.405559 -0.354136 -0.842680 0.036598 -0.914870 0.402087 -0.913336 -0.193910 -0.358073 0.440442 -0.309680 -0.842680 0.132281 -0.905995 0.402087 -0.887982 -0.288567 -0.358073 0.470473 -0.261813 -0.842680 0.226507 -0.887142 0.402087 -0.852848 -0.380044 -0.358073 0.495110 -0.211558 -0.842680 0.317380 -0.858834 0.402087 -0.808787 -0.466527 -0.358073 0.514556 -0.158501 -0.842680 0.405644 -0.820840 0.402087 -0.755437 -0.548724 -0.358073 0.528334 -0.103699 -0.842680 0.489440 -0.773805 0.402087 -0.693766 -0.624878 -0.358073 0.536293 -0.047755 -0.842680 0.567845 -0.718247 0.402087 -0.624454 -0.694148 -0.358073 0.538353 0.008177 -0.842680 0.639340 -0.655416 0.402087 -0.549018 -0.755223 -0.358073 0.534531 0.064555 -0.842680 0.704511 -0.584799 0.402087 -0.466842 -0.808605 -0.358073 0.524821 0.120223 -0.842680 0.761922 -0.507741 0.402087 -0.379523 -0.853080 -0.358073 0.509505 0.174056 -0.842680 0.810515 -0.425901 0.402087 -0.288912 -0.887870 -0.358073 0.488457 0.226497 -0.842680 0.850689 -0.338607 0.402087 -0.194266 -0.913260 -0.358073 0.462028 0.276444 -0.842680 0.881492 -0.247584 0.402087 -0.097480 -0.928591 -0.358073 0.430773 0.322994 -0.842680 0.902460 -0.154569 0.402087 -0.000380 -0.933693 -0.358073 0.394549 0.366363 -0.842680 0.913690 -0.059133 0.402087 0.097480 -0.928591 -0.358073 0.353978 0.405697 -0.842680 0.914855 0.036954 0.402087 0.194266 -0.913260 -0.358073 0.309509 0.440562 -0.842680 0.905944 0.132633 0.402087 0.288912 -0.887870 -0.358073 0.262101 0.470313 -0.842680 0.887280 0.225965 0.402087 0.379523 -0.853080 -0.358073 0.211365 0.495193 -0.842680 0.858710 0.317714 0.402087 0.466842 -0.808605 -0.358073 0.158301 0.514618 -0.842680 0.820682 0.405963 0.402087 0.549018 -0.755223 -0.358073 0.104022 0.528271 -0.842680 0.774104 0.488967 0.402087 0.624454 -0.694148 -0.358073 0.048082 0.536264 -0.842680 0.718593 0.567406 0.402087 0.693766 -0.624878 -0.358073 -0.008387 0.538350 -0.842680 0.655168 0.639594 0.402087 0.755437 -0.548724 -0.358073 -0.064763 0.534506 -0.842680 0.584525 0.704738 0.402087 0.808787 -0.466527 -0.358073 -0.119902 0.524895 -0.842680 0.508206 0.761611 0.402087 0.852848 -0.380044 -0.358073 -0.174254 0.509437 -0.842680 0.425585 0.810681 0.402087 0.887982 -0.288567 -0.358073 -0.226687 0.488368 -0.842680 0.338276 0.850820 0.402087 0.913336 -0.193910 -0.358073 -0.276161 0.462197 -0.842680 0.248122 0.881340 0.402087 0.928531 -0.098047 -0.358073 -0.323082 0.430708 -0.842680 0.154385 0.902492 0.402087 0.933693 -0.000190 -0.358073 -0.366444 0.394474 -0.842680 0.058947 0.913702 0.402087 0.928571 0.097669 -0.358073 -0.405769 0.353896 -0.842680 -0.037140 0.914848 0.402087 0.913221 0.194452 -0.358073 -0.440316 0.309860 -0.842680 -0.131912 0.906049 0.402087 0.888100 0.288205 -0.358073 -0.470366 0.262005 -0.842680 -0.226146 0.887234 0.402087 0.853003 0.379697 -0.358073 -0.495236 0.211264 -0.842680 -0.317889 0.858646 0.402087 0.808510 0.467006 -0.358073 -0.514650 0.158196 -0.842680 -0.406130 0.820600 0.402087 0.755112 0.549172 -0.358073 -0.528292 0.103914 -0.842680 -0.489125 0.774005 0.402087 0.694021 0.624595 -0.358073 -0.536274 0.047973 -0.842680 -0.567552 0.718478 0.402087 0.624736 0.693893 -0.358073 -0.538348 -0.008496 -0.842680 -0.639728 0.655037 0.402087 0.548571 0.755549 -0.358073 -0.534557 -0.064338 -0.842680 -0.704272 0.585086 0.402087 0.467171 0.808415 -0.358073 -0.524870 -0.120009 -0.842680 -0.761715 0.508051 0.402087 0.379871 0.852925 -0.358073 -0.509402 -0.174358 -0.842680 -0.810767 0.425420 0.402087 0.288386 0.888041 -0.358073 -0.488322 -0.226787 -0.842680 -0.850889 0.338103 0.402087 0.193724 0.913375 -0.358073 -0.462141 -0.276255 -0.842680 -0.881391 0.247943 0.402087 0.097858 0.928551 -0.358073 -0.430642 -0.323169 -0.842680 -0.902523 0.154201 0.402087 0.000000 0.933693 -0.358073 -0.394400 -0.366524 -0.842680 -0.913714 0.058761 0.402087 -0.097858 0.928551 -0.358073 -0.354219 -0.405487 -0.842680 -0.914877 -0.036411 0.402087 -0.193724 0.913375 -0.358073 -0.309770 -0.440379 -0.842680 -0.906022 -0.132096 0.402087 -0.288386 0.888041 -0.358073 -0.261909 -0.470419 -0.842680 -0.887188 -0.226327 0.402087 -0.379871 0.852925 -0.358073 -0.211163 -0.495279 -0.842680 -0.858581 -0.318064 0.402087 -0.467171 0.808415 -0.358073 -0.158606 -0.514524 -0.842680 -0.820923 -0.405477 0.402087 -0.548571 0.755549 -0.358073 -0.103807 -0.528313 -0.842680 -0.773905 -0.489282 0.402087 -0.624736 0.693893 -0.358073 -0.047864 -0.536283 -0.842680 -0.718362 -0.567698 0.402087 -0.694021 0.624595 -0.358073 0.008068 -0.538355 -0.842680 -0.655547 -0.639206 0.402087 -0.755112 0.549172 -0.358073 0.064447 -0.534544 -0.842680 -0.584943 -0.704392 0.402087 -0.808510 0.467006 -0.358073 0.120116 -0.524846 -0.842680 -0.507896 -0.761818 0.402087 -0.853003 0.379697 -0.358073 0.174462 -0.509366 -0.842680 -0.425255 -0.810854 0.402087 -0.888100 0.288205 -0.358073 0.226398 -0.488503 -0.842680 -0.338780 -0.850620 0.402087 -0.913221 0.194452 -0.358073 0.276349 -0.462084 -0.842680 -0.247764 -0.881441 0.402087 -0.928571 0.097669 -0.358073 -0.137929 0.826435 0.545876 0.202116 0.563032 -0.801339 -0.969600 -0.000197 -0.244694 -0.223785 0.807428 0.545876 0.141993 0.581114 -0.801339 -0.964240 -0.101817 -0.244694 -0.306397 0.779833 0.545876 0.080898 0.592715 -0.801339 -0.948460 -0.201368 -0.244694 -0.386442 0.743426 0.545876 0.018332 0.597929 -0.801339 -0.922132 -0.299664 -0.244694 -0.462230 0.698830 0.545876 -0.044436 0.596558 -0.801339 -0.885646 -0.394660 -0.244694 -0.532280 0.647068 0.545876 -0.106126 0.588721 -0.801339 -0.839890 -0.484469 -0.244694 -0.597166 0.587718 0.545876 -0.167244 0.574356 -0.801339 -0.784489 -0.569827 -0.244694 -0.655474 0.521894 0.545876 -0.226519 0.553665 -0.801339 -0.720446 -0.648908 -0.244694 -0.706562 0.450321 0.545876 -0.283300 0.526874 -0.801339 -0.648468 -0.720843 -0.244694 -0.749494 0.374538 0.545876 -0.336466 0.494618 -0.801339 -0.570132 -0.784267 -0.244694 -0.784620 0.293923 0.545876 -0.386452 0.456629 -0.801339 -0.484795 -0.839702 -0.244694 -0.811104 0.210070 0.545876 -0.432182 0.413612 -0.801339 -0.394118 -0.885887 -0.244694 -0.828530 0.124733 0.545876 -0.472785 0.366511 -0.801339 -0.300023 -0.922015 -0.244694 -0.837039 0.037210 0.545876 -0.508594 0.314941 -0.801339 -0.201737 -0.948381 -0.244694 -0.836329 -0.050723 0.545876 -0.538801 0.259903 -0.801339 -0.101228 -0.964302 -0.244694 -0.826519 -0.137424 0.545876 -0.562908 0.202460 -0.801339 -0.000395 -0.969600 -0.244694 -0.807564 -0.223292 0.545876 -0.581027 0.142348 -0.801339 0.101228 -0.964302 -0.244694 -0.779714 -0.306701 0.545876 -0.592746 0.080668 -0.801339 0.201737 -0.948381 -0.244694 -0.743275 -0.386731 0.545876 -0.597936 0.018100 -0.801339 0.300023 -0.922015 -0.244694 -0.699112 -0.461803 0.545876 -0.596585 -0.044072 -0.801339 0.394118 -0.885887 -0.244694 -0.646861 -0.532531 0.545876 -0.588680 -0.106355 -0.801339 0.484795 -0.839702 -0.244694 -0.587486 -0.597394 0.545876 -0.574291 -0.167467 -0.801339 0.570132 -0.784267 -0.244694 -0.522294 -0.655155 0.545876 -0.553803 -0.226181 -0.801339 0.648468 -0.720843 -0.244694 -0.450753 -0.706287 0.545876 -0.527047 -0.282978 -0.801339 0.720446 -0.648908 -0.244694 -0.374246 -0.749639 0.545876 -0.494487 -0.336658 -0.801339 0.784489 -0.569827 -0.244694 -0.293618 -0.784734 0.545876 -0.456479 -0.386629 -0.801339 0.839890 -0.484469 -0.244694 -0.210566 -0.810976 0.545876 -0.413876 -0.431929 -0.801339 0.885646 -0.394660 -0.244694 -0.124410 -0.828578 0.545876 -0.366327 -0.472927 -0.801339 0.922132 -0.299664 -0.244694 -0.036884 -0.837054 0.545876 -0.314743 -0.508716 -0.801339 0.948460 -0.201368 -0.244694 0.050212 -0.836360 0.545876 -0.260232 -0.538642 -0.801339 0.964240 -0.101817 -0.244694 0.137592 -0.826491 0.545876 -0.202345 -0.562949 -0.801339 0.969600 -0.000197 -0.244694 0.223456 -0.807519 0.545876 -0.142229 -0.581056 -0.801339 0.964281 0.101425 -0.244694 0.306859 -0.779652 0.545876 -0.080547 -0.592763 -0.801339 0.948340 0.201930 -0.244694 0.386139 -0.743583 0.545876 -0.018576 -0.597922 -0.801339 0.922253 0.299288 -0.244694 0.461945 -0.699018 0.545876 0.044193 -0.596576 -0.801339 0.885807 0.394299 -0.244694 0.532663 -0.646753 0.545876 0.106475 -0.588658 -0.801339 0.839603 0.484966 -0.244694 0.597514 -0.587364 0.545876 0.167584 -0.574257 -0.801339 0.784151 0.570292 -0.244694 0.655261 -0.522161 0.545876 0.226294 -0.553757 -0.801339 0.720711 0.648615 -0.244694 0.706379 -0.450609 0.545876 0.283085 -0.526990 -0.801339 0.648762 0.720578 -0.244694 0.749715 -0.374094 0.545876 0.336759 -0.494418 -0.801339 0.569667 0.784605 -0.244694 0.784500 -0.294243 0.545876 0.386266 -0.456787 -0.801339 0.485137 0.839504 -0.244694 0.811018 -0.210401 0.545876 0.432013 -0.413788 -0.801339 0.394479 0.885726 -0.244694 0.828603 -0.124242 0.545876 0.473002 -0.366231 -0.801339 0.299476 0.922193 -0.244694 0.837061 -0.036714 0.545876 0.508780 -0.314640 -0.801339 0.201174 0.948501 -0.244694 0.836350 0.050382 0.545876 0.538695 -0.260122 -0.801339 0.101621 0.964260 -0.244694 0.826463 0.137760 0.545876 0.562991 -0.202230 -0.801339 0.000000 0.969600 -0.244694 0.807473 0.223621 0.545876 0.581085 -0.142111 -0.801339 -0.101621 0.964260 -0.244694 0.779896 0.306238 0.545876 0.592698 -0.081019 -0.801339 -0.201174 0.948501 -0.244694 0.743505 0.386291 0.545876 0.597926 -0.018454 -0.801339 -0.299476 0.922193 -0.244694 0.698924 0.462088 0.545876 0.596567 0.044315 -0.801339 -0.394479 0.885726 -0.244694 0.646644 0.532795 0.545876 0.588637 0.106595 -0.801339 -0.485137 0.839504 -0.244694 0.587840 0.597046 0.545876 0.574390 0.167127 -0.801339 -0.569667 0.784605 -0.244694 0.522027 0.655368 0.545876 0.553711 0.226407 -0.801339 -0.648762 0.720578 -0.244694 0.450465 0.706470 0.545876 0.526932 0.283193 -0.801339 -0.720711 0.648615 -0.244694 0.374691 0.749417 0.545876 0.494686 0.336365 -0.801339 -0.784151 0.570292 -0.244694 0.294083 0.784560 0.545876 0.456708 0.386359 -0.801339 -0.839603 0.484966 -0.244694 0.210236 0.811061 0.545876 0.413700 0.432097 -0.801339 -0.885807 0.394299 -0.244694 0.124073 0.828629 0.545876 0.366134 0.473076 -0.801339 -0.922253 0.299288 -0.244694 0.037380 0.837032 0.545876 0.315045 0.508530 -0.801339 -0.948340 0.201930 -0.244694 -0.050553 0.836340 0.545876 0.260012 0.538748 -0.801339 -0.964281 0.101425 -0.244694 0.284379 -0.899695 -0.331175 -0.585857 -0.436518 0.682805 -0.758881 -0.000155 -0.651230 0.377108 -0.864935 -0.331175 -0.536880 -0.495516 0.682805 -0.754685 -0.079690 -0.651230 0.464861 -0.821113 -0.331175 -0.482539 -0.548574 0.682805 -0.742335 -0.157605 -0.651230 0.548360 -0.767870 -0.331175 -0.422387 -0.596126 0.682805 -0.721728 -0.234539 -0.651230 0.625818 -0.706169 -0.331175 -0.357582 -0.637112 0.682805 -0.693172 -0.308890 -0.651230 0.695746 -0.637386 -0.331175 -0.289510 -0.670791 0.682805 -0.657360 -0.379181 -0.651230 0.758717 -0.560957 -0.331175 -0.217612 -0.697440 0.682805 -0.613999 -0.445988 -0.651230 0.813330 -0.478348 -0.331175 -0.143316 -0.716406 0.682805 -0.563874 -0.507884 -0.651230 0.858985 -0.390471 -0.331175 -0.067443 -0.727481 0.682805 -0.507539 -0.564184 -0.651230 0.894880 -0.299188 -0.331175 0.008444 -0.730551 0.682805 -0.446227 -0.613825 -0.651230 0.921308 -0.203750 -0.331175 0.084964 -0.725643 0.682805 -0.379436 -0.657212 -0.651230 0.937589 -0.106068 -0.331175 0.160549 -0.712742 0.682805 -0.308466 -0.693360 -0.651230 0.943534 -0.008162 -0.331175 0.233673 -0.692224 0.682805 -0.234820 -0.721637 -0.651230 0.939193 0.090773 -0.331175 0.304936 -0.663921 0.682805 -0.157894 -0.742273 -0.651230 0.924507 0.188707 -0.331175 0.372840 -0.628305 0.682805 -0.079229 -0.754734 -0.651230 0.899869 0.283829 -0.331175 0.436160 -0.586124 0.682805 -0.000309 -0.758881 -0.651230 0.865166 0.376579 -0.331175 0.495188 -0.537183 0.682805 0.079229 -0.754734 -0.651230 0.820933 0.465181 -0.331175 0.548762 -0.482325 0.682805 0.157894 -0.742273 -0.651230 0.767657 0.548658 -0.331175 0.596290 -0.422155 0.682805 0.234820 -0.721637 -0.651230 0.706552 0.625386 -0.331175 0.636894 -0.357971 0.682805 0.308466 -0.693360 -0.651230 0.637115 0.695994 -0.331175 0.670904 -0.289249 0.682805 0.379436 -0.657212 -0.651230 0.560661 0.758935 -0.331175 0.697524 -0.217340 0.682805 0.446227 -0.613825 -0.651230 0.478845 0.813038 -0.331175 0.716318 -0.143754 0.682805 0.507539 -0.564184 -0.651230 0.390996 0.858747 -0.331175 0.727439 -0.067887 0.682805 0.563874 -0.507884 -0.651230 0.298839 0.894996 -0.331175 0.730548 0.008728 0.682805 0.613999 -0.445988 -0.651230 0.203392 0.921388 -0.331175 0.725610 0.085246 0.682805 0.657360 -0.379181 -0.651230 0.106641 0.937524 -0.331175 0.712840 0.160113 0.682805 0.693172 -0.308890 -0.651230 0.007794 0.943537 -0.331175 0.692133 0.233942 0.682805 0.721728 -0.234539 -0.651230 -0.091138 0.939158 -0.331175 0.663802 0.305194 0.682805 0.742335 -0.157605 -0.651230 -0.188142 0.924622 -0.331175 0.628533 0.372456 0.682805 0.754685 -0.079690 -0.651230 -0.284013 0.899811 -0.331175 0.586035 0.436280 0.682805 0.758881 -0.000155 -0.651230 -0.376755 0.865089 -0.331175 0.537082 0.495298 0.682805 0.754717 0.079382 -0.651230 -0.465348 0.820838 -0.331175 0.482213 0.548860 0.682805 0.742241 0.158045 -0.651230 -0.548047 0.768094 -0.331175 0.422629 0.595954 0.682805 0.721824 0.234245 -0.651230 -0.625530 0.706424 -0.331175 0.357841 0.636966 0.682805 0.693298 0.308607 -0.651230 -0.696123 0.636974 -0.331175 0.289112 0.670963 0.682805 0.657135 0.379570 -0.651230 -0.759049 0.560507 -0.331175 0.217198 0.697568 0.682805 0.613734 0.446352 -0.651230 -0.813135 0.478679 -0.331175 0.143608 0.716347 0.682805 0.564081 0.507654 -0.651230 -0.858826 0.390821 -0.331175 0.067739 0.727453 0.682805 0.507769 0.563978 -0.651230 -0.895057 0.298657 -0.331175 -0.008877 0.730546 0.682805 0.445863 0.614089 -0.651230 -0.921225 0.204125 -0.331175 -0.084669 0.725678 0.682805 0.379704 0.657058 -0.651230 -0.937546 0.106450 -0.331175 -0.160258 0.712807 0.682805 0.308748 0.693235 -0.651230 -0.943539 0.007602 -0.331175 -0.234083 0.692085 0.682805 0.234392 0.721776 -0.651230 -0.939139 -0.091329 -0.331175 -0.305329 0.663740 0.682805 0.157454 0.742367 -0.651230 -0.924584 -0.188330 -0.331175 -0.372584 0.628457 0.682805 0.079536 0.754701 -0.651230 -0.899753 -0.284196 -0.331175 -0.436399 0.585946 0.682805 0.000000 0.758881 -0.651230 -0.865012 -0.376931 -0.331175 -0.495407 0.536981 0.682805 -0.079536 0.754701 -0.651230 -0.821208 -0.464694 -0.331175 -0.548476 0.482650 0.682805 -0.157454 0.742367 -0.651230 -0.767982 -0.548203 -0.331175 -0.596040 0.422508 0.682805 -0.234392 0.721776 -0.651230 -0.706297 -0.625674 -0.331175 -0.637039 0.357712 0.682805 -0.308748 0.693235 -0.651230 -0.636832 -0.696253 -0.331175 -0.671022 0.288975 0.682805 -0.379704 0.657058 -0.651230 -0.561111 -0.758602 -0.331175 -0.697395 0.217753 0.682805 -0.445863 0.614089 -0.651230 -0.478514 -0.813233 -0.331175 -0.716377 0.143462 0.682805 -0.507769 0.563978 -0.651230 -0.390646 -0.858906 -0.331175 -0.727467 0.067591 0.682805 -0.564081 0.507654 -0.651230 -0.299370 -0.894819 -0.331175 -0.730553 -0.008295 0.682805 -0.613734 0.446352 -0.651230 -0.203938 -0.921267 -0.331175 -0.725660 -0.084816 0.682805 -0.657135 0.379570 -0.651230 -0.106259 -0.937567 -0.331175 -0.712775 -0.160404 0.682805 -0.693298 0.308607 -0.651230 -0.007410 -0.943540 -0.331175 -0.692038 -0.234224 0.682805 -0.721824 0.234245 -0.651230 0.090581 -0.939212 -0.331175 -0.663983 -0.304801 0.682805 -0.742241 0.158045 -0.651230 0.188518 -0.924545 -0.331175 -0.628381 -0.372712 0.682805 -0.754717 0.079382 -0.651230 0.592461 -0.185992 -0.783835 -0.112018 -0.982551 0.148475 -0.797773 -0.000162 -0.602958 0.608692 -0.122873 -0.783835 -0.008422 -0.988880 0.148475 -0.793362 -0.083774 -0.602958 0.618158 -0.059019 -0.783835 0.094281 -0.984412 0.148475 -0.780379 -0.165682 -0.602958 0.620940 0.006093 -0.783835 0.196936 -0.969109 0.148475 -0.758716 -0.246559 -0.602958 0.616881 0.071139 -0.783835 0.297421 -0.943131 0.148475 -0.728697 -0.324720 -0.602958 0.606163 0.134794 -0.783835 0.393722 -0.907159 0.148475 -0.691049 -0.398614 -0.602958 0.588697 0.197582 -0.783835 0.486631 -0.860898 0.148475 -0.645466 -0.468845 -0.602958 0.564747 0.258194 -0.783835 0.574179 -0.805154 0.148475 -0.592773 -0.533912 -0.602958 0.534576 0.315961 -0.783835 0.655403 -0.740542 0.148475 -0.533550 -0.593099 -0.602958 0.498887 0.369750 -0.783835 0.728739 -0.668502 0.148475 -0.469096 -0.645283 -0.602958 0.457387 0.420000 -0.783835 0.794789 -0.588443 0.148475 -0.398882 -0.690894 -0.602958 0.410849 0.465625 -0.783835 0.852085 -0.501902 0.148475 -0.324275 -0.728895 -0.602958 0.360291 0.505760 -0.783835 0.899585 -0.410733 0.148475 -0.246854 -0.758620 -0.602958 0.305300 0.540736 -0.783835 0.937678 -0.314188 0.148475 -0.165986 -0.780314 -0.602958 0.246945 0.569755 -0.783835 0.965443 -0.214183 0.148475 -0.083289 -0.793413 -0.602958 0.186353 0.592347 -0.783835 0.982483 -0.112618 0.148475 -0.000325 -0.797773 -0.602958 0.123245 0.608616 -0.783835 0.988875 -0.009026 0.148475 0.083289 -0.793413 -0.602958 0.058779 0.618181 -0.783835 0.984375 0.094664 0.148475 0.165986 -0.780314 -0.602958 -0.006335 0.620937 -0.783835 0.969032 0.197313 0.148475 0.246854 -0.758620 -0.602958 -0.070762 0.616925 -0.783835 0.943313 0.296844 0.148475 0.324275 -0.728895 -0.602958 -0.135030 0.606111 -0.783835 0.907006 0.394075 0.148475 0.398882 -0.690894 -0.602958 -0.197811 0.588620 -0.783835 0.860709 0.486966 0.148475 0.469096 -0.645283 -0.602958 -0.257849 0.564905 -0.783835 0.805505 0.573687 0.148475 0.533550 -0.593099 -0.602958 -0.315635 0.534769 -0.783835 0.740942 0.654950 0.148475 0.592773 -0.533912 -0.602958 -0.369944 0.498743 -0.783835 0.668218 0.728999 0.148475 0.645466 -0.468845 -0.602958 -0.420178 0.457224 -0.783835 0.588134 0.795018 0.148475 0.691049 -0.398614 -0.602958 -0.465374 0.411133 -0.783835 0.502423 0.851778 0.148475 0.728697 -0.324720 -0.602958 -0.505900 0.360095 -0.783835 0.410383 0.899745 0.148475 0.758716 -0.246559 -0.602958 -0.540855 0.305089 -0.783835 0.313824 0.937801 0.148475 0.780379 -0.165682 -0.602958 -0.569604 0.247293 -0.783835 0.214772 0.965312 0.148475 0.793362 -0.083774 -0.602958 -0.592385 0.186233 -0.783835 0.112418 0.982506 0.148475 0.797773 -0.000162 -0.602958 -0.608641 0.123121 -0.783835 0.008825 0.988877 0.148475 0.793396 0.083451 -0.602958 -0.618193 0.058653 -0.783835 -0.094865 0.984356 0.148475 0.780281 0.166145 -0.602958 -0.620942 -0.005840 -0.783835 -0.196541 0.969189 0.148475 0.758817 0.246250 -0.602958 -0.616910 -0.070887 -0.783835 -0.297036 0.943252 0.148475 0.728829 0.324423 -0.602958 -0.606083 -0.135153 -0.783835 -0.394260 0.906926 0.148475 0.690813 0.399023 -0.602958 -0.588580 -0.197931 -0.783835 -0.487141 0.860610 0.148475 0.645188 0.469228 -0.602958 -0.564852 -0.257964 -0.783835 -0.573851 0.805388 0.148475 0.592990 0.533671 -0.602958 -0.534705 -0.315743 -0.783835 -0.655101 0.740809 0.148475 0.533792 0.592881 -0.602958 -0.498668 -0.370045 -0.783835 -0.729135 0.668070 0.148475 0.468714 0.645561 -0.602958 -0.457558 -0.419814 -0.783835 -0.794550 0.588767 0.148475 0.399164 0.690732 -0.602958 -0.411039 -0.465457 -0.783835 -0.851881 0.502249 0.148475 0.324572 0.728763 -0.602958 -0.359991 -0.505974 -0.783835 -0.899828 0.410200 0.148475 0.246405 0.758766 -0.602958 -0.304979 -0.540917 -0.783835 -0.937864 0.313633 0.148475 0.165523 0.780413 -0.602958 -0.247177 -0.569655 -0.783835 -0.965356 0.214576 0.148475 0.083612 0.793379 -0.602958 -0.186112 -0.592423 -0.783835 -0.982529 0.112218 0.148475 0.000000 0.797773 -0.602958 -0.122997 -0.608666 -0.783835 -0.988879 0.008624 0.148475 -0.083612 0.793379 -0.602958 -0.059145 -0.618146 -0.783835 -0.984431 -0.094081 0.148475 -0.165523 0.780413 -0.602958 0.005967 -0.620941 -0.783835 -0.969149 -0.196738 0.148475 -0.246405 0.758766 -0.602958 0.071013 -0.616896 -0.783835 -0.943192 -0.297228 0.148475 -0.324572 0.728763 -0.602958 0.135277 -0.606055 -0.783835 -0.906845 -0.394445 0.148475 -0.399164 0.690732 -0.602958 0.197462 -0.588737 -0.783835 -0.860997 -0.486455 0.148475 -0.468714 0.645561 -0.602958 0.258079 -0.564800 -0.783835 -0.805271 -0.574015 0.148475 -0.533792 0.592881 -0.602958 0.315852 -0.534640 -0.783835 -0.740675 -0.655252 0.148475 -0.592990 0.533671 -0.602958 0.369648 -0.498962 -0.783835 -0.668650 -0.728603 0.148475 -0.645188 0.469228 -0.602958 0.419907 -0.457472 -0.783835 -0.588605 -0.794670 0.148475 -0.690813 0.399023 -0.602958 0.465541 -0.410944 -0.783835 -0.502076 -0.851983 0.148475 -0.728829 0.324423 -0.602958 0.506047 -0.359888 -0.783835 -0.410017 -0.899912 0.148475 -0.758817 0.246250 -0.602958 0.540674 -0.305410 -0.783835 -0.314379 -0.937614 0.148475 -0.780281 0.166145 -0.602958 0.569705 -0.247061 -0.783835 -0.214379 -0.965400 0.148475 -0.793396 0.083451 -0.602958 -0.791588 0.591241 0.154344 0.580303 0.806495 -0.113197 -0.191404 -0.000039 -0.981511 -0.849195 0.505020 0.154344 0.492581 0.862873 -0.113197 -0.190346 -0.020099 -0.981511 -0.897034 0.414135 0.154344 0.400342 0.909347 -0.113197 -0.187231 -0.039751 -0.981511 -0.935498 0.317838 0.154344 0.302831 0.946298 -0.113197 -0.182034 -0.059155 -0.981511 -0.963658 0.218041 0.154344 0.201985 0.972825 -0.113197 -0.174831 -0.077908 -0.981511 -0.981086 0.116823 0.154344 0.099902 0.988537 -0.113197 -0.165799 -0.095637 -0.981511 -0.987927 0.013355 0.154344 -0.004254 0.993563 -0.113197 -0.154862 -0.112487 -0.981511 -0.983886 -0.090261 0.154344 -0.108363 0.987646 -0.113197 -0.142220 -0.128098 -0.981511 -0.969007 -0.192882 0.154344 -0.211279 0.970849 -0.113197 -0.128011 -0.142298 -0.981511 -0.943748 -0.292435 0.154344 -0.310924 0.943670 -0.113197 -0.112547 -0.154819 -0.981511 -0.907901 -0.389736 0.154344 -0.408115 0.905886 -0.113197 -0.095701 -0.165762 -0.981511 -0.862053 -0.482744 0.154344 -0.500810 0.858123 -0.113197 -0.077801 -0.174879 -0.981511 -0.807281 -0.569628 0.154344 -0.587188 0.801496 -0.113197 -0.059226 -0.182011 -0.981511 -0.743134 -0.651099 0.154344 -0.667957 0.735541 -0.113197 -0.039824 -0.187216 -0.981511 -0.670801 -0.725399 0.154344 -0.741368 0.661483 -0.113197 -0.019983 -0.190358 -0.981511 -0.591724 -0.791227 0.154344 -0.806140 0.580796 -0.113197 -0.000078 -0.191404 -0.981511 -0.505539 -0.848886 0.154344 -0.862572 0.493108 -0.113197 0.019983 -0.190358 -0.981511 -0.413785 -0.897195 0.154344 -0.909503 0.399989 -0.113197 0.039824 -0.187216 -0.981511 -0.317474 -0.935622 0.154344 -0.946416 0.302463 -0.113197 0.059226 -0.182011 -0.981511 -0.218629 -0.963524 0.154344 -0.972701 0.202579 -0.113197 0.077801 -0.174879 -0.981511 -0.116441 -0.981132 0.154344 -0.988576 0.099517 -0.113197 0.095701 -0.165762 -0.981511 -0.012970 -0.987932 0.154344 -0.993562 -0.004641 -0.113197 0.112547 -0.154819 -0.981511 0.089660 -0.983941 0.154344 -0.987712 -0.107760 -0.113197 0.128011 -0.142298 -0.981511 0.192290 -0.969125 0.154344 -0.970978 -0.210686 -0.113197 0.142220 -0.128098 -0.981511 0.292802 -0.943634 0.154344 -0.943549 -0.311291 -0.113197 0.154862 -0.112487 -0.981511 0.390089 -0.907749 0.154344 -0.905727 -0.408467 -0.113197 0.165799 -0.095637 -0.981511 0.482217 -0.862348 0.154344 -0.858429 -0.500286 -0.113197 0.174831 -0.077908 -0.981511 0.569942 -0.807059 0.154344 -0.801268 -0.587500 -0.113197 0.182034 -0.059155 -0.981511 0.651388 -0.742880 0.154344 -0.735281 -0.668243 -0.113197 0.187231 -0.039751 -0.981511 0.724989 -0.671244 0.154344 -0.661936 -0.740964 -0.113197 0.190346 -0.020099 -0.981511 0.791348 -0.591563 0.154344 -0.580632 -0.806259 -0.113197 0.191404 -0.000039 -0.981511 0.848989 -0.505366 0.154344 -0.492932 -0.862673 -0.113197 0.190354 0.020022 -0.981511 0.897280 -0.413603 0.154344 -0.399803 -0.909584 -0.113197 0.187208 0.039862 -0.981511 0.935369 -0.318219 0.154344 -0.303217 -0.946174 -0.113197 0.182058 0.059081 -0.981511 0.963569 -0.218433 0.154344 -0.202381 -0.972743 -0.113197 0.174863 0.077837 -0.981511 0.981155 -0.116241 0.154344 -0.099316 -0.988596 -0.113197 0.165742 0.095735 -0.981511 0.987935 -0.012769 0.154344 0.004843 -0.993561 -0.113197 0.154796 0.112579 -0.981511 0.983922 0.089860 0.154344 0.107961 -0.987690 -0.113197 0.142272 0.128040 -0.981511 0.969085 0.192487 0.154344 0.210883 -0.970935 -0.113197 0.128069 0.142246 -0.981511 0.943574 0.292994 0.154344 0.311483 -0.943485 -0.113197 0.112455 0.154885 -0.981511 0.908059 0.389366 0.154344 0.407746 -0.906052 -0.113197 0.095769 0.165723 -0.981511 0.862250 0.482393 0.154344 0.500461 -0.858327 -0.113197 0.077872 0.174847 -0.981511 0.806943 0.570106 0.154344 0.587663 -0.801148 -0.113197 0.059118 0.182046 -0.981511 0.742748 0.651540 0.154344 0.668393 -0.735145 -0.113197 0.039713 0.187239 -0.981511 0.671096 0.725126 0.154344 0.741099 -0.661785 -0.113197 0.020061 0.190350 -0.981511 0.591402 0.791468 0.154344 0.806377 -0.580468 -0.113197 0.000000 0.191404 -0.981511 0.505193 0.849092 0.154344 0.862773 -0.492757 -0.113197 -0.020061 0.190350 -0.981511 0.414317 0.896950 0.154344 0.909266 -0.400528 -0.113197 -0.039713 0.187239 -0.981511 0.318029 0.935433 0.154344 0.946236 -0.303024 -0.113197 -0.059118 0.182046 -0.981511 0.218237 0.963613 0.154344 0.972784 -0.202183 -0.113197 -0.077872 0.174847 -0.981511 0.116041 0.981179 0.154344 0.988617 -0.099115 -0.113197 -0.095769 0.165723 -0.981511 0.013556 0.987924 0.154344 0.993564 0.004052 -0.113197 -0.112455 0.154885 -0.981511 -0.090061 0.983904 0.154344 0.987668 0.108162 -0.113197 -0.128069 0.142246 -0.981511 -0.192685 0.969046 0.154344 0.970892 0.211081 -0.113197 -0.142272 0.128040 -0.981511 -0.292243 0.943807 0.154344 0.943733 0.310731 -0.113197 -0.154796 0.112579 -0.981511 -0.389551 0.907980 0.154344 0.905969 0.407930 -0.113197 -0.165742 0.095735 -0.981511 -0.482568 0.862152 0.154344 0.858225 0.500635 -0.113197 -0.174863 0.077837 -0.981511 -0.570270 0.806827 0.154344 0.801028 0.587826 -0.113197 -0.182058 0.059081 -0.981511 -0.650948 0.743266 0.154344 0.735677 0.667807 -0.113197 -0.187208 0.039862 -0.981511 -0.725263 0.670949 0.154344 0.661634 0.741233 -0.113197 -0.190354 0.020022 -0.981511 -0.224361 -0.770914 0.596115 -0.271834 0.636939 0.721398 -0.935825 -0.000191 -0.352465 -0.142328 -0.790183 0.596115 -0.337092 0.604941 0.721398 -0.930651 -0.098271 -0.352465 -0.059528 -0.800689 0.596115 -0.398072 0.566678 0.721398 -0.915421 -0.194353 -0.352465 0.024718 -0.802518 0.596115 -0.455271 0.521836 0.721398 -0.890010 -0.289225 -0.352465 0.108691 -0.795508 0.596115 -0.507456 0.471246 0.721398 -0.854795 -0.380912 -0.352465 0.190688 -0.779926 0.596115 -0.553635 0.416020 0.721398 -0.810633 -0.467592 -0.352465 0.271379 -0.755645 0.596115 -0.594188 0.355704 0.721398 -0.757162 -0.549977 -0.352465 0.349082 -0.723041 0.596115 -0.628196 0.291470 0.721398 -0.695350 -0.626304 -0.352465 0.422939 -0.682473 0.596115 -0.655284 0.224025 0.721398 -0.625879 -0.695732 -0.352465 0.491503 -0.634879 0.596115 -0.675000 0.154788 0.721398 -0.550272 -0.756948 -0.352465 0.555336 -0.579869 0.596115 -0.687506 0.083190 0.721398 -0.467908 -0.810451 -0.352465 0.613052 -0.518472 0.596115 -0.692438 0.010677 0.721398 -0.380389 -0.855028 -0.352465 0.663564 -0.452029 0.596115 -0.689805 -0.061265 0.721398 -0.289572 -0.889897 -0.352465 0.707285 -0.379993 0.596115 -0.679585 -0.133224 0.721398 -0.194709 -0.915345 -0.352465 0.743216 -0.303771 0.596115 -0.661880 -0.203716 0.721398 -0.097702 -0.930711 -0.352465 0.770777 -0.224832 0.596115 -0.637105 -0.271445 0.721398 -0.000381 -0.935825 -0.352465 0.790096 -0.142811 0.596115 -0.605147 -0.336723 0.721398 0.097702 -0.930711 -0.352465 0.800712 -0.059217 0.596115 -0.566523 -0.398292 0.721398 0.194709 -0.915345 -0.352465 0.802509 0.025030 0.596115 -0.521659 -0.455474 0.721398 0.289572 -0.889897 -0.352465 0.795574 0.108205 0.596115 -0.471556 -0.507168 0.721398 0.380389 -0.855028 -0.352465 0.779852 0.190991 0.596115 -0.415805 -0.553797 0.721398 0.467908 -0.810451 -0.352465 0.755540 0.271673 0.596115 -0.355473 -0.594326 0.721398 0.550272 -0.756948 -0.352465 0.723254 0.348640 0.596115 -0.291853 -0.628018 0.721398 0.625879 -0.695732 -0.352465 0.682731 0.422522 0.596115 -0.224425 -0.655147 0.721398 0.695350 -0.626304 -0.352465 0.634688 0.491750 0.596115 -0.154525 -0.675061 0.721398 0.757162 -0.549977 -0.352465 0.579653 0.555562 0.596115 -0.082923 -0.687538 0.721398 0.810633 -0.467592 -0.352465 0.518847 0.612735 0.596115 -0.011100 -0.692432 0.721398 0.854795 -0.380912 -0.352465 0.451770 0.663740 0.596115 0.061533 -0.689781 0.721398 0.890010 -0.289225 -0.352465 0.379718 0.707433 0.596115 0.133488 -0.679533 0.721398 0.915421 -0.194353 -0.352465 0.304225 0.743030 0.596115 0.203311 -0.662004 0.721398 0.930651 -0.098271 -0.352465 0.224675 0.770823 0.596115 0.271574 -0.637049 0.721398 0.935825 -0.000191 -0.352465 0.142650 0.790125 0.596115 0.336846 -0.605078 0.721398 0.930691 0.097892 -0.352465 0.059053 0.800724 0.596115 0.398407 -0.566442 0.721398 0.915306 0.194896 -0.352465 -0.024391 0.802528 0.596115 0.455059 -0.522021 0.721398 0.890127 0.288863 -0.352465 -0.108367 0.795552 0.596115 0.507264 -0.471453 0.721398 0.854950 0.380564 -0.352465 -0.191150 0.779813 0.596115 0.553882 -0.415692 0.721398 0.810356 0.468073 -0.352465 -0.271827 0.755484 0.596115 0.594399 -0.355351 0.721398 0.756835 0.550426 -0.352465 -0.348787 0.723183 0.596115 0.628077 -0.291725 0.721398 0.695605 0.626021 -0.352465 -0.422661 0.682645 0.596115 0.655193 -0.224292 0.721398 0.626163 0.695478 -0.352465 -0.491880 0.634587 0.596115 0.675092 -0.154388 0.721398 0.549823 0.757274 -0.352465 -0.555100 0.580095 0.596115 0.687472 -0.083470 0.721398 0.468238 0.810260 -0.352465 -0.612841 0.518722 0.596115 0.692434 -0.010959 0.721398 0.380738 0.854873 -0.352465 -0.663832 0.451635 0.596115 0.689769 0.061674 0.721398 0.289044 0.890069 -0.352465 -0.707510 0.379573 0.596115 0.679506 0.133627 0.721398 0.194167 0.915460 -0.352465 -0.743092 0.304074 0.596115 0.661963 0.203446 0.721398 0.098081 0.930671 -0.352465 -0.770869 0.224518 0.596115 0.636994 0.271704 0.721398 0.000000 0.935825 -0.352465 -0.790154 0.142489 0.596115 0.605009 0.336969 0.721398 -0.098081 0.930671 -0.352465 -0.800677 0.059691 0.596115 0.566759 0.397956 0.721398 -0.194167 0.915460 -0.352465 -0.802523 -0.024554 0.596115 0.521929 0.455165 0.721398 -0.289044 0.890069 -0.352465 -0.795530 -0.108529 0.596115 0.471350 0.507360 0.721398 -0.380738 0.854873 -0.352465 -0.779774 -0.191309 0.596115 0.415579 0.553967 0.721398 -0.468238 0.810260 -0.352465 -0.755701 -0.271226 0.596115 0.355825 0.594116 0.721398 -0.549823 0.757274 -0.352465 -0.723112 -0.348935 0.596115 0.291597 0.628137 0.721398 -0.626163 0.695478 -0.352465 -0.682559 -0.422800 0.596115 0.224158 0.655239 0.721398 -0.695605 0.626021 -0.352465 -0.634979 -0.491374 0.596115 0.154925 0.674969 0.721398 -0.756835 0.550426 -0.352465 -0.579982 -0.555218 0.596115 0.083330 0.687489 0.721398 -0.810356 0.468073 -0.352465 -0.518597 -0.612947 0.596115 0.010818 0.692436 0.721398 -0.854950 0.380564 -0.352465 -0.451500 -0.663924 0.596115 -0.061814 0.689756 0.721398 -0.890127 0.288863 -0.352465 -0.380137 -0.707208 0.596115 -0.133086 0.679612 0.721398 -0.915306 0.194896 -0.352465 -0.303923 -0.743154 0.596115 -0.203581 0.661921 0.721398 -0.930691 0.097892 -0.352465 -0.001758 -0.997580 0.069509 -0.028146 0.069531 0.997183 -0.999602 -0.000204 -0.028200 0.102805 -0.992270 0.069509 -0.035278 0.066198 0.997183 -0.994076 -0.104968 -0.028200 0.205260 -0.976236 0.069509 -0.041960 0.062178 0.997183 -0.977808 -0.207598 -0.028200 0.306446 -0.949347 0.069509 -0.048245 0.057438 0.997183 -0.950665 -0.308936 -0.028200 0.404257 -0.912001 0.069509 -0.053999 0.052065 0.997183 -0.913050 -0.406871 -0.028200 0.496750 -0.865106 0.069509 -0.059113 0.046178 0.997183 -0.865878 -0.499459 -0.028200 0.584683 -0.808279 0.069509 -0.063627 0.039728 0.997183 -0.808763 -0.587458 -0.028200 0.666176 -0.742548 0.069509 -0.067440 0.032841 0.997183 -0.742739 -0.668987 -0.028200 0.740332 -0.668638 0.069509 -0.070511 0.025592 0.997183 -0.668533 -0.743147 -0.028200 0.805745 -0.588170 0.069509 -0.072787 0.018133 0.997183 -0.587773 -0.808534 -0.028200 0.862952 -0.500483 0.069509 -0.074286 0.010405 0.997183 -0.499796 -0.865684 -0.028200 0.910653 -0.407283 0.069509 -0.074968 0.002562 0.997183 -0.406313 -0.913299 -0.028200 0.948014 -0.310545 0.069509 -0.074829 -0.005234 0.997183 -0.309306 -0.950544 -0.028200 0.975340 -0.209476 0.069509 -0.073868 -0.013048 0.997183 -0.207979 -0.977727 -0.028200 0.991923 -0.106100 0.069509 -0.072093 -0.020718 0.997183 -0.104361 -0.994140 -0.028200 0.997579 -0.002367 0.069509 -0.069548 -0.028103 0.997183 -0.000407 -0.999602 -0.028200 0.992333 0.102199 0.069509 -0.066219 -0.035238 0.997183 0.104361 -0.994140 -0.028200 0.976156 0.205640 0.069509 -0.062162 -0.041984 0.997183 0.207979 -0.977727 -0.028200 0.949227 0.306816 0.069509 -0.057419 -0.048268 0.997183 0.309306 -0.950544 -0.028200 0.912247 0.403699 0.069509 -0.052098 -0.053968 0.997183 0.406313 -0.913299 -0.028200 0.864913 0.497086 0.069509 -0.046155 -0.059131 0.997183 0.499796 -0.865684 -0.028200 0.808051 0.584998 0.069509 -0.039703 -0.063642 0.997183 0.587773 -0.808534 -0.028200 0.742955 0.665723 0.069509 -0.032882 -0.067420 0.997183 0.668533 -0.743147 -0.028200 0.669090 0.739923 0.069509 -0.025635 -0.070495 0.997183 0.742739 -0.668987 -0.028200 0.587856 0.805974 0.069509 -0.018105 -0.072794 0.997183 0.808763 -0.587458 -0.028200 0.500147 0.863146 0.069509 -0.010376 -0.074290 0.997183 0.865878 -0.499459 -0.028200 0.407839 0.910404 0.069509 -0.002608 -0.074966 0.997183 0.913050 -0.406871 -0.028200 0.310176 0.948135 0.069509 0.005264 -0.074827 0.997183 0.950665 -0.308936 -0.028200 0.209096 0.975422 0.069509 0.013077 -0.073863 0.997183 0.977808 -0.207598 -0.028200 0.106706 0.991858 0.069509 0.020674 -0.072106 0.997183 0.994076 -0.104968 -0.028200 0.002164 0.997579 0.069509 0.028117 -0.069542 0.997183 0.999602 -0.000204 -0.028200 -0.102401 0.992312 0.069509 0.035251 -0.066212 0.997183 0.994118 0.104563 -0.028200 -0.205839 0.976114 0.069509 0.041997 -0.062153 0.997183 0.977684 0.208178 -0.028200 -0.306059 0.949471 0.069509 0.048222 -0.057457 0.997183 0.950790 0.308549 -0.028200 -0.403885 0.912165 0.069509 0.053978 -0.052087 0.997183 0.913216 0.406499 -0.028200 -0.497262 0.864811 0.069509 0.059140 -0.046143 0.997183 0.865582 0.499972 -0.028200 -0.585162 0.807932 0.069509 0.063650 -0.039690 0.997183 0.808414 0.587938 -0.028200 -0.665874 0.742819 0.069509 0.067427 -0.032868 0.997183 0.743011 0.668685 -0.028200 -0.740059 0.668940 0.069509 0.070500 -0.025620 0.997183 0.668836 0.742875 -0.028200 -0.806093 0.587692 0.069509 0.072797 -0.018090 0.997183 0.587294 0.808882 -0.028200 -0.862748 0.500834 0.069509 0.074282 -0.010435 0.997183 0.500148 0.865480 -0.028200 -0.910487 0.407654 0.069509 0.074967 -0.002593 0.997183 0.406685 0.913133 -0.028200 -0.948198 0.309983 0.069509 0.074825 0.005279 0.997183 0.308743 0.950727 -0.028200 -0.975464 0.208898 0.069509 0.073860 0.013092 0.997183 0.207399 0.977850 -0.028200 -0.991880 0.106504 0.069509 0.072102 0.020689 0.997183 0.104765 0.994097 -0.028200 -0.997579 0.001961 0.069509 0.069536 0.028132 0.997183 0.000000 0.999602 -0.028200 -0.992291 -0.102603 0.069509 0.066205 0.035265 0.997183 -0.104765 0.994097 -0.028200 -0.976278 -0.205061 0.069509 0.062186 0.041947 0.997183 -0.207399 0.977850 -0.028200 -0.949409 -0.306253 0.069509 0.057448 0.048234 0.997183 -0.308743 0.950727 -0.028200 -0.912083 -0.404071 0.069509 0.052076 0.053989 0.997183 -0.406685 0.913133 -0.028200 -0.864710 -0.497438 0.069509 0.046131 0.059149 0.997183 -0.500148 0.865480 -0.028200 -0.808398 -0.584519 0.069509 0.039741 0.063619 0.997183 -0.587294 0.808882 -0.028200 -0.742684 -0.666025 0.069509 0.032855 0.067434 0.997183 -0.668836 0.742875 -0.028200 -0.668789 -0.740196 0.069509 0.025606 0.070506 0.997183 -0.743011 0.668685 -0.028200 -0.588334 -0.805625 0.069509 0.018148 0.072783 0.997183 -0.808414 0.587938 -0.028200 -0.500658 -0.862850 0.069509 0.010420 0.074284 0.997183 -0.865582 0.499972 -0.028200 -0.407468 -0.910570 0.069509 0.002577 0.074967 0.997183 -0.913216 0.406499 -0.028200 -0.309790 -0.948261 0.069509 -0.005294 0.074824 0.997183 -0.950790 0.308549 -0.028200 -0.209675 -0.975297 0.069509 -0.013033 0.073870 0.997183 -0.977684 0.208178 -0.028200 -0.106302 -0.991901 0.069509 -0.020703 0.072098 0.997183 -0.994118 0.104563 -0.028200 -0.376590 -0.228253 0.897820 -0.088466 0.973602 0.210412 -0.922146 -0.000188 -0.386841 -0.350593 -0.266465 0.897820 -0.190019 0.958968 0.210412 -0.917048 -0.096834 -0.386841 -0.321037 -0.301421 0.897820 -0.288546 0.934060 0.210412 -0.902040 -0.191512 -0.386841 -0.287677 -0.333408 0.897820 -0.384853 0.898674 0.210412 -0.877001 -0.284998 -0.386841 -0.251150 -0.361722 0.897820 -0.476921 0.853390 0.210412 -0.842301 -0.375344 -0.386841 -0.212241 -0.385840 0.897820 -0.562936 0.799268 0.210412 -0.798784 -0.460758 -0.386841 -0.170634 -0.405960 0.897820 -0.643605 0.735867 0.210412 -0.746094 -0.541938 -0.386841 -0.127146 -0.421608 0.897820 -0.717184 0.664359 0.210412 -0.685186 -0.617150 -0.386841 -0.082259 -0.432611 0.897820 -0.782864 0.585534 0.210412 -0.616731 -0.685563 -0.386841 -0.036903 -0.438814 0.897820 -0.839420 0.501099 0.210412 -0.542228 -0.745883 -0.386841 0.009291 -0.440265 0.897820 -0.887316 0.410362 0.210412 -0.461068 -0.798605 -0.386841 0.055382 -0.436866 0.897820 -0.925438 0.315105 0.210412 -0.374829 -0.842530 -0.386841 0.100435 -0.428756 0.897820 -0.953150 0.217331 0.210412 -0.285339 -0.876890 -0.386841 0.144819 -0.415869 0.897820 -0.970678 0.116237 0.210412 -0.191863 -0.901966 -0.386841 0.187607 -0.398400 0.897820 -0.977515 0.013863 0.210412 -0.096274 -0.917107 -0.386841 0.228022 -0.376729 0.897820 -0.973656 -0.087871 0.210412 -0.000376 -0.922146 -0.386841 0.266251 -0.350756 0.897820 -0.959084 -0.189433 0.210412 0.096274 -0.917107 -0.386841 0.301546 -0.320919 0.897820 -0.933948 -0.288909 0.210412 0.191863 -0.901966 -0.386841 0.333520 -0.287548 0.897820 -0.898524 -0.385202 0.210412 0.285339 -0.876890 -0.386841 0.361569 -0.251371 0.897820 -0.853681 -0.476399 0.210412 0.374829 -0.842530 -0.386841 0.385923 -0.212091 0.897820 -0.799049 -0.563247 0.210412 0.461068 -0.798605 -0.386841 0.406026 -0.170476 0.897820 -0.735616 -0.643891 0.210412 0.542228 -0.745883 -0.386841 0.421530 -0.127404 0.897820 -0.664797 -0.716779 0.210412 0.616731 -0.685563 -0.386841 0.432561 -0.082523 0.897820 -0.586012 -0.782506 0.210412 0.685186 -0.617150 -0.386841 0.438828 -0.036733 0.897820 -0.500773 -0.839615 0.210412 0.746094 -0.541938 -0.386841 0.440261 0.009462 0.897820 -0.410017 -0.887476 0.210412 0.798784 -0.460758 -0.386841 0.436900 0.055115 0.897820 -0.315671 -0.925245 0.210412 0.842301 -0.375344 -0.386841 0.428717 0.100602 0.897820 -0.216960 -0.953234 0.210412 0.877001 -0.284998 -0.386841 0.415812 0.144981 0.897820 -0.115859 -0.970723 0.210412 0.902040 -0.191512 -0.386841 0.398515 0.187364 0.897820 -0.014460 -0.977506 0.210412 0.917048 -0.096834 -0.386841 0.376683 0.228099 0.897820 0.088070 -0.973638 0.210412 0.922146 -0.000188 -0.386841 0.350702 0.266322 0.897820 0.189629 -0.959045 0.210412 0.917087 0.096461 -0.386841 0.320858 0.301611 0.897820 0.289099 -0.933889 0.210412 0.901927 0.192047 -0.386841 0.287813 0.333291 0.897820 0.384487 -0.898831 0.210412 0.877117 0.284641 -0.386841 0.251297 0.361620 0.897820 0.476573 -0.853584 0.210412 0.842454 0.375001 -0.386841 0.212013 0.385966 0.897820 0.563410 -0.798934 0.210412 0.798511 0.461231 -0.386841 0.170393 0.406061 0.897820 0.644041 -0.735485 0.210412 0.745773 0.542380 -0.386841 0.127318 0.421556 0.897820 0.716914 -0.664651 0.210412 0.685438 0.616870 -0.386841 0.082435 0.432578 0.897820 0.782626 -0.585853 0.210412 0.617010 0.685312 -0.386841 0.036643 0.438835 0.897820 0.839717 -0.500602 0.210412 0.541786 0.746205 -0.386841 -0.009111 0.440268 0.897820 0.887149 -0.410724 0.210412 0.461394 0.798417 -0.386841 -0.055204 0.436889 0.897820 0.925310 -0.315482 0.210412 0.375173 0.842377 -0.386841 -0.100689 0.428697 0.897820 0.953278 -0.216766 0.210412 0.284819 0.877059 -0.386841 -0.145065 0.415783 0.897820 0.970747 -0.115661 0.210412 0.191329 0.902079 -0.386841 -0.187445 0.398477 0.897820 0.977509 -0.014261 0.210412 0.096648 0.917068 -0.386841 -0.228176 0.376636 0.897820 0.973620 0.088268 0.210412 0.000000 0.922146 -0.386841 -0.266393 0.350648 0.897820 0.959007 0.189824 0.210412 -0.096648 0.917068 -0.386841 -0.301356 0.321098 0.897820 0.934119 0.288355 0.210412 -0.191329 0.902079 -0.386841 -0.333349 0.287745 0.897820 0.898753 0.384670 0.210412 -0.284819 0.877059 -0.386841 -0.361671 0.251223 0.897820 0.853487 0.476747 0.210412 -0.375173 0.842377 -0.386841 -0.386009 0.211934 0.897820 0.798820 0.563573 0.210412 -0.461394 0.798417 -0.386841 -0.405925 0.170716 0.897820 0.735998 0.643455 0.210412 -0.541786 0.746205 -0.386841 -0.421582 0.127232 0.897820 0.664505 0.717049 0.210412 -0.617010 0.685312 -0.386841 -0.432595 0.082347 0.897820 0.585694 0.782745 0.210412 -0.685438 0.616870 -0.386841 -0.438806 0.036993 0.897820 0.501270 0.839318 0.210412 -0.745773 0.542380 -0.386841 -0.440266 -0.009201 0.897820 0.410543 0.887232 0.210412 -0.798511 0.461231 -0.386841 -0.436877 -0.055293 0.897820 0.315294 0.925374 0.210412 -0.842454 0.375001 -0.386841 -0.428676 -0.100777 0.897820 0.216571 0.953323 0.210412 -0.877117 0.284641 -0.386841 -0.415898 -0.144734 0.897820 0.116434 0.970654 0.210412 -0.901927 0.192047 -0.386841 -0.398438 -0.187526 0.897820 0.014062 0.977512 0.210412 -0.917087 0.096461 -0.386841 0.081573 0.996059 -0.034825 0.916425 -0.088696 -0.390254 -0.391805 -0.000080 -0.920048 -0.023270 0.999123 -0.034825 0.920674 0.007840 -0.390254 -0.389639 -0.041143 -0.920048 -0.126866 0.991308 -0.034825 0.914885 0.103376 -0.390254 -0.383262 -0.081370 -0.920048 -0.230063 0.972552 -0.034825 0.899012 0.198693 -0.390254 -0.372623 -0.121091 -0.920048 -0.330727 0.943084 -0.034825 0.873236 0.291822 -0.390254 -0.357880 -0.159478 -0.920048 -0.426844 0.903655 -0.034825 0.838223 0.380898 -0.390254 -0.339390 -0.195768 -0.920048 -0.519202 0.853942 -0.034825 0.793686 0.466652 -0.390254 -0.317003 -0.230261 -0.920048 -0.605842 0.794822 -0.034825 0.740407 0.547266 -0.390254 -0.291124 -0.262217 -0.920048 -0.685809 0.726948 -0.034825 0.678971 0.621852 -0.390254 -0.262039 -0.291285 -0.920048 -0.757569 0.651825 -0.034825 0.610747 0.688977 -0.390254 -0.230384 -0.316914 -0.920048 -0.821713 0.568836 -0.034825 0.535173 0.749194 -0.390254 -0.195900 -0.339314 -0.920048 -0.876806 0.479582 -0.034825 0.453705 0.801158 -0.390254 -0.159259 -0.357977 -0.920048 -0.921855 0.385967 -0.034825 0.368083 0.843929 -0.390254 -0.121236 -0.372576 -0.920048 -0.957230 0.287225 -0.034825 0.277606 0.877859 -0.390254 -0.081520 -0.383231 -0.920048 -0.982061 0.185318 -0.034825 0.184072 0.902119 -0.390254 -0.040905 -0.389664 -0.920048 -0.996009 0.082182 -0.034825 0.089256 0.916371 -0.390254 -0.000160 -0.391805 -0.920048 -0.999137 -0.022660 -0.034825 -0.007278 0.920678 -0.390254 0.040905 -0.389664 -0.920048 -0.991259 -0.127251 -0.034825 -0.103732 0.914845 -0.390254 0.081520 -0.383231 -0.920048 -0.972463 -0.230442 -0.034825 -0.199043 0.898935 -0.390254 0.121236 -0.372576 -0.920048 -0.943286 -0.330150 -0.034825 -0.291288 0.873415 -0.390254 0.159259 -0.357977 -0.920048 -0.903489 -0.427195 -0.034825 -0.381224 0.838075 -0.390254 0.195900 -0.339314 -0.920048 -0.853740 -0.519535 -0.034825 -0.466960 0.793505 -0.390254 0.230384 -0.316914 -0.920048 -0.795192 -0.605356 -0.034825 -0.546813 0.740741 -0.390254 0.262039 -0.291285 -0.920048 -0.727367 -0.685364 -0.034825 -0.621437 0.679351 -0.390254 0.291124 -0.262217 -0.920048 -0.651530 -0.757823 -0.034825 -0.689215 0.610479 -0.390254 0.317003 -0.230261 -0.920048 -0.568517 -0.821934 -0.034825 -0.749402 0.534882 -0.390254 0.339390 -0.195768 -0.920048 -0.480118 -0.876513 -0.034825 -0.800880 0.454195 -0.390254 0.357880 -0.159478 -0.920048 -0.385609 -0.922005 -0.034825 -0.844072 0.367755 -0.390254 0.372623 -0.121091 -0.920048 -0.286852 -0.957342 -0.034825 -0.877967 0.277265 -0.390254 0.383262 -0.081370 -0.920048 -0.185918 -0.981948 -0.034825 -0.902007 0.184623 -0.390254 0.389639 -0.041143 -0.920048 -0.081979 -0.996025 -0.034825 -0.916389 0.089069 -0.390254 0.391805 -0.000080 -0.920048 0.022863 -0.999132 -0.034825 -0.920677 -0.007465 -0.390254 0.389655 0.040985 -0.920048 0.127453 -0.991233 -0.034825 -0.914824 -0.103918 -0.390254 0.383214 0.081598 -0.920048 0.229667 -0.972646 -0.034825 -0.899093 -0.198327 -0.390254 0.372673 0.120939 -0.920048 0.330343 -0.943218 -0.034825 -0.873355 -0.291466 -0.390254 0.357945 0.159332 -0.920048 0.427379 -0.903401 -0.034825 -0.837998 -0.381394 -0.390254 0.339274 0.195969 -0.920048 0.519708 -0.853634 -0.034825 -0.793409 -0.467122 -0.390254 0.316867 0.230449 -0.920048 0.605518 -0.795069 -0.034825 -0.740629 -0.546964 -0.390254 0.291231 0.262098 -0.920048 0.685512 -0.727228 -0.034825 -0.679225 -0.621575 -0.390254 0.262158 0.291178 -0.920048 0.757956 -0.651376 -0.034825 -0.610338 -0.689339 -0.390254 0.230196 0.317050 -0.920048 0.821481 -0.569171 -0.034825 -0.535479 -0.748976 -0.390254 0.196039 0.339234 -0.920048 0.876610 -0.479939 -0.034825 -0.454031 -0.800973 -0.390254 0.159405 0.357912 -0.920048 0.922083 -0.385421 -0.034825 -0.367583 -0.844147 -0.390254 0.121015 0.372648 -0.920048 0.957400 -0.286657 -0.034825 -0.277086 -0.878023 -0.390254 0.081292 0.383279 -0.920048 0.981986 -0.185718 -0.034825 -0.184439 -0.902044 -0.390254 0.041064 0.389647 -0.920048 0.996042 -0.081776 -0.034825 -0.088883 -0.916407 -0.390254 0.000000 0.391805 -0.920048 0.999127 0.023066 -0.034825 0.007653 -0.920675 -0.390254 -0.041064 0.389647 -0.920048 0.991334 0.126664 -0.034825 0.103189 -0.914906 -0.390254 -0.081292 0.383279 -0.920048 0.972599 0.229865 -0.034825 0.198510 -0.899053 -0.390254 -0.121015 0.372648 -0.920048 0.943151 0.330535 -0.034825 0.291644 -0.873296 -0.390254 -0.159405 0.357912 -0.920048 0.903314 0.427563 -0.034825 0.381565 -0.837920 -0.390254 -0.196039 0.339234 -0.920048 0.854047 0.519028 -0.034825 0.466490 -0.793781 -0.390254 -0.230196 0.317050 -0.920048 0.794946 0.605680 -0.034825 0.547115 -0.740518 -0.390254 -0.262158 0.291178 -0.920048 0.727088 0.685660 -0.034825 0.621713 -0.679098 -0.390254 -0.291231 0.262098 -0.920048 0.651979 0.757437 -0.034825 0.688853 -0.610887 -0.390254 -0.316867 0.230449 -0.920048 0.569004 0.821597 -0.034825 0.749085 -0.535326 -0.390254 -0.339274 0.195969 -0.920048 0.479761 0.876708 -0.034825 0.801065 -0.453868 -0.390254 -0.357945 0.159332 -0.920048 0.385233 0.922162 -0.034825 0.844222 -0.367411 -0.390254 -0.372673 0.120939 -0.920048 0.287420 0.957171 -0.034825 0.877802 -0.277785 -0.390254 -0.383214 0.081598 -0.920048 0.185518 0.982024 -0.034825 0.902082 -0.184255 -0.390254 -0.389655 0.040985 -0.920048 0.152771 -0.945494 0.287580 0.443083 0.325640 0.835246 -0.883368 -0.000180 0.468680 0.251024 -0.924275 0.287580 0.406513 0.370284 0.835246 -0.878484 -0.092762 0.468680 0.345619 -0.893222 0.287580 0.365876 0.410485 0.835246 -0.864107 -0.183459 0.468680 0.437332 -0.852079 0.287580 0.320840 0.446571 0.835246 -0.840121 -0.273013 0.468680 0.524227 -0.801551 0.287580 0.272269 0.477738 0.835246 -0.806880 -0.359560 0.468680 0.604606 -0.742798 0.287580 0.221203 0.503421 0.835246 -0.765193 -0.441382 0.468680 0.679127 -0.675340 0.287580 0.167222 0.523832 0.835246 -0.714719 -0.519148 0.468680 0.746167 -0.600444 0.287580 0.111400 0.538473 0.835246 -0.656372 -0.591197 0.468680 0.804988 -0.518933 0.287580 0.054350 0.547183 0.835246 -0.590796 -0.656734 0.468680 0.854511 -0.432561 0.287580 -0.002748 0.549869 0.835246 -0.519426 -0.714517 0.468680 0.895140 -0.340620 0.287580 -0.060363 0.546553 0.835246 -0.441679 -0.765022 0.468680 0.925910 -0.244927 0.287580 -0.117313 0.537216 0.835246 -0.359067 -0.807100 0.468680 0.946333 -0.147483 0.287580 -0.172449 0.522135 0.835246 -0.273340 -0.840014 0.468680 0.956579 -0.047488 0.287580 -0.226223 0.501185 0.835246 -0.183795 -0.864036 0.468680 0.956287 0.053030 0.287580 -0.277505 0.474715 0.835246 -0.092225 -0.878540 0.468680 0.945587 0.152193 0.287580 -0.325369 0.443282 0.835246 -0.000360 -0.883368 0.468680 0.924428 0.250460 0.287580 -0.370036 0.406739 0.835246 0.092225 -0.878540 0.468680 0.893087 0.345967 0.287580 -0.410627 0.365717 0.835246 0.183795 -0.864036 0.468680 0.851909 0.437664 0.287580 -0.446696 0.320666 0.835246 0.273340 -0.840014 0.468680 0.801871 0.523738 0.287580 -0.477571 0.272561 0.835246 0.359067 -0.807100 0.468680 0.742563 0.604895 0.287580 -0.503507 0.221007 0.835246 0.441679 -0.765022 0.468680 0.675076 0.679389 0.287580 -0.523897 0.167018 0.835246 0.519426 -0.714517 0.468680 0.600899 0.745800 0.287580 -0.538405 0.111729 0.835246 0.590796 -0.656734 0.468680 0.519425 0.804671 0.287580 -0.547150 0.054685 0.835246 0.656372 -0.591197 0.468680 0.432229 0.854679 0.287580 -0.549868 -0.002962 0.835246 0.714719 -0.519148 0.468680 0.340272 0.895272 0.287580 -0.546529 -0.060575 0.835246 0.765193 -0.441382 0.468680 0.245493 0.925760 0.287580 -0.537288 -0.116985 0.835246 0.806880 -0.359560 0.468680 0.147114 0.946391 0.287580 -0.522068 -0.172652 0.835246 0.840121 -0.273013 0.468680 0.047116 0.956597 0.287580 -0.501097 -0.226418 0.835246 0.864107 -0.183459 0.468680 -0.052446 0.956320 0.287580 -0.474885 -0.277215 0.835246 0.878484 -0.092762 0.468680 -0.152386 0.945556 0.287580 -0.443215 -0.325459 0.835246 0.883368 -0.000180 0.468680 -0.250648 0.924377 0.287580 -0.406664 -0.370119 0.835246 0.878522 0.092404 0.468680 -0.346149 0.893017 0.287580 -0.365633 -0.410702 0.835246 0.863998 0.183971 0.468680 -0.436985 0.852257 0.287580 -0.321022 -0.446440 0.835246 0.840232 0.272671 0.468680 -0.523901 0.801764 0.287580 -0.272463 -0.477627 0.835246 0.807026 0.359231 0.468680 -0.605046 0.742440 0.287580 -0.220904 -0.503552 0.835246 0.764932 0.441835 0.468680 -0.679527 0.674938 0.287580 -0.166912 -0.523931 0.835246 0.714411 0.519572 0.468680 -0.745922 0.600748 0.287580 -0.111619 -0.538428 0.835246 0.656613 0.590930 0.468680 -0.804777 0.519261 0.287580 -0.054573 -0.547161 0.835246 0.591063 0.656493 0.468680 -0.854767 0.432055 0.287580 0.003074 -0.549867 0.835246 0.519003 0.714825 0.468680 -0.895001 0.340985 0.287580 0.060140 -0.546577 0.835246 0.441991 0.764842 0.468680 -0.925810 0.245304 0.287580 0.117094 -0.537264 0.835246 0.359396 0.806953 0.468680 -0.946421 0.146922 0.287580 0.172758 -0.522033 0.835246 0.272842 0.840176 0.468680 -0.956607 0.046921 0.287580 0.226520 -0.501051 0.835246 0.183283 0.864145 0.468680 -0.956309 -0.052641 0.287580 0.277311 -0.474828 0.835246 0.092583 0.878503 0.468680 -0.945525 -0.152579 0.287580 0.325549 -0.443149 0.835246 0.000000 0.883368 0.468680 -0.924326 -0.250836 0.287580 0.370202 -0.406589 0.835246 -0.092583 0.878503 0.468680 -0.893292 -0.345438 0.287580 0.410410 -0.365960 0.835246 -0.183283 0.864145 0.468680 -0.852168 -0.437158 0.287580 0.446505 -0.320931 0.835246 -0.272842 0.840176 0.468680 -0.801657 -0.524064 0.287580 0.477682 -0.272366 0.835246 -0.359396 0.806953 0.468680 -0.742317 -0.605197 0.287580 0.503597 -0.220802 0.835246 -0.441991 0.764842 0.468680 -0.675479 -0.678989 0.287580 0.523798 -0.167329 0.835246 -0.519003 0.714825 0.468680 -0.600596 -0.746045 0.287580 0.538451 -0.111510 0.835246 -0.591063 0.656493 0.468680 -0.519097 -0.804883 0.287580 0.547172 -0.054462 0.835246 -0.656613 0.590930 0.468680 -0.432735 -0.854423 0.287580 0.549870 0.002636 0.835246 -0.714411 0.519572 0.468680 -0.340802 -0.895071 0.287580 0.546565 0.060252 0.835246 -0.764932 0.441835 0.468680 -0.245116 -0.925860 0.287580 0.537240 0.117204 0.835246 -0.807026 0.359231 0.468680 -0.146729 -0.946450 0.287580 0.521997 0.172865 0.835246 -0.840232 0.272671 0.468680 -0.047683 -0.956569 0.287580 0.501231 0.226121 0.835246 -0.863998 0.183971 0.468680 0.052835 -0.956298 0.287580 0.474772 0.277408 0.835246 -0.878522 0.092404 0.468680 -0.000089 -0.453068 0.891476 -0.000274 0.891476 0.453068 -1.000000 -0.000204 -0.000204 0.047396 -0.450582 0.891476 -0.093705 0.886538 0.453068 -0.994471 -0.105010 -0.000204 0.093916 -0.443227 0.891476 -0.185233 0.872020 0.453068 -0.978197 -0.207681 -0.000204 0.139852 -0.430943 0.891476 -0.275607 0.847803 0.453068 -0.951043 -0.309059 -0.000204 0.184248 -0.413912 0.891476 -0.362945 0.814249 0.453068 -0.913413 -0.407033 -0.000204 0.226222 -0.392548 0.891476 -0.445513 0.772171 0.453068 -0.866223 -0.499658 -0.000204 0.266118 -0.366677 0.891476 -0.523988 0.721225 0.453068 -0.809085 -0.587692 -0.000204 0.303082 -0.336766 0.891476 -0.596692 0.662335 0.453068 -0.743034 -0.669253 -0.000204 0.336709 -0.303146 0.891476 -0.662823 0.596150 0.453068 -0.668799 -0.743443 -0.000204 0.366360 -0.266554 0.891476 -0.721130 0.524120 0.453068 -0.588007 -0.808856 -0.000204 0.392279 -0.226689 0.891476 -0.772090 0.445653 0.453068 -0.499995 -0.866028 -0.000204 0.413877 -0.184327 0.891476 -0.814545 0.362278 0.453068 -0.406475 -0.913662 -0.000204 0.430776 -0.140365 0.891476 -0.847753 0.275761 0.453068 -0.309429 -0.950922 -0.000204 0.443115 -0.094444 0.891476 -0.871986 0.185392 0.453068 -0.208062 -0.978116 -0.000204 0.450573 -0.047482 0.891476 -0.886614 0.092980 0.453068 -0.104402 -0.994535 -0.000204 0.453068 -0.000366 0.891476 -0.891476 0.000271 0.453068 -0.000407 -1.000000 -0.000204 0.450611 0.047121 0.891476 -0.886595 -0.093164 0.453068 0.104402 -0.994535 -0.000204 0.443190 0.094088 0.891476 -0.871948 -0.185572 0.453068 0.208062 -0.978116 -0.000204 0.430889 0.140020 0.891476 -0.847696 -0.275937 0.453068 0.309429 -0.950922 -0.000204 0.414025 0.183995 0.891476 -0.814470 -0.362447 0.453068 0.406475 -0.913662 -0.000204 0.392460 0.226374 0.891476 -0.771998 -0.445813 0.453068 0.499995 -0.866028 -0.000204 0.366573 0.266260 0.891476 -0.721021 -0.524269 0.453068 0.588007 -0.808856 -0.000204 0.336951 0.302877 0.891476 -0.662700 -0.596287 0.453068 0.668799 -0.743443 -0.000204 0.303352 0.336523 0.891476 -0.596555 -0.662459 0.453068 0.743034 -0.669253 -0.000204 0.266411 0.366463 0.891476 -0.523839 -0.721334 0.453068 0.809085 -0.587692 -0.000204 0.226536 0.392367 0.891476 -0.445353 -0.772263 0.453068 0.866223 -0.499658 -0.000204 0.184579 0.413764 0.891476 -0.362776 -0.814324 0.453068 0.913413 -0.407033 -0.000204 0.140197 0.430831 0.891476 -0.275431 -0.847860 0.453068 0.951043 -0.309059 -0.000204 0.094271 0.443152 0.891476 -0.185052 -0.872058 0.453068 0.978197 -0.207681 -0.000204 0.047757 0.450544 0.891476 -0.093522 -0.886557 0.453068 0.994471 -0.105010 -0.000204 0.000274 0.453068 0.891476 -0.000089 -0.891476 0.453068 1.000000 -0.000204 -0.000204 -0.047212 0.450601 0.891476 0.093344 -0.886576 0.453068 0.994514 0.104605 -0.000204 -0.094179 0.443171 0.891476 0.185750 -0.871910 0.453068 0.978073 0.208261 -0.000204 -0.139677 0.431000 0.891476 0.275261 -0.847916 0.453068 0.951169 0.308672 -0.000204 -0.184079 0.413987 0.891476 0.362613 -0.814396 0.453068 0.913579 0.406661 -0.000204 -0.226454 0.392414 0.891476 0.445970 -0.771907 0.453068 0.865927 0.500171 -0.000204 -0.266335 0.366519 0.891476 0.524416 -0.720915 0.453068 0.808736 0.588172 -0.000204 -0.302945 0.336890 0.891476 0.596422 -0.662578 0.453068 0.743307 0.668951 -0.000204 -0.336585 0.303284 0.891476 0.662580 -0.596420 0.453068 0.669102 0.743170 -0.000204 -0.366518 0.266337 0.891476 0.721440 -0.523692 0.453068 0.587528 0.809204 -0.000204 -0.392186 0.226848 0.891476 0.771908 -0.445968 0.453068 0.500347 0.865825 -0.000204 -0.413802 0.184495 0.891476 0.814398 -0.362610 0.453068 0.406847 0.913496 -0.000204 -0.430859 0.140110 0.891476 0.847916 -0.275258 0.453068 0.308866 0.951106 -0.000204 -0.443171 0.094181 0.891476 0.872096 -0.184875 0.453068 0.207482 0.978239 -0.000204 -0.450554 0.047665 0.891476 0.886576 -0.093341 0.453068 0.104807 0.994493 -0.000204 -0.453068 0.000182 0.891476 0.891476 0.000092 0.453068 0.000000 1.000000 -0.000204 -0.450592 -0.047304 0.891476 0.886557 0.093525 0.453068 -0.104807 0.994493 -0.000204 -0.443246 -0.093826 0.891476 0.872057 0.185055 0.453068 -0.207482 0.978239 -0.000204 -0.430971 -0.139764 0.891476 0.847860 0.275434 0.453068 -0.308866 0.951106 -0.000204 -0.413950 -0.184163 0.891476 0.814323 0.362779 0.453068 -0.406847 0.913496 -0.000204 -0.392368 -0.226534 0.891476 0.771816 0.446128 0.453068 -0.500347 0.865825 -0.000204 -0.366731 -0.266043 0.891476 0.721332 0.523841 0.453068 -0.587528 0.809204 -0.000204 -0.336828 -0.303014 0.891476 0.662457 0.596557 0.453068 -0.669102 0.743170 -0.000204 -0.303215 -0.336647 0.891476 0.596285 0.662702 0.453068 -0.743307 0.668951 -0.000204 -0.266629 -0.366305 0.891476 0.524266 0.721023 0.453068 -0.808736 0.588172 -0.000204 -0.226769 -0.392233 0.891476 0.445811 0.771999 0.453068 -0.865927 0.500171 -0.000204 -0.184411 -0.413839 0.891476 0.362444 0.814471 0.453068 -0.913579 0.406661 -0.000204 -0.140022 -0.430888 0.891476 0.275086 0.847973 0.453068 -0.951169 0.308672 -0.000204 -0.094534 -0.443096 0.891476 0.185569 0.871948 0.453068 -0.978073 0.208261 -0.000204 -0.047574 -0.450563 0.891476 0.093161 0.886595 0.453068 -0.994514 0.104605 -0.000204 0.910647 -0.018017 -0.412792 -0.016375 -0.999838 0.007515 -0.412861 -0.000084 -0.910794 0.907520 0.077524 -0.412792 0.088505 -0.996047 0.007515 -0.410578 -0.043354 -0.910794 0.894569 0.171318 -0.412792 0.191429 -0.981478 0.007515 -0.403859 -0.085743 -0.910794 0.871686 0.264131 -0.412792 0.293241 -0.956009 0.007515 -0.392648 -0.127598 -0.910794 0.839203 0.354036 -0.412792 0.391822 -0.920010 0.007515 -0.377112 -0.168048 -0.910794 0.797915 0.439243 -0.412792 0.485214 -0.874363 0.007515 -0.357629 -0.206289 -0.910794 0.747485 0.520451 -0.412792 0.574181 -0.818694 0.007515 -0.334039 -0.242635 -0.910794 0.688821 0.595926 -0.412792 0.656824 -0.754007 0.007515 -0.306770 -0.276308 -0.910794 0.622570 0.664837 -0.412792 0.732232 -0.681014 0.007515 -0.276121 -0.306938 -0.910794 0.550188 0.725876 -0.412792 0.798973 -0.601319 0.007515 -0.242765 -0.333945 -0.910794 0.471081 0.779542 -0.412792 0.857596 -0.514270 0.007515 -0.206428 -0.357549 -0.910794 0.386785 0.824621 -0.412792 0.906772 -0.421555 0.007515 -0.167817 -0.377215 -0.910794 0.299089 0.860319 -0.412792 0.945635 -0.325143 0.007515 -0.127751 -0.392598 -0.910794 0.207274 0.886927 -0.412792 0.974504 -0.224243 0.007515 -0.085900 -0.403825 -0.910794 0.113176 0.903766 -0.412792 0.992640 -0.120873 0.007515 -0.043104 -0.410604 -0.910794 0.018574 0.910636 -0.412792 0.999828 -0.016986 0.007515 -0.000168 -0.412861 -0.910794 -0.076970 0.907567 -0.412792 0.996101 0.087897 0.007515 0.043104 -0.410604 -0.910794 -0.171666 0.894502 -0.412792 0.981403 0.191811 0.007515 0.085900 -0.403825 -0.910794 -0.264470 0.871584 -0.412792 0.955895 0.293613 0.007515 0.127751 -0.392598 -0.910794 -0.353523 0.839419 -0.412792 0.920249 0.391260 0.007515 0.167817 -0.377215 -0.910794 -0.439553 0.797744 -0.412792 0.874174 0.485554 0.007515 0.206428 -0.357549 -0.910794 -0.520741 0.747283 -0.412792 0.818470 0.574500 0.007515 0.242765 -0.333945 -0.910794 -0.595505 0.689185 -0.412792 0.754408 0.656363 0.007515 0.276121 -0.306938 -0.910794 -0.664457 0.622976 -0.412792 0.681461 0.731816 0.007515 0.306770 -0.276308 -0.910794 -0.726090 0.549905 -0.412792 0.601009 0.799207 0.007515 0.334039 -0.242635 -0.910794 -0.779725 0.470778 -0.412792 0.513936 0.857796 0.007515 0.357629 -0.206289 -0.910794 -0.824385 0.387289 -0.412792 0.422109 0.906514 0.007515 0.377112 -0.168048 -0.910794 -0.860435 0.298754 -0.412792 0.324775 0.945761 0.007515 0.392648 -0.127598 -0.910794 -0.887008 0.206929 -0.412792 0.223864 0.974591 0.007515 0.403859 -0.085743 -0.910794 -0.903697 0.113728 -0.412792 0.121480 0.992566 0.007515 0.410578 -0.043354 -0.910794 -0.910640 0.018388 -0.412792 0.016782 0.999831 0.007515 0.412861 -0.000084 -0.910794 -0.907552 -0.077155 -0.412792 -0.088099 0.996083 0.007515 0.410596 0.043187 -0.910794 -0.894467 -0.171848 -0.412792 -0.192011 0.981364 0.007515 0.403808 0.085983 -0.910794 -0.871794 -0.263776 -0.412792 -0.292851 0.956128 0.007515 0.392700 0.127438 -0.910794 -0.839347 -0.353694 -0.412792 -0.391448 0.920170 0.007515 0.377181 0.167894 -0.910794 -0.797655 -0.439715 -0.412792 -0.485732 0.874075 0.007515 0.357507 0.206501 -0.910794 -0.747176 -0.520894 -0.412792 -0.574666 0.818353 0.007515 0.333895 0.242833 -0.910794 -0.689064 -0.595645 -0.412792 -0.656517 0.754274 0.007515 0.306882 0.276183 -0.910794 -0.622841 -0.664584 -0.412792 -0.731954 0.681312 0.007515 0.276246 0.306826 -0.910794 -0.549758 -0.726202 -0.412792 -0.799330 0.600846 0.007515 0.242567 0.334089 -0.910794 -0.471398 -0.779350 -0.412792 -0.857386 0.514619 0.007515 0.206574 0.357465 -0.910794 -0.387121 -0.824464 -0.412792 -0.906600 0.421925 0.007515 0.167971 0.377147 -0.910794 -0.298579 -0.860496 -0.412792 -0.945827 0.324583 0.007515 0.127518 0.392674 -0.910794 -0.206748 -0.887050 -0.412792 -0.974637 0.223665 0.007515 0.085661 0.403876 -0.910794 -0.113544 -0.903720 -0.412792 -0.992590 0.121277 0.007515 0.043271 0.410587 -0.910794 -0.018203 -0.910643 -0.412792 -0.999834 0.016579 0.007515 0.000000 0.412861 -0.910794 0.077340 -0.907536 -0.412792 -0.996065 -0.088302 0.007515 -0.043271 0.410587 -0.910794 0.171135 -0.894603 -0.412792 -0.981517 -0.191229 0.007515 -0.085661 0.403876 -0.910794 0.263954 -0.871740 -0.412792 -0.956069 -0.293046 0.007515 -0.127518 0.392674 -0.910794 0.353865 -0.839275 -0.412792 -0.920090 -0.391635 0.007515 -0.167971 0.377147 -0.910794 0.439878 -0.797565 -0.412792 -0.873976 -0.485910 0.007515 -0.206574 0.357465 -0.910794 0.520298 -0.747591 -0.412792 -0.818811 -0.574014 0.007515 -0.242567 0.334089 -0.910794 0.595786 -0.688943 -0.412792 -0.754140 -0.656670 0.007515 -0.276246 0.306826 -0.910794 0.664711 -0.622706 -0.412792 -0.681163 -0.732093 0.007515 -0.306882 0.276183 -0.910794 0.725764 -0.550336 -0.412792 -0.601482 -0.798851 0.007515 -0.333895 0.242833 -0.910794 0.779446 -0.471240 -0.412792 -0.514444 -0.857491 0.007515 -0.357507 0.206501 -0.910794 0.824542 -0.386953 -0.412792 -0.421740 -0.906686 0.007515 -0.377181 0.167894 -0.910794 0.860557 -0.298404 -0.412792 -0.324390 -0.945894 0.007515 -0.392700 0.127438 -0.910794 0.886885 -0.207455 -0.412792 -0.224442 -0.974459 0.007515 -0.403808 0.085983 -0.910794 0.903743 -0.113360 -0.412792 -0.121075 -0.992615 0.007515 -0.410596 0.043187 -0.910794 0.195807 0.680797 0.705815 -0.182251 0.732472 -0.655949 -0.963558 -0.000196 0.267499 0.123376 0.697570 0.705815 -0.258016 0.709336 -0.655949 -0.958231 -0.101183 0.267499 0.050293 0.706609 0.705815 -0.330260 0.678719 -0.655949 -0.942549 -0.200113 0.267499 -0.024042 0.707988 0.705815 -0.399575 0.640367 -0.655949 -0.916385 -0.297797 0.267499 -0.098112 0.701569 0.705815 -0.464490 0.594962 -0.655949 -0.880127 -0.392200 0.267499 -0.170414 0.687593 0.705815 -0.523745 0.543527 -0.655949 -0.834656 -0.481449 0.267499 -0.241540 0.665946 0.705815 -0.577826 0.485642 -0.655949 -0.779600 -0.566276 0.267499 -0.310005 0.636963 0.705815 -0.625542 0.422407 -0.655949 -0.715957 -0.644865 0.267499 -0.375056 0.600964 0.705815 -0.666368 0.354519 -0.655949 -0.644427 -0.716350 0.267499 -0.435418 0.558782 0.705815 -0.699571 0.283426 -0.655949 -0.566579 -0.779380 0.267499 -0.491584 0.510069 0.705815 -0.725423 0.208545 -0.655949 -0.481774 -0.834469 0.267499 -0.542335 0.455739 0.705815 -0.743285 0.131367 -0.655949 -0.391662 -0.880366 0.267499 -0.586716 0.396975 0.705815 -0.752907 0.053495 -0.655949 -0.298153 -0.916269 0.267499 -0.625091 0.333297 0.705815 -0.754367 -0.025710 -0.655949 -0.200479 -0.942471 0.267499 -0.656580 0.265947 0.705815 -0.747518 -0.104631 -0.655949 -0.100598 -0.958292 0.267499 -0.680678 0.196223 0.705815 -0.732583 -0.181804 -0.655949 -0.000392 -0.963558 0.267499 -0.697494 0.123802 0.705815 -0.709494 -0.257582 -0.655949 0.100598 -0.958292 0.267499 -0.706628 0.050018 0.705815 -0.678590 -0.330524 -0.655949 0.200479 -0.942471 0.267499 -0.707979 -0.024318 0.705815 -0.640211 -0.399824 -0.655949 0.298153 -0.916269 0.267499 -0.701629 -0.097683 0.705815 -0.595246 -0.464126 -0.655949 0.391662 -0.880366 0.267499 -0.687527 -0.170681 0.705815 -0.543324 -0.523956 -0.655949 0.481774 -0.834469 0.267499 -0.665852 -0.241799 0.705815 -0.485417 -0.578014 -0.655949 0.566579 -0.779380 0.267499 -0.637152 -0.309616 0.705815 -0.422789 -0.625284 -0.655949 0.644427 -0.716350 0.267499 -0.601193 -0.374689 0.705815 -0.354926 -0.666151 -0.655949 0.715957 -0.644865 0.267499 -0.558612 -0.435635 0.705815 -0.283154 -0.699681 -0.655949 0.779600 -0.566276 0.267499 -0.509878 -0.491782 0.705815 -0.208263 -0.725505 -0.655949 0.834656 -0.481449 0.267499 -0.456070 -0.542057 0.705815 -0.131821 -0.743205 -0.655949 0.880127 -0.392200 0.267499 -0.396747 -0.586871 0.705815 -0.053202 -0.752927 -0.655949 0.916385 -0.297797 0.267499 -0.333053 -0.625221 0.705815 0.026003 -0.754357 -0.655949 0.942549 -0.200113 0.267499 -0.266348 -0.656418 0.705815 0.104175 -0.747581 -0.655949 0.958231 -0.101183 0.267499 -0.196084 -0.680718 0.705815 0.181953 -0.732546 -0.655949 0.963558 -0.000196 0.267499 -0.123660 -0.697520 0.705815 0.257727 -0.709441 -0.655949 0.958272 0.100793 0.267499 -0.049874 -0.706639 0.705815 0.330662 -0.678523 -0.655949 0.942431 0.200671 0.267499 0.023754 -0.707998 0.705815 0.399314 -0.640530 -0.655949 0.916506 0.297423 0.267499 0.097826 -0.701609 0.705815 0.464247 -0.595151 -0.655949 0.880287 0.391842 0.267499 0.170821 -0.687492 0.705815 0.524067 -0.543217 -0.655949 0.834371 0.481944 0.267499 0.241934 -0.665803 0.705815 0.578113 -0.485299 -0.655949 0.779264 0.566738 0.267499 0.309746 -0.637089 0.705815 0.625370 -0.422662 -0.655949 0.716219 0.644573 0.267499 0.374811 -0.601117 0.705815 0.666224 -0.354790 -0.655949 0.644719 0.716088 0.267499 0.435749 -0.558524 0.705815 0.699739 -0.283012 -0.655949 0.566117 0.779715 0.267499 0.491376 -0.510270 0.705815 0.725338 -0.208841 -0.655949 0.482114 0.834273 0.267499 0.542150 -0.455960 0.705815 0.743232 -0.131670 -0.655949 0.392021 0.880207 0.267499 0.586952 -0.396627 0.705815 0.752938 -0.053049 -0.655949 0.297610 0.916446 0.267499 0.625288 -0.332926 0.705815 0.754351 0.026157 -0.655949 0.199921 0.942590 0.267499 0.656472 -0.266214 0.705815 0.747560 0.104327 -0.655949 0.100988 0.958251 0.267499 0.680758 -0.195945 0.705815 0.732509 0.182102 -0.655949 0.000000 0.963558 0.267499 0.697545 -0.123518 0.705815 0.709389 0.257871 -0.655949 -0.100988 0.958251 0.267499 0.706599 -0.050437 0.705815 0.678786 0.330121 -0.655949 -0.199921 0.942590 0.267499 0.707993 0.023898 0.705815 0.640448 0.399445 -0.655949 -0.297610 0.916446 0.267499 0.701589 0.097969 0.705815 0.595056 0.464369 -0.655949 -0.392021 0.880207 0.267499 0.687457 0.170961 0.705815 0.543110 0.524177 -0.655949 -0.482114 0.834273 0.267499 0.665995 0.241404 0.705815 0.485759 0.577727 -0.655949 -0.566117 0.779715 0.267499 0.637026 0.309876 0.705815 0.422534 0.625456 -0.655949 -0.644719 0.716088 0.267499 0.601041 0.374934 0.705815 0.354655 0.666296 -0.655949 -0.716219 0.644573 0.267499 0.558870 0.435304 0.705815 0.283569 0.699513 -0.655949 -0.779264 0.566738 0.267499 0.510169 0.491480 0.705815 0.208693 0.725381 -0.655949 -0.834371 0.481944 0.267499 0.455849 0.542243 0.705815 0.131518 0.743258 -0.655949 -0.880287 0.391842 0.267499 0.396508 0.587032 0.705815 0.052895 0.752949 -0.655949 -0.916506 0.297423 0.267499 0.333424 0.625023 0.705815 -0.025556 0.754372 -0.655949 -0.942431 0.200671 0.267499 0.266081 0.656526 0.705815 -0.104479 0.747539 -0.655949 -0.958272 0.100793 0.267499 0.072348 0.462500 0.883663 -0.037968 0.886619 -0.460939 -0.996657 -0.000203 0.081705 0.023476 0.467535 0.883663 -0.130683 0.877757 -0.460939 -0.991146 -0.104659 0.081705 -0.025187 0.467446 0.883663 -0.221099 0.859448 -0.460939 -0.974926 -0.206987 0.081705 -0.074040 0.462232 0.883663 -0.309958 0.831542 -0.460939 -0.947863 -0.308026 0.081705 -0.122077 0.451927 0.883663 -0.395402 0.794476 -0.460939 -0.910359 -0.405672 0.081705 -0.168334 0.436812 0.883663 -0.475742 0.749136 -0.460939 -0.863327 -0.497987 0.081705 -0.213187 0.416763 0.883663 -0.551637 0.695149 -0.460939 -0.806379 -0.585727 0.081705 -0.255693 0.392125 0.883663 -0.621455 0.633505 -0.460939 -0.740550 -0.667016 0.081705 -0.295382 0.363166 0.883663 -0.684429 0.564883 -0.460939 -0.666563 -0.740957 0.081705 -0.331488 0.330540 0.883663 -0.739373 0.490778 -0.460939 -0.586041 -0.806151 0.081705 -0.364305 0.293977 0.883663 -0.786738 0.410584 -0.460939 -0.498323 -0.863133 0.081705 -0.393109 0.254176 0.883663 -0.825437 0.325867 -0.460939 -0.405116 -0.910607 0.081705 -0.417372 0.211993 0.883663 -0.854806 0.238415 -0.460939 -0.308395 -0.947743 0.081705 -0.437292 0.167082 0.883663 -0.875086 0.147512 -0.460939 -0.207366 -0.974845 0.081705 -0.452395 0.120331 0.883663 -0.885727 0.054985 -0.460939 -0.104053 -0.991210 0.081705 -0.462456 0.072630 0.883663 -0.886642 -0.037426 -0.460939 -0.000406 -0.996656 0.081705 -0.467521 0.023762 0.883663 -0.877837 -0.130147 -0.460939 0.104053 -0.991210 0.081705 -0.467437 -0.025369 0.883663 -0.859362 -0.221433 -0.460939 0.207366 -0.974845 0.081705 -0.462203 -0.074220 0.883663 -0.831421 -0.310281 -0.460939 0.308395 -0.947743 0.081705 -0.452001 -0.121801 0.883663 -0.794718 -0.394917 -0.460939 0.405116 -0.910607 0.081705 -0.436746 -0.168503 0.883663 -0.748951 -0.476034 -0.460939 0.498323 -0.863133 0.081705 -0.416680 -0.213349 0.883663 -0.694934 -0.551907 -0.460939 0.586041 -0.806151 0.081705 -0.392281 -0.255453 0.883663 -0.633884 -0.621068 -0.460939 0.666563 -0.740957 0.081705 -0.363347 -0.295160 0.883663 -0.565301 -0.684084 -0.460939 0.740550 -0.667016 0.081705 -0.330411 -0.331616 0.883663 -0.490491 -0.739564 -0.460939 0.806379 -0.585727 0.081705 -0.293835 -0.364419 0.883663 -0.410278 -0.786897 -0.460939 0.863327 -0.497987 0.081705 -0.254416 -0.392954 0.883663 -0.326371 -0.825238 -0.460939 0.910359 -0.405672 0.081705 -0.211831 -0.417454 0.883663 -0.238083 -0.854899 -0.460939 0.947863 -0.308026 0.081705 -0.166912 -0.437357 0.883663 -0.147172 -0.875143 -0.460939 0.974926 -0.206987 0.081705 -0.120607 -0.452321 0.883663 -0.055526 -0.885693 -0.460939 0.991146 -0.104659 0.081705 -0.072536 -0.462471 0.883663 0.037607 -0.886635 -0.460939 0.996657 -0.000203 0.081705 -0.023666 -0.467526 0.883663 0.130325 -0.877810 -0.460939 0.991189 0.104255 0.081705 0.025464 -0.467431 0.883663 0.221608 -0.859317 -0.460939 0.974803 0.207564 0.081705 0.073852 -0.462262 0.883663 0.309619 -0.831668 -0.460939 0.947988 0.307640 0.081705 0.121893 -0.451976 0.883663 0.395079 -0.794637 -0.460939 0.910525 0.405301 0.081705 0.168592 -0.436712 0.883663 0.476186 -0.748854 -0.460939 0.863031 0.498499 0.081705 0.213434 -0.416637 0.883663 0.552049 -0.694822 -0.460939 0.806032 0.586205 0.081705 0.255533 -0.392229 0.883663 0.621197 -0.633758 -0.460939 0.740821 0.666714 0.081705 0.295234 -0.363287 0.883663 0.684199 -0.565161 -0.460939 0.666865 0.740686 0.081705 0.331683 -0.330343 0.883663 0.739663 -0.490340 -0.460939 0.585563 0.806499 0.081705 0.364185 -0.294125 0.883663 0.786570 -0.410904 -0.460939 0.498675 0.862930 0.081705 0.393006 -0.254336 0.883663 0.825304 -0.326203 -0.460939 0.405487 0.910442 0.081705 0.417498 -0.211746 0.883663 0.854947 -0.237909 -0.460939 0.307833 0.947926 0.081705 0.437391 -0.166823 0.883663 0.875173 -0.146994 -0.460939 0.206788 0.974968 0.081705 0.452346 -0.120515 0.883663 0.885704 -0.055346 -0.460939 0.104457 0.991168 0.081705 0.462485 -0.072442 0.883663 0.886627 0.037787 -0.460939 0.000000 0.996657 0.081705 0.467531 -0.023571 0.883663 0.877783 0.130504 -0.460939 -0.104457 0.991168 0.081705 0.467452 0.025092 0.883663 0.859493 0.220924 -0.460939 -0.206788 0.974968 0.081705 0.462247 0.073946 0.883663 0.831605 0.309788 -0.460939 -0.307833 0.947926 0.081705 0.451951 0.121985 0.883663 0.794557 0.395240 -0.460939 -0.405487 0.910442 0.081705 0.436677 0.168681 0.883663 0.748757 0.476339 -0.460939 -0.498675 0.862930 0.081705 0.416807 0.213102 0.883663 0.695261 0.551495 -0.460939 -0.585563 0.806499 0.081705 0.392177 0.255613 0.883663 0.633631 0.621327 -0.460939 -0.666865 0.740686 0.081705 0.363227 0.295308 0.883663 0.565022 0.684314 -0.460939 -0.740821 0.666714 0.081705 0.330607 0.331420 0.883663 0.490929 0.739273 -0.460939 -0.806032 0.586205 0.081705 0.294051 0.364245 0.883663 0.410744 0.786654 -0.460939 -0.863031 0.498499 0.081705 0.254256 0.393058 0.883663 0.326035 0.825370 -0.460939 -0.910525 0.405301 0.081705 0.211661 0.417541 0.883663 0.237735 0.854996 -0.460939 -0.947988 0.307640 0.081705 0.167171 0.437258 0.883663 0.147691 0.875056 -0.460939 -0.974803 0.207564 0.081705 0.120423 0.452370 0.883663 0.055165 0.885716 -0.460939 -0.991189 0.104255 0.081705 0.246767 0.058813 0.967288 -0.014730 0.998269 -0.056939 -0.968963 -0.000197 0.247207 0.239244 0.084352 0.967288 -0.119274 0.991227 -0.056939 -0.963606 -0.101751 0.247207 0.229195 0.108733 0.967288 -0.221532 0.973489 -0.056939 -0.947836 -0.201235 0.247207 0.216537 0.132155 0.967288 -0.322340 0.944910 -0.056939 -0.921525 -0.299467 0.247207 0.201493 0.154122 0.967288 -0.419599 0.905922 -0.056939 -0.885064 -0.394400 0.247207 0.184405 0.174207 0.967288 -0.511378 0.857468 -0.056939 -0.839338 -0.484150 0.247207 0.165131 0.192574 0.967288 -0.598430 0.799149 -0.056939 -0.783973 -0.569452 0.247207 0.144039 0.208821 0.967288 -0.678891 0.732028 -0.056939 -0.719972 -0.648482 0.247207 0.121359 0.222767 0.967288 -0.751873 0.656844 -0.056939 -0.648042 -0.720369 0.247207 0.097578 0.234162 0.967288 -0.816000 0.575241 -0.056939 -0.569757 -0.783751 0.247207 0.072498 0.243099 0.967288 -0.871795 0.486550 -0.056939 -0.484476 -0.839149 0.247207 0.046621 0.249358 0.967288 -0.917988 0.392500 -0.056939 -0.393859 -0.885304 0.247207 0.020482 0.252851 0.967288 -0.953774 0.295081 -0.056939 -0.299825 -0.921408 0.247207 -0.006131 0.253605 0.967288 -0.979448 0.193493 -0.056939 -0.201604 -0.947758 0.247207 -0.032677 0.251566 0.967288 -0.994333 0.089775 -0.056939 -0.101162 -0.963668 0.247207 -0.058662 0.246803 0.967288 -0.998278 -0.014120 -0.056939 -0.000395 -0.968963 0.247207 -0.084206 0.239296 0.967288 -0.991300 -0.118669 -0.056939 0.101162 -0.963668 0.247207 -0.108822 0.229153 0.967288 -0.973403 -0.221911 -0.056939 0.201604 -0.947758 0.247207 -0.132239 0.216485 0.967288 -0.944784 -0.322708 -0.056939 0.299825 -0.921408 0.247207 -0.153999 0.201588 0.967288 -0.906178 -0.419045 -0.056939 0.393859 -0.885304 0.247207 -0.174278 0.184337 0.967288 -0.857269 -0.511711 -0.056939 0.484476 -0.839149 0.247207 -0.192638 0.165056 0.967288 -0.798916 -0.598741 -0.056939 0.569757 -0.783751 0.247207 -0.208733 0.144166 0.967288 -0.732443 -0.678443 -0.056939 0.648042 -0.720369 0.247207 -0.222693 0.121495 0.967288 -0.657303 -0.751472 -0.056939 0.719972 -0.648482 0.247207 -0.234200 0.097487 0.967288 -0.574924 -0.816224 -0.056939 0.783973 -0.569452 0.247207 -0.243127 0.072404 0.967288 -0.486211 -0.871984 -0.056939 0.839338 -0.484150 0.247207 -0.249330 0.046773 0.967288 -0.393061 -0.917748 -0.056939 0.885064 -0.394400 0.247207 -0.252859 0.020384 0.967288 -0.294710 -0.953889 -0.056939 0.921525 -0.299467 0.247207 -0.253603 -0.006230 0.967288 -0.193112 -0.979523 -0.056939 0.947836 -0.201235 0.247207 -0.251586 -0.032523 0.967288 -0.090382 -0.994278 -0.056939 0.963606 -0.101751 0.247207 -0.246791 -0.058712 0.967288 0.014323 -0.998275 -0.056939 0.968963 -0.000197 0.247207 -0.239279 -0.084254 0.967288 0.118871 -0.991276 -0.056939 0.963647 0.101358 0.247207 -0.229130 -0.108869 0.967288 0.222109 -0.973358 -0.056939 0.947717 0.201797 0.247207 -0.216591 -0.132067 0.967288 0.321956 -0.945041 -0.056939 0.921647 0.299092 0.247207 -0.201556 -0.154040 0.967288 0.419230 -0.906093 -0.056939 0.885224 0.394040 0.247207 -0.184302 -0.174316 0.967288 0.511886 -0.857165 -0.056939 0.839051 0.484647 0.247207 -0.165017 -0.192672 0.967288 0.598903 -0.798794 -0.056939 0.783635 0.569917 0.247207 -0.144124 -0.208762 0.967288 0.678592 -0.732305 -0.056939 0.720237 0.648188 0.247207 -0.121450 -0.222717 0.967288 0.751606 -0.657150 -0.056939 0.648335 0.720105 0.247207 -0.097439 -0.234220 0.967288 0.816341 -0.574757 -0.056939 0.569292 0.784089 0.247207 -0.072597 -0.243069 0.967288 0.871597 -0.486905 -0.056939 0.484818 0.838952 0.247207 -0.046722 -0.249339 0.967288 0.917828 -0.392874 -0.056939 0.394220 0.885144 0.247207 -0.020332 -0.252863 0.967288 0.953949 -0.294516 -0.056939 0.299279 0.921586 0.247207 0.006282 -0.253601 0.967288 0.979562 -0.192913 -0.056939 0.201042 0.947877 0.247207 0.032575 -0.251579 0.967288 0.994297 -0.090180 -0.056939 0.101554 0.963626 0.247207 0.058762 -0.246779 0.967288 0.998272 0.014526 -0.056939 0.000000 0.968963 0.247207 0.084303 -0.239262 0.967288 0.991252 0.119073 -0.056939 -0.101554 0.963626 0.247207 0.108686 -0.229217 0.967288 0.973535 0.221334 -0.056939 -0.201042 0.947877 0.247207 0.132111 -0.216564 0.967288 0.944975 0.322148 -0.056939 -0.299279 0.921586 0.247207 0.154081 -0.201525 0.967288 0.906008 0.419414 -0.056939 -0.394220 0.885144 0.247207 0.174353 -0.184266 0.967288 0.857060 0.512060 -0.056939 -0.484818 0.838952 0.247207 0.192541 -0.165170 0.967288 0.799271 0.598267 -0.056939 -0.569292 0.784089 0.247207 0.208791 -0.144081 0.967288 0.732167 0.678742 -0.056939 -0.648335 0.720105 0.247207 0.222742 -0.121405 0.967288 0.656997 0.751740 -0.056939 -0.720237 0.648188 0.247207 0.234142 -0.097625 0.967288 0.575407 0.815883 -0.056939 -0.783635 0.569917 0.247207 0.243084 -0.072548 0.967288 0.486728 0.871696 -0.056939 -0.839051 0.484647 0.247207 0.249349 -0.046671 0.967288 0.392687 0.917908 -0.056939 -0.885224 0.394040 0.247207 0.252867 -0.020281 0.967288 0.294321 0.954009 -0.056939 -0.921647 0.299092 0.247207 0.253606 0.006080 0.967288 0.193693 0.979409 -0.056939 -0.947717 0.201797 0.247207 0.251572 0.032626 0.967288 0.089977 0.994315 -0.056939 -0.963647 0.101358 0.247207 0.055811 -0.819297 -0.570647 -0.079398 -0.573369 0.815441 -0.995279 -0.000203 -0.097051 0.141372 -0.808935 -0.570647 -0.018867 -0.578533 0.815441 -0.989777 -0.104514 -0.097051 0.224586 -0.789888 -0.570647 0.041294 -0.577366 0.815441 -0.973579 -0.206701 -0.097051 0.306135 -0.762000 -0.570647 0.101578 -0.569858 0.815441 -0.946553 -0.307600 -0.097051 0.384312 -0.725718 -0.570647 0.160744 -0.556073 0.815441 -0.909102 -0.405112 -0.097051 0.457574 -0.681900 -0.570647 0.217603 -0.536382 0.815441 -0.862134 -0.497299 -0.097051 0.526522 -0.630188 -0.570647 0.272621 -0.510621 0.815441 -0.805265 -0.584918 -0.097051 0.589671 -0.571534 -0.570647 0.324637 -0.479236 0.815441 -0.739527 -0.666094 -0.097051 0.646324 -0.506585 -0.570647 0.373076 -0.442573 0.815441 -0.665642 -0.739933 -0.097051 0.695422 -0.436751 -0.570647 0.417005 -0.401451 0.815441 -0.585231 -0.805038 -0.097051 0.737366 -0.361460 -0.570647 0.456783 -0.355535 0.815441 -0.497634 -0.861940 -0.097051 0.771189 -0.282188 -0.570647 0.491530 -0.305703 0.815441 -0.404556 -0.909349 -0.097051 0.796317 -0.200605 -0.570647 0.520610 -0.253024 0.815441 -0.307969 -0.946434 -0.097051 0.812956 -0.116040 -0.570647 0.544262 -0.197067 0.815441 -0.207079 -0.973498 -0.097051 0.820640 -0.030197 -0.570647 0.561918 -0.138939 0.815441 -0.103909 -0.989840 -0.097051 0.819331 0.055311 -0.570647 0.573321 -0.079748 0.815441 -0.000405 -0.995279 -0.097051 0.809022 0.140878 -0.570647 0.578521 -0.019221 0.815441 0.103909 -0.989840 -0.097051 0.789801 0.224893 -0.570647 0.577350 0.041518 0.815441 0.207079 -0.973498 -0.097051 0.761881 0.306431 -0.570647 0.569819 0.101800 0.815441 0.307969 -0.946434 -0.097051 0.725953 0.383868 -0.570647 0.556172 0.160404 0.815441 0.404556 -0.909349 -0.097051 0.681722 0.457839 -0.570647 0.536297 0.217812 0.815441 0.497634 -0.861940 -0.097051 0.629983 0.526767 -0.570647 0.510515 0.272820 0.815441 0.585231 -0.805038 -0.097051 0.571894 0.589321 -0.570647 0.479435 0.324344 0.815441 0.665642 -0.739933 -0.097051 0.506979 0.646014 -0.570647 0.442801 0.372806 0.815441 0.739527 -0.666094 -0.097051 0.436480 0.695591 -0.570647 0.401289 0.417161 0.815441 0.805265 -0.584918 -0.097051 0.361173 0.737507 -0.570647 0.355358 0.456922 0.815441 0.862134 -0.497299 -0.097051 0.282659 0.771016 -0.570647 0.306003 0.491343 0.815441 0.909102 -0.405112 -0.097051 0.200295 0.796395 -0.570647 0.252822 0.520709 0.815441 0.946553 -0.307600 -0.097051 0.115724 0.813001 -0.570647 0.196855 0.544339 0.815441 0.973579 -0.206701 -0.097051 0.030699 0.820622 -0.570647 0.139282 0.561833 0.815441 0.989777 -0.104514 -0.097051 -0.055477 0.819320 -0.570647 0.079631 0.573337 0.815441 0.995279 -0.000203 -0.097051 -0.141043 0.808993 -0.570647 0.019103 0.578525 0.815441 0.989819 0.104111 -0.097051 -0.225054 0.789755 -0.570647 -0.041636 0.577341 0.815441 0.973456 0.207278 -0.097051 -0.305825 0.762124 -0.570647 -0.101346 0.569899 0.815441 0.946679 0.307215 -0.097051 -0.384016 0.725875 -0.570647 -0.160518 0.556139 0.815441 0.909266 0.404741 -0.097051 -0.457978 0.681629 -0.570647 -0.217921 0.536253 0.815441 0.861839 0.497810 -0.097051 -0.526896 0.629876 -0.570647 -0.272924 0.510460 0.815441 0.804918 0.585395 -0.097051 -0.589438 0.571774 -0.570647 -0.324441 0.479369 0.815441 0.739798 0.665793 -0.097051 -0.646117 0.506848 -0.570647 -0.372896 0.442725 0.815441 0.665944 0.739662 -0.097051 -0.695680 0.436339 -0.570647 -0.417243 0.401204 0.815441 0.584754 0.805384 -0.097051 -0.737219 0.361761 -0.570647 -0.456639 0.355721 0.815441 0.497986 0.861738 -0.097051 -0.771074 0.282502 -0.570647 -0.491406 0.305903 0.815441 0.404927 0.909184 -0.097051 -0.796435 0.200132 -0.570647 -0.520760 0.252716 0.815441 0.307407 0.946616 -0.097051 -0.813024 0.115558 -0.570647 -0.544379 0.196744 0.815441 0.206502 0.973621 -0.097051 -0.820628 0.030532 -0.570647 -0.561862 0.139168 0.815441 0.104312 0.989798 -0.097051 -0.819308 -0.055644 -0.570647 -0.573353 0.079514 0.815441 0.000000 0.995279 -0.097051 -0.808964 -0.141207 -0.570647 -0.578529 0.018985 0.815441 -0.104312 0.989798 -0.097051 -0.789934 -0.224425 -0.570647 -0.577374 -0.041176 0.815441 -0.206502 0.973621 -0.097051 -0.762062 -0.305980 -0.570647 -0.569879 -0.101462 0.815441 -0.307407 0.946616 -0.097051 -0.725796 -0.384164 -0.570647 -0.556106 -0.160631 0.815441 -0.404927 0.909184 -0.097051 -0.681536 -0.458117 -0.570647 -0.536208 -0.218030 0.815441 -0.497986 0.861738 -0.097051 -0.630295 -0.526394 -0.570647 -0.510677 -0.272517 0.815441 -0.584754 0.805384 -0.097051 -0.571654 -0.589554 -0.570647 -0.479302 -0.324539 0.815441 -0.665944 0.739662 -0.097051 -0.506716 -0.646221 -0.570647 -0.442649 -0.372986 0.815441 -0.739798 0.665793 -0.097051 -0.436892 -0.695333 -0.570647 -0.401536 -0.416923 0.815441 -0.804918 0.585395 -0.097051 -0.361610 -0.737293 -0.570647 -0.355628 -0.456711 0.815441 -0.861839 0.497810 -0.097051 -0.282345 -0.771131 -0.570647 -0.305803 -0.491468 0.815441 -0.909266 0.404741 -0.097051 -0.199970 -0.796476 -0.570647 -0.252610 -0.520812 0.815441 -0.946679 0.307215 -0.097051 -0.116206 -0.812932 -0.570647 -0.197178 -0.544222 0.815441 -0.973456 0.207278 -0.097051 -0.030364 -0.820634 -0.570647 -0.139054 -0.561890 0.815441 -0.989819 0.104111 -0.097051 0.020347 0.644831 0.764055 -0.017433 0.764325 -0.644595 -0.999641 -0.000204 0.026793 -0.047348 0.643412 0.764055 -0.097443 0.758289 -0.644595 -0.994114 -0.104972 0.026793 -0.113886 0.635020 0.764055 -0.175637 0.744076 -0.644595 -0.977845 -0.207606 0.026793 -0.179813 0.619587 0.764055 -0.252654 0.721570 -0.644595 -0.950701 -0.308948 0.026793 -0.243760 0.597329 0.764055 -0.326888 0.691116 -0.644595 -0.913085 -0.406887 0.026793 -0.304454 0.568796 0.764055 -0.396869 0.653447 -0.644595 -0.865912 -0.499478 0.026793 -0.362391 0.533754 0.764055 -0.463169 0.608253 -0.644595 -0.808794 -0.587481 0.026793 -0.416336 0.492834 0.764055 -0.524367 0.556360 -0.644595 -0.742767 -0.669013 0.026793 -0.465696 0.446484 0.764055 -0.579790 0.498338 -0.644595 -0.668559 -0.743176 0.026793 -0.509530 0.395727 0.764055 -0.628391 0.435456 -0.644595 -0.587796 -0.808565 0.026793 -0.548199 0.340145 0.764055 -0.670569 0.367198 -0.644595 -0.499815 -0.865718 0.026793 -0.580829 0.280816 0.764055 -0.705361 0.294895 -0.644595 -0.406329 -0.913334 0.026793 -0.606843 0.219002 0.764055 -0.732164 0.220077 -0.644595 -0.309318 -0.950581 0.026793 -0.626454 0.154194 0.764055 -0.751197 0.142129 -0.644595 -0.207987 -0.977765 0.026793 -0.639165 0.087688 0.764055 -0.761956 0.062615 -0.644595 -0.104365 -0.994178 0.026793 -0.644818 0.020741 0.764055 -0.764336 -0.016966 -0.644595 -0.000407 -0.999641 0.026793 -0.643441 -0.046954 0.764055 -0.758348 -0.096980 -0.644595 0.104365 -0.994178 0.026793 -0.634976 -0.114133 0.764055 -0.744008 -0.175926 -0.644595 0.207987 -0.977765 0.026793 -0.619517 -0.180055 0.764055 -0.721472 -0.252935 -0.644595 0.309318 -0.950581 0.026793 -0.597478 -0.243395 0.764055 -0.691316 -0.326466 -0.644595 0.406329 -0.913334 0.026793 -0.568677 -0.304675 0.764055 -0.653292 -0.397123 -0.644595 0.499815 -0.865718 0.026793 -0.533613 -0.362598 0.764055 -0.608073 -0.463405 -0.644595 0.587796 -0.808565 0.026793 -0.493088 -0.416035 0.764055 -0.556680 -0.524027 -0.644595 0.668559 -0.743176 0.026793 -0.446769 -0.465423 0.764055 -0.498692 -0.579485 -0.644595 0.742767 -0.669013 0.026793 -0.395529 -0.509684 0.764055 -0.435212 -0.628560 -0.644595 0.808794 -0.587481 0.026793 -0.339932 -0.548331 0.764055 -0.366937 -0.670712 -0.644595 0.865912 -0.499478 0.026793 -0.281171 -0.580658 0.764055 -0.295326 -0.705181 -0.644595 0.913085 -0.406887 0.026793 -0.218766 -0.606928 0.764055 -0.219792 -0.732249 -0.644595 0.950701 -0.308948 0.026793 -0.153950 -0.626514 0.764055 -0.141836 -0.751252 -0.644595 0.977845 -0.207606 0.026793 -0.088079 -0.639111 0.764055 -0.063081 -0.761917 -0.644595 0.994114 -0.104972 0.026793 -0.020610 -0.644822 0.764055 0.017121 -0.764332 -0.644595 0.999641 -0.000204 0.026793 0.047085 -0.643431 0.764055 0.097134 -0.758328 -0.644595 0.994157 0.104567 0.026793 0.114262 -0.634953 0.764055 0.176078 -0.743972 -0.644595 0.977722 0.208186 0.026793 0.179561 -0.619660 0.764055 0.252360 -0.721673 -0.644595 0.950827 0.308561 0.026793 0.243517 -0.597428 0.764055 0.326607 -0.691249 -0.644595 0.913251 0.406515 0.026793 0.304790 -0.568615 0.764055 0.397256 -0.653211 -0.644595 0.865616 0.499991 0.026793 0.362707 -0.533539 0.764055 0.463529 -0.607979 -0.644595 0.808446 0.587961 0.026793 0.416135 -0.493003 0.764055 0.524140 -0.556573 -0.644595 0.743040 0.668711 0.026793 0.465514 -0.446674 0.764055 0.579587 -0.498574 -0.644595 0.668862 0.742904 0.026793 0.509764 -0.395425 0.764055 0.628649 -0.435084 -0.644595 0.587317 0.808914 0.026793 0.548060 -0.340368 0.764055 0.670419 -0.367471 -0.644595 0.500168 0.865514 0.026793 0.580715 -0.281053 0.764055 0.705241 -0.295183 -0.644595 0.406701 0.913168 0.026793 0.606973 -0.218642 0.764055 0.732294 -0.219643 -0.644595 0.308755 0.950764 0.026793 0.626545 -0.153823 0.764055 0.751281 -0.141683 -0.644595 0.207407 0.977888 0.026793 0.639129 -0.087948 0.764055 0.761930 -0.062925 -0.644595 0.104770 0.994136 0.026793 0.644827 -0.020479 0.764055 0.764329 0.017277 -0.644595 0.000000 0.999641 0.026793 0.643422 0.047216 0.764055 0.758309 0.097289 -0.644595 -0.104770 0.994136 0.026793 0.635043 0.113757 0.764055 0.744112 0.175485 -0.644595 -0.207407 0.977888 0.026793 0.619623 0.179687 0.764055 0.721621 0.252507 -0.644595 -0.308755 0.950764 0.026793 0.597378 0.243639 0.764055 0.691183 0.326747 -0.644595 -0.406701 0.913168 0.026793 0.568553 0.304906 0.764055 0.653130 0.397389 -0.644595 -0.500168 0.865514 0.026793 0.533828 0.362282 0.764055 0.608348 0.463045 -0.644595 -0.587317 0.808914 0.026793 0.492918 0.416236 0.764055 0.556467 0.524254 -0.644595 -0.668862 0.742904 0.026793 0.446579 0.465605 0.764055 0.498456 0.579688 -0.644595 -0.743040 0.668711 0.026793 0.395831 0.509449 0.764055 0.435584 0.628302 -0.644595 -0.808446 0.587961 0.026793 0.340257 0.548130 0.764055 0.367335 0.670494 -0.644595 -0.865616 0.499991 0.026793 0.280935 0.580772 0.764055 0.295039 0.705301 -0.644595 -0.913251 0.406515 0.026793 0.218519 0.607018 0.764055 0.219494 0.732339 -0.644595 -0.950827 0.308561 0.026793 0.154322 0.626423 0.764055 0.142282 0.751168 -0.644595 -0.977722 0.208186 0.026793 0.087818 0.639147 0.764055 0.062770 0.761943 -0.644595 -0.994157 0.104567 0.026793 0.198870 -0.789588 0.580518 0.255597 0.613637 0.747074 -0.946108 -0.000193 0.323850 0.280530 -0.764397 0.580518 0.189875 0.637046 0.747074 -0.940877 -0.099351 0.323850 0.358368 -0.731144 0.580518 0.122716 0.653315 0.747074 -0.925480 -0.196489 0.323850 0.433023 -0.689558 0.580518 0.053568 0.662579 0.747074 -0.899790 -0.292404 0.323850 0.502909 -0.640376 0.580518 -0.016170 0.664544 0.747074 -0.864188 -0.385098 0.323850 0.566671 -0.584708 0.580518 -0.085071 0.659275 0.747074 -0.819541 -0.472730 0.323850 0.624832 -0.522096 0.580518 -0.153699 0.646728 0.747074 -0.765482 -0.556020 0.323850 0.676110 -0.453734 0.580518 -0.220634 0.627057 0.747074 -0.702991 -0.633186 0.323850 0.719941 -0.380374 0.580518 -0.285139 0.600480 0.747074 -0.632757 -0.703377 0.323850 0.755538 -0.303580 0.580518 -0.345936 0.567634 0.747074 -0.556318 -0.765265 0.323850 0.783195 -0.222722 0.580518 -0.403523 0.528251 0.747074 -0.473049 -0.819357 0.323850 0.802224 -0.139411 0.580518 -0.456665 0.483050 0.747074 -0.384569 -0.864423 0.323850 0.812362 -0.055377 0.580518 -0.504344 0.433032 0.747074 -0.292754 -0.899676 0.323850 0.813692 0.030070 0.580518 -0.546951 0.377789 0.747074 -0.196849 -0.925403 0.323850 0.806059 0.115185 0.580518 -0.583534 0.318384 0.747074 -0.098776 -0.940938 0.323850 0.789710 0.198388 0.580518 -0.613481 0.255971 0.747074 -0.000385 -0.946108 0.323850 0.764568 0.280063 0.580518 -0.636930 0.190264 0.747074 0.098776 -0.940938 0.323850 0.731004 0.358652 0.580518 -0.653363 0.122462 0.747074 0.196849 -0.925403 0.323850 0.689389 0.433292 0.580518 -0.662599 0.053310 0.747074 0.292754 -0.899676 0.323850 0.640683 0.502518 0.580518 -0.664554 -0.015764 0.747074 0.384569 -0.864423 0.323850 0.584487 0.566898 0.580518 -0.659241 -0.085327 0.747074 0.473049 -0.819357 0.323850 0.521853 0.625035 0.580518 -0.646668 -0.153950 0.747074 0.556318 -0.765265 0.323850 0.454147 0.675833 0.580518 -0.627192 -0.220251 0.747074 0.632757 -0.703377 0.323850 0.380814 0.719708 0.580518 -0.600654 -0.284772 0.747074 0.702991 -0.633186 0.323850 0.303286 0.755657 0.580518 -0.567499 -0.346157 0.747074 0.765482 -0.556020 0.323850 0.222417 0.783281 0.580518 -0.528094 -0.403728 0.747074 0.819541 -0.472730 0.323850 0.139901 0.802139 0.580518 -0.483329 -0.456370 0.747074 0.864188 -0.385098 0.323850 0.055061 0.812384 0.580518 -0.432836 -0.504512 0.747074 0.899790 -0.292404 0.323850 -0.030386 0.813680 0.580518 -0.377576 -0.547098 0.747074 0.925480 -0.196489 0.323850 -0.114692 0.806129 0.580518 -0.318740 -0.583339 0.747074 0.940877 -0.099351 0.323850 -0.198549 0.789669 0.580518 -0.255846 -0.613533 0.747074 0.946108 -0.000193 0.323850 -0.280218 0.764511 0.580518 -0.190135 -0.636968 0.747074 0.940918 0.098967 0.323850 -0.358801 0.730931 0.580518 -0.122329 -0.653388 0.747074 0.925363 0.197037 0.323850 -0.432743 0.689734 0.580518 -0.053838 -0.662557 0.747074 0.899909 0.292037 0.323850 -0.502648 0.640581 0.580518 0.015899 -0.664550 0.747074 0.864345 0.384746 0.323850 -0.567017 0.584372 0.580518 0.085461 -0.659224 0.747074 0.819260 0.473216 0.323850 -0.625141 0.521726 0.580518 0.154082 -0.646636 0.747074 0.765152 0.556474 0.323850 -0.675925 0.454009 0.580518 0.220379 -0.627147 0.747074 0.703249 0.632900 0.323850 -0.719786 0.380667 0.580518 0.284894 -0.600596 0.747074 0.633043 0.703120 0.323850 -0.755718 0.303132 0.580518 0.346272 -0.567429 0.747074 0.555865 0.765595 0.323850 -0.783104 0.223041 0.580518 0.403307 -0.528416 0.747074 0.473383 0.819164 0.323850 -0.802167 0.139738 0.580518 0.456468 -0.483236 0.747074 0.384921 0.864266 0.323850 -0.812395 0.054895 0.580518 0.504601 -0.432733 0.747074 0.292220 0.899849 0.323850 -0.813674 -0.030552 0.580518 0.547175 -0.377464 0.747074 0.196300 0.925520 0.323850 -0.806106 -0.114857 0.580518 0.583404 -0.318621 0.747074 0.099159 0.940898 0.323850 -0.789629 -0.198710 0.580518 0.613585 -0.255721 0.747074 0.000000 0.946108 0.323850 -0.764454 -0.280374 0.580518 0.637007 -0.190005 0.747074 -0.099159 0.940898 0.323850 -0.731217 -0.358219 0.580518 0.653290 -0.122849 0.747074 -0.196300 0.925520 0.323850 -0.689646 -0.432883 0.580518 0.662568 -0.053703 0.747074 -0.292220 0.899849 0.323850 -0.640478 -0.502779 0.580518 0.664547 0.016035 0.747074 -0.384921 0.864266 0.323850 -0.584256 -0.567136 0.580518 0.659207 0.085596 0.747074 -0.473383 0.819164 0.323850 -0.522223 -0.624725 0.580518 0.646759 0.153567 0.747074 -0.555865 0.765595 0.323850 -0.453872 -0.676017 0.580518 0.627102 0.220506 0.747074 -0.633043 0.703120 0.323850 -0.380520 -0.719863 0.580518 0.600538 0.285017 0.747074 -0.703249 0.632900 0.323850 -0.303734 -0.755477 0.580518 0.567704 0.345820 0.747074 -0.765152 0.556474 0.323850 -0.222881 -0.783149 0.580518 0.528333 0.403415 0.747074 -0.819260 0.473216 0.323850 -0.139574 -0.802196 0.580518 0.483143 0.456566 0.747074 -0.864345 0.384746 0.323850 -0.054730 -0.812406 0.580518 0.432631 0.504689 0.747074 -0.899909 0.292037 0.323850 0.029904 -0.813698 0.580518 0.377900 0.546874 0.747074 -0.925363 0.197037 0.323850 0.115021 -0.806083 0.580518 0.318502 0.583469 0.747074 -0.940918 0.098967 0.323850 -0.123155 0.948262 -0.292628 -0.367290 -0.317488 -0.874242 -0.921917 -0.000188 0.387388 -0.221861 0.930132 -0.292628 -0.331992 -0.354234 -0.874242 -0.916820 -0.096810 0.387388 -0.317222 0.902075 -0.292628 -0.293425 -0.386785 -0.874242 -0.901816 -0.191465 0.387388 -0.410019 0.863859 -0.292628 -0.251271 -0.415408 -0.874242 -0.876782 -0.284927 0.387388 -0.498299 0.816129 -0.292628 -0.206349 -0.439455 -0.874242 -0.842091 -0.375251 0.387388 -0.580332 0.759989 -0.292628 -0.159613 -0.458502 -0.874242 -0.798585 -0.460643 0.387388 -0.656788 0.694981 -0.292628 -0.110680 -0.472705 -0.874242 -0.745909 -0.541803 0.387388 -0.726009 0.622317 -0.292628 -0.060528 -0.481702 -0.874242 -0.685016 -0.616996 0.387388 -0.787234 0.542799 -0.292628 -0.009708 -0.485393 -0.874242 -0.616578 -0.685393 0.387388 -0.839330 0.458141 -0.292628 0.040734 -0.483778 -0.874242 -0.542094 -0.745698 0.387388 -0.882724 0.367650 -0.292628 0.091213 -0.476845 -0.874242 -0.460954 -0.798406 0.387388 -0.916395 0.273110 -0.292628 0.140687 -0.464659 -0.874242 -0.374736 -0.842320 0.387388 -0.939796 0.176501 -0.292628 0.188165 -0.447543 -0.874242 -0.285268 -0.876671 0.387388 -0.953119 0.077031 -0.292628 0.234034 -0.425357 -0.874242 -0.191815 -0.901741 0.387388 -0.955943 -0.023287 -0.292628 0.277326 -0.398486 -0.874242 -0.096250 -0.916879 0.387388 -0.948337 -0.122576 -0.292628 0.317263 -0.367484 -0.874242 -0.000376 -0.921917 0.387388 -0.930268 -0.221293 -0.292628 0.354031 -0.332209 -0.874242 0.096250 -0.916879 0.387388 -0.901951 -0.317573 -0.292628 0.386899 -0.293274 -0.874242 0.191815 -0.901741 0.387388 -0.863700 -0.410355 -0.292628 0.415505 -0.251109 -0.874242 0.285268 -0.876671 0.387388 -0.816433 -0.497801 -0.292628 0.439329 -0.206618 -0.874242 0.374736 -0.842320 0.387388 -0.759764 -0.580627 -0.292628 0.458564 -0.159435 -0.874242 0.460954 -0.798406 0.387388 -0.694725 -0.657058 -0.292628 0.472748 -0.110496 -0.874242 0.542094 -0.745698 0.387388 -0.622761 -0.725629 -0.292628 0.481665 -0.060822 -0.874242 0.616578 -0.685393 0.387388 -0.543280 -0.786903 -0.292628 0.485387 -0.010005 -0.874242 0.685016 -0.616996 0.387388 -0.457815 -0.839508 -0.292628 0.483762 0.040922 -0.874242 0.745909 -0.541803 0.387388 -0.367307 -0.882867 -0.292628 0.476809 0.091398 -0.874242 0.798585 -0.460643 0.387388 -0.273670 -0.916228 -0.292628 0.464744 0.140404 -0.874242 0.842091 -0.375251 0.387388 -0.176135 -0.939864 -0.292628 0.447470 0.188339 -0.874242 0.876782 -0.284927 0.387388 -0.076660 -0.953148 -0.292628 0.425266 0.234200 -0.874242 0.901816 -0.191465 0.387388 0.022703 -0.955957 -0.292628 0.398655 0.277082 -0.874242 0.916820 -0.096810 0.387388 0.122769 -0.948312 -0.292628 0.367420 0.317338 -0.874242 0.921917 -0.000188 0.387388 0.221483 -0.930223 -0.292628 0.332137 0.354099 -0.874242 0.916859 0.096437 0.387388 0.317757 -0.901887 -0.292628 0.293195 0.386959 -0.874242 0.901702 0.191999 0.387388 0.409667 -0.864026 -0.292628 0.251440 0.415305 -0.874242 0.876898 0.284570 0.387388 0.497967 -0.816332 -0.292628 0.206528 0.439371 -0.874242 0.842244 0.374908 0.387388 0.580782 -0.759645 -0.292628 0.159342 0.458597 -0.874242 0.798312 0.461116 0.387388 0.657200 -0.694592 -0.292628 0.110400 0.472771 -0.874242 0.745587 0.542246 0.387388 0.725756 -0.622613 -0.292628 0.060724 0.481677 -0.874242 0.685267 0.616717 0.387388 0.787013 -0.543120 -0.292628 0.009906 0.485389 -0.874242 0.616857 0.685141 0.387388 0.839602 -0.457644 -0.292628 -0.041021 0.483754 -0.874242 0.541652 0.746019 0.387388 0.882574 -0.368010 -0.292628 -0.091019 0.476882 -0.874242 0.461279 0.798218 0.387388 0.916284 -0.273483 -0.292628 -0.140498 0.464716 -0.874242 0.375079 0.842168 0.387388 0.939900 -0.175944 -0.292628 -0.188430 0.447431 -0.874242 0.284748 0.876840 0.387388 0.953164 -0.076466 -0.292628 -0.234286 0.425218 -0.874242 0.191281 0.901855 0.387388 0.955952 0.022897 -0.292628 -0.277163 0.398599 -0.874242 0.096623 0.916839 0.387388 0.948287 0.122962 -0.292628 -0.317413 0.367355 -0.874242 0.000000 0.921917 0.387388 0.930178 0.221672 -0.292628 -0.354166 0.332065 -0.874242 -0.096623 0.916839 0.387388 0.902139 0.317038 -0.292628 -0.386725 0.293503 -0.874242 -0.191281 0.901855 0.387388 0.863943 0.409843 -0.292628 -0.415356 0.251355 -0.874242 -0.284748 0.876840 0.387388 0.816230 0.498133 -0.292628 -0.439413 0.206439 -0.874242 -0.375079 0.842168 0.387388 0.759527 0.580937 -0.292628 -0.458629 0.159248 -0.874242 -0.461279 0.798218 0.387388 0.695115 0.656646 -0.292628 -0.472683 0.110776 -0.874242 -0.541652 0.746019 0.387388 0.622465 0.725883 -0.292628 -0.481690 0.060626 -0.874242 -0.616857 0.685141 0.387388 0.542959 0.787124 -0.292628 -0.485391 0.009807 -0.874242 -0.685267 0.616717 0.387388 0.458312 0.839237 -0.292628 -0.483786 -0.040635 -0.874242 -0.745587 0.542246 0.387388 0.367830 0.882649 -0.292628 -0.476863 -0.091116 -0.874242 -0.798312 0.461116 0.387388 0.273296 0.916339 -0.292628 -0.464687 -0.140593 -0.874242 -0.842244 0.374908 0.387388 0.175752 0.939936 -0.292628 -0.447393 -0.188521 -0.874242 -0.876898 0.284570 0.387388 0.077225 0.953103 -0.292628 -0.425405 -0.233947 -0.874242 -0.901702 0.191999 0.387388 -0.023092 0.955947 -0.292628 -0.398542 -0.277244 -0.874242 -0.916859 0.096437 0.387388 0.226279 0.277167 0.933797 -0.065475 0.960822 -0.269323 -0.971859 -0.000198 0.235562 0.195984 0.299356 0.933797 -0.165815 0.948668 -0.269323 -0.966486 -0.102055 0.235562 0.163848 0.318084 0.933797 -0.263403 0.926328 -0.269323 -0.950670 -0.201837 0.235562 0.129608 0.333505 0.933797 -0.359038 0.893620 -0.269323 -0.924280 -0.300362 0.235562 0.093941 0.345252 0.933797 -0.450719 0.851069 -0.269323 -0.887709 -0.395579 0.235562 0.057592 0.353139 0.933797 -0.536635 0.799680 -0.269323 -0.841847 -0.485597 0.235562 0.020263 0.357230 0.933797 -0.617492 0.739033 -0.269323 -0.786316 -0.571154 0.235562 -0.017289 0.357386 0.933797 -0.691547 0.670245 -0.269323 -0.722125 -0.650420 0.235562 -0.054650 0.353606 0.933797 -0.757985 0.594075 -0.269323 -0.649979 -0.722522 0.235562 -0.091064 0.346022 0.933797 -0.815562 0.512176 -0.269323 -0.571460 -0.786094 0.235562 -0.126828 0.334572 0.933797 -0.864750 0.423879 -0.269323 -0.485925 -0.841658 0.235562 -0.161195 0.319437 0.933797 -0.904413 0.330912 -0.269323 -0.395037 -0.887951 0.235562 -0.193486 0.300977 0.933797 -0.933879 0.235235 -0.269323 -0.300722 -0.924163 0.235562 -0.223965 0.279041 0.933797 -0.953390 0.136062 -0.269323 -0.202207 -0.950591 0.235562 -0.251977 0.254031 0.933797 -0.962400 0.035391 -0.269323 -0.101464 -0.966548 0.235562 -0.277029 0.226449 0.933797 -0.960862 -0.064888 -0.269323 -0.000396 -0.971859 0.235562 -0.299236 0.196167 0.933797 -0.948769 -0.165236 -0.269323 0.101464 -0.966548 0.235562 -0.318148 0.163724 0.933797 -0.926226 -0.263763 -0.269323 0.202207 -0.950591 0.235562 -0.333555 0.129479 0.933797 -0.893480 -0.359386 -0.269323 0.300722 -0.924163 0.235562 -0.345195 0.094152 0.933797 -0.851344 -0.450198 -0.269323 0.395037 -0.887951 0.235562 -0.353161 0.057454 0.933797 -0.799471 -0.536946 -0.269323 0.485925 -0.841658 0.235562 -0.357238 0.020124 0.933797 -0.738793 -0.617779 -0.269323 0.571460 -0.786094 0.235562 -0.357397 -0.017071 0.933797 -0.670667 -0.691137 -0.269323 0.649979 -0.722522 0.235562 -0.353639 -0.054434 0.933797 -0.594538 -0.757622 -0.269323 0.722125 -0.650420 0.235562 -0.345987 -0.091198 0.933797 -0.511859 -0.815761 -0.269323 0.786316 -0.571154 0.235562 -0.334523 -0.126958 0.933797 -0.423543 -0.864914 -0.269323 0.841847 -0.485597 0.235562 -0.319536 -0.161000 0.933797 -0.331465 -0.904210 -0.269323 0.887709 -0.395579 0.235562 -0.300902 -0.193603 0.933797 -0.234872 -0.933970 -0.269323 0.924280 -0.300362 0.235562 -0.278954 -0.224073 0.933797 -0.135691 -0.953443 -0.269323 0.950670 -0.201837 0.235562 -0.254185 -0.251821 0.933797 -0.035979 -0.962378 -0.269323 0.966486 -0.102055 0.235562 -0.226392 -0.277075 0.933797 0.065083 -0.960848 -0.269323 0.971859 -0.000198 0.235562 -0.196106 -0.299276 0.933797 0.165429 -0.948735 -0.269323 0.966528 0.101661 0.235562 -0.163660 -0.318181 0.933797 0.263952 -0.926172 -0.269323 0.950550 0.202400 0.235562 -0.129744 -0.333452 0.933797 0.358674 -0.893766 -0.269323 0.924402 0.299986 0.235562 -0.094081 -0.345214 0.933797 0.450372 -0.851252 -0.269323 0.887870 0.395217 0.235562 -0.057382 -0.353173 0.933797 0.537109 -0.799362 -0.269323 0.841559 0.486096 0.235562 -0.020051 -0.357242 0.933797 0.617930 -0.738667 -0.269323 0.785978 0.571620 0.235562 0.017143 -0.357393 0.933797 0.691274 -0.670527 -0.269323 0.722390 0.650126 0.235562 0.054506 -0.353628 0.933797 0.757743 -0.594383 -0.269323 0.650273 0.722257 0.235562 0.091269 -0.345968 0.933797 0.815865 -0.511693 -0.269323 0.570994 0.786433 0.235562 0.126692 -0.334624 0.933797 0.864577 -0.424231 -0.269323 0.486267 0.841460 0.235562 0.161065 -0.319503 0.933797 0.904278 -0.331281 -0.269323 0.395398 0.887790 0.235562 0.193664 -0.300862 0.933797 0.934018 -0.234682 -0.269323 0.300174 0.924341 0.235562 0.224130 -0.278908 0.933797 0.953470 -0.135497 -0.269323 0.201643 0.950711 0.235562 0.251873 -0.254134 0.933797 0.962385 -0.035783 -0.269323 0.101858 0.966507 0.235562 0.277121 -0.226336 0.933797 0.960835 0.065279 -0.269323 0.000000 0.971859 0.235562 0.299316 -0.196045 0.933797 0.948702 0.165622 -0.269323 -0.101858 0.966507 0.235562 0.318051 -0.163913 0.933797 0.926382 0.263214 -0.269323 -0.201643 0.950711 0.235562 0.333479 -0.129676 0.933797 0.893693 0.358856 -0.269323 -0.300174 0.924341 0.235562 0.345233 -0.094011 0.933797 0.851161 0.450545 -0.269323 -0.395398 0.887790 0.235562 0.353185 -0.057310 0.933797 0.799253 0.537272 -0.269323 -0.486267 0.841460 0.235562 0.357226 -0.020336 0.933797 0.739159 0.617341 -0.269323 -0.570994 0.786433 0.235562 0.357390 0.017216 0.933797 0.670386 0.691410 -0.269323 -0.650273 0.722257 0.235562 0.353617 0.054578 0.933797 0.594229 0.757864 -0.269323 -0.722390 0.650126 0.235562 0.346041 0.090993 0.933797 0.512343 0.815457 -0.269323 -0.785978 0.571620 0.235562 0.334598 0.126760 0.933797 0.424055 0.864663 -0.269323 -0.841559 0.486096 0.235562 0.319470 0.161130 0.933797 0.331097 0.904345 -0.269323 -0.887870 0.395217 0.235562 0.300823 0.193725 0.933797 0.234491 0.934066 -0.269323 -0.924402 0.299986 0.235562 0.279086 0.223908 0.933797 0.136257 0.953362 -0.269323 -0.950550 0.202400 0.235562 0.254082 0.251925 0.933797 0.035587 0.962392 -0.269323 -0.966528 0.101661 0.235562 0.117523 0.952966 0.279365 -0.370098 0.303078 -0.878164 -0.921529 -0.000188 0.388309 0.016998 0.960035 0.279365 -0.399824 0.262620 -0.878164 -0.916434 -0.096770 0.388309 -0.082757 0.956612 0.279365 -0.424927 0.219694 -0.878164 -0.901437 -0.191384 0.388309 -0.182561 0.942670 0.279365 -0.445613 0.173949 -0.878164 -0.876414 -0.284807 0.388309 -0.280354 0.918345 0.279365 -0.461390 0.126287 -0.878164 -0.841737 -0.375093 0.388309 -0.374175 0.884278 0.279365 -0.472007 0.077707 -0.878164 -0.798250 -0.460449 0.388309 -0.464793 0.840192 0.279365 -0.477551 0.027809 -0.878164 -0.745595 -0.541575 0.388309 -0.550292 0.786851 0.279365 -0.477836 -0.022395 -0.878164 -0.684728 -0.616736 0.388309 -0.629729 0.724843 0.279365 -0.472857 -0.072352 -0.878164 -0.616318 -0.685104 0.388309 -0.701574 0.655553 0.279365 -0.462791 -0.121050 -0.878164 -0.541866 -0.745384 0.388309 -0.766417 0.578412 0.279365 -0.447556 -0.168887 -0.878164 -0.460760 -0.798070 0.388309 -0.822818 0.494901 0.279365 -0.427390 -0.214864 -0.878164 -0.374579 -0.841966 0.388309 -0.869749 0.406808 0.279365 -0.402775 -0.258071 -0.878164 -0.285148 -0.876303 0.388309 -0.907595 0.313412 0.279365 -0.373509 -0.298864 -0.878164 -0.191735 -0.901362 0.388309 -0.935444 0.216563 0.279365 -0.340129 -0.336364 -0.878164 -0.096210 -0.916493 0.388309 -0.952894 0.118105 0.279365 -0.303304 -0.369913 -0.878164 -0.000375 -0.921529 0.388309 -0.960024 0.017585 0.279365 -0.262864 -0.399664 -0.878164 0.096210 -0.916493 0.388309 -0.956580 -0.083129 0.279365 -0.219529 -0.425013 -0.878164 0.191735 -0.901362 0.388309 -0.942599 -0.182928 0.279365 -0.173775 -0.445680 -0.878164 0.285148 -0.876303 0.388309 -0.918516 -0.279793 0.279365 -0.126569 -0.461312 -0.878164 0.374579 -0.841966 0.388309 -0.884133 -0.374519 0.279365 -0.077523 -0.472037 -0.878164 0.460760 -0.798070 0.388309 -0.840011 -0.465120 0.279365 -0.027623 -0.477562 -0.878164 0.541866 -0.745384 0.388309 -0.787187 -0.549811 0.279365 0.022103 -0.477850 -0.878164 0.616318 -0.685104 0.388309 -0.725228 -0.629286 0.279365 0.072063 -0.472901 -0.878164 0.684728 -0.616736 0.388309 -0.655280 -0.701829 0.279365 0.121230 -0.462744 -0.878164 0.745595 -0.541575 0.388309 -0.578114 -0.766642 0.279365 0.169061 -0.447490 -0.878164 0.798250 -0.460449 0.388309 -0.495403 -0.822515 0.279365 0.214603 -0.427521 -0.878164 0.841737 -0.375093 0.388309 -0.406470 -0.869907 0.279365 0.258228 -0.402675 -0.878164 0.876414 -0.284807 0.388309 -0.313059 -0.907717 0.279365 0.299009 -0.373393 -0.878164 0.901437 -0.191384 0.388309 -0.217135 -0.935312 0.279365 0.336156 -0.340335 -0.878164 0.916434 -0.096770 0.388309 -0.117911 -0.952918 0.279365 0.369974 -0.303229 -0.878164 0.921529 -0.000188 0.388309 -0.017389 -0.960028 0.279365 0.399717 -0.262783 -0.878164 0.916473 0.096396 0.388309 0.083324 -0.956563 0.279365 0.425058 -0.219442 -0.878164 0.901323 0.191918 0.388309 0.182177 -0.942744 0.279365 0.445542 -0.174130 -0.878164 0.876530 0.284450 0.388309 0.279980 -0.918459 0.279365 0.461338 -0.126475 -0.878164 0.841890 0.374750 0.388309 0.374699 -0.884056 0.279365 0.472053 -0.077427 -0.878164 0.797977 0.460922 0.388309 0.465291 -0.839916 0.279365 0.477568 -0.027526 -0.878164 0.745274 0.542017 0.388309 0.549971 -0.787075 0.279365 0.477845 0.022200 -0.878164 0.684979 0.616458 0.388309 0.629433 -0.725099 0.279365 0.472887 0.072159 -0.878164 0.616597 0.684853 0.388309 0.701962 -0.655137 0.279365 0.462719 0.121324 -0.878164 0.541424 0.745705 0.388309 0.766181 -0.578725 0.279365 0.447624 0.168704 -0.878164 0.461085 0.797883 0.388309 0.822616 -0.495236 0.279365 0.427478 0.214690 -0.878164 0.374922 0.841813 0.388309 0.869990 -0.406292 0.279365 0.402622 0.258310 -0.878164 0.284629 0.876472 0.388309 0.907781 -0.312874 0.279365 0.373332 0.299085 -0.878164 0.191200 0.901476 0.388309 0.935356 -0.216944 0.279365 0.340266 0.336226 -0.878164 0.096583 0.916454 0.388309 0.952942 -0.117717 0.279365 0.303153 0.370036 -0.878164 0.000000 0.921529 0.388309 0.960031 -0.017194 0.279365 0.262701 0.399771 -0.878164 -0.096583 0.916454 0.388309 0.956629 0.082562 0.279365 0.219781 0.424883 -0.878164 -0.191200 0.901476 0.388309 0.942707 0.182369 0.279365 0.174039 0.445577 -0.878164 -0.284629 0.876472 0.388309 0.918402 0.280167 0.279365 0.126381 0.461364 -0.878164 -0.374922 0.841813 0.388309 0.883980 0.374879 0.279365 0.077331 0.472068 -0.878164 -0.461085 0.797883 0.388309 0.840287 0.464622 0.279365 0.027906 0.477546 -0.878164 -0.541424 0.745705 0.388309 0.786963 0.550131 0.279365 -0.022297 0.477841 -0.878164 -0.616597 0.684853 0.388309 0.724971 0.629581 0.279365 -0.072256 0.472872 -0.878164 -0.684979 0.616458 0.388309 0.655696 0.701440 0.279365 -0.120955 0.462816 -0.878164 -0.745274 0.542017 0.388309 0.578568 0.766299 0.279365 -0.168796 0.447590 -0.878164 -0.797977 0.460922 0.388309 0.495068 0.822717 0.279365 -0.214777 0.427434 -0.878164 -0.841890 0.374750 0.388309 0.406115 0.870072 0.279365 -0.258392 0.402570 -0.878164 -0.876530 0.284450 0.388309 0.313597 0.907531 0.279365 -0.298788 0.373570 -0.878164 -0.901323 0.191918 0.388309 0.216754 0.935400 0.279365 -0.336295 0.340198 -0.878164 -0.916473 0.096396 0.388309 0.104844 -0.985121 -0.136174 -0.600233 -0.171859 0.781143 -0.792924 -0.000161 -0.609321 0.207514 -0.968708 -0.136174 -0.578915 -0.233821 0.781143 -0.788540 -0.083265 -0.609321 0.306957 -0.941931 -0.136174 -0.551514 -0.292657 0.781143 -0.775635 -0.164675 -0.609321 0.403987 -0.904572 -0.136174 -0.517804 -0.348848 0.781143 -0.754104 -0.245060 -0.609321 0.496568 -0.857249 -0.136174 -0.478390 -0.401196 0.781143 -0.724267 -0.322746 -0.609321 0.582878 -0.801068 -0.136174 -0.434156 -0.448691 0.781143 -0.686849 -0.396191 -0.609321 0.663626 -0.735566 -0.136174 -0.384739 -0.491723 0.781143 -0.641542 -0.465995 -0.609321 0.737063 -0.661962 -0.136174 -0.331084 -0.529338 0.781143 -0.589170 -0.530667 -0.609321 0.802383 -0.581067 -0.136174 -0.273782 -0.561123 0.781143 -0.530307 -0.589494 -0.609321 0.858369 -0.494630 -0.136174 -0.214051 -0.586513 0.781143 -0.466245 -0.641361 -0.609321 0.905483 -0.401942 -0.136174 -0.151402 -0.605717 0.781143 -0.396458 -0.686695 -0.609321 0.942622 -0.304828 -0.136174 -0.087084 -0.618249 0.781143 -0.322304 -0.724464 -0.609321 0.969174 -0.205325 -0.136174 -0.022432 -0.623949 0.781143 -0.245354 -0.754009 -0.609321 0.985356 -0.102617 -0.136174 0.043086 -0.622863 0.781143 -0.164977 -0.775571 -0.609321 0.990684 0.001220 -0.136174 0.108129 -0.614917 0.781143 -0.082783 -0.788591 -0.609321 0.985185 0.104242 -0.136174 0.171492 -0.600338 0.781143 -0.000323 -0.792924 -0.609321 0.968834 0.206922 -0.136174 0.233468 -0.579058 0.781143 0.082783 -0.788591 -0.609321 0.941812 0.307323 -0.136174 0.292871 -0.551400 0.781143 0.164977 -0.775571 -0.609321 0.904415 0.404339 -0.136174 0.349049 -0.517668 0.781143 0.245354 -0.754009 -0.609321 0.857553 0.496044 -0.136174 0.400903 -0.478635 0.781143 0.322304 -0.724464 -0.609321 0.800841 0.583190 -0.136174 0.448860 -0.433982 0.781143 0.396458 -0.686695 -0.609321 0.735308 0.663912 -0.136174 0.491872 -0.384548 0.781143 0.466245 -0.641361 -0.609321 0.662412 0.736659 -0.136174 0.529136 -0.331407 0.781143 0.530307 -0.589494 -0.609321 0.581557 0.802027 -0.136174 0.560955 -0.274125 0.781143 0.589170 -0.530667 -0.609321 0.494296 0.858562 -0.136174 0.586596 -0.213823 0.781143 0.641542 -0.465995 -0.609321 0.401590 0.905639 -0.136174 0.605776 -0.151166 0.781143 0.686849 -0.396191 -0.609321 0.305404 0.942436 -0.136174 0.618195 -0.087462 0.781143 0.724267 -0.322746 -0.609321 0.204948 0.969254 -0.136174 0.623957 -0.022189 0.781143 0.754104 -0.245060 -0.609321 0.102234 0.985396 -0.136174 0.622847 0.043328 0.781143 0.775635 -0.164675 -0.609321 -0.000615 0.990685 -0.136174 0.614983 0.107753 0.781143 0.788540 -0.083265 -0.609321 -0.104442 0.985164 -0.136174 0.600303 0.171615 0.781143 0.792924 -0.000161 -0.609321 -0.207119 0.968792 -0.136174 0.579010 0.233586 0.781143 0.788574 0.082944 -0.609321 -0.307515 0.941749 -0.136174 0.551340 0.292984 0.781143 0.775538 0.165135 -0.609321 -0.403619 0.904737 -0.136174 0.517946 0.348637 0.781143 0.754204 0.244753 -0.609321 -0.496219 0.857452 -0.136174 0.478554 0.401001 0.781143 0.724399 0.322451 -0.609321 -0.583353 0.800722 -0.136174 0.433890 0.448948 0.781143 0.686614 0.396598 -0.609321 -0.664062 0.735173 -0.136174 0.384448 0.491951 0.781143 0.641266 0.466375 -0.609321 -0.736794 0.662262 -0.136174 0.331300 0.529203 0.781143 0.589386 0.530427 -0.609321 -0.802146 0.581394 -0.136174 0.274011 0.561011 0.781143 0.530547 0.589278 -0.609321 -0.858662 0.494121 -0.136174 0.213704 0.586640 0.781143 0.465865 0.641637 -0.609321 -0.905319 0.402311 -0.136174 0.151648 0.605655 0.781143 0.396737 0.686533 -0.609321 -0.942498 0.305212 -0.136174 0.087336 0.618213 0.781143 0.322599 0.724333 -0.609321 -0.969296 0.204750 -0.136174 0.022062 0.623962 0.781143 0.244907 0.754154 -0.609321 -0.985417 0.102033 -0.136174 -0.043455 0.622838 0.781143 0.164517 0.775669 -0.609321 -0.990685 -0.000817 -0.136174 -0.107879 0.614961 0.781143 0.083104 0.788557 -0.609321 -0.985143 -0.104643 -0.136174 -0.171737 0.600268 0.781143 0.000000 0.792924 -0.609321 -0.968750 -0.207317 -0.136174 -0.233704 0.578963 0.781143 -0.083104 0.788557 -0.609321 -0.941994 -0.306765 -0.136174 -0.292544 0.551573 0.781143 -0.164517 0.775669 -0.609321 -0.904654 -0.403803 -0.136174 -0.348742 0.517875 0.781143 -0.244907 0.754154 -0.609321 -0.857351 -0.496393 -0.136174 -0.401098 0.478472 0.781143 -0.322599 0.724333 -0.609321 -0.800603 -0.583516 -0.136174 -0.449037 0.433799 0.781143 -0.396737 0.686533 -0.609321 -0.735701 -0.663476 -0.136174 -0.491644 0.384839 0.781143 -0.465865 0.641637 -0.609321 -0.662112 -0.736929 -0.136174 -0.529270 0.331192 0.781143 -0.530547 0.589278 -0.609321 -0.581230 -0.802264 -0.136174 -0.561067 0.273897 0.781143 -0.589386 0.530427 -0.609321 -0.494805 -0.858268 -0.136174 -0.586469 0.214171 0.781143 -0.641266 0.466375 -0.609321 -0.402127 -0.905401 -0.136174 -0.605686 0.151525 0.781143 -0.686614 0.396598 -0.609321 -0.305020 -0.942560 -0.136174 -0.618231 0.087210 0.781143 -0.724399 0.322451 -0.609321 -0.204553 -0.969337 -0.136174 -0.623966 0.021935 0.781143 -0.754204 0.244753 -0.609321 -0.102818 -0.985335 -0.136174 -0.622872 -0.042959 0.781143 -0.775538 0.165135 -0.609321 0.001018 -0.990684 -0.136174 -0.614939 -0.108004 0.781143 -0.788574 0.082944 -0.609321 -0.555458 0.648527 -0.520460 -0.473119 -0.761192 -0.443560 -0.683831 -0.000139 0.729641 -0.620369 0.586739 -0.520460 -0.390735 -0.806586 -0.443560 -0.680050 -0.071809 0.729641 -0.677928 0.519167 -0.520460 -0.304890 -0.842791 -0.443560 -0.668921 -0.142019 0.729641 -0.728607 0.445256 -0.520460 -0.214880 -0.870104 -0.443560 -0.650352 -0.211344 0.729641 -0.771260 0.366440 -0.520460 -0.122504 -0.887833 -0.443560 -0.624620 -0.278342 0.729641 -0.805134 0.284394 -0.520460 -0.029674 -0.895753 -0.443560 -0.592350 -0.341681 0.729641 -0.830507 0.198444 -0.520460 0.064371 -0.893930 -0.443560 -0.553277 -0.401882 0.729641 -0.846731 0.110308 -0.520460 0.157707 -0.882260 -0.443560 -0.508110 -0.457656 0.729641 -0.853629 0.020957 -0.520460 0.249305 -0.860872 -0.443560 -0.457346 -0.508389 0.729641 -0.851192 -0.067774 -0.520460 0.337328 -0.830340 -0.443560 -0.402097 -0.553120 0.729641 -0.839401 -0.156612 -0.520460 0.422496 -0.790412 -0.443560 -0.341912 -0.592217 0.729641 -0.818364 -0.243724 -0.520460 0.503010 -0.741779 -0.443560 -0.277960 -0.624790 0.729641 -0.788641 -0.327364 -0.520460 0.577298 -0.685552 -0.443560 -0.211597 -0.650270 0.729641 -0.749987 -0.408216 -0.520460 0.645969 -0.621272 -0.443560 -0.142279 -0.668866 0.729641 -0.703073 -0.484572 -0.520460 0.707525 -0.550148 -0.443560 -0.071393 -0.680094 0.729641 -0.648866 -0.555062 -0.520460 0.760902 -0.473584 -0.443560 -0.000279 -0.683831 0.729641 -0.587118 -0.620011 -0.520460 0.806347 -0.391228 -0.443560 0.071393 -0.680094 0.729641 -0.518903 -0.678130 -0.520460 0.842909 -0.304562 -0.443560 0.142279 -0.668866 0.729641 -0.444972 -0.728780 -0.520460 0.870187 -0.214542 -0.443560 0.211597 -0.650270 0.729641 -0.366912 -0.771036 -0.520460 0.887758 -0.123046 -0.443560 0.277960 -0.624790 0.729641 -0.284081 -0.805245 -0.520460 0.895765 -0.029325 -0.443560 0.341912 -0.592217 0.729641 -0.198121 -0.830584 -0.520460 0.893905 0.064719 -0.443560 0.402097 -0.553120 0.729641 -0.110825 -0.846663 -0.520460 0.882356 0.157168 -0.443560 0.457346 -0.508389 0.729641 -0.021478 -0.853616 -0.520460 0.861025 0.248779 -0.443560 0.508110 -0.457656 0.729641 0.068105 -0.851166 -0.520460 0.830209 0.337651 -0.443560 0.553277 -0.401882 0.729641 0.156938 -0.839340 -0.520460 0.790248 0.422803 -0.443560 0.592350 -0.341681 0.729641 0.243224 -0.818513 -0.520460 0.742086 0.502556 -0.443560 0.624620 -0.278342 0.729641 0.327671 -0.788513 -0.520460 0.685328 0.577564 -0.443560 0.650352 -0.211344 0.729641 0.408508 -0.749828 -0.520460 0.621020 0.646211 -0.443560 0.668921 -0.142019 0.729641 0.484142 -0.703369 -0.520460 0.550580 0.707189 -0.443560 0.680050 -0.071809 0.729641 0.555194 -0.648753 -0.520460 0.473429 0.760999 -0.443560 0.683831 -0.000139 0.729641 0.620130 -0.586992 -0.520460 0.391064 0.806427 -0.443560 0.680079 0.071532 0.729641 0.678236 -0.518765 -0.520460 0.304391 0.842971 -0.443560 0.668837 0.142415 0.729641 0.728426 -0.445553 -0.520460 0.215235 0.870016 -0.443560 0.650438 0.211079 0.729641 0.771111 -0.366755 -0.520460 0.122866 0.887783 -0.443560 0.624734 0.278087 0.729641 0.805303 -0.283917 -0.520460 0.029143 0.895771 -0.443560 0.592147 0.342032 0.729641 0.830624 -0.197952 -0.520460 -0.064901 0.893892 -0.443560 0.553039 0.402210 0.729641 0.846686 -0.110653 -0.520460 -0.157347 0.882324 -0.443560 0.508296 0.457449 0.729641 0.853620 -0.021305 -0.520460 -0.248955 0.860974 -0.443560 0.457553 0.508203 0.729641 0.851152 0.068278 -0.520460 -0.337820 0.830140 -0.443560 0.401769 0.553359 0.729641 0.839465 0.156270 -0.520460 -0.422174 0.790585 -0.443560 0.342153 0.592078 0.729641 0.818463 0.243391 -0.520460 -0.502707 0.741984 -0.443560 0.278215 0.624677 0.729641 0.788446 0.327831 -0.520460 -0.577704 0.685210 -0.443560 0.211212 0.650395 0.729641 0.749745 0.408661 -0.520460 -0.646337 0.620889 -0.443560 0.141882 0.668950 0.729641 0.703270 0.484286 -0.520460 -0.707301 0.550436 -0.443560 0.071670 0.680065 0.729641 0.648640 0.555326 -0.520460 -0.761095 0.473274 -0.443560 0.000000 0.683831 0.729641 0.586866 0.620250 -0.520460 -0.806506 0.390899 -0.443560 -0.071670 0.680065 0.729641 0.519305 0.677823 -0.520460 -0.842729 0.305062 -0.443560 -0.141882 0.668950 0.729641 0.445404 0.728516 -0.520460 -0.870060 0.215058 -0.443560 -0.211212 0.650395 0.729641 0.366597 0.771186 -0.520460 -0.887808 0.122685 -0.443560 -0.278215 0.624677 0.729641 0.283753 0.805360 -0.520460 -0.895777 0.028960 -0.443560 -0.342153 0.592078 0.729641 0.198613 0.830466 -0.520460 -0.893943 -0.064189 -0.443560 -0.401769 0.553359 0.729641 0.110480 0.846708 -0.520460 -0.882292 -0.157527 -0.443560 -0.457553 0.508203 0.729641 0.021131 0.853624 -0.520460 -0.860923 -0.249130 -0.443560 -0.508296 0.457449 0.729641 -0.067600 0.851206 -0.520460 -0.830409 -0.337159 -0.443560 -0.553039 0.402210 0.729641 -0.156441 0.839433 -0.520460 -0.790499 -0.422335 -0.443560 -0.592147 0.342032 0.729641 -0.243558 0.818414 -0.520460 -0.741881 -0.502858 -0.443560 -0.624734 0.278087 0.729641 -0.327992 0.788380 -0.520460 -0.685092 -0.577843 -0.443560 -0.650438 0.211079 0.729641 -0.408063 0.750070 -0.520460 -0.621403 -0.645843 -0.443560 -0.668837 0.142415 0.729641 -0.484429 0.703171 -0.520460 -0.550292 -0.707413 -0.443560 -0.680079 0.071532 0.729641 0.011598 -0.554033 0.832414 0.007474 0.832495 0.553983 -0.999905 -0.000204 0.013796 0.069601 -0.549766 0.832414 -0.079819 0.828693 0.553983 -0.994377 -0.105000 0.013796 0.126297 -0.539570 0.832414 -0.165416 0.815929 0.553983 -0.978104 -0.207661 0.013796 0.182152 -0.523362 0.832414 -0.250021 0.794099 0.553983 -0.950952 -0.309030 0.013796 0.236001 -0.501388 0.832414 -0.331871 0.763521 0.553983 -0.913326 -0.406994 0.013796 0.286777 -0.474179 0.832414 -0.409341 0.724944 0.553983 -0.866140 -0.499610 0.013796 0.334895 -0.441512 0.832414 -0.483066 0.678049 0.553983 -0.809008 -0.587636 0.013796 0.379324 -0.403981 0.832414 -0.551470 0.623686 0.553983 -0.742963 -0.669190 0.013796 0.419575 -0.362000 0.832414 -0.613799 0.562453 0.553983 -0.668736 -0.743372 0.013796 0.454888 -0.316487 0.832414 -0.668873 0.495694 0.553983 -0.587951 -0.808779 0.013796 0.485553 -0.267068 0.832414 -0.717141 0.422862 0.553983 -0.499947 -0.865946 0.013796 0.510869 -0.214708 0.832414 -0.757510 0.345371 0.553983 -0.406436 -0.913575 0.013796 0.530398 -0.160513 0.832414 -0.789271 0.264866 0.553983 -0.309400 -0.950832 0.013796 0.544300 -0.104040 0.832414 -0.812684 0.180686 0.553983 -0.208042 -0.978023 0.013796 0.552207 -0.046420 0.832414 -0.827146 0.094516 0.553983 -0.104392 -0.994440 0.013796 0.554040 0.011259 0.832414 -0.832490 0.007982 0.553983 -0.000407 -0.999905 0.013796 0.549809 0.069265 0.832414 -0.828742 -0.079312 0.553983 0.104392 -0.994440 0.013796 0.539521 0.126507 0.832414 -0.815865 -0.165734 0.553983 0.208042 -0.978023 0.013796 0.523291 0.182356 0.832414 -0.794002 -0.250329 0.553983 0.309400 -0.950832 0.013796 0.501533 0.235695 0.832414 -0.763724 -0.331404 0.553983 0.406436 -0.913575 0.013796 0.474068 0.286961 0.832414 -0.724784 -0.409623 0.553983 0.499947 -0.865946 0.013796 0.441381 0.335066 0.832414 -0.677861 -0.483329 0.553983 0.587951 -0.808779 0.013796 0.404212 0.379077 0.832414 -0.624023 -0.551089 0.553983 0.668736 -0.743372 0.013796 0.362256 0.419353 0.832414 -0.562828 -0.613456 0.553983 0.742963 -0.669190 0.013796 0.316310 0.455011 0.832414 -0.495434 -0.669065 0.553983 0.809008 -0.587636 0.013796 0.266880 0.485657 0.832414 -0.422583 -0.717306 0.553983 0.866140 -0.499610 0.013796 0.215020 0.510738 0.832414 -0.345834 -0.757299 0.553983 0.913326 -0.406994 0.013796 0.160307 0.530461 0.832414 -0.264559 -0.789374 0.553983 0.950952 -0.309030 0.013796 0.103828 0.544341 0.832414 -0.180370 -0.812755 0.553983 0.978104 -0.207661 0.013796 0.046758 0.552178 0.832414 -0.095021 -0.827088 0.553983 0.994377 -0.105000 0.013796 -0.011372 0.554038 0.832414 -0.007813 -0.832492 0.553983 0.999905 -0.000204 0.013796 -0.069377 0.549794 0.832414 0.079481 -0.828726 0.553983 0.994419 0.104595 0.013796 -0.126617 0.539495 0.832414 0.165900 -0.815831 0.553983 0.977980 0.208241 0.013796 -0.181939 0.523436 0.832414 0.249697 -0.794201 0.553983 0.951078 0.308642 0.013796 -0.235797 0.501485 0.832414 0.331560 -0.763657 0.553983 0.913492 0.406622 0.013796 -0.287058 0.474009 0.832414 0.409770 -0.724701 0.553983 0.865844 0.500123 0.013796 -0.335156 0.441313 0.832414 0.483467 -0.677763 0.553983 0.808659 0.588116 0.013796 -0.379159 0.404135 0.832414 0.551216 -0.623911 0.553983 0.743236 0.668887 0.013796 -0.419427 0.362171 0.832414 0.613570 -0.562703 0.553983 0.669038 0.743100 0.013796 -0.455075 0.316217 0.832414 0.669166 -0.495298 0.553983 0.587472 0.809127 0.013796 -0.485444 0.267266 0.832414 0.716969 -0.423154 0.553983 0.500300 0.865742 0.013796 -0.510782 0.214916 0.832414 0.757370 -0.345680 0.553983 0.406808 0.913409 0.013796 -0.530493 0.160199 0.832414 0.789428 -0.264398 0.553983 0.308836 0.951015 0.013796 -0.544362 0.103717 0.832414 0.812791 -0.180204 0.553983 0.207462 0.978146 0.013796 -0.552188 0.046645 0.832414 0.827107 -0.094853 0.553983 0.104797 0.994398 0.013796 -0.554035 -0.011485 0.832414 0.832493 -0.007643 0.553983 0.000000 0.999905 0.013796 -0.549780 -0.069489 0.832414 0.828709 0.079650 0.553983 -0.104797 0.994398 0.013796 -0.539596 -0.126187 0.832414 0.815963 0.165250 0.553983 -0.207462 0.978146 0.013796 -0.523399 -0.182046 0.832414 0.794150 0.249859 0.553983 -0.308836 0.951015 0.013796 -0.501437 -0.235899 0.832414 0.763589 0.331715 0.553983 -0.406808 0.913409 0.013796 -0.473951 -0.287154 0.832414 0.724618 0.409918 0.553983 -0.500300 0.865742 0.013796 -0.441580 -0.334805 0.832414 0.678148 0.482928 0.553983 -0.587472 0.809127 0.013796 -0.404058 -0.379241 0.832414 0.623799 0.551343 0.553983 -0.669038 0.743100 0.013796 -0.362085 -0.419501 0.832414 0.562578 0.613685 0.553983 -0.743236 0.668887 0.013796 -0.316580 -0.454823 0.832414 0.495830 0.668772 0.553983 -0.808659 0.588116 0.013796 -0.267167 -0.485498 0.832414 0.423008 0.717055 0.553983 -0.865844 0.500123 0.013796 -0.214812 -0.510826 0.832414 0.345525 0.757440 0.553983 -0.913492 0.406622 0.013796 -0.160091 -0.530526 0.832414 0.264237 0.789482 0.553983 -0.951078 0.308642 0.013796 -0.104151 -0.544279 0.832414 0.180851 0.812648 0.553983 -0.977980 0.208241 0.013796 -0.046533 -0.552197 0.832414 0.094684 0.827127 0.553983 -0.994419 0.104595 0.013796 -0.105517 -0.799366 -0.591507 0.140708 -0.600844 0.786885 -0.984412 -0.000200 0.175877 -0.021156 -0.806023 -0.591507 0.202906 -0.582788 0.786885 -0.978970 -0.103373 0.175877 0.062633 -0.803864 -0.591507 0.262311 -0.558575 0.786885 -0.962949 -0.204444 0.175877 0.146539 -0.792872 -0.591507 0.319409 -0.528006 0.786885 -0.936218 -0.304242 0.175877 0.228831 -0.773147 -0.591507 0.372988 -0.491622 0.786885 -0.899175 -0.400688 0.175877 0.307857 -0.745214 -0.591507 0.422010 -0.450245 0.786885 -0.852720 -0.491869 0.175877 0.384265 -0.708844 -0.591507 0.466874 -0.403536 0.786885 -0.796473 -0.578531 0.175877 0.456441 -0.664667 -0.591507 0.506597 -0.352381 0.786885 -0.731452 -0.658821 0.175877 0.523589 -0.613168 -0.591507 0.540739 -0.297346 0.786885 -0.658374 -0.731854 0.175877 0.584414 -0.555500 -0.591507 0.568685 -0.239604 0.786885 -0.578841 -0.796248 0.175877 0.639416 -0.491190 -0.591507 0.590665 -0.178682 0.786885 -0.492201 -0.852529 0.175877 0.687375 -0.421469 -0.591507 0.606139 -0.115792 0.786885 -0.400139 -0.899420 0.175877 0.727414 -0.347834 -0.591507 0.614885 -0.052241 0.786885 -0.304606 -0.936100 0.175877 0.759864 -0.269680 -0.591507 0.616974 0.012491 0.786885 -0.204818 -0.962869 0.175877 0.783943 -0.188555 -0.591507 0.612267 0.077085 0.786885 -0.102775 -0.979033 0.175877 0.799301 -0.106005 -0.591507 0.600930 0.140341 0.786885 -0.000401 -0.984412 0.175877 0.806009 -0.021649 -0.591507 0.582912 0.202550 0.786885 0.102775 -0.979033 0.175877 0.803839 0.062946 -0.591507 0.558473 0.262528 0.786885 0.204818 -0.962869 0.175877 0.792815 0.146848 -0.591507 0.527882 0.319614 0.786885 0.304606 -0.936100 0.175877 0.773287 0.228358 -0.591507 0.491850 0.372688 0.786885 0.400139 -0.899420 0.175877 0.745094 0.308147 -0.591507 0.450081 0.422185 0.786885 0.492201 -0.852529 0.175877 0.708695 0.384541 -0.591507 0.403354 0.467031 0.786885 0.578841 -0.796248 0.175877 0.664945 0.456035 -0.591507 0.352691 0.506381 0.786885 0.658374 -0.731854 0.175877 0.613488 0.523214 -0.591507 0.297676 0.540557 0.786885 0.731452 -0.658821 0.175877 0.555272 0.584630 -0.591507 0.239382 0.568778 0.786885 0.796473 -0.578531 0.175877 0.490941 0.639607 -0.591507 0.178452 0.590735 0.786885 0.852720 -0.491869 0.175877 0.421889 0.687117 -0.591507 0.116162 0.606069 0.786885 0.899175 -0.400688 0.175877 0.347551 0.727550 -0.591507 0.052002 0.614905 0.786885 0.936218 -0.304242 0.175877 0.269384 0.759969 -0.591507 -0.012731 0.616969 0.786885 0.962949 -0.204444 0.175877 0.189034 0.783828 -0.591507 -0.076711 0.612314 0.786885 0.978970 -0.103373 0.175877 0.105842 0.799323 -0.591507 -0.140464 0.600901 0.786885 0.984412 -0.000200 0.175877 0.021485 0.806014 -0.591507 -0.202669 0.582870 0.786885 0.979012 0.102974 0.175877 -0.063110 0.803827 -0.591507 -0.262642 0.558419 0.786885 0.962827 0.205014 0.175877 -0.146216 0.792932 -0.591507 -0.319194 0.528136 0.786885 0.936342 0.303860 0.175877 -0.228516 0.773240 -0.591507 -0.372788 0.491774 0.786885 0.899338 0.400322 0.175877 -0.308298 0.745032 -0.591507 -0.422276 0.449995 0.786885 0.852429 0.492374 0.175877 -0.384685 0.708616 -0.591507 -0.467113 0.403259 0.786885 0.796130 0.579003 0.175877 -0.456170 0.664853 -0.591507 -0.506453 0.352588 0.786885 0.731720 0.658523 0.175877 -0.523339 0.613381 -0.591507 -0.540617 0.297566 0.786885 0.658672 0.731586 0.175877 -0.584743 0.555153 -0.591507 -0.568827 0.239267 0.786885 0.578369 0.796590 0.175877 -0.639216 0.491450 -0.591507 -0.590593 0.178922 0.786885 0.492548 0.852328 0.175877 -0.687203 0.421749 -0.591507 -0.606092 0.116039 0.786885 0.400505 0.899257 0.175877 -0.727620 0.347402 -0.591507 -0.614916 0.051877 0.786885 0.304051 0.936280 0.175877 -0.760023 0.269229 -0.591507 -0.616966 -0.012857 0.786885 0.204248 0.962990 0.175877 -0.783866 0.188875 -0.591507 -0.612298 -0.076836 0.786885 0.103173 0.978991 0.175877 -0.799345 0.105680 -0.591507 -0.600873 -0.140586 0.786885 0.000000 0.984412 0.175877 -0.806018 0.021320 -0.591507 -0.582829 -0.202788 0.786885 -0.103173 0.978991 0.175877 -0.803877 -0.062470 -0.591507 -0.558628 -0.262197 0.786885 -0.204248 0.962990 0.175877 -0.792902 -0.146378 -0.591507 -0.528071 -0.319301 0.786885 -0.304051 0.936280 0.175877 -0.773194 -0.228673 -0.591507 -0.491698 -0.372888 0.786885 -0.400505 0.899257 0.175877 -0.744969 -0.308450 -0.591507 -0.449909 -0.422368 0.786885 -0.492548 0.852328 0.175877 -0.708923 -0.384121 -0.591507 -0.403631 -0.466792 0.786885 -0.578369 0.796590 0.175877 -0.664760 -0.456305 -0.591507 -0.352485 -0.506525 0.786885 -0.658672 0.731586 0.175877 -0.613275 -0.523464 -0.591507 -0.297456 -0.540678 0.786885 -0.731720 0.658523 0.175877 -0.555619 -0.584301 -0.591507 -0.239719 -0.568636 0.786885 -0.796130 0.579003 0.175877 -0.491320 -0.639316 -0.591507 -0.178802 -0.590629 0.786885 -0.852429 0.492374 0.175877 -0.421609 -0.687289 -0.591507 -0.115915 -0.606116 0.786885 -0.899338 0.400322 0.175877 -0.347254 -0.727691 -0.591507 -0.051751 -0.614926 0.786885 -0.936342 0.303860 0.175877 -0.269834 -0.759809 -0.591507 0.012365 -0.616976 0.786885 -0.962827 0.205014 0.175877 -0.188715 -0.783905 -0.591507 0.076961 -0.612282 0.786885 -0.979012 0.102974 0.175877 0.426007 0.845744 0.321301 -0.675365 0.533588 -0.509084 -0.601997 -0.000123 0.798498 0.335020 0.885735 0.321301 -0.727569 0.459866 -0.509084 -0.598669 -0.063216 0.798498 0.241260 0.915729 0.321301 -0.771378 0.381851 -0.509084 -0.588872 -0.125023 0.798498 0.143956 0.935971 0.321301 -0.807150 0.298902 -0.509084 -0.572525 -0.186053 0.798498 0.045067 0.945904 0.321301 -0.834032 0.212660 -0.509084 -0.549872 -0.245033 0.798498 -0.053374 0.945472 0.321301 -0.851602 0.124928 -0.509084 -0.521464 -0.300793 0.798498 -0.152172 0.934671 0.321301 -0.860006 0.034986 -0.509084 -0.487067 -0.353789 0.798498 -0.249294 0.913574 0.321301 -0.858936 -0.055341 -0.509084 -0.447305 -0.402889 0.798498 -0.343670 0.882415 0.321301 -0.848405 -0.145059 -0.509084 -0.402615 -0.447551 0.798498 -0.433419 0.841970 0.321301 -0.828762 -0.232350 -0.509084 -0.353979 -0.486929 0.798498 -0.519276 0.791907 0.321301 -0.799846 -0.317931 -0.509084 -0.300995 -0.521347 0.798498 -0.599414 0.733122 0.321301 -0.762119 -0.400010 -0.509084 -0.244697 -0.550022 0.798498 -0.672283 0.666934 0.321301 -0.716476 -0.476966 -0.509084 -0.186276 -0.572453 0.798498 -0.738480 0.592801 0.321301 -0.662540 -0.549431 -0.509084 -0.125252 -0.588823 0.798498 -0.796542 0.512138 0.321301 -0.601307 -0.615844 -0.509084 -0.062850 -0.598707 0.798498 -0.845484 0.426523 0.321301 -0.534001 -0.675039 -0.509084 -0.000245 -0.601997 0.798498 -0.885530 0.335561 0.321301 -0.460311 -0.727288 -0.509084 0.062850 -0.598707 0.798498 -0.915823 0.240903 0.321301 -0.381551 -0.771526 -0.509084 0.125252 -0.588823 0.798498 -0.936027 0.143592 0.321301 -0.298588 -0.807267 -0.509084 0.186276 -0.572453 0.798498 -0.945876 0.045645 0.321301 -0.213170 -0.833902 -0.509084 0.244697 -0.550022 0.798498 -0.945451 -0.053741 0.321301 -0.124597 -0.851651 -0.509084 0.300995 -0.521347 0.798498 -0.934611 -0.152535 0.321301 -0.034652 -0.860019 -0.509084 0.353979 -0.486929 0.798498 -0.913726 -0.248736 0.321301 0.054816 -0.858970 -0.509084 0.402615 -0.447551 0.798498 -0.882625 -0.343131 0.321301 0.144541 -0.848494 -0.509084 0.447305 -0.402889 0.798498 -0.841801 -0.433747 0.321301 0.232673 -0.828672 -0.509084 0.487067 -0.353789 0.798498 -0.791705 -0.519584 0.321301 0.318242 -0.799722 -0.509084 0.521464 -0.300793 0.798498 -0.733488 -0.598966 0.321301 0.399544 -0.762364 -0.509084 0.549872 -0.245033 0.798498 -0.666673 -0.672542 0.321301 0.477245 -0.716290 -0.509084 0.572525 -0.186053 0.798498 -0.592514 -0.738710 0.321301 0.549689 -0.662326 -0.509084 0.588872 -0.125023 0.798498 -0.512625 -0.796229 0.321301 0.615476 -0.601683 -0.509084 0.598669 -0.063216 0.798498 -0.426351 -0.845571 0.321301 0.675147 -0.533863 -0.509084 0.601997 -0.000123 0.798498 -0.335381 -0.885599 0.321301 0.727382 -0.460163 -0.509084 0.598695 0.062972 0.798498 -0.240717 -0.915872 0.321301 0.771604 -0.381393 -0.509084 0.588797 0.125372 0.798498 -0.144337 -0.935912 0.321301 0.807028 -0.299230 -0.509084 0.572601 0.185820 0.798498 -0.045452 -0.945886 0.321301 0.833945 -0.213000 -0.509084 0.549972 0.244809 0.798498 0.053934 -0.945440 0.321301 0.851676 -0.124424 -0.509084 0.521285 0.301102 0.798498 0.152726 -0.934580 0.321301 0.860026 -0.034477 -0.509084 0.486857 0.354078 0.798498 0.248922 -0.913676 0.321301 0.858959 0.054991 -0.509084 0.447469 0.402707 0.798498 0.343311 -0.882555 0.321301 0.848464 0.144713 -0.509084 0.402798 0.447387 0.798498 0.433918 -0.841713 0.321301 0.828625 0.232842 -0.509084 0.353690 0.487139 0.798498 0.518954 -0.792119 0.321301 0.799975 0.317605 -0.509084 0.301208 0.521224 0.798498 0.599115 -0.733366 0.321301 0.762282 0.399699 -0.509084 0.244921 0.549922 0.798498 0.672678 -0.666536 0.321301 0.716193 0.477391 -0.509084 0.185936 0.572563 0.798498 0.738831 -0.592363 0.321301 0.662214 0.549823 -0.509084 0.124903 0.588897 0.798498 0.796334 -0.512463 0.321301 0.601558 0.615599 -0.509084 0.063094 0.598682 0.798498 0.845658 -0.426179 0.321301 0.533726 0.675256 -0.509084 0.000000 0.601997 0.798498 0.885667 -0.335201 0.321301 0.460014 0.727475 -0.509084 -0.063094 0.598682 0.798498 0.915680 -0.241446 0.321301 0.382008 0.771300 -0.509084 -0.124903 0.588897 0.798498 0.935942 -0.144147 0.321301 0.299066 0.807089 -0.509084 -0.185936 0.572563 0.798498 0.945895 -0.045259 0.321301 0.212830 0.833989 -0.509084 -0.244921 0.549922 0.798498 0.945429 0.054126 0.321301 0.124250 0.851702 -0.509084 -0.301208 0.521224 0.798498 0.934702 0.151981 0.321301 0.035161 0.859999 -0.509084 -0.353690 0.487139 0.798498 0.913625 0.249108 0.321301 -0.055166 0.858947 -0.509084 -0.402798 0.447387 0.798498 0.882485 0.343490 0.321301 -0.144886 0.848435 -0.509084 -0.447469 0.402707 0.798498 0.842058 0.433248 0.321301 -0.232182 0.828810 -0.509084 -0.486857 0.354078 0.798498 0.792013 0.519115 0.321301 -0.317768 0.799911 -0.509084 -0.521285 0.301102 0.798498 0.733244 0.599265 0.321301 -0.399854 0.762201 -0.509084 -0.549972 0.244809 0.798498 0.666399 0.672814 0.321301 -0.477536 0.716096 -0.509084 -0.572601 0.185820 0.798498 0.592952 0.738359 0.321301 -0.549296 0.662652 -0.509084 -0.588797 0.125372 0.798498 0.512301 0.796438 0.321301 -0.615721 0.601432 -0.509084 -0.598695 0.062972 0.798498 0.101903 -0.994514 0.023598 0.968776 0.104599 0.224795 -0.226030 -0.000046 0.974120 0.205574 -0.978357 0.023598 0.952477 0.205558 0.224795 -0.224780 -0.023735 0.974120 0.306029 -0.951730 0.023598 0.925992 0.303326 0.224795 -0.221102 -0.046942 0.974120 0.404092 -0.914414 0.023598 0.889101 0.398707 0.224795 -0.214964 -0.069857 0.974120 0.497703 -0.867026 0.023598 0.842417 0.489695 0.224795 -0.206459 -0.092002 0.974120 0.585022 -0.810674 0.023598 0.787029 0.574503 0.224795 -0.195792 -0.112938 0.974120 0.666765 -0.744895 0.023598 0.722482 0.653825 0.224795 -0.182877 -0.132836 0.974120 0.741163 -0.670910 0.023598 0.649978 0.725945 0.224795 -0.167948 -0.151271 0.974120 0.807397 -0.589536 0.023598 0.570314 0.790069 0.224795 -0.151169 -0.168040 0.974120 0.864236 -0.502533 0.023598 0.485213 0.845006 0.224795 -0.132907 -0.182825 0.974120 0.912145 -0.409187 0.023598 0.393978 0.891206 0.224795 -0.113014 -0.195748 0.974120 0.950007 -0.311334 0.023598 0.298404 0.927590 0.224795 -0.091875 -0.206515 0.974120 0.977195 -0.211029 0.023598 0.200496 0.953556 0.224795 -0.069940 -0.214937 0.974120 0.993930 -0.107450 0.023598 0.099452 0.969318 0.224795 -0.047028 -0.221083 0.974120 0.999718 -0.002687 0.023598 -0.002687 0.974402 0.224795 -0.023598 -0.224795 0.974120 0.994577 0.101295 0.023598 -0.104008 0.968839 0.224795 -0.000092 -0.226030 0.974120 0.978482 0.204976 0.023598 -0.204976 0.952603 0.224795 0.023598 -0.224795 0.974120 0.951611 0.306399 0.023598 -0.303687 0.925874 0.224795 0.047028 -0.221083 0.974120 0.914257 0.404447 0.023598 -0.399052 0.888946 0.224795 0.069940 -0.214937 0.974120 0.867330 0.497173 0.023598 -0.489180 0.842716 0.224795 0.091875 -0.206515 0.974120 0.810446 0.585338 0.023598 -0.574809 0.786805 0.224795 0.113014 -0.195748 0.974120 0.744635 0.667054 0.023598 -0.654106 0.722228 0.224795 0.132907 -0.182825 0.974120 0.671363 0.740753 0.023598 -0.725548 0.650421 0.224795 0.151169 -0.168040 0.974120 0.590029 0.807037 0.023598 -0.789721 0.570796 0.224795 0.167948 -0.151271 0.974120 0.502196 0.864432 0.023598 -0.845195 0.484884 0.224795 0.182877 -0.132836 0.974120 0.408832 0.912304 0.023598 -0.891359 0.393632 0.224795 0.195792 -0.112938 0.974120 0.311915 0.949817 0.023598 -0.927407 0.298970 0.224795 0.206459 -0.092002 0.974120 0.210649 0.977277 0.023598 -0.953634 0.200125 0.224795 0.214964 -0.069857 0.974120 0.107063 0.993972 0.023598 -0.969356 0.099075 0.224795 0.221102 -0.046942 0.974120 0.003298 0.999716 0.023598 -0.974404 -0.002092 0.224795 0.224780 -0.023735 0.974120 -0.101498 0.994556 0.023598 -0.968818 -0.104205 0.224795 0.226030 -0.000046 0.974120 -0.205175 0.978441 0.023598 -0.952561 -0.205170 0.224795 0.224790 0.023644 0.974120 -0.306593 0.951548 0.023598 -0.925812 -0.303875 0.224795 0.221074 0.047073 0.974120 -0.403719 0.914579 0.023598 -0.889263 -0.398344 0.224795 0.214992 0.069769 0.974120 -0.497350 0.867229 0.023598 -0.842616 -0.489352 0.224795 0.206496 0.091918 0.974120 -0.585503 0.810327 0.023598 -0.786688 -0.574969 0.224795 0.195725 0.113054 0.974120 -0.667206 0.744499 0.023598 -0.722095 -0.654253 0.224795 0.182798 0.132944 0.974120 -0.740890 0.671212 0.023598 -0.650273 -0.725680 0.224795 0.168009 0.151203 0.974120 -0.807157 0.589865 0.023598 -0.570636 -0.789837 0.224795 0.151237 0.167979 0.974120 -0.864534 0.502021 0.023598 -0.484712 -0.845294 0.224795 0.132799 0.182904 0.974120 -0.911979 0.409559 0.023598 -0.394341 -0.891046 0.224795 0.113093 0.195702 0.974120 -0.949881 0.311721 0.023598 -0.298781 -0.927468 0.224795 0.091960 0.206477 0.974120 -0.977320 0.210450 0.023598 -0.199931 -0.953675 0.224795 0.069813 0.214978 0.974120 -0.993994 0.106861 0.023598 -0.098878 -0.969376 0.224795 0.046897 0.221111 0.974120 -0.999717 0.003094 0.023598 0.002290 -0.974404 0.224795 0.023690 0.224785 0.974120 -0.994535 -0.101700 0.023598 0.104402 -0.968797 0.224795 0.000000 0.226030 0.974120 -0.978399 -0.205375 0.023598 0.205364 -0.952519 0.224795 -0.023690 0.224785 0.974120 -0.951792 -0.305835 0.023598 0.303138 -0.926053 0.224795 -0.046897 0.221111 0.974120 -0.914496 -0.403905 0.023598 0.398525 -0.889182 0.224795 -0.069813 0.214978 0.974120 -0.867128 -0.497527 0.023598 0.489523 -0.842517 0.224795 -0.091960 0.206477 0.974120 -0.810208 -0.585668 0.023598 0.575129 -0.786571 0.224795 -0.113093 0.195702 0.974120 -0.745030 -0.666613 0.023598 0.653678 -0.722615 0.224795 -0.132799 0.182904 0.974120 -0.671061 -0.741026 0.023598 0.725813 -0.650126 0.224795 -0.151237 0.167979 0.974120 -0.589701 -0.807277 0.023598 0.789953 -0.570475 0.224795 -0.168009 0.151203 0.974120 -0.502709 -0.864134 0.023598 0.844907 -0.485385 0.224795 -0.182798 0.132944 0.974120 -0.409373 -0.912062 0.023598 0.891126 -0.394160 0.224795 -0.195725 0.113054 0.974120 -0.311528 -0.949944 0.023598 0.927529 -0.298593 0.224795 -0.206496 0.091918 0.974120 -0.210251 -0.977363 0.023598 0.953715 -0.199736 0.224795 -0.214992 0.069769 0.974120 -0.107652 -0.993909 0.023598 0.969297 -0.099649 0.224795 -0.221074 0.047073 0.974120 -0.002891 -0.999717 0.023598 0.974403 0.002489 0.224795 -0.224790 0.023644 0.974120 -0.345241 -0.477040 -0.808233 0.187586 -0.878882 0.438610 -0.919576 -0.000187 0.392912 -0.293342 -0.510597 -0.808233 0.278666 -0.854381 0.438610 -0.914492 -0.096564 0.392912 -0.238751 -0.538290 -0.808233 0.365856 -0.820835 0.438610 -0.899526 -0.190978 0.392912 -0.181020 -0.560349 -0.808233 0.449870 -0.777970 0.438610 -0.874556 -0.284203 0.392912 -0.121294 -0.576235 -0.808233 0.528930 -0.726536 0.438610 -0.839953 -0.374298 0.392912 -0.060818 -0.585713 -0.808233 0.601496 -0.667701 0.438610 -0.796558 -0.459473 0.392912 0.000904 -0.588861 -0.808233 0.668163 -0.600983 0.438610 -0.744015 -0.540428 0.392912 0.062616 -0.585524 -0.808233 0.727470 -0.527645 0.438610 -0.683276 -0.615429 0.392912 0.123638 -0.575736 -0.808233 0.778764 -0.448494 0.438610 -0.615012 -0.683652 0.392912 0.182738 -0.559790 -0.808233 0.821116 -0.365226 0.438610 -0.540717 -0.743804 0.392912 0.240402 -0.537555 -0.808233 0.854872 -0.277155 0.438610 -0.459783 -0.796379 0.392912 0.295418 -0.509399 -0.808233 0.879212 -0.186032 0.438610 -0.373785 -0.840182 0.392912 0.346703 -0.475978 -0.808233 0.893774 -0.093754 0.438610 -0.284544 -0.874445 0.392912 0.394680 -0.437020 -0.808233 0.898677 0.000437 0.438610 -0.191328 -0.899452 0.392912 0.438309 -0.393248 -0.808233 0.893682 0.094622 0.438610 -0.096006 -0.914551 0.392912 0.476829 -0.345532 -0.808233 0.878996 0.187049 0.438610 -0.000375 -0.919576 0.392912 0.510417 -0.293654 -0.808233 0.854551 0.278144 0.438610 0.096006 -0.914551 0.392912 0.538383 -0.238542 -0.808233 0.820693 0.366175 0.438610 0.191328 -0.899452 0.392912 0.560419 -0.180801 -0.808233 0.777795 0.450173 0.438610 0.284544 -0.874445 0.392912 0.576160 -0.121646 -0.808233 0.726859 0.528486 0.438610 0.373785 -0.840182 0.392912 0.585737 -0.060590 -0.808233 0.667467 0.601755 0.438610 0.459783 -0.796379 0.392912 0.588861 0.001133 -0.808233 0.600723 0.668396 0.438610 0.540717 -0.743804 0.392912 0.585562 0.062258 -0.808233 0.528089 0.727148 0.438610 0.615012 -0.683652 0.392912 0.575812 0.123286 -0.808233 0.448970 0.778490 0.438610 0.683276 -0.615429 0.392912 0.559719 0.182956 -0.808233 0.364906 0.821258 0.438610 0.744015 -0.540428 0.392912 0.537462 0.240611 -0.808233 0.276823 0.854980 0.438610 0.796558 -0.459473 0.392912 0.509579 0.295106 -0.808233 0.186569 0.879098 0.438610 0.839953 -0.374298 0.392912 0.475843 0.346889 -0.808233 0.093406 0.893810 0.438610 0.874556 -0.284203 0.392912 0.436866 0.394850 -0.808233 -0.000786 0.898677 0.438610 0.899526 -0.190978 0.392912 0.393515 0.438069 -0.808233 -0.094076 0.893740 0.438610 0.914492 -0.096564 0.392912 0.345435 0.476899 -0.808233 -0.187228 0.878958 0.438610 0.919576 -0.000187 0.392912 0.293550 0.510477 -0.808233 -0.278318 0.854494 0.438610 0.914531 0.096192 0.392912 0.238432 0.538432 -0.808233 -0.366342 0.820618 0.438610 0.899413 0.191512 0.392912 0.181248 0.560275 -0.808233 -0.449554 0.778154 0.438610 0.874672 0.283847 0.392912 0.121529 0.576185 -0.808233 -0.528634 0.726751 0.438610 0.840105 0.373956 0.392912 0.060471 0.585749 -0.808233 -0.601891 0.667344 0.438610 0.796285 0.459945 0.392912 -0.001253 0.588861 -0.808233 -0.668519 0.600586 0.438610 0.743694 0.540869 0.392912 -0.062377 0.585549 -0.808233 -0.727255 0.527941 0.438610 0.683527 0.615151 0.392912 -0.123403 0.575787 -0.808233 -0.778582 0.448812 0.438610 0.615290 0.683402 0.392912 -0.183070 0.559682 -0.808233 -0.821332 0.364739 0.438610 0.540276 0.744125 0.392912 -0.240183 0.537653 -0.808233 -0.854759 0.277503 0.438610 0.460108 0.796192 0.392912 -0.295210 0.509519 -0.808233 -0.879136 0.186390 0.438610 0.374127 0.840029 0.392912 -0.346986 0.475773 -0.808233 -0.893829 0.093224 0.438610 0.284025 0.874614 0.392912 -0.394939 0.436786 -0.808233 -0.898677 -0.000969 0.438610 0.190795 0.899565 0.392912 -0.438149 0.393426 -0.808233 -0.893721 -0.094258 0.438610 0.096378 0.914512 0.392912 -0.476970 0.345338 -0.808233 -0.878920 -0.187407 0.438610 0.000000 0.919576 0.392912 -0.510537 0.293446 -0.808233 -0.854438 -0.278492 0.438610 -0.096378 0.914512 0.392912 -0.538242 0.238861 -0.808233 -0.820910 -0.365689 0.438610 -0.190795 0.899565 0.392912 -0.560312 0.181134 -0.808233 -0.778062 -0.449712 0.438610 -0.284025 0.874614 0.392912 -0.576210 0.121411 -0.808233 -0.726644 -0.528782 0.438610 -0.374127 0.840029 0.392912 -0.585761 0.060352 -0.808233 -0.667222 -0.602027 0.438610 -0.460108 0.796192 0.392912 -0.588862 -0.000784 -0.808233 -0.601119 -0.668040 0.438610 -0.540276 0.744125 0.392912 -0.585536 -0.062496 -0.808233 -0.527793 -0.727363 0.438610 -0.615290 0.683402 0.392912 -0.575761 -0.123521 -0.808233 -0.448653 -0.778673 0.438610 -0.683527 0.615151 0.392912 -0.559828 -0.182624 -0.808233 -0.365393 -0.821042 0.438610 -0.743694 0.540869 0.392912 -0.537604 -0.240293 -0.808233 -0.277329 -0.854816 0.438610 -0.796285 0.459945 0.392912 -0.509459 -0.295314 -0.808233 -0.186211 -0.879174 0.438610 -0.840105 0.373956 0.392912 -0.475702 -0.347082 -0.808233 -0.093042 -0.893848 0.438610 -0.874672 0.283847 0.392912 -0.437100 -0.394591 -0.808233 0.000253 -0.898678 0.438610 -0.899413 0.191512 0.392912 -0.393337 -0.438229 -0.808233 0.094440 -0.893702 0.438610 -0.914531 0.096192 0.392912 0.651901 -0.051049 -0.756584 -0.033205 -0.998696 0.038774 -0.757577 -0.000154 -0.652746 0.653661 0.017557 -0.756584 0.071648 -0.996676 0.038774 -0.753388 -0.079553 -0.652746 0.648307 0.085320 -0.756584 0.174729 -0.983853 0.038774 -0.741059 -0.157334 -0.652746 0.635794 0.152797 -0.756584 0.276881 -0.960122 0.038774 -0.720488 -0.234136 -0.652746 0.616278 0.218591 -0.756584 0.375984 -0.925815 0.038774 -0.691981 -0.308359 -0.652746 0.590256 0.281388 -0.756584 0.470064 -0.881780 0.038774 -0.656230 -0.378529 -0.652746 0.557514 0.341701 -0.756584 0.559892 -0.827658 0.038774 -0.612944 -0.445222 -0.652746 0.518630 0.398251 -0.756584 0.643553 -0.764419 0.038774 -0.562905 -0.507011 -0.652746 0.474034 0.450413 -0.756584 0.720125 -0.692760 0.038774 -0.506667 -0.563215 -0.652746 0.424715 0.497191 -0.756584 0.788151 -0.614259 0.038774 -0.445460 -0.612770 -0.652746 0.370266 0.538966 -0.756584 0.848189 -0.528272 0.038774 -0.378784 -0.656083 -0.652746 0.311740 0.574804 -0.756584 0.898885 -0.436466 0.038774 -0.307936 -0.692169 -0.652746 0.250383 0.604060 -0.756584 0.939339 -0.340792 0.038774 -0.234416 -0.720397 -0.652746 0.185695 0.626976 -0.756584 0.969883 -0.240466 0.038774 -0.157623 -0.740998 -0.652746 0.118960 0.642985 -0.756584 0.989744 -0.137491 0.038774 -0.079093 -0.753437 -0.652746 0.051447 0.651870 -0.756584 0.998676 -0.033815 0.038774 -0.000309 -0.757577 -0.652746 -0.017157 0.653672 -0.756584 0.996720 0.071039 0.038774 0.079093 -0.753437 -0.652746 -0.085572 0.648273 -0.756584 0.983785 0.175112 0.038774 0.157623 -0.740998 -0.652746 -0.153045 0.635734 -0.756584 0.960014 0.277255 0.038774 0.234416 -0.720397 -0.652746 -0.218215 0.616412 -0.756584 0.926044 0.375418 0.038774 0.307936 -0.692169 -0.652746 -0.281617 0.590146 -0.756584 0.881597 0.470407 0.038774 0.378784 -0.656083 -0.652746 -0.341918 0.557380 -0.756584 0.827440 0.560214 0.038774 0.445460 -0.612770 -0.652746 -0.397934 0.518874 -0.756584 0.764812 0.643086 0.038774 0.506667 -0.563215 -0.652746 -0.450124 0.474310 -0.756584 0.693200 0.719702 0.038774 0.562905 -0.507011 -0.652746 -0.497356 0.424521 -0.756584 0.613952 0.788390 0.038774 0.612944 -0.445222 -0.652746 -0.539109 0.370057 -0.756584 0.527942 0.848395 0.038774 0.656230 -0.378529 -0.652746 -0.574613 0.312091 -0.756584 0.437015 0.898618 0.038774 0.691981 -0.308359 -0.652746 -0.604158 0.250148 -0.756584 0.340427 0.939471 0.038774 0.720488 -0.234136 -0.652746 -0.627048 0.185451 -0.756584 0.240089 0.969976 0.038774 0.741059 -0.157334 -0.652746 -0.642912 0.119353 -0.756584 0.138096 0.989660 0.038774 0.753388 -0.079553 -0.652746 -0.651880 0.051314 -0.756584 0.033612 0.998683 0.038774 0.757577 -0.000154 -0.652746 -0.653668 -0.017290 -0.756584 -0.071242 0.996705 0.038774 0.753421 0.079246 -0.652746 -0.648256 -0.085704 -0.756584 -0.175312 0.983749 0.038774 0.740966 0.157773 -0.652746 -0.635856 -0.152538 -0.756584 -0.276490 0.960234 0.038774 0.720583 0.233843 -0.652746 -0.616367 -0.218340 -0.756584 -0.375607 0.925968 0.038774 0.692106 0.308077 -0.652746 -0.590089 -0.281738 -0.756584 -0.470586 0.881502 0.038774 0.656006 0.378918 -0.652746 -0.557311 -0.342032 -0.756584 -0.560382 0.827326 0.038774 0.612680 0.445585 -0.652746 -0.518792 -0.398039 -0.756584 -0.643241 0.764681 0.038774 0.563112 0.506782 -0.652746 -0.474218 -0.450220 -0.756584 -0.719843 0.693053 0.038774 0.506896 0.563009 -0.652746 -0.424420 -0.497442 -0.756584 -0.788515 0.613792 0.038774 0.445097 0.613034 -0.652746 -0.370486 -0.538815 -0.756584 -0.847974 0.528617 0.038774 0.379052 0.655929 -0.652746 -0.311974 -0.574677 -0.756584 -0.898707 0.436832 0.038774 0.308218 0.692043 -0.652746 -0.250025 -0.604209 -0.756584 -0.939541 0.340236 0.038774 0.233989 0.720536 -0.652746 -0.185323 -0.627086 -0.756584 -0.970025 0.239891 0.038774 0.157183 0.741091 -0.652746 -0.119222 -0.642936 -0.756584 -0.989688 0.137894 0.038774 0.079399 0.753404 -0.652746 -0.051181 -0.651891 -0.756584 -0.998689 0.033408 0.038774 0.000000 0.757577 -0.652746 0.017423 -0.653665 -0.756584 -0.996691 -0.071445 0.038774 -0.079399 0.753404 -0.652746 0.085188 -0.648324 -0.756584 -0.983888 -0.174528 0.038774 -0.157183 0.741091 -0.652746 0.152668 -0.635825 -0.756584 -0.960178 -0.276686 0.038774 -0.233989 0.720536 -0.652746 0.218466 -0.616323 -0.756584 -0.925891 -0.375796 0.038774 -0.308218 0.692043 -0.652746 0.281858 -0.590032 -0.756584 -0.881406 -0.470766 0.038774 -0.379052 0.655929 -0.652746 0.341588 -0.557583 -0.756584 -0.827772 -0.559723 0.038774 -0.445097 0.613034 -0.652746 0.398145 -0.518711 -0.756584 -0.764550 -0.643397 0.038774 -0.506896 0.563009 -0.652746 0.450317 -0.474126 -0.756584 -0.692907 -0.719984 0.038774 -0.563112 0.506782 -0.652746 0.497104 -0.424816 -0.756584 -0.614419 -0.788026 0.038774 -0.612680 0.445585 -0.652746 0.538890 -0.370376 -0.756584 -0.528445 -0.848082 0.038774 -0.656006 0.378918 -0.652746 0.574740 -0.311857 -0.756584 -0.436649 -0.898796 0.038774 -0.692106 0.308077 -0.652746 0.604260 -0.249902 -0.756584 -0.340044 -0.939610 0.038774 -0.720583 0.233843 -0.652746 0.626938 -0.185822 -0.756584 -0.240664 -0.969834 0.038774 -0.740966 0.157773 -0.652746 0.642960 -0.119091 -0.756584 -0.137693 -0.989716 0.038774 -0.753421 0.079246 -0.652746 0.116865 0.749848 0.651207 -0.132749 0.661610 -0.738004 -0.984236 -0.000200 0.176861 0.037632 0.757967 0.651207 -0.201360 0.644053 -0.738004 -0.978794 -0.103354 0.176861 -0.041258 0.757778 0.651207 -0.267133 0.619670 -0.738004 -0.962776 -0.204407 0.176861 -0.120451 0.749280 0.651207 -0.330607 0.588259 -0.738004 -0.936050 -0.304187 0.176861 -0.198318 0.732530 0.651207 -0.390440 0.550370 -0.738004 -0.899014 -0.400617 0.176861 -0.273292 0.707984 0.651207 -0.445466 0.506863 -0.738004 -0.852568 -0.491781 0.176861 -0.345989 0.675442 0.651207 -0.496136 0.457384 -0.738004 -0.796330 -0.578428 0.176861 -0.414874 0.635460 0.651207 -0.541340 0.402866 -0.738004 -0.731321 -0.658703 0.176861 -0.479190 0.588478 0.651207 -0.580582 0.343911 -0.738004 -0.658256 -0.731723 0.176861 -0.537692 0.535552 0.651207 -0.613147 0.281781 -0.738004 -0.578738 -0.796105 0.176861 -0.590861 0.476249 0.651207 -0.639303 0.215967 -0.738004 -0.492113 -0.852376 0.176861 -0.637521 0.411700 0.651207 -0.658417 0.147774 -0.738004 -0.400067 -0.899259 0.176861 -0.676816 0.343292 0.651207 -0.670200 0.078624 -0.738004 -0.304551 -0.935932 0.176861 -0.709068 0.270467 0.651207 -0.674750 0.007949 -0.738004 -0.204782 -0.962697 0.176861 -0.733510 0.194662 0.651207 -0.671867 -0.062814 -0.738004 -0.102756 -0.978857 0.176861 -0.749776 0.117323 0.651207 -0.661691 -0.132345 -0.738004 -0.000401 -0.984236 0.176861 -0.757943 0.038095 0.651207 -0.644176 -0.200966 -0.738004 0.102756 -0.978857 0.176861 -0.757762 -0.041553 0.651207 -0.619566 -0.267374 -0.738004 0.204782 -0.962697 0.176861 -0.749233 -0.120743 0.651207 -0.588131 -0.330836 -0.738004 0.304551 -0.935932 0.176861 -0.732651 -0.197870 0.651207 -0.550608 -0.390104 -0.738004 0.400067 -0.899259 0.176861 -0.707877 -0.273567 0.651207 -0.506690 -0.445663 -0.738004 0.492113 -0.852376 0.176861 -0.675307 -0.346251 0.651207 -0.457191 -0.496313 -0.738004 0.578738 -0.796105 0.176861 -0.635713 -0.414486 0.651207 -0.403197 -0.541094 -0.738004 0.658256 -0.731723 0.176861 -0.588771 -0.478830 0.651207 -0.344266 -0.580372 -0.738004 0.731321 -0.658703 0.176861 -0.535343 -0.537901 0.651207 -0.281542 -0.613257 -0.738004 0.796330 -0.578428 0.176861 -0.476019 -0.591046 0.651207 -0.215718 -0.639387 -0.738004 0.852568 -0.491781 0.176861 -0.412089 -0.637269 0.651207 -0.148176 -0.658327 -0.738004 0.899014 -0.400617 0.176861 -0.343029 -0.676949 0.651207 -0.078363 -0.670231 -0.738004 0.936050 -0.304187 0.176861 -0.270191 -0.709173 0.651207 -0.007686 -0.674753 -0.738004 0.962776 -0.204407 0.176861 -0.195110 -0.733391 0.651207 0.062403 -0.671905 -0.738004 0.978794 -0.103354 0.176861 -0.117171 -0.749800 0.651207 0.132480 -0.661664 -0.738004 0.984236 -0.000200 0.176861 -0.037941 -0.757951 0.651207 0.201097 -0.644135 -0.738004 0.978836 0.102956 0.176861 0.041707 -0.757753 0.651207 0.267500 -0.619511 -0.738004 0.962655 0.204978 0.176861 0.120146 -0.749329 0.651207 0.330368 -0.588394 -0.738004 0.936174 0.303806 0.176861 0.198019 -0.732610 0.651207 0.390216 -0.550529 -0.738004 0.899177 0.400250 0.176861 0.273711 -0.707822 0.651207 0.445766 -0.506599 -0.738004 0.852276 0.492286 0.176861 0.346389 -0.675236 0.651207 0.496407 -0.457090 -0.738004 0.795987 0.578900 0.176861 0.414615 -0.635629 0.651207 0.541176 -0.403087 -0.738004 0.731589 0.658405 0.176861 0.478950 -0.588673 0.651207 0.580442 -0.344147 -0.738004 0.658554 0.731455 0.176861 0.538010 -0.535234 0.651207 0.613314 -0.281418 -0.738004 0.578266 0.796448 0.176861 0.590667 -0.476490 0.651207 0.639215 -0.216227 -0.738004 0.492460 0.852176 0.176861 0.637353 -0.411959 0.651207 0.658357 -0.148042 -0.738004 0.400434 0.899096 0.176861 0.677019 -0.342891 0.651207 0.670247 -0.078226 -0.738004 0.303997 0.936112 0.176861 0.709228 -0.270046 0.651207 0.674754 -0.007549 -0.738004 0.204211 0.962818 0.176861 0.733430 -0.194960 0.651207 0.671892 0.062540 -0.738004 0.103155 0.978815 0.176861 0.749824 -0.117018 0.651207 0.661637 0.132615 -0.738004 0.000000 0.984236 0.176861 0.757959 -0.037786 0.651207 0.644094 0.201229 -0.738004 -0.103155 0.978815 0.176861 0.757786 0.041103 0.651207 0.619724 0.267007 -0.738004 -0.204211 0.962818 0.176861 0.749305 0.120299 0.651207 0.588327 0.330487 -0.738004 -0.303997 0.936112 0.176861 0.732570 0.198168 0.651207 0.550449 0.390328 -0.738004 -0.400434 0.899096 0.176861 0.707766 0.273856 0.651207 0.506508 0.445870 -0.738004 -0.492460 0.852176 0.176861 0.675512 0.345851 0.651207 0.457485 0.496042 -0.738004 -0.578266 0.796448 0.176861 0.635544 0.414745 0.651207 0.402976 0.541258 -0.738004 -0.658554 0.731455 0.176861 0.588576 0.479070 0.651207 0.344029 0.580512 -0.738004 -0.731589 0.658405 0.176861 0.535662 0.537583 0.651207 0.281906 0.613090 -0.738004 -0.795987 0.578900 0.176861 0.476369 0.590764 0.651207 0.216097 0.639259 -0.738004 -0.852276 0.492286 0.176861 0.411829 0.637437 0.651207 0.147908 0.658387 -0.738004 -0.899177 0.400250 0.176861 0.342753 0.677089 0.651207 0.078090 0.670263 -0.738004 -0.936174 0.303806 0.176861 0.270611 0.709013 0.651207 0.008086 0.674748 -0.738004 -0.962655 0.204978 0.176861 0.194811 0.733470 0.651207 -0.062677 0.671879 -0.738004 -0.978836 0.102956 0.176861 0.434800 -0.609232 -0.663163 -0.333865 -0.792992 0.509606 -0.836351 -0.000170 -0.548194 0.496258 -0.560307 -0.663163 -0.248915 -0.823616 0.509606 -0.831727 -0.087825 -0.548194 0.551743 -0.505762 -0.663163 -0.162068 -0.845006 0.509606 -0.818116 -0.173694 -0.548194 0.601712 -0.445149 -0.663163 -0.072613 -0.857338 0.509606 -0.795406 -0.258482 -0.548194 0.645053 -0.379634 -0.663163 0.017642 -0.860227 0.509606 -0.763934 -0.340423 -0.548194 0.680978 -0.310618 -0.663163 0.106849 -0.853748 0.509606 -0.724466 -0.417889 -0.548194 0.709783 -0.237536 -0.663163 0.195740 -0.837847 0.509606 -0.676679 -0.491517 -0.548194 0.730769 -0.161838 -0.663163 0.282474 -0.812718 0.509606 -0.621437 -0.559731 -0.548194 0.743706 -0.084356 -0.663163 0.366097 -0.778636 0.509606 -0.559351 -0.621779 -0.548194 0.748445 -0.006694 -0.663163 0.444951 -0.736424 0.509606 -0.491780 -0.676487 -0.548194 0.745025 0.071785 -0.663163 0.519683 -0.685734 0.509606 -0.418171 -0.724304 -0.548194 0.733398 0.149474 -0.663163 0.588691 -0.627491 0.509606 -0.339956 -0.764142 -0.548194 0.713918 0.224802 -0.663163 0.650652 -0.562987 0.509606 -0.258791 -0.795305 -0.548194 0.686426 0.298387 -0.663163 0.706073 -0.491693 0.509606 -0.174012 -0.818048 -0.548194 0.651372 0.368686 -0.663163 0.753718 -0.414984 0.509606 -0.087317 -0.831780 -0.548194 0.609498 0.434428 -0.663163 0.792788 -0.334349 0.509606 -0.000341 -0.836351 -0.548194 0.560610 0.495915 -0.663163 0.823464 -0.249418 0.509606 0.087317 -0.831780 -0.548194 0.505547 0.551940 -0.663163 0.845069 -0.161739 0.509606 0.174012 -0.818048 -0.548194 0.444915 0.601885 -0.663163 0.857367 -0.072279 0.509606 0.258791 -0.795305 -0.548194 0.380028 0.644821 -0.663163 0.860238 0.017117 0.509606 0.339956 -0.764142 -0.548194 0.310353 0.681099 -0.663163 0.853706 0.107181 0.509606 0.418171 -0.724304 -0.548194 0.237260 0.709875 -0.663163 0.837771 0.196066 0.509606 0.491780 -0.676487 -0.548194 0.162284 0.730670 -0.663163 0.812890 0.281978 0.509606 0.559351 -0.621779 -0.548194 0.084811 0.743655 -0.663163 0.778860 0.365621 0.509606 0.621437 -0.559731 -0.548194 0.006403 0.748448 -0.663163 0.736251 0.445238 0.509606 0.676679 -0.491517 -0.548194 -0.072075 0.744997 -0.663163 0.685532 0.519950 0.509606 0.724466 -0.417889 -0.548194 -0.149025 0.733489 -0.663163 0.627850 0.588307 0.509606 0.763934 -0.340423 -0.548194 -0.225080 0.713831 -0.663163 0.562734 0.650871 0.509606 0.795406 -0.258482 -0.548194 -0.298655 0.686310 -0.663163 0.491418 0.706264 0.509606 0.818116 -0.173694 -0.548194 -0.368288 0.651597 -0.663163 0.415444 0.753464 0.509606 0.831727 -0.087825 -0.548194 -0.434552 0.609409 -0.663163 0.334188 0.792856 0.509606 0.836351 -0.000170 -0.548194 -0.496029 0.560509 -0.663163 0.249250 0.823514 0.509606 0.831763 0.087486 -0.548194 -0.552043 0.505434 -0.663163 0.161567 0.845102 0.509606 0.818013 0.174179 -0.548194 -0.601531 0.445394 -0.663163 0.072962 0.857309 0.509606 0.795511 0.258158 -0.548194 -0.644898 0.379897 -0.663163 -0.017292 0.860234 0.509606 0.764073 0.340111 -0.548194 -0.681162 0.310215 -0.663163 -0.107355 0.853684 0.509606 0.724219 0.418319 -0.548194 -0.709924 0.237115 -0.663163 -0.196236 0.837731 0.509606 0.676387 0.491918 -0.548194 -0.730703 0.162135 -0.663163 -0.282143 0.812833 0.509606 0.621665 0.559478 -0.548194 -0.743672 0.084659 -0.663163 -0.365780 0.778785 0.509606 0.559604 0.621551 -0.548194 -0.748449 0.006251 -0.663163 -0.445388 0.736160 0.509606 0.491379 0.676779 -0.548194 -0.745054 -0.071481 -0.663163 -0.519404 0.685946 0.509606 0.418466 0.724133 -0.548194 -0.733459 -0.149175 -0.663163 -0.588435 0.627730 0.509606 0.340267 0.764004 -0.548194 -0.713785 -0.225225 -0.663163 -0.650985 0.562601 0.509606 0.258320 0.795458 -0.548194 -0.686249 -0.298794 -0.663163 -0.706365 0.491275 0.509606 0.173528 0.818151 -0.548194 -0.651522 -0.368421 -0.663163 -0.753549 0.415291 0.509606 0.087656 0.831745 -0.548194 -0.609321 -0.434676 -0.663163 -0.792924 0.334026 0.509606 0.000000 0.836351 -0.548194 -0.560408 -0.496144 -0.663163 -0.823565 0.249082 0.509606 -0.087656 0.831745 -0.548194 -0.505874 -0.551640 -0.663163 -0.844973 0.162240 0.509606 -0.173528 0.818151 -0.548194 -0.445272 -0.601621 -0.663163 -0.857324 0.072787 0.509606 -0.258320 0.795458 -0.548194 -0.379765 -0.644976 -0.663163 -0.860231 -0.017467 0.509606 -0.340267 0.764004 -0.548194 -0.310076 -0.681226 -0.663163 -0.853662 -0.107529 0.509606 -0.418466 0.724133 -0.548194 -0.237681 -0.709735 -0.663163 -0.837887 -0.195569 0.509606 -0.491379 0.676779 -0.548194 -0.161986 -0.730736 -0.663163 -0.812775 -0.282309 0.509606 -0.559604 0.621551 -0.548194 -0.084508 -0.743689 -0.663163 -0.778711 -0.365938 0.509606 -0.621665 0.559478 -0.548194 -0.006847 -0.748444 -0.663163 -0.736514 -0.444801 0.509606 -0.676387 0.491918 -0.548194 0.071633 -0.745040 -0.663163 -0.685840 -0.519544 0.509606 -0.724219 0.418319 -0.548194 0.149324 -0.733429 -0.663163 -0.627611 -0.588563 0.509606 -0.764073 0.340111 -0.548194 0.225370 -0.713739 -0.663163 -0.562468 -0.651100 0.509606 -0.795511 0.258158 -0.548194 0.298248 -0.686486 -0.663163 -0.491837 -0.705973 0.509606 -0.818013 0.174179 -0.548194 0.368554 -0.651447 -0.663163 -0.415137 -0.753633 0.509606 -0.831763 0.087486 -0.548194 0.060259 -0.742092 0.667584 0.066412 0.670298 0.739114 -0.995971 -0.000203 0.089676 0.137704 -0.731689 0.667584 -0.004206 0.673567 0.739114 -0.990465 -0.104587 0.089676 0.212919 -0.713440 0.667584 -0.074108 0.669491 0.739114 -0.974255 -0.206844 0.089676 0.286520 -0.687196 0.667584 -0.143867 0.658037 0.739114 -0.947211 -0.307814 0.089676 0.356965 -0.653382 0.667584 -0.212042 0.639335 0.739114 -0.909733 -0.405393 0.089676 0.422865 -0.612794 0.667584 -0.277267 0.613868 0.739114 -0.862733 -0.497645 0.089676 0.484761 -0.565100 0.667584 -0.340078 0.581427 0.739114 -0.805825 -0.585324 0.089676 0.541318 -0.511181 0.667584 -0.399142 0.542583 0.739114 -0.740041 -0.666557 0.089676 0.591912 -0.451632 0.667584 -0.453811 0.497761 0.739114 -0.666105 -0.740448 0.089676 0.635599 -0.387743 0.667584 -0.503033 0.447961 0.739114 -0.585638 -0.805597 0.089676 0.672737 -0.318992 0.667584 -0.547212 0.392772 0.739114 -0.497980 -0.862539 0.089676 0.702465 -0.246728 0.667584 -0.585363 0.333257 0.739114 -0.404837 -0.909981 0.089676 0.724283 -0.172470 0.667584 -0.616797 0.270688 0.739114 -0.308183 -0.947091 0.089676 0.738370 -0.095610 0.667584 -0.641770 0.204553 0.739114 -0.207223 -0.974175 0.089676 0.744324 -0.017697 0.667584 -0.659674 0.136164 0.739114 -0.103981 -0.990528 0.089676 0.742128 0.059806 0.667584 -0.670258 0.066822 0.739114 -0.000406 -0.995971 0.089676 0.731773 0.137257 0.667584 -0.673570 -0.003794 0.739114 0.103981 -0.990528 0.089676 0.713357 0.213196 0.667584 -0.669462 -0.074368 0.739114 0.207223 -0.974175 0.089676 0.687084 0.286787 0.667584 -0.657981 -0.144123 0.739114 0.308183 -0.947091 0.089676 0.653600 0.356565 0.667584 -0.639464 -0.211651 0.739114 0.404837 -0.909981 0.089676 0.612629 0.423103 0.667584 -0.613760 -0.277506 0.739114 0.497980 -0.862539 0.089676 0.564911 0.484981 0.667584 -0.581295 -0.340304 0.739114 0.585638 -0.805597 0.089676 0.511511 0.541006 0.667584 -0.542826 -0.398811 0.739114 0.666105 -0.740448 0.089676 0.451993 0.591636 0.667584 -0.498038 -0.453507 0.739114 0.740041 -0.666557 0.089676 0.387496 0.635750 0.667584 -0.447765 -0.503207 0.739114 0.805825 -0.585324 0.089676 0.318731 0.672861 0.667584 -0.392559 -0.547364 0.739114 0.862733 -0.497645 0.089676 0.247157 0.702314 0.667584 -0.333615 -0.585160 0.739114 0.909733 -0.405393 0.089676 0.172188 0.724350 0.667584 -0.270448 -0.616902 0.739114 0.947211 -0.307814 0.089676 0.095323 0.738407 0.667584 -0.204303 -0.641849 0.739114 0.974255 -0.206844 0.089676 0.018152 0.744313 0.667584 -0.136567 -0.659591 0.739114 0.990465 -0.104587 0.089676 -0.059957 0.742116 0.667584 -0.066685 -0.670271 0.739114 0.995971 -0.000203 0.089676 -0.137406 0.731745 0.667584 0.003931 -0.673569 0.739114 0.990507 0.104183 0.089676 -0.213341 0.713314 0.667584 0.074505 -0.669447 0.739114 0.974133 0.207422 0.089676 -0.286240 0.687312 0.667584 0.143599 -0.658096 0.739114 0.947336 0.307428 0.089676 -0.356699 0.653527 0.667584 0.211781 -0.639421 0.739114 0.909898 0.405023 0.089676 -0.423228 0.612543 0.667584 0.277631 -0.613703 0.739114 0.862438 0.498156 0.089676 -0.485096 0.564812 0.667584 0.340422 -0.581226 0.739114 0.805478 0.585802 0.089676 -0.541110 0.511401 0.667584 0.398921 -0.542745 0.739114 0.740312 0.666256 0.089676 -0.591728 0.451873 0.667584 0.453608 -0.497946 0.739114 0.666406 0.740176 0.089676 -0.635829 0.387367 0.667584 0.503298 -0.447662 0.739114 0.585160 0.805944 0.089676 -0.672607 0.319267 0.667584 0.547052 -0.392995 0.739114 0.498332 0.862336 0.089676 -0.702364 0.247014 0.667584 0.585228 -0.333495 0.739114 0.405208 0.909816 0.089676 -0.724385 0.172041 0.667584 0.616957 -0.270323 0.739114 0.307621 0.947274 0.089676 -0.738426 0.095173 0.667584 0.641891 -0.204172 0.739114 0.206646 0.974298 0.089676 -0.744317 0.018001 0.667584 0.659619 -0.136433 0.739114 0.104385 0.990486 0.089676 -0.742104 -0.060108 0.667584 0.670285 -0.066549 0.739114 0.000000 0.995971 0.089676 -0.731717 -0.137555 0.667584 0.673568 0.004068 0.739114 -0.104385 0.990486 0.089676 -0.713484 -0.212773 0.667584 0.669506 0.073971 0.739114 -0.206646 0.974298 0.089676 -0.687254 -0.286380 0.667584 0.658066 0.143733 0.739114 -0.307621 0.947274 0.089676 -0.653454 -0.356832 0.667584 0.639378 0.211911 0.739114 -0.405208 0.909816 0.089676 -0.612457 -0.423353 0.667584 0.613647 0.277756 0.739114 -0.498332 0.862336 0.089676 -0.565198 -0.484646 0.667584 0.581497 0.339959 0.739114 -0.585160 0.805944 0.089676 -0.511291 -0.541214 0.667584 0.542664 0.399032 0.739114 -0.666406 0.740176 0.089676 -0.451752 -0.591820 0.667584 0.497854 0.453709 0.739114 -0.740312 0.666256 0.089676 -0.387873 -0.635520 0.667584 0.448063 0.502941 0.739114 -0.805478 0.585802 0.089676 -0.319129 -0.672672 0.667584 0.392883 0.547132 0.739114 -0.862438 0.498156 0.089676 -0.246871 -0.702414 0.667584 0.333376 0.585295 0.739114 -0.909898 0.405023 0.089676 -0.171893 -0.724420 0.667584 0.270197 0.617012 0.739114 -0.947336 0.307428 0.089676 -0.095761 -0.738350 0.667584 0.204684 0.641728 0.739114 -0.974133 0.207422 0.089676 -0.017849 -0.744320 0.667584 0.136299 0.659646 0.739114 -0.990507 0.104183 0.089676 -0.011330 -0.262108 -0.964972 0.003288 -0.965038 0.262088 -0.999930 -0.000204 0.011796 0.016203 -0.261852 -0.964972 0.104413 -0.959379 0.262088 -0.994402 -0.105002 0.011796 0.043299 -0.258755 -0.964972 0.203445 -0.943356 0.262088 -0.978129 -0.207667 0.011796 0.070180 -0.252792 -0.964972 0.301195 -0.916838 0.262088 -0.950977 -0.309038 0.011796 0.096288 -0.244044 -0.964972 0.395627 -0.880221 0.262088 -0.913350 -0.407005 0.011796 0.121102 -0.232730 -0.964972 0.484868 -0.834394 0.262088 -0.866163 -0.499623 0.011796 0.144827 -0.218756 -0.964972 0.569648 -0.778981 0.262088 -0.809028 -0.587651 0.011796 0.166957 -0.202372 -0.964972 0.648153 -0.714988 0.262088 -0.742983 -0.669207 0.011796 0.187247 -0.183759 -0.964972 0.719519 -0.643119 0.262088 -0.668753 -0.743391 0.011796 0.205312 -0.163328 -0.964972 0.782396 -0.564949 0.262088 -0.587966 -0.808800 0.011796 0.221299 -0.140910 -0.964972 0.837297 -0.479837 0.262088 -0.499960 -0.865968 0.011796 0.234849 -0.116940 -0.964972 0.882976 -0.389439 0.262088 -0.406447 -0.913598 0.011796 0.245720 -0.091928 -0.964972 0.918634 -0.295671 0.262088 -0.309408 -0.950856 0.011796 0.254001 -0.065669 -0.964972 0.944563 -0.197763 0.262088 -0.208047 -0.978048 0.011796 0.259485 -0.038686 -0.964972 0.960088 -0.097677 0.262088 -0.104395 -0.994466 0.011796 0.262101 -0.011490 -0.964972 0.965040 0.002699 0.262088 -0.000407 -0.999930 0.011796 0.261862 0.016043 -0.964972 0.959443 0.103827 0.262088 0.104395 -0.994466 0.011796 0.258738 0.043400 -0.964972 0.943277 0.203812 0.262088 0.208047 -0.978048 0.011796 0.252765 0.070278 -0.964972 0.916721 0.301551 0.262088 0.309408 -0.950856 0.011796 0.244103 0.096139 -0.964972 0.880463 0.395089 0.262088 0.406447 -0.913598 0.011796 0.232683 0.121193 -0.964972 0.834206 0.485192 0.262088 0.499960 -0.865968 0.011796 0.218699 0.144912 -0.964972 0.778760 0.569951 0.262088 0.587966 -0.808800 0.011796 0.202474 0.166833 -0.964972 0.715384 0.647716 0.262088 0.668753 -0.743391 0.011796 0.183874 0.187135 -0.964972 0.643558 0.719126 0.262088 0.742983 -0.669207 0.011796 0.163248 0.205376 -0.964972 0.564644 0.782615 0.262088 0.809028 -0.587651 0.011796 0.140824 0.221354 -0.964972 0.479511 0.837484 0.262088 0.866163 -0.499623 0.011796 0.117084 0.234777 -0.964972 0.389979 0.882738 0.262088 0.913350 -0.407005 0.011796 0.091833 0.245756 -0.964972 0.295314 0.918749 0.262088 0.950977 -0.309038 0.011796 0.065570 0.254027 -0.964972 0.197396 0.944640 0.262088 0.978129 -0.207667 0.011796 0.038844 0.259461 -0.964972 0.098264 0.960028 0.262088 0.994402 -0.105002 0.011796 0.011437 0.262103 -0.964972 -0.002895 0.965040 0.262088 0.999930 -0.000204 0.011796 -0.016096 0.261859 -0.964972 -0.104022 0.959421 0.262088 0.994445 0.104597 0.011796 -0.043452 0.258729 -0.964972 -0.204004 0.943235 0.262088 0.978005 0.208246 0.011796 -0.070077 0.252821 -0.964972 -0.300821 0.916961 0.262088 0.951102 0.308650 0.011796 -0.096188 0.244084 -0.964972 -0.395269 0.880382 0.262088 0.913516 0.406633 0.011796 -0.121240 0.232658 -0.964972 -0.485362 0.834107 0.262088 0.865866 0.500136 0.011796 -0.144957 0.218670 -0.964972 -0.570109 0.778643 0.262088 0.808680 0.588131 0.011796 -0.166874 0.202440 -0.964972 -0.647862 0.715252 0.262088 0.743255 0.668904 0.011796 -0.187172 0.183836 -0.964972 -0.719257 0.643412 0.262088 0.669056 0.743119 0.011796 -0.205409 0.163206 -0.964972 -0.782730 0.564485 0.262088 0.587487 0.809148 0.011796 -0.221242 0.141000 -0.964972 -0.837102 0.480178 0.262088 0.500313 0.865764 0.011796 -0.234801 0.117036 -0.964972 -0.882818 0.389799 0.262088 0.406819 0.913433 0.011796 -0.245774 0.091782 -0.964972 -0.918809 0.295127 0.262088 0.308844 0.951040 0.011796 -0.254040 0.065518 -0.964972 -0.944680 0.197204 0.262088 0.207467 0.978171 0.011796 -0.259469 0.038792 -0.964972 -0.960048 0.098068 0.262088 0.104800 0.994423 0.011796 -0.262106 0.011384 -0.964972 -0.965039 -0.003092 0.262088 0.000000 0.999930 0.011796 -0.261855 -0.016150 -0.964972 -0.959400 -0.104218 0.262088 -0.104800 0.994423 0.011796 -0.258764 -0.043246 -0.964972 -0.943397 -0.203253 0.262088 -0.207467 0.978171 0.011796 -0.252806 -0.070128 -0.964972 -0.916899 -0.301008 0.262088 -0.308844 0.951040 0.011796 -0.244064 -0.096238 -0.964972 -0.880302 -0.395448 0.262088 -0.406819 0.913433 0.011796 -0.232633 -0.121288 -0.964972 -0.834008 -0.485532 0.262088 -0.500313 0.865764 0.011796 -0.218785 -0.144783 -0.964972 -0.779097 -0.569489 0.262088 -0.587487 0.809148 0.011796 -0.202406 -0.166916 -0.964972 -0.715120 -0.648008 0.262088 -0.669056 0.743119 0.011796 -0.183797 -0.187210 -0.964972 -0.643266 -0.719388 0.262088 -0.743255 0.668904 0.011796 -0.163370 -0.205279 -0.964972 -0.565108 -0.782280 0.262088 -0.808680 0.588131 0.011796 -0.140955 -0.221271 -0.964972 -0.480007 -0.837200 0.262088 -0.865866 0.500136 0.011796 -0.116988 -0.234825 -0.964972 -0.389619 -0.882897 0.262088 -0.913516 0.406633 0.011796 -0.091732 -0.245793 -0.964972 -0.294940 -0.918869 0.262088 -0.951102 0.308650 0.011796 -0.065720 -0.253988 -0.964972 -0.197956 -0.944523 0.262088 -0.978005 0.208246 0.011796 -0.038739 -0.259477 -0.964972 -0.097873 -0.960068 0.262088 -0.994445 0.104597 0.011796 0.119313 0.055792 0.991288 -0.006868 0.998442 -0.055368 -0.992833 -0.000202 0.119510 0.112808 0.067989 0.991288 -0.111474 0.992224 -0.055368 -0.987344 -0.104257 0.119510 0.105141 0.079333 0.991288 -0.213877 0.975290 -0.055368 -0.971186 -0.206193 0.119510 0.096247 0.089915 0.991288 -0.314917 0.947503 -0.055368 -0.944227 -0.306844 0.119510 0.086293 0.099508 0.991288 -0.412487 0.909279 -0.055368 -0.906867 -0.404116 0.119510 0.075497 0.107928 0.991288 -0.504653 0.861545 -0.055368 -0.860015 -0.496077 0.119510 0.063769 0.115246 0.991288 -0.592170 0.803909 -0.055368 -0.803286 -0.583480 0.119510 0.051339 0.121295 0.991288 -0.673164 0.737417 -0.055368 -0.737709 -0.664457 0.119510 0.038344 0.126008 0.991288 -0.746743 0.662804 -0.055368 -0.664006 -0.738115 0.119510 0.025056 0.129308 0.991288 -0.811516 0.581701 -0.055368 -0.583793 -0.803059 0.119510 0.011365 0.131221 0.991288 -0.868013 0.493445 -0.055368 -0.496411 -0.859822 0.119510 -0.002450 0.131690 0.991288 -0.914949 0.399753 -0.055368 -0.403562 -0.907114 0.119510 -0.016108 0.130724 0.991288 -0.951505 0.302610 -0.055368 -0.307212 -0.944107 0.119510 -0.029720 0.128316 0.991288 -0.977980 0.201219 -0.055368 -0.206570 -0.971106 0.119510 -0.043005 0.124494 0.991288 -0.993683 0.097611 -0.055368 -0.103654 -0.987407 0.119510 -0.055719 0.119347 0.991288 -0.998446 -0.006258 -0.055368 -0.000404 -0.992833 0.119510 -0.067920 0.112850 0.991288 -0.992292 -0.110868 -0.055368 0.103654 -0.987407 0.119510 -0.079374 0.105110 0.991288 -0.975207 -0.214257 -0.055368 0.206570 -0.971106 0.119510 -0.089953 0.096212 0.991288 -0.947380 -0.315285 -0.055368 0.307212 -0.944107 0.119510 -0.099455 0.086354 0.991288 -0.909531 -0.411932 -0.055368 0.403562 -0.907114 0.119510 -0.107958 0.075455 0.991288 -0.861348 -0.504988 -0.055368 0.496411 -0.859822 0.119510 -0.115271 0.063724 0.991288 -0.803678 -0.592483 -0.055368 0.583793 -0.803059 0.119510 -0.121264 0.051413 0.991288 -0.737829 -0.672714 -0.055368 0.664006 -0.738115 0.119510 -0.125984 0.038421 0.991288 -0.663260 -0.746338 -0.055368 0.737709 -0.664457 0.119510 -0.129317 0.025005 0.991288 -0.581385 -0.811742 -0.055368 0.803286 -0.583480 0.119510 -0.131226 0.011314 0.991288 -0.493107 -0.868205 -0.055368 0.860015 -0.496077 0.119510 -0.131691 -0.002370 0.991288 -0.400312 -0.914705 -0.055368 0.906867 -0.404116 0.119510 -0.130718 -0.016159 0.991288 -0.302240 -0.951623 -0.055368 0.944227 -0.306844 0.119510 -0.128304 -0.029770 0.991288 -0.200838 -0.978058 -0.055368 0.971186 -0.206193 0.119510 -0.124520 -0.042929 0.991288 -0.098218 -0.993623 -0.055368 0.987344 -0.104257 0.119510 -0.119335 -0.055743 0.991288 0.006461 -0.998445 -0.055368 0.992833 -0.000202 0.119510 -0.112836 -0.067943 0.991288 0.111070 -0.992269 -0.055368 0.987386 0.103855 0.119510 -0.105094 -0.079395 0.991288 0.214455 -0.975163 -0.055368 0.971063 0.206768 0.119510 -0.096283 -0.089876 0.991288 0.314531 -0.947631 -0.055368 0.944352 0.306460 0.119510 -0.086334 -0.099472 0.991288 0.412117 -0.909447 -0.055368 0.907031 0.403747 0.119510 -0.075433 -0.107973 0.991288 0.505164 -0.861246 -0.055368 0.859721 0.496586 0.119510 -0.063701 -0.115284 0.991288 0.592646 -0.803557 -0.055368 0.802940 0.583956 0.119510 -0.051389 -0.121274 0.991288 0.672864 -0.737692 -0.055368 0.737979 0.664156 0.119510 -0.038395 -0.125992 0.991288 0.746473 -0.663108 -0.055368 0.664307 0.737844 0.119510 -0.024979 -0.129322 0.991288 0.811861 -0.581220 -0.055368 0.583317 0.803405 0.119510 -0.011419 -0.131217 0.991288 0.867812 -0.493798 -0.055368 0.496761 0.859619 0.119510 0.002397 -0.131691 0.991288 0.914786 -0.400126 -0.055368 0.403931 0.906949 0.119510 0.016186 -0.130714 0.991288 0.951684 -0.302046 -0.055368 0.306652 0.944289 0.119510 0.029796 -0.128298 0.991288 0.978099 -0.200639 -0.055368 0.205995 0.971228 0.119510 0.042954 -0.124512 0.991288 0.993643 -0.098016 -0.055368 0.104056 0.987365 0.119510 0.055767 -0.119324 0.991288 0.998444 0.006665 -0.055368 0.000000 0.992833 0.119510 0.067966 -0.112822 0.991288 0.992246 0.111272 -0.055368 -0.104056 0.987365 0.119510 0.079311 -0.105157 0.991288 0.975334 0.213679 -0.055368 -0.205995 0.971228 0.119510 0.089896 -0.096265 0.991288 0.947567 0.314724 -0.055368 -0.306652 0.944289 0.119510 0.099490 -0.086313 0.991288 0.909363 0.412302 -0.055368 -0.403931 0.906949 0.119510 0.107988 -0.075411 0.991288 0.861143 0.505339 -0.055368 -0.496761 0.859619 0.119510 0.115233 -0.063793 0.991288 0.804029 0.592006 -0.055368 -0.583317 0.803405 0.119510 0.121285 -0.051364 0.991288 0.737554 0.673014 -0.055368 -0.664307 0.737844 0.119510 0.126000 -0.038370 0.991288 0.662956 0.746608 -0.055368 -0.737979 0.664156 0.119510 0.129302 -0.025082 0.991288 0.581866 0.811397 -0.055368 -0.802940 0.583956 0.119510 0.131219 -0.011392 0.991288 0.493621 0.867913 -0.055368 -0.859721 0.496586 0.119510 0.131690 0.002423 0.991288 0.399940 0.914868 -0.055368 -0.907031 0.403747 0.119510 0.130711 0.016212 0.991288 0.301852 0.951746 -0.055368 -0.944352 0.306460 0.119510 0.128322 0.029694 0.991288 0.201418 0.977939 -0.055368 -0.971063 0.206768 0.119510 0.124503 0.042980 0.991288 0.097814 0.993663 -0.055368 -0.987386 0.103855 0.119510 -0.034687 -0.637472 0.769692 -0.028963 0.770473 0.636814 -0.998978 -0.000203 -0.045188 0.032316 -0.637597 0.769692 -0.109555 0.763195 0.636814 -0.993455 -0.104902 -0.045188 0.098332 -0.630797 0.769692 -0.188192 0.747698 0.636814 -0.977197 -0.207469 -0.045188 0.163902 -0.617017 0.769692 -0.265519 0.723856 0.636814 -0.950071 -0.308744 -0.045188 0.227667 -0.596441 0.769692 -0.339922 0.692041 0.636814 -0.912480 -0.406617 -0.045188 0.288355 -0.569583 0.769692 -0.409928 0.653014 0.636814 -0.865338 -0.499147 -0.045188 0.346464 -0.536225 0.769692 -0.476111 0.606454 0.636814 -0.808258 -0.587092 -0.045188 0.400756 -0.496960 0.769692 -0.537050 0.553214 0.636814 -0.742275 -0.668570 -0.045188 0.450634 -0.452220 0.769692 -0.592073 0.493880 0.636814 -0.668116 -0.742683 -0.045188 0.495145 -0.402996 0.769692 -0.640145 0.429747 0.636814 -0.587406 -0.808030 -0.045188 0.534655 -0.348881 0.769692 -0.681660 0.360289 0.636814 -0.499484 -0.865144 -0.045188 0.568276 -0.290924 0.769692 -0.715666 0.286862 0.636814 -0.406060 -0.912729 -0.045188 0.595407 -0.230358 0.769692 -0.741579 0.211017 0.636814 -0.309113 -0.949951 -0.045188 0.616271 -0.166687 0.769692 -0.759611 0.132132 0.636814 -0.207849 -0.977117 -0.045188 0.630347 -0.101179 0.769692 -0.769276 0.051791 0.636814 -0.104295 -0.993519 -0.045188 0.637451 -0.035076 0.769692 -0.770491 -0.028492 0.636814 -0.000407 -0.998978 -0.045188 0.637616 0.031926 0.769692 -0.763261 -0.109088 0.636814 0.104295 -0.993519 -0.045188 0.630759 0.098577 0.769692 -0.747624 -0.188483 0.636814 0.207849 -0.977117 -0.045188 0.616953 0.164142 0.769692 -0.723753 -0.265801 0.636814 0.309113 -0.949951 -0.045188 0.596580 0.227303 0.769692 -0.692249 -0.339499 0.636814 0.406060 -0.912729 -0.045188 0.569471 0.288577 0.769692 -0.652854 -0.410182 0.636814 0.499484 -0.865144 -0.045188 0.536090 0.346672 0.769692 -0.606269 -0.476347 0.636814 0.587406 -0.808030 -0.045188 0.497204 0.400452 0.769692 -0.553542 -0.536712 0.636814 0.668116 -0.742683 -0.045188 0.452496 0.450357 0.769692 -0.494242 -0.591771 0.636814 0.742275 -0.668570 -0.045188 0.402803 0.495302 0.769692 -0.429498 -0.640312 0.636814 0.808258 -0.587092 -0.045188 0.348673 0.534790 0.769692 -0.360024 -0.681800 0.636814 0.865338 -0.499147 -0.045188 0.291271 0.568098 0.769692 -0.287299 -0.715491 0.636814 0.912480 -0.406617 -0.045188 0.230127 0.595496 0.769692 -0.210728 -0.741661 0.636814 0.950071 -0.308744 -0.045188 0.166447 0.616335 0.769692 -0.131836 -0.759663 0.636814 0.977197 -0.207469 -0.045188 0.101564 0.630285 0.769692 -0.052261 -0.769244 0.636814 0.993455 -0.104902 -0.045188 0.034946 0.637458 0.769692 0.028649 -0.770485 0.636814 0.998978 -0.000203 -0.045188 -0.032056 0.637610 0.769692 0.109244 -0.763239 0.636814 0.993498 0.104498 -0.045188 -0.098706 0.630739 0.769692 0.188635 -0.747586 0.636814 0.977074 0.208048 -0.045188 -0.163651 0.617084 0.769692 0.265225 -0.723964 0.636814 0.950197 0.308357 -0.045188 -0.227425 0.596533 0.769692 0.339640 -0.692179 0.636814 0.912646 0.406246 -0.045188 -0.288693 0.569412 0.769692 0.410315 -0.652771 0.636814 0.865042 0.499660 -0.045188 -0.346781 0.536019 0.769692 0.476471 -0.606171 0.636814 0.807910 0.587571 -0.045188 -0.400553 0.497123 0.769692 0.536824 -0.553433 0.636814 0.742547 0.668267 -0.045188 -0.450449 0.452404 0.769692 0.591872 -0.494122 0.636814 0.668419 0.742411 -0.045188 -0.495384 0.402702 0.769692 0.640399 -0.429368 0.636814 0.586927 0.808378 -0.045188 -0.534513 0.349099 0.769692 0.681513 -0.360566 0.636814 0.499836 0.864940 -0.045188 -0.568157 0.291156 0.769692 0.715550 -0.287153 0.636814 0.406432 0.912563 -0.045188 -0.595543 0.230005 0.769692 0.741704 -0.210577 0.636814 0.308550 0.950134 -0.045188 -0.616369 0.166321 0.769692 0.759689 -0.131681 0.636814 0.207270 0.977240 -0.045188 -0.630305 0.101436 0.769692 0.769255 -0.052104 0.636814 0.104700 0.993477 -0.045188 -0.637465 0.034817 0.769692 0.770479 0.028806 0.636814 0.000000 0.998978 -0.045188 -0.637603 -0.032186 0.769692 0.763217 0.109399 0.636814 -0.104700 0.993477 -0.045188 -0.630817 -0.098203 0.769692 0.747736 0.188040 0.636814 -0.207270 0.977240 -0.045188 -0.617050 -0.163777 0.769692 0.723910 0.265372 0.636814 -0.308550 0.950134 -0.045188 -0.596487 -0.227546 0.769692 0.692110 0.339781 0.636814 -0.406432 0.912563 -0.045188 -0.569354 -0.288809 0.769692 0.652687 0.410448 0.636814 -0.499836 0.864940 -0.045188 -0.536295 -0.346355 0.769692 0.606551 0.475988 0.636814 -0.586927 0.808378 -0.045188 -0.497041 -0.400655 0.769692 0.553323 0.536937 0.636814 -0.668419 0.742411 -0.045188 -0.452312 -0.450541 0.769692 0.494001 0.591972 0.636814 -0.742547 0.668267 -0.045188 -0.403096 -0.495063 0.769692 0.429878 0.640057 0.636814 -0.807910 0.587571 -0.045188 -0.348990 -0.534584 0.769692 0.360427 0.681586 0.636814 -0.865042 0.499660 -0.045188 -0.291040 -0.568216 0.769692 0.287007 0.715608 0.636814 -0.912646 0.406246 -0.045188 -0.229884 -0.595590 0.769692 0.210426 0.741747 0.636814 -0.950197 0.308357 -0.045188 -0.166812 -0.616237 0.769692 0.132286 0.759584 0.636814 -0.977074 0.208048 -0.045188 -0.101307 -0.630326 0.769692 0.051948 0.769266 0.636814 -0.993498 0.104498 -0.045188 0.285418 0.605082 0.743244 -0.217140 0.796163 -0.564779 -0.933481 -0.000190 0.358627 0.220429 0.631664 0.743244 -0.299388 0.769020 -0.564779 -0.928320 -0.098025 0.358627 0.153663 0.651134 0.743244 -0.377604 0.733785 -0.564779 -0.913128 -0.193866 0.358627 0.084573 0.663653 0.743244 -0.452430 0.690168 -0.564779 -0.887780 -0.288501 0.358627 0.014552 0.668862 0.743244 -0.522273 0.638949 -0.564779 -0.852654 -0.379958 0.358627 -0.054963 0.666759 0.743244 -0.585782 0.581278 -0.564779 -0.808603 -0.466421 0.358627 -0.124541 0.657326 0.743244 -0.643478 0.516683 -0.564779 -0.755265 -0.548600 0.358627 -0.192748 0.640653 0.743244 -0.694086 0.446396 -0.564779 -0.693608 -0.624735 0.358627 -0.258831 0.616923 0.743244 -0.737049 0.371192 -0.564779 -0.624312 -0.693990 0.358627 -0.321477 0.586720 0.743244 -0.771601 0.292672 -0.564779 -0.548893 -0.755052 0.358627 -0.381199 0.549796 0.743244 -0.798026 0.210190 -0.564779 -0.466736 -0.808421 0.358627 -0.436722 0.506815 0.743244 -0.815660 0.125394 -0.564779 -0.379437 -0.852886 0.358627 -0.486976 0.458740 0.743244 -0.824270 0.040041 -0.564779 -0.288846 -0.887668 0.358627 -0.532374 0.405175 0.743244 -0.823927 -0.046569 -0.564779 -0.194222 -0.913052 0.358627 -0.571907 0.347146 0.743244 -0.814509 -0.132666 -0.564779 -0.097457 -0.928380 0.358627 -0.604908 0.285788 0.743244 -0.796295 -0.216654 -0.564779 -0.000380 -0.933481 0.358627 -0.631529 0.220815 0.743244 -0.769203 -0.298918 -0.564779 0.097457 -0.928380 0.358627 -0.651194 0.153410 0.743244 -0.733638 -0.377890 -0.564779 0.194222 -0.913052 0.358627 -0.663686 0.084315 0.743244 -0.689992 -0.452699 -0.564779 0.288846 -0.887668 0.358627 -0.668853 0.014961 0.743244 -0.639268 -0.521883 -0.564779 0.379437 -0.852886 0.358627 -0.666737 -0.055222 0.743244 -0.581050 -0.586008 -0.564779 0.466736 -0.808421 0.358627 -0.657278 -0.124797 0.743244 -0.516432 -0.643679 -0.564779 0.548893 -0.755052 0.358627 -0.640771 -0.192356 0.743244 -0.446820 -0.693813 -0.564779 0.624312 -0.693990 0.358627 -0.617081 -0.258454 0.743244 -0.371642 -0.736822 -0.564779 0.693608 -0.624735 0.358627 -0.586595 -0.321705 0.743244 -0.292371 -0.771715 -0.564779 0.755265 -0.548600 0.358627 -0.549647 -0.381413 0.743244 -0.209880 -0.798107 -0.564779 0.808603 -0.466421 0.358627 -0.507082 -0.436413 0.743244 -0.125892 -0.815583 -0.564779 0.852654 -0.379958 0.358627 -0.458550 -0.487155 0.743244 -0.039720 -0.824286 -0.564779 0.887780 -0.288501 0.358627 -0.404967 -0.532531 0.743244 0.046890 -0.823909 -0.564779 0.913128 -0.193866 0.358627 -0.347496 -0.571695 0.743244 0.132169 -0.814590 -0.564779 0.928320 -0.098025 0.358627 -0.285664 -0.604966 0.743244 0.216816 -0.796251 -0.564779 0.933481 -0.000190 0.358627 -0.220686 -0.631574 0.743244 0.299074 -0.769142 -0.564779 0.928360 0.097646 0.358627 -0.153277 -0.651225 0.743244 0.378039 -0.733561 -0.564779 0.913013 0.194407 0.358627 -0.084844 -0.663619 0.743244 0.452149 -0.690352 -0.564779 0.887898 0.288139 0.358627 -0.014825 -0.668856 0.743244 0.522013 -0.639162 -0.564779 0.852809 0.379610 0.358627 0.055358 -0.666726 0.743244 0.586127 -0.580931 -0.564779 0.808326 0.466900 0.358627 0.124931 -0.657252 0.743244 0.643784 -0.516301 -0.564779 0.754940 0.549047 0.358627 0.192487 -0.640732 0.743244 0.693904 -0.446679 -0.564779 0.693863 0.624453 0.358627 0.258580 -0.617029 0.743244 0.736898 -0.371492 -0.564779 0.624594 0.693736 0.358627 0.321825 -0.586529 0.743244 0.771775 -0.292214 -0.564779 0.548446 0.755377 0.358627 0.380975 -0.549951 0.743244 0.797940 -0.210515 -0.564779 0.467065 0.808231 0.358627 0.436516 -0.506993 0.743244 0.815609 -0.125726 -0.564779 0.379784 0.852731 0.358627 0.487248 -0.458451 0.743244 0.824294 -0.039552 -0.564779 0.288320 0.887839 0.358627 0.532614 -0.404859 0.743244 0.823900 0.047058 -0.564779 0.193680 0.913167 0.358627 0.571765 -0.347379 0.743244 0.814563 0.132335 -0.564779 0.097836 0.928340 0.358627 0.605024 -0.285541 0.743244 0.796207 0.216978 -0.564779 0.000000 0.933481 0.358627 0.631619 -0.220558 0.743244 0.769081 0.299231 -0.564779 -0.097836 0.928340 0.358627 0.651103 -0.153796 0.743244 0.733862 0.377455 -0.564779 -0.193680 0.913167 0.358627 0.663636 -0.084709 0.743244 0.690260 0.452290 -0.564779 -0.288320 0.887839 0.358627 0.668859 -0.014688 0.743244 0.639055 0.522143 -0.564779 -0.379784 0.852731 0.358627 0.666715 0.055494 0.743244 0.580811 0.586245 -0.564779 -0.467065 0.808231 0.358627 0.657351 0.124407 0.743244 0.516814 0.643373 -0.564779 -0.548446 0.755377 0.358627 0.640692 0.192617 0.743244 0.446537 0.693995 -0.564779 -0.624594 0.693736 0.358627 0.616976 0.258706 0.743244 0.371342 0.736974 -0.564779 -0.693863 0.624453 0.358627 0.586786 0.321358 0.743244 0.292829 0.771542 -0.564779 -0.754940 0.549047 0.358627 0.549873 0.381087 0.743244 0.210353 0.797983 -0.564779 -0.808326 0.466900 0.358627 0.506904 0.436619 0.743244 0.125560 0.815635 -0.564779 -0.852809 0.379610 0.358627 0.458352 0.487342 0.743244 0.039384 0.824302 -0.564779 -0.887898 0.288139 0.358627 0.405283 0.532291 0.743244 -0.046402 0.823937 -0.564779 -0.913013 0.194407 0.358627 0.347263 0.571836 0.743244 -0.132501 0.814536 -0.564779 -0.928360 0.097646 0.358627 -0.235242 0.296233 -0.925693 -0.072761 -0.955116 -0.287158 -0.969209 -0.000197 0.246238 -0.264994 0.269946 -0.925693 0.027743 -0.957481 -0.287158 -0.963851 -0.101776 0.246238 -0.291586 0.240978 -0.925693 0.126991 -0.949428 -0.287158 -0.948077 -0.201286 0.246238 -0.315236 0.209091 -0.925693 0.225799 -0.930889 -0.287158 -0.921760 -0.299543 0.246238 -0.335414 0.174900 -0.925693 0.322119 -0.902097 -0.287158 -0.885289 -0.394500 0.246238 -0.351759 0.139135 -0.925693 0.414028 -0.863783 -0.287158 -0.839551 -0.484273 0.246238 -0.364404 0.101502 -0.925693 0.502278 -0.815633 -0.287158 -0.784172 -0.569597 0.246238 -0.373035 0.062751 -0.925693 0.584996 -0.758498 -0.287158 -0.720156 -0.648647 0.246238 -0.377557 0.023308 -0.925693 0.661270 -0.693009 -0.287158 -0.648207 -0.720552 0.246238 -0.377937 -0.016013 -0.925693 0.729641 -0.620616 -0.287158 -0.569902 -0.783951 0.246238 -0.374177 -0.055535 -0.925693 0.790667 -0.540727 -0.287158 -0.484600 -0.839363 0.246238 -0.366296 -0.094446 -0.925693 0.842985 -0.454881 -0.287158 -0.393959 -0.885530 0.246238 -0.354512 -0.131962 -0.925693 0.885652 -0.364911 -0.287158 -0.299902 -0.921643 0.246238 -0.338729 -0.168390 -0.925693 0.919020 -0.270079 -0.287158 -0.201655 -0.947999 0.246238 -0.319215 -0.202964 -0.925693 0.942265 -0.172271 -0.287158 -0.101188 -0.963913 0.246238 -0.296377 -0.235061 -0.925693 0.955071 -0.073344 -0.287158 -0.000395 -0.969209 0.246238 -0.270108 -0.264829 -0.925693 0.957498 0.027158 -0.287158 0.101188 -0.963913 0.246238 -0.240865 -0.291680 -0.925693 0.949378 0.127361 -0.287158 0.201655 -0.947999 0.246238 -0.208968 -0.315317 -0.925693 0.930801 0.226161 -0.287158 0.299902 -0.921643 0.246238 -0.175105 -0.335307 -0.925693 0.902294 0.321568 -0.287158 0.393959 -0.885530 0.246238 -0.138998 -0.351813 -0.925693 0.863622 0.414364 -0.287158 0.484600 -0.839363 0.246238 -0.101360 -0.364443 -0.925693 0.815437 0.502596 -0.287158 0.569902 -0.783951 0.246238 -0.062979 -0.372997 -0.925693 0.758856 0.584533 -0.287158 0.648207 -0.720552 0.246238 -0.023539 -0.377543 -0.925693 0.693413 0.660847 -0.287158 0.720156 -0.648647 0.246238 0.016160 -0.377931 -0.925693 0.620332 0.729882 -0.287158 0.784172 -0.569597 0.246238 0.055681 -0.374156 -0.925693 0.540419 0.790877 -0.287158 0.839551 -0.484273 0.246238 0.094222 -0.366354 -0.925693 0.455396 0.842707 -0.287158 0.885289 -0.394500 0.246238 0.132099 -0.354461 -0.925693 0.364567 0.885794 -0.287158 0.921760 -0.299543 0.246238 0.168522 -0.338664 -0.925693 0.269721 0.919125 -0.287158 0.948077 -0.201286 0.246238 0.202769 -0.319339 -0.925693 0.172847 0.942159 -0.287158 0.963851 -0.101776 0.246238 0.235121 -0.296329 -0.925693 0.073150 0.955086 -0.287158 0.969209 -0.000197 0.246238 0.264884 -0.270054 -0.925693 -0.027353 0.957493 -0.287158 0.963892 0.101384 0.246238 0.291729 -0.240805 -0.925693 -0.127554 0.949352 -0.287158 0.947958 0.201848 0.246238 0.315151 -0.209219 -0.925693 -0.225420 0.930981 -0.287158 0.921882 0.299168 0.246238 0.335343 -0.175037 -0.925693 -0.321752 0.902228 -0.287158 0.885450 0.394140 0.246238 0.351841 -0.138926 -0.925693 -0.414540 0.863537 -0.287158 0.839264 0.484771 0.246238 0.364464 -0.101286 -0.925693 -0.502762 0.815335 -0.287158 0.783835 0.570062 0.246238 0.373009 -0.062903 -0.925693 -0.584687 0.758736 -0.287158 0.720420 0.648353 0.246238 0.377548 -0.023462 -0.925693 -0.660988 0.693278 -0.287158 0.648500 0.720288 0.246238 0.377927 0.016237 -0.925693 -0.730008 0.620184 -0.287158 0.569437 0.784288 0.246238 0.374200 0.055383 -0.925693 -0.790447 0.541049 -0.287158 0.484941 0.839166 0.246238 0.366334 0.094297 -0.925693 -0.842799 0.455225 -0.287158 0.394320 0.885369 0.246238 0.354434 0.132172 -0.925693 -0.885868 0.364386 -0.287158 0.299355 0.921821 0.246238 0.338629 0.168591 -0.925693 -0.919180 0.269534 -0.287158 0.201093 0.948118 0.246238 0.319298 0.202834 -0.925693 -0.942194 0.172655 -0.287158 0.101580 0.963872 0.246238 0.296281 0.235182 -0.925693 -0.955101 0.072955 -0.287158 0.000000 0.969209 0.246238 0.270000 0.264939 -0.925693 -0.957487 -0.027548 -0.287158 -0.101580 0.963872 0.246238 0.241038 0.291537 -0.925693 -0.949454 -0.126798 -0.287158 -0.201093 0.948118 0.246238 0.209155 0.315194 -0.925693 -0.930935 -0.225609 -0.287158 -0.299355 0.921821 0.246238 0.174968 0.335379 -0.925693 -0.902163 -0.321936 -0.287158 -0.394320 0.885369 0.246238 0.138855 0.351869 -0.925693 -0.863453 -0.414716 -0.287158 -0.484941 0.839166 0.246238 0.101576 0.364383 -0.925693 -0.815735 -0.502112 -0.287158 -0.569437 0.784288 0.246238 0.062827 0.373022 -0.925693 -0.758617 -0.584842 -0.287158 -0.648500 0.720288 0.246238 0.023385 0.377553 -0.925693 -0.693144 -0.661129 -0.287158 -0.720420 0.648353 0.246238 -0.015936 0.377940 -0.925693 -0.620765 -0.729514 -0.287158 -0.783835 0.570062 0.246238 -0.055459 0.374189 -0.925693 -0.540888 -0.790557 -0.287158 -0.839264 0.484771 0.246238 -0.094371 0.366315 -0.925693 -0.455053 -0.842892 -0.287158 -0.885450 0.394140 0.246238 -0.132244 0.354407 -0.925693 -0.364206 -0.885943 -0.287158 -0.921882 0.299168 0.246238 -0.168321 0.338764 -0.925693 -0.270266 -0.918965 -0.287158 -0.947958 0.201848 0.246238 -0.202899 0.319257 -0.925693 -0.172463 -0.942230 -0.287158 -0.963892 0.101384 0.246238 -0.020187 0.049772 0.998557 0.000802 0.998761 -0.049766 -0.999796 -0.000204 -0.020202 -0.025293 0.047382 0.998557 -0.103880 0.993344 -0.049766 -0.994268 -0.104988 -0.020202 -0.030075 0.044500 0.998557 -0.206440 0.977193 -0.049766 -0.977997 -0.207639 -0.020202 -0.034573 0.041103 0.998557 -0.307720 0.950175 -0.049766 -0.950849 -0.308996 -0.020202 -0.038691 0.037253 0.998557 -0.405610 0.912690 -0.049766 -0.913227 -0.406950 -0.020202 -0.042349 0.033035 0.998557 -0.498167 0.865652 -0.049766 -0.866046 -0.499556 -0.020202 -0.045578 0.028415 0.998557 -0.586150 0.808673 -0.049766 -0.808919 -0.587572 -0.020202 -0.048305 0.023481 0.998557 -0.667677 0.742786 -0.049766 -0.742883 -0.669117 -0.020202 -0.050500 0.018289 0.998557 -0.741849 0.668718 -0.049766 -0.668663 -0.743291 -0.020202 -0.052126 0.012948 0.998557 -0.807262 0.588091 -0.049766 -0.587887 -0.808691 -0.020202 -0.053196 0.007414 0.998557 -0.864452 0.500246 -0.049766 -0.499893 -0.865852 -0.020202 -0.053680 0.001797 0.998557 -0.912121 0.406890 -0.049766 -0.406392 -0.913475 -0.020202 -0.053576 -0.003785 0.998557 -0.949433 0.310002 -0.049766 -0.309366 -0.950728 -0.020202 -0.052885 -0.009379 0.998557 -0.976694 0.208787 -0.049766 -0.208019 -0.977916 -0.020202 -0.051610 -0.014870 0.998557 -0.993197 0.105273 -0.049766 -0.104381 -0.994332 -0.020202 -0.049784 -0.020157 0.998557 -0.998760 0.001412 -0.049766 -0.000407 -0.999796 -0.020202 -0.047397 -0.025264 0.998557 -0.993407 -0.103273 -0.049766 0.104381 -0.994332 -0.020202 -0.044488 -0.030092 0.998557 -0.977113 -0.206820 -0.049766 0.208019 -0.977916 -0.020202 -0.041089 -0.034589 0.998557 -0.950055 -0.308089 -0.049766 0.309366 -0.950728 -0.020202 -0.037277 -0.038668 0.998557 -0.912938 -0.405052 -0.049766 0.406392 -0.913475 -0.020202 -0.033019 -0.042362 0.998557 -0.865458 -0.498504 -0.049766 0.499893 -0.865852 -0.020202 -0.028397 -0.045589 0.998557 -0.808444 -0.586465 -0.049766 0.587887 -0.808691 -0.020202 -0.023511 -0.048291 0.998557 -0.743194 -0.667223 -0.049766 0.668663 -0.743291 -0.020202 -0.018320 -0.050489 0.998557 -0.669171 -0.741440 -0.049766 0.742883 -0.669117 -0.020202 -0.012928 -0.052131 0.998557 -0.587777 -0.807491 -0.049766 0.808919 -0.587572 -0.020202 -0.007393 -0.053199 0.998557 -0.499910 -0.864647 -0.049766 0.866046 -0.499556 -0.020202 -0.001830 -0.053679 0.998557 -0.407447 -0.911872 -0.049766 0.913227 -0.406950 -0.020202 0.003806 -0.053575 0.998557 -0.309632 -0.949553 -0.049766 0.950849 -0.308996 -0.020202 0.009400 -0.052881 0.998557 -0.208407 -0.976775 -0.049766 0.977997 -0.207639 -0.020202 0.014839 -0.051619 0.998557 -0.105880 -0.993133 -0.049766 0.994268 -0.104988 -0.020202 0.020167 -0.049780 0.998557 -0.001209 -0.998760 -0.049766 0.999796 -0.000204 -0.020202 0.025273 -0.047392 0.998557 0.103475 -0.993386 -0.049766 0.994311 0.104583 -0.020202 0.030101 -0.044482 0.998557 0.207019 -0.977070 -0.049766 0.977874 0.208218 -0.020202 0.034556 -0.041117 0.998557 0.307333 -0.950300 -0.049766 0.950974 0.308609 -0.020202 0.038675 -0.037269 0.998557 0.405238 -0.912856 -0.049766 0.913393 0.406578 -0.020202 0.042368 -0.033010 0.998557 0.498680 -0.865356 -0.049766 0.865750 0.500069 -0.020202 0.045595 -0.028388 0.998557 0.586629 -0.808325 -0.049766 0.808571 0.588052 -0.020202 0.048295 -0.023501 0.998557 0.667374 -0.743058 -0.049766 0.743155 0.668814 -0.020202 0.050492 -0.018310 0.998557 0.741576 -0.669020 -0.049766 0.668966 0.743019 -0.020202 0.052133 -0.012917 0.998557 0.807610 -0.587613 -0.049766 0.587408 0.809039 -0.020202 0.053193 -0.007435 0.998557 0.864248 -0.500598 -0.049766 0.500245 0.865648 -0.020202 0.053679 -0.001819 0.998557 0.911955 -0.407261 -0.049766 0.406764 0.913310 -0.020202 0.053574 0.003817 0.998557 0.949616 -0.309439 -0.049766 0.308802 0.950912 -0.020202 0.052879 0.009411 0.998557 0.976818 -0.208208 -0.049766 0.207439 0.978039 -0.020202 0.051616 0.014849 0.998557 0.993154 -0.105677 -0.049766 0.104786 0.994290 -0.020202 0.049776 0.020177 0.998557 0.998760 -0.001006 -0.049766 0.000000 0.999796 -0.020202 0.047387 0.025283 0.998557 0.993365 0.103677 -0.049766 -0.104786 0.994290 -0.020202 0.044506 0.030066 0.998557 0.977235 0.206241 -0.049766 -0.207439 0.978039 -0.020202 0.041110 0.034565 0.998557 0.950237 0.307526 -0.049766 -0.308802 0.950912 -0.020202 0.037261 0.038683 0.998557 0.912773 0.405424 -0.049766 -0.406764 0.913310 -0.020202 0.033001 0.042375 0.998557 0.865255 0.498857 -0.049766 -0.500245 0.865648 -0.020202 0.028424 0.045572 0.998557 0.808792 0.585986 -0.049766 -0.587408 0.809039 -0.020202 0.023491 0.048300 0.998557 0.742922 0.667525 -0.049766 -0.668966 0.743019 -0.020202 0.018300 0.050496 0.998557 0.668869 0.741713 -0.049766 -0.743155 0.668814 -0.020202 0.012959 0.052123 0.998557 0.588256 0.807142 -0.049766 -0.808571 0.588052 -0.020202 0.007424 0.053194 0.998557 0.500422 0.864350 -0.049766 -0.865750 0.500069 -0.020202 0.001808 0.053679 0.998557 0.407076 0.912038 -0.049766 -0.913393 0.406578 -0.020202 -0.003828 0.053573 0.998557 0.309246 0.949679 -0.049766 -0.950974 0.308609 -0.020202 -0.009368 0.052886 0.998557 0.208986 0.976651 -0.049766 -0.977874 0.208218 -0.020202 -0.014860 0.051613 0.998557 0.105475 0.993176 -0.049766 -0.994311 0.104583 -0.020202 -0.512006 0.610479 -0.604290 -0.394491 -0.792033 -0.465898 -0.763038 -0.000155 0.646354 -0.573169 0.553455 -0.604290 -0.309308 -0.829016 -0.465898 -0.758819 -0.080126 0.646354 -0.627527 0.490962 -0.604290 -0.221574 -0.856647 -0.465898 -0.746401 -0.158468 0.646354 -0.675528 0.422489 -0.604290 -0.130571 -0.875152 -0.465898 -0.725682 -0.235824 0.646354 -0.716087 0.349362 -0.604290 -0.038130 -0.884017 -0.465898 -0.696969 -0.310582 0.646354 -0.748486 0.273135 -0.604290 0.053848 -0.883199 -0.465898 -0.660961 -0.381258 0.646354 -0.772990 0.193184 -0.604290 0.146117 -0.872691 -0.465898 -0.617362 -0.448431 0.646354 -0.788980 0.111105 -0.604290 0.236776 -0.852570 -0.465898 -0.566963 -0.510666 0.646354 -0.796280 0.027803 -0.604290 0.324828 -0.823059 -0.465898 -0.510319 -0.567275 0.646354 -0.794863 -0.055011 -0.604290 0.408517 -0.784891 -0.465898 -0.448672 -0.617188 0.646354 -0.784720 -0.138016 -0.604290 0.488529 -0.737752 -0.465898 -0.381515 -0.660812 0.646354 -0.765933 -0.219500 -0.604290 0.563160 -0.682488 -0.465898 -0.310156 -0.697159 0.646354 -0.739008 -0.297827 -0.604290 0.630968 -0.620337 -0.465898 -0.236106 -0.725590 0.646354 -0.703724 -0.373641 -0.604290 0.692509 -0.550791 -0.465898 -0.158759 -0.746339 0.646354 -0.660688 -0.445338 -0.604290 0.746422 -0.475177 -0.465898 -0.079663 -0.758868 0.646354 -0.610791 -0.511633 -0.604290 0.791792 -0.394975 -0.465898 -0.000311 -0.763038 0.646354 -0.553805 -0.572830 -0.604290 0.828827 -0.309814 -0.465898 0.079663 -0.758868 0.646354 -0.490718 -0.627718 -0.604290 0.856733 -0.221241 -0.465898 0.158759 -0.746339 0.646354 -0.422226 -0.675692 -0.604290 0.875202 -0.130231 -0.465898 0.236106 -0.725590 0.646354 -0.349799 -0.715873 -0.604290 0.883993 -0.038670 -0.465898 0.310156 -0.697159 0.646354 -0.272844 -0.748592 -0.604290 0.883178 0.054192 -0.465898 0.381515 -0.660812 0.646354 -0.192884 -0.773065 -0.604290 0.872634 0.146456 -0.465898 0.448672 -0.617188 0.646354 -0.111587 -0.788912 -0.604290 0.852715 0.236256 -0.465898 0.510319 -0.567275 0.646354 -0.028289 -0.796262 -0.604290 0.823257 0.324325 -0.465898 0.566963 -0.510666 0.646354 0.055321 -0.794842 -0.604290 0.784732 0.408822 -0.465898 0.617362 -0.448431 0.646354 0.138321 -0.784666 -0.604290 0.737562 0.488816 -0.465898 0.660961 -0.381258 0.646354 0.219032 -0.766067 -0.604290 0.682832 0.562743 -0.465898 0.696969 -0.310582 0.646354 0.298115 -0.738892 -0.604290 0.620092 0.631210 -0.465898 0.725682 -0.235824 0.646354 0.373914 -0.703578 -0.604290 0.550521 0.692723 -0.465898 0.746401 -0.158468 0.646354 0.444934 -0.660960 -0.604290 0.475633 0.746131 -0.465898 0.758819 -0.080126 0.646354 0.511757 -0.610687 -0.604290 0.394814 0.791872 -0.465898 0.763038 -0.000155 0.646354 0.572943 -0.553688 -0.604290 0.309646 0.828890 -0.465898 0.758852 0.079817 0.646354 0.627818 -0.490590 -0.604290 0.221067 0.856778 -0.465898 0.746307 0.158911 0.646354 0.675355 -0.422764 -0.604290 0.130928 0.875098 -0.465898 0.725778 0.235528 0.646354 0.715945 -0.349653 -0.604290 0.038490 0.884001 -0.465898 0.697095 0.310298 0.646354 0.748648 -0.272692 -0.604290 -0.054371 0.883166 -0.465898 0.660735 0.381649 0.646354 0.773105 -0.192726 -0.604290 -0.146634 0.872604 -0.465898 0.617096 0.448797 0.646354 0.788935 -0.111427 -0.604290 -0.236429 0.852667 -0.465898 0.567171 0.510435 0.646354 0.796268 -0.028127 -0.604290 -0.324493 0.823191 -0.465898 0.510550 0.567067 0.646354 0.794831 0.055482 -0.604290 -0.408982 0.784648 -0.465898 0.448306 0.617453 0.646354 0.784776 0.137696 -0.604290 -0.488229 0.737951 -0.465898 0.381784 0.660657 0.646354 0.766023 0.219188 -0.604290 -0.562882 0.682717 -0.465898 0.310440 0.697032 0.646354 0.738831 0.298265 -0.604290 -0.631336 0.619963 -0.465898 0.235676 0.725730 0.646354 0.703502 0.374058 -0.604290 -0.692835 0.550380 -0.465898 0.158316 0.746433 0.646354 0.660869 0.445069 -0.604290 -0.746228 0.475481 -0.465898 0.079972 0.758835 0.646354 0.610583 0.511882 -0.604290 -0.791952 0.394653 -0.465898 0.000000 0.763038 0.646354 0.553571 0.573056 -0.604290 -0.828953 0.309477 -0.465898 -0.079972 0.758835 0.646354 0.491090 0.627427 -0.604290 -0.856602 0.221749 -0.465898 -0.158316 0.746433 0.646354 0.422626 0.675441 -0.604290 -0.875125 0.130750 -0.465898 -0.235676 0.725730 0.646354 0.349508 0.716016 -0.604290 -0.884009 0.038310 -0.465898 -0.310440 0.697032 0.646354 0.272539 0.748703 -0.604290 -0.883155 -0.054551 -0.465898 -0.381784 0.660657 0.646354 0.193342 0.772951 -0.604290 -0.872720 -0.145939 -0.465898 -0.448306 0.617453 0.646354 0.111266 0.788958 -0.604290 -0.852619 -0.236603 -0.465898 -0.510550 0.567067 0.646354 0.027965 0.796274 -0.604290 -0.823125 -0.324660 -0.465898 -0.567171 0.510435 0.646354 -0.054849 0.794875 -0.604290 -0.784974 -0.408357 -0.465898 -0.617096 0.448797 0.646354 -0.137856 0.784748 -0.604290 -0.737852 -0.488379 -0.465898 -0.660735 0.381649 0.646354 -0.219344 0.765978 -0.604290 -0.682603 -0.563021 -0.465898 -0.697095 0.310298 0.646354 -0.298416 0.738771 -0.604290 -0.619835 -0.631462 -0.465898 -0.725778 0.235528 0.646354 -0.373497 0.703800 -0.604290 -0.550932 -0.692397 -0.465898 -0.746307 0.158911 0.646354 -0.445203 0.660778 -0.604290 -0.475329 -0.746325 -0.465898 -0.758852 0.079817 0.646354 -0.037215 0.973886 -0.223965 -0.158762 -0.227036 -0.960859 -0.986615 -0.000201 0.163065 -0.139080 0.964622 -0.223965 -0.134092 -0.242425 -0.960859 -0.981161 -0.103604 0.163065 -0.238468 0.944972 -0.223965 -0.108201 -0.255036 -0.960859 -0.965104 -0.204901 0.163065 -0.336195 0.914775 -0.223965 -0.080876 -0.264971 -0.960859 -0.938313 -0.304923 0.163065 -0.430218 0.874501 -0.223965 -0.052659 -0.271988 -0.960859 -0.901188 -0.401585 0.163065 -0.518678 0.825114 -0.223965 -0.024139 -0.275985 -0.960859 -0.854629 -0.492970 0.163065 -0.602299 0.766208 -0.223965 0.004919 -0.276995 -0.960859 -0.798255 -0.579826 0.163065 -0.679286 0.698863 -0.223965 0.033923 -0.274954 -0.960859 -0.733089 -0.660296 0.163065 -0.748791 0.623820 -0.223965 0.062554 -0.269885 -0.960859 -0.659848 -0.733492 0.163065 -0.809506 0.542716 -0.223965 0.090233 -0.261933 -0.960859 -0.580137 -0.798030 0.163065 -0.861928 0.454885 -0.223965 0.117189 -0.251033 -0.960859 -0.493302 -0.854437 0.163065 -0.904856 0.362043 -0.223965 0.142853 -0.237368 -0.960859 -0.401034 -0.901433 0.163065 -0.937551 0.266152 -0.223965 0.166723 -0.221256 -0.960859 -0.305288 -0.938195 0.163065 -0.960283 0.166424 -0.223965 0.188994 -0.202563 -0.960859 -0.205277 -0.965024 0.163065 -0.972436 0.064863 -0.223965 0.209183 -0.181640 -0.960859 -0.103005 -0.981224 0.163065 -0.973909 -0.036620 -0.223965 0.226939 -0.158900 -0.960859 -0.000402 -0.986615 0.163065 -0.964707 -0.138491 -0.223965 0.242343 -0.134240 -0.960859 0.103005 -0.981224 0.163065 -0.944879 -0.238836 -0.223965 0.255078 -0.108102 -0.960859 0.205277 -0.965024 0.163065 -0.914644 -0.336551 -0.223965 0.265003 -0.080772 -0.960859 0.305288 -0.938195 0.163065 -0.874764 -0.429684 -0.223965 0.271956 -0.052825 -0.960859 0.401034 -0.901433 0.163065 -0.824912 -0.518999 -0.223965 0.275995 -0.024032 -0.960859 0.493302 -0.854437 0.163065 -0.765974 -0.602597 -0.223965 0.276993 0.005027 -0.960859 0.580137 -0.798030 0.163065 -0.699278 -0.678859 -0.223965 0.274975 0.033755 -0.960859 0.659848 -0.733492 0.163065 -0.624277 -0.748410 -0.223965 0.269923 0.062389 -0.960859 0.733089 -0.660296 0.163065 -0.542401 -0.809717 -0.223965 0.261897 0.090335 -0.960859 0.798255 -0.579826 0.163065 -0.454549 -0.862105 -0.223965 0.250987 0.117286 -0.960859 0.854629 -0.492970 0.163065 -0.362596 -0.904635 -0.223965 0.237455 0.142708 -0.960859 0.901188 -0.401585 0.163065 -0.265787 -0.937655 -0.223965 0.221191 0.166809 -0.960859 0.938313 -0.304923 0.163065 -0.166050 -0.960347 -0.223965 0.202490 0.189073 -0.960859 0.965104 -0.204901 0.163065 -0.065457 -0.972396 -0.223965 0.181768 0.209072 -0.960859 0.981161 -0.103604 0.163065 0.036818 -0.973901 -0.223965 0.158854 0.226971 -0.960859 0.986615 -0.000201 0.163065 0.138687 -0.964679 -0.223965 0.134191 0.242370 -0.960859 0.981203 0.103205 0.163065 0.239029 -0.944831 -0.223965 0.108050 0.255100 -0.960859 0.964982 0.205473 0.163065 0.335822 -0.914911 -0.223965 0.080983 0.264938 -0.960859 0.938438 0.304540 0.163065 0.429862 -0.874676 -0.223965 0.052770 0.271967 -0.960859 0.901351 0.401218 0.163065 0.519167 -0.824806 -0.223965 0.023975 0.276000 -0.960859 0.854337 0.493476 0.163065 0.602753 -0.765851 -0.223965 -0.005083 0.276992 -0.960859 0.797911 0.580299 0.163065 0.679002 -0.699140 -0.223965 -0.033811 0.274968 -0.960859 0.733358 0.659997 0.163065 0.748537 -0.624125 -0.223965 -0.062444 0.269910 -0.960859 0.660146 0.733223 0.163065 0.809827 -0.542236 -0.223965 -0.090388 0.261879 -0.960859 0.579664 0.798373 0.163065 0.861742 -0.455236 -0.223965 -0.117086 0.251081 -0.960859 0.493650 0.854236 0.163065 0.904708 -0.362412 -0.223965 -0.142757 0.237426 -0.960859 0.401402 0.901269 0.163065 0.937709 -0.265596 -0.223965 -0.166854 0.221157 -0.960859 0.304731 0.938375 0.163065 0.960381 -0.165854 -0.223965 -0.189114 0.202451 -0.960859 0.204705 0.965145 0.163065 0.972410 -0.065259 -0.223965 -0.209109 0.181725 -0.960859 0.103404 0.981182 0.163065 0.973894 0.037016 -0.223965 -0.227004 0.158808 -0.960859 0.000000 0.986615 0.163065 0.964651 0.138884 -0.223965 -0.242398 0.134142 -0.960859 -0.103404 0.981182 0.163065 0.945021 0.238276 -0.223965 -0.255014 0.108253 -0.960859 -0.204705 0.965145 0.163065 0.914843 0.336009 -0.223965 -0.264955 0.080930 -0.960859 -0.304731 0.938375 0.163065 0.874588 0.430040 -0.223965 -0.271978 0.052715 -0.960859 -0.401402 0.901269 0.163065 0.824700 0.519335 -0.223965 -0.276005 0.023919 -0.960859 -0.493650 0.854236 0.163065 0.766331 0.602143 -0.223965 -0.276996 -0.004863 -0.960859 -0.579664 0.798373 0.163065 0.699001 0.679144 -0.223965 -0.274961 -0.033867 -0.960859 -0.660146 0.733223 0.163065 0.623973 0.748664 -0.223965 -0.269897 -0.062499 -0.960859 -0.733358 0.659997 0.163065 0.542880 0.809395 -0.223965 -0.261951 -0.090180 -0.960859 -0.797911 0.580299 0.163065 0.455060 0.861835 -0.223965 -0.251057 -0.117137 -0.960859 -0.854337 0.493476 0.163065 0.362227 0.904782 -0.223965 -0.237397 -0.142805 -0.960859 -0.901351 0.401218 0.163065 0.265405 0.937763 -0.223965 -0.221123 -0.166899 -0.960859 -0.938438 0.304540 0.163065 0.166619 0.960249 -0.223965 -0.202602 -0.188953 -0.960859 -0.964982 0.205473 0.163065 0.065061 0.972423 -0.223965 -0.181682 -0.209146 -0.960859 -0.981203 0.103205 0.163065 -0.054086 -0.996435 -0.064743 0.640250 -0.084361 0.763520 -0.766260 -0.000156 0.642531 0.050646 -0.996616 -0.064743 0.645566 -0.016794 0.763520 -0.762024 -0.080465 0.642531 0.153833 -0.985973 -0.064743 0.643821 0.050315 0.763520 -0.749553 -0.159138 0.642531 0.256323 -0.964420 -0.064743 0.635002 0.117515 0.763520 -0.728746 -0.236820 0.642531 0.355990 -0.932244 -0.064743 0.619188 0.183420 0.763520 -0.699912 -0.311893 0.642531 0.450845 -0.890251 -0.064743 0.596802 0.246709 0.763520 -0.663752 -0.382868 0.642531 0.541667 -0.838096 -0.064743 0.567658 0.307899 0.763520 -0.619969 -0.450325 0.642531 0.626522 -0.776710 -0.064743 0.532262 0.365698 0.763520 -0.569357 -0.512822 0.642531 0.704476 -0.706768 -0.064743 0.491002 0.419469 0.763520 -0.512474 -0.569671 0.642531 0.774041 -0.629816 -0.064743 0.444803 0.468174 0.763520 -0.450566 -0.619794 0.642531 0.835788 -0.545222 -0.064743 0.393285 0.512215 0.763520 -0.383126 -0.663603 0.642531 0.888328 -0.454623 -0.064743 0.337436 0.550613 0.763520 -0.311466 -0.700103 0.642531 0.930724 -0.359947 -0.064743 0.278452 0.582668 0.763520 -0.237103 -0.728654 0.642531 0.963323 -0.260418 -0.064743 0.215851 0.608643 0.763520 -0.159429 -0.749491 0.642531 0.985311 -0.158021 -0.064743 0.150872 0.627913 0.763520 -0.079999 -0.762073 0.642531 0.996402 -0.054694 -0.064743 0.084753 0.640199 0.763520 -0.000312 -0.766260 0.642531 0.996647 0.050037 -0.064743 0.017188 0.645555 0.763520 0.079999 -0.762073 0.642531 0.985914 0.154217 -0.064743 -0.050565 0.643802 0.763520 0.159429 -0.749491 0.642531 0.964321 0.256698 -0.064743 -0.117762 0.634956 0.763520 0.237103 -0.728654 0.642531 0.932462 0.355420 -0.064743 -0.183042 0.619300 0.763520 0.311466 -0.700103 0.642531 0.890076 0.451191 -0.064743 -0.246941 0.596706 0.763520 0.383126 -0.663603 0.642531 0.837886 0.541993 -0.064743 -0.308120 0.567538 0.763520 0.450566 -0.619794 0.642531 0.777093 0.626047 -0.064743 -0.365373 0.532485 0.763520 0.512474 -0.569671 0.642531 0.707199 0.704044 -0.064743 -0.419169 0.491259 0.763520 0.569357 -0.512822 0.642531 0.629515 0.774286 -0.064743 -0.468347 0.444621 0.763520 0.619969 -0.450325 0.642531 0.544897 0.836000 -0.064743 -0.512367 0.393086 0.763520 0.663752 -0.382868 0.642531 0.455166 0.888050 -0.064743 -0.550406 0.337772 0.763520 0.699912 -0.311893 0.642531 0.359585 0.930864 -0.064743 -0.582776 0.278225 0.763520 0.728746 -0.236820 0.642531 0.260043 0.963424 -0.064743 -0.608726 0.215614 0.763520 0.749553 -0.159138 0.642531 0.158623 0.985214 -0.064743 -0.627821 0.151255 0.763520 0.762024 -0.080465 0.642531 0.054492 0.996413 -0.064743 -0.640216 0.084622 0.763520 0.766260 -0.000156 0.642531 -0.050240 0.996637 -0.064743 -0.645559 0.017057 0.763520 0.762056 0.080154 0.642531 -0.154418 0.985882 -0.064743 -0.643791 -0.050696 0.763520 0.749458 0.159582 0.642531 -0.255930 0.964525 -0.064743 -0.635050 -0.117256 0.763520 0.728842 0.236523 0.642531 -0.355610 0.932389 -0.064743 -0.619263 -0.183168 0.763520 0.700039 0.311608 0.642531 -0.451373 0.889984 -0.064743 -0.596655 -0.247062 0.763520 0.663525 0.383261 0.642531 -0.542163 0.837775 -0.064743 -0.567475 -0.308235 0.763520 0.619702 0.450692 0.642531 -0.626206 0.776965 -0.064743 -0.532410 -0.365481 0.763520 0.569566 0.512590 0.642531 -0.704188 0.707055 -0.064743 -0.491173 -0.419269 0.763520 0.512706 0.569462 0.642531 -0.774415 0.629357 -0.064743 -0.444526 -0.468438 0.763520 0.450199 0.620061 0.642531 -0.835566 0.545563 -0.064743 -0.393494 -0.512054 0.763520 0.383396 0.663447 0.642531 -0.888143 0.454985 -0.064743 -0.337660 -0.550475 0.763520 0.311751 0.699976 0.642531 -0.930937 0.359395 -0.064743 -0.278107 -0.582833 0.763520 0.236671 0.728794 0.642531 -0.963477 0.259847 -0.064743 -0.215490 -0.608770 0.763520 0.158985 0.749585 0.642531 -0.985247 0.158422 -0.064743 -0.151128 -0.627852 0.763520 0.080310 0.762040 0.642531 -0.996424 0.054289 -0.064743 -0.084492 -0.640233 0.763520 0.000000 0.766260 0.642531 -0.996626 -0.050443 -0.064743 -0.016926 -0.645562 0.763520 -0.080310 0.762040 0.642531 -0.986005 -0.153633 -0.064743 0.050183 -0.643831 0.763520 -0.158985 0.749585 0.642531 -0.964473 -0.256127 -0.064743 0.117385 -0.635026 0.763520 -0.236671 0.728794 0.642531 -0.932317 -0.355800 -0.064743 0.183294 -0.619226 0.763520 -0.311751 0.699976 0.642531 -0.889892 -0.451554 -0.064743 0.247184 -0.596605 0.763520 -0.383396 0.663447 0.642531 -0.838207 -0.541496 -0.064743 0.307783 -0.567721 0.763520 -0.450199 0.620061 0.642531 -0.776838 -0.626364 -0.064743 0.365589 -0.532336 0.763520 -0.512706 0.569462 0.642531 -0.706912 -0.704332 -0.064743 0.419369 -0.491088 0.763520 -0.569566 0.512590 0.642531 -0.629974 -0.773913 -0.064743 0.468084 -0.444899 0.763520 -0.619702 0.450692 0.642531 -0.545392 -0.835677 -0.064743 0.512134 -0.393390 0.763520 -0.663525 0.383261 0.642531 -0.454804 -0.888235 -0.064743 0.550544 -0.337548 0.763520 -0.700039 0.311608 0.642531 -0.359206 -0.931010 -0.064743 0.582889 -0.277988 0.763520 -0.728842 0.236523 0.642531 -0.260614 -0.963270 -0.064743 0.608599 -0.215975 0.763520 -0.749458 0.159582 0.642531 -0.158221 -0.985279 -0.064743 0.627882 -0.151000 0.763520 -0.762056 0.080154 0.642531 0.332648 0.739210 0.585588 -0.365346 0.673475 -0.642615 -0.869407 -0.000177 0.494097 0.253342 0.770003 0.585588 -0.433918 0.631475 -0.642615 -0.864600 -0.091296 0.494097 0.172037 0.792143 0.585588 -0.497129 0.583017 -0.642615 -0.850451 -0.180559 0.494097 0.088067 0.805811 0.585588 -0.555495 0.527703 -0.642615 -0.826843 -0.268698 0.494097 0.003127 0.810603 0.585588 -0.607743 0.466577 -0.642615 -0.794128 -0.353877 0.494097 -0.081040 0.806548 0.585588 -0.652896 0.400964 -0.642615 -0.753100 -0.434406 0.494097 -0.165126 0.793612 0.585588 -0.691324 0.330328 -0.642615 -0.703423 -0.510943 0.494097 -0.247393 0.771935 0.585588 -0.722137 0.256053 -0.642615 -0.645999 -0.581853 0.494097 -0.326935 0.741755 0.585588 -0.744996 0.178958 -0.642615 -0.581459 -0.646354 0.494097 -0.402172 0.703807 0.585588 -0.759549 0.100651 -0.642615 -0.511217 -0.703225 0.494097 -0.473721 0.657781 0.585588 -0.765915 0.020490 -0.642615 -0.434699 -0.752931 0.494097 -0.540052 0.604509 0.585588 -0.763844 -0.059896 -0.642615 -0.353392 -0.794344 0.494097 -0.599889 0.545178 0.585588 -0.753499 -0.138869 -0.642615 -0.269020 -0.826738 0.494097 -0.653724 0.479303 0.585588 -0.734795 -0.217076 -0.642615 -0.180890 -0.850380 0.494097 -0.700358 0.408148 0.585588 -0.707997 -0.292893 -0.642615 -0.090768 -0.864655 0.494097 -0.739007 0.333100 0.585588 -0.673698 -0.364934 -0.642615 -0.000354 -0.869407 0.494097 -0.769848 0.253812 0.585588 -0.631740 -0.433533 -0.642615 0.090768 -0.864655 0.494097 -0.792210 0.171729 0.585588 -0.582823 -0.497356 -0.642615 0.180890 -0.850380 0.494097 -0.805845 0.087754 0.585588 -0.527487 -0.555701 -0.642615 0.269020 -0.826738 0.494097 -0.810601 0.003623 0.585588 -0.466948 -0.607458 -0.642615 0.353392 -0.794344 0.494097 -0.806516 -0.081354 0.585588 -0.400710 -0.653052 -0.642615 0.434699 -0.752931 0.494097 -0.793548 -0.165435 0.585588 -0.330059 -0.691453 -0.642615 0.511217 -0.703225 0.494097 -0.772086 -0.246921 0.585588 -0.256494 -0.721981 -0.642615 0.581459 -0.646354 0.494097 -0.741955 -0.326481 0.585588 -0.179413 -0.744887 -0.642615 0.645999 -0.581853 0.494097 -0.703651 -0.402445 0.585588 -0.100355 -0.759588 -0.642615 0.703423 -0.510943 0.494097 -0.657596 -0.473977 0.585588 -0.020192 -0.765923 -0.642615 0.753100 -0.434406 0.494097 -0.604838 -0.539682 0.585588 0.059429 -0.763881 -0.642615 0.794128 -0.353877 0.494097 -0.544945 -0.600102 0.585588 0.139162 -0.753445 -0.642615 0.826843 -0.268698 0.494097 -0.479049 -0.653911 0.585588 0.217362 -0.734710 -0.642615 0.850451 -0.180559 0.494097 -0.408576 -0.700109 0.585588 0.292460 -0.708176 -0.642615 0.864600 -0.091296 0.494097 -0.332949 -0.739075 0.585588 0.365071 -0.673624 -0.642615 0.869407 -0.000177 0.494097 -0.253655 -0.769900 0.585588 0.433661 -0.631651 -0.642615 0.864637 0.090944 0.494097 -0.171567 -0.792244 0.585588 0.497474 -0.582722 -0.642615 0.850343 0.181063 0.494097 -0.088395 -0.805775 0.585588 0.555280 -0.527929 -0.642615 0.826952 0.268361 0.494097 -0.003458 -0.810601 0.585588 0.607553 -0.466824 -0.642615 0.794272 0.353554 0.494097 0.081518 -0.806499 0.585588 0.653133 -0.400577 -0.642615 0.752842 0.434852 0.494097 0.165596 -0.793514 0.585588 0.691520 -0.329918 -0.642615 0.703120 0.511360 0.494097 0.247078 -0.772036 0.585588 0.722033 -0.256347 -0.642615 0.646236 0.581590 0.494097 0.326632 -0.741888 0.585588 0.744923 -0.179261 -0.642615 0.581722 0.646117 0.494097 0.402589 -0.703569 0.585588 0.759609 -0.100201 -0.642615 0.510800 0.703527 0.494097 0.473453 -0.657973 0.585588 0.765907 -0.020802 -0.642615 0.435005 0.752754 0.494097 0.539806 -0.604729 0.585588 0.763869 0.059585 -0.642615 0.353716 0.794200 0.494097 0.600213 -0.544823 0.585588 0.753417 0.139316 -0.642615 0.268530 0.826898 0.494097 0.654008 -0.478915 0.585588 0.734666 0.217512 -0.642615 0.180386 0.850487 0.494097 0.700192 -0.408433 0.585588 0.708116 0.292604 -0.642615 0.091120 0.864618 0.494097 0.739142 -0.332799 0.585588 0.673549 0.365208 -0.642615 0.000000 0.869407 0.494097 0.769951 -0.253499 0.585588 0.631563 0.433790 -0.642615 -0.091120 0.864618 0.494097 0.792108 -0.172198 0.585588 0.583118 0.497010 -0.642615 -0.180386 0.850487 0.494097 0.805793 -0.088231 0.585588 0.527816 0.555388 -0.642615 -0.268530 0.826898 0.494097 0.810602 -0.003292 0.585588 0.466701 0.607648 -0.642615 -0.353716 0.794200 0.494097 0.806483 0.081683 0.585588 0.400444 0.653215 -0.642615 -0.435005 0.752754 0.494097 0.793646 0.164964 0.585588 0.330469 0.691257 -0.642615 -0.510800 0.703527 0.494097 0.771985 0.247236 0.585588 0.256200 0.722085 -0.642615 -0.581722 0.646117 0.494097 0.741822 0.326784 0.585588 0.179109 0.744960 -0.642615 -0.646236 0.581590 0.494097 0.703889 0.402028 0.585588 0.100805 0.759529 -0.642615 -0.703120 0.511360 0.494097 0.657877 0.473587 0.585588 0.020646 0.765911 -0.642615 -0.752842 0.434852 0.494097 0.604619 0.539929 0.585588 -0.059740 0.763856 -0.642615 -0.794272 0.353554 0.494097 0.544700 0.600323 0.585588 -0.139469 0.753388 -0.642615 -0.826952 0.268361 0.494097 0.479436 0.653627 0.585588 -0.216927 0.734839 -0.642615 -0.850343 0.181063 0.494097 0.408291 0.700275 0.585588 -0.292748 0.708056 -0.642615 -0.864637 0.090944 0.494097 0.700280 0.561311 0.441065 -0.475024 0.827605 -0.299035 -0.532880 -0.000109 0.846191 0.637594 0.631614 0.441065 -0.559147 0.773261 -0.299035 -0.529933 -0.055958 0.846191 0.568579 0.694391 0.441065 -0.636400 0.711037 -0.299035 -0.521261 -0.110669 0.846191 0.492670 0.750158 0.441065 -0.707417 0.640422 -0.299035 -0.506791 -0.164691 0.846191 0.411335 0.797662 0.441065 -0.770641 0.562752 -0.299035 -0.486739 -0.216900 0.846191 0.326305 0.836054 0.441065 -0.824898 0.479709 -0.299035 -0.461592 -0.266257 0.846191 0.236884 0.865649 0.441065 -0.870632 0.390612 -0.299035 -0.431145 -0.313169 0.846191 0.144853 0.885708 0.441065 -0.906776 0.297212 -0.299035 -0.395948 -0.356632 0.846191 0.051227 0.896012 0.441065 -0.932932 0.200539 -0.299035 -0.356390 -0.396166 0.846191 -0.042068 0.896488 0.441065 -0.948710 0.102605 -0.299035 -0.313337 -0.431023 0.846191 -0.135794 0.887142 0.441065 -0.954239 0.002608 -0.299035 -0.266437 -0.461489 0.846191 -0.228025 0.868024 0.441065 -0.949257 -0.097417 -0.299035 -0.216602 -0.486872 0.846191 -0.316905 0.839662 0.441065 -0.934014 -0.195435 -0.299035 -0.164889 -0.506727 0.846191 -0.403162 0.801824 0.441065 -0.908387 -0.292251 -0.299035 -0.110872 -0.521218 0.846191 -0.484979 0.755154 0.441065 -0.872755 -0.385847 -0.299035 -0.055634 -0.529968 0.846191 -0.560883 0.700622 0.441065 -0.827895 -0.474518 -0.299035 -0.000217 -0.532880 0.846191 -0.631224 0.637979 0.441065 -0.773603 -0.558674 -0.299035 0.055634 -0.529968 0.846191 -0.694612 0.568309 0.441065 -0.710789 -0.636676 -0.299035 0.110872 -0.521218 0.846191 -0.750350 0.492379 0.441065 -0.640146 -0.707666 -0.299035 0.164889 -0.506727 0.846191 -0.797410 0.411823 0.441065 -0.563223 -0.770297 -0.299035 0.216602 -0.486872 0.846191 -0.836181 0.325980 0.441065 -0.479388 -0.825085 -0.299035 0.266437 -0.461489 0.846191 -0.865741 0.236547 0.441065 -0.390273 -0.870784 -0.299035 0.313337 -0.431023 0.846191 -0.885619 0.145394 0.441065 -0.297766 -0.906594 -0.299035 0.356390 -0.396166 0.846191 -0.895980 0.051774 0.441065 -0.201109 -0.932809 -0.299035 0.395948 -0.356632 0.846191 -0.896472 -0.042416 0.441065 -0.102236 -0.948750 -0.299035 0.431145 -0.313169 0.846191 -0.887089 -0.136139 0.441065 -0.002237 -0.954240 -0.299035 0.461592 -0.266257 0.846191 -0.868163 -0.227495 0.441065 0.096837 -0.949316 -0.299035 0.486739 -0.216900 0.846191 -0.839539 -0.317232 0.441065 0.195799 -0.933938 -0.299035 0.506791 -0.164691 0.846191 -0.801667 -0.403474 0.441065 0.292604 -0.908274 -0.299035 0.521261 -0.110669 0.846191 -0.755450 -0.484517 0.441065 0.385313 -0.872990 -0.299035 0.529933 -0.055958 0.846191 -0.700508 -0.561025 0.441065 0.474687 -0.827799 -0.299035 0.532880 -0.000109 0.846191 -0.637851 -0.631354 0.441065 0.558832 -0.773489 -0.299035 0.529956 0.055742 0.846191 -0.568167 -0.694728 0.441065 0.636821 -0.710659 -0.299035 0.521195 0.110978 0.846191 -0.492976 -0.749957 0.441065 0.707156 -0.640710 -0.299035 0.506858 0.164485 0.846191 -0.411660 -0.797494 0.441065 0.770412 -0.563066 -0.299035 0.486828 0.216701 0.846191 -0.325810 -0.836247 0.441065 0.825182 -0.479220 -0.299035 0.461435 0.266531 0.846191 -0.236371 -0.865789 0.441065 0.870864 -0.390096 -0.299035 0.430959 0.313425 0.846191 -0.145214 -0.885649 0.441065 0.906655 -0.297581 -0.299035 0.396093 0.356470 0.846191 -0.051592 -0.895991 0.441065 0.932850 -0.200919 -0.299035 0.356551 0.396020 0.846191 0.042599 -0.896463 0.441065 0.948770 -0.102043 -0.299035 0.313081 0.431208 0.846191 0.135433 -0.887197 0.441065 0.954237 -0.002997 -0.299035 0.266625 0.461380 0.846191 0.227672 -0.868117 0.441065 0.949296 0.097030 -0.299035 0.216801 0.486784 0.846191 0.317403 -0.839474 0.441065 0.933898 0.195989 -0.299035 0.164588 0.506825 0.846191 0.403637 -0.801585 0.441065 0.908214 0.292789 -0.299035 0.110563 0.521284 0.846191 0.484671 -0.755351 0.441065 0.872912 0.385491 -0.299035 0.055850 0.529945 0.846191 0.561168 -0.700394 0.441065 0.827702 0.474855 -0.299035 0.000000 0.532880 0.846191 0.631484 -0.637722 0.441065 0.773375 0.558989 -0.299035 -0.055850 0.529945 0.846191 0.694275 -0.568720 0.441065 0.711166 0.636255 -0.299035 -0.110563 0.521284 0.846191 0.750058 -0.492823 0.441065 0.640566 0.707286 -0.299035 -0.164588 0.506825 0.846191 0.797578 -0.411498 0.441065 0.562909 0.770527 -0.299035 -0.216801 0.486784 0.846191 0.836313 -0.325639 0.441065 0.479052 0.825280 -0.299035 -0.266625 0.461380 0.846191 0.865600 -0.237060 0.441065 0.390789 0.870553 -0.299035 -0.313081 0.431208 0.846191 0.885679 -0.145033 0.441065 0.297397 0.906716 -0.299035 -0.356551 0.396020 0.846191 0.896001 -0.051409 0.441065 0.200729 0.932891 -0.299035 -0.396093 0.356470 0.846191 0.896497 0.041885 0.441065 0.102798 0.948689 -0.299035 -0.430959 0.313425 0.846191 0.887170 0.135614 0.441065 0.002803 0.954238 -0.299035 -0.461435 0.266531 0.846191 0.868070 0.227848 0.441065 -0.097224 0.949276 -0.299035 -0.486828 0.216701 0.846191 0.839409 0.317574 0.441065 -0.196179 0.933859 -0.299035 -0.506858 0.164485 0.846191 0.801906 0.402999 0.441065 -0.292066 0.908447 -0.299035 -0.521195 0.110978 0.846191 0.755252 0.484825 0.441065 -0.385669 0.872833 -0.299035 -0.529956 0.055742 0.846191 0.092078 0.987405 -0.128659 0.575508 -0.158214 -0.802346 -0.812596 -0.000165 -0.582827 -0.011916 0.991617 -0.128659 0.588920 -0.097025 -0.802346 -0.808103 -0.085330 -0.582827 -0.114794 0.985022 -0.128659 0.595811 -0.035363 -0.802346 -0.794879 -0.168761 -0.582827 -0.217399 0.967566 -0.128659 0.596236 0.027277 -0.802346 -0.772814 -0.251140 -0.582827 -0.317610 0.939453 -0.128659 0.590093 0.089616 -0.802346 -0.742236 -0.330754 -0.582827 -0.413421 0.901405 -0.128659 0.577601 0.150391 -0.802346 -0.703889 -0.406020 -0.582827 -0.505617 0.853111 -0.128659 0.558658 0.210099 -0.802346 -0.657459 -0.477556 -0.582827 -0.592245 0.795420 -0.128659 0.533562 0.267494 -0.802346 -0.603787 -0.543833 -0.582827 -0.672349 0.728968 -0.128659 0.502588 0.321942 -0.802346 -0.543464 -0.604119 -0.582827 -0.744392 0.655231 -0.128659 0.466451 0.372377 -0.802346 -0.477812 -0.657273 -0.582827 -0.808965 0.573605 -0.128659 0.424854 0.419214 -0.802346 -0.406294 -0.703731 -0.582827 -0.864628 0.485660 -0.128659 0.378577 0.461433 -0.802346 -0.330300 -0.742438 -0.582827 -0.910374 0.393277 -0.128659 0.328629 0.498240 -0.802346 -0.251441 -0.772716 -0.582827 -0.946578 0.295697 -0.128659 0.274600 0.529939 -0.802346 -0.169070 -0.794813 -0.582827 -0.972356 0.194860 -0.128659 0.217547 0.555801 -0.802346 -0.084837 -0.808155 -0.582827 -0.987348 0.092682 -0.128659 0.158565 0.575411 -0.802346 -0.000331 -0.812596 -0.582827 -0.991624 -0.011310 -0.128659 0.097385 0.588861 -0.802346 0.084837 -0.808155 -0.582827 -0.984978 -0.115177 -0.128659 0.035132 0.595824 -0.802346 0.169070 -0.794813 -0.582827 -0.967482 -0.217775 -0.128659 -0.027509 0.596225 -0.802346 0.251441 -0.772716 -0.582827 -0.939646 -0.317035 -0.128659 -0.089256 0.590148 -0.802346 0.330300 -0.742438 -0.582827 -0.901244 -0.413771 -0.128659 -0.150616 0.577543 -0.802346 0.406294 -0.703731 -0.582827 -0.852914 -0.505949 -0.128659 -0.210317 0.558576 -0.802346 0.477812 -0.657273 -0.582827 -0.795782 -0.591759 -0.128659 -0.267168 0.533725 -0.802346 0.543464 -0.604119 -0.582827 -0.729378 -0.671903 -0.128659 -0.321635 0.502784 -0.802346 0.603787 -0.543833 -0.582827 -0.654941 -0.744647 -0.128659 -0.372559 0.466306 -0.802346 0.657459 -0.477556 -0.582827 -0.573290 -0.809188 -0.128659 -0.419379 0.424691 -0.802346 0.703889 -0.406020 -0.582827 -0.486188 -0.864331 -0.128659 -0.461201 0.378859 -0.802346 0.742236 -0.330754 -0.582827 -0.392923 -0.910527 -0.128659 -0.498368 0.328436 -0.802346 0.772814 -0.251140 -0.582827 -0.295329 -0.946693 -0.128659 -0.530046 0.274394 -0.802346 0.794879 -0.168761 -0.582827 -0.195455 -0.972237 -0.128659 -0.555668 0.217886 -0.802346 0.808103 -0.085330 -0.582827 -0.092481 -0.987367 -0.128659 -0.575443 0.158448 -0.802346 0.812596 -0.000165 -0.582827 0.011512 -0.991622 -0.128659 -0.588881 0.097265 -0.802346 0.808138 0.085001 -0.582827 0.115378 -0.984954 -0.128659 -0.595831 0.035010 -0.802346 0.794779 0.169232 -0.582827 0.217005 -0.967655 -0.128659 -0.596247 -0.027034 -0.802346 0.772916 0.250825 -0.582827 0.317227 -0.939582 -0.128659 -0.590129 -0.089376 -0.802346 0.742371 0.330451 -0.582827 0.413955 -0.901160 -0.128659 -0.577512 -0.150733 -0.802346 0.703649 0.406437 -0.582827 0.506123 -0.852811 -0.128659 -0.558534 -0.210431 -0.802346 0.657176 0.477946 -0.582827 0.591921 -0.795661 -0.128659 -0.533670 -0.267276 -0.802346 0.604008 0.543587 -0.582827 0.672052 -0.729242 -0.128659 -0.502719 -0.321737 -0.802346 0.543710 0.603897 -0.582827 0.744780 -0.654790 -0.128659 -0.466230 -0.372654 -0.802346 0.477423 0.657556 -0.582827 0.808731 -0.573934 -0.128659 -0.425025 -0.419041 -0.802346 0.406580 0.703566 -0.582827 0.864430 -0.486012 -0.128659 -0.378765 -0.461278 -0.802346 0.330602 0.742303 -0.582827 0.910607 -0.392737 -0.128659 -0.328334 -0.498435 -0.802346 0.250983 0.772865 -0.582827 0.946753 -0.295136 -0.128659 -0.274286 -0.530102 -0.802346 0.168599 0.794913 -0.582827 0.972277 -0.195256 -0.128659 -0.217773 -0.555712 -0.802346 0.085166 0.808121 -0.582827 0.987386 -0.092280 -0.128659 -0.158331 -0.575476 -0.802346 0.000000 0.812596 -0.582827 0.991620 0.011714 -0.128659 -0.097145 -0.588900 -0.802346 -0.085166 0.808121 -0.582827 0.985046 0.114593 -0.128659 -0.035485 -0.595803 -0.802346 -0.168599 0.794913 -0.582827 0.967611 0.217202 -0.128659 0.027155 -0.596241 -0.802346 -0.250983 0.772865 -0.582827 0.939517 0.317418 -0.128659 0.089496 -0.590111 -0.802346 -0.330602 0.742303 -0.582827 0.901075 0.414138 -0.128659 0.150851 -0.577481 -0.802346 -0.406580 0.703566 -0.582827 0.853214 0.505444 -0.128659 0.209986 -0.558701 -0.802346 -0.477423 0.657556 -0.582827 0.795541 0.592083 -0.128659 0.267385 -0.533616 -0.802346 -0.543710 0.603897 -0.582827 0.729105 0.672200 -0.128659 0.321839 -0.502653 -0.802346 -0.604008 0.543587 -0.582827 0.655382 0.744259 -0.128659 0.372282 -0.466526 -0.802346 -0.657176 0.477946 -0.582827 0.573769 0.808848 -0.128659 0.419127 -0.424939 -0.802346 -0.703649 0.406437 -0.582827 0.485836 0.864529 -0.128659 0.461355 -0.378671 -0.802346 -0.742371 0.330451 -0.582827 0.392552 0.910687 -0.128659 0.498502 -0.328232 -0.802346 -0.772916 0.250825 -0.582827 0.295890 0.946518 -0.128659 0.529883 -0.274708 -0.802346 -0.794779 0.169232 -0.582827 0.195058 0.972316 -0.128659 0.555756 -0.217660 -0.802346 -0.808138 0.085001 -0.582827 0.486981 -0.460973 0.741858 0.252805 0.887414 0.385469 -0.836026 -0.000170 0.548690 0.532612 -0.407396 0.741858 0.158405 0.909022 0.385469 -0.831404 -0.087791 0.548690 0.572027 -0.349903 0.741858 0.063182 0.920555 0.385469 -0.817798 -0.173627 0.548690 0.605549 -0.288023 0.741858 -0.033647 0.922107 0.385469 -0.795097 -0.258382 0.548690 0.632401 -0.222971 0.741858 -0.130105 0.913502 0.385469 -0.763637 -0.340290 0.548690 0.652131 -0.156115 0.741858 -0.224235 0.895060 0.385469 -0.724185 -0.417727 0.548690 0.664901 -0.086907 0.741858 -0.316809 0.866629 0.385469 -0.676416 -0.491326 0.548690 0.670348 -0.016742 0.741858 -0.405893 0.828652 0.385469 -0.621196 -0.559513 0.548690 0.668411 0.053607 0.741858 -0.490506 0.781548 0.385469 -0.559134 -0.621538 0.548690 0.659234 0.122707 0.741858 -0.568991 0.726404 0.385469 -0.491589 -0.676225 0.548690 0.642743 0.191124 0.741858 -0.641990 0.662769 0.385469 -0.418009 -0.724022 0.548690 0.619172 0.257435 0.741858 -0.707917 0.591834 0.385469 -0.339824 -0.763845 0.548690 0.589101 0.320322 0.741858 -0.765532 0.515146 0.385469 -0.258691 -0.794996 0.548690 0.552285 0.380300 0.741858 -0.815306 0.432075 0.385469 -0.173945 -0.817730 0.548690 0.509385 0.436089 0.741858 -0.856101 0.344246 0.385469 -0.087283 -0.831457 0.548690 0.461271 0.486699 0.741858 -0.887259 0.253347 0.385469 -0.000341 -0.836026 0.548690 0.407721 0.532363 0.741858 -0.908925 0.158961 0.385469 0.087283 -0.831457 0.548690 0.349680 0.572163 0.741858 -0.920580 0.062823 0.385469 0.173945 -0.817730 0.548690 0.287787 0.605661 0.741858 -0.922094 -0.034006 0.385469 0.258691 -0.794996 0.548690 0.223357 0.632264 0.741858 -0.913582 -0.129547 0.385469 0.339824 -0.763845 0.548690 0.155861 0.652192 0.741858 -0.894973 -0.224583 0.385469 0.418009 -0.724022 0.548690 0.086649 0.664935 0.741858 -0.866506 -0.317146 0.385469 0.491589 -0.676225 0.548690 0.017152 0.670338 0.741858 -0.828900 -0.405387 0.385469 0.559134 -0.621538 0.548690 -0.053199 0.668443 0.741858 -0.781847 -0.490029 0.385469 0.621196 -0.559513 0.548690 -0.122964 0.659186 0.741858 -0.726183 -0.569273 0.385469 0.676416 -0.491326 0.548690 -0.191374 0.642668 0.741858 -0.662520 -0.642247 0.385469 0.724185 -0.417727 0.548690 -0.257057 0.619329 0.741858 -0.592267 -0.707555 0.385469 0.763637 -0.340290 0.548690 -0.320551 0.588977 0.741858 -0.514848 -0.765732 0.385469 0.795097 -0.258382 0.548690 -0.380515 0.552137 0.741858 -0.431758 -0.815475 0.385469 0.817798 -0.173627 0.548690 -0.435778 0.509651 0.741858 -0.344769 -0.855890 0.385469 0.831404 -0.087791 0.548690 -0.486793 0.461172 0.741858 -0.253167 -0.887311 0.385469 0.836026 -0.000170 0.548690 -0.532446 0.407613 0.741858 -0.158776 -0.908958 0.385469 0.831439 0.087452 0.548690 -0.572234 0.349563 0.741858 -0.062636 -0.920593 0.385469 0.817695 0.174111 0.548690 -0.605431 0.288270 0.741858 0.033272 -0.922121 0.385469 0.795202 0.258058 0.548690 -0.632310 0.223228 0.741858 0.129733 -0.913555 0.385469 0.763776 0.339979 0.548690 -0.652223 0.155728 0.741858 0.224766 -0.894927 0.385469 0.723937 0.418156 0.548690 -0.664953 0.086513 0.741858 0.317323 -0.866441 0.385469 0.676124 0.491727 0.548690 -0.670341 0.017015 0.741858 0.405556 -0.828818 0.385469 0.621424 0.559260 0.548690 -0.668433 -0.053335 0.741858 0.490188 -0.781748 0.385469 0.559387 0.621310 0.548690 -0.659161 -0.123098 0.741858 0.569421 -0.726067 0.385469 0.491188 0.676516 0.548690 -0.642821 -0.190862 0.741858 0.641719 -0.663031 0.385469 0.418303 0.723852 0.548690 -0.619277 -0.257183 0.741858 0.707676 -0.592122 0.385469 0.340135 0.763707 0.548690 -0.588911 -0.320671 0.741858 0.765837 -0.514692 0.385469 0.258220 0.795149 0.548690 -0.552059 -0.380627 0.741858 0.815562 -0.431592 0.385469 0.173460 0.817833 0.548690 -0.509563 -0.435882 0.741858 0.855961 -0.344595 0.385469 0.087622 0.831422 0.548690 -0.461073 -0.486887 0.741858 0.887362 -0.252986 0.385469 0.000000 0.836026 0.548690 -0.407504 -0.532529 0.741858 0.908990 -0.158591 0.385469 -0.087622 0.831422 0.548690 -0.350019 -0.571956 0.741858 0.920542 -0.063369 0.385469 -0.173460 0.817833 0.548690 -0.288146 -0.605490 0.741858 0.922114 0.033459 0.385469 -0.258220 0.795149 0.548690 -0.223100 -0.632355 0.741858 0.913529 0.129919 0.385469 -0.340135 0.763707 0.548690 -0.155596 -0.652255 0.741858 0.894881 0.224948 0.385469 -0.418303 0.723852 0.548690 -0.087043 -0.664884 0.741858 0.866693 0.316633 0.385469 -0.491188 0.676516 0.548690 -0.016879 -0.670345 0.741858 0.828735 0.405724 0.385469 -0.559387 0.621310 0.548690 0.053471 -0.668422 0.741858 0.781648 0.490347 0.385469 -0.621424 0.559260 0.548690 0.122573 -0.659259 0.741858 0.726520 0.568843 0.385469 -0.676124 0.491727 0.548690 0.190993 -0.642782 0.741858 0.662900 0.641855 0.385469 -0.723937 0.418156 0.548690 0.257309 -0.619224 0.741858 0.591978 0.707796 0.385469 -0.763776 0.339979 0.548690 0.320791 -0.588846 0.741858 0.514536 0.765942 0.385469 -0.795202 0.258058 0.548690 0.380188 -0.552362 0.741858 0.432241 0.815218 0.385469 -0.817695 0.174111 0.548690 0.435985 -0.509474 0.741858 0.344420 0.856031 0.385469 -0.831439 0.087452 0.548690 0.505468 -0.800442 -0.322171 -0.674895 -0.599410 0.430376 -0.537604 -0.000109 -0.843198 0.586577 -0.743057 -0.322171 -0.608356 -0.666843 0.430376 -0.534632 -0.056454 -0.843198 0.660546 -0.678148 -0.322171 -0.535842 -0.726395 0.430376 -0.525882 -0.111650 -0.843198 0.727983 -0.605183 -0.322171 -0.456760 -0.778555 0.430376 -0.511284 -0.166151 -0.843198 0.787401 -0.525552 -0.322171 -0.372646 -0.822138 0.430376 -0.491055 -0.218823 -0.843198 0.837706 -0.440970 -0.322171 -0.285284 -0.856382 0.430376 -0.465685 -0.268618 -0.843198 0.879309 -0.350744 -0.322171 -0.193958 -0.881565 0.430376 -0.434967 -0.315946 -0.843198 0.911227 -0.256655 -0.322171 -0.100496 -0.897038 0.430376 -0.399458 -0.359793 -0.843198 0.933107 -0.159738 -0.322171 -0.005926 -0.902630 0.430376 -0.359549 -0.399678 -0.843198 0.944649 -0.062007 -0.322171 0.087810 -0.898368 0.430376 -0.316115 -0.434844 -0.843198 0.945945 0.037341 -0.322171 0.181482 -0.884218 0.430376 -0.268799 -0.465580 -0.843198 0.936821 0.136277 -0.322171 0.273155 -0.860327 0.430376 -0.218523 -0.491188 -0.843198 0.917612 0.232794 -0.322171 0.360992 -0.827322 0.430376 -0.166350 -0.511220 -0.843198 0.888160 0.327685 -0.322171 0.445713 -0.784931 0.430376 -0.111855 -0.525839 -0.843198 0.848925 0.418965 -0.322171 0.525525 -0.733894 0.430376 -0.056127 -0.534666 -0.843198 0.800751 0.504979 -0.322171 0.598998 -0.675261 0.430376 -0.000219 -0.537604 -0.843198 0.743415 0.586123 -0.322171 0.666471 -0.608763 0.430376 0.056127 -0.534666 -0.843198 0.677891 0.660810 -0.322171 0.726603 -0.535559 0.430376 0.111855 -0.525839 -0.843198 0.604900 0.728218 -0.322171 0.778732 -0.456457 0.430376 0.166350 -0.511220 -0.843198 0.526033 0.787080 -0.322171 0.821911 -0.373148 0.430376 0.218523 -0.491188 -0.843198 0.440645 0.837877 -0.322171 0.856493 -0.284951 0.430376 0.268799 -0.465580 -0.843198 0.350402 0.879445 -0.322171 0.881640 -0.193615 0.430376 0.316115 -0.434844 -0.843198 0.257211 0.911070 -0.322171 0.896976 -0.101043 0.430376 0.359549 -0.399678 -0.843198 0.160308 0.933010 -0.322171 0.902627 -0.006477 0.430376 0.399458 -0.359793 -0.843198 0.061639 0.944673 -0.322171 0.898334 0.088160 0.430376 0.434967 -0.315946 -0.843198 -0.037709 0.945930 -0.322171 0.884147 0.181826 0.430376 0.465685 -0.268618 -0.843198 -0.135704 0.936904 -0.322171 0.860494 0.272629 0.430376 0.491055 -0.218823 -0.843198 -0.233151 0.917522 -0.322171 0.827181 0.361314 0.430376 0.511284 -0.166151 -0.843198 -0.328030 0.888033 -0.322171 0.784757 0.446018 0.430376 0.525882 -0.111650 -0.843198 -0.418447 0.849181 -0.322171 0.734215 0.525076 0.430376 0.534632 -0.056454 -0.843198 -0.505142 0.800648 -0.322171 0.675139 0.599135 0.430376 0.537604 -0.000109 -0.843198 -0.586274 0.743296 -0.322171 0.608627 0.666595 0.430376 0.534654 0.056236 -0.843198 -0.660948 0.677756 -0.322171 0.535411 0.726713 0.430376 0.525816 0.111962 -0.843198 -0.727736 0.605479 -0.322171 0.457077 0.778368 0.430376 0.511352 0.165943 -0.843198 -0.787187 0.525873 -0.322171 0.372981 0.821987 0.430376 0.491144 0.218623 -0.843198 -0.837967 0.440474 -0.322171 0.284777 0.856551 0.430376 0.465525 0.268894 -0.843198 -0.879517 0.350223 -0.322171 0.193435 0.881680 0.430376 0.434780 0.316203 -0.843198 -0.911122 0.257026 -0.322171 0.100861 0.896997 0.430376 0.399605 0.359630 -0.843198 -0.933042 0.160118 -0.322171 0.006294 0.902628 0.430376 0.359712 0.399531 -0.843198 -0.944685 0.061447 -0.322171 -0.088343 0.898316 0.430376 0.315857 0.435031 -0.843198 -0.945960 -0.036955 -0.322171 -0.181122 0.884291 0.430376 0.268989 0.465471 -0.843198 -0.936877 -0.135895 -0.322171 -0.272805 0.860438 0.430376 0.218723 0.491099 -0.843198 -0.917474 -0.233338 -0.322171 -0.361482 0.827108 0.430376 0.166047 0.511318 -0.843198 -0.887966 -0.328211 -0.322171 -0.446178 0.784666 0.430376 0.111543 0.525905 -0.843198 -0.849095 -0.418620 -0.322171 -0.525226 0.734108 0.430376 0.056345 0.534643 -0.843198 -0.800545 -0.505305 -0.322171 -0.599273 0.675017 0.430376 0.000000 0.537604 -0.843198 -0.743176 -0.586425 -0.322171 -0.666719 0.608492 0.430376 -0.056345 0.534643 -0.843198 -0.678282 -0.660408 -0.322171 -0.726286 0.535990 0.430376 -0.111543 0.525905 -0.843198 -0.605331 -0.727860 -0.322171 -0.778462 0.456918 0.430376 -0.166047 0.511318 -0.843198 -0.525713 -0.787294 -0.322171 -0.822062 0.372813 0.430376 -0.218723 0.491099 -0.843198 -0.440303 -0.838057 -0.322171 -0.856609 0.284602 0.430376 -0.268989 0.465471 -0.843198 -0.350923 -0.879237 -0.322171 -0.881525 0.194138 0.430376 -0.315857 0.435031 -0.843198 -0.256840 -0.911174 -0.322171 -0.897018 0.100678 0.430376 -0.359712 0.399531 -0.843198 -0.159928 -0.933075 -0.322171 -0.902629 0.006110 0.430376 -0.399605 0.359630 -0.843198 -0.062199 -0.944636 -0.322171 -0.898386 -0.087627 0.430376 -0.434780 0.316203 -0.843198 0.037148 -0.945952 -0.322171 -0.884255 -0.181302 0.430376 -0.465525 0.268894 -0.843198 0.136086 -0.936849 -0.322171 -0.860383 -0.272980 0.430376 -0.491144 0.218623 -0.843198 0.233525 -0.917427 -0.322171 -0.827034 -0.361651 0.430376 -0.511352 0.165943 -0.843198 0.327504 -0.888227 -0.322171 -0.785022 -0.445553 0.430376 -0.525816 0.111962 -0.843198 0.418793 -0.849010 -0.322171 -0.734001 -0.525375 0.430376 -0.534654 0.056236 -0.843198 -0.171020 0.954709 -0.243482 -0.548286 -0.297542 -0.781570 -0.818618 -0.000167 0.574339 -0.270139 0.931527 -0.243482 -0.514082 -0.353368 -0.781570 -0.814092 -0.085963 0.574339 -0.365383 0.898450 -0.243482 -0.474620 -0.404826 -0.781570 -0.800769 -0.170011 0.574339 -0.457535 0.855207 -0.243482 -0.429577 -0.452340 -0.781570 -0.778540 -0.253001 0.574339 -0.544647 0.802544 -0.243482 -0.379803 -0.494872 -0.781570 -0.747736 -0.333205 0.574339 -0.625018 0.741666 -0.243482 -0.326377 -0.531626 -0.781570 -0.709105 -0.409029 0.574339 -0.699308 0.672075 -0.243482 -0.268861 -0.562905 -0.781570 -0.662331 -0.481095 0.574339 -0.765895 0.595081 -0.243482 -0.208384 -0.587984 -0.781570 -0.608261 -0.547863 0.574339 -0.824045 0.511533 -0.243482 -0.145611 -0.606585 -0.781570 -0.547491 -0.608595 0.574339 -0.872697 0.423222 -0.243482 -0.081853 -0.618424 -0.781570 -0.481353 -0.662144 0.574339 -0.912247 0.329427 -0.243482 -0.016587 -0.623597 -0.781570 -0.409304 -0.708946 0.574339 -0.941749 0.232002 -0.243482 0.048862 -0.621901 -0.781570 -0.332748 -0.747940 0.574339 -0.960746 0.132983 -0.243482 0.113159 -0.613468 -0.781570 -0.253304 -0.778442 0.574339 -0.969392 0.031558 -0.243482 0.176831 -0.598230 -0.781570 -0.170323 -0.800703 0.574339 -0.967361 -0.070215 -0.243482 0.238556 -0.576402 -0.781570 -0.085465 -0.814144 0.574339 -0.954813 -0.170437 -0.243482 0.297207 -0.548467 -0.781570 -0.000333 -0.818618 0.574339 -0.931691 -0.269569 -0.243482 0.353053 -0.514297 -0.781570 0.085465 -0.814144 0.574339 -0.898307 -0.365733 -0.243482 0.405011 -0.474462 -0.781570 0.170323 -0.800703 0.574339 -0.855029 -0.457868 -0.243482 0.452508 -0.429401 -0.781570 0.253304 -0.778442 0.574339 -0.802876 -0.544156 -0.243482 0.494640 -0.380105 -0.781570 0.332748 -0.747940 0.574339 -0.741423 -0.625307 -0.243482 0.531753 -0.326170 -0.781570 0.409304 -0.708946 0.574339 -0.671803 -0.699569 -0.243482 0.563010 -0.268642 -0.781570 0.481353 -0.662144 0.574339 -0.595549 -0.765531 -0.243482 0.587856 -0.208743 -0.781570 0.547491 -0.608595 0.574339 -0.512036 -0.823733 -0.243482 0.606496 -0.145982 -0.781570 0.608261 -0.547863 0.574339 -0.422883 -0.872861 -0.243482 0.618456 -0.081613 -0.781570 0.662331 -0.481095 0.574339 -0.329072 -0.912375 -0.243482 0.623604 -0.016345 -0.781570 0.709105 -0.409029 0.574339 -0.232578 -0.941607 -0.243482 0.621931 0.048482 -0.781570 0.747736 -0.333205 0.574339 -0.132610 -0.960797 -0.243482 0.613424 0.113397 -0.781570 0.778540 -0.253001 0.574339 -0.031181 -0.969404 -0.243482 0.598161 0.177064 -0.781570 0.800769 -0.170011 0.574339 0.069624 -0.967403 -0.243482 0.576548 0.238204 -0.781570 0.814092 -0.085963 0.574339 0.170631 -0.954778 -0.243482 0.548407 0.297319 -0.781570 0.818618 -0.000167 0.574339 0.269759 -0.931637 -0.243482 0.514225 0.353158 -0.781570 0.814127 0.085631 0.574339 0.365916 -0.898233 -0.243482 0.474380 0.405108 -0.781570 0.800668 0.170486 0.574339 0.457187 -0.855393 -0.243482 0.429761 0.452165 -0.781570 0.778643 0.252684 0.574339 0.544320 -0.802765 -0.243482 0.380004 0.494717 -0.781570 0.747872 0.332900 0.574339 0.625458 -0.741296 -0.243482 0.326062 0.531820 -0.781570 0.708863 0.409449 0.574339 0.699706 -0.671661 -0.243482 0.268527 0.563064 -0.781570 0.662046 0.481488 0.574339 0.765652 -0.595393 -0.243482 0.208623 0.587899 -0.781570 0.608484 0.547615 0.574339 0.823837 -0.511868 -0.243482 0.145858 0.606526 -0.781570 0.547739 0.608372 0.574339 0.872947 -0.422705 -0.243482 0.081487 0.618473 -0.781570 0.480960 0.662429 0.574339 0.912113 -0.329798 -0.243482 0.016841 0.623590 -0.781570 0.409593 0.708779 0.574339 0.941655 -0.232386 -0.243482 -0.048608 0.621921 -0.781570 0.333052 0.747804 0.574339 0.960824 -0.132414 -0.243482 -0.113522 0.613401 -0.781570 0.252843 0.778592 0.574339 0.969410 -0.030983 -0.243482 -0.177186 0.598125 -0.781570 0.169848 0.800804 0.574339 0.967389 0.069821 -0.243482 -0.238322 0.576499 -0.781570 0.085797 0.814109 0.574339 0.954744 0.170826 -0.243482 -0.297430 0.548346 -0.781570 0.000000 0.818618 0.574339 0.931582 0.269949 -0.243482 -0.353263 0.514154 -0.781570 -0.085797 0.814109 0.574339 0.898524 0.365200 -0.243482 -0.404730 0.474702 -0.781570 -0.169848 0.800804 0.574339 0.855300 0.457361 -0.243482 -0.452253 0.429669 -0.781570 -0.252843 0.778592 0.574339 0.802655 0.544483 -0.243482 -0.494795 0.379904 -0.781570 -0.333052 0.747804 0.574339 0.741168 0.625609 -0.243482 -0.531886 0.325953 -0.781570 -0.409593 0.708779 0.574339 0.672218 0.699171 -0.243482 -0.562850 0.268976 -0.781570 -0.480960 0.662429 0.574339 0.595237 0.765774 -0.243482 -0.587941 0.208504 -0.781570 -0.547739 0.608372 0.574339 0.511701 0.823941 -0.243482 -0.606556 0.145735 -0.781570 -0.608484 0.547615 0.574339 0.423400 0.872610 -0.243482 -0.618408 0.081979 -0.781570 -0.662046 0.481488 0.574339 0.329612 0.912180 -0.243482 -0.623594 0.016714 -0.781570 -0.708863 0.409449 0.574339 0.232194 0.941702 -0.243482 -0.621911 -0.048735 -0.781570 -0.747872 0.332900 0.574339 0.132218 0.960851 -0.243482 -0.613378 -0.113647 -0.781570 -0.778643 0.252684 0.574339 0.031755 0.969386 -0.243482 -0.598266 -0.176710 -0.781570 -0.800668 0.170486 0.574339 -0.070018 0.967375 -0.243482 -0.576451 -0.238439 -0.781570 -0.814127 0.085631 0.574339 0.590659 0.049896 0.805377 -0.029641 0.998754 -0.040138 -0.806377 -0.000164 0.591402 0.582176 0.111526 0.805377 -0.134154 0.990147 -0.040138 -0.801919 -0.084677 0.591402 0.567453 0.171361 0.805377 -0.236219 0.970870 -0.040138 -0.788795 -0.167469 0.591402 0.546368 0.229890 0.805377 -0.336672 0.940766 -0.040138 -0.766899 -0.249218 0.591402 0.519264 0.285888 0.805377 -0.433417 0.900299 -0.040138 -0.736555 -0.328222 0.591402 0.486780 0.338249 0.805377 -0.524538 0.850440 -0.040138 -0.698502 -0.402913 0.591402 0.448648 0.387404 0.805377 -0.610781 0.790781 -0.040138 -0.652427 -0.473901 0.591402 0.405575 0.432292 0.805377 -0.690297 0.722412 -0.040138 -0.599166 -0.539671 0.591402 0.358034 0.472419 0.805377 -0.762209 0.646085 -0.040138 -0.539304 -0.599495 0.591402 0.307056 0.507034 0.805377 -0.825163 0.563467 -0.040138 -0.474155 -0.652243 0.591402 0.252224 0.536424 0.805377 -0.879674 0.473881 -0.040138 -0.403184 -0.698345 0.591402 0.194614 0.559904 0.805377 -0.924495 0.379075 -0.040138 -0.327772 -0.736756 0.591402 0.135437 0.577082 0.805377 -0.958853 0.281053 -0.040138 -0.249517 -0.766802 0.591402 0.074209 0.588099 0.805377 -0.983028 0.179010 -0.040138 -0.167776 -0.788730 0.591402 0.012163 0.592638 0.805377 -0.996376 0.074996 -0.040138 -0.084187 -0.801970 0.591402 -0.049535 0.590689 0.805377 -0.998772 -0.029031 -0.040138 -0.000328 -0.806377 0.591402 -0.111171 0.582244 0.805377 -0.990229 -0.133549 -0.040138 0.084187 -0.801970 0.591402 -0.171582 0.567386 0.805377 -0.970778 -0.236597 -0.040138 0.167776 -0.788730 0.591402 -0.230103 0.546278 0.805377 -0.940635 -0.337038 -0.040138 0.249517 -0.766802 0.591402 -0.285570 0.519439 0.805377 -0.900564 -0.432867 -0.040138 0.327772 -0.736756 0.591402 -0.338438 0.486648 0.805377 -0.850236 -0.524869 -0.040138 0.403184 -0.698345 0.591402 -0.387579 0.448497 0.805377 -0.790544 -0.611089 -0.040138 0.474155 -0.652243 0.591402 -0.432044 0.405839 0.805377 -0.722834 -0.689855 -0.040138 0.539304 -0.599495 0.591402 -0.472200 0.358322 0.805377 -0.646551 -0.761814 -0.040138 0.599166 -0.539671 0.591402 -0.507154 0.306859 0.805377 -0.563146 -0.825382 -0.040138 0.652427 -0.473901 0.591402 -0.536522 0.252015 0.805377 -0.473539 -0.879858 -0.040138 0.698502 -0.402913 0.591402 -0.559785 0.194956 0.805377 -0.379640 -0.924263 -0.040138 0.736555 -0.328222 0.591402 -0.577135 0.135213 0.805377 -0.280680 -0.958962 -0.040138 0.766899 -0.249218 0.591402 -0.588128 0.073980 0.805377 -0.178628 -0.983098 -0.040138 0.788795 -0.167469 0.591402 -0.592630 0.012525 0.805377 -0.075605 -0.996330 -0.040138 0.801919 -0.084677 0.591402 -0.590679 -0.049655 0.805377 0.029234 -0.998766 -0.040138 0.806377 -0.000164 0.591402 -0.582222 -0.111289 0.805377 0.133751 -0.990202 -0.040138 0.801953 0.084351 0.591402 -0.567351 -0.171697 0.805377 0.236795 -0.970730 -0.040138 0.788696 0.167937 0.591402 -0.546461 -0.229668 0.805377 0.336289 -0.940903 -0.040138 0.767000 0.248906 0.591402 -0.519381 -0.285676 0.805377 0.433051 -0.900476 -0.040138 0.736689 0.327922 0.591402 -0.486580 -0.338538 0.805377 0.525042 -0.850129 -0.040138 0.698263 0.403326 0.591402 -0.448419 -0.387670 0.805377 0.611250 -0.790419 -0.040138 0.652146 0.474288 0.591402 -0.405751 -0.432127 0.805377 0.690003 -0.722693 -0.040138 0.599385 0.539426 0.591402 -0.358226 -0.472273 0.805377 0.761946 -0.646396 -0.040138 0.539549 0.599276 0.591402 -0.306755 -0.507216 0.805377 0.825496 -0.562978 -0.040138 0.473769 0.652524 0.591402 -0.252443 -0.536321 0.805377 0.879480 -0.474240 -0.040138 0.403469 0.698181 0.591402 -0.194842 -0.559825 0.805377 0.924340 -0.379452 -0.040138 0.328072 0.736622 0.591402 -0.135095 -0.577163 0.805377 0.959019 -0.280485 -0.040138 0.249062 0.766950 0.591402 -0.073860 -0.588143 0.805377 0.983134 -0.178428 -0.040138 0.167309 0.788829 0.591402 -0.012405 -0.592633 0.805377 0.996345 -0.075402 -0.040138 0.084514 0.801936 0.591402 0.049776 -0.590669 0.805377 0.998760 0.029437 -0.040138 0.000000 0.806377 0.591402 0.111408 -0.582199 0.805377 0.990175 0.133953 -0.040138 -0.084514 0.801936 0.591402 0.171246 -0.567488 0.805377 0.970919 0.236021 -0.040138 -0.167309 0.788829 0.591402 0.229779 -0.546414 0.805377 0.940835 0.336481 -0.040138 -0.249062 0.766950 0.591402 0.285782 -0.519323 0.805377 0.900387 0.433234 -0.040138 -0.328072 0.736622 0.591402 0.338637 -0.486511 0.805377 0.850022 0.525215 -0.040138 -0.403469 0.698181 0.591402 0.387313 -0.448727 0.805377 0.790906 0.610620 -0.040138 -0.473769 0.652524 0.591402 0.432210 -0.405663 0.805377 0.722553 0.690150 -0.040138 -0.539549 0.599276 0.591402 0.472346 -0.358130 0.805377 0.646240 0.762078 -0.040138 -0.599385 0.539426 0.591402 0.506972 -0.307159 0.805377 0.563636 0.825048 -0.040138 -0.652146 0.474288 0.591402 0.536372 -0.252333 0.805377 0.474060 0.879577 -0.040138 -0.698263 0.403326 0.591402 0.559865 -0.194728 0.805377 0.379264 0.924418 -0.040138 -0.736689 0.327922 0.591402 0.577190 -0.134978 0.805377 0.280289 0.959076 -0.040138 -0.767000 0.248906 0.591402 0.588084 -0.074329 0.805377 0.179211 0.982992 -0.040138 -0.788696 0.167937 0.591402 0.592635 -0.012284 0.805377 0.075199 0.996360 -0.040138 -0.801953 0.084351 0.591402 -0.795104 -0.318716 0.515975 -0.267418 0.947850 0.173399 -0.544332 -0.000111 -0.838870 -0.757321 -0.400293 0.515975 -0.365287 0.914603 0.173399 -0.541323 -0.057160 -0.838870 -0.711674 -0.476750 0.515975 -0.458261 0.871740 0.173399 -0.532464 -0.113047 -0.838870 -0.657787 -0.548713 0.515975 -0.547101 0.818909 0.173399 -0.517683 -0.168231 -0.838870 -0.596656 -0.614632 0.515975 -0.629916 0.757059 0.173399 -0.497200 -0.221561 -0.838870 -0.529625 -0.673251 0.515975 -0.705105 0.687575 0.173399 -0.471513 -0.271980 -0.838870 -0.456147 -0.725052 0.515975 -0.773284 0.609889 0.173399 -0.440411 -0.319900 -0.838870 -0.377644 -0.768866 0.515975 -0.832946 0.525484 0.173399 -0.404457 -0.364296 -0.838870 -0.294982 -0.804211 0.515975 -0.883433 0.435291 0.173399 -0.364049 -0.404680 -0.838870 -0.209900 -0.830489 0.515975 -0.923849 0.341228 0.173399 -0.320071 -0.440286 -0.838870 -0.121703 -0.847914 0.515975 -0.954524 0.242523 0.173399 -0.272163 -0.471407 -0.838870 -0.032165 -0.856000 0.515975 -0.974685 0.141146 0.173399 -0.221257 -0.497335 -0.838870 0.056872 -0.854714 0.515975 -0.984071 0.039199 0.173399 -0.168432 -0.517618 -0.838870 0.146139 -0.844046 0.515975 -0.982760 -0.064155 0.173399 -0.113255 -0.532420 -0.838870 0.233796 -0.824081 0.515975 -0.970623 -0.166802 0.173399 -0.056829 -0.541357 -0.838870 0.318230 -0.795298 0.515975 -0.948013 -0.266839 0.173399 -0.000222 -0.544332 -0.838870 0.399830 -0.757565 0.515975 -0.914826 -0.364728 0.173399 0.056829 -0.541357 -0.838870 0.477027 -0.711488 0.515975 -0.871561 -0.458600 0.173399 0.113255 -0.532420 -0.838870 0.548969 -0.657574 0.515975 -0.818697 -0.547420 0.173399 0.168432 -0.517618 -0.838870 0.614267 -0.597031 0.515975 -0.757444 -0.629453 0.173399 0.221257 -0.497335 -0.838870 0.673457 -0.529363 0.515975 -0.687301 -0.705372 0.173399 0.272163 -0.471407 -0.838870 0.725229 -0.455865 0.515975 -0.609588 -0.773521 0.173399 0.320071 -0.440286 -0.838870 0.768635 -0.378114 0.515975 -0.525993 -0.832625 0.173399 0.364049 -0.404680 -0.838870 0.804031 -0.295473 0.515975 -0.435831 -0.883167 0.173399 0.404457 -0.364296 -0.838870 0.830570 -0.209577 0.515975 -0.340868 -0.923981 0.173399 0.440411 -0.319900 -0.838870 0.847961 -0.121374 0.515975 -0.242151 -0.954618 0.173399 0.471513 -0.271980 -0.838870 0.855980 -0.032689 0.515975 -0.141741 -0.974598 0.173399 0.497200 -0.221561 -0.838870 0.854692 0.057204 0.515975 -0.038816 -0.984086 0.173399 0.517683 -0.168231 -0.838870 0.843989 0.146467 0.515975 0.064537 -0.982735 0.173399 0.532464 -0.113047 -0.838870 0.824224 0.233292 0.515975 0.166209 -0.970725 0.173399 0.541323 -0.057160 -0.838870 0.795234 0.318392 0.515975 0.267032 -0.947959 0.173399 0.544332 -0.000111 -0.838870 0.757484 0.399985 0.515975 0.364915 -0.914751 0.173399 0.541346 0.056940 -0.838870 0.711391 0.477172 0.515975 0.458777 -0.871468 0.173399 0.532397 0.113363 -0.838870 0.658011 0.548445 0.515975 0.546768 -0.819132 0.173399 0.517752 0.168020 -0.838870 0.596906 0.614388 0.515975 0.629607 -0.757316 0.173399 0.497290 0.221359 -0.838870 0.529226 0.673565 0.515975 0.705512 -0.687158 0.173399 0.471352 0.272259 -0.838870 0.455717 0.725322 0.515975 0.773646 -0.609430 0.173399 0.440221 0.320161 -0.838870 0.377957 0.768712 0.515975 0.832732 -0.525823 0.173399 0.404606 0.364131 -0.838870 0.295309 0.804091 0.515975 0.883256 -0.435651 0.173399 0.364214 0.404532 -0.838870 0.209408 0.830613 0.515975 0.924051 -0.340680 0.173399 0.319810 0.440476 -0.838870 0.122049 0.847864 0.515975 0.954425 -0.242911 0.173399 0.272355 0.471296 -0.838870 0.032514 0.855986 0.515975 0.974627 -0.141543 0.173399 0.221460 0.497245 -0.838870 -0.057378 0.854680 0.515975 0.984094 -0.038616 0.173399 0.168125 0.517717 -0.838870 -0.146639 0.843959 0.515975 0.982722 0.064737 0.173399 0.112939 0.532487 -0.838870 -0.233460 0.824176 0.515975 0.970691 0.166406 0.173399 0.057050 0.541334 -0.838870 -0.318554 0.795169 0.515975 0.947905 0.267225 0.173399 0.000000 0.544332 -0.838870 -0.400139 0.757403 0.515975 0.914677 0.365101 0.173399 -0.057050 0.541334 -0.838870 -0.476605 0.711771 0.515975 0.871833 0.458083 0.173399 -0.112939 0.532487 -0.838870 -0.548579 0.657899 0.515975 0.819021 0.546935 0.173399 -0.168125 0.517717 -0.838870 -0.614510 0.596781 0.515975 0.757187 0.629762 0.173399 -0.221460 0.497245 -0.838870 -0.673673 0.529089 0.515975 0.687014 0.705652 0.173399 -0.272355 0.471296 -0.838870 -0.724959 0.456295 0.515975 0.610046 0.773160 0.173399 -0.319810 0.440476 -0.838870 -0.768789 0.377801 0.515975 0.525654 0.832839 0.173399 -0.364214 0.404532 -0.838870 -0.804151 0.295145 0.515975 0.435471 0.883345 0.173399 -0.404606 0.364131 -0.838870 -0.830446 0.210070 0.515975 0.341416 0.923779 0.173399 -0.440221 0.320161 -0.838870 -0.847889 0.121876 0.515975 0.242717 0.954474 0.173399 -0.471352 0.272259 -0.838870 -0.855993 0.032340 0.515975 0.141345 0.974656 0.173399 -0.497290 0.221359 -0.838870 -0.854668 -0.057552 0.515975 0.038415 0.984102 0.173399 -0.517752 0.168020 -0.838870 -0.844076 -0.145967 0.515975 -0.063955 0.982773 0.173399 -0.532397 0.113363 -0.838870 -0.824129 -0.233628 0.515975 -0.166604 0.970657 0.173399 -0.541346 0.056940 -0.838870 0.013958 0.865327 -0.501014 0.024504 -0.501208 -0.864980 -0.999602 -0.000204 -0.028200 -0.076811 0.862024 -0.501014 0.076899 -0.495879 -0.864980 -0.994076 -0.104968 -0.028200 -0.165885 0.849392 -0.501014 0.127962 -0.485217 -0.864980 -0.977808 -0.207598 -0.028200 -0.253994 0.827328 -0.501014 0.178112 -0.469133 -0.864980 -0.950665 -0.308936 -0.028200 -0.339305 0.796152 -0.501014 0.226299 -0.447882 -0.864980 -0.913050 -0.406871 -0.028200 -0.420123 0.756626 -0.501014 0.271573 -0.421969 -0.864980 -0.865878 -0.499459 -0.028200 -0.497108 0.708427 -0.501014 0.314302 -0.391183 -0.864980 -0.808763 -0.587458 -0.028200 -0.568619 0.652425 -0.501014 0.353570 -0.356087 -0.864980 -0.742739 -0.668987 -0.028200 -0.633866 0.589236 -0.501014 0.388943 -0.317069 -0.864980 -0.668533 -0.743147 -0.028200 -0.691611 0.520249 -0.501014 0.419758 -0.274979 -0.864980 -0.587773 -0.808534 -0.028200 -0.742328 0.444898 -0.501014 0.446266 -0.229471 -0.864980 -0.499796 -0.865684 -0.028200 -0.784868 0.364646 -0.501014 0.467858 -0.181435 -0.864980 -0.406313 -0.913299 -0.028200 -0.818482 0.281197 -0.501014 0.484165 -0.131885 -0.864980 -0.309306 -0.950544 -0.028200 -0.843446 0.193865 -0.501014 0.495321 -0.080415 -0.864980 -0.207979 -0.977727 -0.028200 -0.859119 0.104399 -0.501014 0.501022 -0.028059 -0.864980 -0.104361 -0.994140 -0.028200 -0.865318 0.014487 -0.501014 0.501223 0.024198 -0.864980 -0.000407 -0.999602 -0.028200 -0.862071 -0.076285 -0.501014 0.495926 0.076596 -0.864980 0.104361 -0.994140 -0.028200 -0.849328 -0.166216 -0.501014 0.485167 0.128151 -0.864980 0.207979 -0.977727 -0.028200 -0.827229 -0.254316 -0.501014 0.469064 0.178294 -0.864980 0.309306 -0.950544 -0.028200 -0.796359 -0.338819 -0.501014 0.448020 0.226026 -0.864980 0.406313 -0.913299 -0.028200 -0.756462 -0.420417 -0.501014 0.421864 0.271737 -0.864980 0.499796 -0.865684 -0.028200 -0.708233 -0.497384 -0.501014 0.391060 0.314454 -0.864980 0.587773 -0.808534 -0.028200 -0.652772 -0.568220 -0.501014 0.356303 0.353352 -0.864980 0.668533 -0.743147 -0.028200 -0.589623 -0.633506 -0.501014 0.317307 0.388750 -0.864980 0.742739 -0.668987 -0.028200 -0.519980 -0.691814 -0.501014 0.274816 0.419865 -0.864980 0.808763 -0.587458 -0.028200 -0.444609 -0.742501 -0.501014 0.229297 0.446355 -0.864980 0.865878 -0.499459 -0.028200 -0.365126 -0.784645 -0.501014 0.181721 0.467747 -0.864980 0.913050 -0.406871 -0.028200 -0.280879 -0.818592 -0.501014 0.131697 0.484217 -0.864980 0.950665 -0.308936 -0.028200 -0.193537 -0.843522 -0.501014 0.080222 0.495353 -0.864980 0.977808 -0.207598 -0.028200 -0.104923 -0.859056 -0.501014 0.028365 0.501004 -0.864980 0.994076 -0.104968 -0.028200 -0.014310 -0.865321 -0.501014 -0.024300 0.501218 -0.864980 0.999602 -0.000204 -0.028200 0.076460 -0.862055 -0.501014 -0.076697 0.495911 -0.864980 0.994118 0.104563 -0.028200 0.166389 -0.849294 -0.501014 -0.128250 0.485141 -0.864980 0.977684 0.208178 -0.028200 0.253657 -0.827432 -0.501014 -0.177921 0.469206 -0.864980 0.950790 0.308549 -0.028200 0.338981 -0.796290 -0.501014 -0.226117 0.447974 -0.864980 0.913216 0.406499 -0.028200 0.420571 -0.756377 -0.501014 -0.271823 0.421808 -0.864980 0.865582 0.499972 -0.028200 0.497528 -0.708132 -0.501014 -0.314534 0.390996 -0.864980 0.808414 0.587938 -0.028200 0.568353 -0.652656 -0.501014 -0.353425 0.356231 -0.864980 0.743011 0.668685 -0.028200 0.633626 -0.589494 -0.501014 -0.388814 0.317228 -0.864980 0.668836 0.742875 -0.028200 0.691920 -0.519839 -0.501014 -0.419921 0.274730 -0.864980 0.587294 0.808882 -0.028200 0.742147 -0.445200 -0.501014 -0.446172 0.229653 -0.864980 0.500148 0.865480 -0.028200 0.784720 -0.364966 -0.501014 -0.467784 0.181626 -0.864980 0.406685 0.913133 -0.028200 0.818649 -0.280712 -0.501014 -0.484243 0.131598 -0.864980 0.308743 0.950727 -0.028200 0.843561 -0.193366 -0.501014 -0.495369 0.080122 -0.864980 0.207399 0.977850 -0.028200 0.859077 -0.104748 -0.501014 -0.501010 0.028263 -0.864980 0.104765 0.994097 -0.028200 0.865324 -0.014134 -0.501014 -0.501213 -0.024402 -0.864980 0.000000 0.999602 -0.028200 0.862040 0.076636 -0.501014 -0.495895 -0.076798 -0.864980 -0.104765 0.994097 -0.028200 0.849426 0.165712 -0.501014 -0.485243 -0.127864 -0.864980 -0.207399 0.977850 -0.028200 0.827380 0.253826 -0.501014 -0.469170 -0.178016 -0.864980 -0.308743 0.950727 -0.028200 0.796221 0.339143 -0.501014 -0.447928 -0.226208 -0.864980 -0.406685 0.913133 -0.028200 0.756291 0.420725 -0.501014 -0.421753 -0.271909 -0.864980 -0.500148 0.865480 -0.028200 0.708528 0.496964 -0.501014 -0.391247 -0.314223 -0.864980 -0.587294 0.808882 -0.028200 0.652540 0.568486 -0.501014 -0.356159 -0.353498 -0.864980 -0.668836 0.742875 -0.028200 0.589365 0.633746 -0.501014 -0.317149 -0.388879 -0.864980 -0.743011 0.668685 -0.028200 0.520390 0.691505 -0.501014 -0.275064 -0.419702 -0.864980 -0.808414 0.587938 -0.028200 0.445049 0.742238 -0.501014 -0.229562 -0.446219 -0.864980 -0.865582 0.499972 -0.028200 0.364806 0.784794 -0.501014 -0.181531 -0.467821 -0.864980 -0.913216 0.406499 -0.028200 0.280545 0.818706 -0.501014 -0.131500 -0.484270 -0.864980 -0.950790 0.308549 -0.028200 0.194037 0.843407 -0.501014 -0.080516 -0.495305 -0.864980 -0.977684 0.208178 -0.028200 0.104574 0.859098 -0.501014 -0.028161 -0.501016 -0.864980 -0.994118 0.104563 -0.028200 0.677104 -0.220242 -0.702156 -0.152772 -0.975445 0.158641 -0.719854 -0.000147 -0.694125 0.696458 -0.148063 -0.702156 -0.049697 -0.986085 0.158641 -0.715874 -0.075592 -0.694125 0.708066 -0.074962 -0.702156 0.052939 -0.985916 0.158641 -0.704159 -0.149500 -0.694125 0.712023 -0.000339 -0.702156 0.155979 -0.974938 0.158641 -0.684612 -0.222478 -0.694125 0.708137 0.074288 -0.702156 0.257300 -0.953221 0.158641 -0.657525 -0.293005 -0.694125 0.696599 0.147400 -0.702156 0.354866 -0.921359 0.158641 -0.623554 -0.359681 -0.694125 0.677314 0.219597 -0.702156 0.449477 -0.879092 0.158641 -0.582423 -0.423053 -0.694125 0.650568 0.289375 -0.702156 0.539137 -0.827142 0.158641 -0.534876 -0.481765 -0.694125 0.616657 0.355965 -0.702156 0.622858 -0.766082 0.158641 -0.481438 -0.535171 -0.694125 0.576371 0.418059 -0.702156 0.699021 -0.697282 0.158641 -0.423279 -0.582258 -0.694125 0.529381 0.476164 -0.702156 0.768252 -0.620179 0.158641 -0.359923 -0.623414 -0.694125 0.476560 0.529025 -0.702156 0.829020 -0.536245 0.158641 -0.292603 -0.657704 -0.694125 0.419066 0.575639 -0.702156 0.880210 -0.447285 0.158641 -0.222744 -0.684526 -0.694125 0.356427 0.616390 -0.702156 0.922241 -0.352570 0.158641 -0.149774 -0.704101 -0.694125 0.289862 0.650351 -0.702156 0.954113 -0.253970 0.158641 -0.075154 -0.715921 -0.694125 0.220655 0.676970 -0.702156 0.975352 -0.153368 0.158641 -0.000293 -0.719854 -0.694125 0.148489 0.696368 -0.702156 0.986054 -0.050300 0.158641 0.075154 -0.715921 -0.694125 0.074687 0.708095 -0.702156 0.985895 0.053323 0.158641 0.149774 -0.704101 -0.694125 0.000062 0.712023 -0.702156 0.974877 0.156358 0.158641 0.222744 -0.684526 -0.694125 -0.073855 0.708182 -0.702156 0.953378 0.256718 0.158641 0.292603 -0.657704 -0.694125 -0.147671 0.696541 -0.702156 0.921221 0.355225 0.158641 0.359923 -0.623414 -0.694125 -0.219860 0.677228 -0.702156 0.878918 0.449819 0.158641 0.423279 -0.582258 -0.694125 -0.288977 0.650745 -0.702156 0.827472 0.538631 0.158641 0.481438 -0.535171 -0.694125 -0.355588 0.616874 -0.702156 0.766462 0.622390 0.158641 0.534876 -0.481765 -0.694125 -0.418283 0.576208 -0.702156 0.697010 0.699293 0.158641 0.582423 -0.423053 -0.694125 -0.476370 0.529196 -0.702156 0.619880 0.768493 0.158641 0.623554 -0.359681 -0.694125 -0.528733 0.476883 -0.702156 0.536752 0.828692 0.158641 0.657525 -0.293005 -0.694125 -0.575802 0.418842 -0.702156 0.446943 0.880383 0.158641 0.684612 -0.222478 -0.694125 -0.616529 0.356187 -0.702156 0.352211 0.922378 0.158641 0.704159 -0.149500 -0.694125 -0.650174 0.290259 -0.702156 0.254553 0.953958 0.158641 0.715874 -0.075592 -0.694125 -0.677015 0.220518 -0.702156 0.153170 0.975383 0.158641 0.719854 -0.000147 -0.694125 -0.696398 0.148347 -0.702156 0.050099 0.986064 0.158641 0.715905 0.075300 -0.694125 -0.708110 0.074543 -0.702156 -0.053524 0.985884 0.158641 0.704070 0.149917 -0.694125 -0.712023 0.000629 -0.702156 -0.155582 0.975001 0.158641 0.684703 0.222199 -0.694125 -0.708167 -0.074000 -0.702156 -0.256912 0.953325 0.158641 0.657644 0.292737 -0.694125 -0.696511 -0.147813 -0.702156 -0.355412 0.921149 0.158641 0.623341 0.360050 -0.694125 -0.677183 -0.219998 -0.702156 -0.449998 0.878826 0.158641 0.582172 0.423398 -0.694125 -0.650686 -0.289110 -0.702156 -0.538800 0.827362 0.158641 0.535073 0.481547 -0.694125 -0.616802 -0.355714 -0.702156 -0.622546 0.766335 0.158641 0.481656 0.534975 -0.694125 -0.576123 -0.418400 -0.702156 -0.699435 0.696867 0.158641 0.422934 0.582509 -0.694125 -0.529575 -0.475948 -0.702156 -0.767999 0.620492 0.158641 0.360177 0.623268 -0.694125 -0.476776 -0.528830 -0.702156 -0.828801 0.536583 0.158641 0.292871 0.657584 -0.694125 -0.418725 -0.575887 -0.702156 -0.880475 0.446763 0.158641 0.222338 0.684658 -0.694125 -0.356061 -0.616601 -0.702156 -0.922449 0.352023 0.158641 0.149357 0.704190 -0.694125 -0.290127 -0.650233 -0.702156 -0.954010 0.254359 0.158641 0.075446 0.715890 -0.694125 -0.220380 -0.677059 -0.702156 -0.975414 0.152971 0.158641 0.000000 0.719854 -0.694125 -0.148205 -0.696428 -0.702156 -0.986075 0.049898 0.158641 -0.075446 0.715890 -0.694125 -0.075106 -0.708051 -0.702156 -0.985927 -0.052738 0.158641 -0.149357 0.704190 -0.694125 -0.000484 -0.712023 -0.702156 -0.974970 -0.155780 0.158641 -0.222338 0.684658 -0.694125 0.074144 -0.708152 -0.702156 -0.953273 -0.257106 0.158641 -0.292871 0.657584 -0.694125 0.147955 -0.696481 -0.702156 -0.921076 -0.355600 0.158641 -0.360177 0.623268 -0.694125 0.219459 -0.677358 -0.702156 -0.879184 -0.449298 0.158641 -0.422934 0.582509 -0.694125 0.289242 -0.650627 -0.702156 -0.827252 -0.538968 0.158641 -0.481656 0.534975 -0.694125 0.355840 -0.616729 -0.702156 -0.766208 -0.622702 0.158641 -0.535073 0.481547 -0.694125 0.417941 -0.576456 -0.702156 -0.697424 -0.698879 0.158641 -0.582172 0.423398 -0.694125 0.476056 -0.529478 -0.702156 -0.620336 -0.768125 0.158641 -0.623341 0.360050 -0.694125 0.528927 -0.476668 -0.702156 -0.536414 -0.828911 0.158641 -0.657644 0.292737 -0.694125 0.575973 -0.418607 -0.702156 -0.446584 -0.880565 0.158641 -0.684703 0.222199 -0.694125 0.616317 -0.356552 -0.702156 -0.352757 -0.922169 0.158641 -0.704070 0.149917 -0.694125 0.650292 -0.289994 -0.702156 -0.254165 -0.954061 0.158641 -0.715905 0.075300 -0.694125 -0.170067 -0.983772 -0.057182 0.932590 -0.179423 0.313184 -0.318361 -0.000065 0.947970 -0.066024 -0.996178 -0.057182 0.946258 -0.080692 0.313184 -0.316601 -0.033431 0.947970 0.037749 -0.997650 -0.057182 0.949522 0.017977 0.313184 -0.311420 -0.066118 0.947970 0.142102 -0.988199 -0.057182 0.942409 0.117395 0.313184 -0.302775 -0.098392 0.947970 0.244889 -0.967863 -0.057182 0.924915 0.215520 0.313184 -0.290795 -0.129583 0.947970 0.344043 -0.937211 -0.057182 0.897544 0.310373 0.313184 -0.275772 -0.159072 0.947970 0.440374 -0.895992 -0.057182 0.860071 0.402732 0.313184 -0.257581 -0.187098 0.947970 0.531855 -0.844903 -0.057182 0.813125 0.490656 0.313184 -0.236553 -0.213064 0.947970 0.617478 -0.784507 -0.057182 0.757223 0.573175 0.313184 -0.212920 -0.236683 0.947970 0.695583 -0.716166 -0.057182 0.693628 0.648688 0.313184 -0.187198 -0.257508 0.947970 0.766812 -0.639320 -0.057182 0.621821 0.717812 0.313184 -0.159179 -0.275710 0.947970 0.829594 -0.555431 -0.057182 0.543165 0.779030 0.313184 -0.129406 -0.290874 0.947970 0.882772 -0.466308 -0.057182 0.459357 0.831208 0.313184 -0.098510 -0.302737 0.947970 0.926783 -0.371219 -0.057182 0.369710 0.874774 0.313184 -0.066239 -0.311394 0.947970 0.960585 -0.272041 -0.057182 0.275992 0.908705 0.313184 -0.033238 -0.316621 0.947970 0.983668 -0.170668 -0.057182 0.179992 0.932480 0.313184 -0.000130 -0.318361 0.947970 0.996138 -0.066633 -0.057182 0.081271 0.946209 0.313184 0.033238 -0.316621 0.947970 0.997635 0.038137 -0.057182 -0.018346 0.949515 0.313184 0.066239 -0.311394 0.947970 0.988144 0.142486 -0.057182 -0.117761 0.942363 0.313184 0.098510 -0.302737 0.947970 0.968013 0.244298 -0.057182 -0.214954 0.925046 0.313184 0.129406 -0.290874 0.947970 0.937077 0.344407 -0.057182 -0.310722 0.897423 0.313184 0.159179 -0.275710 0.947970 0.895820 0.440723 -0.057182 -0.403067 0.859915 0.313184 0.187198 -0.257508 0.947970 0.845227 0.531339 -0.057182 -0.490159 0.813425 0.313184 0.212920 -0.236683 0.947970 0.784884 0.616999 -0.057182 -0.572712 0.757573 0.313184 0.236553 -0.213064 0.947970 0.715895 0.695862 -0.057182 -0.648957 0.693376 0.313184 0.257581 -0.187098 0.947970 0.639022 0.767060 -0.057182 -0.718054 0.621542 0.313184 0.275772 -0.159072 0.947970 0.555938 0.829254 -0.057182 -0.778698 0.543641 0.313184 0.290795 -0.129583 0.947970 0.465965 0.882954 -0.057182 -0.831387 0.459033 0.313184 0.302775 -0.098392 0.947970 0.370858 0.926927 -0.057182 -0.874918 0.369370 0.313184 0.311420 -0.066118 0.947970 0.272628 0.960419 -0.057182 -0.908536 0.276547 0.313184 0.316601 -0.033431 0.947970 0.170468 0.983703 -0.057182 -0.932517 0.179803 0.313184 0.318361 -0.000065 0.947970 0.066430 0.996151 -0.057182 -0.946225 0.081078 0.313184 0.316614 0.033302 0.947970 -0.038340 0.997627 -0.057182 -0.949512 -0.018540 0.313184 0.311380 0.066302 0.947970 -0.141699 0.988257 -0.057182 -0.942457 -0.117011 0.313184 0.302815 0.098269 0.947970 -0.244495 0.967963 -0.057182 -0.925003 -0.215143 0.313184 0.290848 0.129465 0.947970 -0.344598 0.937007 -0.057182 -0.897360 -0.310905 0.313184 0.275677 0.159235 0.947970 -0.440905 0.895730 -0.057182 -0.859832 -0.403242 0.313184 0.257470 0.187251 0.947970 -0.531511 0.845119 -0.057182 -0.813325 -0.490325 0.313184 0.236640 0.212968 0.947970 -0.617158 0.784758 -0.057182 -0.757456 -0.572867 0.313184 0.213016 0.236596 0.947970 -0.696008 0.715754 -0.057182 -0.693244 -0.649099 0.313184 0.187046 0.257619 0.947970 -0.766551 0.639632 -0.057182 -0.622114 -0.717559 0.313184 0.159291 0.275645 0.947970 -0.829368 0.555769 -0.057182 -0.543482 -0.778809 0.313184 0.129524 0.290822 0.947970 -0.883049 0.465785 -0.057182 -0.458864 -0.831480 0.313184 0.098331 0.302795 0.947970 -0.927003 0.370670 -0.057182 -0.369192 -0.874993 0.313184 0.066054 0.311433 0.947970 -0.960474 0.272432 -0.057182 -0.276362 -0.908592 0.313184 0.033367 0.316608 0.947970 -0.983737 0.170267 -0.057182 -0.179613 -0.932553 0.313184 0.000000 0.318361 0.947970 -0.996165 0.066227 -0.057182 -0.080885 -0.946242 0.313184 -0.033367 0.316608 0.947970 -0.997658 -0.037545 -0.057182 0.017784 -0.949526 0.313184 -0.066054 0.311433 0.947970 -0.988228 -0.141900 -0.057182 0.117203 -0.942433 0.313184 -0.098331 0.302795 0.947970 -0.967913 -0.244692 -0.057182 0.215331 -0.924959 0.313184 -0.129524 0.290822 0.947970 -0.936937 -0.344789 -0.057182 0.311087 -0.897296 0.313184 -0.159291 0.275645 0.947970 -0.896081 -0.440192 -0.057182 0.402557 -0.860153 0.313184 -0.187046 0.257619 0.947970 -0.845011 -0.531683 -0.057182 0.490490 -0.813225 0.313184 -0.213016 0.236596 0.947970 -0.784633 -0.617318 -0.057182 0.573021 -0.757339 0.313184 -0.236640 0.212968 0.947970 -0.716308 -0.695437 -0.057182 0.648546 -0.693761 0.313184 -0.257470 0.187251 0.947970 -0.639476 -0.766682 -0.057182 0.717686 -0.621967 0.313184 -0.275677 0.159235 0.947970 -0.555600 -0.829481 -0.057182 0.778920 -0.543323 0.313184 -0.290848 0.129465 0.947970 -0.465605 -0.883143 -0.057182 0.831574 -0.458695 0.313184 -0.302815 0.098269 0.947970 -0.371408 -0.926707 -0.057182 0.874699 -0.369889 0.313184 -0.311380 0.066302 0.947970 -0.272237 -0.960530 -0.057182 0.908649 -0.276177 0.313184 -0.316614 0.033302 0.947970 -0.063775 0.997743 -0.020997 -0.947405 -0.067143 -0.312914 -0.313617 -0.000064 0.949549 -0.167995 0.985564 -0.020997 -0.935151 -0.166068 -0.312914 -0.311883 -0.032933 0.949549 -0.269401 0.962799 -0.020997 -0.912858 -0.262251 -0.312914 -0.306779 -0.065132 0.949549 -0.368826 0.929261 -0.020997 -0.880345 -0.356481 -0.312914 -0.298263 -0.096926 0.949549 -0.464188 0.885488 -0.020997 -0.838134 -0.446784 -0.312914 -0.286462 -0.127653 0.949549 -0.553605 0.832515 -0.020997 -0.787224 -0.531379 -0.312914 -0.271662 -0.156701 0.949549 -0.637809 0.769908 -0.020997 -0.727196 -0.610959 -0.312914 -0.253743 -0.184310 0.949549 -0.714988 0.698821 -0.020997 -0.659158 -0.683810 -0.312914 -0.233028 -0.209889 0.949549 -0.784292 0.620037 -0.020997 -0.583860 -0.749128 -0.312914 -0.209747 -0.233156 0.949549 -0.844422 0.535267 -0.020997 -0.502936 -0.805692 -0.312914 -0.184409 -0.253671 0.949549 -0.895871 0.443817 -0.020997 -0.415724 -0.853966 -0.312914 -0.156807 -0.271601 0.949549 -0.937452 0.347479 -0.020997 -0.323933 -0.892834 -0.312914 -0.127478 -0.286540 0.949549 -0.968460 0.248283 -0.020997 -0.229495 -0.921638 -0.312914 -0.097042 -0.298226 0.949549 -0.989148 0.145414 -0.020997 -0.131637 -0.940615 -0.312914 -0.065252 -0.306754 0.949549 -0.998941 0.040943 -0.020997 -0.032329 -0.949231 -0.312914 -0.032742 -0.311903 0.949549 -0.997782 -0.063166 -0.020997 0.066564 -0.947446 -0.312914 -0.000128 -0.313617 0.949549 -0.985667 -0.167393 -0.020997 0.165497 -0.935252 -0.312914 0.032742 -0.311903 0.949549 -0.962694 -0.269776 -0.020997 0.262606 -0.912756 -0.312914 0.065252 -0.306754 0.949549 -0.929118 -0.369187 -0.020997 0.356823 -0.880206 -0.312914 0.097042 -0.298226 0.949549 -0.885771 -0.463647 -0.020997 0.446272 -0.838407 -0.312914 0.127478 -0.286540 0.949549 -0.832300 -0.553928 -0.020997 0.531685 -0.787017 -0.312914 0.156807 -0.271601 0.949549 -0.769660 -0.638108 -0.020997 0.611242 -0.726958 -0.312914 0.184409 -0.253671 0.949549 -0.699258 -0.714561 -0.020997 0.683407 -0.659576 -0.312914 0.209747 -0.233156 0.949549 -0.620516 -0.783913 -0.020997 0.748771 -0.584317 -0.312914 0.233028 -0.209889 0.949549 -0.534938 -0.844630 -0.020997 0.805888 -0.502623 -0.312914 0.253743 -0.184310 0.949549 -0.443469 -0.896044 -0.020997 0.854128 -0.415392 -0.312914 0.271662 -0.156701 0.949549 -0.348052 -0.937240 -0.020997 0.892636 -0.324478 -0.312914 0.286462 -0.127653 0.949549 -0.247906 -0.968557 -0.020997 0.921728 -0.229136 -0.312914 0.298263 -0.096926 0.949549 -0.145029 -0.989205 -0.020997 0.940666 -0.131271 -0.312914 0.306779 -0.065132 0.949549 -0.041553 -0.998916 -0.020997 0.949211 -0.032908 -0.312914 0.311883 -0.032933 0.949549 0.063369 -0.997769 -0.020997 0.947433 0.066757 -0.312914 0.313617 -0.000064 0.949549 0.167593 -0.985633 -0.020997 0.935218 0.165687 -0.312914 0.311897 0.032806 0.949549 0.269972 -0.962639 -0.020997 0.912702 0.262792 -0.312914 0.306741 0.065314 0.949549 0.368447 -0.929412 -0.020997 0.880490 0.356122 -0.312914 0.298303 0.096805 0.949549 0.463827 -0.885677 -0.020997 0.838316 0.446443 -0.312914 0.286514 0.127536 0.949549 0.554098 -0.832187 -0.020997 0.786909 0.531845 -0.312914 0.271569 0.156862 0.949549 0.638265 -0.769530 -0.020997 0.726834 0.611390 -0.312914 0.253633 0.184461 0.949549 0.714704 -0.699112 -0.020997 0.659437 0.683541 -0.312914 0.233114 0.209794 0.949549 0.784039 -0.620356 -0.020997 0.584165 0.748890 -0.312914 0.209842 0.233071 0.949549 0.844739 -0.534766 -0.020997 0.502459 0.805990 -0.312914 0.184259 0.253780 0.949549 0.895690 -0.444182 -0.020997 0.416072 0.853797 -0.312914 0.156918 0.271538 0.949549 0.937311 -0.347861 -0.020997 0.324296 0.892702 -0.312914 0.127594 0.286488 0.949549 0.968607 -0.247709 -0.020997 0.228949 0.921774 -0.312914 0.096866 0.298283 0.949549 0.989234 -0.144827 -0.020997 0.131079 0.940693 -0.312914 0.065070 0.306793 0.949549 0.998924 -0.041350 -0.020997 0.032715 0.949218 -0.312914 0.032869 0.311890 0.949549 0.997756 0.063572 -0.020997 -0.066950 0.947419 -0.312914 0.000000 0.313617 0.949549 0.985598 0.167794 -0.020997 -0.165877 0.935184 -0.312914 -0.032869 0.311890 0.949549 0.962854 0.269205 -0.020997 -0.262065 0.912911 -0.312914 -0.065070 0.306793 0.949549 0.929336 0.368636 -0.020997 -0.356302 0.880417 -0.312914 -0.096866 0.298283 0.949549 0.885583 0.464007 -0.020997 -0.446613 0.838225 -0.312914 -0.127594 0.286488 0.949549 0.832074 0.554267 -0.020997 -0.532006 0.786801 -0.312914 -0.156918 0.271538 0.949549 0.770038 0.637652 -0.020997 -0.610811 0.727321 -0.312914 -0.184259 0.253780 0.949549 0.698967 0.714846 -0.020997 -0.683675 0.659298 -0.312914 -0.209842 0.233071 0.949549 0.620196 0.784166 -0.020997 -0.749009 0.584012 -0.312914 -0.233114 0.209794 0.949549 0.535439 0.844313 -0.020997 -0.805590 0.503100 -0.312914 -0.253633 0.184461 0.949549 0.444000 0.895781 -0.020997 -0.853882 0.415898 -0.312914 -0.271569 0.156862 0.949549 0.347670 0.937382 -0.020997 -0.892768 0.324115 -0.312914 -0.286514 0.127536 0.949549 0.247511 0.968657 -0.020997 -0.921821 0.228761 -0.312914 -0.298303 0.096805 0.949549 0.145615 0.989118 -0.020997 -0.940588 0.131828 -0.312914 -0.306741 0.065314 0.949549 0.041146 0.998932 -0.020997 -0.949225 0.032522 -0.312914 -0.311897 0.032806 0.949549 0.511913 -0.614752 -0.600021 -0.398850 -0.788720 0.467802 -0.760831 -0.000155 -0.648950 0.573524 -0.557714 -0.600021 -0.313990 -0.826179 0.467802 -0.756625 -0.079895 -0.648950 0.628323 -0.495162 -0.600021 -0.226526 -0.854311 0.467802 -0.744242 -0.158010 -0.648950 0.676759 -0.426582 -0.600021 -0.135740 -0.873348 0.467802 -0.723583 -0.235142 -0.648950 0.717740 -0.353303 -0.600021 -0.043460 -0.882764 0.467802 -0.694953 -0.309684 -0.648950 0.750540 -0.276884 -0.600021 0.048417 -0.882506 0.467802 -0.659049 -0.380155 -0.648950 0.775426 -0.196697 -0.600021 0.140643 -0.872571 0.467802 -0.615577 -0.447134 -0.648950 0.791770 -0.114344 -0.600021 0.231321 -0.853025 0.467802 -0.565323 -0.509189 -0.648950 0.799394 -0.030731 -0.600021 0.319450 -0.824083 0.467802 -0.508843 -0.565634 -0.648950 0.798265 0.052422 -0.600021 0.403274 -0.786468 0.467802 -0.447374 -0.615403 -0.648950 0.788374 0.135798 -0.600021 0.483481 -0.739870 0.467802 -0.380411 -0.658901 -0.648950 0.769800 0.217677 -0.600021 0.558362 -0.685123 0.467802 -0.309259 -0.695142 -0.648950 0.743043 0.296416 -0.600021 0.626469 -0.623457 0.467802 -0.235423 -0.723491 -0.648950 0.707884 0.372659 -0.600021 0.688362 -0.554364 0.467802 -0.158300 -0.744181 -0.648950 0.664928 0.444798 -0.600021 0.742672 -0.479166 0.467802 -0.079432 -0.756673 -0.648950 0.615065 0.511537 -0.600021 0.788477 -0.399332 0.467802 -0.000310 -0.760831 -0.648950 0.558065 0.573183 -0.600021 0.825987 -0.314495 0.467802 0.079432 -0.756673 -0.648950 0.494917 0.628515 -0.600021 0.854399 -0.226193 0.467802 0.158300 -0.744181 -0.648950 0.426319 0.676925 -0.600021 0.873400 -0.135401 0.467802 0.235423 -0.723491 -0.648950 0.353742 0.717524 -0.600021 0.882738 -0.043999 0.467802 0.309259 -0.695142 -0.648950 0.276592 0.750647 -0.600021 0.882487 0.048760 0.467802 0.380411 -0.658901 -0.648950 0.196396 0.775502 -0.600021 0.872517 0.140983 0.467802 0.447374 -0.615403 -0.648950 0.114827 0.791700 -0.600021 0.853167 0.230800 0.467802 0.508843 -0.565634 -0.648950 0.031219 0.799375 -0.600021 0.824278 0.318946 0.467802 0.565323 -0.509189 -0.648950 -0.052733 0.798244 -0.600021 0.786311 0.403580 0.467802 0.615577 -0.447134 -0.648950 -0.136104 0.788321 -0.600021 0.739682 0.483768 0.467802 0.659049 -0.380155 -0.648950 -0.217207 0.769932 -0.600021 0.685464 0.557943 0.467802 0.694953 -0.309684 -0.648950 -0.296705 0.742927 -0.600021 0.623213 0.626712 0.467802 0.723583 -0.235142 -0.648950 -0.372935 0.707739 -0.600021 0.554097 0.688577 0.467802 0.744242 -0.158010 -0.648950 -0.444392 0.665200 -0.600021 0.479620 0.742379 0.467802 0.756625 -0.079895 -0.648950 -0.511662 0.614960 -0.600021 0.399172 0.788558 0.467802 0.760831 -0.000155 -0.648950 -0.573297 0.557948 -0.600021 0.314327 0.826051 0.467802 0.756657 0.079586 -0.648950 -0.628616 0.494789 -0.600021 0.226019 0.854445 0.467802 0.744149 0.158451 -0.648950 -0.676585 0.426858 -0.600021 0.136096 0.873292 0.467802 0.723679 0.234847 -0.648950 -0.717596 0.353596 -0.600021 0.043819 0.882747 0.467802 0.695079 0.309400 -0.648950 -0.750704 0.276439 -0.600021 -0.048940 0.882477 0.467802 0.658824 0.380546 -0.648950 -0.775542 0.196238 -0.600021 -0.141161 0.872488 0.467802 0.615311 0.447499 -0.648950 -0.791724 0.114666 -0.600021 -0.230973 0.853119 0.467802 0.565531 0.508959 -0.648950 -0.799381 0.031056 -0.600021 -0.319114 0.824213 0.467802 0.509074 0.565427 -0.648950 -0.798234 -0.052896 -0.600021 -0.403740 0.786229 0.467802 0.447009 0.615668 -0.648950 -0.788429 -0.135476 -0.600021 -0.483179 0.740067 0.467802 0.380680 0.658746 -0.648950 -0.769888 -0.217363 -0.600021 -0.558082 0.685351 0.467802 0.309542 0.695016 -0.648950 -0.742867 -0.296856 -0.600021 -0.626839 0.623085 0.467802 0.234994 0.723631 -0.648950 -0.707663 -0.373079 -0.600021 -0.688690 0.553956 0.467802 0.157859 0.744274 -0.648950 -0.665109 -0.444527 -0.600021 -0.742477 0.479469 0.467802 0.079741 0.756641 -0.648950 -0.614856 -0.511787 -0.600021 -0.788639 0.399011 0.467802 0.000000 0.760831 -0.648950 -0.557831 -0.573410 -0.600021 -0.826115 0.314158 0.467802 -0.079741 0.756641 -0.648950 -0.495290 -0.628222 -0.600021 -0.854265 0.226700 0.467802 -0.157859 0.744274 -0.648950 -0.426720 -0.676672 -0.600021 -0.873320 0.135918 0.467802 -0.234994 0.723631 -0.648950 -0.353450 -0.717668 -0.600021 -0.882755 0.043639 0.467802 -0.309542 0.695016 -0.648950 -0.276286 -0.750760 -0.600021 -0.882467 -0.049120 0.467802 -0.380680 0.658746 -0.648950 -0.196855 -0.775385 -0.600021 -0.872600 -0.140466 0.467802 -0.447009 0.615668 -0.648950 -0.114505 -0.791747 -0.600021 -0.853072 -0.231147 0.467802 -0.509074 0.565427 -0.648950 -0.030894 -0.799387 -0.600021 -0.824148 -0.319282 0.467802 -0.565531 0.508959 -0.648950 0.052260 -0.798275 -0.600021 -0.786550 -0.403114 0.467802 -0.615311 0.447499 -0.648950 0.135637 -0.788402 -0.600021 -0.739969 -0.483330 0.467802 -0.658824 0.380546 -0.648950 0.217520 -0.769844 -0.600021 -0.685237 -0.558222 0.467802 -0.695079 0.309400 -0.648950 0.297007 -0.742806 -0.600021 -0.622957 -0.626965 0.467802 -0.723679 0.234847 -0.648950 0.372515 -0.707960 -0.600021 -0.554505 -0.688249 0.467802 -0.744149 0.158451 -0.648950 0.444663 -0.665018 -0.600021 -0.479317 -0.742574 0.467802 -0.756657 0.079586 -0.648950 -0.046726 -0.997988 -0.042851 0.736989 -0.063400 0.672925 -0.674288 -0.000137 0.738469 0.058127 -0.997389 -0.042851 0.739575 0.014191 0.672925 -0.670560 -0.070807 0.738469 0.161355 -0.985966 -0.042851 0.734105 0.090892 0.672925 -0.659586 -0.140037 0.738469 0.263803 -0.963624 -0.042851 0.720536 0.167331 0.672925 -0.641277 -0.208395 0.738469 0.363344 -0.930669 -0.042851 0.699030 0.241926 0.672925 -0.615904 -0.274458 0.738469 0.457997 -0.887921 -0.042851 0.670138 0.313188 0.672925 -0.584084 -0.336913 0.738469 0.548534 -0.835029 -0.042851 0.633623 0.381698 0.672925 -0.545556 -0.396274 0.738469 0.633030 -0.772940 -0.042851 0.590129 0.446004 0.672925 -0.501019 -0.451270 0.738469 0.710554 -0.702337 -0.042851 0.540135 0.505397 0.672925 -0.450963 -0.501295 0.738469 0.779626 -0.624778 -0.042851 0.484750 0.558740 0.672925 -0.396486 -0.545402 0.738469 0.840813 -0.539626 -0.042851 0.423520 0.606468 0.672925 -0.337140 -0.583953 0.738469 0.892739 -0.448531 -0.042851 0.357625 0.647515 0.672925 -0.274081 -0.616071 0.738469 0.934479 -0.353430 -0.042851 0.288473 0.681143 0.672925 -0.208644 -0.641196 0.738469 0.966374 -0.253543 -0.042851 0.215495 0.707625 0.672925 -0.140293 -0.659532 0.738469 0.987625 -0.150864 -0.042851 0.140144 0.726314 0.672925 -0.070397 -0.670603 0.738469 0.997959 -0.047336 -0.042851 0.063850 0.736950 0.672925 -0.000275 -0.674288 0.738469 0.997424 0.057518 -0.042851 -0.013739 0.739583 0.672925 0.070397 -0.670603 0.738469 0.985903 0.161739 -0.042851 -0.091177 0.734070 0.672925 0.140293 -0.659532 0.738469 0.963522 0.264177 -0.042851 -0.167611 0.720471 0.672925 0.208644 -0.641196 0.738469 0.930891 0.362776 -0.042851 -0.241499 0.699178 0.672925 0.274081 -0.616071 0.738469 0.887742 0.458342 -0.042851 -0.313448 0.670017 0.672925 0.337140 -0.583953 0.738469 0.834816 0.548859 -0.042851 -0.381944 0.633475 0.672925 0.396486 -0.545402 0.738469 0.773327 0.632558 -0.042851 -0.445643 0.590401 0.672925 0.450963 -0.501295 0.738469 0.702771 0.710125 -0.042851 -0.505067 0.540443 0.672925 0.501019 -0.451270 0.738469 0.624474 0.779869 -0.042851 -0.558928 0.484532 0.672925 0.545556 -0.396274 0.738469 0.539299 0.841023 -0.042851 -0.606632 0.423284 0.672925 0.584084 -0.336913 0.738469 0.449076 0.892465 -0.042851 -0.647297 0.358021 0.672925 0.615904 -0.274458 0.738469 0.353066 0.934616 -0.042851 -0.681255 0.288208 0.672925 0.641277 -0.208395 0.738469 0.253167 0.966473 -0.042851 -0.707709 0.215220 0.672925 0.659586 -0.140037 0.738469 0.151467 0.987533 -0.042851 -0.726228 0.140588 0.672925 0.670560 -0.070807 0.738469 0.047133 0.997969 -0.042851 -0.736963 0.063700 0.672925 0.674288 -0.000137 0.738469 -0.057721 0.997413 -0.042851 -0.739580 -0.013890 0.672925 0.670589 0.070534 0.738469 -0.161939 0.985870 -0.042851 -0.734051 -0.091327 0.672925 0.659503 0.140428 0.738469 -0.263410 0.963732 -0.042851 -0.720604 -0.167037 0.672925 0.641361 0.208134 0.738469 -0.362965 0.930817 -0.042851 -0.699129 -0.241642 0.672925 0.616015 0.274207 0.738469 -0.458523 0.887649 -0.042851 -0.669953 -0.313585 0.672925 0.583884 0.337259 0.738469 -0.549029 0.834704 -0.042851 -0.633397 -0.382073 0.672925 0.545321 0.396597 0.738469 -0.632716 0.773198 -0.042851 -0.590311 -0.445764 0.672925 0.501203 0.451065 0.738469 -0.710268 0.702626 -0.042851 -0.540340 -0.505177 0.672925 0.451167 0.501111 0.738469 -0.779996 0.624316 -0.042851 -0.484418 -0.559027 0.672925 0.396163 0.545637 0.738469 -0.840594 0.539969 -0.042851 -0.423767 -0.606295 0.672925 0.337378 0.583815 0.738469 -0.892557 0.448895 -0.042851 -0.357889 -0.647370 0.672925 0.274332 0.615959 0.738469 -0.934688 0.352876 -0.042851 -0.288069 -0.681314 0.672925 0.208264 0.641319 0.738469 -0.966525 0.252971 -0.042851 -0.215076 -0.707753 0.672925 0.139902 0.659615 0.738469 -0.987564 0.151266 -0.042851 -0.140440 -0.726257 0.672925 0.070670 0.670574 0.738469 -0.997979 0.046929 -0.042851 -0.063550 -0.736976 0.672925 0.000000 0.674288 0.738469 -0.997401 -0.057924 -0.042851 0.014041 -0.739577 0.672925 -0.070670 0.670574 0.738469 -0.985999 -0.161154 -0.042851 0.090742 -0.734124 0.672925 -0.139902 0.659615 0.738469 -0.963678 -0.263606 -0.042851 0.167184 -0.720570 0.672925 -0.208264 0.641319 0.738469 -0.930743 -0.363155 -0.042851 0.241784 -0.699080 0.672925 -0.274332 0.615959 0.738469 -0.887556 -0.458703 -0.042851 0.313721 -0.669889 0.672925 -0.337378 0.583815 0.738469 -0.835141 -0.548364 -0.042851 0.381569 -0.633701 0.672925 -0.396163 0.545637 0.738469 -0.773069 -0.632873 -0.042851 0.445884 -0.590220 0.672925 -0.451167 0.501111 0.738469 -0.702482 -0.710411 -0.042851 0.505287 -0.540238 0.672925 -0.501203 0.451065 0.738469 -0.624936 -0.779499 -0.042851 0.558641 -0.484863 0.672925 -0.545321 0.396597 0.738469 -0.539797 -0.840704 -0.042851 0.606381 -0.423643 0.672925 -0.583884 0.337259 0.738469 -0.448713 -0.892648 -0.042851 0.647443 -0.357757 0.672925 -0.616015 0.274207 0.738469 -0.352686 -0.934760 -0.042851 0.681372 -0.287930 0.672925 -0.641361 0.208134 0.738469 -0.253740 -0.966323 -0.042851 0.707582 -0.215639 0.672925 -0.659503 0.140428 0.738469 -0.151065 -0.987595 -0.042851 0.726285 -0.140292 0.672925 -0.670589 0.070534 0.738469 -0.229805 0.826979 -0.513123 -0.337715 -0.562233 -0.754879 -0.912764 -0.000186 0.408487 -0.315213 0.798339 -0.513123 -0.276929 -0.594531 -0.754879 -0.907717 -0.095849 0.408487 -0.396388 0.761303 -0.513123 -0.213713 -0.620068 -0.754879 -0.892863 -0.189564 0.408487 -0.473994 0.715566 -0.513123 -0.147549 -0.639051 -0.754879 -0.868078 -0.282098 0.408487 -0.546380 0.661947 -0.513123 -0.079759 -0.650996 -0.754879 -0.833731 -0.371525 0.408487 -0.612147 0.601649 -0.513123 -0.011746 -0.655759 -0.754879 -0.790657 -0.456070 0.408487 -0.671832 0.534178 -0.513123 0.057047 -0.653378 -0.754879 -0.738503 -0.536424 0.408487 -0.724118 0.460823 -0.513123 0.125211 -0.643801 -0.754879 -0.678215 -0.610870 0.408487 -0.768427 0.382392 -0.513123 0.191996 -0.627132 -0.754879 -0.610456 -0.678588 0.408487 -0.803973 0.300554 -0.513123 0.256063 -0.603812 -0.754879 -0.536712 -0.738294 0.408487 -0.831045 0.214636 -0.513123 0.317937 -0.573649 -0.754879 -0.456377 -0.790480 0.408487 -0.848964 0.126355 -0.513123 0.376308 -0.537168 -0.754879 -0.371016 -0.833958 0.408487 -0.857494 0.037539 -0.513123 0.430040 -0.495200 -0.754879 -0.282436 -0.867968 0.408487 -0.856706 -0.052539 -0.513123 0.479572 -0.447401 -0.754879 -0.189911 -0.892789 0.408487 -0.846481 -0.142039 -0.513123 0.523822 -0.394675 -0.754879 -0.095294 -0.907776 0.408487 -0.827119 -0.229300 -0.513123 0.562026 -0.338059 -0.754879 -0.000372 -0.912764 0.408487 -0.798532 -0.314725 -0.513123 0.594362 -0.277292 -0.754879 0.095294 -0.907776 0.408487 -0.761148 -0.396684 -0.513123 0.620151 -0.213472 -0.754879 0.189911 -0.892789 0.408487 -0.715381 -0.474273 -0.513123 0.639109 -0.147300 -0.754879 0.282436 -0.867968 0.408487 -0.662280 -0.545976 -0.513123 0.650947 -0.080157 -0.754879 0.371016 -0.833958 0.408487 -0.601411 -0.612381 -0.513123 0.655763 -0.011491 -0.754879 0.456377 -0.790480 0.408487 -0.533917 -0.672040 -0.513123 0.653356 0.057301 -0.754879 0.536712 -0.738294 0.408487 -0.461265 -0.723836 -0.513123 0.643877 0.124818 -0.754879 0.610456 -0.678588 0.408487 -0.382862 -0.768194 -0.513123 0.627249 0.191613 -0.754879 0.678215 -0.610870 0.408487 -0.300241 -0.804090 -0.513123 0.603712 0.256298 -0.754879 0.738503 -0.536424 0.408487 -0.214313 -0.831129 -0.513123 0.573525 0.318160 -0.754879 0.790657 -0.456070 0.408487 -0.126874 -0.848886 -0.513123 0.537398 0.375980 -0.754879 0.833731 -0.371525 0.408487 -0.037205 -0.857508 -0.513123 0.495032 0.430233 -0.754879 0.868078 -0.282098 0.408487 0.052873 -0.856685 -0.513123 0.447215 0.479746 -0.754879 0.892863 -0.189564 0.408487 0.141522 -0.846567 -0.513123 0.394995 0.523580 -0.754879 0.907717 -0.095849 0.408487 0.229468 -0.827073 -0.513123 0.337944 0.562095 -0.754879 0.912764 -0.000186 0.408487 0.314888 -0.798468 -0.513123 0.277171 0.594418 -0.754879 0.907756 0.095479 0.408487 0.396839 -0.761068 -0.513123 0.213346 0.620194 -0.754879 0.892750 0.190093 0.408487 0.473703 -0.715759 -0.513123 0.147809 0.638991 -0.754879 0.868192 0.281745 0.408487 0.546111 -0.662169 -0.513123 0.080024 0.650963 -0.754879 0.833882 0.371186 0.408487 0.612503 -0.601286 -0.513123 0.011358 0.655765 -0.754879 0.790387 0.456538 0.408487 0.672149 -0.533780 -0.513123 -0.057434 0.653344 -0.754879 0.738185 0.536862 0.408487 0.723930 -0.461118 -0.513123 -0.124949 0.643852 -0.754879 0.678464 0.610594 0.408487 0.768272 -0.382705 -0.513123 -0.191741 0.627210 -0.754879 0.610732 0.678339 0.408487 0.804151 -0.300077 -0.513123 -0.256421 0.603660 -0.754879 0.536274 0.738612 0.408487 0.830958 -0.214975 -0.513123 -0.317703 0.573779 -0.754879 0.456699 0.790294 0.408487 0.848912 -0.126701 -0.513123 -0.376090 0.537321 -0.754879 0.371355 0.833806 0.408487 0.857516 -0.037031 -0.513123 -0.430333 0.494945 -0.754879 0.281921 0.868135 0.408487 0.856674 0.053047 -0.513123 -0.479837 0.447117 -0.754879 0.189382 0.892901 0.408487 0.846539 0.141694 -0.513123 -0.523661 0.394888 -0.754879 0.095664 0.907737 0.408487 0.827026 0.229637 -0.513123 -0.562164 0.337830 -0.754879 0.000000 0.912764 0.408487 0.798403 0.315050 -0.513123 -0.594475 0.277050 -0.754879 -0.095664 0.907737 0.408487 0.761383 0.396233 -0.513123 -0.620024 0.213839 -0.754879 -0.189382 0.892901 0.408487 0.715662 0.473849 -0.513123 -0.639021 0.147679 -0.754879 -0.281921 0.868135 0.408487 0.662058 0.546246 -0.513123 -0.650980 0.079891 -0.754879 -0.371355 0.833806 0.408487 0.601161 0.612626 -0.513123 -0.655768 0.011224 -0.754879 -0.456699 0.790294 0.408487 0.534315 0.671724 -0.513123 -0.653390 -0.056914 -0.754879 -0.536274 0.738612 0.408487 0.460971 0.724024 -0.513123 -0.643826 -0.125080 -0.754879 -0.610732 0.678339 0.408487 0.382549 0.768350 -0.513123 -0.627171 -0.191869 -0.754879 -0.678464 0.610594 0.408487 0.300718 0.803912 -0.513123 -0.603864 -0.255940 -0.754879 -0.738185 0.536862 0.408487 0.214806 0.831001 -0.513123 -0.573714 -0.317820 -0.754879 -0.790387 0.456538 0.408487 0.126528 0.848938 -0.513123 -0.537244 -0.376199 -0.754879 -0.833882 0.371186 0.408487 0.036856 0.857523 -0.513123 -0.494857 -0.430434 -0.754879 -0.868192 0.281745 0.408487 -0.052365 0.856716 -0.513123 -0.447499 -0.479481 -0.754879 -0.892750 0.190093 0.408487 -0.141866 0.846510 -0.513123 -0.394781 -0.523741 -0.754879 -0.907756 0.095479 0.408487 -0.179362 0.614498 0.768258 0.139463 0.788918 -0.598463 -0.973848 -0.000198 -0.227202 -0.242779 0.592316 0.768258 0.056011 0.799190 -0.598463 -0.968463 -0.102263 -0.227202 -0.302957 0.563912 0.768258 -0.027258 0.800686 -0.598463 -0.952614 -0.202250 -0.227202 -0.360390 0.529054 0.768258 -0.111026 0.793420 -0.598463 -0.926171 -0.300977 -0.227202 -0.413854 0.488369 0.768258 -0.193570 0.777414 -0.598463 -0.889525 -0.396388 -0.227202 -0.462317 0.442767 0.768258 -0.273230 0.753118 -0.598463 -0.843569 -0.486591 -0.227202 -0.506176 0.391874 0.768258 -0.350657 0.720334 -0.598463 -0.787925 -0.572323 -0.227202 -0.544459 0.336665 0.768258 -0.424222 0.679616 -0.598463 -0.723602 -0.651751 -0.227202 -0.576745 0.277748 0.768258 -0.493114 0.631411 -0.598463 -0.651309 -0.724000 -0.227202 -0.602463 0.216374 0.768258 -0.555998 0.576808 -0.598463 -0.572629 -0.787702 -0.227202 -0.621822 0.152040 0.768258 -0.613390 0.515359 -0.598463 -0.486919 -0.843380 -0.227202 -0.634333 0.086031 0.768258 -0.664025 0.448233 -0.598463 -0.395845 -0.889768 -0.227202 -0.639836 0.019714 0.768258 -0.706969 0.376877 -0.598463 -0.301337 -0.926054 -0.227202 -0.638379 -0.047454 0.768258 -0.742575 0.300706 -0.598463 -0.202620 -0.952536 -0.227202 -0.629889 -0.114099 0.768258 -0.770001 0.221222 -0.598463 -0.101672 -0.968526 -0.227202 -0.614608 -0.178987 0.768258 -0.788833 0.139945 -0.598463 -0.000397 -0.973848 -0.227202 -0.592464 -0.242417 0.768258 -0.799155 0.056499 -0.598463 0.101672 -0.968526 -0.227202 -0.563794 -0.303176 0.768258 -0.800676 -0.027570 -0.598463 0.202620 -0.952536 -0.227202 -0.528914 -0.360596 0.768258 -0.793376 -0.111334 -0.598463 0.301337 -0.926054 -0.227202 -0.488622 -0.413555 0.768258 -0.777532 -0.193095 -0.598463 0.395845 -0.889768 -0.227202 -0.442587 -0.462489 0.768258 -0.753012 -0.273523 -0.598463 0.486919 -0.843380 -0.227202 -0.391677 -0.506328 0.768258 -0.720198 -0.350937 -0.598463 0.572629 -0.787702 -0.227202 -0.336998 -0.544253 0.768258 -0.679875 -0.423807 -0.598463 0.651309 -0.724000 -0.227202 -0.278100 -0.576576 0.768258 -0.631712 -0.492728 -0.598463 0.723602 -0.651751 -0.227202 -0.216139 -0.602547 0.768258 -0.576592 -0.556223 -0.598463 0.787925 -0.572323 -0.227202 -0.151798 -0.621882 0.768258 -0.515120 -0.613590 -0.598463 0.843569 -0.486591 -0.227202 -0.086418 -0.634280 0.768258 -0.448638 -0.663751 -0.598463 0.889525 -0.396388 -0.227202 -0.019465 -0.639844 0.768258 -0.376602 -0.707116 -0.598463 0.926171 -0.300977 -0.227202 0.047702 -0.638360 0.768258 -0.300417 -0.742692 -0.598463 0.952614 -0.202250 -0.227202 0.113714 -0.629959 0.768258 -0.221693 -0.769866 -0.598463 0.968463 -0.102263 -0.227202 0.179112 -0.614571 0.768258 -0.139784 -0.788861 -0.598463 0.973848 -0.000198 -0.227202 0.242537 -0.592414 0.768258 -0.056336 -0.799167 -0.598463 0.968505 0.101869 -0.227202 0.303291 -0.563732 0.768258 0.027733 -0.800670 -0.598463 0.952494 0.202814 -0.227202 0.360175 -0.529201 0.768258 0.110702 -0.793465 -0.598463 0.926293 0.300599 -0.227202 0.413655 -0.488537 0.768258 0.193254 -0.777493 -0.598463 0.889687 0.396026 -0.227202 0.462579 -0.442493 0.768258 0.273676 -0.752956 -0.598463 0.843281 0.487090 -0.227202 0.506408 -0.391574 0.768258 0.351084 -0.720126 -0.598463 0.787586 0.572790 -0.227202 0.544322 -0.336887 0.768258 0.423945 -0.679788 -0.598463 0.723867 0.651456 -0.227202 0.576632 -0.277983 0.768258 0.492857 -0.631612 -0.598463 0.651604 0.723735 -0.227202 0.602591 -0.216017 0.768258 0.556340 -0.576478 -0.598463 0.572162 0.788042 -0.227202 0.621760 -0.152293 0.768258 0.613180 -0.515608 -0.598463 0.487262 0.843181 -0.227202 0.634298 -0.086289 0.768258 0.663842 -0.448503 -0.598463 0.396207 0.889606 -0.227202 0.639848 -0.019335 0.768258 0.707192 -0.376458 -0.598463 0.300788 0.926232 -0.227202 0.638350 0.047832 0.768258 0.742753 -0.300265 -0.598463 0.202056 0.952656 -0.227202 0.629936 0.113843 0.768258 0.769911 -0.221536 -0.598463 0.102066 0.968484 -0.227202 0.614535 0.179237 0.768258 0.788890 -0.139624 -0.598463 0.000000 0.973848 -0.227202 0.592365 0.242658 0.768258 0.799178 -0.056173 -0.598463 -0.102066 0.968484 -0.227202 0.563974 0.302842 0.768258 0.800692 0.027095 -0.598463 -0.202056 0.952656 -0.227202 0.529127 0.360282 0.768258 0.793442 0.110864 -0.598463 -0.300788 0.926232 -0.227202 0.488453 0.413754 0.768258 0.777453 0.193412 -0.598463 -0.396207 0.889606 -0.227202 0.442399 0.462669 0.768258 0.752900 0.273829 -0.598463 -0.487262 0.843181 -0.227202 0.391977 0.506096 0.768258 0.720405 0.350510 -0.598463 -0.572162 0.788042 -0.227202 0.336776 0.544391 0.768258 0.679702 0.424084 -0.598463 -0.651604 0.723735 -0.227202 0.277865 0.576689 0.768258 0.631511 0.492986 -0.598463 -0.723867 0.651456 -0.227202 0.216496 0.602419 0.768258 0.576921 0.555881 -0.598463 -0.787586 0.572790 -0.227202 0.152166 0.621792 0.768258 0.515483 0.613285 -0.598463 -0.843281 0.487090 -0.227202 0.086160 0.634315 0.768258 0.448368 0.663934 -0.598463 -0.889687 0.396026 -0.227202 0.019205 0.639852 0.768258 0.376314 0.707269 -0.598463 -0.926293 0.300599 -0.227202 -0.047324 0.638388 0.768258 0.300857 0.742514 -0.598463 -0.952494 0.202814 -0.227202 -0.113971 0.629913 0.768258 0.221379 0.769956 -0.598463 -0.968505 0.101869 -0.227202 0.255208 0.924199 -0.284122 0.617879 -0.381912 -0.687291 -0.743703 -0.000151 -0.668510 0.156939 0.945856 -0.284122 0.654503 -0.315050 -0.687291 -0.739591 -0.078096 -0.668510 0.057900 0.957038 -0.284122 0.683673 -0.245402 -0.687291 -0.727488 -0.154453 -0.668510 -0.042724 0.957836 -0.284122 0.705628 -0.172397 -0.687291 -0.707293 -0.229848 -0.668510 -0.142876 0.948083 -0.284122 0.719810 -0.097492 -0.687291 -0.679308 -0.302712 -0.668510 -0.240527 0.928128 -0.284122 0.726042 -0.022240 -0.687291 -0.644213 -0.371597 -0.668510 -0.336477 0.897807 -0.284122 0.724374 0.053977 -0.687291 -0.601719 -0.437068 -0.668510 -0.428721 0.857597 -0.284122 0.714728 0.129599 -0.687291 -0.552597 -0.497726 -0.668510 -0.516242 0.807941 -0.284122 0.697208 0.203794 -0.687291 -0.497388 -0.552901 -0.668510 -0.597327 0.749983 -0.284122 0.672285 0.275072 -0.687291 -0.437303 -0.601549 -0.668510 -0.672641 0.683249 -0.284122 0.639753 0.344017 -0.687291 -0.371848 -0.644068 -0.668510 -0.740546 0.608988 -0.284122 0.600174 0.409173 -0.687291 -0.302297 -0.679493 -0.668510 -0.799765 0.528820 -0.284122 0.554454 0.469268 -0.687291 -0.230123 -0.707204 -0.668510 -0.850784 0.442086 -0.284122 0.502218 0.524794 -0.687291 -0.154736 -0.727428 -0.668510 -0.892433 0.350483 -0.284122 0.444449 0.574540 -0.687291 -0.077644 -0.739639 -0.668510 -0.924043 0.255772 -0.284122 0.382289 0.617646 -0.687291 -0.000303 -0.743703 -0.668510 -0.945760 0.157517 -0.284122 0.315450 0.654311 -0.687291 0.077644 -0.739639 -0.668510 -0.957061 0.057527 -0.284122 0.245136 0.683769 -0.687291 0.154736 -0.727428 -0.668510 -0.957819 -0.043096 -0.284122 0.172122 0.705695 -0.687291 0.230123 -0.707204 -0.668510 -0.948170 -0.142297 -0.284122 0.097932 0.719750 -0.687291 0.302297 -0.679493 -0.668510 -0.928034 -0.240888 -0.284122 0.021958 0.726050 -0.687291 0.371848 -0.644068 -0.668510 -0.897676 -0.336826 -0.284122 -0.054258 0.724353 -0.687291 0.437303 -0.601549 -0.668510 -0.857859 -0.428197 -0.284122 -0.129162 0.714807 -0.687291 0.497388 -0.552901 -0.668510 -0.808256 -0.515748 -0.284122 -0.203368 0.697333 -0.687291 0.552597 -0.497726 -0.668510 -0.749751 -0.597619 -0.284122 -0.275333 0.672178 -0.687291 0.601719 -0.437068 -0.668510 -0.682987 -0.672907 -0.284122 -0.344266 0.639619 -0.687291 0.644213 -0.371597 -0.668510 -0.609441 -0.740173 -0.284122 -0.408806 0.600424 -0.687291 0.679308 -0.302712 -0.668510 -0.528509 -0.799971 -0.284122 -0.469483 0.554271 -0.687291 0.707293 -0.229848 -0.668510 -0.441755 -0.850956 -0.284122 -0.524989 0.502013 -0.687291 0.727488 -0.154453 -0.668510 -0.351028 -0.892218 -0.284122 -0.574268 0.444800 -0.687291 0.739591 -0.078096 -0.668510 -0.255584 -0.924095 -0.284122 -0.617724 0.382163 -0.687291 0.743703 -0.000151 -0.668510 -0.157325 -0.945792 -0.284122 -0.654375 0.315317 -0.687291 0.739623 0.077795 -0.668510 -0.057332 -0.957072 -0.284122 -0.683819 0.244997 -0.687291 0.727396 0.154884 -0.668510 0.042334 -0.957853 -0.284122 -0.705558 0.172684 -0.687291 0.707387 0.229560 -0.668510 0.142490 -0.948141 -0.284122 -0.719770 0.097786 -0.687291 0.679432 0.302435 -0.668510 0.241077 -0.927985 -0.284122 -0.726055 0.021810 -0.687291 0.643992 0.371979 -0.668510 0.337009 -0.897608 -0.284122 -0.724342 -0.054406 -0.687291 0.601459 0.437425 -0.668510 0.428371 -0.857772 -0.284122 -0.714780 -0.129308 -0.687291 0.552799 0.497501 -0.668510 0.515913 -0.808151 -0.284122 -0.697291 -0.203510 -0.687291 0.497613 0.552698 -0.668510 0.597771 -0.749629 -0.284122 -0.672122 -0.275470 -0.687291 0.436946 0.601808 -0.668510 0.672363 -0.683523 -0.284122 -0.639893 -0.343756 -0.687291 0.372110 0.643916 -0.668510 0.740298 -0.609290 -0.284122 -0.600341 -0.408929 -0.687291 0.302573 0.679370 -0.668510 0.800078 -0.528346 -0.284122 -0.554176 -0.469596 -0.687291 0.229704 0.707340 -0.668510 0.851046 -0.441582 -0.284122 -0.501906 -0.525092 -0.687291 0.154305 0.727519 -0.668510 0.892290 -0.350847 -0.284122 -0.444683 -0.574359 -0.687291 0.077945 0.739607 -0.668510 0.924147 -0.255396 -0.284122 -0.382037 -0.617801 -0.687291 0.000000 0.743703 -0.668510 0.945825 -0.157132 -0.284122 -0.315183 -0.654439 -0.687291 -0.077945 0.739607 -0.668510 0.957026 -0.058095 -0.284122 -0.245541 -0.683623 -0.687291 -0.154305 0.727519 -0.668510 0.957844 0.042529 -0.284122 -0.172540 -0.705593 -0.687291 -0.229704 0.707340 -0.668510 0.948112 0.142683 -0.284122 -0.097639 -0.719790 -0.687291 -0.302573 0.679370 -0.668510 0.927936 0.241266 -0.284122 -0.021662 -0.726059 -0.687291 -0.372110 0.643916 -0.668510 0.897876 0.336294 -0.284122 0.053829 -0.724385 -0.687291 -0.436946 0.601808 -0.668510 0.857685 0.428546 -0.284122 0.129453 -0.714754 -0.687291 -0.497613 0.552698 -0.668510 0.808046 0.516077 -0.284122 0.203652 -0.697250 -0.687291 -0.552799 0.497501 -0.668510 0.750105 0.597174 -0.284122 0.274935 -0.672341 -0.687291 -0.601459 0.437425 -0.668510 0.683386 0.672502 -0.284122 0.343887 -0.639823 -0.687291 -0.643992 0.371979 -0.668510 0.609139 0.740422 -0.284122 0.409051 -0.600257 -0.687291 -0.679432 0.302435 -0.668510 0.528183 0.800186 -0.284122 0.469709 -0.554080 -0.687291 -0.707387 0.229560 -0.668510 0.442259 0.850694 -0.284122 0.524692 -0.502324 -0.687291 -0.727396 0.154884 -0.668510 0.350665 0.892361 -0.284122 0.574449 -0.444566 -0.687291 -0.739623 0.077795 -0.668510 -0.146017 -0.815305 0.560319 -0.205928 0.579032 0.788870 -0.967612 -0.000197 -0.252442 -0.059763 -0.826118 0.560319 -0.265481 0.554261 0.788870 -0.962262 -0.101609 -0.252442 0.026321 -0.827858 0.560319 -0.321585 0.523706 0.788870 -0.946515 -0.200955 -0.252442 0.112942 -0.820540 0.560319 -0.374702 0.487117 0.788870 -0.920240 -0.299049 -0.252442 0.198318 -0.804184 0.560319 -0.423692 0.445163 0.788870 -0.883830 -0.393850 -0.252442 0.280731 -0.779251 0.560319 -0.467616 0.398773 0.788870 -0.838168 -0.483475 -0.252442 0.360856 -0.745537 0.560319 -0.506835 0.347567 0.788870 -0.782880 -0.568658 -0.252442 0.437007 -0.703610 0.560319 -0.540471 0.292533 0.788870 -0.718969 -0.647578 -0.252442 0.508343 -0.653934 0.560319 -0.568154 0.234277 0.788870 -0.647138 -0.719364 -0.252442 0.573483 -0.597628 0.560319 -0.589405 0.174029 0.788870 -0.568963 -0.782659 -0.252442 0.632960 -0.534232 0.560319 -0.604399 0.111297 0.788870 -0.483801 -0.837979 -0.252442 0.685466 -0.464951 0.560319 -0.612735 0.047338 0.788870 -0.393310 -0.884070 -0.252442 0.730030 -0.391279 0.560319 -0.614338 -0.016527 0.788870 -0.299407 -0.920124 -0.252442 0.767018 -0.312611 0.560319 -0.609223 -0.080823 0.788870 -0.201323 -0.946436 -0.252442 0.795558 -0.230500 0.560319 -0.597397 -0.144229 0.788870 -0.101021 -0.962324 -0.252442 0.815215 -0.146515 0.560319 -0.579158 -0.205574 0.788870 -0.000394 -0.967612 -0.252442 0.826081 -0.060268 0.560319 -0.554423 -0.265142 0.788870 0.101021 -0.962324 -0.252442 0.827848 0.026644 0.560319 -0.523580 -0.321789 0.788870 0.201323 -0.946436 -0.252442 0.820496 0.113261 0.560319 -0.486971 -0.374892 0.788870 0.299407 -0.920124 -0.252442 0.804305 0.197827 0.560319 -0.445421 -0.423420 0.788870 0.393310 -0.884070 -0.252442 0.779142 0.281034 0.560319 -0.398591 -0.467771 0.788870 0.483801 -0.837979 -0.252442 0.745396 0.361146 0.560319 -0.347370 -0.506970 0.788870 0.568963 -0.782659 -0.252442 0.703877 0.436577 0.560319 -0.292863 -0.540293 0.788870 0.647138 -0.719364 -0.252442 0.654244 0.507944 0.560319 -0.234624 -0.568011 0.788870 0.718969 -0.647578 -0.252442 0.597405 0.573716 0.560319 -0.173800 -0.589473 0.788870 0.782880 -0.568658 -0.252442 0.533985 0.633168 0.560319 -0.111062 -0.604442 0.788870 0.838168 -0.483475 -0.252442 0.465369 0.685182 0.560319 -0.047713 -0.612706 0.788870 0.883830 -0.393850 -0.252442 0.390994 0.730182 0.560319 0.016766 -0.614332 0.788870 0.920240 -0.299049 -0.252442 0.312313 0.767140 0.560319 0.081060 -0.609191 0.788870 0.946515 -0.200955 -0.252442 0.230986 0.795417 0.560319 0.143864 -0.597485 0.788870 0.962262 -0.101609 -0.252442 0.146349 0.815245 0.560319 0.205692 -0.579116 0.788870 0.967612 -0.000197 -0.252442 0.060099 0.826094 0.560319 0.265255 -0.554369 0.788870 0.962303 0.101217 -0.252442 -0.026812 0.827843 0.560319 0.321896 -0.523515 0.788870 0.946395 0.201516 -0.252442 -0.112608 0.820586 0.560319 0.374504 -0.487269 0.788870 0.920362 0.298675 -0.252442 -0.197991 0.804265 0.560319 0.423511 -0.445335 0.788870 0.883990 0.393490 -0.252442 -0.281193 0.779085 0.560319 0.467853 -0.398496 0.788870 0.837881 0.483971 -0.252442 -0.361298 0.745323 0.560319 0.507041 -0.347267 0.788870 0.782543 0.569122 -0.252442 -0.436720 0.703788 0.560319 0.540352 -0.292753 0.788870 0.719232 0.647285 -0.252442 -0.508077 0.654141 0.560319 0.568059 -0.234508 0.788870 0.647431 0.719101 -0.252442 -0.573837 0.597288 0.560319 0.589508 -0.173680 0.788870 0.568499 0.782996 -0.252442 -0.632743 0.534489 0.560319 0.604353 -0.111543 0.788870 0.484142 0.837782 -0.252442 -0.685276 0.465230 0.560319 0.612715 -0.047588 0.788870 0.393670 0.883910 -0.252442 -0.730262 0.390846 0.560319 0.614328 0.016891 0.788870 0.298862 0.920301 -0.252442 -0.767203 0.312156 0.560319 0.609175 0.081184 0.788870 0.200762 0.946556 -0.252442 -0.795464 0.230824 0.560319 0.597455 0.143985 0.788870 0.101413 0.962283 -0.252442 -0.815275 0.146183 0.560319 0.579074 0.205810 0.788870 0.000000 0.967612 -0.252442 -0.826106 0.059931 0.560319 0.554315 0.265368 0.788870 -0.101413 0.962283 -0.252442 -0.827864 -0.026153 0.560319 0.523771 0.321479 0.788870 -0.200762 0.946556 -0.252442 -0.820563 -0.112775 0.560319 0.487193 0.374603 0.788870 -0.298862 0.920301 -0.252442 -0.804225 -0.198155 0.560319 0.445249 0.423601 0.788870 -0.393670 0.883910 -0.252442 -0.779027 -0.281352 0.560319 0.398400 0.467934 0.788870 -0.484142 0.837782 -0.252442 -0.745610 -0.360705 0.560319 0.347670 0.506764 0.788870 -0.568499 0.782996 -0.252442 -0.703699 -0.436863 0.560319 0.292643 0.540412 0.788870 -0.647431 0.719101 -0.252442 -0.654037 -0.508210 0.560319 0.234392 0.568107 0.788870 -0.719232 0.647285 -0.252442 -0.597745 -0.573361 0.560319 0.174149 0.589370 0.788870 -0.782543 0.569122 -0.252442 -0.534361 -0.632852 0.560319 0.111420 0.604376 0.788870 -0.837881 0.483971 -0.252442 -0.465090 -0.685371 0.560319 0.047463 0.612725 0.788870 -0.883990 0.393490 -0.252442 -0.390697 -0.730341 0.560319 -0.017016 0.614325 0.788870 -0.920362 0.298675 -0.252442 -0.312767 -0.766954 0.560319 -0.080699 0.609239 0.788870 -0.946395 0.201516 -0.252442 -0.230662 -0.795511 0.560319 -0.144107 0.597426 0.788870 -0.962303 0.101217 -0.252442 -0.192908 0.789953 -0.582032 -0.248227 -0.613167 -0.749939 -0.949299 -0.000193 0.314373 -0.274639 0.765384 -0.582032 -0.182596 -0.635807 -0.749939 -0.944051 -0.099686 0.314373 -0.352611 0.732738 -0.582032 -0.115605 -0.651327 -0.749939 -0.928602 -0.197151 0.314373 -0.427465 0.691746 -0.582032 -0.046704 -0.659856 -0.749939 -0.902824 -0.293390 0.314373 -0.497611 0.643135 -0.582032 0.022711 -0.661117 -0.749939 -0.867103 -0.386396 0.314373 -0.561688 0.588001 -0.582032 0.091220 -0.655187 -0.749939 -0.822305 -0.474325 0.314373 -0.620221 0.525894 -0.582032 0.159386 -0.642018 -0.749939 -0.768064 -0.557896 0.314373 -0.671923 0.457994 -0.582032 0.225796 -0.621777 -0.749939 -0.705362 -0.635322 0.314373 -0.716224 0.385050 -0.582032 0.289719 -0.594688 -0.749939 -0.634891 -0.705750 0.314373 -0.752327 0.308616 -0.582032 0.349890 -0.561398 -0.749939 -0.558195 -0.767846 0.314373 -0.780528 0.228067 -0.582032 0.406802 -0.521635 -0.749939 -0.474645 -0.822120 0.314373 -0.800133 0.145006 -0.582032 0.459233 -0.476127 -0.749939 -0.385866 -0.867339 0.314373 -0.810863 0.061159 -0.582032 0.506179 -0.425880 -0.749939 -0.293741 -0.902710 0.314373 -0.812807 -0.024162 -0.582032 0.548027 -0.370483 -0.749939 -0.197513 -0.928525 0.314373 -0.805798 -0.109217 -0.582032 0.583838 -0.311006 -0.749939 -0.099109 -0.944112 0.314373 -0.790071 -0.192426 -0.582032 0.613016 -0.248602 -0.749939 -0.000387 -0.949299 0.314373 -0.765552 -0.274171 -0.582032 0.635695 -0.182984 -0.749939 0.099109 -0.944112 0.314373 -0.732600 -0.352896 -0.582032 0.651372 -0.115351 -0.749939 0.197513 -0.928525 0.314373 -0.691580 -0.427735 -0.582032 0.659874 -0.046448 -0.749939 0.293741 -0.902710 0.314373 -0.643439 -0.497218 -0.582032 0.661131 0.022307 -0.749939 0.385866 -0.867339 0.314373 -0.587783 -0.561917 -0.582032 0.655152 0.091475 -0.749939 0.474645 -0.822120 0.314373 -0.525653 -0.620426 -0.582032 0.641956 0.159636 -0.749939 0.558195 -0.767846 0.314373 -0.458405 -0.671643 -0.582032 0.621915 0.225416 -0.749939 0.634891 -0.705750 0.314373 -0.385487 -0.715988 -0.582032 0.594865 0.289356 -0.749939 0.705362 -0.635322 0.314373 -0.308323 -0.752447 -0.582032 0.561262 0.350109 -0.749939 0.768064 -0.557896 0.314373 -0.227764 -0.780617 -0.582032 0.521477 0.407005 -0.749939 0.822305 -0.474325 0.314373 -0.145495 -0.800044 -0.582032 0.476407 0.458941 -0.749939 0.867103 -0.386396 0.314373 -0.060843 -0.810887 -0.582032 0.425683 0.506345 -0.749939 0.902824 -0.293390 0.314373 0.024479 -0.812798 -0.582032 0.370270 0.548171 -0.749939 0.928602 -0.197151 0.314373 0.108725 -0.805865 -0.582032 0.311363 0.583648 -0.749939 0.944051 -0.099686 0.314373 0.192587 -0.790031 -0.582032 0.248477 0.613066 -0.749939 0.949299 -0.000193 0.314373 0.274327 -0.765496 -0.582032 0.182855 0.635732 -0.749939 0.944091 0.099301 0.314373 0.353046 -0.732529 -0.582032 0.115219 0.651395 -0.749939 0.928484 0.197702 0.314373 0.427184 -0.691920 -0.582032 0.046973 0.659837 -0.749939 0.902944 0.293022 0.314373 0.497349 -0.643337 -0.582032 -0.022441 0.661126 -0.749939 0.867260 0.386043 0.314373 0.562036 -0.587669 -0.582032 -0.091608 0.655133 -0.749939 0.822024 0.474812 0.314373 0.620533 -0.525527 -0.582032 -0.159767 0.641924 -0.749939 0.767733 0.558351 0.314373 0.671736 -0.458268 -0.582032 -0.225543 0.621869 -0.749939 0.705621 0.635035 0.314373 0.716067 -0.385341 -0.582032 -0.289477 0.594806 -0.749939 0.635178 0.705491 0.314373 0.752509 -0.308170 -0.582032 -0.350223 0.561191 -0.749939 0.557740 0.768177 0.314373 0.780436 -0.228385 -0.582032 -0.406589 0.521801 -0.749939 0.474980 0.821927 0.314373 0.800074 -0.145332 -0.582032 -0.459038 0.476314 -0.749939 0.386220 0.867182 0.314373 0.810899 -0.060678 -0.582032 -0.506431 0.425580 -0.749939 0.293206 0.902884 0.314373 0.812793 0.024644 -0.582032 -0.548246 0.370159 -0.749939 0.196962 0.928642 0.314373 0.805843 0.108889 -0.582032 -0.583711 0.311244 -0.749939 0.099493 0.944071 0.314373 0.789992 0.192748 -0.582032 -0.613117 0.248352 -0.749939 0.000000 0.949299 0.314373 0.765440 0.274483 -0.582032 -0.635769 0.182726 -0.749939 -0.099493 0.944071 0.314373 0.732809 0.352462 -0.582032 -0.651303 0.115737 -0.749939 -0.196962 0.928642 0.314373 0.691833 0.427325 -0.582032 -0.659846 0.046839 -0.749939 -0.293206 0.902884 0.314373 0.643236 0.497480 -0.582032 -0.661121 -0.022576 -0.749939 -0.386220 0.867182 0.314373 0.587554 0.562156 -0.582032 -0.655114 -0.091742 -0.749939 -0.474980 0.821927 0.314373 0.526021 0.620114 -0.582032 -0.642051 -0.159255 -0.749939 -0.557740 0.768177 0.314373 0.458131 0.671830 -0.582032 -0.621823 -0.225670 -0.749939 -0.635178 0.705491 0.314373 0.385195 0.716145 -0.582032 -0.594747 -0.289598 -0.749939 -0.705621 0.635035 0.314373 0.308769 0.752264 -0.582032 -0.561470 -0.349776 -0.749939 -0.767733 0.558351 0.314373 0.228226 0.780482 -0.582032 -0.521718 -0.406696 -0.749939 -0.822024 0.474812 0.314373 0.145169 0.800103 -0.582032 -0.476220 -0.459135 -0.749939 -0.867260 0.386043 0.314373 0.060513 0.810912 -0.582032 -0.425477 -0.506518 -0.749939 -0.902944 0.293022 0.314373 -0.023997 0.812812 -0.582032 -0.370595 -0.547951 -0.749939 -0.928484 0.197702 0.314373 -0.109053 0.805821 -0.582032 -0.311125 -0.583774 -0.749939 -0.944091 0.099301 0.314373 -0.528170 -0.650578 0.545697 -0.452598 0.759439 0.467340 -0.718465 -0.000146 -0.695563 -0.457076 -0.702351 0.545697 -0.529700 0.707821 0.467340 -0.714493 -0.075446 -0.695563 -0.381693 -0.746006 0.545697 -0.600319 0.649007 0.467340 -0.702800 -0.149211 -0.695563 -0.301404 -0.781902 0.545697 -0.665033 0.582515 0.467340 -0.683291 -0.222048 -0.695563 -0.217795 -0.809185 0.545697 -0.722422 0.509607 0.467340 -0.656255 -0.292439 -0.695563 -0.132615 -0.827423 0.545697 -0.771423 0.431857 0.467340 -0.622351 -0.358987 -0.695563 -0.045165 -0.836765 0.545697 -0.812436 0.348628 0.467340 -0.581299 -0.422236 -0.695563 0.042783 -0.836890 0.545697 -0.844500 0.261559 0.467340 -0.533844 -0.480835 -0.695563 0.130259 -0.827797 0.545697 -0.867262 0.171608 0.467340 -0.480509 -0.534138 -0.695563 0.215491 -0.809802 0.545697 -0.880391 0.080648 0.467340 -0.422462 -0.581134 -0.695563 0.299178 -0.782757 0.545697 -0.883995 -0.012067 0.467340 -0.359229 -0.622211 -0.695563 0.379568 -0.747090 0.545697 -0.877862 -0.104650 0.467340 -0.292038 -0.656434 -0.695563 0.455075 -0.703649 0.545697 -0.862255 -0.195217 0.467340 -0.222314 -0.683204 -0.695563 0.526316 -0.652079 0.545697 -0.837046 -0.284513 0.467340 -0.149485 -0.702742 -0.695563 0.591760 -0.593326 0.545697 -0.802617 -0.370674 0.467340 -0.075009 -0.714539 -0.695563 0.650255 -0.528567 0.545697 -0.759716 -0.452134 0.467340 -0.000293 -0.718465 -0.695563 0.702072 -0.457505 0.545697 -0.708145 -0.529268 0.467340 0.075009 -0.714539 -0.695563 0.746155 -0.381403 0.545697 -0.648774 -0.600571 0.467340 0.149485 -0.702742 -0.695563 0.782019 -0.301100 0.545697 -0.582256 -0.665260 0.467340 0.222314 -0.683204 -0.695563 0.809052 -0.218290 0.545697 -0.510048 -0.722111 0.467340 0.292038 -0.656434 -0.695563 0.827474 -0.132293 0.545697 -0.431557 -0.771591 0.467340 0.359229 -0.622211 -0.695563 0.836782 -0.044839 0.545697 -0.348312 -0.812571 0.467340 0.422462 -0.581134 -0.695563 0.836916 0.042272 0.545697 -0.262074 -0.844340 0.467340 0.480509 -0.534138 -0.695563 0.827876 0.129754 0.545697 -0.172138 -0.867157 0.467340 0.533844 -0.480835 -0.695563 0.809718 0.215807 0.545697 -0.080306 -0.880423 0.467340 0.581299 -0.422236 -0.695563 0.782640 0.299482 0.545697 0.012411 -0.883990 0.467340 0.622351 -0.358987 -0.695563 0.747321 0.379112 0.545697 0.104113 -0.877926 0.467340 0.656255 -0.292439 -0.695563 0.703472 0.455349 0.545697 0.195553 -0.862179 0.467340 0.683291 -0.222048 -0.695563 0.651874 0.526570 0.545697 0.284838 -0.836935 0.467340 0.702800 -0.149211 -0.695563 0.593687 0.591397 0.545697 0.370184 -0.802843 0.467340 0.714493 -0.075446 -0.695563 0.528435 0.650363 0.545697 0.452289 -0.759624 0.467340 0.718465 -0.000146 -0.695563 0.457362 0.702165 0.545697 0.529412 -0.708037 0.467340 0.714523 0.075155 -0.695563 0.381251 0.746232 0.545697 0.600703 -0.648651 0.467340 0.702711 0.149628 -0.695563 0.301723 0.781779 0.545697 0.664796 -0.582786 0.467340 0.683381 0.221770 -0.695563 0.218125 0.809096 0.545697 0.722215 -0.509901 0.467340 0.656374 0.292172 -0.695563 0.132124 0.827501 0.545697 0.771678 -0.431400 0.467340 0.622138 0.359355 -0.695563 0.044669 0.836791 0.545697 0.812642 -0.348146 0.467340 0.581048 0.422581 -0.695563 -0.042442 0.836907 0.545697 0.844393 -0.261903 0.467340 0.534040 0.480618 -0.695563 -0.129922 0.827850 0.545697 0.867192 -0.171962 0.467340 0.480726 0.533942 -0.695563 -0.215971 0.809674 0.545697 0.880439 -0.080127 0.467340 0.422118 0.581385 -0.695563 -0.298859 0.782878 0.545697 0.884000 0.011707 0.467340 0.359482 0.622065 -0.695563 -0.379264 0.747244 0.545697 0.877904 0.104292 0.467340 0.292305 0.656315 -0.695563 -0.455492 0.703379 0.545697 0.862139 0.195728 0.467340 0.221909 0.683336 -0.695563 -0.526702 0.651767 0.545697 0.836877 0.285009 0.467340 0.149068 0.702830 -0.695563 -0.591518 0.593567 0.545697 0.802768 0.370347 0.467340 0.075300 0.714508 -0.695563 -0.650470 0.528302 0.545697 0.759532 0.452443 0.467340 0.000000 0.718465 -0.695563 -0.702258 0.457219 0.545697 0.707929 0.529556 0.467340 -0.075300 0.714508 -0.695563 -0.745929 0.381845 0.545697 0.649130 0.600187 0.467340 -0.149068 0.702830 -0.695563 -0.781841 0.301563 0.545697 0.582651 0.664915 0.467340 -0.221909 0.683336 -0.695563 -0.809141 0.217960 0.545697 0.509754 0.722319 0.467340 -0.292305 0.656315 -0.695563 -0.827528 0.131956 0.545697 0.431242 0.771766 0.467340 -0.359482 0.622065 -0.695563 -0.836756 0.045335 0.545697 0.348793 0.812365 0.467340 -0.422118 0.581385 -0.695563 -0.836899 -0.042613 0.545697 0.261731 0.844447 0.467340 -0.480726 0.533942 -0.695563 -0.827823 -0.130091 0.545697 0.171785 0.867227 0.467340 -0.534040 0.480618 -0.695563 -0.809845 -0.215326 0.545697 0.080828 0.880375 0.467340 -0.581048 0.422581 -0.695563 -0.782817 -0.299018 0.545697 -0.011887 0.883998 0.467340 -0.622138 0.359355 -0.695563 -0.747167 -0.379416 0.545697 -0.104471 0.877883 0.467340 -0.656374 0.292172 -0.695563 -0.703286 -0.455635 0.545697 -0.195904 0.862099 0.467340 -0.683381 0.221770 -0.695563 -0.652186 -0.526183 0.545697 -0.284342 0.837104 0.467340 -0.702711 0.149628 -0.695563 -0.593446 -0.591639 0.545697 -0.370511 0.802692 0.467340 -0.714523 0.075155 -0.695563 -0.049152 -0.998175 -0.035086 0.813555 -0.060390 0.578343 -0.579406 -0.000118 0.815039 0.055735 -0.997829 -0.035086 0.815404 0.025209 0.578343 -0.576203 -0.060843 0.815039 0.159021 -0.986652 -0.035086 0.808381 0.109722 0.578343 -0.566773 -0.120332 0.815039 0.261553 -0.964551 -0.035086 0.792430 0.193842 0.578343 -0.551040 -0.179071 0.815039 0.361205 -0.931826 -0.035086 0.767749 0.275827 0.578343 -0.529237 -0.235838 0.815039 0.455988 -0.889294 -0.035086 0.734967 0.354039 0.578343 -0.501895 -0.289505 0.815039 0.546681 -0.836605 -0.035086 0.693813 0.429118 0.578343 -0.468789 -0.340513 0.815039 0.631353 -0.774702 -0.035086 0.645017 0.499472 0.578343 -0.430519 -0.387770 0.815039 0.709070 -0.704265 -0.035086 0.589117 0.564323 0.578343 -0.387507 -0.430755 0.815039 0.778350 -0.626849 -0.035086 0.527350 0.622432 0.578343 -0.340695 -0.468656 0.815039 0.839762 -0.541820 -0.035086 0.459210 0.674274 0.578343 -0.289700 -0.501782 0.815039 0.891924 -0.450823 -0.035086 0.386012 0.718689 0.578343 -0.235514 -0.529381 0.815039 0.933905 -0.355794 -0.035086 0.309318 0.754879 0.578343 -0.179285 -0.550970 0.815039 0.966052 -0.255955 -0.035086 0.228497 0.783140 0.578343 -0.120552 -0.566726 0.815039 0.987557 -0.153296 -0.035086 0.145160 0.802775 0.578343 -0.060491 -0.576240 0.815039 0.998145 -0.049762 -0.035086 0.060887 0.813518 0.578343 -0.000236 -0.579406 0.815039 0.997863 0.055125 -0.035086 -0.024711 0.815419 0.578343 0.060491 -0.576240 0.815039 0.986590 0.159405 -0.035086 -0.110037 0.808339 0.578343 0.120552 -0.566726 0.815039 0.964449 0.261929 -0.035086 -0.194150 0.792354 0.578343 0.179285 -0.550970 0.815039 0.932047 0.360635 -0.035086 -0.275358 0.767918 0.578343 0.235514 -0.529381 0.815039 0.889116 0.456334 -0.035086 -0.354324 0.734829 0.578343 0.289700 -0.501782 0.815039 0.836393 0.547007 -0.035086 -0.429388 0.693646 0.578343 0.340695 -0.468656 0.815039 0.775087 0.630879 -0.035086 -0.499078 0.645322 0.578343 0.387507 -0.430755 0.815039 0.704698 0.708640 -0.035086 -0.563963 0.589461 0.578343 0.430519 -0.387770 0.815039 0.626546 0.778594 -0.035086 -0.622637 0.527108 0.578343 0.468789 -0.340513 0.815039 0.541493 0.839972 -0.035086 -0.674453 0.458948 0.578343 0.501895 -0.289505 0.815039 0.451368 0.891648 -0.035086 -0.718453 0.386451 0.578343 0.529237 -0.235838 0.815039 0.355431 0.934044 -0.035086 -0.754999 0.309024 0.578343 0.551040 -0.179071 0.815039 0.255579 0.966151 -0.035086 -0.783229 0.228193 0.578343 0.566773 -0.120332 0.815039 0.153899 0.987463 -0.035086 -0.802686 0.145651 0.578343 0.576203 -0.060843 0.815039 0.049558 0.998155 -0.035086 -0.813531 0.060721 0.578343 0.579406 -0.000118 0.815039 -0.055328 0.997852 -0.035086 -0.815414 -0.024877 0.578343 0.576228 0.060609 0.815039 -0.159606 0.986557 -0.035086 -0.808316 -0.110201 0.578343 0.566702 0.120668 0.815039 -0.261160 0.964658 -0.035086 -0.792508 -0.193519 0.578343 0.551113 0.178846 0.815039 -0.360825 0.931973 -0.035086 -0.767862 -0.275514 0.578343 0.529333 0.235622 0.815039 -0.456515 0.889023 -0.035086 -0.734757 -0.354474 0.578343 0.501723 0.289802 0.815039 -0.547177 0.836281 -0.035086 -0.693559 -0.429530 0.578343 0.468587 0.340790 0.815039 -0.631037 0.774959 -0.035086 -0.645221 -0.499209 0.578343 0.430677 0.387594 0.815039 -0.708783 0.704553 -0.035086 -0.589347 -0.564083 0.578343 0.387682 0.430598 0.815039 -0.778722 0.626388 -0.035086 -0.526981 -0.622745 0.578343 0.340417 0.468858 0.815039 -0.839541 0.542162 -0.035086 -0.459485 -0.674087 0.578343 0.289904 0.501664 0.815039 -0.891740 0.451186 -0.035086 -0.386305 -0.718532 0.578343 0.235730 0.529285 0.815039 -0.934116 0.355241 -0.035086 -0.308870 -0.755062 0.578343 0.178959 0.551077 0.815039 -0.966203 0.255382 -0.035086 -0.228033 -0.783275 0.578343 0.120216 0.566798 0.815039 -0.987495 0.153698 -0.035086 -0.145487 -0.802716 0.578343 0.060726 0.576215 0.815039 -0.998165 0.049355 -0.035086 -0.060555 -0.813543 0.578343 0.000000 0.579406 0.815039 -0.997840 -0.055532 -0.035086 0.025043 -0.815409 0.578343 -0.060726 0.576215 0.815039 -0.986684 -0.158820 -0.035086 0.109558 -0.808404 0.578343 -0.120216 0.566798 0.815039 -0.964604 -0.261357 -0.035086 0.193681 -0.792469 0.578343 -0.178959 0.551077 0.815039 -0.931900 -0.361015 -0.035086 0.275671 -0.767805 0.578343 -0.235730 0.529285 0.815039 -0.888930 -0.456696 -0.035086 0.354624 -0.734685 0.578343 -0.289904 0.501664 0.815039 -0.836717 -0.546511 -0.035086 0.428977 -0.693901 0.578343 -0.340417 0.468858 0.815039 -0.774830 -0.631195 -0.035086 0.499340 -0.645119 0.578343 -0.387682 0.430598 0.815039 -0.704409 -0.708926 -0.035086 0.564203 -0.589232 0.578343 -0.430677 0.387594 0.815039 -0.627008 -0.778223 -0.035086 0.622325 -0.527477 0.578343 -0.468587 0.340790 0.815039 -0.541991 -0.839652 -0.035086 0.674181 -0.459347 0.578343 -0.501723 0.289802 0.815039 -0.451005 -0.891832 -0.035086 0.718610 -0.386159 0.578343 -0.529333 0.235622 0.815039 -0.355050 -0.934189 -0.035086 0.755125 -0.308716 0.578343 -0.551113 0.178846 0.815039 -0.256151 -0.966000 -0.035086 0.783094 -0.228657 0.578343 -0.566702 0.120668 0.815039 -0.153497 -0.987526 -0.035086 0.802746 -0.145324 0.578343 -0.576228 0.060609 0.815039 0.104151 -0.478705 0.871776 0.056558 0.877976 0.475352 -0.992952 -0.000202 0.118517 0.153749 -0.465153 0.871776 -0.035771 0.879068 0.475352 -0.987462 -0.104270 0.118517 0.201207 -0.446679 0.871776 -0.126836 0.870605 0.475352 -0.971302 -0.206217 0.118517 0.246914 -0.423131 0.871776 -0.217383 0.852517 0.475352 -0.944340 -0.306881 0.118517 0.289902 -0.394922 0.871776 -0.305536 0.825038 0.475352 -0.906976 -0.404164 0.118517 0.329333 -0.362693 0.871776 -0.389535 0.788862 0.475352 -0.860118 -0.496136 0.118517 0.365532 -0.326179 0.871776 -0.470067 0.743691 0.475352 -0.803382 -0.583550 0.118517 0.397705 -0.286072 0.871776 -0.545423 0.690329 0.475352 -0.737797 -0.664537 0.118517 0.425497 -0.242814 0.871776 -0.614770 0.629363 0.475352 -0.664086 -0.738203 0.118517 0.448405 -0.197330 0.871776 -0.676784 0.562141 0.475352 -0.583863 -0.803155 0.118517 0.466617 -0.149247 0.871776 -0.731974 0.488113 0.475352 -0.496471 -0.859925 0.118517 0.479689 -0.099520 0.871776 -0.779100 0.408709 0.475352 -0.403610 -0.907222 0.118517 0.487429 -0.049185 0.871776 -0.817320 0.325621 0.475352 -0.307248 -0.944220 0.118517 0.489899 0.002172 0.871776 -0.846946 0.238166 0.475352 -0.206595 -0.971222 0.118517 0.486974 0.053505 0.871776 -0.867243 0.148089 0.475352 -0.103666 -0.987526 0.118517 0.478769 0.103859 0.871776 -0.877941 0.057095 0.475352 -0.000404 -0.992952 0.118517 0.465247 0.153465 0.871776 -0.879090 -0.035234 0.475352 0.103666 -0.987526 0.118517 0.446600 0.201381 0.871776 -0.870555 -0.127175 0.475352 0.206595 -0.971222 0.118517 0.423034 0.247079 0.871776 -0.852432 -0.217715 0.475352 0.307248 -0.944220 0.118517 0.395099 0.289660 0.871776 -0.825225 -0.305032 0.475352 0.403610 -0.907222 0.118517 0.362564 0.329474 0.871776 -0.788710 -0.389841 0.475352 0.496471 -0.859925 0.118517 0.326036 0.365659 0.871776 -0.743508 -0.470357 0.475352 0.583863 -0.803155 0.118517 0.286315 0.397530 0.871776 -0.690662 -0.545001 0.475352 0.664086 -0.738203 0.118517 0.243074 0.425348 0.871776 -0.629738 -0.614386 0.475352 0.737797 -0.664537 0.118517 0.197156 0.448482 0.871776 -0.561878 -0.677003 0.475352 0.803382 -0.583550 0.118517 0.149066 0.466675 0.871776 -0.487829 -0.732163 0.475352 0.860118 -0.496136 0.118517 0.099814 0.479629 0.871776 -0.409185 -0.778850 0.475352 0.906976 -0.404164 0.118517 0.048995 0.487448 0.871776 -0.325302 -0.817446 0.475352 0.944340 -0.306881 0.118517 -0.002363 0.489899 0.871776 -0.237837 -0.847038 0.475352 0.971302 -0.206217 0.118517 -0.053208 0.487006 0.871776 -0.148618 -0.867152 0.475352 0.987462 -0.104270 0.118517 -0.103956 0.478748 0.871776 -0.056916 -0.877953 0.475352 0.992952 -0.000202 0.118517 -0.153560 0.465216 0.871776 0.035413 -0.879082 0.475352 0.987505 0.103867 0.118517 -0.201472 0.446559 0.871776 0.127352 -0.870529 0.475352 0.971180 0.206793 0.118517 -0.246742 0.423231 0.871776 0.217036 -0.852605 0.475352 0.944465 0.306496 0.118517 -0.289741 0.395040 0.871776 0.305200 -0.825162 0.475352 0.907140 0.403795 0.118517 -0.329548 0.362497 0.871776 0.390002 -0.788631 0.475352 0.859824 0.496646 0.118517 -0.365725 0.325962 0.871776 0.470508 -0.743412 0.475352 0.803036 0.584026 0.118517 -0.397588 0.286234 0.871776 0.545142 -0.690551 0.475352 0.738068 0.664236 0.118517 -0.425398 0.242987 0.871776 0.614514 -0.629613 0.475352 0.664386 0.737933 0.118517 -0.448522 0.197064 0.871776 0.677118 -0.561740 0.475352 0.583387 0.803501 0.118517 -0.466556 0.149437 0.871776 0.731775 -0.488412 0.475352 0.496821 0.859722 0.118517 -0.479649 0.099716 0.871776 0.778934 -0.409026 0.475352 0.403980 0.907058 0.118517 -0.487458 0.048896 0.871776 0.817513 -0.325136 0.475352 0.306689 0.944402 0.118517 -0.489898 -0.002462 0.871776 0.847087 -0.237664 0.475352 0.206019 0.971344 0.118517 -0.486996 -0.053307 0.871776 0.867182 -0.148442 0.475352 0.104068 0.987483 0.118517 -0.478726 -0.104054 0.871776 0.877964 -0.056737 0.475352 0.000000 0.992952 0.118517 -0.465184 -0.153655 0.871776 0.879075 0.035592 0.475352 -0.104068 0.987483 0.118517 -0.446720 -0.201116 0.871776 0.870631 0.126659 0.475352 -0.206019 0.971344 0.118517 -0.423181 -0.246828 0.871776 0.852561 0.217210 0.475352 -0.306689 0.944402 0.118517 -0.394981 -0.289821 0.871776 0.825100 0.305368 0.475352 -0.403980 0.907058 0.118517 -0.362430 -0.329622 0.871776 0.788551 0.390163 0.475352 -0.496821 0.859722 0.118517 -0.326253 -0.365466 0.871776 0.743787 0.469916 0.475352 -0.583387 0.803501 0.118517 -0.286153 -0.397647 0.871776 0.690440 0.545282 0.475352 -0.664386 0.737933 0.118517 -0.242901 -0.425447 0.871776 0.629488 0.614642 0.475352 -0.738068 0.664236 0.118517 -0.197421 -0.448365 0.871776 0.562279 0.676670 0.475352 -0.803036 0.584026 0.118517 -0.149342 -0.466587 0.871776 0.488263 0.731874 0.475352 -0.859824 0.496646 0.118517 -0.099618 -0.479669 0.871776 0.408868 0.779017 0.475352 -0.907140 0.403795 0.118517 -0.048797 -0.487468 0.871776 0.324970 0.817579 0.475352 -0.944465 0.306496 0.118517 0.002072 -0.489900 0.871776 0.238339 0.846897 0.475352 -0.971180 0.206793 0.118517 0.053406 -0.486985 0.871776 0.148265 0.867212 0.475352 -0.987505 0.103867 0.118517 0.467664 -0.727770 -0.501639 -0.496110 -0.685821 0.532470 -0.731550 -0.000149 -0.681788 0.541364 -0.674747 -0.501639 -0.421499 -0.734040 0.532470 -0.727505 -0.076820 -0.681788 0.608486 -0.614901 -0.501639 -0.343019 -0.773831 0.532470 -0.715600 -0.151929 -0.681788 0.669581 -0.547741 -0.501639 -0.260027 -0.805520 0.532470 -0.695735 -0.226092 -0.681788 0.723300 -0.474547 -0.501639 -0.174170 -0.828336 0.532470 -0.668208 -0.297765 -0.681788 0.768656 -0.396896 -0.501639 -0.087237 -0.841942 0.532470 -0.633685 -0.365525 -0.681788 0.806020 -0.314149 -0.501639 0.001485 -0.846448 0.532470 -0.591886 -0.429926 -0.681788 0.834506 -0.227942 -0.501639 0.090190 -0.841630 0.532470 -0.543567 -0.489592 -0.681788 0.853800 -0.139225 -0.501639 0.177902 -0.827543 0.532470 -0.489260 -0.543866 -0.681788 0.863641 -0.049837 -0.501639 0.262851 -0.804603 0.532470 -0.430156 -0.591718 -0.681788 0.864107 0.040953 -0.501639 0.345731 -0.772623 0.532470 -0.365771 -0.633543 -0.681788 0.855056 0.131292 -0.501639 0.424803 -0.732132 0.532470 -0.297357 -0.668389 -0.681788 0.836806 0.219348 -0.501639 0.498513 -0.684077 0.532470 -0.226363 -0.695647 -0.681788 0.809208 0.305844 -0.501639 0.567463 -0.628062 0.532470 -0.152207 -0.715541 -0.681788 0.772697 0.388970 -0.501639 0.630163 -0.565128 0.532470 -0.076375 -0.727552 -0.681788 0.728056 0.467219 -0.501639 0.685518 -0.496529 0.532470 -0.000298 -0.731550 -0.681788 0.675078 0.540951 -0.501639 0.733782 -0.421947 0.532470 0.076375 -0.727552 -0.681788 0.614664 0.608725 -0.501639 0.773964 -0.342718 0.532470 0.152207 -0.715541 -0.681788 0.547480 0.669794 -0.501639 0.805621 -0.259713 0.532470 0.226363 -0.695647 -0.681788 0.474989 0.723010 -0.501639 0.828230 -0.174676 0.532470 0.297357 -0.668389 -0.681788 0.396597 0.768811 -0.501639 0.841975 -0.086910 0.532470 0.365771 -0.633543 -0.681788 0.313836 0.806143 -0.501639 0.846447 0.001814 0.532470 0.430156 -0.591718 -0.681788 0.228452 0.834367 -0.501639 0.841685 0.089676 0.532470 0.489260 -0.543866 -0.681788 0.139746 0.853715 -0.501639 0.827651 0.177397 0.532470 0.543567 -0.489592 -0.681788 0.049501 0.863660 -0.501639 0.804500 0.263164 0.532470 0.591886 -0.429926 -0.681788 -0.041289 0.864091 -0.501639 0.772488 0.346031 0.532470 0.633685 -0.365525 -0.681788 -0.130770 0.855136 -0.501639 0.732392 0.424356 0.532470 0.668208 -0.297765 -0.681788 -0.219674 0.836721 -0.501639 0.683883 0.498779 0.532470 0.695735 -0.226092 -0.681788 -0.306159 0.809089 -0.501639 0.627841 0.567708 0.532470 0.715600 -0.151929 -0.681788 -0.388498 0.772935 -0.501639 0.565513 0.629818 0.532470 0.727505 -0.076820 -0.681788 -0.467367 0.727960 -0.501639 0.496389 0.685619 0.532470 0.731550 -0.000149 -0.681788 -0.541089 0.674968 -0.501639 0.421798 0.733868 0.532470 0.727537 0.076524 -0.681788 -0.608850 0.614540 -0.501639 0.342560 0.774034 0.532470 0.715510 0.152353 -0.681788 -0.669358 0.548014 -0.501639 0.260355 0.805414 0.532470 0.695827 0.225809 -0.681788 -0.723107 0.474842 -0.501639 0.174508 0.828265 0.532470 0.668329 0.297493 -0.681788 -0.768891 0.396440 -0.501639 0.086738 0.841993 0.532470 0.633469 0.365900 -0.681788 -0.806207 0.313671 -0.501639 -0.001986 0.846447 0.532470 0.591631 0.430277 -0.681788 -0.834414 0.228282 -0.501639 -0.089847 0.841667 0.532470 0.543766 0.489371 -0.681788 -0.853744 0.139572 -0.501639 -0.177565 0.827615 0.532470 0.489482 0.543666 -0.681788 -0.863670 0.049325 -0.501639 -0.263327 0.804447 0.532470 0.429806 0.591973 -0.681788 -0.864124 -0.040601 -0.501639 -0.345416 0.772764 0.532470 0.366029 0.633394 -0.681788 -0.855110 -0.130944 -0.501639 -0.424505 0.732306 0.532470 0.297629 0.668268 -0.681788 -0.836676 -0.219844 -0.501639 -0.498918 0.683781 0.532470 0.225951 0.695781 -0.681788 -0.809027 -0.306323 -0.501639 -0.567835 0.627725 0.532470 0.151783 0.715631 -0.681788 -0.772856 -0.388655 -0.501639 -0.629933 0.565385 0.532470 0.076672 0.727521 -0.681788 -0.727865 -0.467516 -0.501639 -0.685720 0.496250 0.532470 0.000000 0.731550 -0.681788 -0.674858 -0.541226 -0.501639 -0.733954 0.421648 0.532470 -0.076672 0.727521 -0.681788 -0.615025 -0.608361 -0.501639 -0.773761 0.343176 0.532470 -0.151783 0.715631 -0.681788 -0.547877 -0.669469 -0.501639 -0.805467 0.260191 0.532470 -0.225951 0.695781 -0.681788 -0.474695 -0.723204 -0.501639 -0.828301 0.174339 0.532470 -0.297629 0.668268 -0.681788 -0.396283 -0.768972 -0.501639 -0.842011 0.086567 0.532470 -0.366029 0.633394 -0.681788 -0.314313 -0.805957 -0.501639 -0.846448 -0.001312 0.532470 -0.429806 0.591973 -0.681788 -0.228112 -0.834460 -0.501639 -0.841649 -0.090019 0.532470 -0.489482 0.543666 -0.681788 -0.139398 -0.853772 -0.501639 -0.827579 -0.177734 0.532470 -0.543766 0.489371 -0.681788 -0.050013 -0.863630 -0.501639 -0.804656 -0.262687 0.532470 -0.591631 0.430277 -0.681788 0.040777 -0.864116 -0.501639 -0.772693 -0.345574 0.532470 -0.633469 0.365900 -0.681788 0.131118 -0.855083 -0.501639 -0.732219 -0.424654 0.532470 -0.668329 0.297493 -0.681788 0.220015 -0.836631 -0.501639 -0.683680 -0.499057 0.532470 -0.695827 0.225809 -0.681788 0.305679 -0.809271 -0.501639 -0.628177 -0.567335 0.532470 -0.715510 0.152353 -0.681788 0.388813 -0.772776 -0.501639 -0.565257 -0.630048 0.532470 -0.727537 0.076524 -0.681788 0.572277 0.531977 -0.624099 0.359664 -0.846759 -0.391971 -0.736981 -0.000150 -0.675914 0.513370 0.589026 -0.624099 0.446430 -0.804400 -0.391971 -0.732906 -0.077390 -0.675914 0.449448 0.639138 -0.624099 0.527525 -0.753708 -0.391971 -0.720912 -0.153057 -0.675914 0.379986 0.682723 -0.624099 0.603613 -0.694269 -0.391971 -0.700900 -0.227771 -0.675914 0.306339 0.718788 -0.624099 0.673053 -0.627182 -0.391971 -0.673168 -0.299976 -0.675914 0.230065 0.746707 -0.624099 0.734526 -0.553922 -0.391971 -0.638390 -0.368238 -0.675914 0.150538 0.766707 -0.624099 0.788536 -0.473888 -0.391971 -0.596280 -0.433118 -0.675914 0.069352 0.778261 -0.624099 0.833860 -0.388634 -0.391971 -0.547602 -0.493227 -0.675914 -0.012597 0.781244 -0.624099 0.869999 -0.299099 -0.391971 -0.492892 -0.547903 -0.675914 -0.093632 0.775715 -0.624099 0.896349 -0.207166 -0.391971 -0.433350 -0.596111 -0.675914 -0.174417 0.761629 -0.624099 0.913125 -0.112081 -0.391971 -0.368487 -0.638246 -0.675914 -0.253281 0.739155 -0.624099 0.919842 -0.015762 -0.391971 -0.299564 -0.673351 -0.675914 -0.328646 0.708867 -0.624099 0.916509 0.079814 -0.391971 -0.228043 -0.700812 -0.675914 -0.401130 0.670519 -0.624099 0.903096 0.175432 -0.391971 -0.153337 -0.720853 -0.675914 -0.469196 0.624785 -0.624099 0.879736 0.269116 -0.391971 -0.076942 -0.732953 -0.675914 -0.531628 0.572602 -0.624099 0.846978 0.359147 -0.391971 -0.000300 -0.736981 -0.675914 -0.588712 0.513730 -0.624099 0.804672 0.445938 -0.391971 0.076942 -0.732953 -0.675914 -0.639313 0.449199 -0.624099 0.753503 0.527818 -0.391971 0.153337 -0.720853 -0.675914 -0.682871 0.379721 -0.624099 0.694034 0.603883 -0.391971 0.228043 -0.700812 -0.675914 -0.718601 0.306778 -0.624099 0.627594 0.672670 -0.391971 0.299564 -0.673351 -0.675914 -0.746796 0.229774 -0.624099 0.553636 0.734742 -0.391971 0.368487 -0.638246 -0.675914 -0.766765 0.150239 -0.624099 0.473581 0.788720 -0.391971 0.433350 -0.596111 -0.675914 -0.778219 0.069828 -0.624099 0.389143 0.833622 -0.391971 0.492892 -0.547903 -0.675914 -0.781251 -0.012120 -0.624099 0.299630 0.869816 -0.391971 0.547602 -0.493227 -0.675914 -0.775678 -0.093934 -0.624099 0.206817 0.896429 -0.391971 0.596280 -0.433118 -0.675914 -0.761562 -0.174713 -0.624099 0.111726 0.913168 -0.391971 0.638390 -0.368238 -0.675914 -0.739309 -0.252829 -0.624099 0.016324 0.919833 -0.391971 0.673168 -0.299976 -0.675914 -0.708739 -0.328921 -0.624099 -0.080171 0.916478 -0.391971 0.700900 -0.227771 -0.675914 -0.670363 -0.401391 -0.624099 -0.175783 0.903028 -0.391971 0.720912 -0.153057 -0.675914 -0.625071 -0.468814 -0.624099 -0.268579 0.879900 -0.391971 0.732906 -0.077390 -0.675914 -0.572493 -0.531744 -0.624099 -0.359319 0.846905 -0.391971 0.736981 -0.000150 -0.675914 -0.513610 -0.588817 -0.624099 -0.446102 0.804582 -0.391971 0.732938 0.077092 -0.675914 -0.449069 -0.639404 -0.624099 -0.527971 0.753396 -0.391971 0.720821 0.153484 -0.675914 -0.380264 -0.682568 -0.624099 -0.603331 0.694515 -0.391971 0.700993 0.227485 -0.675914 -0.306632 -0.718664 -0.624099 -0.672798 0.627456 -0.391971 0.673290 0.299701 -0.675914 -0.229622 -0.746843 -0.624099 -0.734854 0.553487 -0.391971 0.638171 0.368616 -0.675914 -0.150083 -0.766796 -0.624099 -0.788817 0.473420 -0.391971 0.596023 0.433471 -0.675914 -0.069669 -0.778233 -0.624099 -0.833702 0.388973 -0.391971 0.547803 0.493004 -0.675914 0.012279 -0.781249 -0.624099 -0.869877 0.299453 -0.391971 0.493115 0.547702 -0.675914 0.094092 -0.775659 -0.624099 -0.896471 0.206635 -0.391971 0.432997 0.596368 -0.675914 0.174107 -0.761700 -0.624099 -0.913079 0.112453 -0.391971 0.368746 0.638096 -0.675914 0.252980 -0.739258 -0.624099 -0.919836 0.016137 -0.391971 0.299839 0.673229 -0.675914 0.329066 -0.708672 -0.624099 -0.916461 -0.080358 -0.391971 0.227628 0.700947 -0.675914 0.401527 -0.670281 -0.624099 -0.902992 -0.175967 -0.391971 0.152910 0.720943 -0.675914 0.468941 -0.624976 -0.624099 -0.879845 -0.268758 -0.391971 0.077241 0.732922 -0.675914 0.531861 -0.572385 -0.624099 -0.846832 -0.359492 -0.391971 0.000000 0.736981 -0.675914 0.588922 -0.513490 -0.624099 -0.804491 -0.446266 -0.391971 -0.077241 0.732922 -0.675914 0.639046 -0.449578 -0.624099 -0.753816 -0.527371 -0.391971 -0.152910 0.720943 -0.675914 0.682646 -0.380125 -0.624099 -0.694392 -0.603472 -0.391971 -0.227628 0.700947 -0.675914 0.718726 -0.306486 -0.624099 -0.627319 -0.672926 -0.391971 -0.299839 0.673229 -0.675914 0.746890 -0.229470 -0.624099 -0.553337 -0.734967 -0.391971 -0.368746 0.638096 -0.675914 0.766676 -0.150694 -0.624099 -0.474048 -0.788439 -0.391971 -0.432997 0.596368 -0.675914 0.778247 -0.069511 -0.624099 -0.388804 -0.833781 -0.391971 -0.493115 0.547702 -0.675914 0.781246 0.012438 -0.624099 -0.299276 -0.869938 -0.391971 -0.547803 0.493004 -0.675914 0.775734 0.093474 -0.624099 -0.207349 -0.896306 -0.391971 -0.596023 0.433471 -0.675914 0.761665 0.174262 -0.624099 -0.112267 -0.913102 -0.391971 -0.638171 0.368616 -0.675914 0.739206 0.253130 -0.624099 -0.015949 -0.919839 -0.391971 -0.673290 0.299701 -0.675914 0.708605 0.329210 -0.624099 0.080544 -0.916445 -0.391971 -0.700993 0.227485 -0.675914 0.670600 0.400993 -0.624099 0.175248 -0.903132 -0.391971 -0.720821 0.153484 -0.675914 0.624880 0.469069 -0.624099 0.268937 -0.879791 -0.391971 -0.732938 0.077092 -0.675914 -0.566598 -0.774159 -0.282212 0.693024 -0.632991 0.345022 -0.445739 -0.000091 0.895163 -0.482340 -0.829279 -0.282212 0.755549 -0.556871 0.345022 -0.443275 -0.046807 0.895163 -0.393645 -0.874872 -0.282212 0.809277 -0.475426 0.345022 -0.436021 -0.092572 0.895163 -0.299784 -0.911310 -0.282212 0.854648 -0.387990 0.345022 -0.423917 -0.137760 0.895163 -0.202621 -0.937711 -0.282212 0.890606 -0.296280 0.345022 -0.407144 -0.181431 0.895163 -0.104180 -0.953679 -0.282212 0.916551 -0.202223 0.345022 -0.386110 -0.222717 0.895163 -0.003654 -0.959345 -0.282212 0.932698 -0.105048 0.345022 -0.360641 -0.261958 0.895163 0.096912 -0.954445 -0.282212 0.938571 -0.006716 0.345022 -0.331200 -0.298313 0.895163 0.196411 -0.939031 -0.282212 0.934105 0.091690 0.345022 -0.298110 -0.331382 0.895163 0.292834 -0.913567 -0.282212 0.919540 0.188167 0.345022 -0.262098 -0.360539 0.895163 0.386969 -0.877845 -0.282212 0.894754 0.283505 0.345022 -0.222867 -0.386023 0.895163 0.476842 -0.832453 -0.282212 0.860113 0.375720 0.345022 -0.181182 -0.407255 0.895163 0.560685 -0.778453 -0.282212 0.816461 0.462980 0.345022 -0.137925 -0.423864 0.895163 0.639184 -0.715402 -0.282212 0.763441 0.546001 0.345022 -0.092741 -0.435985 0.895163 0.710643 -0.644471 -0.282212 0.702012 0.623009 0.345022 -0.046536 -0.443303 0.895163 0.773813 -0.567071 -0.282212 0.633414 0.692637 0.345022 -0.000182 -0.445739 0.895163 0.828984 -0.482847 -0.282212 0.557332 0.755209 0.345022 0.046536 -0.443303 0.895163 0.875025 -0.393304 -0.282212 0.475111 0.809462 0.345022 0.092741 -0.435985 0.895163 0.911427 -0.299429 -0.282212 0.387657 0.854799 0.345022 0.137925 -0.423864 0.895163 0.937587 -0.203194 -0.282212 0.296824 0.890424 0.345022 0.181182 -0.407255 0.895163 0.953719 -0.103809 -0.282212 0.201866 0.916630 0.345022 0.222867 -0.386023 0.895163 0.959347 -0.003281 -0.282212 0.104685 0.932738 0.345022 0.262098 -0.360539 0.895163 0.954504 0.096329 -0.282212 0.007289 0.938566 0.345022 0.298110 -0.331382 0.895163 0.939151 0.195838 -0.282212 -0.091119 0.934161 0.345022 0.331200 -0.298313 0.895163 0.913453 0.293189 -0.282212 -0.188524 0.919466 0.345022 0.360641 -0.261958 0.895163 0.877694 0.387310 -0.282212 -0.283853 0.894644 0.345022 0.386110 -0.222717 0.895163 0.832744 0.476334 -0.282212 -0.375194 0.860343 0.345022 0.407144 -0.181431 0.895163 0.778235 0.560988 -0.282212 -0.463298 0.816281 0.345022 0.423917 -0.137760 0.895163 0.715153 0.639463 -0.282212 -0.546299 0.763229 0.345022 0.436021 -0.092572 0.895163 0.644905 0.710250 -0.282212 -0.622580 0.702392 0.345022 0.443275 -0.046807 0.895163 0.566914 0.773929 -0.282212 -0.692766 0.633273 0.345022 0.445739 -0.000091 0.895163 0.482678 0.829083 -0.282212 -0.755323 0.557178 0.345022 0.443294 0.046626 0.895163 0.393126 0.875105 -0.282212 -0.809559 0.474946 0.345022 0.435966 0.092830 0.895163 0.300155 0.911188 -0.282212 -0.854490 0.388338 0.345022 0.423973 0.137587 0.895163 0.203003 0.937628 -0.282212 -0.890485 0.296642 0.345022 0.407218 0.181265 0.895163 0.103615 0.953740 -0.282212 -0.916671 0.201679 0.345022 0.385978 0.222946 0.895163 0.003085 0.959347 -0.282212 -0.932760 0.104495 0.345022 0.360485 0.262171 0.895163 -0.096524 0.954484 -0.282212 -0.938568 0.007098 0.345022 0.331321 0.298178 0.895163 -0.196029 0.939111 -0.282212 -0.934143 -0.091310 0.345022 0.298245 0.331260 0.895163 -0.293375 0.913393 -0.282212 -0.919428 -0.188711 0.345022 0.261884 0.360694 0.895163 -0.386612 0.878002 -0.282212 -0.894870 -0.283140 0.345022 0.223025 0.385932 0.895163 -0.476503 0.832647 -0.282212 -0.860266 -0.375369 0.345022 0.181348 0.407181 0.895163 -0.561146 0.778120 -0.282212 -0.816187 -0.463464 0.345022 0.137674 0.423945 0.895163 -0.639608 0.715023 -0.282212 -0.763117 -0.546454 0.345022 0.092483 0.436040 0.895163 -0.710381 0.644760 -0.282212 -0.702265 -0.622723 0.345022 0.046717 0.443284 0.895163 -0.774044 0.566756 -0.282212 -0.633132 -0.692895 0.345022 0.000000 0.445739 0.895163 -0.829181 0.482509 -0.282212 -0.557024 -0.755436 0.345022 -0.046717 0.443284 0.895163 -0.874792 0.393823 -0.282212 -0.475591 -0.809181 0.345022 -0.092483 0.436040 0.895163 -0.911249 0.299969 -0.282212 -0.388164 -0.854569 0.345022 -0.137674 0.423945 0.895163 -0.937669 0.202812 -0.282212 -0.296461 -0.890545 0.345022 -0.181348 0.407181 0.895163 -0.953761 0.103420 -0.282212 -0.201493 -0.916712 0.345022 -0.223025 0.385932 0.895163 -0.959344 0.003849 -0.282212 -0.105238 -0.932676 0.345022 -0.261884 0.360694 0.895163 -0.954464 -0.096718 -0.282212 -0.006907 -0.938569 0.345022 -0.298245 0.331260 0.895163 -0.939071 -0.196220 -0.282212 0.091500 -0.934124 0.345022 -0.331321 0.298178 0.895163 -0.913627 -0.292647 -0.282212 0.187979 -0.919578 0.345022 -0.360485 0.262171 0.895163 -0.877924 -0.386790 -0.282212 0.283322 -0.894812 0.345022 -0.385978 0.222946 0.895163 -0.832550 -0.476673 -0.282212 0.375545 -0.860190 0.345022 -0.407218 0.181265 0.895163 -0.778006 -0.561305 -0.282212 0.463630 -0.816092 0.345022 -0.423973 0.137587 0.895163 -0.715532 -0.639039 -0.282212 0.545846 -0.763552 0.345022 -0.435966 0.092830 0.895163 -0.644615 -0.710512 -0.282212 0.622866 -0.702138 0.345022 -0.443294 0.046626 0.895163 -0.460719 -0.128938 0.878130 -0.060065 0.991653 0.114093 -0.885511 -0.000180 -0.464618 -0.444668 -0.176515 0.878130 -0.163667 0.979896 0.114093 -0.880615 -0.092987 -0.464618 -0.423941 -0.221723 0.878130 -0.264508 0.957611 0.114093 -0.866204 -0.183904 -0.464618 -0.398368 -0.264934 0.878130 -0.363416 0.924614 0.114093 -0.842159 -0.273675 -0.464618 -0.368407 -0.305227 0.878130 -0.458321 0.881433 0.114093 -0.808838 -0.360432 -0.464618 -0.334730 -0.341823 0.878130 -0.547348 0.829091 0.114093 -0.767050 -0.442453 -0.464618 -0.297061 -0.375023 0.878130 -0.631228 0.767159 0.114093 -0.716453 -0.520408 -0.464618 -0.256120 -0.404092 0.878130 -0.708156 0.696777 0.114093 -0.657965 -0.592631 -0.464618 -0.212358 -0.428709 0.878130 -0.777283 0.618720 0.114093 -0.592229 -0.658327 -0.464618 -0.166705 -0.448438 0.878130 -0.837314 0.534685 0.114093 -0.520687 -0.716251 -0.464618 -0.118787 -0.463440 0.878130 -0.888741 0.443984 0.114093 -0.442751 -0.766878 -0.464618 -0.069561 -0.473338 0.878130 -0.930379 0.348392 0.114093 -0.359938 -0.809058 -0.464618 -0.020047 -0.478002 0.878130 -0.961520 0.249924 0.114093 -0.274003 -0.842052 -0.464618 0.030161 -0.477470 0.878130 -0.982418 0.147774 0.114093 -0.184241 -0.866132 -0.464618 0.080038 -0.471679 0.878130 -0.992495 0.043996 0.114093 -0.092449 -0.880672 -0.464618 0.128657 -0.460798 0.878130 -0.991689 -0.059460 0.114093 -0.000361 -0.885511 -0.464618 0.176243 -0.444776 0.878130 -0.979996 -0.163068 0.114093 0.092449 -0.880672 -0.464618 0.221888 -0.423855 0.878130 -0.957508 -0.264881 0.114093 0.184241 -0.866132 -0.464618 0.265089 -0.398265 0.878130 -0.924473 -0.363776 0.114093 0.274003 -0.842052 -0.464618 0.305002 -0.368594 0.878130 -0.881713 -0.457782 0.114093 0.359938 -0.809058 -0.464618 0.341953 -0.334597 0.878130 -0.828879 -0.547671 0.114093 0.442751 -0.766878 -0.464618 0.375138 -0.296915 0.878130 -0.766914 -0.631527 0.114093 0.520687 -0.716251 -0.464618 0.403935 -0.256367 0.878130 -0.697209 -0.707730 0.114093 0.592229 -0.658327 -0.464618 0.428579 -0.212620 0.878130 -0.619194 -0.776905 0.114093 0.657965 -0.592631 -0.464618 0.448503 -0.166531 0.878130 -0.534359 -0.837522 0.114093 0.716453 -0.520408 -0.464618 0.463487 -0.118607 0.878130 -0.443638 -0.888914 0.114093 0.767050 -0.442453 -0.464618 0.473295 -0.069850 0.878130 -0.348960 -0.930166 0.114093 0.808838 -0.360432 -0.464618 0.478009 -0.019861 0.878130 -0.249550 -0.961617 0.114093 0.842159 -0.273675 -0.464618 0.477458 0.030347 0.878130 -0.147392 -0.982476 0.114093 0.866204 -0.183904 -0.464618 0.471728 0.079749 0.878130 -0.044602 -0.992468 0.114093 0.880615 -0.092987 -0.464618 0.460772 0.128751 0.878130 0.059662 -0.991677 0.114093 0.885511 -0.000180 -0.464618 0.444740 0.176334 0.878130 0.163268 -0.979962 0.114093 0.880653 0.092629 -0.464618 0.423810 0.221975 0.878130 0.265076 -0.957454 0.114093 0.866095 0.184417 -0.464618 0.398476 0.264772 0.878130 0.363039 -0.924762 0.114093 0.842270 0.273332 -0.464618 0.368532 0.305077 0.878130 0.457962 -0.881620 0.114093 0.808984 0.360103 -0.464618 0.334528 0.342022 0.878130 0.547839 -0.828767 0.114093 0.766788 0.442907 -0.464618 0.296839 0.375199 0.878130 0.631683 -0.766785 0.114093 0.716145 0.520833 -0.464618 0.256285 0.403987 0.878130 0.707872 -0.697065 0.114093 0.658206 0.592363 -0.464618 0.212532 0.428623 0.878130 0.777031 -0.619036 0.114093 0.592497 0.658086 -0.464618 0.166439 0.448537 0.878130 0.837631 -0.534189 0.114093 0.520262 0.716559 -0.464618 0.118976 0.463392 0.878130 0.888560 -0.444346 0.114093 0.443063 0.766697 -0.464618 0.069754 0.473309 0.878130 0.930237 -0.348771 0.114093 0.360268 0.808911 -0.464618 0.019764 0.478013 0.878130 0.961668 -0.249355 0.114093 0.273504 0.842215 -0.464618 -0.030444 0.477452 0.878130 0.982506 -0.147192 0.114093 0.183727 0.866241 -0.464618 -0.079845 0.471712 0.878130 0.992477 -0.044400 0.114093 0.092808 0.880634 -0.464618 -0.128845 0.460746 0.878130 0.991665 0.059864 0.114093 0.000000 0.885511 -0.464618 -0.176424 0.444704 0.878130 0.979929 0.163467 0.114093 -0.092808 0.880634 -0.464618 -0.221637 0.423986 0.878130 0.957664 0.264313 0.114093 -0.183727 0.866241 -0.464618 -0.264853 0.398422 0.878130 0.924688 0.363228 0.114093 -0.273504 0.842215 -0.464618 -0.305152 0.368469 0.878130 0.881527 0.458141 0.114093 -0.360268 0.808911 -0.464618 -0.342090 0.334458 0.878130 0.828655 0.548008 0.114093 -0.443063 0.766697 -0.464618 -0.374962 0.297138 0.878130 0.767288 0.631072 0.114093 -0.520262 0.716559 -0.464618 -0.404039 0.256202 0.878130 0.696921 0.708014 0.114093 -0.592497 0.658086 -0.464618 -0.428666 0.212445 0.878130 0.618878 0.777157 0.114093 -0.658206 0.592363 -0.464618 -0.448404 0.166796 0.878130 0.534855 0.837205 0.114093 -0.716145 0.520833 -0.464618 -0.463416 0.118882 0.878130 0.444165 0.888651 0.114093 -0.766788 0.442907 -0.464618 -0.473324 0.069658 0.878130 0.348581 0.930308 0.114093 -0.808984 0.360103 -0.464618 -0.478017 0.019666 0.878130 0.249159 0.961719 0.114093 -0.842270 0.273332 -0.464618 -0.477476 -0.030064 0.878130 0.147974 0.982388 0.114093 -0.866095 0.184417 -0.464618 -0.471696 -0.079942 0.878130 0.044198 0.992486 0.114093 -0.880653 0.092629 -0.464618 0.052076 -0.655005 0.753828 0.044873 0.755624 0.653467 -0.997634 -0.000203 0.068742 0.120438 -0.645940 0.753828 -0.034569 0.756166 0.653467 -0.992119 -0.104761 0.068742 0.186844 -0.629947 0.753828 -0.112881 0.748491 0.653467 -0.975883 -0.207190 0.068742 0.251838 -0.606895 0.753828 -0.190707 0.732538 0.653467 -0.948793 -0.308328 0.068742 0.314058 -0.577158 0.753828 -0.266432 0.708516 0.653467 -0.911253 -0.406070 0.068742 0.372278 -0.541436 0.753828 -0.338545 0.677029 0.653467 -0.864174 -0.498476 0.068742 0.426974 -0.499437 0.753828 -0.407638 0.637819 0.653467 -0.807171 -0.586302 0.068742 0.476967 -0.451937 0.753828 -0.472241 0.591582 0.653467 -0.741277 -0.667670 0.068742 0.521706 -0.399458 0.753828 -0.531642 0.538830 0.653467 -0.667217 -0.741684 0.068742 0.560356 -0.343140 0.753828 -0.584707 0.480727 0.653467 -0.586616 -0.806942 0.068742 0.593233 -0.282521 0.753828 -0.631871 0.416798 0.653467 -0.498812 -0.863980 0.068742 0.619577 -0.218790 0.753828 -0.672074 0.348278 0.653467 -0.405513 -0.911501 0.068742 0.638942 -0.153288 0.753828 -0.704599 0.276627 0.653467 -0.308697 -0.948673 0.068742 0.651489 -0.085478 0.753828 -0.729711 0.201256 0.653467 -0.207569 -0.975802 0.068742 0.656859 -0.016726 0.753828 -0.746785 0.123669 0.653467 -0.104155 -0.992183 0.068742 0.655037 0.051676 0.753828 -0.755597 0.045335 0.653467 -0.000406 -0.997634 0.068742 0.646013 0.120044 0.753828 -0.756187 -0.034107 0.653467 0.104155 -0.992183 0.068742 0.629874 0.187089 0.753828 -0.748447 -0.113173 0.653467 0.207569 -0.975802 0.068742 0.606797 0.252074 0.753828 -0.732464 -0.190992 0.653467 0.308697 -0.948673 0.068742 0.577350 0.313706 0.753828 -0.708679 -0.265999 0.653467 0.405513 -0.911501 0.068742 0.541291 0.372488 0.753828 -0.676897 -0.338809 0.653467 0.498812 -0.863980 0.068742 0.499271 0.427168 0.753828 -0.637660 -0.407886 0.653467 0.586616 -0.806942 0.068742 0.452228 0.476691 0.753828 -0.591871 -0.471880 0.653467 0.667217 -0.741684 0.068742 0.399777 0.521462 0.753828 -0.539155 -0.531313 0.653467 0.741277 -0.667670 0.068742 0.342922 0.560490 0.753828 -0.480500 -0.584894 0.653467 0.807171 -0.586302 0.068742 0.282290 0.593343 0.753828 -0.416553 -0.632033 0.653467 0.864174 -0.498476 0.068742 0.219168 0.619443 0.753828 -0.348689 -0.671861 0.653467 0.911253 -0.406070 0.068742 0.153039 0.639002 0.753828 -0.276353 -0.704706 0.653467 0.948793 -0.308328 0.068742 0.085224 0.651522 0.753828 -0.200972 -0.729789 0.653467 0.975883 -0.207190 0.068742 0.017128 0.656849 0.753828 -0.124125 -0.746709 0.653467 0.992119 -0.104761 0.068742 -0.051809 0.655027 0.753828 -0.045181 -0.755606 0.653467 0.997634 -0.000203 0.068742 -0.120175 0.645989 0.753828 0.034261 -0.756180 0.653467 0.992161 0.104357 0.068742 -0.187218 0.629836 0.753828 0.113325 -0.748424 0.653467 0.975760 0.207768 0.068742 -0.251591 0.606997 0.753828 0.190409 -0.732616 0.653467 0.948919 0.307942 0.068742 -0.313823 0.577286 0.753828 0.266143 -0.708625 0.653467 0.911418 0.405699 0.068742 -0.372598 0.541216 0.753828 0.338947 -0.676828 0.653467 0.863878 0.498988 0.068742 -0.427270 0.499184 0.753828 0.408016 -0.637577 0.653467 0.806823 0.586780 0.068742 -0.476783 0.452131 0.753828 0.472000 -0.591775 0.653467 0.741548 0.667368 0.068742 -0.521543 0.399670 0.753828 0.531423 -0.539047 0.653467 0.667519 0.741412 0.068742 -0.560559 0.342808 0.753828 0.584992 -0.480381 0.653467 0.586138 0.807290 0.068742 -0.593118 0.282762 0.753828 0.631701 -0.417056 0.653467 0.499164 0.863777 0.068742 -0.619487 0.219042 0.753828 0.671932 -0.348552 0.653467 0.405885 0.911335 0.068742 -0.639033 0.152909 0.753828 0.704762 -0.276209 0.653467 0.308135 0.948856 0.068742 -0.651539 0.085092 0.753828 0.729830 -0.200824 0.653467 0.206991 0.975925 0.068742 -0.656852 0.016994 0.753828 0.746734 -0.123973 0.653467 0.104559 0.992140 0.068742 -0.655016 -0.051943 0.753828 0.755615 -0.045027 0.653467 0.000000 0.997634 0.068742 -0.645965 -0.120307 0.753828 0.756173 0.034415 0.653467 -0.104559 0.992140 0.068742 -0.629985 -0.186716 0.753828 0.748514 0.112729 0.653467 -0.206991 0.975925 0.068742 -0.606946 -0.251715 0.753828 0.732577 0.190558 0.653467 -0.308135 0.948856 0.068742 -0.577222 -0.313941 0.753828 0.708571 0.266288 0.653467 -0.405885 0.911335 0.068742 -0.541140 -0.372709 0.753828 0.676759 0.339084 0.653467 -0.499164 0.863777 0.068742 -0.499524 -0.426872 0.753828 0.637902 0.407508 0.653467 -0.586138 0.807290 0.068742 -0.452034 -0.476875 0.753828 0.591679 0.472121 0.653467 -0.667519 0.741412 0.068742 -0.399564 -0.521625 0.753828 0.538938 0.531533 0.653467 -0.741548 0.667368 0.068742 -0.343254 -0.560286 0.753828 0.480847 0.584609 0.653467 -0.806823 0.586780 0.068742 -0.282642 -0.593176 0.753828 0.416927 0.631786 0.653467 -0.863878 0.498988 0.068742 -0.218916 -0.619532 0.753828 0.348415 0.672003 0.653467 -0.911418 0.405699 0.068742 -0.152779 -0.639064 0.753828 0.276065 0.704819 0.653467 -0.948919 0.307942 0.068742 -0.085610 -0.651471 0.753828 0.201405 0.729670 0.653467 -0.975760 0.207768 0.068742 -0.016860 -0.656856 0.753828 0.123821 0.746760 0.653467 -0.992161 0.104357 0.068742 -0.252527 0.888784 0.382484 0.489389 0.458327 -0.741913 -0.834703 -0.000170 -0.550701 -0.344287 0.857422 0.382484 0.438658 0.507094 -0.741913 -0.830088 -0.087652 -0.550701 -0.431438 0.817048 0.382484 0.383645 0.549893 -0.741913 -0.816503 -0.173352 -0.550701 -0.514695 0.767330 0.382484 0.323899 0.587073 -0.741913 -0.793838 -0.257973 -0.550701 -0.592282 0.709160 0.382484 0.260586 0.617787 -0.741913 -0.762429 -0.339752 -0.550701 -0.662701 0.643842 0.382484 0.195044 0.641501 -0.741913 -0.723038 -0.417066 -0.550701 -0.726531 0.570841 0.382484 0.126736 0.658410 -0.741913 -0.675345 -0.490548 -0.550701 -0.782358 0.491551 0.382484 0.057032 0.668066 -0.741913 -0.620213 -0.558628 -0.550701 -0.829567 0.406847 0.382484 -0.013301 0.670364 -0.741913 -0.558249 -0.620554 -0.550701 -0.867321 0.318529 0.382484 -0.082821 0.665362 -0.741913 -0.490811 -0.675154 -0.550701 -0.895928 0.225874 0.382484 -0.152100 0.653017 -0.741913 -0.417347 -0.722876 -0.550701 -0.914667 0.130730 0.382484 -0.219703 0.633479 -0.741913 -0.339286 -0.762636 -0.550701 -0.923296 0.035070 0.382484 -0.284279 0.607249 -0.741913 -0.258281 -0.793738 -0.550701 -0.921887 -0.061892 0.382484 -0.346357 0.574110 -0.741913 -0.173670 -0.816436 -0.550701 -0.910323 -0.158171 0.382484 -0.404620 0.534647 -0.741913 -0.087145 -0.830141 -0.550701 -0.888938 -0.251984 0.382484 -0.458028 0.489669 -0.741913 -0.000340 -0.834703 -0.550701 -0.857632 -0.343764 0.382484 -0.506826 0.438967 -0.741913 0.087145 -0.830141 -0.550701 -0.816880 -0.431756 0.382484 -0.550042 0.383431 -0.741913 0.173670 -0.816436 -0.550701 -0.767130 -0.514993 0.382484 -0.587199 0.323671 -0.741913 0.258281 -0.793738 -0.550701 -0.709522 -0.591848 0.382484 -0.617627 0.260963 -0.741913 0.339286 -0.762636 -0.550701 -0.643585 -0.662952 0.382484 -0.641577 0.194794 -0.741913 0.417347 -0.722876 -0.550701 -0.570558 -0.726753 0.382484 -0.658459 0.126480 -0.741913 0.490811 -0.675154 -0.550701 -0.492029 -0.782057 0.382484 -0.668031 0.057440 -0.741913 0.558249 -0.620554 -0.550701 -0.407354 -0.829318 0.382484 -0.670372 -0.012891 -0.741913 0.620213 -0.558628 -0.550701 -0.318192 -0.867445 0.382484 -0.665329 -0.083080 -0.741913 0.675345 -0.490548 -0.550701 -0.225525 -0.896016 0.382484 -0.652958 -0.152353 -0.741913 0.723038 -0.417066 -0.550701 -0.131289 -0.914587 0.382484 -0.633613 -0.219316 -0.741913 0.762429 -0.339752 -0.550701 -0.034710 -0.923310 0.382484 -0.607138 -0.284515 -0.741913 0.793838 -0.257973 -0.550701 0.062250 -0.921863 0.382484 -0.573975 -0.346580 -0.741913 0.816503 -0.173352 -0.550701 0.157615 -0.910420 0.382484 -0.534894 -0.404294 -0.741913 0.830088 -0.087652 -0.550701 0.252165 -0.888886 0.382484 -0.489576 -0.458128 -0.741913 0.834703 -0.000170 -0.550701 0.343938 -0.857562 0.382484 -0.438864 -0.506916 -0.741913 0.830123 0.087314 -0.550701 0.431923 -0.816792 0.382484 -0.383319 -0.550120 -0.741913 0.816400 0.173836 -0.550701 0.514382 -0.767540 0.382484 -0.324138 -0.586941 -0.741913 0.793943 0.257649 -0.550701 0.591993 -0.709402 0.382484 -0.260837 -0.617680 -0.741913 0.762567 0.339441 -0.550701 0.663083 -0.643450 0.382484 -0.194664 -0.641616 -0.741913 0.722791 0.417494 -0.550701 0.726869 -0.570410 0.382484 -0.126345 -0.658485 -0.741913 0.675054 0.490949 -0.550701 0.782158 -0.491870 0.382484 -0.057304 -0.668043 -0.741913 0.620440 0.558375 -0.550701 0.829401 -0.407185 0.382484 0.013028 -0.670370 -0.741913 0.558501 0.620326 -0.550701 0.867509 -0.318015 0.382484 0.083215 -0.665312 -0.741913 0.490411 0.675445 -0.550701 0.895836 -0.226239 0.382484 0.151834 -0.653079 -0.741913 0.417641 0.722706 -0.550701 0.914614 -0.131103 0.382484 0.219445 -0.633569 -0.741913 0.339596 0.762498 -0.550701 0.923317 -0.034522 0.382484 0.284639 -0.607080 -0.741913 0.257811 0.793890 -0.550701 0.921850 0.062438 0.382484 0.346697 -0.573904 -0.741913 0.173186 0.816539 -0.550701 0.910387 0.157800 0.382484 0.404403 -0.534812 -0.741913 0.087483 0.830106 -0.550701 0.888835 0.252346 0.382484 0.458228 -0.489482 -0.741913 0.000000 0.834703 -0.550701 0.857492 0.344113 0.382484 0.507005 -0.438761 -0.741913 -0.087483 0.830106 -0.550701 0.817136 0.431272 0.382484 0.549815 -0.383757 -0.741913 -0.173186 0.816539 -0.550701 0.767435 0.514538 0.382484 0.587007 -0.324019 -0.741913 -0.257811 0.793890 -0.550701 0.709281 0.592137 0.382484 0.617734 -0.260712 -0.741913 -0.339596 0.762498 -0.550701 0.643314 0.663214 0.382484 0.641656 -0.194533 -0.741913 -0.417641 0.722706 -0.550701 0.570989 0.726415 0.382484 0.658384 -0.126870 -0.741913 -0.490411 0.675445 -0.550701 0.491710 0.782258 0.382484 0.668055 -0.057168 -0.741913 -0.558501 0.620326 -0.550701 0.407016 0.829484 0.382484 0.670367 0.013164 -0.741913 -0.620440 0.558375 -0.550701 0.318706 0.867256 0.382484 0.665378 0.082686 -0.741913 -0.675054 0.490949 -0.550701 0.226056 0.895882 0.382484 0.653048 0.151967 -0.741913 -0.722791 0.417494 -0.550701 0.130916 0.914640 0.382484 0.633524 0.219574 -0.741913 -0.762567 0.339441 -0.550701 0.034334 0.923324 0.382484 0.607022 0.284762 -0.741913 -0.793943 0.257649 -0.550701 -0.061704 0.921900 0.382484 0.574180 0.346240 -0.741913 -0.816400 0.173836 -0.550701 -0.157986 0.910355 0.382484 0.534730 0.404512 -0.741913 -0.830123 0.087314 -0.550701 -0.139902 -0.849616 -0.508507 0.225733 -0.527401 0.819080 -0.964091 -0.000196 0.265571 -0.050085 -0.859600 -0.508507 0.279766 -0.500838 0.819080 -0.958761 -0.101239 0.265571 0.039423 -0.860155 -0.508507 0.330247 -0.469089 0.819080 -0.943071 -0.200223 0.265571 0.129356 -0.851286 -0.508507 0.377592 -0.431893 0.819080 -0.916892 -0.297961 0.265571 0.217864 -0.833040 -0.508507 0.420778 -0.389940 0.819080 -0.880614 -0.392417 0.265571 0.303167 -0.805922 -0.508507 0.458985 -0.344151 0.819080 -0.835118 -0.481716 0.265571 0.385964 -0.769709 -0.508507 0.492527 -0.294151 0.819080 -0.780031 -0.566589 0.265571 0.464509 -0.725018 -0.508507 0.520644 -0.240910 0.819080 -0.716353 -0.645221 0.265571 0.537938 -0.672341 -0.508507 0.543025 -0.185016 0.819080 -0.644784 -0.716747 0.265571 0.604829 -0.612864 -0.508507 0.559298 -0.127644 0.819080 -0.566892 -0.779811 0.265571 0.665731 -0.546098 -0.508507 0.569596 -0.068322 0.819080 -0.482040 -0.834930 0.265571 0.719299 -0.473317 -0.508507 0.573620 -0.008248 0.819080 -0.391879 -0.880853 0.265571 0.764549 -0.396088 -0.508507 0.571376 0.051345 0.819080 -0.298318 -0.916776 0.265571 0.801851 -0.313776 -0.508507 0.562848 0.110947 0.819080 -0.200590 -0.942993 0.265571 0.830321 -0.228008 -0.508507 0.548120 0.169326 0.819080 -0.100653 -0.958823 0.265571 0.849531 -0.140421 -0.508507 0.527539 0.225411 0.819080 -0.000393 -0.964091 0.265571 0.859569 -0.050610 -0.508507 0.501009 0.279460 0.819080 0.100653 -0.958823 0.265571 0.860140 0.039757 -0.508507 0.468960 0.330430 0.819080 0.200590 -0.942993 0.265571 0.851236 0.129687 -0.508507 0.431746 0.377760 0.819080 0.298318 -0.916776 0.265571 0.833173 0.217355 -0.508507 0.390197 0.420540 0.819080 0.391879 -0.880853 0.265571 0.805804 0.303481 -0.508507 0.343972 0.459119 0.819080 0.482040 -0.834930 0.265571 0.769559 0.386263 -0.508507 0.293959 0.492641 0.819080 0.566892 -0.779811 0.265571 0.725302 0.464066 -0.508507 0.241228 0.520496 0.819080 0.644784 -0.716747 0.265571 0.672670 0.537528 -0.508507 0.185348 0.542912 0.819080 0.716353 -0.645221 0.265571 0.612629 0.605068 -0.508507 0.127426 0.559348 0.819080 0.780031 -0.566589 0.265571 0.545839 0.665943 -0.508507 0.068101 0.569622 0.819080 0.835118 -0.481716 0.265571 0.473757 0.719010 -0.508507 0.008599 0.573614 0.819080 0.880614 -0.392417 0.265571 0.395790 0.764703 -0.508507 -0.051568 0.571356 0.819080 0.916892 -0.297961 0.265571 0.313464 0.801973 -0.508507 -0.111166 0.562805 0.819080 0.943071 -0.200223 0.265571 0.228515 0.830182 -0.508507 -0.168992 0.548224 0.819080 0.958761 -0.101239 0.265571 0.140248 0.849559 -0.508507 -0.225519 0.527493 0.819080 0.964091 -0.000196 0.265571 0.050435 0.859580 -0.508507 -0.279562 0.500952 0.819080 0.958802 0.100848 0.265571 -0.039933 0.860131 -0.508507 -0.330525 0.468893 0.819080 0.942952 0.200782 0.265571 -0.129009 0.851339 -0.508507 -0.377416 0.432047 0.819080 0.917013 0.297588 0.265571 -0.217525 0.833129 -0.508507 -0.420619 0.390111 0.819080 0.880774 0.392058 0.265571 -0.303645 0.805742 -0.508507 -0.459189 0.343879 0.819080 0.834832 0.482211 0.265571 -0.386420 0.769480 -0.508507 -0.492701 0.293858 0.819080 0.779695 0.567051 0.265571 -0.464214 0.725208 -0.508507 -0.520545 0.241122 0.819080 0.716615 0.644930 0.265571 -0.537664 0.672561 -0.508507 -0.542950 0.185237 0.819080 0.645076 0.716484 0.265571 -0.605192 0.612505 -0.508507 -0.559374 0.127312 0.819080 0.566430 0.780147 0.265571 -0.665508 0.546369 -0.508507 -0.569568 0.068554 0.819080 0.482381 0.834734 0.265571 -0.719106 0.473610 -0.508507 -0.573616 0.008482 0.819080 0.392238 0.880694 0.265571 -0.764784 0.395634 -0.508507 -0.571346 -0.051684 0.819080 0.297775 0.916953 0.265571 -0.802037 0.313301 -0.508507 -0.562782 -0.111281 0.819080 0.200031 0.943112 0.265571 -0.830228 0.228346 -0.508507 -0.548189 -0.169103 0.819080 0.101044 0.958782 0.265571 -0.849588 0.140075 -0.508507 -0.527447 -0.225626 0.819080 0.000000 0.964091 0.265571 -0.859590 0.050260 -0.508507 -0.500895 -0.279664 0.819080 -0.101044 0.958782 0.265571 -0.860163 -0.039248 -0.508507 -0.469156 -0.330152 0.819080 -0.200031 0.943112 0.265571 -0.851312 -0.129183 -0.508507 -0.431970 -0.377504 0.819080 -0.297775 0.916953 0.265571 -0.833084 -0.217695 -0.508507 -0.390025 -0.420699 0.819080 -0.392238 0.880694 0.265571 -0.805680 -0.303809 -0.508507 -0.343785 -0.459259 0.819080 -0.482381 0.834734 0.265571 -0.769788 -0.385807 -0.508507 -0.294251 -0.492467 0.819080 -0.566430 0.780147 0.265571 -0.725113 -0.464362 -0.508507 -0.241016 -0.520594 0.819080 -0.645076 0.716484 0.265571 -0.672451 -0.537801 -0.508507 -0.185127 -0.542988 0.819080 -0.716615 0.644930 0.265571 -0.612987 -0.604704 -0.508507 -0.127757 -0.559272 0.819080 -0.779695 0.567051 0.265571 -0.546234 -0.665620 -0.508507 -0.068438 -0.569582 0.819080 -0.834832 0.482211 0.265571 -0.473464 -0.719203 -0.508507 -0.008365 -0.573618 0.819080 -0.880774 0.392058 0.265571 -0.395479 -0.764864 -0.508507 0.051800 -0.571335 0.819080 -0.917013 0.297588 0.265571 -0.313939 -0.801787 -0.508507 0.110832 -0.562871 0.819080 -0.942952 0.200782 0.265571 -0.228177 -0.830275 -0.508507 0.169215 -0.548155 0.819080 -0.958802 0.100848 0.265571 0.718125 0.098782 -0.688867 0.071385 -0.995109 -0.068280 -0.692243 -0.000141 -0.721664 0.703817 0.173503 -0.688867 0.175286 -0.982147 -0.068280 -0.688416 -0.072692 -0.721664 0.682003 0.245630 -0.688867 0.276298 -0.958643 -0.068280 -0.677150 -0.143766 -0.721664 0.652503 0.315756 -0.688867 0.375249 -0.924406 -0.068280 -0.658353 -0.213944 -0.721664 0.615816 0.382404 -0.688867 0.470067 -0.879986 -0.068280 -0.632304 -0.281766 -0.721664 0.572790 0.444267 -0.688867 0.558881 -0.826432 -0.068280 -0.599637 -0.345885 -0.721664 0.523073 0.501853 -0.688867 0.642419 -0.763306 -0.068280 -0.560083 -0.406826 -0.721664 0.467594 0.553911 -0.688867 0.718880 -0.691772 -0.068280 -0.514360 -0.463286 -0.721664 0.406965 0.599868 -0.688867 0.787424 -0.612618 -0.068280 -0.462972 -0.514643 -0.721664 0.342492 0.638875 -0.688867 0.846767 -0.527564 -0.068280 -0.407044 -0.559925 -0.721664 0.273648 0.671252 -0.688867 0.897396 -0.435911 -0.068280 -0.346118 -0.599502 -0.721664 0.201788 0.696235 -0.688867 0.938140 -0.339457 -0.068280 -0.281379 -0.632476 -0.721664 0.128420 0.713421 -0.688867 0.968311 -0.240232 -0.068280 -0.214200 -0.658269 -0.721664 0.052941 0.722952 -0.688867 0.988156 -0.137423 -0.068280 -0.144029 -0.677094 -0.721664 -0.023121 0.724519 -0.688867 0.997117 -0.033100 -0.068280 -0.072272 -0.688460 -0.721664 -0.098343 0.718185 -0.688867 0.995153 0.070777 -0.068280 -0.000282 -0.692243 -0.721664 -0.173073 0.703923 -0.688867 0.982254 0.174686 -0.068280 0.072272 -0.688460 -0.721664 -0.245896 0.681907 -0.688867 0.958536 0.276671 -0.068280 0.144029 -0.677094 -0.721664 -0.316010 0.652380 -0.688867 0.924260 0.375609 -0.068280 0.214200 -0.658269 -0.721664 -0.382028 0.616049 -0.688867 0.880273 0.469529 -0.068280 0.281379 -0.632476 -0.721664 -0.444490 0.572617 -0.688867 0.826215 0.559202 -0.068280 0.346118 -0.599502 -0.721664 -0.502057 0.522878 -0.688867 0.763056 0.642716 -0.068280 0.407044 -0.559925 -0.721664 -0.553625 0.467933 -0.688867 0.692211 0.718458 -0.068280 0.462972 -0.514643 -0.721664 -0.599619 0.407332 -0.688867 0.613099 0.787050 -0.068280 0.514360 -0.463286 -0.721664 -0.639008 0.342244 -0.688867 0.527234 0.846972 -0.068280 0.560083 -0.406826 -0.721664 -0.671358 0.273387 -0.688867 0.435562 0.897565 -0.068280 0.599637 -0.345885 -0.721664 -0.696112 0.202214 -0.688867 0.340030 0.937933 -0.068280 0.632304 -0.281766 -0.721664 -0.713471 0.128143 -0.688867 0.239855 0.968405 -0.068280 0.658353 -0.213944 -0.721664 -0.722972 0.052660 -0.688867 0.137038 0.988210 -0.068280 0.677150 -0.143766 -0.721664 -0.724533 -0.022678 -0.688867 0.033709 0.997097 -0.068280 0.688416 -0.072692 -0.721664 -0.718165 -0.098489 -0.688867 -0.070979 0.995138 -0.068280 0.692243 -0.000141 -0.721664 -0.703888 -0.173216 -0.688867 -0.174886 0.982218 -0.068280 0.688445 0.072412 -0.721664 -0.681857 -0.246034 -0.688867 -0.276866 0.958479 -0.068280 0.677064 0.144167 -0.721664 -0.652631 -0.315490 -0.688867 -0.374873 0.924559 -0.068280 0.658440 0.213676 -0.721664 -0.615971 -0.382153 -0.688867 -0.469708 0.880177 -0.068280 0.632419 0.281508 -0.721664 -0.572526 -0.444607 -0.688867 -0.559370 0.826101 -0.068280 0.599432 0.346240 -0.721664 -0.522775 -0.502163 -0.688867 -0.642871 0.762925 -0.068280 0.559842 0.407158 -0.721664 -0.467820 -0.553720 -0.688867 -0.718599 0.692065 -0.068280 0.514549 0.463077 -0.721664 -0.407209 -0.599702 -0.688867 -0.787174 0.612939 -0.068280 0.463181 0.514455 -0.721664 -0.342114 -0.639077 -0.688867 -0.847079 0.527062 -0.068280 0.406712 0.560166 -0.721664 -0.273921 -0.671140 -0.688867 -0.897218 0.436277 -0.068280 0.346362 0.599361 -0.721664 -0.202072 -0.696153 -0.688867 -0.938002 0.339839 -0.068280 0.281637 0.632361 -0.721664 -0.127997 -0.713497 -0.688867 -0.968453 0.239658 -0.068280 0.213810 0.658396 -0.721664 -0.052513 -0.722983 -0.688867 -0.988238 0.136837 -0.068280 0.143628 0.677179 -0.721664 0.022826 -0.724528 -0.688867 -0.997103 0.033506 -0.068280 0.072552 0.688431 -0.721664 0.098636 -0.718145 -0.688867 -0.995124 -0.071182 -0.068280 0.000000 0.692243 -0.721664 0.173359 -0.703852 -0.688867 -0.982183 -0.175086 -0.068280 -0.072552 0.688431 -0.721664 0.245491 -0.682053 -0.688867 -0.958700 -0.276103 -0.068280 -0.143628 0.677179 -0.721664 0.315623 -0.652567 -0.688867 -0.924482 -0.375061 -0.068280 -0.213810 0.658396 -0.721664 0.382279 -0.615893 -0.688867 -0.880082 -0.469888 -0.068280 -0.281637 0.632361 -0.721664 0.444723 -0.572436 -0.688867 -0.825987 -0.559539 -0.068280 -0.346362 0.599361 -0.721664 0.501747 -0.523175 -0.688867 -0.763437 -0.642263 -0.068280 -0.406712 0.560166 -0.721664 0.553816 -0.467707 -0.688867 -0.691919 -0.718740 -0.068280 -0.463181 0.514455 -0.721664 0.599785 -0.407087 -0.688867 -0.612779 -0.787299 -0.068280 -0.514549 0.463077 -0.721664 0.638805 -0.342623 -0.688867 -0.527736 -0.846659 -0.068280 -0.559842 0.407158 -0.721664 0.671196 -0.273784 -0.688867 -0.436094 -0.897307 -0.068280 -0.599432 0.346240 -0.721664 0.696194 -0.201930 -0.688867 -0.339648 -0.938071 -0.068280 -0.632419 0.281508 -0.721664 0.713523 -0.127852 -0.688867 -0.239461 -0.968502 -0.068280 -0.658440 0.213676 -0.721664 0.722941 -0.053089 -0.688867 -0.137624 -0.988128 -0.068280 -0.677064 0.144167 -0.721664 0.724523 0.022973 -0.688867 -0.033303 -0.997110 -0.068280 -0.688445 0.072412 -0.721664 0.017161 -0.998280 0.056050 0.289079 0.058618 0.955509 -0.957151 -0.000195 0.289588 0.121694 -0.990984 0.056050 0.281343 0.088593 0.955509 -0.951859 -0.100510 0.289588 0.223913 -0.972996 0.056050 0.270626 0.117321 0.955509 -0.936282 -0.198782 0.289588 0.324657 -0.944170 0.056050 0.256840 0.145039 0.955509 -0.910292 -0.295816 0.289588 0.421824 -0.904943 0.056050 0.240224 0.171158 0.955509 -0.874275 -0.389592 0.289588 0.513490 -0.856263 0.056050 0.221158 0.195172 0.955509 -0.829106 -0.478248 0.289588 0.600404 -0.797730 0.056050 0.199484 0.217276 0.955509 -0.774416 -0.562510 0.289588 0.680705 -0.730410 0.056050 0.175614 0.236987 0.955509 -0.711196 -0.640577 0.289588 0.753509 -0.655044 0.056050 0.149809 0.254087 0.955509 -0.640142 -0.711587 0.289588 0.817439 -0.573281 0.056050 0.122622 0.268266 0.955509 -0.562812 -0.774198 0.289588 0.873021 -0.484451 0.056050 0.093830 0.279640 0.955509 -0.478571 -0.828920 0.289588 0.918987 -0.390284 0.056050 0.064005 0.287934 0.955509 -0.389058 -0.874513 0.289588 0.954538 -0.292772 0.056050 0.033768 0.293023 0.955509 -0.296171 -0.910177 0.289588 0.979966 -0.191118 0.056050 0.002871 0.294948 0.955509 -0.199146 -0.936205 0.289588 0.994599 -0.087358 0.056050 -0.028057 0.293625 0.955509 -0.099929 -0.951921 0.289588 0.998291 0.016551 0.056050 -0.058441 0.289115 0.955509 -0.000390 -0.957151 0.289588 0.991058 0.121088 0.056050 -0.088421 0.281398 0.955509 0.099929 -0.951921 0.289588 0.972909 0.224291 0.056050 -0.117426 0.270581 0.955509 0.199146 -0.936205 0.289588 0.944043 0.325024 0.056050 -0.145138 0.256783 0.955509 0.296171 -0.910177 0.289588 0.905201 0.421271 0.056050 -0.171012 0.240329 0.955509 0.389058 -0.874513 0.289588 0.856063 0.513823 0.056050 -0.195258 0.221082 0.955509 0.478571 -0.828920 0.289588 0.797496 0.600715 0.056050 -0.217354 0.199400 0.955509 0.562812 -0.774198 0.289588 0.730826 0.680259 0.056050 -0.236879 0.175758 0.955509 0.640142 -0.711587 0.289588 0.655505 0.753108 0.056050 -0.253995 0.149964 0.955509 0.711196 -0.640577 0.289588 0.572963 0.817662 0.056050 -0.268314 0.122517 0.955509 0.774416 -0.562510 0.289588 0.484111 0.873210 0.056050 -0.279677 0.093721 0.955509 0.829106 -0.478248 0.289588 0.390845 0.918748 0.056050 -0.287895 0.064181 0.955509 0.874275 -0.389592 0.289588 0.292401 0.954652 0.056050 -0.293036 0.033654 0.955509 0.910292 -0.295816 0.289588 0.190736 0.980040 0.056050 -0.294950 0.002756 0.955509 0.936282 -0.198782 0.289588 0.087965 0.994545 0.056050 -0.293642 -0.027878 0.955509 0.951859 -0.100510 0.289588 -0.016755 0.998287 0.056050 -0.289103 -0.058500 0.955509 0.957151 -0.000195 0.289588 -0.121290 0.991033 0.056050 -0.281380 -0.088478 0.955509 0.951900 0.100122 0.289588 -0.224490 0.972863 0.056050 -0.270557 -0.117481 0.955509 0.936164 0.199337 0.289588 -0.324272 0.944302 0.056050 -0.256899 -0.144934 0.955509 0.910412 0.295446 0.289588 -0.421456 0.905115 0.056050 -0.240294 -0.171061 0.955509 0.874433 0.389236 0.289588 -0.513997 0.855959 0.056050 -0.221042 -0.195303 0.955509 0.828823 0.478739 0.289588 -0.600877 0.797374 0.056050 -0.199355 -0.217394 0.955509 0.774083 0.562969 0.289588 -0.680408 0.730687 0.056050 -0.175710 -0.236915 0.955509 0.711457 0.640287 0.289588 -0.753242 0.655351 0.056050 -0.149912 -0.254026 0.955509 0.640432 0.711327 0.289588 -0.817779 0.572797 0.056050 -0.122463 -0.268339 0.955509 0.562353 0.774531 0.289588 -0.872824 0.484806 0.056050 -0.093944 -0.279602 0.955509 0.478908 0.828725 0.289588 -0.918828 0.390658 0.056050 -0.064122 -0.287908 0.955509 0.389414 0.874354 0.289588 -0.954711 0.292207 0.056050 -0.033594 -0.293043 0.955509 0.295631 0.910352 0.289588 -0.980079 0.190537 0.056050 -0.002696 -0.294950 0.955509 0.198591 0.936323 0.289588 -0.994563 0.087763 0.056050 0.027938 -0.293636 0.955509 0.100316 0.951880 0.289588 -0.998284 -0.016958 0.056050 0.058559 -0.289091 0.955509 0.000000 0.957151 0.289588 -0.991009 -0.121492 0.056050 0.088535 -0.281361 0.955509 -0.100316 0.951880 0.289588 -0.973042 -0.223715 0.056050 0.117266 -0.270650 0.955509 -0.198591 0.936323 0.289588 -0.944236 -0.324464 0.056050 0.144986 -0.256869 0.955509 -0.295631 0.910352 0.289588 -0.905029 -0.421640 0.056050 0.171109 -0.240259 0.955509 -0.389414 0.874354 0.289588 -0.855854 -0.514171 0.056050 0.195348 -0.221002 0.955509 -0.478908 0.828725 0.289588 -0.797852 -0.600242 0.056050 0.217235 -0.199529 0.955509 -0.562353 0.774531 0.289588 -0.730548 -0.680557 0.056050 0.236951 -0.175662 0.955509 -0.640432 0.711327 0.289588 -0.655198 -0.753375 0.056050 0.254057 -0.149860 0.955509 -0.711457 0.640287 0.289588 -0.573448 -0.817322 0.056050 0.268241 -0.122676 0.955509 -0.774083 0.562969 0.289588 -0.484628 -0.872923 0.056050 0.279621 -0.093887 0.955509 -0.828823 0.478739 0.289588 -0.390471 -0.918907 0.056050 0.287921 -0.064064 0.955509 -0.874433 0.389236 0.289588 -0.292012 -0.954771 0.056050 0.293050 -0.033535 0.955509 -0.910412 0.295446 0.289588 -0.191317 -0.979927 0.056050 0.294948 -0.002931 0.955509 -0.936164 0.199337 0.289588 -0.087560 -0.994581 0.056050 0.293631 0.027998 0.955509 -0.951900 0.100122 0.289588 -0.039548 -0.997301 0.061854 -0.539197 0.073416 0.838974 -0.841251 -0.000171 -0.540645 0.065194 -0.995954 0.061854 -0.543922 0.016500 0.838974 -0.836600 -0.088340 -0.540645 0.168234 -0.983805 0.061854 -0.542696 -0.040055 0.838974 -0.822909 -0.174712 -0.540645 0.270417 -0.960754 0.061854 -0.535509 -0.096713 0.838974 -0.800066 -0.259996 -0.540645 0.369622 -0.927121 0.061854 -0.522423 -0.152305 0.838974 -0.768410 -0.342417 -0.540645 0.463872 -0.883740 0.061854 -0.503789 -0.205716 0.838974 -0.728711 -0.420338 -0.540645 0.553939 -0.830256 0.061854 -0.479454 -0.257384 0.838974 -0.680643 -0.494397 -0.540645 0.637905 -0.767627 0.061854 -0.449838 -0.306217 0.838974 -0.625078 -0.563010 -0.540645 0.714845 -0.696542 0.061854 -0.415267 -0.351676 0.838974 -0.562628 -0.625422 -0.540645 0.783292 -0.618569 0.061854 -0.376515 -0.392886 0.838974 -0.494661 -0.680451 -0.540645 0.843809 -0.533067 0.061854 -0.333264 -0.430184 0.838974 -0.420621 -0.728547 -0.540645 0.895031 -0.441694 0.061854 -0.286342 -0.462743 0.838974 -0.341947 -0.768619 -0.540645 0.936048 -0.346392 0.061854 -0.236756 -0.489969 0.838974 -0.260308 -0.799964 -0.540645 0.967197 -0.246380 0.061854 -0.184100 -0.512084 0.838974 -0.175032 -0.822841 -0.540645 0.987693 -0.143654 0.061854 -0.129416 -0.528559 0.838974 -0.087828 -0.836654 -0.540645 0.997277 -0.040158 0.061854 -0.073746 -0.539152 0.838974 -0.000343 -0.841251 -0.540645 0.995993 0.064585 0.061854 -0.016833 -0.543911 0.838974 0.087828 -0.836654 -0.540645 0.983739 0.168617 0.061854 0.040266 -0.542680 0.838974 0.175032 -0.822841 -0.540645 0.960649 0.270791 0.061854 0.096921 -0.535471 0.838974 0.260308 -0.799964 -0.540645 0.927347 0.369055 0.061854 0.151986 -0.522516 0.838974 0.341947 -0.768619 -0.540645 0.883560 0.464215 0.061854 0.205912 -0.503709 0.838974 0.420621 -0.728547 -0.540645 0.830041 0.554262 0.061854 0.257571 -0.479354 0.838974 0.494661 -0.680451 -0.540645 0.768016 0.637436 0.061854 0.305942 -0.450025 0.838974 0.562628 -0.625422 -0.540645 0.696979 0.714419 0.061854 0.351423 -0.415482 0.838974 0.625078 -0.563010 -0.540645 0.618264 0.783533 0.061854 0.393033 -0.376362 0.838974 0.680643 -0.494397 -0.540645 0.532739 0.844016 0.061854 0.430313 -0.333096 0.838974 0.728711 -0.420338 -0.540645 0.442241 0.894761 0.061854 0.462568 -0.286625 0.838974 0.768410 -0.342417 -0.540645 0.346028 0.936183 0.061854 0.490061 -0.236566 0.838974 0.800066 -0.259996 -0.540645 0.246004 0.967293 0.061854 0.512156 -0.183901 0.838974 0.822909 -0.174712 -0.540645 0.144257 0.987605 0.061854 0.528480 -0.129739 0.838974 0.836600 -0.088340 -0.540645 0.039955 0.997285 0.061854 0.539167 -0.073636 0.838974 0.841251 -0.000171 -0.540645 -0.064788 0.995980 0.061854 0.543915 -0.016722 0.838974 0.836636 0.087999 -0.540645 -0.168817 0.983705 0.061854 0.542672 0.040376 0.838974 0.822805 0.175200 -0.540645 -0.270026 0.960864 0.061854 0.535548 0.096494 0.838974 0.800171 0.259670 -0.540645 -0.369244 0.927272 0.061854 0.522485 0.152092 0.838974 0.768549 0.342104 -0.540645 -0.464395 0.883465 0.061854 0.503667 0.206015 0.838974 0.728462 0.420769 -0.540645 -0.554431 0.829928 0.061854 0.479302 0.257668 0.838974 0.680350 0.494800 -0.540645 -0.637592 0.767887 0.061854 0.449963 0.306033 0.838974 0.625307 0.562755 -0.540645 -0.714561 0.696833 0.061854 0.415410 0.351507 0.838974 0.562883 0.625193 -0.540645 -0.783659 0.618104 0.061854 0.376282 0.393109 0.838974 0.494258 0.680744 -0.540645 -0.843592 0.533411 0.061854 0.333439 0.430048 0.838974 0.420918 0.728376 -0.540645 -0.894851 0.442059 0.061854 0.286530 0.462626 0.838974 0.342261 0.768479 -0.540645 -0.936253 0.345837 0.061854 0.236466 0.490109 0.838974 0.259833 0.800119 -0.540645 -0.967343 0.245807 0.061854 0.183797 0.512193 0.838974 0.174544 0.822944 -0.540645 -0.987635 0.144056 0.061854 0.129631 0.528506 0.838974 0.088169 0.836618 -0.540645 -0.997293 0.039752 0.061854 0.073526 0.539182 0.838974 0.000000 0.841251 -0.540645 -0.995967 -0.064991 0.061854 0.016611 0.543918 0.838974 -0.088169 0.836618 -0.540645 -0.983839 -0.168034 0.061854 -0.039944 0.542704 0.838974 -0.174544 0.822944 -0.540645 -0.960809 -0.270222 0.061854 -0.096603 0.535528 0.838974 -0.259833 0.800119 -0.540645 -0.927197 -0.369433 0.061854 -0.152199 0.522454 0.838974 -0.342261 0.768479 -0.540645 -0.883371 -0.464575 0.061854 -0.206117 0.503625 0.838974 -0.420918 0.728376 -0.540645 -0.830369 -0.553770 0.061854 -0.257286 0.479507 0.838974 -0.494258 0.680744 -0.540645 -0.767757 -0.637749 0.061854 -0.306125 0.449900 0.838974 -0.562883 0.625193 -0.540645 -0.696688 -0.714703 0.061854 -0.351592 0.415338 0.838974 -0.625307 0.562755 -0.540645 -0.618728 -0.783166 0.061854 -0.392810 0.376595 0.838974 -0.680350 0.494800 -0.540645 -0.533239 -0.843700 0.061854 -0.430116 0.333351 0.838974 -0.728462 0.420769 -0.540645 -0.441877 -0.894941 0.061854 -0.462685 0.286436 0.838974 -0.768549 0.342104 -0.540645 -0.345647 -0.936324 0.061854 -0.490157 0.236366 0.838974 -0.800171 0.259670 -0.540645 -0.246577 -0.967147 0.061854 -0.512047 0.184204 0.838974 -0.822805 0.175200 -0.540645 -0.143855 -0.987664 0.061854 -0.528532 0.129524 0.838974 -0.836636 0.087999 -0.540645 -0.263159 0.892869 -0.365420 -0.521483 -0.450316 -0.724756 -0.811667 -0.000165 0.584121 -0.355288 0.860371 -0.365420 -0.471415 -0.502491 -0.724756 -0.807179 -0.085233 0.584121 -0.442686 0.818839 -0.365420 -0.416703 -0.548715 -0.724756 -0.793970 -0.168568 0.584121 -0.526068 0.767933 -0.365420 -0.356899 -0.589366 -0.724756 -0.771930 -0.250853 0.584121 -0.603656 0.708568 -0.365420 -0.293163 -0.623526 -0.724756 -0.741387 -0.330375 0.584121 -0.673952 0.642072 -0.365420 -0.226849 -0.650591 -0.724756 -0.703084 -0.405556 0.584121 -0.737534 0.567901 -0.365420 -0.157413 -0.670783 -0.724756 -0.656707 -0.477010 0.584121 -0.792992 0.487474 -0.365420 -0.086244 -0.683587 -0.724756 -0.603096 -0.543211 0.584121 -0.839716 0.401678 -0.365420 -0.014124 -0.688861 -0.724756 -0.542842 -0.603428 0.584121 -0.876878 0.312335 -0.365420 0.057465 -0.686605 -0.724756 -0.477266 -0.656521 0.584121 -0.904784 0.218711 -0.365420 0.129110 -0.676801 -0.724756 -0.405829 -0.702927 0.584121 -0.922723 0.122679 -0.365420 0.199332 -0.659542 -0.724756 -0.329922 -0.741589 0.584121 -0.930473 0.026226 -0.365420 0.266724 -0.635285 -0.724756 -0.251153 -0.771832 0.584121 -0.928097 -0.071439 -0.365420 0.331837 -0.603832 -0.724756 -0.168877 -0.793904 0.584121 -0.915499 -0.168317 -0.365420 0.393296 -0.565727 -0.724756 -0.084740 -0.807231 0.584121 -0.893030 -0.262613 -0.365420 0.449997 -0.521758 -0.724756 -0.000331 -0.811667 0.584121 -0.860588 -0.354763 -0.365420 0.502203 -0.471722 -0.724756 0.084740 -0.807231 0.584121 -0.818667 -0.443005 -0.365420 0.548877 -0.416489 -0.724756 0.168877 -0.793904 0.584121 -0.767728 -0.526367 -0.365420 0.589505 -0.356669 -0.724756 0.251153 -0.771832 0.584121 -0.708936 -0.603223 -0.365420 0.623346 -0.293544 -0.724756 0.329922 -0.741589 0.584121 -0.641810 -0.674202 -0.365420 0.650679 -0.226596 -0.724756 0.405829 -0.702927 0.584121 -0.567614 -0.737755 -0.365420 0.670844 -0.157152 -0.724756 0.477266 -0.656521 0.584121 -0.487959 -0.792695 -0.365420 0.683534 -0.086661 -0.724756 0.542842 -0.603428 0.584121 -0.402191 -0.839470 -0.365420 0.688852 -0.014545 -0.724756 0.603096 -0.543211 0.584121 -0.311993 -0.877000 -0.365420 0.686583 0.057732 -0.724756 0.656707 -0.477010 0.584121 -0.218360 -0.904869 -0.365420 0.676751 0.129373 -0.724756 0.703084 -0.405556 0.584121 -0.123243 -0.922648 -0.365420 0.659664 0.198929 -0.724756 0.741387 -0.330375 0.584121 -0.025864 -0.930483 -0.365420 0.635181 0.266971 -0.724756 0.771930 -0.250853 0.584121 0.071800 -0.928069 -0.365420 0.603703 0.332072 -0.724756 0.793970 -0.168568 0.584121 0.167757 -0.915601 -0.365420 0.565967 0.392950 -0.724756 0.807179 -0.085233 0.584121 0.262795 -0.892976 -0.365420 0.521666 0.450103 -0.724756 0.811667 -0.000165 0.584121 0.354938 -0.860516 -0.365420 0.471619 0.502299 -0.724756 0.807214 0.084904 0.584121 0.443171 -0.818576 -0.365420 0.416377 0.548962 -0.724756 0.793870 0.169038 0.584121 0.525755 -0.768147 -0.365420 0.357139 0.589221 -0.724756 0.772032 0.250539 0.584121 0.603367 -0.708813 -0.365420 0.293417 0.623406 -0.724756 0.741522 0.330073 0.584121 0.674333 -0.641672 -0.365420 0.226464 0.650725 -0.724756 0.702844 0.405972 0.584121 0.737871 -0.567463 -0.365420 0.157016 0.670876 -0.724756 0.656424 0.477399 0.584121 0.792794 -0.487797 -0.365420 0.086522 0.683552 -0.724756 0.603317 0.542965 0.584121 0.839552 -0.402020 -0.365420 0.014404 0.688855 -0.724756 0.543088 0.603207 0.584121 0.877063 -0.311815 -0.365420 -0.057872 0.686571 -0.724756 0.476877 0.656804 0.584121 0.904694 -0.219080 -0.365420 -0.128834 0.676854 -0.724756 0.406115 0.702761 0.584121 0.922673 -0.123055 -0.365420 -0.199064 0.659623 -0.724756 0.330224 0.741455 0.584121 0.930489 -0.025674 -0.365420 -0.267100 0.635127 -0.724756 0.250696 0.771981 0.584121 0.928055 0.071989 -0.365420 -0.332195 0.603635 -0.724756 0.168406 0.794004 0.584121 0.915567 0.167944 -0.365420 -0.393065 0.565887 -0.724756 0.085069 0.807197 0.584121 0.892923 0.262977 -0.365420 -0.450210 0.521575 -0.724756 0.000000 0.811667 0.584121 0.860443 0.355113 -0.365420 -0.502395 0.471517 -0.724756 -0.085069 0.807197 0.584121 0.818929 0.442519 -0.365420 -0.548630 0.416814 -0.724756 -0.168406 0.794004 0.584121 0.768040 0.525912 -0.365420 -0.589293 0.357019 -0.724756 -0.250696 0.771981 0.584121 0.708690 0.603511 -0.365420 -0.623466 0.293290 -0.724756 -0.330224 0.741455 0.584121 0.641535 0.674463 -0.365420 -0.650771 0.226331 -0.724756 -0.406115 0.702761 0.584121 0.568051 0.737419 -0.365420 -0.670751 0.157550 -0.724756 -0.476877 0.656804 0.584121 0.487636 0.792893 -0.365420 -0.683569 0.086383 -0.724756 -0.543088 0.603207 0.584121 0.401849 0.839634 -0.365420 -0.688858 0.014264 -0.724756 -0.603317 0.542965 0.584121 0.312513 0.876814 -0.365420 -0.686617 -0.057325 -0.724756 -0.656424 0.477399 0.584121 0.218896 0.904739 -0.365420 -0.676827 -0.128972 -0.724756 -0.702844 0.405972 0.584121 0.122867 0.922698 -0.365420 -0.659582 -0.199198 -0.724756 -0.741522 0.330073 0.584121 0.025485 0.930494 -0.365420 -0.635073 -0.267230 -0.724756 -0.772032 0.250539 0.584121 -0.071250 0.928112 -0.365420 -0.603899 -0.331714 -0.724756 -0.793870 0.169038 0.584121 -0.168130 0.915533 -0.365420 -0.565807 -0.393180 -0.724756 -0.807214 0.084904 0.584121 0.102825 0.261734 0.959647 -0.028093 0.965140 -0.260222 -0.994303 -0.000202 0.106593 0.074827 0.271069 0.959647 -0.129092 0.956880 -0.260222 -0.988805 -0.104411 0.106593 0.046282 0.277372 0.959647 -0.227731 0.938309 -0.260222 -0.972624 -0.206498 0.106593 0.016957 0.280695 0.959647 -0.324818 0.909273 -0.260222 -0.945624 -0.307298 0.106593 -0.012555 0.280927 0.959647 -0.418328 0.870222 -0.260222 -0.908209 -0.404714 0.106593 -0.041651 0.278105 0.959647 -0.506408 0.822092 -0.260222 -0.861288 -0.496811 0.106593 -0.070569 0.272208 0.959647 -0.589780 0.764490 -0.260222 -0.804475 -0.584344 0.106593 -0.098710 0.263313 0.959647 -0.666655 0.698466 -0.260222 -0.738801 -0.665440 0.106593 -0.125764 0.251517 0.959647 -0.736188 0.624749 -0.260222 -0.664989 -0.739207 0.106593 -0.151195 0.237103 0.959647 -0.797067 0.544948 -0.260222 -0.584657 -0.804248 0.106593 -0.175212 0.219950 0.959647 -0.849792 0.458408 -0.260222 -0.497146 -0.861094 0.106593 -0.197300 0.200376 0.959647 -0.893156 0.366819 -0.260222 -0.404159 -0.908457 0.106593 -0.217035 0.178811 0.959647 -0.926411 0.272117 -0.260222 -0.307666 -0.945505 0.106593 -0.234580 0.155079 0.959647 -0.949829 0.173523 -0.260222 -0.206876 -0.972543 0.106593 -0.249542 0.129639 0.959647 -0.962784 0.073019 -0.260222 -0.103807 -0.988869 0.106593 -0.261671 0.102985 0.959647 -0.965157 -0.027504 -0.260222 -0.000405 -0.994303 0.106593 -0.271023 0.074993 0.959647 -0.956959 -0.128508 -0.260222 0.103807 -0.988869 0.106593 -0.277390 0.046174 0.959647 -0.938220 -0.228096 -0.260222 0.206876 -0.972543 0.106593 -0.280702 0.016848 0.959647 -0.909147 -0.325172 -0.260222 0.307666 -0.945505 0.106593 -0.280934 -0.012384 0.959647 -0.870478 -0.417796 -0.260222 0.404159 -0.908457 0.106593 -0.278089 -0.041759 0.959647 -0.821895 -0.506727 -0.260222 0.497146 -0.861094 0.106593 -0.272181 -0.070675 0.959647 -0.764260 -0.590077 -0.260222 0.584657 -0.804248 0.106593 -0.263373 -0.098549 0.959647 -0.698873 -0.666229 -0.260222 0.664989 -0.739207 0.106593 -0.251594 -0.125610 0.959647 -0.625199 -0.735806 -0.260222 0.738801 -0.665440 0.106593 -0.237044 -0.151287 0.959647 -0.544638 -0.797279 -0.260222 0.804475 -0.584344 0.106593 -0.219882 -0.175298 0.959647 -0.458078 -0.849970 -0.260222 0.861288 -0.496811 0.106593 -0.200496 -0.197177 0.959647 -0.367365 -0.892932 -0.260222 0.908209 -0.404714 0.106593 -0.178726 -0.217105 0.959647 -0.271756 -0.926517 -0.260222 0.945624 -0.307298 0.106593 -0.154988 -0.234641 0.959647 -0.173154 -0.949896 -0.260222 0.972624 -0.206498 0.106593 -0.129792 -0.249463 0.959647 -0.073607 -0.962739 -0.260222 0.988805 -0.104411 0.106593 -0.102932 -0.261692 0.959647 0.027700 -0.965151 -0.260222 0.994303 -0.000202 0.106593 -0.074937 -0.271038 0.959647 0.128703 -0.956933 -0.260222 0.988848 0.104009 0.106593 -0.046118 -0.277400 0.959647 0.228287 -0.938174 -0.260222 0.972501 0.207074 0.106593 -0.017071 -0.280689 0.959647 0.324448 -0.909405 -0.260222 0.945750 0.306913 0.106593 0.012441 -0.280932 0.959647 0.417973 -0.870392 -0.260222 0.908374 0.404344 0.106593 0.041816 -0.278081 0.959647 0.506895 -0.821792 -0.260222 0.860993 0.497321 0.106593 0.070731 -0.272167 0.959647 0.590233 -0.764140 -0.260222 0.804128 0.584821 0.106593 0.098603 -0.263353 0.959647 0.666371 -0.698738 -0.260222 0.739072 0.665140 0.106593 0.125661 -0.251569 0.959647 0.735934 -0.625049 -0.260222 0.665290 0.738936 0.106593 0.151335 -0.237013 0.959647 0.797390 -0.544475 -0.260222 0.584180 0.804594 0.106593 0.175122 -0.220022 0.959647 0.849605 -0.458754 -0.260222 0.497497 0.860892 0.106593 0.197218 -0.200456 0.959647 0.893007 -0.367183 -0.260222 0.404529 0.908292 0.106593 0.217141 -0.178682 0.959647 0.926572 -0.271567 -0.260222 0.307106 0.945687 0.106593 0.234672 -0.154940 0.959647 0.949931 -0.172960 -0.260222 0.206300 0.972666 0.106593 0.249489 -0.129741 0.959647 0.962754 -0.073411 -0.260222 0.104210 0.988827 0.106593 0.261713 -0.102878 0.959647 0.965146 0.027897 -0.260222 0.000000 0.994303 0.106593 0.271054 -0.074882 0.959647 0.956907 0.128897 -0.260222 -0.104210 0.988827 0.106593 0.277363 -0.046339 0.959647 0.938355 0.227540 -0.260222 -0.206300 0.972666 0.106593 0.280692 -0.017014 0.959647 0.909339 0.324633 -0.260222 -0.307106 0.945687 0.106593 0.280929 0.012498 0.959647 0.870307 0.418151 -0.260222 -0.404529 0.908292 0.106593 0.278072 0.041873 0.959647 0.821689 0.507062 -0.260222 -0.497497 0.860892 0.106593 0.272223 0.070514 0.959647 0.764610 0.589624 -0.260222 -0.584180 0.804594 0.106593 0.263333 0.098656 0.959647 0.698602 0.666513 -0.260222 -0.665290 0.738936 0.106593 0.251543 0.125712 0.959647 0.624899 0.736061 -0.260222 -0.739072 0.665140 0.106593 0.237133 0.151146 0.959647 0.545110 0.796956 -0.260222 -0.804128 0.584821 0.106593 0.219986 0.175167 0.959647 0.458581 0.849699 -0.260222 -0.860993 0.497321 0.106593 0.200416 0.197259 0.959647 0.367001 0.893082 -0.260222 -0.908374 0.404344 0.106593 0.178638 0.217177 0.959647 0.271379 0.926627 -0.260222 -0.945750 0.306913 0.106593 0.155127 0.234549 0.959647 0.173717 0.949793 -0.260222 -0.972501 0.207074 0.106593 0.129690 0.249515 0.959647 0.073215 0.962769 -0.260222 -0.988848 0.104009 0.106593 0.019557 0.998992 0.040412 -0.438844 0.044895 -0.897441 -0.898351 -0.000183 0.439279 -0.085252 0.995540 0.040412 -0.441132 -0.001346 -0.897441 -0.893384 -0.094336 0.439279 -0.188141 0.981310 0.040412 -0.438609 -0.047134 -0.897441 -0.878763 -0.186570 0.439279 -0.289953 0.956187 0.040412 -0.431253 -0.092843 -0.897441 -0.854370 -0.277644 0.439279 -0.388571 0.920532 0.040412 -0.419148 -0.137531 -0.897441 -0.820565 -0.365659 0.439279 -0.482035 0.875220 0.040412 -0.402606 -0.180300 -0.897441 -0.778172 -0.448868 0.439279 -0.571109 0.819879 0.040412 -0.381492 -0.221503 -0.897441 -0.726842 -0.527954 0.439279 -0.653893 0.755507 0.040412 -0.356175 -0.260266 -0.897441 -0.667505 -0.601224 0.439279 -0.729474 0.682813 0.040412 -0.326936 -0.296163 -0.897441 -0.600816 -0.667872 0.439279 -0.796417 0.603395 0.040412 -0.294424 -0.328503 -0.897441 -0.528236 -0.726636 0.439279 -0.855271 0.516602 0.040412 -0.258373 -0.357551 -0.897441 -0.449170 -0.777997 0.439279 -0.904705 0.424118 0.040412 -0.219476 -0.382661 -0.897441 -0.365157 -0.820789 0.439279 -0.943845 0.327907 0.040412 -0.178565 -0.403378 -0.897441 -0.277976 -0.854262 0.439279 -0.973014 0.227179 0.040412 -0.135305 -0.419871 -0.897441 -0.186912 -0.878691 0.439279 -0.991465 0.123949 0.040412 -0.090554 -0.431740 -0.897441 -0.093790 -0.893441 0.439279 -0.998980 0.020168 0.040412 -0.045164 -0.438816 -0.897441 -0.000366 -0.898350 0.439279 -0.995591 -0.084644 0.040412 0.001076 -0.441133 -0.897441 0.093790 -0.893441 0.439279 -0.981237 -0.188522 0.040412 0.047304 -0.438591 -0.897441 0.186912 -0.878691 0.439279 -0.956074 -0.290325 0.040412 0.093011 -0.431217 -0.897441 0.277976 -0.854262 0.439279 -0.920769 -0.388009 0.040412 0.137274 -0.419232 -0.897441 0.365157 -0.820789 0.439279 -0.875032 -0.482375 0.040412 0.180457 -0.402535 -0.897441 0.449170 -0.777997 0.439279 -0.819657 -0.571428 0.040412 0.221652 -0.381405 -0.897441 0.528236 -0.726636 0.439279 -0.755906 -0.653431 0.040412 0.260049 -0.356334 -0.897441 0.600816 -0.667872 0.439279 -0.683259 -0.729057 0.040412 0.295963 -0.327117 -0.897441 0.667505 -0.601224 0.439279 -0.603086 -0.796652 0.040412 0.328617 -0.294296 -0.897441 0.726842 -0.527954 0.439279 -0.516269 -0.855472 0.040412 0.357652 -0.258234 -0.897441 0.778172 -0.448868 0.439279 -0.424671 -0.904445 0.040412 0.382527 -0.219710 -0.897441 0.820565 -0.365659 0.439279 -0.327540 -0.943973 0.040412 0.403448 -0.178408 -0.897441 0.854370 -0.277644 0.439279 -0.226801 -0.973102 0.040412 0.419924 -0.135142 -0.897441 0.878763 -0.186570 0.439279 -0.124555 -0.991389 0.040412 0.431685 -0.090818 -0.897441 0.893384 -0.094336 0.439279 -0.019964 -0.998984 0.040412 0.438825 -0.045074 -0.897441 0.898351 -0.000183 0.439279 0.084846 -0.995574 0.040412 0.441133 0.001166 -0.897441 0.893422 0.093972 0.439279 0.188722 -0.981199 0.040412 0.438581 0.047394 -0.897441 0.878653 0.187091 0.439279 0.289563 -0.956305 0.040412 0.431291 0.092668 -0.897441 0.854483 0.277296 0.439279 0.388196 -0.920690 0.040412 0.419204 0.137360 -0.897441 0.820714 0.365324 0.439279 0.482553 -0.874934 0.040412 0.402499 0.180539 -0.897441 0.777906 0.449329 0.439279 0.571595 -0.819540 0.040412 0.381360 0.221729 -0.897441 0.726528 0.528384 0.439279 0.653585 -0.755773 0.040412 0.356281 0.260121 -0.897441 0.667750 0.600952 0.439279 0.729196 -0.683110 0.040412 0.327057 0.296029 -0.897441 0.601088 0.667628 0.439279 0.796775 -0.602923 0.040412 0.294229 0.328677 -0.897441 0.527806 0.726949 0.439279 0.855061 -0.516950 0.040412 0.258519 0.357446 -0.897441 0.449487 0.777814 0.439279 0.904532 -0.424487 0.040412 0.219632 0.382572 -0.897441 0.365491 0.820640 0.439279 0.944039 -0.327348 0.040412 0.178326 0.403484 -0.897441 0.277470 0.854426 0.439279 0.973149 -0.226603 0.040412 0.135056 0.419952 -0.897441 0.186391 0.878801 0.439279 0.991415 -0.124353 0.040412 0.090730 0.431703 -0.897441 0.094154 0.893403 0.439279 0.998988 -0.019761 0.040412 0.044985 0.438835 -0.897441 0.000000 0.898351 0.439279 0.995557 0.085049 0.040412 -0.001256 0.441132 -0.897441 -0.094154 0.893403 0.439279 0.981349 0.187941 0.040412 -0.047044 0.438619 -0.897441 -0.186391 0.878801 0.439279 0.956246 0.289758 0.040412 -0.092756 0.431272 -0.897441 -0.277470 0.854426 0.439279 0.920611 0.388384 0.040412 -0.137445 0.419176 -0.897441 -0.365491 0.820640 0.439279 0.874836 0.482731 0.040412 -0.180621 0.402462 -0.897441 -0.449487 0.777814 0.439279 0.819995 0.570942 0.040412 -0.221426 0.381537 -0.897441 -0.527806 0.726949 0.439279 0.755640 0.653739 0.040412 -0.260194 0.356228 -0.897441 -0.601088 0.667628 0.439279 0.682962 0.729335 0.040412 -0.296096 0.326996 -0.897441 -0.667750 0.600952 0.439279 0.603558 0.796295 0.040412 -0.328443 0.294491 -0.897441 -0.726528 0.528384 0.439279 0.516776 0.855166 0.040412 -0.357498 0.258446 -0.897441 -0.777906 0.449329 0.439279 0.424303 0.904618 0.040412 -0.382617 0.219554 -0.897441 -0.820714 0.365324 0.439279 0.327155 0.944106 0.040412 -0.403520 0.178244 -0.897441 -0.854483 0.277296 0.439279 0.227378 0.972968 0.040412 -0.419844 0.135390 -0.897441 -0.878653 0.187091 0.439279 0.124151 0.991440 0.040412 -0.431721 0.090642 -0.897441 -0.893422 0.093972 0.439279 0.583554 -0.612369 -0.533357 -0.451897 -0.790572 0.413261 -0.674725 -0.000137 -0.738069 0.644520 -0.547836 -0.533357 -0.366551 -0.833580 0.413261 -0.670995 -0.070853 -0.738069 0.697910 -0.477966 -0.533357 -0.278034 -0.867129 0.413261 -0.660014 -0.140128 -0.738069 0.744161 -0.402188 -0.533357 -0.185621 -0.891493 0.413261 -0.641693 -0.208530 -0.738069 0.782214 -0.321979 -0.533357 -0.091164 -0.906038 0.413261 -0.616303 -0.274636 -0.738069 0.811414 -0.239036 -0.533357 0.003387 -0.910606 0.413261 -0.584463 -0.337132 -0.738069 0.831997 -0.152678 -0.533357 0.098806 -0.905236 0.413261 -0.545910 -0.396531 -0.738069 0.843417 -0.064638 -0.533357 0.193137 -0.889895 0.413261 -0.501344 -0.451562 -0.738069 0.845546 0.024115 -0.533357 0.285341 -0.864752 0.413261 -0.451256 -0.501620 -0.738069 0.838474 0.111763 -0.533357 0.373571 -0.830458 0.413261 -0.396743 -0.545756 -0.738069 0.822143 0.199025 -0.533357 0.458552 -0.786731 0.413261 -0.337359 -0.584331 -0.738069 0.796756 0.284096 -0.533357 0.538481 -0.734339 0.413261 -0.274259 -0.616471 -0.738069 0.762958 0.365274 -0.533357 0.611805 -0.674470 0.413261 -0.208780 -0.641612 -0.738069 0.720473 0.443226 -0.533357 0.679125 -0.606634 0.413261 -0.140384 -0.659960 -0.738069 0.670052 0.516295 -0.533357 0.738965 -0.532115 0.413261 -0.070443 -0.671038 -0.738069 0.612725 0.583179 -0.533357 0.790296 -0.452380 0.413261 -0.000275 -0.674725 -0.738069 0.548229 0.644185 -0.533357 0.833356 -0.367060 0.413261 0.070443 -0.671038 -0.738069 0.477695 0.698096 -0.533357 0.867237 -0.277696 0.413261 0.140384 -0.659960 -0.738069 0.401898 0.744317 -0.533357 0.891565 -0.185274 0.413261 0.208780 -0.641612 -0.738069 0.322457 0.782018 -0.533357 0.905982 -0.091718 0.413261 0.274259 -0.616471 -0.738069 0.238720 0.811507 -0.533357 0.910605 0.003741 0.413261 0.337359 -0.584331 -0.738069 0.152354 0.832057 -0.533357 0.905198 0.099158 0.413261 0.396743 -0.545756 -0.738069 0.065153 0.843377 -0.533357 0.890013 0.192593 0.413261 0.451256 -0.501620 -0.738069 -0.023598 0.845561 -0.533357 0.864926 0.284812 0.413261 0.501344 -0.451562 -0.738069 -0.112089 0.838431 -0.533357 0.830312 0.373894 0.413261 0.545910 -0.396531 -0.738069 -0.199345 0.822066 -0.533357 0.786553 0.458858 0.413261 0.584463 -0.337132 -0.738069 -0.283609 0.796929 -0.533357 0.734667 0.538033 0.413261 0.616303 -0.274636 -0.738069 -0.365571 0.762816 -0.533357 0.674232 0.612068 0.413261 0.641693 -0.208530 -0.738069 -0.443506 0.720300 -0.533357 0.606369 0.679361 0.413261 0.660014 -0.140128 -0.738069 -0.515886 0.670367 -0.533357 0.532567 0.738639 0.413261 0.670995 -0.070853 -0.738069 -0.583304 0.612606 -0.533357 0.452219 0.790388 0.413261 0.674725 -0.000137 -0.738069 -0.644297 0.548098 -0.533357 0.366890 0.833431 0.413261 0.671024 0.070579 -0.738069 -0.698193 0.477552 -0.533357 0.277520 0.867294 0.413261 0.659931 0.140519 -0.738069 -0.743997 0.402491 -0.533357 0.185984 0.891418 0.413261 0.641778 0.208269 -0.738069 -0.782083 0.322298 -0.533357 0.091533 0.906001 0.413261 0.616415 0.274385 -0.738069 -0.811555 0.238555 -0.533357 -0.003926 0.910604 0.413261 0.584263 0.337478 -0.738069 -0.832088 0.152184 -0.533357 -0.099343 0.905178 0.413261 0.545675 0.396854 -0.738069 -0.843391 0.064981 -0.533357 -0.192775 0.889974 0.413261 0.501528 0.451358 -0.738069 -0.845556 -0.023770 -0.533357 -0.284989 0.864868 0.413261 0.451460 0.501436 -0.738069 -0.838408 -0.112260 -0.533357 -0.374063 0.830236 0.413261 0.396420 0.545991 -0.738069 -0.822224 -0.198691 -0.533357 -0.458231 0.786918 0.413261 0.337597 0.584194 -0.738069 -0.796871 -0.283771 -0.533357 -0.538182 0.734558 0.413261 0.274510 0.616359 -0.738069 -0.762742 -0.365726 -0.533357 -0.612205 0.674107 0.413261 0.208399 0.641735 -0.738069 -0.720210 -0.443653 -0.533357 -0.679485 0.606231 0.413261 0.139993 0.660043 -0.738069 -0.670262 -0.516023 -0.533357 -0.738748 0.532416 0.413261 0.070716 0.671009 -0.738069 -0.612488 -0.583429 -0.533357 -0.790480 0.452058 0.413261 0.000000 0.674725 -0.738069 -0.547967 -0.644409 -0.533357 -0.833506 0.366720 0.413261 -0.070716 0.671009 -0.738069 -0.478108 -0.697813 -0.533357 -0.867072 0.278210 0.413261 -0.139993 0.660043 -0.738069 -0.402339 -0.744079 -0.533357 -0.891455 0.185803 0.413261 -0.208399 0.641735 -0.738069 -0.322139 -0.782149 -0.533357 -0.906019 0.091349 0.413261 -0.274510 0.616359 -0.738069 -0.238390 -0.811604 -0.533357 -0.910603 -0.004112 0.413261 -0.337597 0.584194 -0.738069 -0.152847 -0.831966 -0.533357 -0.905256 -0.098622 0.413261 -0.396420 0.545991 -0.738069 -0.064809 -0.843404 -0.533357 -0.889934 -0.192956 0.413261 -0.451460 0.501436 -0.738069 0.023942 -0.845551 -0.533357 -0.864810 -0.285165 0.413261 -0.501528 0.451358 -0.738069 0.111592 -0.838497 -0.533357 -0.830534 -0.373402 0.413261 -0.545675 0.396854 -0.738069 0.198858 -0.822183 -0.533357 -0.786824 -0.458392 0.413261 -0.584263 0.337478 -0.738069 0.283933 -0.796814 -0.533357 -0.734448 -0.538332 0.413261 -0.616415 0.274385 -0.738069 0.365882 -0.762667 -0.533357 -0.673982 -0.612342 0.413261 -0.641778 0.208269 -0.738069 0.443079 -0.720563 -0.533357 -0.606772 -0.679002 0.413261 -0.659931 0.140519 -0.738069 0.516159 -0.670157 -0.533357 -0.532266 -0.738856 0.413261 -0.671024 0.070579 -0.738069 -0.842431 0.464972 0.272234 0.442422 0.885326 -0.143044 -0.307527 -0.000063 -0.951539 -0.886524 0.374118 0.272234 0.347197 0.926819 -0.143044 -0.305826 -0.032293 -0.951539 -0.920572 0.280064 0.272234 0.249105 0.957854 -0.143044 -0.300822 -0.063867 -0.951539 -0.944855 0.182039 0.272234 0.147343 0.978687 -0.143044 -0.292471 -0.095044 -0.951539 -0.958730 0.082009 0.272234 0.043958 0.988740 -0.143044 -0.280899 -0.125174 -0.951539 -0.962064 -0.017962 0.272234 -0.058923 0.987961 -0.143044 -0.266387 -0.153658 -0.951539 -0.954882 -0.118694 0.272234 -0.162144 0.976344 -0.143044 -0.248815 -0.180731 -0.951539 -0.937183 -0.218119 0.272234 -0.263578 0.953973 -0.143044 -0.228503 -0.205813 -0.951539 -0.909162 -0.315142 0.272234 -0.362110 0.921094 -0.143044 -0.205674 -0.228629 -0.951539 -0.871534 -0.407821 0.272234 -0.455775 0.878526 -0.143044 -0.180828 -0.248745 -0.951539 -0.823991 -0.496918 0.272234 -0.545340 0.825919 -0.143044 -0.153762 -0.266327 -0.951539 -0.767372 -0.580542 0.272234 -0.628899 0.764215 -0.143044 -0.125002 -0.280975 -0.951539 -0.702959 -0.657068 0.272234 -0.704836 0.694798 -0.143044 -0.095158 -0.292434 -0.951539 -0.630222 -0.727124 0.272234 -0.773774 0.617100 -0.143044 -0.063984 -0.300797 -0.951539 -0.550543 -0.789171 0.272234 -0.834189 0.532604 -0.143044 -0.032106 -0.305846 -0.951539 -0.465486 -0.842147 0.272234 -0.885055 0.442963 -0.143044 -0.000125 -0.307527 -0.951539 -0.374660 -0.886295 0.272234 -0.926606 0.347763 -0.143044 0.032106 -0.305846 -0.951539 -0.279706 -0.920681 0.272234 -0.957951 0.248733 -0.143044 0.063984 -0.300797 -0.951539 -0.181672 -0.944926 0.272234 -0.978744 0.146963 -0.143044 0.095158 -0.292434 -0.951539 -0.082595 -0.958680 0.272234 -0.988713 0.044563 -0.143044 0.125002 -0.280975 -0.951539 0.018337 -0.962056 0.272234 -0.987938 -0.059307 -0.143044 0.153762 -0.266327 -0.951539 0.119066 -0.954836 0.272234 -0.976281 -0.162523 -0.143044 0.180828 -0.248745 -0.951539 0.217547 -0.937317 0.272234 -0.954134 -0.262996 -0.143044 0.205674 -0.228629 -0.951539 0.314586 -0.909354 0.272234 -0.921315 -0.361547 -0.143044 0.228503 -0.205813 -0.951539 0.408160 -0.871375 0.272234 -0.878349 -0.456117 -0.143044 0.248815 -0.180731 -0.951539 0.497239 -0.823798 0.272234 -0.825707 -0.545662 -0.143044 0.266387 -0.153658 -0.951539 0.580073 -0.767727 0.272234 -0.764599 -0.628432 -0.143044 0.280899 -0.125174 -0.951539 0.657341 -0.702703 0.272234 -0.694524 -0.705107 -0.143044 0.292471 -0.095044 -0.951539 0.727369 -0.629939 0.272234 -0.616798 -0.774014 -0.143044 0.300822 -0.063867 -0.951539 0.788835 -0.551025 0.272234 -0.533113 -0.833864 -0.143044 0.305826 -0.032293 -0.951539 0.842242 -0.465315 0.272234 -0.442782 -0.885145 -0.143044 0.307527 -0.000063 -0.951539 0.886371 -0.374479 0.272234 -0.347574 -0.926677 -0.143044 0.305840 0.032169 -0.951539 0.920738 -0.279518 0.272234 -0.248537 -0.958002 -0.143044 0.300784 0.064046 -0.951539 0.944781 -0.182424 0.272234 -0.147742 -0.978627 -0.143044 0.292510 0.094925 -0.951539 0.958697 -0.082400 0.272234 -0.044361 -0.988722 -0.143044 0.280950 0.125059 -0.951539 0.962053 0.018532 0.272234 0.059508 -0.987926 -0.143044 0.266296 0.153816 -0.951539 0.954812 0.119260 0.272234 0.162722 -0.976248 -0.143044 0.248708 0.180879 -0.951539 0.937272 0.217738 0.272234 0.263190 -0.954080 -0.143044 0.228587 0.205720 -0.951539 0.909290 0.314771 0.272234 0.361735 -0.921242 -0.143044 0.205767 0.228545 -0.951539 0.871292 0.408338 0.272234 0.456295 -0.878256 -0.143044 0.180680 0.248852 -0.951539 0.824193 0.496583 0.272234 0.545004 -0.826141 -0.143044 0.153870 0.266264 -0.951539 0.767609 0.580229 0.272234 0.628588 -0.764471 -0.143044 0.125116 0.280924 -0.951539 0.702569 0.657484 0.272234 0.705248 -0.694380 -0.143044 0.094984 0.292490 -0.951539 0.629791 0.727498 0.272234 0.774140 -0.616641 -0.143044 0.063806 0.300835 -0.951539 0.550864 0.788947 0.272234 0.833972 -0.532943 -0.143044 0.032231 0.305833 -0.951539 0.465143 0.842336 0.272234 0.885235 -0.442602 -0.143044 0.000000 0.307527 -0.951539 0.374299 0.886448 0.272234 0.926748 -0.347385 -0.143044 -0.032231 0.305833 -0.951539 0.280252 0.920515 0.272234 0.957804 -0.249300 -0.143044 -0.063806 0.300835 -0.951539 0.182232 0.944818 0.272234 0.978657 -0.147543 -0.143044 -0.094984 0.292490 -0.951539 0.082204 0.958713 0.272234 0.988731 -0.044160 -0.143044 -0.125116 0.280924 -0.951539 -0.018728 0.962049 0.272234 0.987914 0.059709 -0.143044 -0.153870 0.266264 -0.951539 -0.118500 0.954907 0.272234 0.976377 0.161945 -0.143044 -0.180680 0.248852 -0.951539 -0.217928 0.937228 0.272234 0.954027 0.263384 -0.143044 -0.205767 0.228545 -0.951539 -0.314956 0.909226 0.272234 0.921168 0.361922 -0.143044 -0.228587 0.205720 -0.951539 -0.407644 0.871617 0.272234 0.878619 0.455596 -0.143044 -0.248708 0.180879 -0.951539 -0.496750 0.824092 0.272234 0.826030 0.545172 -0.143044 -0.266296 0.153816 -0.951539 -0.580385 0.767491 0.272234 0.764343 0.628744 -0.143044 -0.280950 0.125059 -0.951539 -0.657627 0.702435 0.272234 0.694236 0.705389 -0.143044 -0.292510 0.094925 -0.951539 -0.726996 0.630370 0.272234 0.617257 0.773649 -0.143044 -0.300784 0.064046 -0.951539 -0.789059 0.550704 0.272234 0.532774 0.834081 -0.143044 -0.305840 0.032169 -0.951539 0.653217 0.680158 0.332705 -0.606129 0.733066 -0.308580 -0.453778 -0.000092 0.891115 0.578334 0.744874 0.332705 -0.679622 0.665502 -0.308580 -0.451269 -0.047651 0.891115 0.497882 0.800887 0.332705 -0.745037 0.591353 -0.308580 -0.443884 -0.094241 0.891115 0.411202 0.848658 0.332705 -0.802912 0.510011 -0.308580 -0.431562 -0.140244 0.891115 0.319991 0.887081 0.332705 -0.851943 0.423051 -0.308580 -0.414487 -0.184703 0.891115 0.226172 0.915507 0.332705 -0.891258 0.332322 -0.308580 -0.393073 -0.226734 0.891115 0.128975 0.934170 0.332705 -0.921179 0.237082 -0.308580 -0.367144 -0.266682 0.891115 0.030357 0.942542 0.332705 -0.940953 0.139230 -0.308580 -0.337172 -0.303692 0.891115 -0.068595 0.940533 0.332705 -0.950364 0.039845 -0.308580 -0.303486 -0.337358 0.891115 -0.165864 0.928330 0.332705 -0.949365 -0.059030 -0.308580 -0.266824 -0.367041 0.891115 -0.262246 0.905834 0.332705 -0.937950 -0.158205 -0.308580 -0.226886 -0.392984 0.891115 -0.355740 0.873359 0.332705 -0.916203 -0.255638 -0.308580 -0.184449 -0.414599 0.891115 -0.444483 0.831710 0.332705 -0.884714 -0.349370 -0.308580 -0.140412 -0.431507 0.891115 -0.529205 0.780545 0.332705 -0.843225 -0.440170 -0.308580 -0.094414 -0.443847 0.891115 -0.608097 0.720781 0.332705 -0.792448 -0.526122 -0.308580 -0.047375 -0.451298 0.891115 -0.679759 0.653633 0.332705 -0.733436 -0.605681 -0.308580 -0.000185 -0.453778 0.891115 -0.744520 0.578789 0.332705 -0.665917 -0.679215 -0.308580 0.047375 -0.451298 0.891115 -0.801081 0.497571 0.332705 -0.591063 -0.745267 -0.308580 0.094414 -0.443847 0.891115 -0.848818 0.410871 0.332705 -0.509698 -0.803110 -0.308580 0.140412 -0.431507 0.891115 -0.886885 0.320533 0.332705 -0.423571 -0.851684 -0.308580 0.184449 -0.414599 0.891115 -0.915595 0.225816 0.332705 -0.331976 -0.891387 -0.308580 0.226886 -0.392984 0.891115 -0.934220 0.128611 0.332705 -0.236724 -0.921271 -0.308580 0.266824 -0.367041 0.891115 -0.942524 0.030933 0.332705 -0.139805 -0.940868 -0.308580 0.303486 -0.337358 0.891115 -0.940575 -0.068021 0.332705 -0.040425 -0.950339 -0.308580 0.337172 -0.303692 0.891115 -0.928265 -0.166225 0.332705 0.059400 -0.949342 -0.308580 0.367144 -0.266682 0.891115 -0.905731 -0.262599 0.332705 0.158570 -0.937888 -0.308580 0.393073 -0.226734 0.891115 -0.873577 -0.355206 0.332705 0.255078 -0.916359 -0.308580 0.414487 -0.184703 0.891115 -0.831537 -0.444807 0.332705 0.349714 -0.884578 -0.308580 0.431562 -0.140244 0.891115 -0.780339 -0.529508 0.332705 0.440498 -0.843054 -0.308580 0.443884 -0.094241 0.891115 -0.721153 -0.607656 0.332705 0.525638 -0.792769 -0.308580 0.451269 -0.047651 0.891115 -0.653494 -0.679892 0.332705 0.605831 -0.733313 -0.308580 0.453778 -0.000092 0.891115 -0.578638 -0.744638 0.332705 0.679351 -0.665779 -0.308580 0.451288 0.047467 0.891115 -0.497407 -0.801182 0.332705 0.745388 -0.590911 -0.308580 0.443828 0.094504 0.891115 -0.411547 -0.848491 0.332705 0.802704 -0.510338 -0.308580 0.431619 0.140068 0.891115 -0.320353 -0.886951 0.332705 0.851770 -0.423398 -0.308580 0.414562 0.184534 0.891115 -0.225630 -0.915641 0.332705 0.891454 -0.331794 -0.308580 0.392938 0.226966 0.891115 -0.128421 -0.934246 0.332705 0.921319 -0.236536 -0.308580 0.366986 0.266899 0.891115 -0.030741 -0.942530 0.332705 0.940897 -0.139614 -0.308580 0.337296 0.303555 0.891115 0.068212 -0.940561 0.332705 0.950347 -0.040232 -0.308580 0.303624 0.337234 0.891115 0.166414 -0.928232 0.332705 0.949330 0.059593 -0.308580 0.266607 0.367199 0.891115 0.261877 -0.905940 0.332705 0.938014 0.157823 -0.308580 0.227046 0.392892 0.891115 0.355384 -0.873504 0.332705 0.916307 0.255265 -0.308580 0.184618 0.414524 0.891115 0.444976 -0.831447 0.332705 0.884507 0.349894 -0.308580 0.140156 0.431590 0.891115 0.529667 -0.780231 0.332705 0.842964 0.440670 -0.308580 0.094151 0.443903 0.891115 0.607803 -0.721029 0.332705 0.792662 0.525799 -0.308580 0.047559 0.451278 0.891115 0.680025 -0.653356 0.332705 0.733189 0.605980 -0.308580 0.000000 0.453778 0.891115 0.744756 -0.578486 0.332705 0.665640 0.679486 -0.308580 -0.047559 0.451278 0.891115 0.800786 -0.498045 0.332705 0.591504 0.744917 -0.308580 -0.094151 0.443903 0.891115 0.848574 -0.411374 0.332705 0.510174 0.802808 -0.308580 -0.140156 0.431590 0.891115 0.887016 -0.320172 0.332705 0.423224 0.851857 -0.308580 -0.184618 0.414524 0.891115 0.915687 -0.225443 0.332705 0.331613 0.891522 -0.308580 -0.227046 0.392892 0.891115 0.934143 -0.129165 0.332705 0.237270 0.921131 -0.308580 -0.266607 0.367199 0.891115 0.942536 -0.030549 0.332705 0.139422 0.940925 -0.308580 -0.303624 0.337234 0.891115 0.940547 0.068404 0.332705 0.040038 0.950355 -0.308580 -0.337296 0.303555 0.891115 0.928364 0.165675 0.332705 -0.058837 0.949377 -0.308580 -0.366986 0.266899 0.891115 0.905887 0.262062 0.332705 -0.158014 0.937982 -0.308580 -0.392938 0.226966 0.891115 0.873432 0.355562 0.332705 -0.255451 0.916255 -0.308580 -0.414562 0.184534 0.891115 0.831356 0.445146 0.332705 -0.350074 0.884436 -0.308580 -0.431619 0.140068 0.891115 0.780652 0.529046 0.332705 -0.439999 0.843315 -0.308580 -0.443828 0.094504 0.891115 0.720905 0.607950 0.332705 -0.525961 0.792555 -0.308580 -0.451288 0.047467 0.891115 0.495445 0.752566 0.433797 -0.566337 0.658517 -0.495598 -0.658633 -0.000134 0.752465 0.413842 0.800347 0.433797 -0.632236 0.595534 -0.495598 -0.654991 -0.069163 0.752465 0.328519 0.838985 0.433797 -0.690643 0.526682 -0.495598 -0.644272 -0.136785 0.752465 0.238779 0.868795 0.433797 -0.742040 0.451397 -0.495598 -0.626388 -0.203556 0.752465 0.146407 0.889036 0.433797 -0.785263 0.371140 -0.495598 -0.601604 -0.268085 0.752465 0.053323 0.899431 0.433797 -0.819549 0.287615 -0.495598 -0.570523 -0.329091 0.752465 -0.041237 0.900067 0.433797 -0.845179 0.200136 -0.495598 -0.532889 -0.387073 0.752465 -0.135344 0.890788 0.433797 -0.861500 0.110453 -0.495598 -0.489386 -0.440792 0.752465 -0.227959 0.871697 0.433797 -0.868332 0.019553 -0.495598 -0.440493 -0.489656 0.752465 -0.317221 0.843322 0.433797 -0.865670 -0.070696 -0.495598 -0.387281 -0.532739 0.752465 -0.403860 0.805430 0.433797 -0.853493 -0.161035 -0.495598 -0.329313 -0.570395 0.752465 -0.486050 0.758667 0.433797 -0.831915 -0.249601 -0.495598 -0.267718 -0.601767 0.752465 -0.562183 0.704110 0.433797 -0.801508 -0.334615 -0.495598 -0.203800 -0.626308 0.752465 -0.632883 0.641311 0.433797 -0.762024 -0.416776 -0.495598 -0.137036 -0.644219 0.752465 -0.696611 0.571448 0.433797 -0.714146 -0.494346 -0.495598 -0.068763 -0.655033 0.752465 -0.752263 0.495904 0.433797 -0.658863 -0.565935 -0.495598 -0.000268 -0.658632 0.752465 -0.800094 0.414330 0.433797 -0.595920 -0.631872 -0.495598 0.068763 -0.655033 0.752465 -0.839112 0.328193 0.433797 -0.526414 -0.690848 -0.495598 0.137036 -0.644219 0.752465 -0.868888 0.238440 0.433797 -0.451109 -0.742216 -0.495598 0.203800 -0.626308 0.752465 -0.888946 0.146951 0.433797 -0.371620 -0.785036 -0.495598 0.267718 -0.601767 0.752465 -0.899452 0.052973 0.433797 -0.287296 -0.819661 -0.495598 0.329313 -0.570395 0.752465 -0.900050 -0.041587 0.433797 -0.199807 -0.845257 -0.495598 0.387281 -0.532739 0.752465 -0.890870 -0.134799 0.433797 -0.110979 -0.861433 -0.495598 0.440493 -0.489656 0.752465 -0.871836 -0.227427 0.433797 -0.020084 -0.868320 -0.495598 0.489386 -0.440792 0.752465 -0.843198 -0.317549 0.433797 0.071033 -0.865643 -0.495598 0.532889 -0.387073 0.752465 -0.805273 -0.404173 0.433797 0.161367 -0.853430 -0.495598 0.570523 -0.329091 0.752465 -0.758964 -0.485587 0.433797 0.249092 -0.832067 -0.495598 0.601604 -0.268085 0.752465 -0.703891 -0.562457 0.433797 0.334927 -0.801378 -0.495598 0.626388 -0.203556 0.752465 -0.641065 -0.633132 0.433797 0.417073 -0.761862 -0.495598 0.644272 -0.136785 0.752465 -0.571874 -0.696262 0.433797 0.493910 -0.714448 -0.495598 0.654991 -0.069163 0.752465 -0.495751 -0.752364 0.433797 0.566069 -0.658748 -0.495598 0.658633 -0.000134 0.752465 -0.414168 -0.800178 0.433797 0.631993 -0.595792 -0.495598 0.655019 0.068896 0.752465 -0.328022 -0.839179 0.433797 0.690956 -0.526273 -0.495598 0.644191 0.137167 0.752465 -0.239132 -0.868698 0.433797 0.741856 -0.451700 -0.495598 0.626471 0.203301 0.752465 -0.146770 -0.888976 0.433797 0.785112 -0.371460 -0.495598 0.601713 0.267840 0.752465 -0.052790 -0.899463 0.433797 0.819719 -0.287129 -0.495598 0.570327 0.329429 0.752465 0.041771 -0.900042 0.433797 0.845298 -0.199635 -0.495598 0.532660 0.387389 0.752465 0.134981 -0.890843 0.433797 0.861455 -0.110804 -0.495598 0.489566 0.440593 0.752465 0.227604 -0.871789 0.433797 0.868324 -0.019907 -0.495598 0.440692 0.489476 0.752465 0.317720 -0.843134 0.433797 0.865628 0.071209 -0.495598 0.386965 0.532968 0.752465 0.403532 -0.805595 0.433797 0.853559 0.160688 -0.495598 0.329545 0.570260 0.752465 0.485741 -0.758865 0.433797 0.832017 0.249262 -0.495598 0.267963 0.601658 0.752465 0.562600 -0.703776 0.433797 0.801310 0.335090 -0.495598 0.203429 0.626429 0.752465 0.633263 -0.640936 0.433797 0.761777 0.417228 -0.495598 0.136654 0.644300 0.752465 0.696378 -0.571732 0.433797 0.714347 0.494055 -0.495598 0.069029 0.655005 0.752465 0.752465 -0.495598 0.433797 0.658633 0.566203 -0.495598 0.000000 0.658633 0.752465 0.800263 -0.414005 0.433797 0.595663 0.632114 -0.495598 -0.069029 0.655005 0.752465 0.838918 -0.328690 0.433797 0.526823 0.690536 -0.495598 -0.136654 0.644300 0.752465 0.868747 -0.238955 0.433797 0.451549 0.741948 -0.495598 -0.203429 0.626429 0.752465 0.889006 -0.146589 0.433797 0.371300 0.785187 -0.495598 -0.267963 0.601658 0.752465 0.899474 -0.052607 0.433797 0.286962 0.819778 -0.495598 -0.329545 0.570260 0.752465 0.900075 0.041054 0.433797 0.200308 0.845139 -0.495598 -0.386965 0.532968 0.752465 0.890815 0.135162 0.433797 0.110628 0.861478 -0.495598 -0.440692 0.489476 0.752465 0.871743 0.227782 0.433797 0.019730 0.868328 -0.495598 -0.489566 0.440593 0.752465 0.843386 0.317049 0.433797 -0.070520 0.865685 -0.495598 -0.532660 0.387389 0.752465 0.805512 0.403696 0.433797 -0.160862 0.853526 -0.495598 -0.570327 0.329429 0.752465 0.758766 0.485896 0.433797 -0.249431 0.831966 -0.495598 -0.601713 0.267840 0.752465 0.703662 0.562744 0.433797 -0.335253 0.801242 -0.495598 -0.626471 0.203301 0.752465 0.641440 0.632752 0.433797 -0.416621 0.762109 -0.495598 -0.644191 0.137167 0.752465 0.571590 0.696495 0.433797 -0.494201 0.714247 -0.495598 -0.655019 0.068896 0.752465 0.437814 0.865914 -0.241893 0.758020 -0.500193 -0.418584 -0.483451 -0.000098 -0.875372 0.344648 0.907031 -0.241893 0.806269 -0.417992 -0.418584 -0.480778 -0.050767 -0.875372 0.248625 0.937909 -0.241893 0.845306 -0.332033 -0.418584 -0.472910 -0.100404 -0.875372 0.148956 0.958801 -0.241893 0.875450 -0.241610 -0.418584 -0.459782 -0.149415 -0.875372 0.047646 0.969132 -0.241893 0.895951 -0.148526 -0.418584 -0.441590 -0.196781 -0.875372 -0.053219 0.968842 -0.241893 0.906529 -0.054713 -0.418584 -0.418776 -0.241560 -0.875372 -0.154468 0.957929 -0.241893 0.907270 0.040599 -0.418584 -0.391153 -0.284120 -0.875372 -0.254015 0.936464 -0.241893 0.898018 0.135464 -0.418584 -0.359221 -0.323551 -0.875372 -0.350764 0.904684 -0.241893 0.878875 0.228837 -0.418584 -0.323332 -0.359418 -0.875372 -0.442786 0.863382 -0.241893 0.850370 0.318839 -0.418584 -0.284272 -0.391042 -0.875372 -0.530836 0.812219 -0.241893 0.812270 0.406208 -0.418584 -0.241723 -0.418682 -0.875372 -0.613039 0.752111 -0.241893 0.765223 0.489102 -0.418584 -0.196511 -0.441711 -0.875372 -0.687805 0.684406 -0.241893 0.710314 0.565899 -0.418584 -0.149594 -0.459724 -0.875372 -0.755748 0.608550 -0.241893 0.647091 0.637229 -0.418584 -0.100588 -0.472871 -0.875372 -0.815366 0.525990 -0.241893 0.576741 0.701539 -0.418584 -0.050473 -0.480809 -0.875372 -0.865646 0.438343 -0.241893 0.500656 0.757714 -0.418584 -0.000197 -0.483451 -0.875372 -0.906820 0.345202 -0.241893 0.418485 0.806014 -0.418584 0.050473 -0.480809 -0.875372 -0.938006 0.248260 -0.241893 0.331704 0.845435 -0.418584 0.100588 -0.472871 -0.875372 -0.958859 0.148583 -0.241893 0.241270 0.875544 -0.418584 0.149594 -0.459724 -0.875372 -0.969103 0.048239 -0.241893 0.149074 0.895860 -0.418584 0.196511 -0.441711 -0.875372 -0.968821 -0.053596 -0.241893 0.054360 0.906550 -0.418584 0.241723 -0.418682 -0.875372 -0.957869 -0.154840 -0.241893 -0.040952 0.907254 -0.418584 0.284272 -0.391042 -0.875372 -0.936619 -0.253443 -0.241893 -0.134916 0.898101 -0.418584 0.323332 -0.359418 -0.875372 -0.904898 -0.350211 -0.241893 -0.228300 0.879015 -0.418584 0.359221 -0.323551 -0.875372 -0.863209 -0.443122 -0.241893 -0.319170 0.850246 -0.418584 0.391153 -0.284120 -0.875372 -0.812013 -0.531152 -0.241893 -0.406524 0.812112 -0.418584 0.418776 -0.241560 -0.875372 -0.752485 -0.612579 -0.241893 -0.488635 0.765522 -0.418584 0.441590 -0.196781 -0.875372 -0.684138 -0.688072 -0.241893 -0.566176 0.710093 -0.418584 0.459782 -0.149415 -0.875372 -0.608256 -0.755985 -0.241893 -0.637480 0.646843 -0.418584 0.472910 -0.100404 -0.875372 -0.526488 -0.815045 -0.241893 -0.701187 0.577170 -0.418584 0.480778 -0.050767 -0.875372 -0.438166 -0.865736 -0.241893 -0.757816 0.500502 -0.418584 0.483451 -0.000098 -0.875372 -0.345018 -0.906891 -0.241893 -0.806099 0.418321 -0.418584 0.480799 0.050571 -0.875372 -0.248069 -0.938056 -0.241893 -0.845502 0.331532 -0.418584 0.472850 0.100684 -0.875372 -0.149347 -0.958740 -0.241893 -0.875351 0.241967 -0.418584 0.459843 0.149228 -0.875372 -0.048041 -0.969113 -0.241893 -0.895890 0.148891 -0.418584 0.441671 0.196601 -0.875372 0.053793 -0.968811 -0.241893 -0.906561 0.054175 -0.418584 0.418633 0.241808 -0.875372 0.155035 -0.957837 -0.241893 -0.907246 -0.041137 -0.418584 0.390984 0.284352 -0.875372 0.253633 -0.936567 -0.241893 -0.898074 -0.135098 -0.418584 0.359352 0.323405 -0.875372 0.350395 -0.904826 -0.241893 -0.878968 -0.228479 -0.418584 0.323478 0.359286 -0.875372 0.443298 -0.863119 -0.241893 -0.850181 -0.319343 -0.418584 0.284041 0.391210 -0.875372 0.530505 -0.812436 -0.241893 -0.812436 -0.405877 -0.418584 0.241893 0.418584 -0.875372 0.612733 -0.752360 -0.241893 -0.765422 -0.488791 -0.418584 0.196691 0.441631 -0.875372 0.688211 -0.683998 -0.241893 -0.709978 -0.566320 -0.418584 0.149321 0.459813 -0.875372 0.756109 -0.608102 -0.241893 -0.646714 -0.637612 -0.418584 0.100307 0.472930 -0.875372 0.815152 -0.526322 -0.241893 -0.577027 -0.701304 -0.418584 0.050669 0.480788 -0.875372 0.865825 -0.437990 -0.241893 -0.500347 -0.757918 -0.418584 0.000000 0.483451 -0.875372 0.906961 -0.344833 -0.241893 -0.418157 -0.806184 -0.418584 -0.050669 0.480788 -0.875372 0.937858 -0.248816 -0.241893 -0.332205 -0.845238 -0.418584 -0.100307 0.472930 -0.875372 0.958771 -0.149151 -0.241893 -0.241788 -0.875400 -0.418584 -0.149321 0.459813 -0.875372 0.969123 -0.047844 -0.241893 -0.148709 -0.895920 -0.418584 -0.196691 0.441631 -0.875372 0.968800 0.053991 -0.241893 -0.053991 -0.906572 -0.418584 -0.241893 0.418584 -0.875372 0.957960 0.154273 -0.241893 0.040415 -0.907279 -0.418584 -0.284041 0.391210 -0.875372 0.936515 0.253824 -0.241893 0.135281 -0.898046 -0.418584 -0.323478 0.359286 -0.875372 0.904755 0.350580 -0.241893 0.228658 -0.878922 -0.418584 -0.359352 0.323405 -0.875372 0.863472 0.442610 -0.241893 0.318666 -0.850435 -0.418584 -0.390984 0.284352 -0.875372 0.812328 0.530671 -0.241893 0.406042 -0.812353 -0.418584 -0.418633 0.241808 -0.875372 0.752236 0.612886 -0.241893 0.488946 -0.765323 -0.418584 -0.441671 0.196601 -0.875372 0.683858 0.688350 -0.241893 0.566465 -0.709863 -0.418584 -0.459843 0.149228 -0.875372 0.608704 0.755624 -0.241893 0.637097 -0.647221 -0.418584 -0.472850 0.100684 -0.875372 0.526156 0.815259 -0.241893 0.701422 -0.576884 -0.418584 -0.480799 0.050571 -0.875372 0.238733 0.906919 0.347138 -0.514234 0.421306 -0.747037 -0.823753 -0.000168 0.566948 0.142367 0.926945 0.347138 -0.555558 0.365090 -0.747037 -0.819199 -0.086502 0.566948 0.045369 0.936716 0.347138 -0.590457 0.305443 -0.747037 -0.805793 -0.171078 0.566948 -0.053055 0.936312 0.347138 -0.619218 0.241877 -0.747037 -0.783425 -0.254589 0.566948 -0.150895 0.925595 0.347138 -0.641158 0.175646 -0.747037 -0.752427 -0.335295 0.566948 -0.246169 0.904929 0.347138 -0.655928 0.108137 -0.747037 -0.713554 -0.411595 0.566948 -0.339656 0.874145 0.347138 -0.663649 0.038796 -0.747037 -0.666486 -0.484114 0.566948 -0.429402 0.833732 0.347138 -0.664060 -0.030973 -0.747037 -0.612077 -0.551300 0.566948 -0.514418 0.784136 0.347138 -0.657157 -0.100401 -0.747037 -0.550926 -0.612414 0.566948 -0.593042 0.726496 0.347138 -0.643183 -0.168080 -0.747037 -0.484373 -0.666298 0.566948 -0.665918 0.660340 0.347138 -0.622025 -0.234564 -0.747037 -0.411872 -0.713394 0.566948 -0.731458 0.586910 0.347138 -0.594015 -0.298465 -0.747037 -0.334835 -0.752632 0.566948 -0.788435 0.507804 0.347138 -0.559821 -0.358518 -0.747037 -0.254893 -0.783326 0.566948 -0.837314 0.422374 0.347138 -0.519163 -0.415217 -0.747037 -0.171391 -0.805726 0.566948 -0.876971 0.332291 0.347138 -0.472786 -0.467342 -0.747037 -0.086002 -0.819252 0.566948 -0.906773 0.239287 0.347138 -0.421620 -0.513977 -0.747037 -0.000336 -0.823753 0.566948 -0.926858 0.142933 0.347138 -0.365429 -0.555335 -0.747037 0.086002 -0.819252 0.566948 -0.936733 0.045005 0.347138 -0.305214 -0.590576 -0.747037 0.171391 -0.805726 0.566948 -0.936291 -0.053420 0.347138 -0.241636 -0.619312 -0.747037 0.254893 -0.783326 0.566948 -0.925687 -0.150330 0.347138 -0.176038 -0.641051 -0.747037 0.334835 -0.752632 0.566948 -0.904833 -0.246521 0.347138 -0.107882 -0.655970 -0.747037 0.411872 -0.713394 0.566948 -0.874013 -0.339996 0.347138 -0.038537 -0.663664 -0.747037 0.484373 -0.666298 0.566948 -0.833994 -0.428892 0.347138 0.030568 -0.664079 -0.747037 0.550926 -0.612414 0.566948 -0.784450 -0.513939 0.347138 0.099999 -0.657218 -0.747037 0.612077 -0.551300 0.566948 -0.726265 -0.593324 0.347138 0.168330 -0.643118 -0.747037 0.666486 -0.484114 0.566948 -0.660081 -0.666174 0.347138 0.234806 -0.621934 -0.747037 0.713554 -0.411595 0.566948 -0.587357 -0.731100 0.347138 0.298102 -0.594197 -0.747037 0.752427 -0.335295 0.566948 -0.507498 -0.788632 0.347138 0.358736 -0.559682 -0.747037 0.783425 -0.254589 0.566948 -0.422048 -0.837479 0.347138 0.415419 -0.519001 -0.747037 0.805793 -0.171078 0.566948 -0.332827 -0.876767 0.347138 0.467054 -0.473071 -0.747037 0.819199 -0.086502 0.566948 -0.239103 -0.906821 0.347138 0.514062 -0.421515 -0.747037 0.823753 -0.000168 0.566948 -0.142744 -0.926887 0.347138 0.555409 -0.365316 -0.747037 0.819234 0.086168 0.566948 -0.044814 -0.936743 0.347138 0.590638 -0.305093 -0.747037 0.805691 0.171556 0.566948 0.052674 -0.936334 0.347138 0.619119 -0.242129 -0.747037 0.783528 0.254269 0.566948 0.150518 -0.925656 0.347138 0.641086 -0.175908 -0.747037 0.752564 0.334989 0.566948 0.246705 -0.904783 0.347138 0.655992 -0.107748 -0.747037 0.713310 0.412018 0.566948 0.340174 -0.873943 0.347138 0.663672 -0.038402 -0.747037 0.666199 0.484509 0.566948 0.429062 -0.833907 0.347138 0.664073 0.030703 -0.747037 0.612301 0.551051 0.566948 0.514099 -0.784345 0.347138 0.657197 0.100133 -0.747037 0.551175 0.612189 0.566948 0.593472 -0.726144 0.347138 0.643083 0.168461 -0.747037 0.483978 0.666585 0.566948 0.665649 -0.660611 0.347138 0.622120 0.234311 -0.747037 0.412163 0.713226 0.566948 0.731219 -0.587208 0.347138 0.594137 0.298223 -0.747037 0.335142 0.752496 0.566948 0.788736 -0.507337 0.347138 0.559609 0.358850 -0.747037 0.254429 0.783477 0.566948 0.837564 -0.421878 0.347138 0.518916 0.415525 -0.747037 0.170914 0.805828 0.566948 0.876835 -0.332649 0.347138 0.472976 0.467150 -0.747037 0.086335 0.819217 0.566948 0.906870 -0.238918 0.347138 0.421410 0.514148 -0.747037 0.000000 0.823753 0.566948 0.926916 -0.142556 0.347138 0.365203 0.555484 -0.747037 -0.086335 0.819217 0.566948 0.936707 -0.045560 0.347138 0.305564 0.590395 -0.747037 -0.170914 0.805828 0.566948 0.936323 0.052865 0.347138 0.242003 0.619169 -0.747037 -0.254429 0.783477 0.566948 0.925625 0.150707 0.347138 0.175777 0.641122 -0.747037 -0.335142 0.752496 0.566948 0.904732 0.246889 0.347138 0.107615 0.656014 -0.747037 -0.412163 0.713226 0.566948 0.874214 0.339478 0.347138 0.038931 0.663641 -0.747037 -0.483978 0.666585 0.566948 0.833819 0.429232 0.347138 -0.030838 0.664066 -0.747037 -0.551175 0.612189 0.566948 0.784241 0.514258 0.347138 -0.100267 0.657177 -0.747037 -0.612301 0.551051 0.566948 0.726617 0.592894 0.347138 -0.167949 0.643217 -0.747037 -0.666199 0.484509 0.566948 0.660475 0.665783 0.347138 -0.234437 0.622073 -0.747037 -0.713310 0.412018 0.566948 0.587059 0.731339 0.347138 -0.298344 0.594076 -0.747037 -0.752564 0.334989 0.566948 0.507176 0.788839 0.347138 -0.358964 0.559535 -0.747037 -0.783528 0.254269 0.566948 0.422545 0.837228 0.347138 -0.415112 0.519247 -0.747037 -0.805691 0.171556 0.566948 0.332470 0.876903 0.347138 -0.467246 0.472881 -0.747037 -0.819234 0.086168 0.566948 0.776940 -0.003045 0.629567 0.002285 0.999995 0.002017 -0.629570 -0.000128 0.776944 0.772980 0.078400 0.629567 -0.102534 0.994727 0.002017 -0.626090 -0.066111 0.776944 0.760665 0.158222 0.629567 -0.205245 0.978709 0.002017 -0.615844 -0.130750 0.776944 0.739893 0.237074 0.629567 -0.306690 0.951807 0.002017 -0.598748 -0.194575 0.776944 0.710971 0.313314 0.629567 -0.404758 0.914422 0.002017 -0.575058 -0.256256 0.776944 0.674604 0.385429 0.629567 -0.497499 0.867462 0.002017 -0.545348 -0.314570 0.776944 0.630493 0.454009 0.629567 -0.585675 0.810543 0.002017 -0.509376 -0.369994 0.776944 0.579437 0.517589 0.629567 -0.667401 0.744696 0.002017 -0.467792 -0.421342 0.776944 0.521998 0.575468 0.629567 -0.741774 0.670646 0.002017 -0.421056 -0.468050 0.776944 0.459437 0.626548 0.629567 -0.807388 0.590017 0.002017 -0.370192 -0.509232 0.776944 0.391240 0.671250 0.629567 -0.864780 0.502148 0.002017 -0.314782 -0.545226 0.776944 0.318734 0.708558 0.629567 -0.912645 0.408747 0.002017 -0.255905 -0.575214 0.776944 0.243454 0.737818 0.629567 -0.950147 0.311795 0.002017 -0.194807 -0.598673 0.776944 0.164785 0.759270 0.629567 -0.977593 0.210495 0.002017 -0.130989 -0.615793 0.776944 0.084300 0.772359 0.629567 -0.994270 0.106877 0.002017 -0.065728 -0.626130 0.776944 0.003520 0.776938 0.629567 -0.999994 0.002896 0.002017 -0.000256 -0.629570 0.776944 -0.077928 0.773028 0.629567 -0.994790 -0.101926 0.002017 0.065728 -0.626130 0.776944 -0.158518 0.760603 0.629567 -0.978629 -0.205626 0.002017 0.130989 -0.615793 0.776944 -0.237361 0.739801 0.629567 -0.951688 -0.307061 0.002017 0.194807 -0.598673 0.776944 -0.312879 0.711162 0.629567 -0.914669 -0.404199 0.002017 0.255905 -0.575214 0.776944 -0.385691 0.674454 0.629567 -0.867269 -0.497837 0.002017 0.314782 -0.545226 0.776944 -0.454255 0.630316 0.629567 -0.810315 -0.585991 0.002017 0.370192 -0.509232 0.776944 -0.517235 0.579753 0.629567 -0.745104 -0.666946 0.002017 0.421056 -0.468050 0.776944 -0.575149 0.522350 0.629567 -0.671099 -0.741365 0.002017 0.467792 -0.421342 0.776944 -0.626727 0.459193 0.629567 -0.589703 -0.807618 0.002017 0.509376 -0.369994 0.776944 -0.671402 0.390979 0.629567 -0.501811 -0.864975 0.002017 0.545348 -0.314570 0.776944 -0.708363 0.319166 0.629567 -0.409305 -0.912396 0.002017 0.575058 -0.256256 0.776944 -0.737913 0.243167 0.629567 -0.311425 -0.950269 0.002017 0.598748 -0.194575 0.776944 -0.759334 0.164489 0.629567 -0.210115 -0.977675 0.002017 0.615844 -0.130750 0.776944 -0.772308 0.084772 0.629567 -0.107484 -0.994205 0.002017 0.626090 -0.066111 0.776944 -0.776939 0.003362 0.629567 -0.002693 -0.999994 0.002017 0.629570 -0.000128 0.776944 -0.773012 -0.078085 0.629567 0.102129 -0.994769 0.002017 0.626116 0.065856 0.776944 -0.760571 -0.158673 0.629567 0.205825 -0.978587 0.002017 0.615766 0.131115 0.776944 -0.739989 -0.236772 0.629567 0.306303 -0.951932 0.002017 0.598827 0.194331 0.776944 -0.711098 -0.313024 0.629567 0.404385 -0.914587 0.002017 0.575162 0.256022 0.776944 -0.674375 -0.385829 0.629567 0.498013 -0.867167 0.002017 0.545162 0.314893 0.776944 -0.630223 -0.454383 0.629567 0.586156 -0.810196 0.002017 0.509156 0.370295 0.776944 -0.579647 -0.517353 0.629567 0.667097 -0.744968 0.002017 0.467964 0.421152 0.776944 -0.522233 -0.575255 0.629567 0.741501 -0.670949 0.002017 0.421247 0.467878 0.776944 -0.459066 -0.626821 0.629567 0.807738 -0.589539 0.002017 0.369890 0.509451 0.776944 -0.391514 -0.671091 0.629567 0.864575 -0.502500 0.002017 0.315004 0.545098 0.776944 -0.319022 -0.708428 0.629567 0.912479 -0.409119 0.002017 0.256139 0.575110 0.776944 -0.243017 -0.737962 0.629567 0.950332 -0.311231 0.002017 0.194453 0.598788 0.776944 -0.164335 -0.759368 0.629567 0.977717 -0.209916 0.002017 0.130624 0.615870 0.776944 -0.084615 -0.772325 0.629567 0.994227 -0.107282 0.002017 0.065983 0.626103 0.776944 -0.003204 -0.776940 0.629567 0.999995 -0.002489 0.002017 0.000000 0.629570 0.776944 0.078243 -0.772996 0.629567 0.994748 0.102331 0.002017 -0.065983 0.626103 0.776944 0.158067 -0.760697 0.629567 0.978750 0.205046 0.002017 -0.130624 0.615870 0.776944 0.236923 -0.739941 0.629567 0.951870 0.306497 0.002017 -0.194453 0.598788 0.776944 0.313169 -0.711035 0.629567 0.914504 0.404571 0.002017 -0.256139 0.575110 0.776944 0.385966 -0.674296 0.629567 0.867066 0.498190 0.002017 -0.315004 0.545098 0.776944 0.453881 -0.630585 0.629567 0.810662 0.585510 0.002017 -0.369890 0.509451 0.776944 0.517471 -0.579542 0.629567 0.744832 0.667249 0.002017 -0.421247 0.467878 0.776944 0.575361 -0.522116 0.629567 0.670797 0.741638 0.002017 -0.467964 0.421152 0.776944 0.626455 -0.459565 0.629567 0.590182 0.807268 0.002017 -0.509156 0.370295 0.776944 0.671170 -0.391377 0.629567 0.502324 0.864677 0.002017 -0.545162 0.314893 0.776944 0.708493 -0.318878 0.629567 0.408933 0.912562 0.002017 -0.575162 0.256022 0.776944 0.738012 -0.242867 0.629567 0.311038 0.950395 0.002017 -0.598827 0.194331 0.776944 0.759237 -0.164939 0.629567 0.210694 0.977550 0.002017 -0.615766 0.131115 0.776944 0.772342 -0.084458 0.629567 0.107080 0.994248 0.002017 -0.626116 0.065856 0.776944 0.300596 -0.521094 0.798814 0.183316 0.853499 0.487785 -0.935969 -0.000191 0.352084 0.353555 -0.486719 0.798814 0.092854 0.868012 0.487785 -0.930794 -0.098286 0.352084 0.402172 -0.447386 0.798814 0.002242 0.872961 0.487785 -0.915561 -0.194383 0.352084 0.446847 -0.402771 0.798814 -0.089263 0.868388 0.487785 -0.890146 -0.289270 0.352084 0.486599 -0.353720 0.798814 -0.179785 0.854250 0.487785 -0.854926 -0.380970 0.352084 0.520691 -0.301294 0.798814 -0.267496 0.830971 0.487785 -0.810757 -0.467664 0.352084 0.549401 -0.245063 0.798814 -0.353114 0.798359 0.487785 -0.757278 -0.550061 0.352084 0.572059 -0.186132 0.798814 -0.434843 0.756953 0.487785 -0.695457 -0.626400 0.352084 0.588417 -0.125151 0.798814 -0.511782 0.707209 0.487785 -0.625975 -0.695839 0.352084 0.598229 -0.063390 0.798814 -0.582434 0.650259 0.487785 -0.550356 -0.757064 0.352084 0.601578 -0.000342 0.798814 -0.647378 0.585634 0.487785 -0.467979 -0.810575 0.352084 0.598301 0.062710 0.798814 -0.705192 0.514559 0.487785 -0.380448 -0.855159 0.352084 0.588558 0.124482 0.798814 -0.754799 0.438571 0.487785 -0.289616 -0.890034 0.352084 0.572270 0.185482 0.798814 -0.796607 0.357047 0.487785 -0.194739 -0.915486 0.352084 0.549679 0.244438 0.798814 -0.829641 0.271591 0.487785 -0.097717 -0.930854 0.352084 0.521277 0.300278 0.798814 -0.853387 0.183838 0.487785 -0.000381 -0.935968 0.352084 0.486935 0.353258 0.798814 -0.867955 0.093384 0.487785 0.097717 -0.930854 0.352084 0.447229 0.402346 0.798814 -0.872962 0.001902 0.487785 0.194739 -0.915486 0.352084 0.402598 0.447003 0.798814 -0.868353 -0.089601 0.487785 0.289616 -0.890034 0.352084 0.354018 0.486383 0.798814 -0.854360 -0.179263 0.487785 0.380448 -0.855159 0.352084 0.301092 0.520808 0.798814 -0.830867 -0.267819 0.487785 0.467979 -0.810575 0.352084 0.244849 0.549496 0.798814 -0.798221 -0.353425 0.487785 0.550356 -0.757064 0.352084 0.186481 0.571945 0.798814 -0.757218 -0.434381 0.487785 0.625975 -0.695839 0.352084 0.125510 0.588340 0.798814 -0.707522 -0.511350 0.487785 0.695457 -0.626400 0.352084 0.063157 0.598254 0.798814 -0.650032 -0.582687 0.487785 0.757278 -0.550061 0.352084 0.000108 0.601579 0.798814 -0.585382 -0.647606 0.487785 0.810757 -0.467664 0.352084 -0.062344 0.598339 0.798814 -0.514990 -0.704877 0.487785 0.854926 -0.380970 0.352084 -0.124711 0.588510 0.798814 -0.438277 -0.754970 0.487785 0.890146 -0.289270 0.352084 -0.185704 0.572198 0.798814 -0.356737 -0.796746 0.487785 0.915561 -0.194383 0.352084 -0.244102 0.549828 0.798814 -0.272097 -0.829475 0.487785 0.930794 -0.098286 0.352084 -0.300384 0.521216 0.798814 -0.183664 -0.853425 0.487785 0.935969 -0.000191 0.352084 -0.353357 0.486863 0.798814 -0.093207 -0.867974 0.487785 0.930834 0.097907 0.352084 -0.402437 0.447147 0.798814 -0.001724 -0.872962 0.487785 0.915446 0.194926 0.352084 -0.446683 0.402953 0.798814 0.088910 -0.868425 0.487785 0.890264 0.288907 0.352084 -0.486455 0.353919 0.798814 0.179437 -0.854323 0.487785 0.855081 0.380622 0.352084 -0.520869 0.300986 0.798814 0.267988 -0.830812 0.487785 0.810480 0.468144 0.352084 -0.549546 0.244737 0.798814 0.353587 -0.798149 0.487785 0.756952 0.550510 0.352084 -0.571983 0.186365 0.798814 0.434535 -0.757130 0.487785 0.695712 0.626117 0.352084 -0.588365 0.125391 0.798814 0.511494 -0.707418 0.487785 0.626259 0.695584 0.352084 -0.598267 0.063035 0.798814 0.582820 -0.649913 0.487785 0.549907 0.757390 0.352084 -0.601578 0.000587 0.798814 0.647140 -0.585898 0.487785 0.468309 0.810385 0.352084 -0.598327 -0.062466 0.798814 0.704982 -0.514846 0.487785 0.380796 0.855004 0.352084 -0.588484 -0.124831 0.798814 0.755059 -0.438124 0.487785 0.289088 0.890205 0.352084 -0.572160 -0.185821 0.798814 0.796819 -0.356575 0.487785 0.194196 0.915601 0.352084 -0.549778 -0.244214 0.798814 0.829531 -0.271929 0.487785 0.098096 0.930814 0.352084 -0.521155 -0.300490 0.798814 0.853462 -0.183490 0.487785 0.000000 0.935969 0.352084 -0.486791 -0.353456 0.798814 0.867993 -0.093031 0.487785 -0.098096 0.930814 0.352084 -0.447468 -0.402081 0.798814 0.872961 -0.002419 0.487785 -0.194196 0.915601 0.352084 -0.402862 -0.446765 0.798814 0.868406 0.089087 0.487785 -0.289088 0.890205 0.352084 -0.353820 -0.486527 0.798814 0.854287 0.179611 0.487785 -0.380796 0.855004 0.352084 -0.300879 -0.520930 0.798814 0.830757 0.268157 0.487785 -0.468309 0.810385 0.352084 -0.245175 -0.549351 0.798814 0.798431 0.352951 0.487785 -0.549907 0.757390 0.352084 -0.186248 -0.572021 0.798814 0.757041 0.434689 0.487785 -0.626259 0.695584 0.352084 -0.125271 -0.588391 0.798814 0.707314 0.511638 0.487785 -0.695712 0.626117 0.352084 -0.063511 -0.598217 0.798814 0.650377 0.582302 0.487785 -0.756952 0.550510 0.352084 -0.000464 -0.601578 0.798814 0.585766 0.647259 0.487785 -0.810480 0.468144 0.352084 0.062588 -0.598314 0.798814 0.514703 0.705087 0.487785 -0.855081 0.380622 0.352084 0.124951 -0.588459 0.798814 0.437970 0.755148 0.487785 -0.890264 0.288907 0.352084 0.185365 -0.572308 0.798814 0.357209 0.796535 0.487785 -0.915446 0.194926 0.352084 0.244326 -0.549728 0.798814 0.271760 0.829586 0.487785 -0.930834 0.097907 0.352084 0.367764 0.408562 0.835360 -0.164808 0.912730 -0.373847 -0.915198 -0.000186 0.403004 0.322918 0.444857 0.835360 -0.259561 0.890431 -0.373847 -0.910138 -0.096105 0.403004 0.274992 0.475976 0.835360 -0.350596 0.858674 -0.373847 -0.895244 -0.190069 0.403004 0.223591 0.502176 0.835360 -0.438661 0.817200 -0.373847 -0.870393 -0.282851 0.403004 0.169728 0.522844 0.835360 -0.521893 0.766724 -0.373847 -0.835954 -0.372516 0.403004 0.114534 0.537639 0.835360 -0.598669 0.708402 -0.373847 -0.792766 -0.457286 0.403004 0.057554 0.546682 0.835360 -0.669617 0.641756 -0.373847 -0.740473 -0.537855 0.403004 -0.000059 0.549703 0.835360 -0.733190 0.568041 -0.373847 -0.680024 -0.612500 0.403004 -0.057671 0.546669 0.835360 -0.788687 0.488069 -0.373847 -0.612084 -0.680398 0.403004 -0.114111 0.537729 0.835360 -0.835093 0.403556 -0.373847 -0.538143 -0.740264 0.403004 -0.169840 0.522808 0.835360 -0.872790 0.313810 -0.373847 -0.457594 -0.792588 0.403004 -0.223699 0.502128 0.835360 -0.900872 0.220607 -0.373847 -0.372005 -0.836182 0.403004 -0.274617 0.476192 0.835360 -0.918907 0.125893 -0.373847 -0.283189 -0.870283 0.403004 -0.323013 0.444788 0.835360 -0.927040 0.028892 -0.373847 -0.190418 -0.895170 0.403004 -0.367851 0.408484 0.835360 -0.924963 -0.068428 -0.373847 -0.095549 -0.910197 0.403004 -0.408338 0.368013 0.835360 -0.912831 -0.164250 -0.373847 -0.000373 -0.915198 0.403004 -0.444659 0.323190 0.835360 -0.890589 -0.259017 -0.373847 0.095549 -0.910197 0.403004 -0.476083 0.274806 0.835360 -0.858537 -0.350930 -0.373847 0.190418 -0.895170 0.403004 -0.502263 0.223396 0.835360 -0.817029 -0.438978 -0.373847 0.283189 -0.870283 0.403004 -0.522740 0.170048 0.835360 -0.767043 -0.521424 -0.373847 0.372005 -0.836182 0.403004 -0.537683 0.114324 0.835360 -0.708170 -0.598944 -0.373847 0.457594 -0.792588 0.403004 -0.546704 0.057342 0.835360 -0.641496 -0.669867 -0.373847 0.538143 -0.740264 0.403004 -0.549703 0.000277 0.835360 -0.568489 -0.732843 -0.373847 0.612084 -0.680398 0.403004 -0.546705 -0.057337 0.835360 -0.488551 -0.788389 -0.373847 0.680024 -0.612500 0.403004 -0.537684 -0.114320 0.835360 -0.403231 -0.835250 -0.373847 0.740473 -0.537855 0.403004 -0.522741 -0.170043 0.835360 -0.313470 -0.872912 -0.373847 0.792766 -0.457286 0.403004 -0.502264 -0.223392 0.835360 -0.221157 -0.900737 -0.373847 0.835954 -0.372516 0.403004 -0.476085 -0.274803 0.835360 -0.125536 -0.918955 -0.373847 0.870393 -0.282851 0.403004 -0.444662 -0.323186 0.835360 -0.028531 -0.927051 -0.373847 0.895244 -0.190069 0.403004 -0.408708 -0.367601 0.835360 0.067863 -0.925004 -0.373847 0.910138 -0.096105 0.403004 -0.367930 -0.408413 0.835360 0.164436 -0.912797 -0.373847 0.915198 -0.000186 0.403004 -0.323099 -0.444725 0.835360 0.259198 -0.890536 -0.373847 0.910178 0.095734 0.403004 -0.274710 -0.476139 0.835360 0.351105 -0.858466 -0.373847 0.895131 0.190600 0.403004 -0.223796 -0.502084 0.835360 0.438328 -0.817378 -0.373847 0.870508 0.282496 0.403004 -0.169941 -0.522775 0.835360 0.521581 -0.766937 -0.373847 0.836106 0.372176 0.403004 -0.114215 -0.537707 0.835360 0.599089 -0.708048 -0.373847 0.792495 0.457756 0.403004 -0.057230 -0.546716 0.835360 0.669998 -0.641359 -0.373847 0.740154 0.538294 0.403004 -0.000165 -0.549703 0.835360 0.732959 -0.568340 -0.373847 0.680273 0.612223 0.403004 0.057449 -0.546693 0.835360 0.788488 -0.488390 -0.373847 0.612361 0.680148 0.403004 0.114429 -0.537661 0.835360 0.835332 -0.403061 -0.373847 0.537704 0.740582 0.403004 0.169627 -0.522877 0.835360 0.872662 -0.314165 -0.373847 0.457917 0.792401 0.403004 0.223494 -0.502219 0.835360 0.900782 -0.220974 -0.373847 0.372346 0.836030 0.403004 0.274899 -0.476029 0.835360 0.918981 -0.125348 -0.373847 0.282673 0.870450 0.403004 0.323277 -0.444596 0.835360 0.927057 -0.028342 -0.373847 0.189887 0.895283 0.403004 0.367685 -0.408634 0.835360 0.924990 0.068051 -0.373847 0.095919 0.910158 0.403004 0.408487 -0.367847 0.835360 0.912764 0.164622 -0.373847 0.000000 0.915198 0.403004 0.444791 -0.323009 0.835360 0.890483 0.259379 -0.373847 -0.095919 0.910158 0.403004 0.475920 -0.275089 0.835360 0.858745 0.350421 -0.373847 -0.189887 0.895283 0.403004 0.502130 -0.223694 0.835360 0.817289 0.438494 -0.373847 -0.282673 0.870450 0.403004 0.522809 -0.169835 0.835360 0.766831 0.521737 -0.373847 -0.372346 0.836030 0.403004 0.537730 -0.114105 0.835360 0.707925 0.599233 -0.373847 -0.457917 0.792401 0.403004 0.546670 -0.057666 0.835360 0.641892 0.669487 -0.373847 -0.537704 0.740582 0.403004 0.549703 -0.000053 0.835360 0.568190 0.733074 -0.373847 -0.612361 0.680148 0.403004 0.546681 0.057560 0.835360 0.488230 0.788588 -0.373847 -0.680273 0.612223 0.403004 0.537752 0.114001 0.835360 0.403726 0.835011 -0.373847 -0.740154 0.538294 0.403004 0.522842 0.169734 0.835360 0.313988 0.872726 -0.373847 -0.792495 0.457756 0.403004 0.502173 0.223596 0.835360 0.220791 0.900827 -0.373847 -0.836106 0.372176 0.403004 0.475973 0.274996 0.835360 0.125161 0.919007 -0.373847 -0.870508 0.282496 0.403004 0.444853 0.322923 0.835360 0.029081 0.927034 -0.373847 -0.895131 0.190600 0.403004 0.408559 0.367768 0.835360 -0.068239 0.924977 -0.373847 -0.910178 0.095734 0.403004 0.639870 0.326817 0.695526 -0.221388 0.945087 -0.240410 -0.735903 -0.000150 0.677086 0.602093 0.392081 0.695526 -0.319221 0.916679 -0.240410 -0.731835 -0.077277 0.677086 0.558137 0.452467 0.695526 -0.412659 0.878587 -0.240410 -0.719858 -0.152833 0.677086 0.507641 0.508472 0.695526 -0.502468 0.830499 -0.240410 -0.699876 -0.227438 0.677086 0.451554 0.558876 0.695526 -0.586743 0.773263 -0.240410 -0.672184 -0.299537 0.677086 0.391096 0.602733 0.695526 -0.663848 0.708173 -0.240410 -0.637456 -0.367700 0.677086 0.325771 0.640403 0.695526 -0.734413 0.634697 -0.240410 -0.595408 -0.432485 0.677086 0.256858 0.671019 0.695526 -0.796889 0.554230 -0.240410 -0.546801 -0.492506 0.677086 0.185116 0.694244 0.695526 -0.850587 0.467658 -0.240410 -0.492172 -0.547102 0.677086 0.112044 0.709711 0.695526 -0.894540 0.376829 -0.240410 -0.432716 -0.595240 0.677086 0.037044 0.717545 0.695526 -0.929108 0.281000 -0.240410 -0.367948 -0.637313 0.677086 -0.038363 0.717476 0.695526 -0.953442 0.182075 -0.240410 -0.299126 -0.672367 0.677086 -0.112639 0.709617 0.695526 -0.967192 0.082112 -0.240410 -0.227710 -0.699787 0.677086 -0.186392 0.693903 0.695526 -0.970471 -0.019709 -0.240410 -0.153113 -0.719799 0.677086 -0.258091 0.670546 0.695526 -0.963061 -0.121313 -0.240410 -0.076830 -0.731882 0.677086 -0.326426 0.640069 0.695526 -0.945223 -0.220810 -0.240410 -0.000300 -0.735903 0.677086 -0.391713 0.602332 0.695526 -0.916874 -0.318660 -0.240410 0.076830 -0.731882 0.677086 -0.452684 0.557961 0.695526 -0.878427 -0.413001 -0.240410 0.153113 -0.719799 0.677086 -0.508669 0.507443 0.695526 -0.830303 -0.502791 -0.240410 0.227710 -0.699787 0.677086 -0.558600 0.451895 0.695526 -0.773621 -0.586271 -0.240410 0.299126 -0.672367 0.677086 -0.602885 0.390861 0.695526 -0.707915 -0.664123 -0.240410 0.367948 -0.637313 0.677086 -0.640530 0.325522 0.695526 -0.634412 -0.734660 -0.240410 0.432716 -0.595240 0.677086 -0.670862 0.257268 0.695526 -0.554717 -0.796550 -0.240410 0.492172 -0.547102 0.677086 -0.694131 0.185540 0.695526 -0.468177 -0.850302 -0.240410 0.546801 -0.492506 0.677086 -0.709754 0.111768 0.695526 -0.376481 -0.894687 -0.240410 0.595408 -0.432485 0.677086 -0.717559 0.036765 0.695526 -0.280638 -0.929217 -0.240410 0.637456 -0.367700 0.677086 -0.717499 -0.037925 0.695526 -0.182657 -0.953331 -0.240410 0.672184 -0.299537 0.677086 -0.709573 -0.112915 0.695526 -0.081736 -0.967224 -0.240410 0.699876 -0.227438 0.677086 -0.693830 -0.186662 0.695526 0.020087 -0.970464 -0.240410 0.719858 -0.152833 0.677086 -0.670704 -0.257681 0.695526 0.120724 -0.963135 -0.240410 0.731835 -0.077277 0.677086 -0.640003 -0.326557 0.695526 0.221003 -0.945178 -0.240410 0.735903 -0.000150 0.677086 -0.602253 -0.391835 0.695526 0.318847 -0.916809 -0.240410 0.731866 0.076979 0.677086 -0.557869 -0.452798 0.695526 0.413179 -0.878343 -0.240410 0.719768 0.153260 0.677086 -0.507848 -0.508265 0.695526 0.502130 -0.830704 -0.240410 0.699968 0.227153 0.677086 -0.451782 -0.558692 0.695526 0.586428 -0.773502 -0.240410 0.672306 0.299263 0.677086 -0.390739 -0.602965 0.695526 0.664267 -0.707780 -0.240410 0.637238 0.368078 0.677086 -0.325392 -0.640596 0.695526 0.734789 -0.634262 -0.240410 0.595152 0.432838 0.677086 -0.257131 -0.670915 0.695526 0.796663 -0.554554 -0.240410 0.547002 0.492283 0.677086 -0.185399 -0.694169 0.695526 0.850397 -0.468004 -0.240410 0.492395 0.546902 0.677086 -0.111624 -0.709777 0.695526 0.894764 -0.376299 -0.240410 0.432364 0.595496 0.677086 -0.037337 -0.717530 0.695526 0.928994 -0.281378 -0.240410 0.368207 0.637163 0.677086 0.038071 -0.717491 0.695526 0.953368 -0.182463 -0.240410 0.299400 0.672245 0.677086 0.113060 -0.709550 0.695526 0.967241 -0.081539 -0.240410 0.227295 0.699922 0.677086 0.186803 -0.693792 0.695526 0.970459 0.020284 -0.240410 0.152687 0.719889 0.677086 0.257818 -0.670651 0.695526 0.963110 0.120921 -0.240410 0.077128 0.731851 0.677086 0.326687 -0.639936 0.695526 0.945133 0.221195 -0.240410 0.000000 0.735903 0.677086 0.391958 -0.602173 0.695526 0.916744 0.319034 -0.240410 -0.077128 0.731851 0.677086 0.452353 -0.558229 0.695526 0.878671 0.412480 -0.240410 -0.152687 0.719889 0.677086 0.508368 -0.507745 0.695526 0.830601 0.502299 -0.240410 -0.227295 0.699922 0.677086 0.558784 -0.451668 0.695526 0.773382 0.586586 -0.240410 -0.299400 0.672245 0.677086 0.603044 -0.390616 0.695526 0.707645 0.664411 -0.240410 -0.368207 0.637163 0.677086 0.640337 -0.325902 0.695526 0.634847 0.734284 -0.240410 -0.432364 0.595496 0.677086 0.670967 -0.256995 0.695526 0.554392 0.796776 -0.240410 -0.492395 0.546902 0.677086 0.694207 -0.185257 0.695526 0.467831 0.850492 -0.240410 -0.547002 0.492283 0.677086 0.709688 -0.112189 0.695526 0.377012 0.894464 -0.240410 -0.595152 0.432838 0.677086 0.717538 -0.037191 0.695526 0.281189 0.929051 -0.240410 -0.637238 0.368078 0.677086 0.717484 0.038217 0.695526 0.182269 0.953405 -0.240410 -0.672306 0.299263 0.677086 0.709527 0.113204 0.695526 0.081342 0.967257 -0.240410 -0.699968 0.227153 0.677086 0.693941 0.186250 0.695526 -0.019511 0.970475 -0.240410 -0.719768 0.153260 0.677086 0.670599 0.257955 0.695526 -0.121117 0.963085 -0.240410 -0.731866 0.076979 0.677086 -0.037900 0.443758 0.895345 0.018540 0.896147 -0.443370 -0.999110 -0.000203 -0.042191 -0.084200 0.437342 0.895345 -0.075484 0.893154 -0.443370 -0.993586 -0.104916 -0.042191 -0.129147 0.426238 0.895345 -0.167797 0.880492 -0.443370 -0.977326 -0.207496 -0.042191 -0.173108 0.410355 0.895345 -0.259155 0.858057 -0.443370 -0.950196 -0.308784 -0.042191 -0.215163 0.389952 0.895345 -0.347658 0.826170 -0.443370 -0.912600 -0.406671 -0.042191 -0.254482 0.365508 0.895345 -0.431547 0.785614 -0.443370 -0.865452 -0.499213 -0.042191 -0.291389 0.336824 0.895345 -0.511508 0.736059 -0.443370 -0.808364 -0.587169 -0.042191 -0.325085 0.304429 0.895345 -0.585835 0.678395 -0.443370 -0.742373 -0.668657 -0.042191 -0.355201 0.268681 0.895345 -0.653709 0.613259 -0.443370 -0.668204 -0.742781 -0.042191 -0.381175 0.230355 0.895345 -0.713841 0.542082 -0.443370 -0.587483 -0.808136 -0.042191 -0.403218 0.189137 0.895345 -0.766724 0.464281 -0.443370 -0.499549 -0.865257 -0.042191 -0.420820 0.145835 0.895345 -0.811161 0.381366 -0.443370 -0.406113 -0.912848 -0.042191 -0.433686 0.101360 0.895345 -0.846369 0.295097 -0.443370 -0.309154 -0.950076 -0.042191 -0.441921 0.055349 0.895345 -0.872636 0.204766 -0.443370 -0.207876 -0.977245 -0.042191 -0.445288 0.008727 0.895345 -0.889291 0.112180 -0.443370 -0.104309 -0.993650 -0.042191 -0.443781 -0.037629 0.895345 -0.896135 0.019088 -0.443370 -0.000407 -0.999109 -0.042191 -0.437393 -0.083933 0.895345 -0.893200 -0.074939 -0.443370 0.104309 -0.993650 -0.042191 -0.426187 -0.129312 0.895345 -0.880427 -0.168140 -0.443370 0.207876 -0.977245 -0.042191 -0.410287 -0.173268 0.895345 -0.857956 -0.259489 -0.443370 0.309154 -0.950076 -0.042191 -0.390083 -0.214925 0.895345 -0.826382 -0.347153 -0.443370 0.406113 -0.912848 -0.042191 -0.365409 -0.254624 0.895345 -0.785447 -0.431852 -0.443370 0.499549 -0.865257 -0.042191 -0.336710 -0.291520 0.895345 -0.735860 -0.511794 -0.443370 0.587483 -0.808136 -0.042191 -0.304628 -0.324899 0.895345 -0.678753 -0.585420 -0.443370 0.668204 -0.742781 -0.042191 -0.268898 -0.355037 0.895345 -0.613659 -0.653334 -0.443370 0.742373 -0.668657 -0.042191 -0.230207 -0.381264 0.895345 -0.541805 -0.714052 -0.443370 0.808364 -0.587169 -0.042191 -0.188980 -0.403292 0.895345 -0.463983 -0.766904 -0.443370 0.865452 -0.499213 -0.042191 -0.146092 -0.420731 0.895345 -0.381862 -0.810928 -0.443370 0.912600 -0.406671 -0.042191 -0.101192 -0.433725 0.895345 -0.294768 -0.846484 -0.443370 0.950196 -0.308784 -0.042191 -0.055177 -0.441942 0.895345 -0.204427 -0.872716 -0.443370 0.977326 -0.207496 -0.042191 -0.008999 -0.445282 0.895345 -0.112723 -0.889222 -0.443370 0.993586 -0.104916 -0.042191 0.037719 -0.443773 0.895345 -0.018905 -0.896139 -0.443370 0.999110 -0.000203 -0.042191 0.084022 -0.437376 0.895345 0.075120 -0.893185 -0.443370 0.993628 0.104512 -0.042191 0.129399 -0.426161 0.895345 0.168319 -0.880393 -0.443370 0.977202 0.208075 -0.042191 0.172941 -0.410425 0.895345 0.258805 -0.858162 -0.443370 0.950322 0.308397 -0.042191 0.215004 -0.390039 0.895345 0.347322 -0.826311 -0.443370 0.912766 0.406299 -0.042191 0.254699 -0.365357 0.895345 0.432012 -0.785359 -0.443370 0.865156 0.499726 -0.042191 0.291588 -0.336651 0.895345 0.511944 -0.735755 -0.443370 0.808016 0.587648 -0.042191 0.324961 -0.304561 0.895345 0.585559 -0.678634 -0.443370 0.742645 0.668355 -0.042191 0.355092 -0.268826 0.895345 0.653459 -0.613526 -0.443370 0.668506 0.742509 -0.042191 0.381311 -0.230129 0.895345 0.714162 -0.541659 -0.443370 0.587004 0.808484 -0.042191 0.403141 -0.189301 0.895345 0.766535 -0.464594 -0.443370 0.499902 0.865054 -0.042191 0.420761 -0.146006 0.895345 0.811006 -0.381697 -0.443370 0.406485 0.912683 -0.042191 0.433746 -0.101103 0.895345 0.846544 -0.294595 -0.443370 0.308591 0.950259 -0.042191 0.441954 -0.055087 0.895345 0.872757 -0.204249 -0.443370 0.207297 0.977368 -0.042191 0.445284 -0.008909 0.895345 0.889245 -0.112542 -0.443370 0.104714 0.993607 -0.042191 0.443766 0.037809 0.895345 0.896143 -0.018723 -0.443370 0.000000 0.999110 -0.042191 0.437359 0.084111 0.895345 0.893170 0.075302 -0.443370 -0.104714 0.993607 -0.042191 0.426264 0.129060 0.895345 0.880526 0.167618 -0.443370 -0.207297 0.977368 -0.042191 0.410390 0.173025 0.895345 0.858109 0.258980 -0.443370 -0.308591 0.950259 -0.042191 0.389996 0.215083 0.895345 0.826241 0.347490 -0.443370 -0.406485 0.912683 -0.042191 0.365305 0.254773 0.895345 0.785271 0.432172 -0.443370 -0.499902 0.865054 -0.042191 0.336883 0.291320 0.895345 0.736163 0.511358 -0.443370 -0.587004 0.808484 -0.042191 0.304495 0.325023 0.895345 0.678514 0.585697 -0.443370 -0.668506 0.742509 -0.042191 0.268753 0.355147 0.895345 0.613392 0.653584 -0.443370 -0.742645 0.668355 -0.042191 0.230433 0.381128 0.895345 0.542228 0.713731 -0.443370 -0.808016 0.587648 -0.042191 0.189219 0.403180 0.895345 0.464437 0.766629 -0.443370 -0.865156 0.499726 -0.042191 0.145920 0.420791 0.895345 0.381531 0.811083 -0.443370 -0.912766 0.406299 -0.042191 0.101015 0.433767 0.895345 0.294423 0.846604 -0.443370 -0.950322 0.308397 -0.042191 0.055439 0.441910 0.895345 0.204944 0.872594 -0.443370 -0.977202 0.208075 -0.042191 0.008818 0.445286 0.895345 0.112361 0.889268 -0.443370 -0.993628 0.104512 -0.042191 0.172983 0.968451 0.179387 -0.672665 0.249204 -0.696720 -0.719443 -0.000147 0.694552 0.070530 0.981247 0.179387 -0.695079 0.177332 -0.696720 -0.715465 -0.075548 0.694552 -0.031717 0.983267 0.179387 -0.709733 0.104216 -0.696720 -0.703757 -0.149415 0.694552 -0.134596 0.974528 0.179387 -0.716747 0.029257 -0.696720 -0.684221 -0.222350 0.694552 -0.235992 0.955054 0.179387 -0.715865 -0.046025 -0.696720 -0.657149 -0.292837 0.694552 -0.333864 0.925395 0.179387 -0.707219 -0.120092 -0.696720 -0.623198 -0.359475 0.694552 -0.429013 0.885307 0.179387 -0.690738 -0.193552 -0.696720 -0.582090 -0.422811 0.694552 -0.519437 0.835468 0.179387 -0.666648 -0.264881 -0.696720 -0.534571 -0.481490 0.694552 -0.604139 0.776426 0.179387 -0.635215 -0.333291 -0.696720 -0.481163 -0.534865 0.694552 -0.681477 0.709513 0.179387 -0.597183 -0.397434 -0.696720 -0.423037 -0.581926 0.694552 -0.752086 0.634182 0.179387 -0.552240 -0.457834 -0.696720 -0.359718 -0.623058 0.694552 -0.814411 0.551865 0.179387 -0.501215 -0.513191 -0.696720 -0.292436 -0.657328 0.694552 -0.867301 0.464337 0.179387 -0.445231 -0.562451 -0.696720 -0.222617 -0.684134 0.694552 -0.911190 0.370881 0.179387 -0.383830 -0.606017 -0.696720 -0.149688 -0.703698 0.694552 -0.945043 0.273339 0.179387 -0.318201 -0.642907 -0.696720 -0.075111 -0.715511 0.694552 -0.968345 0.173575 0.179387 -0.249615 -0.672513 -0.696720 -0.000293 -0.719443 0.694552 -0.981204 0.071129 0.179387 -0.177756 -0.694971 -0.696720 0.075111 -0.715511 0.694552 -0.983255 -0.032100 0.179387 -0.103939 -0.709773 -0.696720 0.149688 -0.703698 0.694552 -0.974475 -0.134975 0.179387 -0.028978 -0.716758 -0.696720 0.222617 -0.684134 0.694552 -0.955198 -0.235408 0.179387 0.045587 -0.715893 -0.696720 0.292436 -0.657328 0.694552 -0.925265 -0.334224 0.179387 0.120367 -0.707173 -0.696720 0.359718 -0.623058 0.694552 -0.885140 -0.429357 0.179387 0.193821 -0.690663 -0.696720 0.423037 -0.581926 0.694552 -0.835785 -0.518926 0.179387 0.264473 -0.666810 -0.696720 0.481163 -0.534865 0.694552 -0.776794 -0.603664 0.179387 0.332903 -0.635419 -0.696720 0.534571 -0.481490 0.694552 -0.709248 -0.681753 0.179387 0.397666 -0.597029 -0.696720 0.582090 -0.422811 0.694552 -0.633889 -0.752333 0.179387 0.458049 -0.552062 -0.696720 0.623198 -0.359475 0.694552 -0.552363 -0.814074 0.179387 0.512885 -0.501528 -0.696720 0.657149 -0.292837 0.694552 -0.464000 -0.867482 0.179387 0.562624 -0.445012 -0.696720 0.684221 -0.222350 0.694552 -0.370526 -0.911335 0.179387 0.606166 -0.383594 -0.696720 0.703757 -0.149415 0.694552 -0.273916 -0.944876 0.179387 0.642713 -0.318594 -0.696720 0.715465 -0.075548 0.694552 -0.173378 -0.968380 0.179387 0.672564 -0.249478 -0.696720 0.719443 -0.000147 0.694552 -0.070929 -0.981218 0.179387 0.695007 -0.177615 -0.696720 0.715496 0.075257 0.694552 0.032300 -0.983248 0.179387 0.709794 -0.103795 -0.696720 0.703668 0.149832 0.694552 0.134199 -0.974582 0.179387 0.716735 -0.029548 -0.696720 0.684312 0.222072 0.694552 0.235603 -0.955150 0.179387 0.715884 0.045733 -0.696720 0.657268 0.292569 0.694552 0.334412 -0.925197 0.179387 0.707148 0.120511 -0.696720 0.622985 0.359845 0.694552 0.429538 -0.885052 0.179387 0.690623 0.193962 -0.696720 0.581839 0.423156 0.694552 0.519096 -0.835679 0.179387 0.666756 0.264609 -0.696720 0.534767 0.481272 0.694552 0.603823 -0.776672 0.179387 0.635351 0.333032 -0.696720 0.481381 0.534669 0.694552 0.681898 -0.709109 0.179387 0.596948 0.397788 -0.696720 0.422693 0.582176 0.694552 0.751828 -0.634488 0.179387 0.552427 0.457609 -0.696720 0.359971 0.622912 0.694552 0.814186 -0.552197 0.179387 0.501424 0.512987 -0.696720 0.292703 0.657208 0.694552 0.867576 -0.463823 0.179387 0.444897 0.562715 -0.696720 0.222211 0.684266 0.694552 0.911410 -0.370340 0.179387 0.383471 0.606244 -0.696720 0.149271 0.703787 0.694552 0.944932 -0.273723 0.179387 0.318463 0.642777 -0.696720 0.075403 0.715481 0.694552 0.968416 -0.173180 0.179387 0.249341 0.672615 -0.696720 0.000000 0.719443 0.694552 0.981233 -0.070730 0.179387 0.177473 0.695043 -0.696720 -0.075403 0.715481 0.694552 0.983274 0.031517 0.179387 0.104360 0.709711 -0.696720 -0.149271 0.703787 0.694552 0.974555 0.134397 0.179387 0.029402 0.716740 -0.696720 -0.222211 0.684266 0.694552 0.955102 0.235798 0.179387 -0.045879 0.715875 -0.696720 -0.292703 0.657208 0.694552 0.925129 0.334600 0.179387 -0.120655 0.707124 -0.696720 -0.359971 0.622912 0.694552 0.885394 0.428833 0.179387 -0.193412 0.690777 -0.696720 -0.422693 0.582176 0.694552 0.835573 0.519266 0.179387 -0.264745 0.666702 -0.696720 -0.481381 0.534669 0.694552 0.776549 0.603981 0.179387 -0.333162 0.635283 -0.696720 -0.534767 0.481272 0.694552 0.709652 0.681333 0.179387 -0.397312 0.597264 -0.696720 -0.581839 0.423156 0.694552 0.634335 0.751957 0.179387 -0.457722 0.552334 -0.696720 -0.622985 0.359845 0.694552 0.552031 0.814299 0.179387 -0.513089 0.501319 -0.696720 -0.657268 0.292569 0.694552 0.463646 0.867671 0.179387 -0.562805 0.444783 -0.696720 -0.684312 0.222072 0.694552 0.371066 0.911115 0.179387 -0.605938 0.383953 -0.696720 -0.703668 0.149832 0.694552 0.273531 0.944987 0.179387 -0.642842 0.318332 -0.696720 -0.715496 0.075257 0.694552 -0.671097 -0.626753 -0.395992 0.539855 -0.779218 0.318396 -0.508119 -0.000103 0.861287 -0.601713 -0.693637 -0.395992 0.618549 -0.718346 0.318396 -0.505310 -0.053357 0.861287 -0.526454 -0.752354 -0.395992 0.689780 -0.650251 0.318396 -0.497041 -0.105527 0.861287 -0.444702 -0.803387 -0.395992 0.754133 -0.574376 0.318396 -0.483243 -0.157039 0.861287 -0.358052 -0.845570 -0.395992 0.810178 -0.492174 0.318396 -0.464123 -0.206822 0.861287 -0.268337 -0.878172 -0.395992 0.856894 -0.405408 0.318396 -0.440145 -0.253886 0.861287 -0.174820 -0.901459 -0.395992 0.894665 -0.313367 0.318396 -0.411112 -0.298618 0.861287 -0.079378 -0.914817 -0.395992 0.922581 -0.217874 0.318396 -0.377550 -0.340061 0.861287 0.016939 -0.918098 -0.395992 0.940334 -0.119981 0.318396 -0.339830 -0.377758 0.861287 0.112157 -0.911379 -0.395992 0.947709 -0.021714 0.318396 -0.298778 -0.410995 0.861287 0.207059 -0.894605 -0.395992 0.944765 0.077732 0.318396 -0.254057 -0.440046 0.861287 0.299679 -0.867976 -0.395992 0.931415 0.176322 0.318396 -0.206538 -0.464249 0.861287 0.388167 -0.832176 -0.395992 0.908078 0.272062 0.318396 -0.157227 -0.483182 0.861287 0.473247 -0.786910 -0.395992 0.874563 0.365737 0.318396 -0.105720 -0.497000 0.861287 0.553115 -0.732977 -0.395992 0.831415 0.455383 0.318396 -0.053049 -0.505343 0.861287 0.626343 -0.671480 -0.395992 0.779548 0.539379 0.318396 -0.000207 -0.508119 0.861287 0.693269 -0.602137 -0.395992 0.718724 0.618110 0.318396 0.053049 -0.505343 0.861287 0.752559 -0.526161 -0.395992 0.649983 0.690033 0.318396 0.105720 -0.497000 0.861287 0.803560 -0.444389 -0.395992 0.574083 0.754356 0.318396 0.157227 -0.483182 0.861287 0.845351 -0.358569 -0.395992 0.492669 0.809877 0.318396 0.206538 -0.464249 0.861287 0.878276 -0.267995 -0.395992 0.405075 0.857052 0.318396 0.254057 -0.440046 0.861287 0.901527 -0.174469 -0.395992 0.313019 0.894787 0.318396 0.298778 -0.410995 0.861287 0.914768 -0.079937 -0.395992 0.218437 0.922447 0.318396 0.339830 -0.377758 0.861287 0.918108 0.016378 -0.395992 0.120555 0.940261 0.318396 0.377550 -0.340061 0.861287 0.911335 0.112512 -0.395992 0.021345 0.947717 0.318396 0.411112 -0.298618 0.861287 0.894524 0.207406 -0.395992 -0.078100 0.944735 0.318396 0.440145 -0.253886 0.861287 0.868159 0.299149 -0.395992 -0.175753 0.931523 0.318396 0.464123 -0.206822 0.861287 0.832025 0.388491 -0.395992 -0.272416 0.907972 0.318396 0.483243 -0.157039 0.861287 0.786726 0.473553 -0.395992 -0.366077 0.874421 0.318396 0.497041 -0.105527 0.861287 0.733315 0.552667 -0.395992 -0.454875 0.831693 0.318396 0.505310 -0.053357 0.861287 0.671352 0.626479 -0.395992 -0.539537 0.779438 0.318396 0.508119 -0.000103 0.861287 0.601995 0.693392 -0.395992 -0.618257 0.718598 0.318396 0.505332 0.053152 0.861287 0.526008 0.752666 -0.395992 -0.690166 0.649842 0.318396 0.496978 0.105821 0.861287 0.445029 0.803206 -0.395992 -0.753899 0.574683 0.318396 0.483307 0.156842 0.861287 0.358397 0.845424 -0.395992 -0.809977 0.492504 0.318396 0.464207 0.206632 0.861287 0.267816 0.878331 -0.395992 -0.857135 0.404901 0.318396 0.439994 0.254147 0.861287 0.174286 0.901563 -0.395992 -0.894850 0.312837 0.318396 0.410935 0.298862 0.861287 0.079751 0.914784 -0.395992 -0.922492 0.218250 0.318396 0.377689 0.339907 0.861287 -0.016565 0.918105 -0.395992 -0.940285 0.120364 0.318396 0.339984 0.377619 0.861287 -0.112697 0.911312 -0.395992 -0.947722 0.021152 0.318396 0.298534 0.411172 0.861287 -0.206694 0.894689 -0.395992 -0.944797 -0.077347 0.318396 0.254236 0.439942 0.861287 -0.299326 0.868098 -0.395992 -0.931487 -0.175943 0.318396 0.206727 0.464165 0.861287 -0.388660 0.831946 -0.395992 -0.907917 -0.272600 0.318396 0.156941 0.483275 0.861287 -0.473713 0.786630 -0.395992 -0.874346 -0.366255 0.318396 0.105426 0.497062 0.861287 -0.552816 0.733202 -0.395992 -0.831600 -0.455045 0.318396 0.053255 0.505321 0.861287 -0.626616 0.671225 -0.395992 -0.779328 -0.539696 0.318396 0.000000 0.508119 0.861287 -0.693514 0.601854 -0.395992 -0.718472 -0.618403 0.318396 -0.053255 0.505321 0.861287 -0.752247 0.526607 -0.395992 -0.650392 -0.689648 0.318396 -0.105426 0.497062 0.861287 -0.803296 0.444866 -0.395992 -0.574530 -0.754016 0.318396 -0.156941 0.483275 0.861287 -0.845497 0.358224 -0.395992 -0.492339 -0.810078 0.318396 -0.206727 0.464165 0.861287 -0.878385 0.267637 -0.395992 -0.404726 -0.857217 0.318396 -0.254236 0.439942 0.861287 -0.901423 0.175004 -0.395992 -0.313549 -0.894601 0.318396 -0.298534 0.411172 0.861287 -0.914801 0.079564 -0.395992 -0.218062 -0.922536 0.318396 -0.339984 0.377619 0.861287 -0.918101 -0.016752 -0.395992 -0.120172 -0.940310 0.318396 -0.377689 0.339907 0.861287 -0.911402 -0.111972 -0.395992 -0.021907 -0.947705 0.318396 -0.410935 0.298862 0.861287 -0.894647 -0.206876 -0.395992 0.077540 -0.944781 0.318396 -0.439994 0.254147 0.861287 -0.868037 -0.299502 -0.395992 0.176133 -0.931451 0.318396 -0.464207 0.206632 0.861287 -0.831867 -0.388829 -0.395992 0.272785 -0.907861 0.318396 -0.483307 0.156842 0.861287 -0.787007 -0.473087 -0.395992 0.365559 -0.874637 0.318396 -0.496978 0.105821 0.861287 -0.733089 -0.552965 -0.395992 0.455214 -0.831507 0.318396 -0.505332 0.053152 0.861287 -0.384550 0.913418 -0.133374 -0.862932 -0.407023 -0.299467 -0.327825 -0.000067 0.944739 -0.478165 0.868084 -0.133374 -0.815521 -0.495223 -0.299467 -0.326012 -0.034425 0.944739 -0.565700 0.813754 -0.133374 -0.759704 -0.577208 -0.299467 -0.320677 -0.068083 0.944739 -0.647871 0.749983 -0.133374 -0.695024 -0.653652 -0.299467 -0.311775 -0.101317 0.944739 -0.722907 0.677951 -0.133374 -0.622689 -0.722895 -0.299467 -0.299439 -0.133436 0.944739 -0.789381 0.599241 -0.133374 -0.544279 -0.783633 -0.299467 -0.283969 -0.163800 0.944739 -0.847838 0.513208 -0.133374 -0.459151 -0.836361 -0.299467 -0.265238 -0.192660 0.944739 -0.896956 0.421522 -0.133374 -0.368966 -0.879877 -0.299467 -0.243585 -0.219398 0.944739 -0.936195 0.325193 -0.133374 -0.274716 -0.913702 -0.299467 -0.219249 -0.243719 0.944739 -0.964896 0.226247 -0.133374 -0.178378 -0.937284 -0.299467 -0.192763 -0.265163 0.944739 -0.983294 0.123873 -0.133374 -0.079162 -0.950817 -0.299467 -0.163911 -0.283905 0.944739 -0.990861 0.020134 -0.133374 0.020927 -0.953877 -0.299467 -0.133252 -0.299521 0.944739 -0.987598 -0.082838 -0.133374 0.119838 -0.946551 -0.299467 -0.101439 -0.311736 0.944739 -0.973476 -0.185889 -0.133374 0.218383 -0.928778 -0.299467 -0.068208 -0.320650 0.944739 -0.948633 -0.286893 -0.133374 0.314523 -0.900775 -0.299467 -0.034226 -0.326033 0.944739 -0.913653 -0.383992 -0.133374 0.406496 -0.863181 -0.299467 -0.000134 -0.327825 0.944739 -0.868376 -0.477635 -0.133374 0.494724 -0.815823 -0.299467 0.034226 -0.326033 0.944739 -0.813534 -0.566016 -0.133374 0.577504 -0.759479 -0.299467 0.068208 -0.320650 0.944739 -0.749731 -0.648163 -0.133374 0.653922 -0.694770 -0.299467 0.101439 -0.311736 0.944739 -0.678392 -0.722492 -0.133374 0.722515 -0.623131 -0.299467 0.133252 -0.299521 0.944739 -0.598934 -0.789614 -0.133374 0.783844 -0.543974 -0.299467 0.163911 -0.283905 0.944739 -0.512878 -0.848037 -0.133374 0.836540 -0.458826 -0.299467 0.192763 -0.265163 0.944739 -0.422070 -0.896699 -0.133374 0.879652 -0.369503 -0.299467 0.219249 -0.243719 0.944739 -0.325765 -0.935996 -0.133374 0.913534 -0.275275 -0.299467 0.243585 -0.219398 0.944739 -0.225871 -0.964984 -0.133374 0.937353 -0.178014 -0.299467 0.265238 -0.192660 0.944739 -0.123491 -0.983342 -0.133374 0.950848 -0.078792 -0.299467 0.283969 -0.163800 0.944739 -0.020740 -0.990849 -0.133374 0.953890 0.020344 -0.299467 0.299439 -0.133436 0.944739 0.083222 -0.987565 -0.133374 0.946504 0.120206 -0.299467 0.311775 -0.101317 0.944739 0.186268 -0.973404 -0.133374 0.928693 0.218745 -0.299467 0.320677 -0.068083 0.944739 0.286313 -0.948808 -0.133374 0.900967 0.313973 -0.299467 0.326012 -0.034425 0.944739 0.384178 -0.913575 -0.133374 0.863098 0.406671 -0.299467 0.327825 -0.000067 0.944739 0.477812 -0.868278 -0.133374 0.815722 0.494891 -0.299467 0.326026 0.034292 0.944739 0.566182 -0.813418 -0.133374 0.759362 0.577659 -0.299467 0.320636 0.068273 0.944739 0.647566 -0.750247 -0.133374 0.695291 0.653369 -0.299467 0.311816 0.101190 0.944739 0.722631 -0.678245 -0.133374 0.622984 0.722642 -0.299467 0.299494 0.133314 0.944739 0.789736 -0.598773 -0.133374 0.543815 0.783955 -0.299467 0.283872 0.163968 0.944739 0.848142 -0.512705 -0.133374 0.458655 0.836633 -0.299467 0.265124 0.192817 0.944739 0.896785 -0.421887 -0.133374 0.369324 0.879727 -0.299467 0.243674 0.219299 0.944739 0.936062 -0.325574 -0.133374 0.275089 0.913590 -0.299467 0.219348 0.243630 0.944739 0.965030 -0.225675 -0.133374 0.177823 0.937389 -0.299467 0.192606 0.265277 0.944739 0.983243 -0.124273 -0.133374 0.079549 0.950785 -0.299467 0.164026 0.283839 0.944739 0.990853 -0.020538 -0.133374 -0.020538 0.953886 -0.299467 0.133374 0.299467 0.944739 0.987548 0.083424 -0.133374 -0.120399 0.946480 -0.299467 0.101254 0.311796 0.944739 0.973366 0.186466 -0.133374 -0.218934 0.928648 -0.299467 0.068018 0.320691 0.944739 0.948749 0.286506 -0.133374 -0.314156 0.900903 -0.299467 0.034358 0.326019 0.944739 0.913496 0.384364 -0.133374 -0.406847 0.863015 -0.299467 0.000000 0.327825 0.944739 0.868181 0.477988 -0.133374 -0.495057 0.815622 -0.299467 -0.034358 0.326019 0.944739 0.813869 0.565534 -0.133374 -0.577054 0.759822 -0.299467 -0.068018 0.320691 0.944739 0.750115 0.647718 -0.133374 -0.653510 0.695158 -0.299467 -0.101254 0.311796 0.944739 0.678098 0.722769 -0.133374 -0.722769 0.622837 -0.299467 -0.133374 0.299467 0.944739 0.598612 0.789858 -0.133374 -0.784066 0.543655 -0.299467 -0.164026 0.283839 0.944739 0.513380 0.847733 -0.133374 -0.836268 0.459322 -0.299467 -0.192606 0.265277 0.944739 0.421705 0.896870 -0.133374 -0.879802 0.369145 -0.299467 -0.219348 0.243630 0.944739 0.325384 0.936129 -0.133374 -0.913646 0.274902 -0.299467 -0.243674 0.219299 0.944739 0.226443 0.964850 -0.133374 -0.937247 0.178569 -0.299467 -0.265124 0.192817 0.944739 0.124073 0.983269 -0.133374 -0.950801 0.079355 -0.299467 -0.283872 0.163968 0.944739 0.020336 0.990857 -0.133374 -0.953882 -0.020732 -0.299467 -0.299494 0.133314 0.944739 -0.083625 0.987531 -0.133374 -0.946455 -0.120592 -0.299467 -0.311816 0.101190 0.944739 -0.185691 0.973514 -0.133374 -0.928822 -0.218194 -0.299467 -0.320636 0.068273 0.944739 -0.286700 0.948691 -0.133374 -0.900839 -0.314340 -0.299467 -0.326026 0.034292 0.944739 0.459096 0.551289 0.696643 -0.303526 0.834314 -0.460208 -0.834927 -0.000170 0.550361 0.398788 0.596369 0.696643 -0.389297 0.797908 -0.460208 -0.830311 -0.087675 0.550361 0.334723 0.634546 0.696643 -0.470026 0.753183 -0.460208 -0.816723 -0.173398 0.550361 0.266374 0.666133 0.696643 -0.546377 0.699772 -0.460208 -0.794051 -0.258042 0.550361 0.195092 0.690382 0.696643 -0.616709 0.638654 -0.460208 -0.762633 -0.339843 0.550361 0.122367 0.706905 0.696643 -0.679677 0.571181 -0.460208 -0.723233 -0.417178 0.550361 0.047605 0.715837 0.696643 -0.735797 0.496801 -0.460208 -0.675526 -0.490680 0.550361 -0.027682 0.716884 0.696643 -0.783813 0.416948 -0.460208 -0.620379 -0.558778 0.550361 -0.102664 0.710034 0.696643 -0.823196 0.332502 -0.460208 -0.558399 -0.620720 0.550361 -0.175820 0.695540 0.696643 -0.853266 0.245247 -0.460208 -0.490943 -0.675336 0.550361 -0.247749 0.673282 0.696643 -0.874270 0.154468 -0.460208 -0.417459 -0.723071 0.550361 -0.316950 0.643608 0.696643 -0.885644 0.061988 -0.460208 -0.339377 -0.762841 0.550361 -0.382052 0.607227 0.696643 -0.887294 -0.030288 -0.460208 -0.258351 -0.793951 0.550361 -0.443589 0.563841 0.696643 -0.879233 -0.123116 -0.460208 -0.173716 -0.816655 0.550361 -0.500241 0.514244 0.696643 -0.861487 -0.214588 -0.460208 -0.087168 -0.830364 0.550361 -0.551008 0.459432 0.696643 -0.834500 -0.303017 -0.460208 -0.000340 -0.834927 0.550361 -0.596126 0.399152 0.696643 -0.798145 -0.388809 -0.460208 0.087168 -0.830364 0.550361 -0.634677 0.334476 0.696643 -0.753000 -0.470319 -0.460208 0.173716 -0.816655 0.550361 -0.666237 0.266115 0.696643 -0.699560 -0.546649 -0.460208 0.258351 -0.793951 0.550361 -0.690263 0.195514 0.696643 -0.639031 -0.616318 -0.460208 0.339377 -0.762841 0.550361 -0.706953 0.122092 0.696643 -0.570917 -0.679899 -0.460208 0.417459 -0.723071 0.550361 -0.715855 0.047326 0.696643 -0.496514 -0.735991 -0.460208 0.490943 -0.675336 0.550361 -0.716900 -0.027244 0.696643 -0.417426 -0.783558 -0.460208 0.558399 -0.620720 0.550361 -0.710097 -0.102231 0.696643 -0.333005 -0.822992 -0.460208 0.620379 -0.558778 0.550361 -0.695471 -0.176091 0.696643 -0.244915 -0.853361 -0.460208 0.675526 -0.490680 0.550361 -0.673186 -0.248011 0.696643 -0.154128 -0.874330 -0.460208 0.723233 -0.417178 0.550361 -0.643802 -0.316556 0.696643 -0.062529 -0.885606 -0.460208 0.762633 -0.339843 0.550361 -0.607078 -0.382288 0.696643 0.030633 -0.887282 -0.460208 0.794051 -0.258042 0.550361 -0.563668 -0.443809 0.696643 0.123458 -0.879185 -0.460208 0.816723 -0.173398 0.550361 -0.514550 -0.499927 0.696643 0.214062 -0.861618 -0.460208 0.830311 -0.087675 0.550361 -0.459320 -0.551102 0.696643 0.303186 -0.834438 -0.460208 0.834927 -0.000170 0.550361 -0.399031 -0.596207 0.696643 0.388972 -0.798066 -0.460208 0.830346 0.087337 0.550361 -0.334347 -0.634745 0.696643 0.470473 -0.752904 -0.460208 0.816620 0.173883 0.550361 -0.266646 -0.666024 0.696643 0.546091 -0.699995 -0.460208 0.794156 0.257718 0.550361 -0.195373 -0.690303 0.696643 0.616448 -0.638905 -0.460208 0.762772 0.339532 0.550361 -0.121948 -0.706977 0.696643 0.680015 -0.570778 -0.460208 0.722985 0.417606 0.550361 -0.047180 -0.715865 0.696643 0.736092 -0.496364 -0.460208 0.675236 0.491080 0.550361 0.027390 -0.716895 0.696643 0.783643 -0.417267 -0.460208 0.620607 0.558525 0.550361 0.102375 -0.710076 0.696643 0.823060 -0.332837 -0.460208 0.558651 0.620493 0.550361 0.176232 -0.695436 0.696643 0.853411 -0.244742 -0.460208 0.490543 0.675626 0.550361 0.247475 -0.673383 0.696643 0.874207 -0.154824 -0.460208 0.417754 0.722900 0.550361 0.316688 -0.643737 0.696643 0.885619 -0.062349 -0.460208 0.339688 0.762703 0.550361 0.382412 -0.607001 0.696643 0.887276 0.030814 -0.460208 0.257880 0.794104 0.550361 0.443924 -0.563578 0.696643 0.879160 0.123637 -0.460208 0.173232 0.816758 0.550361 0.500032 -0.514448 0.696643 0.861575 0.214237 -0.460208 0.087506 0.830329 0.550361 0.551196 -0.459208 0.696643 0.834376 0.303356 -0.460208 0.000000 0.834927 0.550361 0.596288 -0.398910 0.696643 0.797987 0.389134 -0.460208 -0.087506 0.830329 0.550361 0.634478 -0.334852 0.696643 0.753278 0.469873 -0.460208 -0.173232 0.816758 0.550361 0.666079 -0.266510 0.696643 0.699884 0.546234 -0.460208 -0.257880 0.794104 0.550361 0.690342 -0.195232 0.696643 0.638780 0.616579 -0.460208 -0.339688 0.762703 0.550361 0.707002 -0.121804 0.696643 0.570640 0.680131 -0.460208 -0.417754 0.722900 0.550361 0.715827 -0.047750 0.696643 0.496950 0.735696 -0.460208 -0.490543 0.675626 0.550361 0.716889 0.027536 0.696643 0.417107 0.783728 -0.460208 -0.558651 0.620493 0.550361 0.710055 0.102520 0.696643 0.332670 0.823128 -0.460208 -0.620607 0.558525 0.550361 0.695576 0.175679 0.696643 0.245421 0.853216 -0.460208 -0.675236 0.491080 0.550361 0.673332 0.247612 0.696643 0.154646 0.874239 -0.460208 -0.722985 0.417606 0.550361 0.643673 0.316819 0.696643 0.062168 0.885632 -0.460208 -0.762772 0.339532 0.550361 0.606923 0.382535 0.696643 -0.030995 0.887270 -0.460208 -0.794156 0.257718 0.550361 0.563931 0.443475 0.696643 -0.122937 0.879258 -0.460208 -0.816620 0.173883 0.550361 0.514346 0.500136 0.696643 -0.214413 0.861531 -0.460208 -0.830346 0.087337 0.550361 -0.337686 -0.664105 -0.667033 0.300172 -0.747640 0.592395 -0.892113 -0.000182 0.451813 -0.266223 -0.695839 -0.667033 0.376877 -0.712062 0.592395 -0.887180 -0.093681 0.451813 -0.192548 -0.719717 -0.667033 0.448762 -0.669090 0.592395 -0.872662 -0.185275 0.451813 -0.116056 -0.735933 -0.667033 0.516416 -0.618371 0.592395 -0.848437 -0.275716 0.451813 -0.038285 -0.744043 -0.667033 0.578381 -0.560842 0.592395 -0.814868 -0.363120 0.451813 0.039163 -0.743998 -0.667033 0.633479 -0.497768 0.592395 -0.772768 -0.445751 0.451813 0.116923 -0.735796 -0.667033 0.682159 -0.428634 0.592395 -0.721795 -0.524288 0.451813 0.193396 -0.719489 -0.667033 0.723326 -0.354778 0.592395 -0.662870 -0.597050 0.451813 0.267738 -0.695257 -0.667033 0.756526 -0.277014 0.592395 -0.596645 -0.663235 0.451813 0.338468 -0.663706 -0.667033 0.781196 -0.196980 0.592395 -0.524569 -0.721591 0.451813 0.406165 -0.624577 -0.667033 0.797538 -0.114021 0.592395 -0.446052 -0.772595 0.451813 0.469389 -0.578568 -0.667033 0.805096 -0.029805 0.592395 -0.362622 -0.815089 0.451813 0.526915 -0.526713 -0.667033 0.803840 0.053935 0.592395 -0.276046 -0.848330 0.451813 0.579216 -0.468588 -0.667033 0.793760 0.137886 0.592395 -0.185614 -0.872590 0.451813 0.625138 -0.405301 -0.667033 0.774937 0.220319 0.592395 -0.093138 -0.887238 0.451813 0.663898 -0.338091 -0.667033 0.747823 0.299715 0.592395 -0.000363 -0.892113 0.451813 0.695676 -0.266648 -0.667033 0.712292 0.376442 0.592395 0.093138 -0.887238 0.451813 0.719791 -0.192267 -0.667033 0.668915 0.449022 0.592395 0.185614 -0.872590 0.451813 0.735978 -0.115769 -0.667033 0.618170 0.516656 0.592395 0.276046 -0.848330 0.451813 0.744020 -0.038740 -0.667033 0.561195 0.578038 0.592395 0.362622 -0.815089 0.451813 0.743983 0.039452 -0.667033 0.497522 0.633672 0.592395 0.446052 -0.772595 0.451813 0.735750 0.117209 -0.667033 0.428368 0.682326 0.592395 0.524569 -0.721591 0.451813 0.719607 0.192956 -0.667033 0.355220 0.723109 0.592395 0.596645 -0.663235 0.451813 0.695421 0.267314 -0.667033 0.277476 0.756357 0.592395 0.662870 -0.597050 0.451813 0.663574 0.338727 -0.667033 0.196676 0.781272 0.592395 0.721795 -0.524288 0.451813 0.624419 0.406408 -0.667033 0.113710 0.797583 0.592395 0.772768 -0.445751 0.451813 0.578855 0.469035 -0.667033 0.030297 0.805078 0.592395 0.814868 -0.363120 0.451813 0.526508 0.527120 -0.667033 -0.054248 0.803819 0.592395 0.848437 -0.275716 0.451813 0.468363 0.579399 -0.667033 -0.138195 0.793707 0.592395 0.872662 -0.185275 0.451813 0.405683 0.624890 -0.667033 -0.219845 0.775072 0.592395 0.887180 -0.093681 0.451813 0.337956 0.663967 -0.667033 -0.299868 0.747762 0.592395 0.892113 -0.000182 0.451813 0.266506 0.695731 -0.667033 -0.376587 0.712215 0.592395 0.887219 0.093319 0.451813 0.192121 0.719831 -0.667033 -0.449158 0.668824 0.592395 0.872552 0.185792 0.451813 0.116355 0.735886 -0.667033 -0.516164 0.618582 0.592395 0.848550 0.275370 0.451813 0.038588 0.744028 -0.667033 -0.578153 0.561077 0.592395 0.815016 0.362788 0.451813 -0.039604 0.743975 -0.667033 -0.633773 0.497393 0.592395 0.772504 0.446209 0.451813 -0.117359 0.735726 -0.667033 -0.682413 0.428229 0.592395 0.721484 0.524716 0.451813 -0.193103 0.719568 -0.667033 -0.723182 0.355072 0.592395 0.663113 0.596780 0.451813 -0.267455 0.695366 -0.667033 -0.756413 0.277322 0.592395 0.596915 0.662992 0.451813 -0.338862 0.663505 -0.667033 -0.781313 0.196517 0.592395 0.524141 0.721901 0.451813 -0.405911 0.624742 -0.667033 -0.797492 0.114345 0.592395 0.446366 0.772413 0.451813 -0.469153 0.578759 -0.667033 -0.805084 0.030133 0.592395 0.362954 0.814942 0.451813 -0.527227 0.526401 -0.667033 -0.803808 -0.054412 0.592395 0.275543 0.848494 0.451813 -0.579494 0.468245 -0.667033 -0.793679 -0.138357 0.592395 0.185097 0.872699 0.451813 -0.624973 0.405556 -0.667033 -0.775027 -0.220003 0.592395 0.093500 0.887200 0.451813 -0.664036 0.337821 -0.667033 -0.747701 -0.300020 0.592395 0.000000 0.892113 0.451813 -0.695785 0.266365 -0.667033 -0.712139 -0.376732 0.592395 -0.093500 0.887200 0.451813 -0.719677 0.192694 -0.667033 -0.669181 -0.448625 0.592395 -0.185097 0.872699 0.451813 -0.735909 0.116205 -0.667033 -0.618477 -0.516290 0.592395 -0.275543 0.848494 0.451813 -0.744036 0.038437 -0.667033 -0.560960 -0.578267 0.592395 -0.362954 0.814942 0.451813 -0.743966 -0.039755 -0.667033 -0.497264 -0.633875 0.592395 -0.446366 0.772413 0.451813 -0.735820 -0.116773 -0.667033 -0.428773 -0.682072 0.592395 -0.524141 0.721901 0.451813 -0.719528 -0.193249 -0.667033 -0.354925 -0.723254 0.592395 -0.596915 0.662992 0.451813 -0.695312 -0.267597 -0.667033 -0.277168 -0.756469 0.592395 -0.663113 0.596780 0.451813 -0.663775 -0.338333 -0.667033 -0.197140 -0.781156 0.592395 -0.721484 0.524716 0.451813 -0.624659 -0.406038 -0.667033 -0.114183 -0.797515 0.592395 -0.772504 0.446209 0.451813 -0.578664 -0.469271 -0.667033 -0.029969 -0.805090 0.592395 -0.815016 0.362788 0.451813 -0.526294 -0.527334 -0.667033 0.054575 -0.803797 0.592395 -0.848550 0.275370 0.451813 -0.468706 -0.579121 -0.667033 0.137725 -0.793788 0.592395 -0.872552 0.185792 0.451813 -0.405429 -0.625055 -0.667033 0.220161 -0.774982 0.592395 -0.887219 0.093319 0.451813 -0.366654 0.432905 -0.823503 -0.175893 -0.901439 -0.395562 -0.913579 -0.000186 0.406661 -0.410006 0.392093 -0.823503 -0.080447 -0.914909 -0.395562 -0.908528 -0.095935 0.406661 -0.448495 0.347411 -0.823503 0.014967 -0.918317 -0.395562 -0.893660 -0.189733 0.406661 -0.482436 0.298492 -0.823503 0.111131 -0.911691 -0.395562 -0.868853 -0.282350 0.406661 -0.511063 0.246285 -0.823503 0.206071 -0.895023 -0.395562 -0.834475 -0.371857 0.406661 -0.533870 0.191900 -0.823503 0.297872 -0.868794 -0.395562 -0.791363 -0.456477 0.406661 -0.551042 0.134890 -0.823503 0.387287 -0.832790 -0.395562 -0.739163 -0.536903 0.406661 -0.562144 0.076394 -0.823503 0.472437 -0.787613 -0.395562 -0.678820 -0.611416 0.406661 -0.567055 0.017056 -0.823503 0.552382 -0.733761 -0.395562 -0.611001 -0.679194 0.406661 -0.565762 -0.041903 -0.823503 0.625571 -0.672452 -0.395562 -0.537191 -0.738954 0.406661 -0.558254 -0.100969 -0.823503 0.692604 -0.603184 -0.395562 -0.456785 -0.791185 0.406661 -0.544597 -0.158922 -0.823503 0.752007 -0.527272 -0.395562 -0.371347 -0.834702 0.406661 -0.525157 -0.214599 -0.823503 0.802682 -0.446355 -0.395562 -0.282688 -0.868743 0.406661 -0.499773 -0.268457 -0.823503 0.845042 -0.359770 -0.395562 -0.190081 -0.893586 0.406661 -0.468884 -0.319358 -0.823503 0.878095 -0.269222 -0.395562 -0.095380 -0.908587 0.406661 -0.433129 -0.366389 -0.823503 0.901332 -0.176443 -0.395562 -0.000372 -0.913579 0.406661 -0.392344 -0.409767 -0.823503 0.914860 -0.081006 -0.395562 0.095380 -0.908587 0.406661 -0.347236 -0.448630 -0.823503 0.918312 0.015324 -0.395562 0.190081 -0.893586 0.406661 -0.298304 -0.482552 -0.823503 0.911648 0.111486 -0.395562 0.282688 -0.868743 0.406661 -0.246598 -0.510913 -0.823503 0.895149 0.205524 -0.395562 0.371347 -0.834702 0.406661 -0.191692 -0.533944 -0.823503 0.868678 0.298210 -0.395562 0.456785 -0.791185 0.406661 -0.134675 -0.551094 -0.823503 0.832640 0.387611 -0.395562 0.537191 -0.738954 0.406661 -0.076737 -0.562098 -0.823503 0.787902 0.471956 -0.395562 0.611001 -0.679194 0.406661 -0.017403 -0.567044 -0.823503 0.734098 0.551934 -0.395562 0.678820 -0.611416 0.406661 0.042124 -0.565745 -0.823503 0.672208 0.625833 -0.395562 0.739163 -0.536903 0.406661 0.101186 -0.558215 -0.823503 0.602915 0.692838 -0.395562 0.791363 -0.456477 0.406661 0.158589 -0.544694 -0.823503 0.527731 0.751685 -0.395562 0.834475 -0.371857 0.406661 0.214803 -0.525073 -0.823503 0.446043 0.802855 -0.395562 0.868853 -0.282350 0.406661 0.268652 -0.499668 -0.823503 0.359441 0.845182 -0.395562 0.893660 -0.189733 0.406661 0.319072 -0.469079 -0.823503 0.269759 0.877930 -0.395562 0.908528 -0.095935 0.406661 0.366478 -0.433055 -0.823503 0.176260 0.901368 -0.395562 0.913579 -0.000186 0.406661 0.409846 -0.392260 -0.823503 0.080819 0.914877 -0.395562 0.908567 0.095565 0.406661 0.448701 -0.347145 -0.823503 -0.015512 0.918308 -0.395562 0.893547 0.190263 0.406661 0.482315 -0.298689 -0.823503 -0.110760 0.911736 -0.395562 0.868968 0.281996 0.406661 0.510963 -0.246494 -0.823503 -0.205706 0.895107 -0.395562 0.834627 0.371517 0.406661 0.533983 -0.191583 -0.823503 -0.298387 0.868617 -0.395562 0.791092 0.456946 0.406661 0.551122 -0.134563 -0.823503 -0.387781 0.832561 -0.395562 0.738844 0.537341 0.406661 0.562113 -0.076623 -0.823503 -0.472116 0.787806 -0.395562 0.679069 0.611139 0.406661 0.567048 -0.017287 -0.823503 -0.552083 0.733986 -0.395562 0.611278 0.678945 0.406661 0.565737 0.042239 -0.823503 -0.625970 0.672081 -0.395562 0.536753 0.739272 0.406661 0.558295 0.100741 -0.823503 -0.692358 0.603466 -0.395562 0.457107 0.790999 0.406661 0.544662 0.158700 -0.823503 -0.751793 0.527578 -0.395562 0.371687 0.834551 0.406661 0.525029 0.214910 -0.823503 -0.802946 0.445880 -0.395562 0.282173 0.868910 0.406661 0.499614 0.268753 -0.823503 -0.845255 0.359269 -0.395562 0.189551 0.893699 0.406661 0.469014 0.319167 -0.823503 -0.877985 0.269580 -0.395562 0.095750 0.908548 0.406661 0.432980 0.366566 -0.823503 -0.901403 0.176076 -0.395562 0.000000 0.913579 0.406661 0.392177 0.409926 -0.823503 -0.914893 0.080633 -0.395562 -0.095750 0.908548 0.406661 0.347502 0.448424 -0.823503 -0.918321 -0.014780 -0.395562 -0.189551 0.893699 0.406661 0.298590 0.482375 -0.823503 -0.911714 -0.110945 -0.395562 -0.282173 0.868910 0.406661 0.246390 0.511013 -0.823503 -0.895065 -0.205888 -0.395562 -0.371687 0.834551 0.406661 0.191475 0.534022 -0.823503 -0.868557 -0.298564 -0.395562 -0.457107 0.790999 0.406661 0.135002 0.551014 -0.823503 -0.832869 -0.387118 -0.395562 -0.536753 0.739272 0.406661 0.076508 0.562129 -0.823503 -0.787709 -0.472276 -0.395562 -0.611278 0.678945 0.406661 0.017172 0.567052 -0.823503 -0.733873 -0.552233 -0.395562 -0.679069 0.611139 0.406661 -0.041788 0.565770 -0.823503 -0.672579 -0.625434 -0.395562 -0.738844 0.537341 0.406661 -0.100855 0.558275 -0.823503 -0.603325 -0.692481 -0.395562 -0.791092 0.456946 0.406661 -0.158811 0.544630 -0.823503 -0.527425 -0.751900 -0.395562 -0.834627 0.371517 0.406661 -0.215017 0.524986 -0.823503 -0.445716 -0.803037 -0.395562 -0.868968 0.281996 0.406661 -0.268355 0.499828 -0.823503 -0.359942 -0.844969 -0.395562 -0.893547 0.190263 0.406661 -0.319263 0.468949 -0.823503 -0.269401 -0.878040 -0.395562 -0.908567 0.095565 0.406661 0.227120 0.487173 -0.843255 0.126916 -0.873306 -0.470350 -0.965561 -0.000197 -0.260175 0.174810 0.508293 -0.843255 0.217746 -0.855194 -0.470350 -0.960223 -0.101393 -0.260175 0.121098 0.523694 -0.843255 0.305349 -0.827969 -0.470350 -0.944509 -0.200529 -0.260175 0.065544 0.533502 -0.843255 0.390445 -0.791406 -0.470350 -0.918290 -0.298416 -0.260175 0.009268 0.537434 -0.843255 0.471239 -0.746126 -0.470350 -0.881957 -0.393016 -0.260175 -0.046574 0.535492 -0.843255 0.546151 -0.693174 -0.470350 -0.836391 -0.482450 -0.260175 -0.102441 0.527661 -0.843255 0.615792 -0.632116 -0.470350 -0.781221 -0.567453 -0.260175 -0.157179 0.514019 -0.843255 0.678651 -0.564095 -0.470350 -0.717445 -0.646205 -0.260175 -0.210187 0.494714 -0.843255 0.734035 -0.489861 -0.470350 -0.645767 -0.717840 -0.260175 -0.260409 0.470221 -0.843255 0.780922 -0.411012 -0.470350 -0.567757 -0.781000 -0.260175 -0.308257 0.440339 -0.843255 0.819698 -0.326902 -0.470350 -0.482776 -0.836204 -0.260175 -0.352710 0.405606 -0.843255 0.849446 -0.239192 -0.470350 -0.392477 -0.882197 -0.260175 -0.392911 0.366799 -0.843255 0.869687 -0.149716 -0.470350 -0.298773 -0.918174 -0.260175 -0.429190 0.323599 -0.843255 0.880589 -0.057742 -0.470350 -0.200896 -0.944431 -0.260175 -0.460742 0.276835 -0.843255 0.881791 0.034868 -0.470350 -0.100807 -0.960285 -0.260175 -0.487034 0.227418 -0.843255 0.873383 0.126382 -0.470350 -0.000393 -0.965561 -0.260175 -0.508186 0.175120 -0.843255 0.855327 0.217223 -0.470350 0.100807 -0.960285 -0.260175 -0.523742 0.120894 -0.843255 0.827850 0.305671 -0.470350 0.200896 -0.944431 -0.260175 -0.533528 0.065337 -0.843255 0.791254 0.390752 -0.470350 0.298773 -0.918174 -0.260175 -0.537428 0.009597 -0.843255 0.746414 0.470783 -0.470350 0.392477 -0.882197 -0.260175 -0.535474 -0.046782 -0.843255 0.692962 0.546420 -0.470350 0.482776 -0.836204 -0.260175 -0.527622 -0.102646 -0.843255 0.631876 0.616038 -0.470350 0.567757 -0.781000 -0.260175 -0.514115 -0.156865 -0.843255 0.564510 0.678306 -0.470350 0.645767 -0.717840 -0.260175 -0.494843 -0.209884 -0.843255 0.490309 0.733735 -0.470350 0.717445 -0.646205 -0.260175 -0.470120 -0.260591 -0.843255 0.410708 0.781082 -0.470350 0.781221 -0.567453 -0.260175 -0.440219 -0.308428 -0.843255 0.326583 0.819825 -0.470350 0.836391 -0.482450 -0.260175 -0.405822 -0.352462 -0.843255 0.239711 0.849299 -0.470350 0.881957 -0.393016 -0.260175 -0.366646 -0.393054 -0.843255 0.149378 0.869745 -0.470350 0.918290 -0.298416 -0.260175 -0.323432 -0.429316 -0.843255 0.057399 0.880611 -0.470350 0.944509 -0.200529 -0.260175 -0.277116 -0.460573 -0.843255 -0.034329 0.881812 -0.470350 0.960223 -0.101393 -0.260175 -0.227318 -0.487080 -0.843255 -0.126560 0.873357 -0.470350 0.965561 -0.000197 -0.260175 -0.175017 -0.508222 -0.843255 -0.217397 0.855283 -0.470350 0.960264 0.101002 -0.260175 -0.120788 -0.523766 -0.843255 -0.305840 0.827788 -0.470350 0.944390 0.201089 -0.260175 -0.065762 -0.533475 -0.843255 -0.390122 0.791565 -0.470350 0.918412 0.298042 -0.260175 -0.009487 -0.537430 -0.843255 -0.470935 0.746318 -0.470350 0.882117 0.392656 -0.260175 0.046891 -0.535464 -0.843255 -0.546561 0.692850 -0.470350 0.836105 0.482946 -0.260175 0.102754 -0.527601 -0.843255 -0.616167 0.631751 -0.470350 0.780884 0.567916 -0.260175 0.156970 -0.514083 -0.843255 -0.678421 0.564372 -0.470350 0.717708 0.645913 -0.260175 0.209985 -0.494800 -0.843255 -0.733835 0.490160 -0.470350 0.646059 0.717577 -0.260175 0.260687 -0.470067 -0.843255 -0.781166 0.410549 -0.470350 0.567294 0.781336 -0.260175 0.308078 -0.440464 -0.843255 -0.819565 0.327236 -0.470350 0.483116 0.836007 -0.260175 0.352545 -0.405750 -0.843255 -0.849348 0.239538 -0.470350 0.392836 0.882037 -0.260175 0.393128 -0.366566 -0.843255 -0.869776 0.149201 -0.470350 0.298229 0.918351 -0.260175 0.429382 -0.323344 -0.843255 -0.880623 0.057220 -0.470350 0.200336 0.944550 -0.260175 0.460629 -0.277022 -0.843255 -0.881805 -0.034509 -0.470350 0.101198 0.960244 -0.260175 0.487126 -0.227219 -0.843255 -0.873331 -0.126738 -0.470350 0.000000 0.965561 -0.260175 0.508258 -0.174913 -0.843255 -0.855239 -0.217572 -0.470350 -0.101198 0.960244 -0.260175 0.523670 -0.121205 -0.843255 -0.828031 -0.305181 -0.470350 -0.200336 0.944550 -0.260175 0.533489 -0.065653 -0.843255 -0.791485 -0.390283 -0.470350 -0.298229 0.918351 -0.260175 0.537432 -0.009378 -0.843255 -0.746222 -0.471087 -0.470350 -0.392836 0.882037 -0.260175 0.535455 0.047000 -0.843255 -0.692739 -0.546702 -0.470350 -0.483116 0.836007 -0.260175 0.527682 0.102333 -0.843255 -0.632241 -0.615663 -0.470350 -0.567294 0.781336 -0.260175 0.514051 0.157075 -0.843255 -0.564233 -0.678536 -0.470350 -0.646059 0.717577 -0.260175 0.494757 0.210086 -0.843255 -0.490010 -0.733935 -0.470350 -0.717708 0.645913 -0.260175 0.470274 0.260313 -0.843255 -0.411171 -0.780838 -0.470350 -0.780884 0.567916 -0.260175 0.440402 0.308167 -0.843255 -0.327069 -0.819632 -0.470350 -0.836105 0.482946 -0.260175 0.405678 0.352627 -0.843255 -0.239365 -0.849397 -0.470350 -0.882117 0.392656 -0.260175 0.366486 0.393203 -0.843255 -0.149023 -0.869806 -0.470350 -0.918412 0.298042 -0.260175 0.323686 0.429124 -0.843255 -0.057921 -0.880577 -0.470350 -0.944390 0.201089 -0.260175 0.276928 0.460686 -0.843255 0.034688 -0.881798 -0.470350 -0.960264 0.101002 -0.260175 0.022599 -0.995040 -0.096873 -0.224117 -0.099474 0.969472 -0.974300 -0.000198 -0.225254 0.126762 -0.987191 -0.096873 -0.212458 -0.122415 0.969472 -0.968913 -0.102311 -0.225254 0.228560 -0.968698 -0.096873 -0.198601 -0.143809 0.969472 -0.953057 -0.202344 -0.225254 0.328828 -0.939408 -0.096873 -0.182435 -0.163832 0.969472 -0.926601 -0.301116 -0.225254 0.425474 -0.899771 -0.096873 -0.164260 -0.182050 0.969472 -0.889939 -0.396573 -0.225254 0.516582 -0.850740 -0.096873 -0.144473 -0.198119 0.969472 -0.843961 -0.486817 -0.225254 0.602901 -0.791913 -0.096873 -0.122913 -0.212170 0.969472 -0.788291 -0.572589 -0.225254 0.682579 -0.724363 -0.096873 -0.099999 -0.223883 0.969472 -0.723938 -0.652054 -0.225254 0.754738 -0.648835 -0.096873 -0.075984 -0.233131 0.969472 -0.651611 -0.724336 -0.225254 0.818017 -0.566978 -0.096873 -0.051372 -0.239760 0.969472 -0.572895 -0.788068 -0.225254 0.872935 -0.478121 -0.096873 -0.025960 -0.243823 0.969472 -0.487145 -0.843772 -0.225254 0.918238 -0.383998 -0.096873 -0.000263 -0.245201 0.969472 -0.396029 -0.890181 -0.225254 0.953141 -0.286599 -0.096873 0.025194 -0.243904 0.969472 -0.301477 -0.926484 -0.225254 0.977929 -0.185124 -0.096873 0.050618 -0.239920 0.969472 -0.202714 -0.952978 -0.225254 0.991945 -0.081611 -0.096873 0.075484 -0.233293 0.969472 -0.101719 -0.968976 -0.225254 0.995054 0.021991 -0.096873 0.099337 -0.224178 0.969472 -0.000397 -0.974300 -0.225254 0.987269 0.126159 -0.096873 0.122285 -0.212532 0.969472 0.101719 -0.968976 -0.225254 0.968609 0.228937 -0.096873 0.143887 -0.198545 0.969472 0.202714 -0.952978 -0.225254 0.939280 0.329193 -0.096873 0.163903 -0.182372 0.969472 0.301477 -0.926484 -0.225254 0.900031 0.424924 -0.096873 0.181950 -0.164371 0.969472 0.396029 -0.890181 -0.225254 0.850539 0.516913 -0.096873 0.198175 -0.144396 0.969472 0.487145 -0.843772 -0.225254 0.791678 0.603209 -0.096873 0.212218 -0.122831 0.969472 0.572895 -0.788068 -0.225254 0.724780 0.682136 -0.096873 0.223822 -0.100136 0.969472 0.651611 -0.724336 -0.225254 0.649296 0.754341 -0.096873 0.233085 -0.076127 0.969472 0.723938 -0.652054 -0.225254 0.566659 0.818238 -0.096873 0.239779 -0.051278 0.969472 0.788291 -0.572589 -0.225254 0.477782 0.873121 -0.096873 0.243833 -0.025865 0.969472 0.843961 -0.486817 -0.225254 0.384559 0.918003 -0.096873 0.245201 -0.000413 0.969472 0.889939 -0.396573 -0.225254 0.286228 0.953252 -0.096873 0.243894 0.025288 0.969472 0.926601 -0.301116 -0.225254 0.184744 0.978001 -0.096873 0.239900 0.050711 0.969472 0.953057 -0.202344 -0.225254 0.082217 0.991895 -0.096873 0.233339 0.075342 0.969472 0.968913 -0.102311 -0.225254 -0.022194 0.995049 -0.096873 0.224158 0.099382 0.969472 0.974300 -0.000198 -0.225254 -0.126360 0.987243 -0.096873 0.212507 0.122328 0.969472 0.968955 0.101916 -0.225254 -0.229134 0.968562 -0.096873 0.198516 0.143927 0.969472 0.952937 0.202908 -0.225254 -0.328445 0.939542 -0.096873 0.182502 0.163758 0.969472 0.926724 0.300739 -0.225254 -0.425107 0.899944 -0.096873 0.164334 0.181983 0.969472 0.890100 0.396210 -0.225254 -0.517086 0.850434 -0.096873 0.144356 0.198205 0.969472 0.843672 0.487317 -0.225254 -0.603370 0.791556 -0.096873 0.122787 0.212243 0.969472 0.787952 0.573056 -0.225254 -0.682283 0.724641 -0.096873 0.100091 0.223843 0.969472 0.724204 0.651759 -0.225254 -0.754473 0.649142 -0.096873 0.076079 0.233100 0.969472 0.651906 0.724071 -0.225254 -0.818353 0.566493 -0.096873 0.051230 0.239790 0.969472 0.572428 0.788408 -0.225254 -0.872740 0.478477 -0.096873 0.026059 0.243813 0.969472 0.487489 0.843573 -0.225254 -0.918082 0.384372 -0.096873 0.000363 0.245201 0.969472 0.396391 0.890019 -0.225254 -0.953310 0.286034 -0.096873 -0.025338 0.243889 0.969472 0.300928 0.926662 -0.225254 -0.978038 0.184544 -0.096873 -0.050760 0.239890 0.969472 0.202150 0.953098 -0.225254 -0.991912 0.082015 -0.096873 -0.075389 0.233324 0.969472 0.102114 0.968934 -0.225254 -0.995045 -0.022397 -0.096873 -0.099428 0.224138 0.969472 0.000000 0.974300 -0.225254 -0.987217 -0.126561 -0.096873 -0.122372 0.212483 0.969472 -0.102114 0.968934 -0.225254 -0.968745 -0.228363 -0.096873 -0.143769 0.198631 0.969472 -0.202150 0.953098 -0.225254 -0.939475 -0.328637 -0.096873 -0.163795 0.182469 0.969472 -0.300928 0.926662 -0.225254 -0.899858 -0.425290 -0.096873 -0.182017 0.164297 0.969472 -0.396391 0.890019 -0.225254 -0.850328 -0.517260 -0.096873 -0.198234 0.144315 0.969472 -0.487489 0.843573 -0.225254 -0.792036 -0.602740 -0.096873 -0.212145 0.122956 0.969472 -0.572428 0.788408 -0.225254 -0.724502 -0.682431 -0.096873 -0.223863 0.100045 0.969472 -0.651906 0.724071 -0.225254 -0.648988 -0.754606 -0.096873 -0.233116 0.076032 0.969472 -0.724204 0.651759 -0.225254 -0.567144 -0.817902 -0.096873 -0.239749 0.051420 0.969472 -0.787952 0.573056 -0.225254 -0.478299 -0.872838 -0.096873 -0.243818 0.026010 0.969472 -0.843672 0.487317 -0.225254 -0.384185 -0.918160 -0.096873 -0.245201 0.000313 0.969472 -0.890100 0.396210 -0.225254 -0.285839 -0.953368 -0.096873 -0.243883 -0.025388 0.969472 -0.926724 0.300739 -0.225254 -0.185323 -0.977891 -0.096873 -0.239930 -0.050569 0.969472 -0.952937 0.202908 -0.225254 -0.081813 -0.991929 -0.096873 -0.233309 -0.075437 0.969472 -0.968955 0.101916 -0.225254 0.745427 0.657125 0.111918 -0.649847 0.753782 -0.097527 -0.148449 -0.000030 0.988920 0.672450 0.731632 0.111918 -0.725270 0.681522 -0.097527 -0.147629 -0.015589 0.988920 0.592864 0.797487 0.111918 -0.792102 0.602547 -0.097527 -0.145213 -0.030830 0.988920 0.506017 0.855232 0.111918 -0.850891 0.516211 -0.097527 -0.141182 -0.045880 0.988920 0.413596 0.903556 0.111918 -0.900307 0.424189 -0.097527 -0.135596 -0.060424 0.988920 0.317560 0.941610 0.111918 -0.939479 0.328433 -0.097527 -0.128590 -0.074174 0.988920 0.217124 0.969707 0.111918 -0.968727 0.228161 -0.097527 -0.120108 -0.087242 0.988920 0.114296 0.987122 0.111918 -0.987304 0.125374 -0.097527 -0.110303 -0.099350 0.988920 0.010209 0.993665 0.111918 -0.995007 0.021207 -0.097527 -0.099283 -0.110364 0.988920 -0.093001 0.989356 0.111918 -0.991832 -0.082202 -0.097527 -0.087289 -0.120074 0.988920 -0.196181 0.974160 0.111918 -0.977755 -0.185700 -0.097527 -0.074224 -0.128561 0.988920 -0.297199 0.948234 0.111918 -0.952907 -0.287153 -0.097527 -0.060341 -0.135632 0.988920 -0.394032 0.912257 0.111918 -0.917948 -0.384525 -0.097527 -0.045935 -0.141164 0.988920 -0.487473 0.865936 0.111918 -0.872592 -0.478615 -0.097527 -0.030887 -0.145201 0.988920 -0.575544 0.810076 0.111918 -0.817624 -0.567433 -0.097527 -0.015498 -0.147638 0.988920 -0.656669 0.745828 0.111918 -0.754179 -0.649386 -0.097527 -0.000060 -0.148449 0.988920 -0.731221 0.672897 0.111918 -0.681965 -0.724853 -0.097527 0.015498 -0.147638 0.988920 -0.797718 0.592554 0.111918 -0.602239 -0.792336 -0.097527 0.030887 -0.145201 0.988920 -0.855429 0.505684 0.111918 -0.515880 -0.851091 -0.097527 0.045935 -0.141164 0.988920 -0.903303 0.414148 0.111918 -0.424739 -0.900048 -0.097527 0.060341 -0.135632 0.988920 -0.941734 0.317194 0.111918 -0.328068 -0.939606 -0.097527 0.074224 -0.128561 0.988920 -0.969791 0.216747 0.111918 -0.227784 -0.968815 -0.097527 0.087289 -0.120074 0.988920 -0.987052 0.114899 0.111918 -0.125978 -0.987227 -0.097527 0.099283 -0.110364 0.988920 -0.993659 0.010816 0.111918 -0.021815 -0.994994 -0.097527 0.110303 -0.099350 0.988920 -0.989320 -0.093386 0.111918 0.082587 -0.991800 -0.097527 0.120108 -0.087242 0.988920 -0.974084 -0.196559 0.111918 0.186080 -0.977682 -0.097527 0.128590 -0.074174 0.988920 -0.948415 -0.296620 0.111918 0.286571 -0.953082 -0.097527 0.135596 -0.060424 0.988920 -0.912104 -0.394387 0.111918 0.384882 -0.917799 -0.097527 0.141182 -0.045880 0.988920 -0.865746 -0.487810 0.111918 0.478954 -0.872405 -0.097527 0.145213 -0.030830 0.988920 -0.810427 -0.575049 0.111918 0.566933 -0.817970 -0.097527 0.147629 -0.015589 0.988920 -0.745695 -0.656821 0.111918 0.649540 -0.754047 -0.097527 0.148449 -0.000030 0.988920 -0.672748 -0.731358 0.111918 0.724992 -0.681817 -0.097527 0.147635 0.015528 0.988920 -0.592392 -0.797839 0.111918 0.792459 -0.602078 -0.097527 0.145194 0.030916 0.988920 -0.506365 -0.855026 0.111918 0.850680 -0.516558 -0.097527 0.141200 0.045822 0.988920 -0.413964 -0.903387 0.111918 0.900134 -0.424555 -0.097527 0.135620 0.060369 0.988920 -0.317002 -0.941798 0.111918 0.939673 -0.327877 -0.097527 0.128546 0.074250 0.988920 -0.216549 -0.969835 0.111918 0.968862 -0.227586 -0.097527 0.120056 0.087314 0.988920 -0.114698 -0.987076 0.111918 0.987253 -0.125777 -0.097527 0.110343 0.099305 0.988920 -0.010614 -0.993661 0.111918 0.994998 -0.021613 -0.097527 0.099328 0.110323 0.988920 0.093588 -0.989301 0.111918 0.991783 0.082789 -0.097527 0.087218 0.120126 0.988920 0.195784 -0.974240 0.111918 0.977830 0.185302 -0.097527 0.074276 0.128531 0.988920 0.296813 -0.948355 0.111918 0.953024 0.286765 -0.097527 0.060396 0.135608 0.988920 0.394572 -0.912024 0.111918 0.917720 0.385069 -0.097527 0.045851 0.141191 0.988920 0.487986 -0.865647 0.111918 0.872308 0.479132 -0.097527 0.030801 0.145219 0.988920 0.575214 -0.810310 0.111918 0.817855 0.567100 -0.097527 0.015559 0.147632 0.988920 0.656973 -0.745561 0.111918 0.753914 0.649694 -0.097527 0.000000 0.148449 0.988920 0.731495 -0.672599 0.111918 0.681670 0.725131 -0.097527 -0.015559 0.147632 0.988920 0.797367 -0.593027 0.111918 0.602709 0.791979 -0.097527 -0.030801 0.145219 0.988920 0.855129 -0.506191 0.111918 0.516384 0.850785 -0.097527 -0.045851 0.141191 0.988920 0.903472 -0.413780 0.111918 0.424372 0.900221 -0.097527 -0.060396 0.135608 0.988920 0.941863 -0.316810 0.111918 0.327685 0.939740 -0.097527 -0.074276 0.128531 0.988920 0.969663 -0.217321 0.111918 0.228358 0.968680 -0.097527 -0.087218 0.120126 0.988920 0.987099 -0.114497 0.111918 0.125576 0.987279 -0.097527 -0.099328 0.110323 0.988920 0.993663 -0.010411 0.111918 0.021410 0.995003 -0.097527 -0.110343 0.099305 0.988920 0.989375 0.092800 0.111918 -0.081999 0.991849 -0.097527 -0.120056 0.087314 0.988920 0.974200 0.195982 0.111918 -0.185501 0.977792 -0.097527 -0.128546 0.074250 0.988920 0.948294 0.297006 0.111918 -0.286959 0.952965 -0.097527 -0.135620 0.060369 0.988920 0.911943 0.394758 0.111918 -0.385256 0.917642 -0.097527 -0.141200 0.045822 0.988920 0.866035 0.487296 0.111918 -0.478437 0.872689 -0.097527 -0.145194 0.030916 0.988920 0.810193 0.575379 0.111918 -0.567266 0.817739 -0.097527 -0.147635 0.015528 0.988920 0.400280 -0.864443 0.304161 0.688132 0.502731 0.523198 -0.605186 -0.000123 0.796084 0.488676 -0.817730 0.304161 0.631652 0.572083 0.523198 -0.601840 -0.063550 0.796084 0.570926 -0.762581 0.304161 0.568850 0.634565 0.523198 -0.591991 -0.125686 0.796084 0.647705 -0.698544 0.304161 0.499210 0.690690 0.523198 -0.575558 -0.187038 0.796084 0.717351 -0.626813 0.304161 0.424071 0.739207 0.523198 -0.552785 -0.246331 0.796084 0.778546 -0.548956 0.304161 0.345041 0.779237 0.523198 -0.524226 -0.302386 0.796084 0.831792 -0.464335 0.304161 0.261471 0.811108 0.523198 -0.489647 -0.355663 0.796084 0.875877 -0.374600 0.304161 0.175021 0.834045 0.523198 -0.449674 -0.405023 0.796084 0.910314 -0.280739 0.304161 0.086643 0.847795 0.523198 -0.404748 -0.449922 0.796084 0.934540 -0.184720 0.304161 -0.001837 0.852209 0.523198 -0.355854 -0.489509 0.796084 0.948753 -0.085756 0.304161 -0.091144 0.847323 0.523198 -0.302590 -0.524109 0.796084 0.952516 0.014152 0.304161 -0.179448 0.833104 0.523198 -0.245993 -0.552936 0.796084 0.945900 0.112959 0.304161 -0.264965 0.809973 0.523198 -0.187262 -0.575485 0.796084 0.928851 0.211474 0.304161 -0.348397 0.777742 0.523198 -0.125916 -0.591942 0.796084 0.901572 0.307659 0.304161 -0.427991 0.736944 0.523198 -0.063183 -0.601879 0.796084 0.864688 0.399752 0.304161 -0.502310 0.688439 0.523198 -0.000246 -0.605186 0.796084 0.818028 0.488176 0.304161 -0.571697 0.632001 0.523198 0.063183 -0.601879 0.796084 0.762359 0.571223 0.304161 -0.634787 0.568603 0.523198 0.125916 -0.591942 0.796084 0.698292 0.647977 0.304161 -0.690884 0.498941 0.523198 0.187262 -0.575485 0.796084 0.627251 0.716968 0.304161 -0.738948 0.424523 0.523198 0.245993 -0.552936 0.796084 0.548653 0.778759 0.304161 -0.779371 0.344738 0.523198 0.302590 -0.524109 0.796084 0.464012 0.831973 0.304161 -0.811210 0.261155 0.523198 0.355854 -0.489509 0.796084 0.375135 0.875648 0.304161 -0.833938 0.175530 0.523198 0.404748 -0.449922 0.796084 0.281295 0.910142 0.304161 -0.847742 0.087161 0.523198 0.449674 -0.405023 0.796084 0.184356 0.934612 0.304161 -0.852208 -0.002168 0.523198 0.489647 -0.355663 0.796084 0.085387 0.948786 0.304161 -0.847287 -0.091474 0.523198 0.524226 -0.302386 0.796084 -0.013570 0.952524 0.304161 -0.833213 -0.178939 0.523198 0.552785 -0.246331 0.796084 -0.113327 0.945856 0.304161 -0.809870 -0.265280 0.523198 0.575558 -0.187038 0.796084 -0.211835 0.928769 0.304161 -0.777607 -0.348699 0.523198 0.591991 -0.125686 0.796084 -0.307109 0.901760 0.304161 -0.737206 -0.427541 0.523198 0.601840 -0.063550 0.796084 -0.399928 0.864606 0.304161 -0.688336 -0.502450 0.523198 0.605186 -0.000123 0.796084 -0.488342 0.817929 0.304161 -0.631885 -0.571826 0.523198 0.601866 0.063305 0.796084 -0.571378 0.762242 0.304161 -0.568473 -0.634903 0.523198 0.591917 0.126037 0.796084 -0.647421 0.698808 0.304161 -0.499491 -0.690487 0.523198 0.575634 0.186804 0.796084 -0.717095 0.627105 0.304161 -0.424372 -0.739034 0.523198 0.552886 0.246106 0.796084 -0.778871 0.548494 0.304161 -0.344579 -0.779441 0.523198 0.524047 0.302697 0.796084 -0.832068 0.463842 0.304161 -0.260990 -0.811263 0.523198 0.489436 0.355954 0.796084 -0.875724 0.374957 0.304161 -0.175361 -0.833974 0.523198 0.449839 0.404840 0.796084 -0.910200 0.281110 0.304161 -0.086988 -0.847760 0.523198 0.404932 0.449757 0.796084 -0.934649 0.184166 0.304161 0.002342 -0.852208 0.523198 0.355564 0.489719 0.796084 -0.948718 0.086143 0.304161 0.090799 -0.847360 0.523198 0.302803 0.523985 0.796084 -0.952521 -0.013764 0.304161 0.179108 -0.833177 0.523198 0.246218 0.552835 0.796084 -0.945833 -0.113520 0.304161 0.265445 -0.809816 0.523198 0.186921 0.575596 0.796084 -0.928726 -0.212024 0.304161 0.348858 -0.777536 0.523198 0.125565 0.592017 0.796084 -0.901697 -0.307292 0.304161 0.427691 -0.737119 0.523198 0.063428 0.601853 0.796084 -0.864525 -0.400104 0.304161 0.502591 -0.688234 0.523198 0.000000 0.605186 0.796084 -0.817829 -0.488509 0.304161 0.571954 -0.631769 0.523198 -0.063428 0.601853 0.796084 -0.762697 -0.570771 0.304161 0.634450 -0.568979 0.523198 -0.125565 0.592017 0.796084 -0.698676 -0.647563 0.304161 0.690588 -0.499350 0.523198 -0.186921 0.575596 0.796084 -0.626959 -0.717223 0.304161 0.739121 -0.424222 0.523198 -0.246218 0.552835 0.796084 -0.548336 -0.778983 0.304161 0.779511 -0.344420 0.523198 -0.302803 0.523985 0.796084 -0.464505 -0.831698 0.304161 0.811055 -0.261636 0.523198 -0.355564 0.489719 0.796084 -0.374779 -0.875801 0.304161 0.834009 -0.175191 0.523198 -0.404932 0.449757 0.796084 -0.280924 -0.910257 0.304161 0.847777 -0.086816 0.523198 -0.449839 0.404840 0.796084 -0.184910 -0.934502 0.304161 0.852209 0.001663 0.523198 -0.489436 0.355954 0.796084 -0.085949 -0.948735 0.304161 0.847341 0.090972 0.523198 -0.524047 0.302697 0.796084 0.013958 -0.952518 0.304161 0.833140 0.179278 0.523198 -0.552886 0.246106 0.796084 0.113712 -0.945810 0.304161 0.809762 0.265610 0.523198 -0.575634 0.186804 0.796084 0.211285 -0.928894 0.304161 0.777813 0.348238 0.523198 -0.591917 0.126037 0.796084 0.307476 -0.901634 0.304161 0.737032 0.427841 0.523198 -0.601866 0.063305 0.796084 -0.040527 -0.986493 0.158708 -0.245244 0.163801 0.955523 -0.968614 -0.000197 -0.248570 0.063087 -0.985308 0.158708 -0.261061 0.137195 0.955523 -0.963259 -0.101714 -0.248570 0.165034 -0.973435 0.158708 -0.273893 0.109352 0.955523 -0.947495 -0.201163 -0.248570 0.266148 -0.950777 0.158708 -0.283845 0.080044 0.955523 -0.921193 -0.299359 -0.248570 0.364330 -0.917647 0.158708 -0.290671 0.049854 0.955523 -0.884745 -0.394258 -0.248570 0.457625 -0.874866 0.158708 -0.294276 0.019410 0.955523 -0.839036 -0.483976 -0.248570 0.546797 -0.822086 0.158708 -0.294690 -0.011539 0.955523 -0.783691 -0.569247 -0.248570 0.629946 -0.760250 0.158708 -0.291857 -0.042362 0.955523 -0.719713 -0.648248 -0.248570 0.706156 -0.690040 0.158708 -0.285810 -0.072717 0.955523 -0.647808 -0.720109 -0.248570 0.773976 -0.613004 0.158708 -0.276717 -0.101995 0.955523 -0.569552 -0.783469 -0.248570 0.833960 -0.528509 0.158708 -0.264503 -0.130435 0.955523 -0.484302 -0.838847 -0.248570 0.884759 -0.438193 0.158708 -0.249376 -0.157439 0.955523 -0.393717 -0.884986 -0.248570 0.925468 -0.343977 0.158708 -0.231684 -0.182476 0.955523 -0.299717 -0.921077 -0.248570 0.956423 -0.245087 0.158708 -0.211284 -0.205753 0.955523 -0.201531 -0.947416 -0.248570 0.976842 -0.143497 0.158708 -0.188556 -0.226764 0.955523 -0.101125 -0.963321 -0.248570 0.986468 -0.041130 0.158708 -0.163950 -0.245144 0.955523 -0.000395 -0.968614 -0.248570 0.985346 0.062485 0.158708 -0.137355 -0.260977 0.955523 0.101125 -0.963321 -0.248570 0.973371 0.165413 0.158708 -0.109246 -0.273935 0.955523 0.201531 -0.947416 -0.248570 0.950673 0.266518 0.158708 -0.079934 -0.283876 0.955523 0.299717 -0.921077 -0.248570 0.917869 0.363770 0.158708 -0.050032 -0.290641 0.955523 0.393717 -0.884986 -0.248570 0.874688 0.457965 0.158708 -0.019295 -0.294284 0.955523 0.484302 -0.838847 -0.248570 0.821873 0.547117 0.158708 0.011654 -0.294685 0.955523 0.569552 -0.783469 -0.248570 0.760634 0.629482 0.158708 0.042183 -0.291883 0.955523 0.647808 -0.720109 -0.248570 0.690471 0.705735 0.158708 0.072542 -0.285855 0.955523 0.719713 -0.648248 -0.248570 0.612702 0.774214 0.158708 0.102103 -0.276677 0.955523 0.783691 -0.569247 -0.248570 0.528185 0.834166 0.158708 0.130538 -0.264452 0.955523 0.839036 -0.483976 -0.248570 0.438734 0.884491 0.158708 0.157286 -0.249472 0.955523 0.884745 -0.394258 -0.248570 0.343617 0.925602 0.158708 0.182566 -0.231613 0.955523 0.921193 -0.299359 -0.248570 0.244715 0.956518 0.158708 0.205836 -0.211204 0.955523 0.947495 -0.201163 -0.248570 0.144094 0.976754 0.158708 0.226649 -0.188694 0.955523 0.963259 -0.101714 -0.248570 0.040929 0.986477 0.158708 0.245177 -0.163900 0.955523 0.968614 -0.000197 -0.248570 -0.062686 0.985334 0.158708 0.261005 -0.137301 0.955523 0.963300 0.101322 -0.248570 -0.165611 0.973337 0.158708 0.273958 -0.109190 0.955523 0.947375 0.201724 -0.248570 -0.265761 0.950885 0.158708 0.283813 -0.080160 0.955523 0.921315 0.298984 -0.248570 -0.363957 0.917795 0.158708 0.290651 -0.049973 0.955523 0.884905 0.393898 -0.248570 -0.458144 0.874595 0.158708 0.294288 -0.019235 0.955523 0.838749 0.484473 -0.248570 -0.547284 0.821761 0.158708 0.294683 0.011714 0.955523 0.783353 0.569711 -0.248570 -0.629636 0.760506 0.158708 0.291875 0.042243 0.955523 0.719977 0.647955 -0.248570 -0.705875 0.690327 0.158708 0.285840 0.072601 0.955523 0.648102 0.719845 -0.248570 -0.774339 0.612545 0.158708 0.276657 0.102159 0.955523 0.569087 0.783806 -0.248570 -0.833745 0.528849 0.158708 0.264556 0.130327 0.955523 0.484643 0.838650 -0.248570 -0.884580 0.438554 0.158708 0.249440 0.157337 0.955523 0.394078 0.884825 -0.248570 -0.925672 0.343428 0.158708 0.231576 0.182614 0.955523 0.299171 0.921254 -0.248570 -0.956568 0.244520 0.158708 0.211162 0.205879 0.955523 0.200970 0.947536 -0.248570 -0.976784 0.143895 0.158708 0.188648 0.226687 0.955523 0.101518 0.963279 -0.248570 -0.986485 0.040728 0.158708 0.163851 0.245211 0.955523 0.000000 0.968614 -0.248570 -0.985321 -0.062887 0.158708 0.137248 0.261033 0.955523 -0.101518 0.963279 -0.248570 -0.973469 -0.164836 0.158708 0.109408 0.273871 0.955523 -0.200970 0.947536 -0.248570 -0.950831 -0.265954 0.158708 0.080102 0.283829 0.955523 -0.299171 0.921254 -0.248570 -0.917721 -0.364144 0.158708 0.049914 0.290661 0.955523 -0.394078 0.884825 -0.248570 -0.874502 -0.458322 0.158708 0.019175 0.294292 0.955523 -0.484643 0.838650 -0.248570 -0.822197 -0.546630 0.158708 -0.011480 0.294692 0.955523 -0.569087 0.783806 -0.248570 -0.760378 -0.629791 0.158708 -0.042302 0.291866 0.955523 -0.648102 0.719845 -0.248570 -0.690184 -0.706016 0.158708 -0.072659 0.285825 0.955523 -0.719977 0.647955 -0.248570 -0.613161 -0.773851 0.158708 -0.101938 0.276738 0.955523 -0.783353 0.569711 -0.248570 -0.528679 -0.833853 0.158708 -0.130381 0.264530 0.955523 -0.838749 0.484473 -0.248570 -0.438374 -0.884670 0.158708 -0.157388 0.249408 0.955523 -0.884905 0.393898 -0.248570 -0.343240 -0.925742 0.158708 -0.182661 0.231539 0.955523 -0.921315 0.298984 -0.248570 -0.245281 -0.956373 0.158708 -0.205710 0.211326 0.955523 -0.947375 0.201724 -0.248570 -0.143696 -0.976813 0.158708 -0.226726 0.188602 0.955523 -0.963300 0.101322 -0.248570 -0.619761 -0.778583 0.098512 -0.768938 0.627541 0.122172 -0.156941 -0.000032 -0.987608 -0.534747 -0.839251 0.098512 -0.830474 0.543495 0.122172 -0.156073 -0.016480 -0.987608 -0.444733 -0.890229 0.098512 -0.882408 0.454345 0.122172 -0.153519 -0.032594 -0.987608 -0.348981 -0.931938 0.098512 -0.925167 0.359360 0.122172 -0.149258 -0.048504 -0.987608 -0.249385 -0.963381 0.098512 -0.957735 0.260416 0.122172 -0.143352 -0.063880 -0.987608 -0.148026 -0.984065 0.098512 -0.979595 0.159584 0.122172 -0.135946 -0.078417 -0.987608 -0.044074 -0.994159 0.098512 -0.990926 0.056037 0.122172 -0.126979 -0.092233 -0.987608 0.060364 -0.993303 0.098512 -0.991341 -0.048128 0.122172 -0.116613 -0.105033 -0.987608 0.164136 -0.981506 0.098512 -0.980837 -0.151762 0.122172 -0.104962 -0.116677 -0.987608 0.265142 -0.959164 0.098512 -0.959783 -0.252766 0.122172 -0.092283 -0.126943 -0.987608 0.364209 -0.926092 0.098512 -0.928005 -0.351966 0.122172 -0.078470 -0.135916 -0.987608 0.459265 -0.882820 0.098512 -0.886006 -0.447289 0.122172 -0.063793 -0.143391 -0.987608 0.548431 -0.830373 0.098512 -0.834785 -0.536851 0.122172 -0.048562 -0.149239 -0.987608 0.632439 -0.768320 0.098512 -0.773921 -0.621386 0.122172 -0.032653 -0.153507 -0.987608 0.709482 -0.697804 0.098512 -0.704533 -0.699076 0.122172 -0.016385 -0.156084 -0.987608 0.778204 -0.620237 0.098512 -0.628011 -0.768555 0.122172 -0.000064 -0.156941 -0.987608 0.838924 -0.535259 0.098512 -0.544002 -0.830142 0.122172 0.016385 -0.156084 -0.987608 0.890402 -0.444386 0.098512 -0.454001 -0.882585 0.122172 0.032653 -0.153507 -0.987608 0.932073 -0.348618 0.098512 -0.359000 -0.925307 0.122172 0.048562 -0.149239 -0.987608 0.963228 -0.249974 0.098512 -0.261002 -0.957576 0.122172 0.063793 -0.143391 -0.987608 0.984122 -0.147644 0.098512 -0.159203 -0.979657 0.122172 0.078470 -0.135916 -0.987608 0.994176 -0.043687 0.098512 -0.055651 -0.990947 0.122172 0.092283 -0.126943 -0.987608 0.993340 0.059757 0.098512 0.047522 -0.991371 0.122172 0.104962 -0.116677 -0.987608 0.981606 0.163537 0.098512 0.151163 -0.980930 0.122172 0.116613 -0.105033 -0.987608 0.959060 0.265516 0.098512 0.253139 -0.959685 0.122172 0.126979 -0.092233 -0.987608 0.925951 0.364569 0.098512 0.352327 -0.927868 0.122172 0.135946 -0.078417 -0.987608 0.883101 0.458725 0.098512 0.446748 -0.886279 0.122172 0.143352 -0.063880 -0.987608 0.830159 0.548754 0.098512 0.537176 -0.834576 0.122172 0.149258 -0.048504 -0.987608 0.768074 0.632738 0.098512 0.621687 -0.773679 0.122172 0.153519 -0.032594 -0.987608 0.698238 0.709055 0.098512 0.698645 -0.704960 0.122172 0.156073 -0.016480 -0.987608 0.620078 0.778331 0.098512 0.768682 -0.627855 0.122172 0.156941 -0.000032 -0.987608 0.535088 0.839033 0.098512 0.830253 -0.543833 0.122172 0.156080 0.016417 -0.987608 0.444205 0.890493 0.098512 0.882678 -0.453822 0.122172 0.153500 0.032685 -0.987608 0.349360 0.931795 0.098512 0.925021 -0.359737 0.122172 0.149278 0.048443 -0.987608 0.249777 0.963279 0.098512 0.957629 -0.260807 0.122172 0.143378 0.063822 -0.987608 0.147443 0.984152 0.098512 0.979690 -0.159004 0.122172 0.135900 0.078497 -0.987608 0.043485 0.994185 0.098512 0.990959 -0.055450 0.122172 0.126924 0.092308 -0.987608 -0.059959 0.993328 0.098512 0.991361 0.047724 0.122172 0.116655 0.104986 -0.987608 -0.163737 0.981573 0.098512 0.980899 0.151363 0.122172 0.105010 0.116634 -0.987608 -0.265711 0.959006 0.098512 0.959633 0.253335 0.122172 0.092207 0.126997 -0.987608 -0.363832 0.926241 0.098512 0.928149 0.351588 0.122172 0.078525 0.135884 -0.987608 -0.458905 0.883007 0.098512 0.886188 0.446928 0.122172 0.063851 0.143365 -0.987608 -0.548923 0.830048 0.098512 0.834466 0.537346 0.122172 0.048474 0.149268 -0.987608 -0.632895 0.767945 0.098512 0.773553 0.621844 0.122172 0.032562 0.153526 -0.987608 -0.709198 0.698093 0.098512 0.704818 0.698789 0.122172 0.016449 0.156077 -0.987608 -0.778457 0.619920 0.098512 0.627698 0.768810 0.122172 0.000000 0.156941 -0.987608 -0.839142 0.534918 0.098512 0.543664 0.830363 0.122172 -0.016449 0.156077 -0.987608 -0.890139 0.444914 0.098512 0.454525 0.882316 0.122172 -0.032562 0.153526 -0.987608 -0.931867 0.349171 0.098512 0.359548 0.925094 0.122172 -0.048474 0.149268 -0.987608 -0.963330 0.249581 0.098512 0.260612 0.957682 0.122172 -0.063851 0.143365 -0.987608 -0.984182 0.147243 0.098512 0.158804 0.979722 0.122172 -0.078525 0.135884 -0.987608 -0.994150 0.044277 0.098512 0.056239 0.990914 0.122172 -0.092207 0.126997 -0.987608 -0.993316 -0.060161 0.098512 -0.047926 0.991351 0.122172 -0.105010 0.116634 -0.987608 -0.981540 -0.163937 0.098512 -0.151563 0.980868 0.122172 -0.116655 0.104986 -0.987608 -0.959218 -0.264947 0.098512 -0.252570 0.959835 0.122172 -0.126924 0.092308 -0.987608 -0.926166 -0.364021 0.098512 -0.351777 0.928077 0.122172 -0.135900 0.078497 -0.987608 -0.882914 -0.459085 0.098512 -0.447109 0.886097 0.122172 -0.143378 0.063822 -0.987608 -0.829936 -0.549092 0.098512 -0.537515 0.834357 0.122172 -0.149278 0.048443 -0.987608 -0.768449 -0.632283 0.098512 -0.621228 0.774048 0.122172 -0.153500 0.032685 -0.987608 -0.697949 -0.709340 0.098512 -0.698932 0.704676 0.122172 -0.156080 0.016417 -0.987608 -0.242098 0.852475 0.463330 0.394482 0.522768 -0.755710 -0.886438 -0.000181 -0.462847 -0.330110 0.822407 0.463330 0.337519 0.561233 -0.755710 -0.881537 -0.093085 -0.462847 -0.413702 0.783694 0.463330 0.277432 0.593239 -0.755710 -0.867111 -0.184096 -0.462847 -0.493561 0.736018 0.463330 0.213729 0.619049 -0.755710 -0.843041 -0.273962 -0.462847 -0.567982 0.680236 0.463330 0.147671 0.638040 -0.755710 -0.809685 -0.360810 -0.462847 -0.635531 0.617597 0.463330 0.080636 0.649923 -0.755710 -0.767853 -0.442916 -0.462847 -0.696759 0.547588 0.463330 0.012076 0.654795 -0.755710 -0.717204 -0.520953 -0.462847 -0.750313 0.471546 0.463330 -0.056618 0.652454 -0.755710 -0.658654 -0.593252 -0.462847 -0.795602 0.390311 0.463330 -0.124688 0.642927 -0.755710 -0.592849 -0.659016 -0.462847 -0.831822 0.305609 0.463330 -0.190758 0.626509 -0.755710 -0.521232 -0.717001 -0.462847 -0.859271 0.216745 0.463330 -0.255370 0.603065 -0.755710 -0.443214 -0.767681 -0.462847 -0.877255 0.125493 0.463330 -0.317169 0.572979 -0.755710 -0.360315 -0.809905 -0.462847 -0.885543 0.033745 0.463330 -0.374938 0.536957 -0.755710 -0.274290 -0.842934 -0.462847 -0.884203 -0.059252 0.463330 -0.429150 0.494704 -0.755710 -0.184434 -0.867039 -0.462847 -0.873123 -0.151597 0.463330 -0.478635 0.447001 -0.755710 -0.092546 -0.881594 -0.462847 -0.852623 -0.241577 0.463330 -0.522527 0.394801 -0.755710 -0.000361 -0.886438 -0.462847 -0.822608 -0.329607 0.463330 -0.561027 0.337862 -0.755710 0.092546 -0.881594 -0.462847 -0.783533 -0.414007 0.463330 -0.593347 0.277202 -0.755710 0.184434 -0.867039 -0.462847 -0.735826 -0.493847 0.463330 -0.619132 0.213488 -0.755710 0.274290 -0.842934 -0.462847 -0.680583 -0.567567 0.463330 -0.637950 0.148061 -0.755710 0.360315 -0.809905 -0.462847 -0.617350 -0.635771 0.463330 -0.649954 0.080384 -0.755710 0.443214 -0.767681 -0.462847 -0.547316 -0.696972 0.463330 -0.654799 0.011821 -0.755710 0.521232 -0.717001 -0.462847 -0.472005 -0.750025 0.463330 -0.652488 -0.056219 -0.755710 0.592849 -0.659016 -0.462847 -0.390797 -0.795363 0.463330 -0.643003 -0.124295 -0.755710 0.658654 -0.593252 -0.462847 -0.305285 -0.831941 0.463330 -0.626434 -0.191002 -0.755710 0.717204 -0.520953 -0.462847 -0.216411 -0.859355 0.463330 -0.602966 -0.255605 -0.755710 0.767853 -0.442916 -0.462847 -0.126029 -0.877178 0.463330 -0.573173 -0.316819 -0.755710 0.809685 -0.360810 -0.462847 -0.033401 -0.885556 0.463330 -0.536811 -0.375147 -0.755710 0.843041 -0.273962 -0.462847 0.059596 -0.884180 0.463330 -0.494537 -0.429342 -0.755710 0.867111 -0.184096 -0.462847 0.151063 -0.873215 0.463330 -0.447294 -0.478362 -0.755710 0.881537 -0.093085 -0.462847 0.241750 -0.852574 0.463330 -0.394694 -0.522607 -0.755710 0.886438 -0.000181 -0.462847 0.329775 -0.822541 0.463330 -0.337748 -0.561095 -0.755710 0.881575 0.092726 -0.462847 0.414167 -0.783448 0.463330 -0.277081 -0.593404 -0.755710 0.867002 0.184610 -0.462847 0.493261 -0.736219 0.463330 -0.213981 -0.618962 -0.755710 0.843152 0.273619 -0.462847 0.567705 -0.680467 0.463330 -0.147931 -0.637980 -0.755710 0.809832 0.360480 -0.462847 0.635897 -0.617220 0.463330 -0.080251 -0.649970 -0.755710 0.767591 0.443371 -0.462847 0.697083 -0.547174 0.463330 -0.011688 -0.654802 -0.755710 0.716895 0.521378 -0.462847 0.750121 -0.471852 0.463330 0.056352 -0.652477 -0.755710 0.658896 0.592984 -0.462847 0.795443 -0.390635 0.463330 0.124426 -0.642977 -0.755710 0.593118 0.658775 -0.462847 0.832003 -0.305116 0.463330 0.191129 -0.626395 -0.755710 0.520807 0.717310 -0.462847 0.859183 -0.217095 0.463330 0.255124 -0.603169 -0.755710 0.443527 0.767500 -0.462847 0.877204 -0.125851 0.463330 0.316936 -0.573108 -0.755710 0.360645 0.809758 -0.462847 0.885563 -0.033220 0.463330 0.375256 -0.536735 -0.755710 0.273790 0.843097 -0.462847 0.884167 0.059776 0.463330 0.429443 -0.494449 -0.755710 0.183920 0.867149 -0.462847 0.873185 0.151241 0.463330 0.478453 -0.447196 -0.755710 0.092905 0.881556 -0.462847 0.852525 0.241924 0.463330 0.522687 -0.394588 -0.755710 0.000000 0.886438 -0.462847 0.822474 0.329942 0.463330 0.561164 -0.337633 -0.755710 -0.092905 0.881556 -0.462847 0.783778 0.413543 0.463330 0.593183 -0.277553 -0.755710 -0.183920 0.867149 -0.462847 0.736119 0.493411 0.463330 0.619005 -0.213855 -0.755710 -0.273790 0.843097 -0.462847 0.680352 0.567844 0.463330 0.638010 -0.147801 -0.755710 -0.360645 0.809758 -0.462847 0.617091 0.636022 0.463330 0.649987 -0.080119 -0.755710 -0.443527 0.767500 -0.462847 0.547729 0.696648 0.463330 0.654792 -0.012209 -0.755710 -0.520807 0.717310 -0.462847 0.471699 0.750217 0.463330 0.652465 0.056485 -0.755710 -0.593118 0.658775 -0.462847 0.390473 0.795522 0.463330 0.642952 0.124557 -0.755710 -0.658896 0.592984 -0.462847 0.305778 0.831760 0.463330 0.626547 0.190630 -0.755710 -0.716895 0.521378 -0.462847 0.216920 0.859227 0.463330 0.603117 0.255247 -0.755710 -0.767591 0.443371 -0.462847 0.125672 0.877230 0.463330 0.573044 0.317053 -0.755710 -0.809832 0.360480 -0.462847 0.033040 0.885570 0.463330 0.536659 0.375365 -0.755710 -0.843152 0.273619 -0.462847 -0.059072 0.884215 0.463330 0.494791 0.429049 -0.755710 -0.867002 0.184610 -0.462847 -0.151419 0.873154 0.463330 0.447099 0.478544 -0.755710 -0.881575 0.092726 -0.462847 0.002955 0.999663 0.025804 -0.121460 0.025972 -0.992257 -0.992592 -0.000202 0.121495 -0.101833 0.994467 0.025804 -0.123513 0.013099 -0.992257 -0.987104 -0.104232 0.121495 -0.204521 0.978522 0.025804 -0.124205 0.000206 -0.992257 -0.970950 -0.206142 0.121495 -0.305951 0.951698 0.025804 -0.123543 -0.012812 -0.992257 -0.943997 -0.306770 0.121495 -0.404011 0.914390 0.025804 -0.121520 -0.025690 -0.992257 -0.906647 -0.404018 0.121495 -0.496753 0.867508 0.025804 -0.118196 -0.038166 -0.992257 -0.859806 -0.495956 0.121495 -0.584938 0.810667 0.025804 -0.113545 -0.050344 -0.992257 -0.803091 -0.583339 0.121495 -0.666680 0.744897 0.025804 -0.107643 -0.061967 -0.992257 -0.737530 -0.664296 0.121495 -0.741079 0.670922 0.025804 -0.100556 -0.072908 -0.992257 -0.663845 -0.737935 0.121495 -0.806725 0.590363 0.025804 -0.092444 -0.082953 -0.992257 -0.583651 -0.802864 0.121495 -0.864157 0.502561 0.025804 -0.083241 -0.092185 -0.992257 -0.496291 -0.859613 0.121495 -0.912069 0.409223 0.025804 -0.073121 -0.100401 -0.992257 -0.403464 -0.906893 0.121495 -0.949624 0.312328 0.025804 -0.062303 -0.107449 -0.992257 -0.307137 -0.943878 0.121495 -0.977128 0.211081 0.025804 -0.050698 -0.113387 -0.992257 -0.206520 -0.970870 0.121495 -0.993869 0.107508 0.025804 -0.038535 -0.118076 -0.992257 -0.103629 -0.987168 0.121495 -0.999661 0.003566 0.025804 -0.026047 -0.121444 -0.992257 -0.000404 -0.992592 0.121495 -0.994529 -0.101226 0.025804 -0.013175 -0.123505 -0.992257 0.103629 -0.987168 0.121495 -0.978442 -0.204902 0.025804 -0.000158 -0.124205 -0.992257 0.206520 -0.970870 0.121495 -0.951578 -0.306321 0.025804 0.012860 -0.123538 -0.992257 0.307137 -0.943878 0.121495 -0.914637 -0.403452 0.025804 0.025616 -0.121535 -0.992257 0.403464 -0.906893 0.121495 -0.867315 -0.497090 0.025804 0.038212 -0.118181 -0.992257 0.496291 -0.859613 0.121495 -0.810440 -0.585253 0.025804 0.050388 -0.113526 -0.992257 0.583651 -0.802864 0.121495 -0.745304 -0.666225 0.025804 0.061901 -0.107681 -0.992257 0.663845 -0.737935 0.121495 -0.671374 -0.740669 0.025804 0.072846 -0.100600 -0.992257 0.737530 -0.664296 0.121495 -0.590049 -0.806955 0.025804 0.082989 -0.092412 -0.992257 0.803091 -0.583339 0.121495 -0.502225 -0.864352 0.025804 0.092217 -0.083205 -0.992257 0.859806 -0.495956 0.121495 -0.409781 -0.911819 0.025804 0.100356 -0.073182 -0.992257 0.906647 -0.404018 0.121495 -0.311959 -0.949745 0.025804 0.107474 -0.062261 -0.992257 0.943997 -0.306770 0.121495 -0.210700 -0.977210 0.025804 0.113407 -0.050654 -0.992257 0.970950 -0.206142 0.121495 -0.108115 -0.993803 0.025804 0.118053 -0.038607 -0.992257 0.987104 -0.104232 0.121495 -0.003362 -0.999661 0.025804 0.121449 -0.026022 -0.992257 0.992592 -0.000202 0.121495 0.101428 -0.994508 0.025804 0.123507 -0.013150 -0.992257 0.987146 0.103830 0.121495 0.205101 -0.978401 0.025804 0.124205 -0.000133 -0.992257 0.970828 0.206718 0.121495 0.305563 -0.951822 0.025804 0.123548 0.012762 -0.992257 0.944122 0.306385 0.121495 0.403638 -0.914555 0.025804 0.121530 0.025640 -0.992257 0.906811 0.403649 0.121495 0.497267 -0.867214 0.025804 0.118174 0.038236 -0.992257 0.859512 0.496466 0.121495 0.585419 -0.810320 0.025804 0.113515 0.050411 -0.992257 0.802745 0.583815 0.121495 0.666377 -0.745168 0.025804 0.107669 0.061923 -0.992257 0.737800 0.663995 0.121495 0.740806 -0.671223 0.025804 0.100586 0.072867 -0.992257 0.664145 0.737665 0.121495 0.807075 -0.589885 0.025804 0.092395 0.083007 -0.992257 0.583175 0.803210 0.121495 0.863952 -0.502913 0.025804 0.083278 0.092151 -0.992257 0.496641 0.859411 0.121495 0.911902 -0.409595 0.025804 0.073162 0.100371 -0.992257 0.403833 0.906729 0.121495 0.949809 -0.311765 0.025804 0.062239 0.107486 -0.992257 0.306577 0.944060 0.121495 0.977253 -0.210501 0.025804 0.050631 0.113417 -0.992257 0.205945 0.970992 0.121495 0.993825 -0.107913 0.025804 0.038583 0.118061 -0.992257 0.104031 0.987125 0.121495 0.999662 -0.003159 0.025804 0.025997 0.121454 -0.992257 0.000000 0.992592 0.121495 0.994487 0.101631 0.025804 0.013125 0.123510 -0.992257 -0.104031 0.987125 0.121495 0.978564 0.204322 0.025804 0.000232 0.124205 -0.992257 -0.205945 0.970992 0.121495 0.951760 0.305757 0.025804 -0.012787 0.123546 -0.992257 -0.306577 0.944060 0.121495 0.914473 0.403824 0.025804 -0.025665 0.121525 -0.992257 -0.403833 0.906729 0.121495 0.867112 0.497444 0.025804 -0.038260 0.118166 -0.992257 -0.496641 0.859411 0.121495 0.810786 0.584773 0.025804 -0.050321 0.113555 -0.992257 -0.583175 0.803210 0.121495 0.745033 0.666529 0.025804 -0.061945 0.107656 -0.992257 -0.664145 0.737665 0.121495 0.671072 0.740943 0.025804 -0.072887 0.100571 -0.992257 -0.737800 0.663995 0.121495 0.590527 0.806605 0.025804 -0.082934 0.092461 -0.992257 -0.802745 0.583815 0.121495 0.502737 0.864054 0.025804 -0.092168 0.083260 -0.992257 -0.859512 0.496466 0.121495 0.409409 0.911986 0.025804 -0.100386 0.073141 -0.992257 -0.906811 0.403649 0.121495 0.311572 0.949872 0.025804 -0.107499 0.062217 -0.992257 -0.944122 0.306385 0.121495 0.211280 0.977085 0.025804 -0.113377 0.050721 -0.992257 -0.970828 0.206718 0.121495 0.107710 0.993847 0.025804 -0.118069 0.038559 -0.992257 -0.987146 0.103830 0.121495 0.147644 0.371690 0.916541 -0.059327 0.928357 -0.366925 -0.987260 -0.000201 0.159117 0.107875 0.385117 0.916541 -0.156298 0.917026 -0.366925 -0.981801 -0.103672 0.159117 0.067312 0.394235 0.916541 -0.250653 0.895846 -0.366925 -0.965734 -0.205035 0.159117 0.025623 0.399118 0.916541 -0.343163 0.864642 -0.366925 -0.938926 -0.305122 0.159117 -0.016349 0.399606 0.916541 -0.431894 0.823914 -0.366925 -0.901776 -0.401847 0.159117 -0.057745 0.395749 0.916541 -0.515093 0.774626 -0.366925 -0.855187 -0.493292 0.159117 -0.098904 0.387518 0.916541 -0.593442 0.716374 -0.366925 -0.798777 -0.580205 0.159117 -0.138974 0.375018 0.916541 -0.665255 0.650232 -0.366925 -0.733568 -0.660727 0.159117 -0.177513 0.358387 0.916541 -0.729740 0.576927 -0.366925 -0.660279 -0.733971 0.159117 -0.213759 0.338022 0.916541 -0.785690 0.498054 -0.366925 -0.580516 -0.798551 0.159117 -0.248009 0.313757 0.916541 -0.833562 0.412965 -0.366925 -0.493625 -0.854995 0.159117 -0.279527 0.286036 0.916541 -0.872253 0.323327 -0.366925 -0.401296 -0.902022 0.159117 -0.307711 0.255472 0.916541 -0.901106 0.231029 -0.366925 -0.305487 -0.938807 0.159117 -0.332792 0.221815 0.916541 -0.920357 0.135315 -0.366925 -0.205411 -0.965654 0.159117 -0.354207 0.185714 0.916541 -0.929470 0.038109 -0.366925 -0.103072 -0.981865 0.159117 -0.371600 0.147871 0.916541 -0.928393 -0.058759 -0.366925 -0.000402 -0.987260 0.159117 -0.385051 0.108110 0.916541 -0.917122 -0.155738 -0.366925 0.103072 -0.981865 0.159117 -0.394261 0.067159 0.916541 -0.895748 -0.251001 -0.366925 0.205411 -0.965654 0.159117 -0.399128 0.025467 0.916541 -0.864508 -0.343500 -0.366925 0.305487 -0.938807 0.159117 -0.399616 -0.016105 0.916541 -0.824178 -0.431390 -0.366925 0.401296 -0.902022 0.159117 -0.395727 -0.057899 0.916541 -0.774426 -0.515394 -0.366925 0.493625 -0.854995 0.159117 -0.387479 -0.099055 0.916541 -0.716143 -0.593721 -0.366925 0.580516 -0.798551 0.159117 -0.375102 -0.138745 0.916541 -0.650638 -0.664858 -0.366925 0.660279 -0.733971 0.159117 -0.358495 -0.177294 0.916541 -0.577373 -0.729388 -0.366925 0.733568 -0.660727 0.159117 -0.337939 -0.213891 0.916541 -0.497748 -0.785884 -0.366925 0.798777 -0.580205 0.159117 -0.313661 -0.248131 0.916541 -0.412641 -0.833723 -0.366925 0.855187 -0.493292 0.159117 -0.286207 -0.279352 0.916541 -0.323860 -0.872056 -0.366925 0.901776 -0.401847 0.159117 -0.255352 -0.307810 0.916541 -0.230679 -0.901196 -0.366925 0.938926 -0.305122 0.159117 -0.221685 -0.332878 0.916541 -0.134957 -0.920409 -0.366925 0.965734 -0.205035 0.159117 -0.185931 -0.354093 0.916541 -0.038677 -0.929446 -0.366925 0.981801 -0.103672 0.159117 -0.147795 -0.371630 0.916541 0.058948 -0.928381 -0.366925 0.987260 -0.000201 0.159117 -0.108032 -0.385073 0.916541 0.155925 -0.917090 -0.366925 0.981843 0.103272 0.159117 -0.067078 -0.394275 0.916541 0.251184 -0.895697 -0.366925 0.965612 0.205607 0.159117 -0.025785 -0.399108 0.916541 0.342811 -0.864781 -0.366925 0.939050 0.304739 0.159117 0.016186 -0.399612 0.916541 0.431558 -0.824090 -0.366925 0.901940 0.401480 0.159117 0.057979 -0.395715 0.916541 0.515552 -0.774321 -0.366925 0.854894 0.493799 0.159117 0.099134 -0.387459 0.916541 0.593867 -0.716022 -0.366925 0.798433 0.580678 0.159117 0.138821 -0.375074 0.916541 0.664990 -0.650503 -0.366925 0.733837 0.660428 0.159117 0.177367 -0.358459 0.916541 0.729505 -0.577224 -0.366925 0.660578 0.733702 0.159117 0.213959 -0.337896 0.916541 0.785985 -0.497588 -0.366925 0.580042 0.798895 0.159117 0.247881 -0.313858 0.916541 0.833394 -0.413304 -0.366925 0.493973 0.854794 0.159117 0.279411 -0.286150 0.916541 0.872122 -0.323682 -0.366925 0.401664 0.901858 0.159117 0.307862 -0.255290 0.916541 0.901243 -0.230495 -0.366925 0.304931 0.938988 0.159117 0.332923 -0.221617 0.916541 0.920437 -0.134769 -0.366925 0.204838 0.965776 0.159117 0.354131 -0.185858 0.916541 0.929454 -0.038488 -0.366925 0.103472 0.981822 0.159117 0.371660 -0.147719 0.916541 0.928369 0.059137 -0.366925 0.000000 0.987260 0.159117 0.385095 -0.107953 0.916541 0.917058 0.156111 -0.366925 -0.103472 0.981822 0.159117 0.394221 -0.067392 0.916541 0.895897 0.250470 -0.366925 -0.204838 0.965776 0.159117 0.399113 -0.025704 0.916541 0.864712 0.342987 -0.366925 -0.304931 0.938988 0.159117 0.399609 0.016268 0.916541 0.824002 0.431726 -0.366925 -0.401664 0.901858 0.159117 0.395703 0.058060 0.916541 0.774216 0.515710 -0.366925 -0.493973 0.854794 0.159117 0.387538 0.098825 0.916541 0.716495 0.593297 -0.366925 -0.580042 0.798895 0.159117 0.375046 0.138898 0.916541 0.650367 0.665123 -0.366925 -0.660578 0.733702 0.159117 0.358423 0.177440 0.916541 0.577076 0.729623 -0.366925 -0.733837 0.660428 0.159117 0.338066 0.213690 0.916541 0.498214 0.785588 -0.366925 -0.798433 0.580678 0.159117 0.313808 0.247945 0.916541 0.413135 0.833478 -0.366925 -0.854894 0.493799 0.159117 0.286093 0.279469 0.916541 0.323505 0.872187 -0.366925 -0.901940 0.401480 0.159117 0.255227 0.307914 0.916541 0.230312 0.901289 -0.366925 -0.939050 0.304739 0.159117 0.221883 0.332746 0.916541 0.135502 0.920329 -0.366925 -0.965612 0.205607 0.159117 0.185786 0.354169 0.916541 0.038299 0.929462 -0.366925 -0.981843 0.103272 0.159117 0.035135 -0.490092 -0.870962 -0.019521 -0.871671 0.489703 -0.999192 -0.000203 -0.040193 0.086306 -0.483711 -0.870962 0.071944 -0.868916 0.489703 -0.993668 -0.104925 -0.040193 0.136055 -0.472137 -0.870962 0.161760 -0.856752 0.489703 -0.977406 -0.207513 -0.040193 0.184789 -0.455278 -0.870962 0.250663 -0.835080 0.489703 -0.950274 -0.308809 -0.040193 0.231488 -0.433403 -0.870962 0.336804 -0.804210 0.489703 -0.912675 -0.406704 -0.040193 0.275230 -0.407030 -0.870962 0.418472 -0.764900 0.489703 -0.865523 -0.499254 -0.040193 0.316374 -0.375942 -0.870962 0.496334 -0.716829 0.489703 -0.808431 -0.587217 -0.040193 0.354033 -0.340713 -0.870962 0.568729 -0.660861 0.489703 -0.742434 -0.668713 -0.040193 0.387792 -0.301732 -0.870962 0.634860 -0.597615 0.489703 -0.668259 -0.742842 -0.040193 0.417020 -0.259844 -0.870962 0.693470 -0.528479 0.489703 -0.587532 -0.808202 -0.040193 0.441957 -0.214706 -0.870962 0.745039 -0.452888 0.489703 -0.499591 -0.865329 -0.040193 0.462026 -0.167203 -0.870962 0.788402 -0.372308 0.489703 -0.406147 -0.912924 -0.040193 0.476887 -0.118336 -0.870962 0.822792 -0.288451 0.489703 -0.309179 -0.950154 -0.040193 0.486663 -0.067703 -0.870962 0.848492 -0.200628 0.489703 -0.207893 -0.977325 -0.040193 0.491079 -0.016324 -0.870962 0.864847 -0.110595 0.489703 -0.104318 -0.993731 -0.040193 0.490113 0.034835 -0.870962 0.871659 -0.020053 0.489703 -0.000407 -0.999192 -0.040193 0.483763 0.086011 -0.870962 0.868960 0.071413 0.489703 0.104318 -0.993731 -0.040193 0.472084 0.136239 -0.870962 0.856689 0.162093 0.489703 0.207893 -0.977325 -0.040193 0.455206 0.184966 -0.870962 0.834983 0.250987 0.489703 0.309179 -0.950154 -0.040193 0.433544 0.231223 -0.870962 0.804416 0.336313 0.489703 0.406147 -0.912924 -0.040193 0.406923 0.275388 -0.870962 0.764737 0.418769 0.489703 0.499591 -0.865329 -0.040193 0.375819 0.316520 -0.870962 0.716635 0.496613 0.489703 0.587532 -0.808202 -0.040193 0.340930 0.353824 -0.870962 0.661209 0.568325 0.489703 0.668259 -0.742842 -0.040193 0.301969 0.387608 -0.870962 0.598002 0.634495 0.489703 0.742434 -0.668713 -0.040193 0.259681 0.417121 -0.870962 0.528209 0.693675 0.489703 0.808431 -0.587217 -0.040193 0.214534 0.442041 -0.870962 0.452598 0.745215 0.489703 0.865523 -0.499254 -0.040193 0.167486 0.461924 -0.870962 0.372790 0.788174 0.489703 0.912675 -0.406704 -0.040193 0.118150 0.476933 -0.870962 0.288131 0.822904 0.489703 0.950274 -0.308809 -0.040193 0.067513 0.486689 -0.870962 0.200298 0.848570 0.489703 0.977406 -0.207513 -0.040193 0.016624 0.491069 -0.870962 0.111123 0.864779 0.489703 0.993668 -0.104925 -0.040193 -0.034935 0.490106 -0.870962 0.019876 0.871663 0.489703 0.999192 -0.000203 -0.040193 -0.086109 0.483746 -0.870962 -0.071590 0.868945 0.489703 0.993710 0.104520 -0.040193 -0.136335 0.472057 -0.870962 -0.162267 0.856656 0.489703 0.977283 0.208092 -0.040193 -0.184604 0.455353 -0.870962 -0.250322 0.835182 0.489703 0.950400 0.308422 -0.040193 -0.231311 0.433497 -0.870962 -0.336477 0.804347 0.489703 0.912841 0.406333 -0.040193 -0.275471 0.406867 -0.870962 -0.418925 0.764652 0.489703 0.865227 0.499767 -0.040193 -0.316596 0.375755 -0.870962 -0.496759 0.716534 0.489703 0.808083 0.587696 -0.040193 -0.353894 0.340858 -0.870962 -0.568460 0.661093 0.489703 0.742706 0.668410 -0.040193 -0.387669 0.301890 -0.870962 -0.634617 0.597873 0.489703 0.668561 0.742570 -0.040193 -0.417174 0.259597 -0.870962 -0.693783 0.528068 0.489703 0.587053 0.808550 -0.040193 -0.441870 0.214886 -0.870962 -0.744854 0.453192 0.489703 0.499943 0.865125 -0.040193 -0.461958 0.167391 -0.870962 -0.788250 0.372630 0.489703 0.406518 0.912758 -0.040193 -0.476957 0.118053 -0.870962 -0.822963 0.287963 0.489703 0.308616 0.950337 -0.040193 -0.486703 0.067414 -0.870962 -0.848611 0.200125 0.489703 0.207314 0.977448 -0.040193 -0.491072 0.016524 -0.870962 -0.864801 0.110947 0.489703 0.104722 0.993689 -0.040193 -0.490099 -0.035035 -0.870962 -0.871667 0.019698 0.489703 0.000000 0.999192 -0.040193 -0.483728 -0.086208 -0.870962 -0.868931 -0.071767 0.489703 -0.104722 0.993689 -0.040193 -0.472165 -0.135959 -0.870962 -0.856785 -0.161585 0.489703 -0.207314 0.977448 -0.040193 -0.455315 -0.184696 -0.870962 -0.835131 -0.250492 0.489703 -0.308616 0.950337 -0.040193 -0.433450 -0.231400 -0.870962 -0.804278 -0.336641 0.489703 -0.406518 0.912758 -0.040193 -0.406811 -0.275554 -0.870962 -0.764567 -0.419081 0.489703 -0.499943 0.865125 -0.040193 -0.376007 -0.316297 -0.870962 -0.716930 -0.496188 0.489703 -0.587053 0.808550 -0.040193 -0.340785 -0.353963 -0.870962 -0.660977 -0.568595 0.489703 -0.668561 0.742570 -0.040193 -0.301811 -0.387731 -0.870962 -0.597744 -0.634738 0.489703 -0.742706 0.668410 -0.040193 -0.259929 -0.416967 -0.870962 -0.528621 -0.693362 0.489703 -0.808083 0.587696 -0.040193 -0.214796 -0.441913 -0.870962 -0.453040 -0.744947 0.489703 -0.865227 0.499767 -0.040193 -0.167297 -0.461992 -0.870962 -0.372469 -0.788326 0.489703 -0.912841 0.406333 -0.040193 -0.117956 -0.476981 -0.870962 -0.287795 -0.823022 0.489703 -0.950400 0.308422 -0.040193 -0.067802 -0.486649 -0.870962 -0.200800 -0.848451 0.489703 -0.977283 0.208092 -0.040193 -0.016424 -0.491075 -0.870962 -0.110771 -0.864824 0.489703 -0.993710 0.104520 -0.040193 -0.355568 -0.749504 0.558404 -0.402786 0.661999 0.632076 -0.843407 -0.000172 -0.537276 -0.275056 -0.782643 0.558404 -0.469950 0.616139 0.632076 -0.838744 -0.088566 -0.537276 -0.192322 -0.806968 0.558404 -0.531374 0.564023 0.632076 -0.825018 -0.175160 -0.537276 -0.106686 -0.822680 0.558404 -0.587561 0.505225 0.632076 -0.802116 -0.260663 -0.537276 -0.019876 -0.829331 0.558404 -0.637276 0.440861 0.632076 -0.770379 -0.343295 -0.537276 0.066327 -0.826913 0.558404 -0.679600 0.372322 0.632076 -0.730578 -0.421415 -0.537276 0.152628 -0.815408 0.558404 -0.714879 0.299045 0.632076 -0.682387 -0.495664 -0.537276 0.237248 -0.794921 0.558404 -0.742284 0.222473 0.632076 -0.626680 -0.564453 -0.537276 0.319254 -0.765677 0.558404 -0.761513 0.143451 0.632076 -0.564070 -0.627025 -0.537276 0.397016 -0.728398 0.558404 -0.772290 0.063621 0.632076 -0.495929 -0.682194 -0.537276 0.471171 -0.682776 0.558404 -0.774705 -0.017671 0.632076 -0.421699 -0.730414 -0.537276 0.540136 -0.629633 0.558404 -0.768586 -0.098768 0.632076 -0.342824 -0.770589 -0.537276 0.602581 -0.570159 0.558404 -0.754180 -0.178023 0.632076 -0.260975 -0.802014 -0.537276 0.659019 -0.503864 0.558404 -0.731369 -0.256086 0.632076 -0.175481 -0.824949 -0.537276 0.708198 -0.432019 0.558404 -0.700501 -0.331328 0.632076 -0.088053 -0.838798 -0.537276 0.749287 -0.356025 0.558404 -0.662245 -0.402382 0.632076 -0.000344 -0.843407 -0.537276 0.782474 -0.275534 0.558404 -0.616426 -0.469574 0.632076 0.088053 -0.838798 -0.537276 0.807043 -0.192008 0.558404 -0.563816 -0.531594 0.632076 0.175481 -0.824949 -0.537276 0.822722 -0.106366 0.558404 -0.504996 -0.587758 0.632076 0.260975 -0.802014 -0.537276 0.829319 -0.020383 0.558404 -0.441251 -0.637007 0.632076 0.342824 -0.770589 -0.537276 0.826888 0.066648 0.558404 -0.372058 -0.679745 0.632076 0.421699 -0.730414 -0.537276 0.815348 0.152945 0.558404 -0.298766 -0.714996 0.632076 0.495929 -0.682194 -0.537276 0.795065 0.236762 0.558404 -0.222927 -0.742148 0.632076 0.564070 -0.627025 -0.537276 0.765872 0.318787 0.558404 -0.143916 -0.761425 0.632076 0.626680 -0.564453 -0.537276 0.728243 0.397300 0.558404 -0.063321 -0.772315 0.632076 0.682387 -0.495664 -0.537276 0.682593 0.471437 0.558404 0.017972 -0.774698 0.632076 0.730578 -0.421415 -0.537276 0.629963 0.539751 0.558404 0.098298 -0.768647 0.632076 0.770379 -0.343295 -0.537276 0.569924 0.602803 0.558404 0.178317 -0.754111 0.632076 0.802116 -0.260663 -0.537276 0.503607 0.659215 0.558404 0.256371 -0.731269 0.632076 0.825018 -0.175160 -0.537276 0.432451 0.707934 0.558404 0.330900 -0.700703 0.632076 0.838744 -0.088566 -0.537276 0.355873 0.749359 0.558404 0.402517 -0.662163 0.632076 0.843407 -0.000172 -0.537276 0.275375 0.782530 0.558404 0.469699 -0.616330 0.632076 0.838780 0.088224 -0.537276 0.191843 0.807082 0.558404 0.531708 -0.563708 0.632076 0.824914 0.175649 -0.537276 0.107021 0.822637 0.558404 0.587355 -0.505464 0.632076 0.802222 0.260336 -0.537276 0.020214 0.829323 0.558404 0.637097 -0.441121 0.632076 0.770519 0.342981 -0.537276 -0.066816 0.826874 0.558404 0.679821 -0.371919 0.632076 0.730328 0.421848 -0.537276 -0.153111 0.815317 0.558404 0.715056 -0.298621 0.632076 0.682093 0.496068 -0.537276 -0.236924 0.795017 0.558404 0.742193 -0.222775 0.632076 0.626910 0.564198 -0.537276 -0.318942 0.765807 0.558404 0.761454 -0.143761 0.632076 0.564325 0.626795 -0.537276 -0.397448 0.728162 0.558404 0.772328 -0.063164 0.632076 0.495525 0.682488 -0.537276 -0.470893 0.682968 0.558404 0.774712 0.017355 0.632076 0.421996 0.730242 -0.537276 -0.539880 0.629853 0.558404 0.768627 0.098455 0.632076 0.343138 0.770449 -0.537276 -0.602919 0.569801 0.558404 0.754075 0.178470 0.632076 0.260499 0.802169 -0.537276 -0.659318 0.503473 0.558404 0.731217 0.256520 0.632076 0.174992 0.825053 -0.537276 -0.708022 0.432307 0.558404 0.700636 0.331043 0.632076 0.088395 0.838762 -0.537276 -0.749432 0.355720 0.558404 0.662081 0.402652 0.632076 0.000000 0.843407 -0.537276 -0.782587 0.275215 0.558404 0.616234 0.469825 0.632076 -0.088395 0.838762 -0.537276 -0.806929 0.192486 0.558404 0.564131 0.531259 0.632076 -0.174992 0.825053 -0.537276 -0.822659 0.106854 0.558404 0.505344 0.587458 0.632076 -0.260499 0.802169 -0.537276 -0.829327 0.020045 0.558404 0.440991 0.637187 0.632076 -0.343138 0.770449 -0.537276 -0.826860 -0.066985 0.558404 0.371781 0.679896 0.632076 -0.421996 0.730242 -0.537276 -0.815439 -0.152462 0.558404 0.299190 0.714818 0.632076 -0.495525 0.682488 -0.537276 -0.794969 -0.237086 0.558404 0.222624 0.742239 0.632076 -0.564325 0.626795 -0.537276 -0.765742 -0.319098 0.558404 0.143606 0.761484 0.632076 -0.626910 0.564198 -0.537276 -0.728478 -0.396868 0.558404 0.063779 0.772277 0.632076 -0.682093 0.496068 -0.537276 -0.682872 -0.471032 0.558404 -0.017513 0.774709 0.632076 -0.730328 0.421848 -0.537276 -0.629743 -0.540008 0.558404 -0.098611 0.768606 0.632076 -0.770519 0.342981 -0.537276 -0.569678 -0.603035 0.558404 -0.178624 0.754038 0.632076 -0.802222 0.260336 -0.537276 -0.503998 -0.658917 0.558404 -0.255937 0.731421 0.632076 -0.824914 0.175649 -0.537276 -0.432163 -0.708110 0.558404 -0.331186 0.700568 0.632076 -0.838780 0.088224 -0.537276 -0.850557 0.339713 -0.401432 -0.307177 -0.940529 -0.145079 -0.426844 -0.000087 0.904325 -0.881477 0.248698 -0.401432 -0.206911 -0.967543 -0.145079 -0.424484 -0.044823 0.904325 -0.902532 0.155846 -0.401432 -0.105349 -0.983796 -0.145079 -0.417537 -0.088647 0.904325 -0.913895 0.060396 -0.401432 -0.001660 -0.989419 -0.145079 -0.405947 -0.131920 0.904325 -0.915192 -0.035720 -0.401432 0.102047 -0.984144 -0.145079 -0.389885 -0.173740 0.904325 -0.906539 -0.130535 -0.401432 0.203662 -0.968232 -0.145079 -0.369742 -0.213276 0.904325 -0.887865 -0.224828 -0.401432 0.304018 -0.941555 -0.145079 -0.345353 -0.250853 0.904325 -0.859412 -0.316644 -0.401432 0.401025 -0.904506 -0.145079 -0.317160 -0.285667 0.904325 -0.821492 -0.404973 -0.401432 0.493615 -0.857494 -0.145079 -0.285473 -0.317334 0.904325 -0.775012 -0.488066 -0.401432 0.579967 -0.801617 -0.145079 -0.250987 -0.345255 0.904325 -0.719591 -0.566605 -0.401432 0.660788 -0.736418 -0.145079 -0.213420 -0.369659 0.904325 -0.656243 -0.638903 -0.401432 0.734331 -0.663107 -0.145079 -0.173501 -0.389991 0.904325 -0.586372 -0.703577 -0.401432 0.799202 -0.583291 -0.145079 -0.132078 -0.405896 0.904325 -0.509402 -0.761158 -0.401432 0.855933 -0.496316 -0.145079 -0.088810 -0.417503 0.904325 -0.426822 -0.810355 -0.401432 0.903237 -0.403875 -0.145079 -0.044563 -0.424511 0.904325 -0.340233 -0.850349 -0.401432 0.940341 -0.307751 -0.145079 -0.000174 -0.426844 0.904325 -0.249237 -0.881325 -0.401432 0.967417 -0.207502 -0.145079 0.044563 -0.424511 0.904325 -0.155495 -0.902593 -0.401432 0.983836 -0.104967 -0.145079 0.088810 -0.417503 0.904325 -0.060040 -0.913919 -0.401432 0.989419 -0.001275 -0.145079 0.132078 -0.405896 0.904325 0.035160 -0.915213 -0.401432 0.984206 0.101446 -0.145079 0.173501 -0.389991 0.904325 0.130888 -0.906488 -0.401432 0.968153 0.204039 -0.145079 0.213420 -0.369659 0.904325 0.225173 -0.887778 -0.401432 0.941436 0.304384 -0.145079 0.250987 -0.345255 0.904325 0.316119 -0.859605 -0.401432 0.904751 0.400473 -0.145079 0.285473 -0.317334 0.904325 0.404471 -0.821739 -0.401432 0.857795 0.493092 -0.145079 0.317160 -0.285667 0.904325 0.488368 -0.774822 -0.401432 0.801392 0.580279 -0.145079 0.345353 -0.250853 0.904325 0.566885 -0.719370 -0.401432 0.736161 0.661075 -0.145079 0.369742 -0.213276 0.904325 0.638502 -0.656634 -0.401432 0.663555 0.733926 -0.145079 0.389885 -0.173740 0.904325 0.703805 -0.586098 -0.401432 0.582980 0.799429 -0.145079 0.405947 -0.131920 0.904325 0.761356 -0.509106 -0.401432 0.495983 0.856127 -0.145079 0.417537 -0.088647 0.904325 0.810094 -0.427317 -0.401432 0.404427 0.902990 -0.145079 0.424484 -0.044823 0.904325 0.850418 -0.340060 -0.401432 0.307560 0.940404 -0.145079 0.426844 -0.000087 0.904325 0.881375 -0.249057 -0.401432 0.207305 0.967459 -0.145079 0.424502 0.044650 0.904325 0.902624 -0.155311 -0.401432 0.104766 0.983858 -0.145079 0.417485 0.088895 0.904325 0.913870 -0.060768 -0.401432 0.002063 0.989418 -0.145079 0.406001 0.131755 0.904325 0.915206 0.035347 -0.401432 -0.101646 0.984185 -0.145079 0.389956 0.173581 0.904325 0.906461 0.131072 -0.401432 -0.204236 0.968112 -0.145079 0.369616 0.213495 0.904325 0.887732 0.225354 -0.401432 -0.304576 0.941374 -0.145079 0.345204 0.251058 0.904325 0.859541 0.316294 -0.401432 -0.400657 0.904669 -0.145079 0.317276 0.285538 0.904325 0.821657 0.404638 -0.401432 -0.493266 0.857695 -0.145079 0.285602 0.317218 0.904325 0.774723 0.488525 -0.401432 -0.580442 0.801273 -0.145079 0.250783 0.345404 0.904325 0.719822 0.566312 -0.401432 -0.660488 0.736687 -0.145079 0.213570 0.369572 0.904325 0.656504 0.638635 -0.401432 -0.734061 0.663406 -0.145079 0.173660 0.389920 0.904325 0.585954 0.703924 -0.401432 -0.799548 0.582817 -0.145079 0.131837 0.405974 0.904325 0.508951 0.761460 -0.401432 -0.856228 0.495809 -0.145079 0.088562 0.417555 0.904325 0.427152 0.810181 -0.401432 -0.903072 0.404243 -0.145079 0.044736 0.424493 0.904325 0.339887 0.850488 -0.401432 -0.940466 0.307368 -0.145079 0.000000 0.426844 0.904325 0.248878 0.881426 -0.401432 -0.967501 0.207108 -0.145079 -0.044736 0.424493 0.904325 0.156030 0.902500 -0.401432 -0.983774 0.105550 -0.145079 -0.088562 0.417555 0.904325 0.060582 0.913883 -0.401432 -0.989418 0.001862 -0.145079 -0.131837 0.405974 0.904325 -0.035533 0.915199 -0.401432 -0.984164 -0.101847 -0.145079 -0.173660 0.389920 0.904325 -0.131257 0.906435 -0.401432 -0.968070 -0.204433 -0.145079 -0.213570 0.369572 0.904325 -0.224647 0.887911 -0.401432 -0.941617 -0.303826 -0.145079 -0.250783 0.345404 0.904325 -0.316469 0.859476 -0.401432 -0.904588 -0.400841 -0.145079 -0.285602 0.317218 0.904325 -0.404806 0.821574 -0.401432 -0.857594 -0.493441 -0.145079 -0.317276 0.285538 0.904325 -0.487908 0.775111 -0.401432 -0.801735 -0.579804 -0.145079 -0.345204 0.251058 0.904325 -0.566458 0.719706 -0.401432 -0.736552 -0.660638 -0.145079 -0.369616 0.213495 0.904325 -0.638769 0.656374 -0.401432 -0.663256 -0.734196 -0.145079 -0.389956 0.173581 0.904325 -0.704044 0.585811 -0.401432 -0.582654 -0.799666 -0.145079 -0.406001 0.131755 0.904325 -0.761054 0.509557 -0.401432 -0.496491 -0.855832 -0.145079 -0.417485 0.088895 0.904325 -0.810268 0.426987 -0.401432 -0.404059 -0.903155 -0.145079 -0.424502 0.044650 0.904325 0.345498 -0.179160 0.921159 0.062736 0.983820 0.167817 -0.936320 -0.000191 0.351147 0.362372 -0.141962 0.921159 -0.040721 0.984977 0.167817 -0.931143 -0.098323 0.351147 0.375152 -0.103576 0.921159 -0.142754 0.975428 0.167817 -0.915905 -0.194456 0.351147 0.383941 -0.063687 0.921159 -0.244200 0.955094 0.167817 -0.890481 -0.289378 0.351147 0.388502 -0.023097 0.921159 -0.342955 0.924240 0.167817 -0.855247 -0.381113 0.351147 0.388800 0.017359 0.921159 -0.437050 0.883643 0.167817 -0.811062 -0.467840 0.351147 0.384840 0.058013 0.921159 -0.527255 0.832970 0.167817 -0.757562 -0.550268 0.351147 0.376640 0.098027 0.921159 -0.611653 0.773123 0.167817 -0.695718 -0.626635 0.351147 0.364292 0.136962 0.921159 -0.689313 0.704759 0.167817 -0.626210 -0.696101 0.351147 0.348105 0.174040 0.921159 -0.758751 0.629392 0.167817 -0.550563 -0.757348 0.351147 0.327947 0.209565 0.921159 -0.820537 0.546403 0.167817 -0.468155 -0.810880 0.351147 0.304177 0.242782 0.921159 -0.873285 0.457395 0.167817 -0.380591 -0.855480 0.351147 0.277330 0.273048 0.921159 -0.916050 0.364266 0.167817 -0.289725 -0.890368 0.351147 0.247185 0.300610 0.921159 -0.949183 0.266251 0.167817 -0.194812 -0.915829 0.351147 0.214317 0.324862 0.921159 -0.971860 0.165304 0.167817 -0.097754 -0.931203 0.351147 0.179371 0.345388 0.921159 -0.983781 0.063337 0.167817 -0.000381 -0.936320 0.351147 0.142184 0.362285 0.921159 -0.985002 -0.040119 0.167817 0.097754 -0.931203 0.351147 0.103430 0.375192 0.921159 -0.975372 -0.143134 0.167817 0.194812 -0.915829 0.351147 0.063538 0.383966 0.921159 -0.954999 -0.244571 0.167817 0.289725 -0.890368 0.351147 0.023334 0.388487 0.921159 -0.924449 -0.342391 0.167817 0.380591 -0.855480 0.351147 -0.017511 0.388793 0.921159 -0.883473 -0.437394 0.167817 0.468155 -0.810880 0.351147 -0.058162 0.384817 0.921159 -0.832765 -0.527579 0.167817 0.550563 -0.757348 0.351147 -0.097797 0.376700 0.921159 -0.773496 -0.611180 0.167817 0.626210 -0.696101 0.351147 -0.136739 0.364375 0.921159 -0.705180 -0.688882 0.167817 0.695718 -0.626635 0.351147 -0.174175 0.348037 0.921159 -0.629097 -0.758996 0.167817 0.757562 -0.550268 0.351147 -0.209693 0.327866 0.921159 -0.546084 -0.820750 0.167817 0.811062 -0.467840 0.351147 -0.242596 0.304325 0.921159 -0.457929 -0.873006 0.167817 0.855247 -0.381113 0.351147 -0.273156 0.277223 0.921159 -0.363910 -0.916192 0.167817 0.890481 -0.289378 0.351147 -0.300707 0.247068 0.921159 -0.265882 -0.949286 0.167817 0.915905 -0.194456 0.351147 -0.324731 0.214516 0.921159 -0.165898 -0.971759 0.167817 0.931143 -0.098323 0.351147 -0.345425 0.179300 0.921159 -0.063137 -0.983794 0.167817 0.936320 -0.000191 0.351147 -0.362314 0.142110 0.921159 0.040320 -0.984993 0.167817 0.931183 0.097943 0.351147 -0.375213 0.103354 0.921159 0.143332 -0.975343 0.167817 0.915790 0.194999 0.351147 -0.383915 0.063844 0.921159 0.243811 -0.955193 0.167817 0.890598 0.289016 0.351147 -0.388492 0.023255 0.921159 0.342579 -0.924379 0.167817 0.855403 0.380765 0.351147 -0.388790 -0.017590 0.921159 0.437574 -0.883384 0.167817 0.810785 0.468320 0.351147 -0.384805 -0.058241 0.921159 0.527749 -0.832658 0.167817 0.757236 0.550717 0.351147 -0.376680 -0.097874 0.921159 0.611338 -0.773372 0.167817 0.695973 0.626352 0.351147 -0.364347 -0.136814 0.921159 0.689026 -0.705040 0.167817 0.626494 0.695845 0.351147 -0.348002 -0.174246 0.921159 0.759124 -0.628942 0.167817 0.550114 0.757674 0.351147 -0.328032 -0.209432 0.921159 0.820315 -0.546737 0.167817 0.468485 0.810689 0.351147 -0.304276 -0.242658 0.921159 0.873099 -0.457751 0.167817 0.380939 0.855325 0.351147 -0.277168 -0.273212 0.921159 0.916266 -0.363723 0.167817 0.289197 0.890539 0.351147 -0.247007 -0.300757 0.921159 0.949340 -0.265689 0.167817 0.194269 0.915945 0.351147 -0.214450 -0.324774 0.921159 0.971793 -0.165700 0.167817 0.098133 0.931163 0.351147 -0.179230 -0.345461 0.921159 0.983807 -0.062936 0.167817 0.000000 0.936320 0.351147 -0.142036 -0.362343 0.921159 0.984985 0.040521 0.167817 -0.098133 0.931163 0.351147 -0.103653 -0.375131 0.921159 0.975457 0.142555 0.167817 -0.194269 0.915945 0.351147 -0.063766 -0.383928 0.921159 0.955143 0.244005 0.167817 -0.289197 0.890539 0.351147 -0.023176 -0.388497 0.921159 0.924310 0.342767 0.167817 -0.380939 0.855325 0.351147 0.017669 -0.388786 0.921159 0.883295 0.437754 0.167817 -0.468485 0.810689 0.351147 0.057934 -0.384851 0.921159 0.833078 0.527086 0.167817 -0.550114 0.757674 0.351147 0.097951 -0.376660 0.921159 0.773247 0.611495 0.167817 -0.626494 0.695845 0.351147 0.136888 -0.364320 0.921159 0.704899 0.689169 0.167817 -0.695973 0.626352 0.351147 0.173969 -0.348140 0.921159 0.629546 0.758623 0.167817 -0.757236 0.550717 0.351147 0.209499 -0.327990 0.921159 0.546570 0.820426 0.167817 -0.810785 0.468320 0.351147 0.242720 -0.304226 0.921159 0.457573 0.873192 0.167817 -0.855403 0.380765 0.351147 0.273269 -0.277112 0.921159 0.363536 0.916340 0.167817 -0.890598 0.289016 0.351147 0.300560 -0.247246 0.921159 0.266445 0.949128 0.167817 -0.915790 0.194999 0.351147 0.324818 -0.214384 0.921159 0.165502 0.971826 0.167817 -0.931183 0.097943 0.351147 0.506546 -0.265861 -0.820201 -0.139545 -0.964011 0.226294 -0.850846 -0.000173 -0.525416 0.531620 -0.211307 -0.820201 -0.037741 -0.973328 0.226294 -0.846141 -0.089347 -0.525416 0.550684 -0.154976 -0.820201 0.063506 -0.971987 0.226294 -0.832294 -0.176704 -0.525416 0.563894 -0.096407 -0.820201 0.165028 -0.959978 0.226294 -0.809191 -0.262962 -0.525416 0.570893 -0.036776 -0.820201 0.264731 -0.937394 0.226294 -0.777174 -0.346322 -0.525416 0.571626 0.022689 -0.820201 0.360614 -0.904847 0.226294 -0.737022 -0.425132 -0.525416 0.566100 0.082474 -0.820201 0.453463 -0.862069 0.226294 -0.688406 -0.500035 -0.525416 0.554338 0.141351 -0.820201 0.541316 -0.809795 0.226294 -0.632207 -0.569431 -0.525416 0.536470 0.198671 -0.820201 0.623207 -0.748601 0.226294 -0.569045 -0.632555 -0.525416 0.512947 0.253290 -0.820201 0.697554 -0.679860 0.226294 -0.500303 -0.688211 -0.525416 0.483576 0.305656 -0.820201 0.764967 -0.603007 0.226294 -0.425418 -0.736857 -0.525416 0.448877 0.354655 -0.820201 0.823953 -0.519512 0.226294 -0.345847 -0.777385 -0.525416 0.409634 0.399338 -0.820201 0.873433 -0.431168 0.226294 -0.263276 -0.809088 -0.525416 0.365525 0.440071 -0.820201 0.913812 -0.337251 0.226294 -0.177028 -0.832225 -0.525416 0.317389 0.475957 -0.820201 0.944126 -0.239620 0.226294 -0.088830 -0.846196 -0.525416 0.266170 0.506384 -0.820201 0.963926 -0.140134 0.226294 -0.000347 -0.850846 -0.525416 0.211632 0.531491 -0.820201 0.973304 -0.038336 0.226294 0.088830 -0.846196 -0.525416 0.154762 0.550745 -0.820201 0.971962 0.063884 0.226294 0.177028 -0.832225 -0.525416 0.096188 0.563932 -0.820201 0.959913 0.165401 0.226294 0.263276 -0.809088 -0.525416 0.037125 0.570870 -0.820201 0.937556 0.264158 0.226294 0.345847 -0.777385 -0.525416 -0.022911 0.571617 -0.820201 0.904707 0.360966 0.226294 0.425418 -0.736857 -0.525416 -0.082694 0.566068 -0.820201 0.861892 0.453798 0.226294 0.500303 -0.688211 -0.525416 -0.141013 0.554424 -0.820201 0.810125 0.540821 0.226294 0.569045 -0.632555 -0.525416 -0.198344 0.536592 -0.820201 0.748982 0.622750 0.226294 0.632207 -0.569431 -0.525416 -0.253490 0.512849 -0.820201 0.679588 0.697819 0.226294 0.688406 -0.500035 -0.525416 -0.305844 0.483457 -0.820201 0.602709 0.765201 0.226294 0.737022 -0.425132 -0.525416 -0.354380 0.449094 -0.820201 0.520015 0.823635 0.226294 0.777174 -0.346322 -0.525416 -0.399497 0.409479 -0.820201 0.430828 0.873601 0.226294 0.809191 -0.262962 -0.525416 -0.440213 0.365354 -0.820201 0.336896 0.913943 0.226294 0.832294 -0.176704 -0.525416 -0.475763 0.317680 -0.820201 0.240197 0.943979 0.226294 0.846141 -0.089347 -0.525416 -0.506438 0.266067 -0.820201 0.139938 0.963955 0.226294 0.850846 -0.000173 -0.525416 -0.531534 0.211523 -0.820201 0.038138 0.973312 0.226294 0.846178 0.089002 -0.525416 -0.550776 0.154650 -0.820201 -0.064082 0.971949 0.226294 0.832189 0.177198 -0.525416 -0.563855 0.096637 -0.820201 -0.164637 0.960045 0.226294 0.809298 0.262632 -0.525416 -0.570878 0.037008 -0.820201 -0.264349 0.937502 0.226294 0.777315 0.346006 -0.525416 -0.571612 -0.023027 -0.820201 -0.361150 0.904633 0.226294 0.736770 0.425568 -0.525416 -0.566051 -0.082810 -0.820201 -0.453973 0.861800 0.226294 0.688110 0.500443 -0.525416 -0.554396 -0.141125 -0.820201 -0.540986 0.810015 0.226294 0.632439 0.569174 -0.525416 -0.536551 -0.198453 -0.820201 -0.622902 0.748855 0.226294 0.569303 0.632323 -0.525416 -0.512797 -0.253594 -0.820201 -0.697957 0.679446 0.226294 0.499895 0.688508 -0.525416 -0.483700 -0.305459 -0.820201 -0.764721 0.603318 0.226294 0.425718 0.736683 -0.525416 -0.449022 -0.354472 -0.820201 -0.823741 0.519847 0.226294 0.346164 0.777244 -0.525416 -0.409398 -0.399580 -0.820201 -0.873688 0.430650 0.226294 0.262797 0.809244 -0.525416 -0.365264 -0.440287 -0.820201 -0.914012 0.336710 0.226294 0.176535 0.832330 -0.525416 -0.317583 -0.475828 -0.820201 -0.944028 0.240004 0.226294 0.089175 0.846160 -0.525416 -0.265964 -0.506492 -0.820201 -0.963983 0.139742 0.226294 0.000000 0.850846 -0.525416 -0.211415 -0.531577 -0.820201 -0.973320 0.037940 0.226294 -0.089175 0.846160 -0.525416 -0.155088 -0.550653 -0.820201 -0.971999 -0.063308 0.226294 -0.176535 0.832330 -0.525416 -0.096522 -0.563874 -0.820201 -0.960011 -0.164832 0.226294 -0.262797 0.809244 -0.525416 -0.036892 -0.570885 -0.820201 -0.937448 -0.264540 0.226294 -0.346164 0.777244 -0.525416 0.023144 -0.571608 -0.820201 -0.904560 -0.361335 0.226294 -0.425718 0.736683 -0.525416 0.082359 -0.566117 -0.820201 -0.862161 -0.453287 0.226294 -0.499895 0.688508 -0.525416 0.141238 -0.554367 -0.820201 -0.809905 -0.541151 0.226294 -0.569303 0.632323 -0.525416 0.198562 -0.536511 -0.820201 -0.748728 -0.623055 0.226294 -0.632439 0.569174 -0.525416 0.253186 -0.512999 -0.820201 -0.680002 -0.697416 0.226294 -0.688110 0.500443 -0.525416 0.305557 -0.483638 -0.820201 -0.603162 -0.764844 0.226294 -0.736770 0.425568 -0.525416 0.354563 -0.448950 -0.820201 -0.519679 -0.823847 0.226294 -0.777315 0.346006 -0.525416 0.399664 -0.409316 -0.820201 -0.430472 -0.873776 0.226294 -0.809298 0.262632 -0.525416 0.439996 -0.365615 -0.820201 -0.337437 -0.913743 0.226294 -0.832189 0.177198 -0.525416 0.475892 -0.317486 -0.820201 -0.239812 -0.944077 0.226294 -0.846178 0.089002 -0.525416 0.038305 -0.973294 0.226342 0.161545 0.229561 0.959794 -0.986122 -0.000201 0.166024 0.140103 -0.963919 0.226342 0.136595 0.245228 0.959794 -0.980670 -0.103552 0.166024 0.239413 -0.944167 0.226342 0.110400 0.258083 0.959794 -0.964621 -0.204799 0.166024 0.337049 -0.913875 0.226342 0.082743 0.268232 0.959794 -0.937844 -0.304770 0.166024 0.430974 -0.873516 0.226342 0.054174 0.275427 0.959794 -0.900737 -0.401384 0.166024 0.519327 -0.824056 0.226342 0.025289 0.279563 0.959794 -0.854201 -0.492723 0.166024 0.602834 -0.765088 0.226342 -0.004151 0.280674 0.959794 -0.797856 -0.579536 0.166024 0.679701 -0.697693 0.226342 -0.033544 0.278693 0.959794 -0.732722 -0.659965 0.166024 0.749081 -0.622613 0.226342 -0.062569 0.273642 0.959794 -0.659518 -0.733125 0.166024 0.809668 -0.541485 0.226342 -0.090638 0.265668 0.959794 -0.579846 -0.797630 0.166024 0.861961 -0.453644 0.226342 -0.117983 0.254706 0.959794 -0.493056 -0.854010 0.166024 0.904759 -0.360806 0.226342 -0.144028 0.240937 0.959794 -0.400834 -0.900982 0.166024 0.937326 -0.264931 0.226342 -0.168262 0.224684 0.959794 -0.305135 -0.937725 0.166024 0.959931 -0.165234 0.226342 -0.190884 0.205811 0.959794 -0.205174 -0.964541 0.166024 0.971962 -0.063716 0.226342 -0.211403 0.184672 0.959794 -0.102953 -0.980733 0.166024 0.973318 0.037711 0.226342 -0.229462 0.161685 0.959794 -0.000402 -0.986122 0.166024 0.964005 0.139514 0.226342 -0.245144 0.136745 0.959794 0.102953 -0.980733 0.166024 0.944073 0.239780 0.226342 -0.258126 0.110299 0.959794 0.205174 -0.964541 0.166024 0.913743 0.337405 0.226342 -0.268264 0.082638 0.959794 0.305135 -0.937725 0.166024 0.873779 0.430440 0.226342 -0.275394 0.054343 0.959794 0.400834 -0.900982 0.166024 0.823854 0.519648 0.226342 -0.279573 0.025180 0.959794 0.493056 -0.854010 0.166024 0.764854 0.603132 0.226342 -0.280672 -0.004260 0.959794 0.579846 -0.797630 0.166024 0.698108 0.679274 0.226342 -0.278713 -0.033374 0.959794 0.659518 -0.733125 0.166024 0.623071 0.748700 0.226342 -0.273680 -0.062401 0.959794 0.732722 -0.659965 0.166024 0.541170 0.809879 0.226342 -0.265633 -0.090741 0.959794 0.797856 -0.579536 0.166024 0.453309 0.862137 0.226342 -0.254660 -0.118082 0.959794 0.854201 -0.492723 0.166024 0.361359 0.904538 0.226342 -0.241025 -0.143881 0.959794 0.900737 -0.401384 0.166024 0.264566 0.937429 0.226342 -0.224618 -0.168349 0.959794 0.937844 -0.304770 0.166024 0.164860 0.959995 0.226342 -0.205737 -0.190964 0.959794 0.964621 -0.204799 0.166024 0.064310 0.971923 0.226342 -0.184801 -0.211290 0.959794 0.980670 -0.103552 0.166024 -0.037909 0.973310 0.226342 -0.161638 -0.229495 0.959794 0.986122 -0.000201 0.166024 -0.139710 0.963976 0.226342 -0.136695 -0.245172 0.959794 0.980712 0.103153 0.166024 -0.239972 0.944025 0.226342 -0.110247 -0.258148 0.959794 0.964499 0.205370 0.166024 -0.336677 0.914012 0.226342 -0.082852 -0.268198 0.959794 0.937968 0.304388 0.166024 -0.430618 0.873692 0.226342 -0.054287 -0.275405 0.959794 0.900900 0.401017 0.166024 -0.519816 0.823748 0.226342 -0.025123 -0.279578 0.959794 0.853909 0.493230 0.166024 -0.603287 0.764731 0.226342 0.004317 -0.280671 0.959794 0.797512 0.580009 0.166024 -0.679416 0.697970 0.226342 0.033431 -0.278706 0.959794 0.732991 0.659667 0.166024 -0.748827 0.622918 0.226342 0.062457 -0.273668 0.959794 0.659816 0.732857 0.166024 -0.809989 0.541005 0.226342 0.090795 -0.265614 0.959794 0.579374 0.797974 0.166024 -0.861776 0.453995 0.226342 0.117879 -0.254754 0.959794 0.493403 0.853809 0.166024 -0.904612 0.361174 0.226342 0.143930 -0.240996 0.959794 0.401201 0.900818 0.166024 -0.937483 0.264376 0.226342 0.168395 -0.224584 0.959794 0.304579 0.937906 0.166024 -0.960028 0.164665 0.226342 0.191006 -0.205698 0.959794 0.204602 0.964663 0.166024 -0.971936 0.064112 0.226342 0.211328 -0.184758 0.959794 0.103353 0.980691 0.166024 -0.973302 -0.038107 0.226342 0.229528 -0.161591 0.959794 0.000000 0.986122 0.166024 -0.963948 -0.139906 0.226342 0.245200 -0.136645 0.959794 -0.103353 0.980691 0.166024 -0.944215 -0.239220 0.226342 0.258060 -0.110452 0.959794 -0.204602 0.964663 0.166024 -0.913943 -0.336863 0.226342 0.268215 -0.082797 0.959794 -0.304579 0.937906 0.166024 -0.873604 -0.430796 0.226342 0.275416 -0.054230 0.959794 -0.401201 0.900818 0.166024 -0.823642 -0.519983 0.226342 0.279583 -0.025066 0.959794 -0.493403 0.853809 0.166024 -0.765211 -0.602678 0.226342 0.280674 0.004093 0.959794 -0.579374 0.797974 0.166024 -0.697832 -0.679559 0.226342 0.278700 0.033488 0.959794 -0.659816 0.732857 0.166024 -0.622766 -0.748954 0.226342 0.273655 0.062513 0.959794 -0.732991 0.659667 0.166024 -0.541650 -0.809558 0.226342 0.265687 0.090584 0.959794 -0.797512 0.580009 0.166024 -0.453820 -0.861868 0.226342 0.254730 0.117931 0.959794 -0.853909 0.493230 0.166024 -0.360990 -0.904685 0.226342 0.240967 0.143979 0.959794 -0.900900 0.401017 0.166024 -0.264185 -0.937537 0.226342 0.224550 0.168441 0.959794 -0.937968 0.304388 0.166024 -0.165429 -0.959897 0.226342 0.205850 0.190842 0.959794 -0.964499 0.205370 0.166024 -0.063914 -0.971949 0.226342 0.184715 0.211365 0.959794 -0.980712 0.103153 0.166024 -0.065632 0.995849 -0.063065 -0.716998 -0.091020 -0.691107 -0.693978 -0.000141 0.719996 -0.169643 0.983486 -0.063065 -0.703510 -0.165666 -0.691107 -0.690141 -0.072874 0.719996 -0.270824 0.960561 -0.063065 -0.682510 -0.237804 -0.691107 -0.678847 -0.144126 0.719996 -0.370006 0.926886 -0.063065 -0.653828 -0.308026 -0.691107 -0.660003 -0.214480 0.719996 -0.465113 0.883002 -0.063065 -0.617944 -0.374856 -0.691107 -0.633889 -0.282472 0.719996 -0.554267 0.829946 -0.063065 -0.575690 -0.436981 -0.691107 -0.601140 -0.346752 0.719996 -0.638198 0.767285 -0.063065 -0.526721 -0.494910 -0.691107 -0.561487 -0.407846 0.719996 -0.715100 0.696171 -0.063065 -0.471950 -0.547389 -0.691107 -0.515650 -0.464447 0.719996 -0.784126 0.617389 -0.063065 -0.411980 -0.593838 -0.691107 -0.464132 -0.515933 0.719996 -0.843982 0.532651 -0.063065 -0.348107 -0.633398 -0.691107 -0.408064 -0.561328 0.719996 -0.895159 0.441262 -0.063065 -0.279805 -0.666394 -0.691107 -0.346985 -0.601005 0.719996 -0.936477 0.345013 -0.063065 -0.208421 -0.692049 -0.691107 -0.282085 -0.634062 0.719996 -0.967234 0.245931 -0.063065 -0.135451 -0.709947 -0.691107 -0.214737 -0.659920 0.719996 -0.987682 0.143203 -0.063065 -0.060298 -0.720233 -0.691107 -0.144390 -0.678791 0.719996 -0.997251 0.038898 -0.063065 0.015520 -0.722586 -0.691107 -0.072453 -0.690186 0.719996 -0.995889 -0.065024 -0.063065 0.090582 -0.717054 -0.691107 -0.000283 -0.693978 0.719996 -0.983589 -0.169042 -0.063065 0.165236 -0.703611 -0.691107 0.072453 -0.690186 0.719996 -0.960455 -0.271198 -0.063065 0.238069 -0.682418 -0.691107 0.144390 -0.678791 0.719996 -0.926742 -0.370367 -0.063065 0.308280 -0.653708 -0.691107 0.214737 -0.659920 0.719996 -0.883286 -0.464573 -0.063065 0.374478 -0.618173 -0.691107 0.282085 -0.634062 0.719996 -0.829731 -0.554589 -0.063065 0.437204 -0.575520 -0.691107 0.346985 -0.601005 0.719996 -0.767036 -0.638497 -0.063065 0.495115 -0.526528 -0.691107 0.408064 -0.561328 0.719996 -0.696608 -0.714675 -0.063065 0.547100 -0.472284 -0.691107 0.464132 -0.515933 0.719996 -0.617868 -0.783749 -0.063065 0.593586 -0.412343 -0.691107 0.515650 -0.464447 0.719996 -0.532323 -0.844189 -0.063065 0.633533 -0.347860 -0.691107 0.561487 -0.407846 0.719996 -0.440914 -0.895331 -0.063065 0.666502 -0.279546 -0.691107 0.601140 -0.346752 0.719996 -0.345585 -0.936266 -0.063065 0.691922 -0.208844 -0.691107 0.633889 -0.282472 0.719996 -0.245554 -0.967329 -0.063065 0.709999 -0.135175 -0.691107 0.660003 -0.214480 0.719996 -0.142819 -0.987738 -0.063065 0.720256 -0.060018 -0.691107 0.678847 -0.144126 0.719996 -0.039508 -0.997227 -0.063065 0.722595 0.015078 -0.691107 0.690141 -0.072874 0.719996 0.065226 -0.995876 -0.063065 0.717035 0.090728 -0.691107 0.693978 -0.000141 0.719996 0.169242 -0.983555 -0.063065 0.703577 0.165379 -0.691107 0.690171 0.072593 0.719996 0.271394 -0.960400 -0.063065 0.682369 0.238208 -0.691107 0.678762 0.144528 0.719996 0.369629 -0.927037 -0.063065 0.653953 0.307760 -0.691107 0.660090 0.214212 0.719996 0.464753 -0.883191 -0.063065 0.618096 0.374604 -0.691107 0.634004 0.282214 0.719996 0.554758 -0.829618 -0.063065 0.575431 0.437322 -0.691107 0.600934 0.347108 0.719996 0.638653 -0.766906 -0.063065 0.526428 0.495222 -0.691107 0.561245 0.408178 0.719996 0.714817 -0.696462 -0.063065 0.472173 0.547197 -0.691107 0.515839 0.464237 0.719996 0.783874 -0.617709 -0.063065 0.412222 0.593670 -0.691107 0.464342 0.515744 0.719996 0.844297 -0.532151 -0.063065 0.347731 0.633604 -0.691107 0.407731 0.561570 0.719996 0.894980 -0.441627 -0.063065 0.280076 0.666280 -0.691107 0.347230 0.600864 0.719996 0.936336 -0.345394 -0.063065 0.208703 0.691964 -0.691107 0.282343 0.633947 0.719996 0.967379 -0.245357 -0.063065 0.135031 0.710027 -0.691107 0.214346 0.660047 0.719996 0.987767 -0.142618 -0.063065 0.059871 0.720268 -0.691107 0.143988 0.678877 0.719996 0.997235 -0.039305 -0.063065 -0.015225 0.722592 -0.691107 0.072734 0.690156 0.719996 0.995862 0.065429 -0.063065 -0.090874 0.717017 -0.691107 0.000000 0.693978 0.719996 0.983520 0.169442 -0.063065 -0.165522 0.703544 -0.691107 -0.072734 0.690156 0.719996 0.960616 0.270629 -0.063065 -0.237665 0.682559 -0.691107 -0.143988 0.678877 0.719996 0.926962 0.369818 -0.063065 -0.307893 0.653891 -0.691107 -0.214346 0.660047 0.719996 0.883097 0.464933 -0.063065 -0.374730 0.618020 -0.691107 -0.282343 0.633947 0.719996 0.829505 0.554927 -0.063065 -0.437439 0.575342 -0.691107 -0.347230 0.600864 0.719996 0.767415 0.638042 -0.063065 -0.494803 0.526822 -0.691107 -0.407731 0.561570 0.719996 0.696317 0.714959 -0.063065 -0.547293 0.472061 -0.691107 -0.464342 0.515744 0.719996 0.617549 0.784000 -0.063065 -0.593754 0.412101 -0.691107 -0.515839 0.464237 0.719996 0.532823 0.843873 -0.063065 -0.633327 0.348236 -0.691107 -0.561245 0.408178 0.719996 0.441445 0.895070 -0.063065 -0.666337 0.279940 -0.691107 -0.600934 0.347108 0.719996 0.345204 0.936407 -0.063065 -0.692007 0.208562 -0.691107 -0.634004 0.282214 0.719996 0.245160 0.967429 -0.063065 -0.710054 0.134886 -0.691107 -0.660090 0.214212 0.719996 0.143404 0.987653 -0.063065 -0.720221 0.060445 -0.691107 -0.678762 0.144528 0.719996 0.039102 0.997243 -0.063065 -0.722589 -0.015373 -0.691107 -0.690171 0.072593 0.719996 -0.415324 -0.841125 -0.346431 0.646074 -0.540841 0.538590 -0.640385 -0.000130 0.768054 -0.324881 -0.880022 -0.346431 0.699200 -0.470149 0.538590 -0.636845 -0.067247 0.768054 -0.231768 -0.908993 -0.346431 0.744230 -0.395023 0.538590 -0.626423 -0.132996 0.768054 -0.135223 -0.928278 -0.346431 0.781532 -0.314847 0.538590 -0.609034 -0.197917 0.768054 -0.037188 -0.937338 -0.346431 0.810226 -0.231202 0.538590 -0.584937 -0.260658 0.768054 0.060321 -0.936134 -0.346431 0.829850 -0.145841 0.538590 -0.554716 -0.319974 0.768054 0.158102 -0.924656 -0.346431 0.840565 -0.058064 0.538590 -0.518126 -0.376350 0.768054 0.254142 -0.902994 -0.346431 0.842021 0.030353 0.538590 -0.475828 -0.428580 0.768054 0.347382 -0.871385 -0.346431 0.834202 0.118436 0.538590 -0.428289 -0.476090 0.768054 0.435966 -0.830614 -0.346431 0.817400 0.204396 0.538590 -0.376551 -0.517980 0.768054 0.520619 -0.780347 -0.346431 0.791476 0.288940 0.538590 -0.320189 -0.554592 0.768054 0.599538 -0.721485 -0.346431 0.756834 0.370301 0.538590 -0.260301 -0.585096 0.768054 0.671198 -0.655347 -0.346431 0.714303 0.446869 0.538590 -0.198154 -0.608957 0.768054 0.736186 -0.581391 -0.346431 0.663534 0.519272 0.538590 -0.133240 -0.626371 0.768054 0.793066 -0.501032 -0.346431 0.605456 0.585956 0.538590 -0.066858 -0.636886 0.768054 0.840871 -0.415838 -0.346431 0.541235 0.645744 0.538590 -0.000261 -0.640385 0.768054 0.879823 -0.325419 -0.346431 0.470576 0.698913 0.538590 0.066858 -0.636886 0.768054 0.909084 -0.231415 -0.346431 0.394733 0.744383 0.538590 0.133240 -0.626371 0.768054 0.928331 -0.134862 -0.346431 0.314542 0.781655 0.538590 0.198154 -0.608957 0.768054 0.937315 -0.037761 -0.346431 0.231697 0.810085 0.538590 0.260301 -0.585096 0.768054 0.936111 0.060685 -0.346431 0.145519 0.829907 0.538590 0.320189 -0.554592 0.768054 0.924595 0.158461 -0.346431 0.057737 0.840587 0.538590 0.376551 -0.517980 0.768054 0.903149 0.253590 -0.346431 -0.029839 0.842039 0.538590 0.428289 -0.476090 0.768054 0.871597 0.346850 -0.346431 -0.117926 0.834275 0.538590 0.475828 -0.428580 0.768054 0.830444 0.436289 -0.346431 -0.204714 0.817320 0.538590 0.518126 -0.376350 0.768054 0.780144 0.520923 -0.346431 -0.289248 0.791364 0.538590 0.554716 -0.319974 0.768054 0.721851 0.599097 -0.346431 -0.369839 0.757060 0.538590 0.584937 -0.260658 0.768054 0.655086 0.671453 -0.346431 -0.447147 0.714129 0.538590 0.609034 -0.197917 0.768054 0.581105 0.736412 -0.346431 -0.519530 0.663332 0.538590 0.626423 -0.132996 0.768054 0.501516 0.792759 -0.346431 -0.585585 0.605814 0.538590 0.636845 -0.067247 0.768054 0.415667 0.840956 -0.346431 -0.645854 0.541104 0.538590 0.640385 -0.000130 0.768054 0.325240 0.879889 -0.346431 -0.699009 0.470434 0.538590 0.636872 0.066987 0.768054 0.231230 0.909131 -0.346431 -0.744464 0.394582 0.538590 0.626344 0.133367 0.768054 0.135601 0.928223 -0.346431 -0.781404 0.315165 0.538590 0.609115 0.197669 0.768054 0.037570 0.937323 -0.346431 -0.810132 0.231532 0.538590 0.585043 0.260420 0.768054 -0.060875 0.936098 -0.346431 -0.829936 0.145350 0.538590 0.554527 0.320302 0.768054 -0.158650 0.924563 -0.346431 -0.840599 0.057566 0.538590 0.517903 0.376657 0.768054 -0.253774 0.903097 -0.346431 -0.842033 -0.030010 0.538590 0.476003 0.428386 0.768054 -0.347027 0.871526 -0.346431 -0.834251 -0.118096 0.538590 0.428483 0.475916 0.768054 -0.436458 0.830355 -0.346431 -0.817279 -0.204881 0.538590 0.376244 0.518203 0.768054 -0.520301 0.780559 -0.346431 -0.791594 -0.288618 0.538590 0.320415 0.554462 0.768054 -0.599244 0.721729 -0.346431 -0.756985 -0.369993 0.538590 0.260539 0.584990 0.768054 -0.671586 0.654949 -0.346431 -0.714038 -0.447293 0.538590 0.197793 0.609074 0.768054 -0.736531 0.580955 -0.346431 -0.663226 -0.519665 0.538590 0.132868 0.626450 0.768054 -0.792862 0.501355 -0.346431 -0.605695 -0.585709 0.538590 0.067117 0.636859 0.768054 -0.841040 0.415496 -0.346431 -0.540972 -0.645964 0.538590 0.000000 0.640385 0.768054 -0.879955 0.325060 -0.346431 -0.470291 -0.699104 0.538590 -0.067117 0.636859 0.768054 -0.908946 0.231954 -0.346431 -0.395174 -0.744149 0.538590 -0.132868 0.626450 0.768054 -0.928251 0.135412 -0.346431 -0.315006 -0.781468 0.538590 -0.197793 0.609074 0.768054 -0.937331 0.037379 -0.346431 -0.231367 -0.810179 0.538590 -0.260539 0.584990 0.768054 -0.936086 -0.061066 -0.346431 -0.145181 -0.829966 0.538590 -0.320415 0.554462 0.768054 -0.924689 -0.157914 -0.346431 -0.058235 -0.840553 0.538590 -0.376244 0.518203 0.768054 -0.903045 -0.253958 -0.346431 0.030181 -0.842027 0.538590 -0.428483 0.475916 0.768054 -0.871455 -0.347205 -0.346431 0.118266 -0.834227 0.538590 -0.476003 0.428386 0.768054 -0.830703 -0.435797 -0.346431 0.204230 -0.817442 0.538590 -0.517903 0.376657 0.768054 -0.780453 -0.520460 -0.346431 0.288779 -0.791535 0.538590 -0.554527 0.320302 0.768054 -0.721607 -0.599391 -0.346431 0.370147 -0.756909 0.538590 -0.585043 0.260420 0.768054 -0.654812 -0.671719 -0.346431 0.447438 -0.713947 0.538590 -0.609115 0.197669 0.768054 -0.581541 -0.736068 -0.346431 0.519137 -0.663640 0.538590 -0.626344 0.133367 0.768054 -0.501193 -0.792964 -0.346431 0.585832 -0.605575 0.538590 -0.636872 0.066987 0.768054 0.059962 -0.982444 -0.176660 -0.314789 -0.186558 0.930647 -0.947266 -0.000193 -0.320449 0.162599 -0.970749 -0.176660 -0.293503 -0.218523 0.930647 -0.942028 -0.099472 -0.320449 0.262496 -0.948624 -0.176660 -0.269232 -0.247812 0.930647 -0.926612 -0.196729 -0.320449 0.360473 -0.915888 -0.176660 -0.241776 -0.274664 0.930647 -0.900890 -0.292761 -0.320449 0.454480 -0.873063 -0.176660 -0.211658 -0.298492 0.930647 -0.865245 -0.385569 -0.320449 0.542659 -0.821165 -0.176660 -0.179527 -0.318852 0.930647 -0.820543 -0.473309 -0.320449 0.625734 -0.759768 -0.176660 -0.145121 -0.335911 0.930647 -0.766418 -0.556701 -0.320449 0.701917 -0.690003 -0.176660 -0.109115 -0.349271 0.930647 -0.703851 -0.633961 -0.320449 0.770369 -0.612636 -0.176660 -0.071908 -0.358783 0.930647 -0.633531 -0.704238 -0.320449 0.829806 -0.529352 -0.176660 -0.034274 -0.364310 0.930647 -0.556999 -0.766201 -0.320449 0.880716 -0.439467 -0.176660 0.004097 -0.365896 0.930647 -0.473628 -0.820359 -0.320449 0.921924 -0.344742 -0.176660 0.042423 -0.363451 0.930647 -0.385040 -0.865481 -0.320449 0.952732 -0.247172 -0.176660 0.079925 -0.357083 0.930647 -0.293112 -0.900776 -0.320449 0.973390 -0.145957 -0.176660 0.116910 -0.346740 0.930647 -0.197090 -0.926535 -0.320449 0.983326 -0.043135 -0.176660 0.152607 -0.332577 0.930647 -0.098897 -0.942089 -0.320449 0.982480 0.059362 -0.176660 0.186366 -0.314903 0.930647 -0.000386 -0.947266 -0.320449 0.970848 0.162006 -0.176660 0.218344 -0.293636 0.930647 0.098897 -0.942089 -0.320449 0.948522 0.262865 -0.176660 0.247916 -0.269135 0.930647 0.197090 -0.926535 -0.320449 0.915747 0.360830 -0.176660 0.274758 -0.241669 0.930647 0.293112 -0.900776 -0.320449 0.873341 0.453946 -0.176660 0.298362 -0.211840 0.930647 0.385040 -0.865481 -0.320449 0.820954 0.542978 -0.176660 0.318921 -0.179403 0.930647 0.473628 -0.820359 -0.320449 0.759525 0.626030 -0.176660 0.335968 -0.144990 0.930647 0.556999 -0.766201 -0.320449 0.690431 0.701496 -0.176660 0.349204 -0.109329 0.930647 0.633531 -0.704238 -0.320449 0.613107 0.769994 -0.176660 0.358739 -0.072128 0.930647 0.703851 -0.633961 -0.320449 0.529029 0.830012 -0.176660 0.364323 -0.034132 0.930647 0.766418 -0.556701 -0.320449 0.439125 0.880886 -0.176660 0.365894 0.004240 0.930647 0.820543 -0.473309 -0.320449 0.345305 0.921714 -0.176660 0.363477 0.042201 0.930647 0.865245 -0.385569 -0.320449 0.246801 0.952828 -0.176660 0.357052 0.080064 0.930647 0.900890 -0.292761 -0.320449 0.145578 0.973447 -0.176660 0.346694 0.117044 0.930647 0.926612 -0.196729 -0.320449 0.043736 0.983300 -0.176660 0.332670 0.152403 0.930647 0.942028 -0.099472 -0.320449 -0.059562 0.982468 -0.176660 0.314865 0.186430 0.930647 0.947266 -0.000193 -0.320449 -0.162204 0.970815 -0.176660 0.293592 0.218404 0.930647 0.942069 0.099088 -0.320449 -0.263059 0.948468 -0.176660 0.269085 0.247971 0.930647 0.926495 0.197278 -0.320449 -0.360100 0.916035 -0.176660 0.241888 0.274566 0.930647 0.901009 0.292394 -0.320449 -0.454124 0.873248 -0.176660 0.211780 0.298405 0.930647 0.865402 0.385216 -0.320449 -0.543146 0.820844 -0.176660 0.179338 0.318958 0.930647 0.820263 0.473795 -0.320449 -0.626185 0.759397 -0.176660 0.144921 0.335997 0.930647 0.766088 0.557155 -0.320449 -0.701636 0.690288 -0.176660 0.109258 0.349226 0.930647 0.704109 0.633674 -0.320449 -0.770119 0.612950 -0.176660 0.072054 0.358754 0.930647 0.633817 0.703980 -0.320449 -0.830119 0.528860 -0.176660 0.034058 0.364330 0.930647 0.556545 0.766531 -0.320449 -0.880536 0.439826 -0.176660 -0.003948 0.365897 0.930647 0.473962 0.820166 -0.320449 -0.921784 0.345117 -0.176660 -0.042275 0.363468 0.930647 0.385392 0.865324 -0.320449 -0.952878 0.246607 -0.176660 -0.080137 0.357036 0.930647 0.292578 0.900950 -0.320449 -0.973476 0.145380 -0.176660 -0.117115 0.346670 0.930647 0.196540 0.926652 -0.320449 -0.983309 0.043536 -0.176660 -0.152471 0.332639 0.930647 0.099280 0.942049 -0.320449 -0.982456 -0.059762 -0.176660 -0.186494 0.314827 0.930647 0.000000 0.947266 -0.320449 -0.970782 -0.162401 -0.176660 -0.218463 0.293547 0.930647 -0.099280 0.942049 -0.320449 -0.948677 -0.262303 -0.176660 -0.247757 0.269282 0.930647 -0.196540 0.926652 -0.320449 -0.915961 -0.360287 -0.176660 -0.274615 0.241832 0.930647 -0.292578 0.900950 -0.320449 -0.873156 -0.454302 -0.176660 -0.298448 0.211719 0.930647 -0.385392 0.865324 -0.320449 -0.820733 -0.543313 -0.176660 -0.318994 0.179273 0.930647 -0.473962 0.820166 -0.320449 -0.759896 -0.625580 -0.176660 -0.335882 0.145189 0.930647 -0.556545 0.766531 -0.320449 -0.690145 -0.701777 -0.176660 -0.349249 0.109187 0.930647 -0.633817 0.703980 -0.320449 -0.612793 -0.770244 -0.176660 -0.358769 0.071981 0.930647 -0.704109 0.633674 -0.320449 -0.529521 -0.829698 -0.176660 -0.364303 0.034348 0.930647 -0.766088 0.557155 -0.320449 -0.439647 -0.880626 -0.176660 -0.365896 -0.004023 0.930647 -0.820263 0.473795 -0.320449 -0.344929 -0.921854 -0.176660 -0.363460 -0.042349 0.930647 -0.865402 0.385216 -0.320449 -0.246413 -0.952928 -0.176660 -0.357019 -0.080209 0.930647 -0.901009 0.292394 -0.320449 -0.146155 -0.973360 -0.176660 -0.346764 -0.116839 0.930647 -0.926495 0.197278 -0.320449 -0.043335 -0.983318 -0.176660 -0.332608 -0.152539 0.930647 -0.942069 0.099088 -0.320449 0.287084 0.835973 0.467688 -0.437601 0.548771 -0.712289 -0.852108 -0.000174 0.523366 0.197887 0.861457 0.467688 -0.492706 0.499885 -0.712289 -0.847397 -0.089480 0.523366 0.107388 0.877346 0.467688 -0.541938 0.446035 -0.712289 -0.833529 -0.176967 0.523366 0.014845 0.883769 0.467688 -0.585701 0.386779 -0.712289 -0.810391 -0.263352 0.523366 -0.077863 0.880457 0.467688 -0.623013 0.323264 -0.712289 -0.778327 -0.346836 0.523366 -0.168845 0.867617 0.467688 -0.653205 0.256840 -0.712289 -0.738115 -0.425762 0.523366 -0.258847 0.845143 0.467688 -0.676526 0.186965 -0.712289 -0.689427 -0.500777 0.523366 -0.345998 0.813359 0.467688 -0.692396 0.115031 -0.712289 -0.633145 -0.570276 0.523366 -0.429339 0.772616 0.467688 -0.700639 0.041829 -0.712289 -0.569889 -0.633494 0.523366 -0.507226 0.723871 0.467688 -0.701195 -0.031132 -0.712289 -0.501045 -0.689233 0.523366 -0.580300 0.666723 0.467688 -0.694071 -0.104451 -0.712289 -0.426049 -0.737950 0.523366 -0.646981 0.602232 0.467688 -0.679301 -0.176619 -0.712289 -0.346361 -0.778539 0.523366 -0.706005 0.531813 0.467688 -0.657295 -0.246185 -0.712289 -0.263667 -0.810289 0.523366 -0.757854 0.454890 0.467688 -0.627873 -0.313718 -0.712289 -0.177291 -0.833460 0.523366 -0.801356 0.372956 0.467688 -0.591535 -0.377796 -0.712289 -0.088962 -0.847451 0.523366 -0.835797 0.287595 0.467688 -0.549038 -0.437265 -0.712289 -0.000347 -0.852108 0.523366 -0.861336 0.198414 0.467688 -0.500186 -0.492400 -0.712289 0.088962 -0.847451 0.523366 -0.877388 0.107047 0.467688 -0.445824 -0.542112 -0.712289 0.177291 -0.833460 0.523366 -0.883775 0.014501 0.467688 -0.386551 -0.585852 -0.712289 0.263667 -0.810289 0.523366 -0.880505 -0.077325 0.467688 -0.323644 -0.622815 -0.712289 0.346361 -0.778539 0.523366 -0.867551 -0.169182 0.467688 -0.256586 -0.653305 -0.712289 0.426049 -0.737950 0.523366 -0.845042 -0.259176 0.467688 -0.186702 -0.676599 -0.712289 0.501045 -0.689233 0.523366 -0.813570 -0.345501 0.467688 -0.115454 -0.692325 -0.712289 0.569889 -0.633494 0.523366 -0.772879 -0.428867 0.467688 -0.042257 -0.700613 -0.712289 0.633145 -0.570276 0.523366 -0.723674 -0.507508 0.467688 0.031405 -0.701183 -0.712289 0.689427 -0.500777 0.523366 -0.666498 -0.580559 0.467688 0.104721 -0.694030 -0.712289 0.738115 -0.425762 0.523366 -0.602627 -0.646613 0.467688 0.176204 -0.679409 -0.712289 0.778327 -0.346836 0.523366 -0.531538 -0.706212 0.467688 0.246441 -0.657199 -0.712289 0.810391 -0.263352 0.523366 -0.454595 -0.758031 0.467688 0.313963 -0.627751 -0.712289 0.833529 -0.176967 0.523366 -0.373446 -0.801128 0.467688 0.377435 -0.591766 -0.712289 0.847397 -0.089480 0.523366 -0.287425 -0.835856 0.467688 0.437377 -0.548949 -0.712289 0.852108 -0.000174 0.523366 -0.198238 -0.861376 0.467688 0.492502 -0.500086 -0.712289 0.847433 0.089134 0.523366 -0.106868 -0.877409 0.467688 0.542202 -0.445714 -0.712289 0.833424 0.177461 0.523366 -0.015204 -0.883763 0.467688 0.585544 -0.387018 -0.712289 0.810498 0.263022 0.523366 0.077504 -0.880489 0.467688 0.622881 -0.323517 -0.712289 0.778468 0.346519 0.523366 0.169359 -0.867517 0.467688 0.653357 -0.256453 -0.712289 0.737863 0.426200 0.523366 0.259348 -0.844989 0.467688 0.676637 -0.186564 -0.712289 0.689130 0.501186 0.523366 0.345667 -0.813500 0.467688 0.692349 -0.115313 -0.712289 0.633378 0.570018 0.523366 0.429024 -0.772791 0.467688 0.700621 -0.042115 -0.712289 0.570147 0.633262 0.523366 0.507655 -0.723570 0.467688 0.701177 0.031548 -0.712289 0.500637 0.689529 0.523366 0.580028 -0.666960 0.467688 0.694113 0.104168 -0.712289 0.426350 0.737776 0.523366 0.646736 -0.602495 0.467688 0.679373 0.176342 -0.712289 0.346678 0.778397 0.523366 0.706320 -0.531395 0.467688 0.657149 0.246574 -0.712289 0.263187 0.810445 0.523366 0.758124 -0.454441 0.467688 0.627687 0.314090 -0.712289 0.176797 0.833565 0.523366 0.801204 -0.373282 0.467688 0.591689 0.377555 -0.712289 0.089307 0.847415 0.523366 0.835914 -0.287255 0.467688 0.548860 0.437489 -0.712289 0.000000 0.852108 0.523366 0.861417 -0.198063 0.467688 0.499985 0.492604 -0.712289 -0.089307 0.847415 0.523366 0.877324 -0.107567 0.467688 0.446145 0.541847 -0.712289 -0.176797 0.833565 0.523366 0.883766 -0.015024 0.467688 0.386899 0.585622 -0.712289 -0.263187 0.810445 0.523366 0.880473 0.077683 0.467688 0.323390 0.622947 -0.712289 -0.346678 0.778397 0.523366 0.867482 0.169535 0.467688 0.256320 0.653410 -0.712289 -0.426350 0.737776 0.523366 0.845195 0.258675 0.467688 0.187103 0.676488 -0.712289 -0.500637 0.689529 0.523366 0.813429 0.345833 0.467688 0.115172 0.692372 -0.712289 -0.570147 0.633262 0.523366 0.772704 0.429181 0.467688 0.041972 0.700630 -0.712289 -0.633378 0.570018 0.523366 0.723974 0.507079 0.467688 -0.030989 0.701202 -0.712289 -0.689130 0.501186 0.523366 0.666842 0.580164 0.467688 -0.104310 0.694092 -0.712289 -0.737863 0.426200 0.523366 0.602364 0.646858 0.467688 -0.176481 0.679337 -0.712289 -0.778468 0.346519 0.523366 0.531251 0.706428 0.467688 -0.246708 0.657099 -0.712289 -0.810498 0.263022 0.523366 0.455044 0.757762 0.467688 -0.313590 0.627937 -0.712289 -0.833424 0.177461 0.523366 0.373119 0.801280 0.467688 -0.377676 0.591612 -0.712289 -0.847433 0.089134 0.523366 -0.158194 -0.894931 -0.417221 0.317681 -0.446205 0.836648 -0.934908 -0.000190 0.354890 -0.063528 -0.906582 -0.417221 0.362697 -0.410452 0.836648 -0.929739 -0.098174 0.354890 0.030930 -0.908278 -0.417221 0.403348 -0.370582 0.836648 -0.914524 -0.194163 0.354890 0.125954 -0.900034 -0.417221 0.439966 -0.326267 0.836648 -0.889138 -0.288942 0.354890 0.219590 -0.881877 -0.417221 0.471738 -0.278359 0.836648 -0.853958 -0.380539 0.354890 0.309954 -0.854316 -0.417221 0.498086 -0.227883 0.836648 -0.809839 -0.467134 0.354890 0.397785 -0.817125 -0.417221 0.519227 -0.174425 0.836648 -0.756420 -0.549438 0.354890 0.481235 -0.770934 -0.417221 0.534648 -0.119045 0.836648 -0.694669 -0.625690 0.354890 0.559384 -0.716252 -0.417221 0.544181 -0.062355 0.836648 -0.625266 -0.695051 0.354890 0.630717 -0.654310 -0.417221 0.547713 -0.005525 0.836648 -0.549733 -0.756206 0.354890 0.695820 -0.584603 -0.417221 0.545276 0.051910 0.836648 -0.467449 -0.809657 0.354890 0.753258 -0.508457 -0.417221 0.536832 0.108773 0.836648 -0.380017 -0.854190 0.354890 0.801973 -0.427512 -0.417221 0.522640 0.163915 0.836648 -0.289288 -0.889025 0.354890 0.842362 -0.341105 -0.417221 0.502582 0.217789 0.836648 -0.194518 -0.914448 0.354890 0.873473 -0.250941 -0.417221 0.476988 0.269263 0.836648 -0.097606 -0.929799 0.354890 0.894834 -0.158741 -0.417221 0.446399 0.317409 0.836648 -0.000381 -0.934908 0.354890 0.906543 -0.064082 -0.417221 0.410674 0.362446 0.836648 0.097606 -0.929799 0.354890 0.908266 0.031283 -0.417221 0.370425 0.403492 0.836648 0.194518 -0.914448 0.354890 0.899985 0.126304 -0.417221 0.326096 0.440093 0.836648 0.289288 -0.889025 0.354890 0.882011 0.219051 -0.417221 0.278647 0.471568 0.836648 0.380017 -0.854190 0.354890 0.854195 0.310286 -0.417221 0.227689 0.498175 0.836648 0.467449 -0.809657 0.354890 0.816970 0.398103 -0.417221 0.174223 0.519295 0.836648 0.549733 -0.756206 0.354890 0.771228 0.480764 -0.417221 0.119372 0.534575 0.836648 0.625266 -0.695051 0.354890 0.716593 0.558946 -0.417221 0.062687 0.544142 0.836648 0.694669 -0.625690 0.354890 0.654065 0.630972 -0.417221 0.005312 0.547716 0.836648 0.756420 -0.549438 0.354890 0.584333 0.696047 -0.417221 -0.052122 0.545256 0.836648 0.809839 -0.467134 0.354890 0.508917 0.752948 -0.417221 -0.108445 0.536899 0.836648 0.853958 -0.380539 0.354890 0.427200 0.802139 -0.417221 -0.164118 0.522576 0.836648 0.889138 -0.288942 0.354890 0.340777 0.842495 -0.417221 -0.217984 0.502497 0.836648 0.914524 -0.194163 0.354890 0.251474 0.873320 -0.417221 -0.268972 0.477153 0.836648 0.929739 -0.098174 0.354890 0.158559 0.894866 -0.417221 -0.317500 0.446335 0.836648 0.934908 -0.000190 0.354890 0.063897 0.906556 -0.417221 -0.362530 0.410600 0.836648 0.929779 0.097796 0.354890 -0.031468 0.908260 -0.417221 -0.403567 0.370343 0.836648 0.914409 0.194705 0.354890 -0.125587 0.900086 -0.417221 -0.439833 0.326447 0.836648 0.889255 0.288580 0.354890 -0.219231 0.881966 -0.417221 -0.471625 0.278551 0.836648 0.854112 0.380191 0.354890 -0.310460 0.854132 -0.417221 -0.498221 0.227587 0.836648 0.809562 0.467614 0.354890 -0.398269 0.816889 -0.417221 -0.519330 0.174117 0.836648 0.756094 0.549887 0.354890 -0.480921 0.771130 -0.417221 -0.534600 0.119263 0.836648 0.694923 0.625407 0.354890 -0.559092 0.716479 -0.417221 -0.544155 0.062576 0.836648 0.625549 0.694796 0.354890 -0.631105 0.653937 -0.417221 -0.547717 0.005200 0.836648 0.549284 0.756532 0.354890 -0.695582 0.584887 -0.417221 -0.545297 -0.051688 0.836648 0.467779 0.809467 0.354890 -0.753051 0.508763 -0.417221 -0.536877 -0.108554 0.836648 0.380365 0.854035 0.354890 -0.802226 0.427036 -0.417221 -0.522543 -0.164225 0.836648 0.288761 0.889196 0.354890 -0.842564 0.340605 -0.417221 -0.502453 -0.218087 0.836648 0.193976 0.914563 0.354890 -0.873371 0.251296 -0.417221 -0.477098 -0.269069 0.836648 0.097985 0.929759 0.354890 -0.894898 0.158377 -0.417221 -0.446270 -0.317590 0.836648 0.000000 0.934908 0.354890 -0.906569 0.063713 -0.417221 -0.410526 -0.362614 0.836648 -0.097985 0.929759 0.354890 -0.908285 -0.030745 -0.417221 -0.370664 -0.403272 0.836648 -0.193976 0.914563 0.354890 -0.900060 -0.125770 -0.417221 -0.326357 -0.439900 0.836648 -0.288761 0.889196 0.354890 -0.881921 -0.219410 -0.417221 -0.278455 -0.471681 0.836648 -0.380365 0.854035 0.354890 -0.854069 -0.310634 -0.417221 -0.227486 -0.498268 0.836648 -0.467779 0.809467 0.354890 -0.817206 -0.397618 -0.417221 -0.174530 -0.519191 0.836648 -0.549284 0.756532 0.354890 -0.771032 -0.481078 -0.417221 -0.119154 -0.534624 0.836648 -0.625549 0.694796 0.354890 -0.716365 -0.559238 -0.417221 -0.062465 -0.544168 0.836648 -0.694923 0.625407 0.354890 -0.654439 -0.630584 -0.417221 -0.005636 -0.547712 0.836648 -0.756094 0.549887 0.354890 -0.584745 -0.695701 -0.417221 0.051799 -0.545287 0.836648 -0.809562 0.467614 0.354890 -0.508610 -0.753155 -0.417221 0.108663 -0.536855 0.836648 -0.854112 0.380191 0.354890 -0.426873 -0.802313 -0.417221 0.164331 -0.522509 0.836648 -0.889255 0.288580 0.354890 -0.341276 -0.842293 -0.417221 0.217686 -0.502626 0.836648 -0.914409 0.194705 0.354890 -0.251118 -0.873422 -0.417221 0.269166 -0.477043 0.836648 -0.929779 0.097796 0.354890 0.557496 -0.351415 0.752134 0.209119 0.936220 0.282422 -0.803410 -0.000164 0.595426 0.591257 -0.291050 0.752134 0.109845 0.952981 0.282422 -0.798968 -0.084366 0.595426 0.618277 -0.228098 0.752134 0.010320 0.959235 0.282422 -0.785893 -0.166853 0.595426 0.638778 -0.162042 0.752134 -0.090272 0.955033 0.282422 -0.764077 -0.248301 0.595426 0.652243 -0.094201 0.752134 -0.189869 0.940313 0.282422 -0.733845 -0.327015 0.595426 0.658498 -0.025981 0.752134 -0.286460 0.915521 0.282422 -0.695932 -0.401430 0.595426 0.657594 0.043178 0.752134 -0.380835 0.880456 0.282422 -0.650027 -0.472158 0.595426 0.649447 0.111860 0.752134 -0.471016 0.835693 0.282422 -0.596961 -0.537685 0.595426 0.634147 0.179311 0.752134 -0.556008 0.781724 0.282422 -0.537320 -0.597289 0.595426 0.612106 0.244175 0.752134 -0.634157 0.719780 0.282422 -0.472411 -0.649843 0.595426 0.583143 0.306983 0.752134 -0.706102 0.649352 0.282422 -0.401701 -0.695776 0.595426 0.547758 0.366410 0.752134 -0.770270 0.571771 0.282422 -0.326566 -0.734045 0.595426 0.506760 0.421294 0.752134 -0.825465 0.488718 0.282422 -0.248599 -0.763981 0.595426 0.459814 0.472086 0.752134 -0.872140 0.399511 0.282422 -0.167159 -0.785828 0.595426 0.407804 0.517678 0.752134 -0.909209 0.305905 0.282422 -0.083878 -0.799019 0.595426 0.351756 0.557281 0.752134 -0.936092 0.209691 0.282422 -0.000327 -0.803410 0.595426 0.291411 0.591079 0.752134 -0.952913 0.110427 0.282422 0.083878 -0.799019 0.595426 0.227857 0.618365 0.752134 -0.959239 0.009946 0.282422 0.167159 -0.785828 0.595426 0.161793 0.638841 0.752134 -0.954998 -0.090643 0.282422 0.248599 -0.763981 0.595426 0.094599 0.652185 0.752134 -0.940428 -0.189294 0.282422 0.326566 -0.734045 0.595426 0.025725 0.658508 0.752134 -0.915410 -0.286816 0.282422 0.401701 -0.695776 0.595426 -0.043433 0.657578 0.752134 -0.880308 -0.381177 0.282422 0.472411 -0.649843 0.595426 -0.111464 0.649516 0.752134 -0.835980 -0.470505 0.282422 0.537320 -0.597289 0.595426 -0.178924 0.634256 0.752134 -0.782064 -0.555530 0.282422 0.596961 -0.537685 0.595426 -0.244413 0.612011 0.752134 -0.719533 -0.634437 0.282422 0.650027 -0.472158 0.595426 -0.307210 0.583024 0.752134 -0.649077 -0.706355 0.282422 0.695932 -0.401430 0.595426 -0.366075 0.547981 0.752134 -0.572241 -0.769921 0.282422 0.733845 -0.327015 0.595426 -0.421491 0.506596 0.752134 -0.488396 -0.825655 0.282422 0.764077 -0.248301 0.595426 -0.472265 0.459631 0.752134 -0.399172 -0.872296 0.282422 0.785893 -0.166853 0.595426 -0.517429 0.408120 0.752134 -0.306460 -0.909022 0.282422 0.798968 -0.084366 0.595426 -0.557353 0.351642 0.752134 -0.209500 -0.936134 0.282422 0.803410 -0.000164 0.595426 -0.591138 0.291291 0.752134 -0.110233 -0.952936 0.282422 0.799002 0.084040 0.595426 -0.618412 0.227731 0.752134 -0.009751 -0.959241 0.282422 0.785794 0.167319 0.595426 -0.638712 0.162302 0.752134 0.089883 -0.955070 0.282422 0.764178 0.247990 0.595426 -0.652205 0.094466 0.752134 0.189486 -0.940390 0.282422 0.733978 0.326716 0.595426 -0.658513 0.025591 0.752134 0.287002 -0.915351 0.282422 0.695694 0.401842 0.595426 -0.657569 -0.043567 0.752134 0.381357 -0.880230 0.282422 0.649746 0.472543 0.595426 -0.649493 -0.111596 0.752134 0.470675 -0.835884 0.282422 0.597180 0.537442 0.595426 -0.634220 -0.179053 0.752134 0.555690 -0.781951 0.282422 0.537563 0.597070 0.595426 -0.611961 -0.244537 0.752134 0.634583 -0.719404 0.282422 0.472025 0.650123 0.595426 -0.583268 -0.306745 0.752134 0.705838 -0.649639 0.282422 0.401984 0.695612 0.595426 -0.547907 -0.366187 0.752134 0.770037 -0.572084 0.282422 0.326865 0.733912 0.595426 -0.506510 -0.421595 0.752134 0.825755 -0.488228 0.282422 0.248146 0.764128 0.595426 -0.459535 -0.472359 0.752134 0.872377 -0.398994 0.282422 0.166693 0.785927 0.595426 -0.408015 -0.517512 0.752134 0.909084 -0.306275 0.282422 0.084203 0.798985 0.595426 -0.351529 -0.557425 0.752134 0.936177 -0.209310 0.282422 0.000000 0.803410 0.595426 -0.291171 -0.591197 0.752134 0.952958 -0.110039 0.282422 -0.084203 0.798985 0.595426 -0.228224 -0.618230 0.752134 0.959233 -0.010515 0.282422 -0.166693 0.785927 0.595426 -0.162172 -0.638745 0.752134 0.955052 0.090077 0.282422 -0.248146 0.764128 0.595426 -0.094334 -0.652224 0.752134 0.940351 0.189678 0.282422 -0.326865 0.733912 0.595426 -0.025456 -0.658518 0.752134 0.915293 0.287188 0.282422 -0.401984 0.695612 0.595426 0.043044 -0.657603 0.752134 0.880534 0.380656 0.282422 -0.472025 0.650123 0.595426 0.111728 -0.649470 0.752134 0.835789 0.470845 0.282422 -0.537563 0.597070 0.595426 0.179182 -0.634183 0.752134 0.781838 0.555849 0.282422 -0.597180 0.537442 0.595426 0.244050 -0.612155 0.752134 0.719909 0.634010 0.282422 -0.649746 0.472543 0.595426 0.306864 -0.583206 0.752134 0.649495 0.705970 0.282422 -0.695694 0.401842 0.595426 0.366298 -0.547832 0.752134 0.571928 0.770154 0.282422 -0.733978 0.326716 0.595426 0.421698 -0.506424 0.752134 0.488060 0.825854 0.282422 -0.764178 0.247990 0.595426 0.471992 -0.459911 0.752134 0.399689 0.872059 0.282422 -0.785794 0.167319 0.595426 0.517595 -0.407909 0.752134 0.306090 0.909146 0.282422 -0.799002 0.084040 0.595426 -0.060090 -0.740774 -0.669061 0.066565 -0.671754 0.737777 -0.995971 -0.000203 0.089676 0.017879 -0.742992 -0.669061 0.136603 -0.661078 0.737777 -0.990465 -0.104587 0.089676 0.094914 -0.737122 -0.669061 0.204493 -0.643325 0.737777 -0.974255 -0.206844 0.089676 0.171647 -0.723114 -0.669061 0.270792 -0.618350 0.737777 -0.947211 -0.307814 0.089676 0.246489 -0.701142 -0.669061 0.334108 -0.586563 0.737777 -0.909733 -0.405393 0.089676 0.317945 -0.671765 -0.669061 0.393196 -0.548709 0.737777 -0.862733 -0.497645 0.089676 0.386600 -0.634742 -0.669061 0.448539 -0.504478 0.737777 -0.805825 -0.585324 0.089676 0.450996 -0.590728 -0.669061 0.498941 -0.454689 0.737777 -0.740041 -0.666557 0.089676 0.510425 -0.540207 -0.669061 0.543848 -0.399892 0.737777 -0.666105 -0.740448 0.089676 0.563747 -0.484300 -0.669061 0.582424 -0.341273 0.737777 -0.585638 -0.805597 0.089676 0.611400 -0.422548 -0.669061 0.614984 -0.278351 0.737777 -0.497980 -0.862539 0.089676 0.652319 -0.356141 -0.669061 0.640770 -0.212364 0.737777 -0.404837 -0.909981 0.089676 0.685767 -0.286498 -0.669061 0.659354 -0.144696 0.737777 -0.308183 -0.947091 0.089676 0.712017 -0.213047 -0.669061 0.670888 -0.074794 0.737777 -0.207223 -0.974175 0.089676 0.730424 -0.137249 -0.669061 0.675032 -0.004069 0.737777 -0.103981 -0.990528 0.089676 0.740737 -0.060543 -0.669061 0.671795 0.066155 0.737777 -0.000406 -0.995971 0.089676 0.743003 0.017425 -0.669061 0.661161 0.136199 0.737777 0.103981 -0.990528 0.089676 0.737085 0.095201 -0.669061 0.643245 0.204744 0.737777 0.207223 -0.974175 0.089676 0.723047 0.171929 -0.669061 0.618244 0.271033 0.737777 0.308183 -0.947091 0.089676 0.701292 0.246061 -0.669061 0.586767 0.333750 0.737777 0.404837 -0.909981 0.089676 0.671641 0.318206 -0.669061 0.548556 0.393409 0.737777 0.497980 -0.862539 0.089676 0.634592 0.386847 -0.669061 0.504303 0.448735 0.737777 0.585638 -0.805597 0.089676 0.591003 0.450635 -0.669061 0.454994 0.498664 0.737777 0.666105 -0.740448 0.089676 0.540519 0.510095 -0.669061 0.400224 0.543604 0.737777 0.740041 -0.666557 0.089676 0.484080 0.563936 -0.669061 0.341047 0.582556 0.737777 0.805825 -0.585324 0.089676 0.422310 0.611565 -0.669061 0.278112 0.615092 0.737777 0.862733 -0.497645 0.089676 0.356540 0.652102 -0.669061 0.212755 0.640640 0.737777 0.909733 -0.405393 0.089676 0.286231 0.685878 -0.669061 0.144440 0.659410 0.737777 0.947211 -0.307814 0.089676 0.212770 0.712100 -0.669061 0.074533 0.670917 0.737777 0.974255 -0.206844 0.089676 0.137695 0.730340 -0.669061 0.004481 0.675029 0.737777 0.990465 -0.104587 0.089676 0.060392 0.740749 -0.669061 -0.066292 0.671781 0.737777 0.995971 -0.000203 0.089676 -0.017576 0.742999 -0.669061 -0.136334 0.661134 0.737777 0.990507 0.104183 0.089676 -0.095351 0.737065 -0.669061 -0.204875 0.643204 0.737777 0.974133 0.207422 0.089676 -0.171353 0.723184 -0.669061 -0.270540 0.618460 0.737777 0.947336 0.307428 0.089676 -0.246204 0.701242 -0.669061 -0.333869 0.586699 0.737777 0.909898 0.405023 0.089676 -0.318343 0.671576 -0.669061 -0.393521 0.548476 0.737777 0.862438 0.498156 0.089676 -0.386976 0.634513 -0.669061 -0.448838 0.504212 0.737777 0.805478 0.585802 0.089676 -0.450755 0.590912 -0.669061 -0.498756 0.454892 0.737777 0.740312 0.666256 0.089676 -0.510205 0.540415 -0.669061 -0.543685 0.400114 0.737777 0.666406 0.740176 0.089676 -0.564034 0.483965 -0.669061 -0.582626 0.340928 0.737777 0.585160 0.805944 0.089676 -0.611228 0.422797 -0.669061 -0.614870 0.278602 0.737777 0.498332 0.862336 0.089676 -0.652174 0.356407 -0.669061 -0.640684 0.212625 0.737777 0.405208 0.909816 0.089676 -0.685936 0.286092 -0.669061 -0.659440 0.144306 0.737777 0.307621 0.947274 0.089676 -0.712143 0.212625 -0.669061 -0.670932 0.074397 0.737777 0.206646 0.974298 0.089676 -0.730368 0.137547 -0.669061 -0.675030 0.004344 0.737777 0.104385 0.990486 0.089676 -0.740762 0.060241 -0.669061 -0.671768 -0.066428 0.737777 0.000000 0.995971 0.089676 -0.742996 -0.017728 -0.669061 -0.661106 -0.136469 0.737777 -0.104385 0.990486 0.089676 -0.737141 -0.094764 -0.669061 -0.643367 -0.204362 0.737777 -0.206646 0.974298 0.089676 -0.723149 -0.171500 -0.669061 -0.618405 -0.270666 0.737777 -0.307621 0.947274 0.089676 -0.701192 -0.246347 -0.669061 -0.586631 -0.333989 0.737777 -0.405208 0.909816 0.089676 -0.671511 -0.318480 -0.669061 -0.548396 -0.393633 0.737777 -0.498332 0.862336 0.089676 -0.634821 -0.386470 -0.669061 -0.504569 -0.448436 0.737777 -0.585160 0.805944 0.089676 -0.590820 -0.450876 -0.669061 -0.454791 -0.498849 0.737777 -0.666406 0.740176 0.089676 -0.540311 -0.510315 -0.669061 -0.400003 -0.543767 0.737777 -0.740312 0.666256 0.089676 -0.484414 -0.563649 -0.669061 -0.341392 -0.582354 0.737777 -0.805478 0.585802 0.089676 -0.422672 -0.611314 -0.669061 -0.278477 -0.614927 0.737777 -0.862438 0.498156 0.089676 -0.356274 -0.652247 -0.669061 -0.212494 -0.640727 0.737777 -0.909898 0.405023 0.089676 -0.285952 -0.685995 -0.669061 -0.144171 -0.659469 0.737777 -0.947336 0.307428 0.089676 -0.213192 -0.711973 -0.669061 -0.074931 -0.670873 0.737777 -0.974133 0.207422 0.089676 -0.137398 -0.730396 -0.669061 -0.004206 -0.675031 0.737777 -0.990507 0.104183 0.089676 -0.806481 -0.409936 -0.426077 0.362509 -0.912114 0.191401 -0.467093 -0.000095 0.884208 -0.759075 -0.492203 -0.426077 0.456109 -0.869097 0.191401 -0.464510 -0.049049 0.884208 -0.703877 -0.568345 -0.426077 0.543868 -0.817052 0.191401 -0.456909 -0.097006 0.884208 -0.640433 -0.638987 -0.426077 0.626505 -0.755551 0.191401 -0.444225 -0.144359 0.884208 -0.569936 -0.702589 -0.426077 0.702242 -0.685727 0.191401 -0.426649 -0.190122 0.884208 -0.493919 -0.757960 -0.426077 0.769635 -0.609120 0.191401 -0.404606 -0.233387 0.884208 -0.411759 -0.805551 -0.426077 0.829236 -0.525103 0.191401 -0.377918 -0.274507 0.884208 -0.325064 -0.844270 -0.426077 0.879704 -0.435301 0.191401 -0.347066 -0.312603 0.884208 -0.234788 -0.873690 -0.426077 0.920482 -0.340704 0.191401 -0.312391 -0.347257 0.884208 -0.142819 -0.893343 -0.426077 0.950877 -0.243306 0.191401 -0.274654 -0.377811 0.884208 -0.048404 -0.903391 -0.426077 0.971141 -0.142307 0.191401 -0.233544 -0.404516 0.884208 0.046545 -0.903489 -0.426077 0.980707 -0.039740 0.191401 -0.189862 -0.426765 0.884208 0.140086 -0.893775 -0.426077 0.979534 0.062284 0.191401 -0.144532 -0.444169 0.884208 0.232989 -0.874171 -0.426077 0.967611 0.164603 0.191401 -0.097184 -0.456871 0.884208 0.323325 -0.844938 -0.426077 0.945031 0.265109 0.191401 -0.048765 -0.464540 0.884208 0.409443 -0.806731 -0.426077 0.912336 0.361952 0.191401 -0.000190 -0.467093 0.884208 0.491739 -0.759376 -0.426077 0.869376 0.455578 0.191401 0.048765 -0.464540 0.884208 0.568619 -0.703656 -0.426077 0.816840 0.544186 0.191401 0.097184 -0.456871 0.884208 0.639236 -0.640185 -0.426077 0.755307 0.626799 0.191401 0.144532 -0.444169 0.884208 0.702241 -0.570365 -0.426077 0.686156 0.701823 0.191401 0.189862 -0.426765 0.884208 0.758152 -0.493624 -0.426077 0.608821 0.769872 0.191401 0.233544 -0.404516 0.884208 0.805712 -0.411446 -0.426077 0.524780 0.829440 0.191401 0.274654 -0.377811 0.884208 0.844072 -0.325579 -0.426077 0.435838 0.879438 0.191401 0.312391 -0.347257 0.884208 0.873546 -0.235322 -0.426077 0.341266 0.920273 0.191401 0.347066 -0.312603 0.884208 0.893398 -0.142472 -0.426077 0.242936 0.950972 0.191401 0.377918 -0.274507 0.884208 0.903410 -0.048053 -0.426077 0.141929 0.971196 0.191401 0.404606 -0.233387 0.884208 0.903517 0.045992 -0.426077 0.040340 0.980683 0.191401 0.426649 -0.190122 0.884208 0.893721 0.140434 -0.426077 -0.062665 0.979509 0.191401 0.444225 -0.144359 0.884208 0.874080 0.233329 -0.426077 -0.164979 0.967547 0.191401 0.456909 -0.097006 0.884208 0.845135 0.322809 -0.426077 -0.264532 0.945192 0.191401 0.464510 -0.049049 0.884208 0.806648 0.409607 -0.426077 -0.362138 0.912262 0.191401 0.467093 -0.000095 0.884208 0.759275 0.491894 -0.426077 -0.455755 0.869283 0.191401 0.464530 0.048860 0.884208 0.703540 0.568762 -0.426077 -0.544352 0.816729 0.191401 0.456851 0.097277 0.884208 0.640694 0.638726 -0.426077 -0.626198 0.755806 0.191401 0.444284 0.144178 0.884208 0.570222 0.702357 -0.426077 -0.701963 0.686013 0.191401 0.426726 0.189948 0.884208 0.493470 0.758252 -0.426077 -0.769996 0.608664 0.191401 0.404468 0.233626 0.884208 0.411282 0.805795 -0.426077 -0.829547 0.524611 0.191401 0.377755 0.274731 0.884208 0.325408 0.844138 -0.426077 -0.879526 0.435659 0.191401 0.347193 0.312462 0.884208 0.235144 0.873594 -0.426077 -0.920343 0.341079 0.191401 0.312533 0.347130 0.884208 0.142290 0.893427 -0.426077 -0.951021 0.242742 0.191401 0.274430 0.377973 0.884208 0.048772 0.903372 -0.426077 -0.971083 0.142702 0.191401 0.233709 0.404420 0.884208 -0.046176 0.903508 -0.426077 -0.980691 0.040140 0.191401 0.190035 0.426688 0.884208 -0.140616 0.893692 -0.426077 -0.979497 -0.062864 0.191401 0.144269 0.444255 0.884208 -0.233507 0.874033 -0.426077 -0.967513 -0.165177 0.191401 0.096913 0.456928 0.884208 -0.322981 0.845069 -0.426077 -0.945138 -0.264724 0.191401 0.048955 0.464520 0.884208 -0.409772 0.806564 -0.426077 -0.912188 -0.362323 0.191401 0.000000 0.467093 0.884208 -0.492049 0.759175 -0.426077 -0.869190 -0.455932 0.191401 -0.048955 0.464520 0.884208 -0.568202 0.703992 -0.426077 -0.817162 -0.543701 0.191401 -0.096913 0.456928 0.884208 -0.638856 0.640564 -0.426077 -0.755678 -0.626351 0.191401 -0.144269 0.444255 0.884208 -0.702473 0.570079 -0.426077 -0.685870 -0.702102 0.191401 -0.190035 0.426688 0.884208 -0.758353 0.493315 -0.426077 -0.608507 -0.770120 0.191401 -0.233709 0.404420 0.884208 -0.805468 0.411923 -0.426077 -0.525271 -0.829129 0.191401 -0.274430 0.377973 0.884208 -0.844204 0.325236 -0.426077 -0.435480 -0.879615 0.191401 -0.312533 0.347130 0.884208 -0.873642 0.234966 -0.426077 -0.340891 -0.920412 0.191401 -0.347193 0.312462 0.884208 -0.893314 0.143001 -0.426077 -0.243499 -0.950828 0.191401 -0.377755 0.274731 0.884208 -0.903381 0.048588 -0.426077 -0.142505 -0.971112 0.191401 -0.404468 0.233626 0.884208 -0.903498 -0.046360 -0.426077 -0.039940 -0.980699 0.191401 -0.426726 0.189948 0.884208 -0.893664 -0.140798 -0.426077 0.063064 -0.979484 0.191401 -0.444284 0.144178 0.884208 -0.874218 -0.232811 -0.426077 0.164406 -0.967645 0.191401 -0.456851 0.097277 0.884208 -0.845003 -0.323153 -0.426077 0.264917 -0.945085 0.191401 -0.464530 0.048860 0.884208 0.029401 -0.998765 0.040062 0.588246 0.049692 0.807154 -0.808147 -0.000165 0.588980 0.133916 -0.990183 0.040062 0.579798 0.111071 0.807154 -0.803679 -0.084863 0.588980 0.235986 -0.970930 0.040062 0.565135 0.170661 0.807154 -0.790527 -0.167837 0.588980 0.336447 -0.940850 0.040062 0.544136 0.228951 0.807154 -0.768583 -0.249765 0.588980 0.433202 -0.900406 0.040062 0.517143 0.284720 0.807154 -0.738173 -0.328943 0.588980 0.524335 -0.850569 0.040062 0.484792 0.336867 0.807154 -0.700036 -0.403797 0.588980 0.610593 -0.790931 0.040062 0.446816 0.385822 0.807154 -0.653860 -0.474942 0.588980 0.690125 -0.722580 0.040062 0.403918 0.430526 0.807154 -0.600481 -0.540855 0.588980 0.762056 -0.646271 0.040062 0.356571 0.470489 0.807154 -0.540489 -0.600811 0.588980 0.825029 -0.563668 0.040062 0.305802 0.504963 0.807154 -0.475196 -0.653675 0.588980 0.879562 -0.474094 0.040062 0.251194 0.534232 0.807154 -0.404069 -0.699879 0.588980 0.924407 -0.379299 0.040062 0.193819 0.557617 0.807154 -0.328492 -0.738374 0.588980 0.958788 -0.281285 0.040062 0.134884 0.574725 0.807154 -0.250064 -0.768486 0.588980 0.982988 -0.179248 0.040062 0.073906 0.585697 0.807154 -0.168144 -0.790462 0.588980 0.996361 -0.075236 0.040062 0.012114 0.590217 0.807154 -0.084372 -0.803731 0.588980 0.998782 0.028790 0.040062 -0.049333 0.588276 0.807154 -0.000329 -0.808147 0.588980 0.990264 0.133311 0.040062 -0.110717 0.579866 0.807154 0.084372 -0.803731 0.588980 0.970838 0.236364 0.040062 -0.170881 0.565068 0.807154 0.168144 -0.790462 0.588980 0.940719 0.336813 0.040062 -0.229163 0.544047 0.807154 0.250064 -0.768486 0.588980 0.900671 0.432652 0.040062 -0.284404 0.517317 0.807154 0.328492 -0.738374 0.588980 0.850365 0.524665 0.040062 -0.337056 0.484661 0.807154 0.404069 -0.699879 0.588980 0.790693 0.610900 0.040062 -0.385996 0.446665 0.807154 0.475196 -0.653675 0.588980 0.723002 0.689684 0.040062 -0.430279 0.404181 0.807154 0.540489 -0.600811 0.588980 0.646736 0.761661 0.040062 -0.470271 0.356858 0.807154 0.600481 -0.540855 0.588980 0.563347 0.825249 0.040062 -0.505082 0.305605 0.807154 0.653860 -0.474942 0.588980 0.473752 0.879746 0.040062 -0.534330 0.250986 0.807154 0.700036 -0.403797 0.588980 0.379864 0.924175 0.040062 -0.557499 0.194160 0.807154 0.738173 -0.328943 0.588980 0.280912 0.958897 0.040062 -0.574777 0.134661 0.807154 0.768583 -0.249765 0.588980 0.178865 0.983058 0.040062 -0.585725 0.073678 0.807154 0.790527 -0.167837 0.588980 0.075845 0.996315 0.040062 -0.590209 0.012474 0.807154 0.803679 -0.084863 0.588980 -0.028994 0.998776 0.040062 -0.588266 -0.049453 0.807154 0.808147 -0.000165 0.588980 -0.133513 0.990237 0.040062 -0.579843 -0.110835 0.807154 0.803714 0.084536 0.588980 -0.236562 0.970790 0.040062 -0.565034 -0.170996 0.807154 0.790428 0.168305 0.588980 -0.336064 0.940987 0.040062 -0.544229 -0.228730 0.807154 0.768685 0.249452 0.588980 -0.432835 0.900583 0.040062 -0.517259 -0.284509 0.807154 0.738307 0.328642 0.588980 -0.524839 0.850258 0.040062 -0.484592 -0.337155 0.807154 0.699796 0.404212 0.588980 -0.611061 0.790569 0.040062 -0.446587 -0.386087 0.807154 0.653578 0.475330 0.588980 -0.689831 0.722861 0.040062 -0.404093 -0.430362 0.807154 0.600701 0.540611 0.588980 -0.761793 0.646581 0.040062 -0.356763 -0.470343 0.807154 0.540733 0.600591 0.588980 -0.825363 0.563179 0.040062 -0.305503 -0.505144 0.807154 0.474809 0.653956 0.588980 -0.879369 0.474453 0.040062 -0.251411 -0.534130 0.807154 0.404355 0.699714 0.588980 -0.924252 0.379676 0.040062 -0.194046 -0.557538 0.807154 0.328793 0.738240 0.588980 -0.958954 0.280716 0.040062 -0.134544 -0.574805 0.807154 0.249609 0.768634 0.588980 -0.983094 0.178665 0.040062 -0.073559 -0.585740 0.807154 0.167676 0.790561 0.588980 -0.996330 0.075642 0.040062 -0.012354 -0.590212 0.807154 0.084700 0.803697 0.588980 -0.998771 -0.029197 0.040062 0.049572 -0.588256 0.807154 0.000000 0.808147 0.588980 -0.990210 -0.133715 0.040062 0.110953 -0.579821 0.807154 -0.084700 0.803697 0.588980 -0.970978 -0.235788 0.040062 0.170546 -0.565170 0.807154 -0.167676 0.790561 0.588980 -0.940918 -0.336255 0.040062 0.228841 -0.544183 0.807154 -0.249609 0.768634 0.588980 -0.900494 -0.433018 0.040062 0.284614 -0.517201 0.807154 -0.328793 0.738240 0.588980 -0.850152 -0.525012 0.040062 0.337253 -0.484523 0.807154 -0.404355 0.699714 0.588980 -0.791055 -0.610432 0.040062 0.385731 -0.446894 0.807154 -0.474809 0.653956 0.588980 -0.722721 -0.689978 0.040062 0.430444 -0.404006 0.807154 -0.540733 0.600591 0.588980 -0.646426 -0.761924 0.040062 0.470416 -0.356667 0.807154 -0.600701 0.540611 0.588980 -0.563836 -0.824915 0.040062 0.504901 -0.305905 0.807154 -0.653578 0.475330 0.588980 -0.474274 -0.879466 0.040062 0.534181 -0.251303 0.807154 -0.699796 0.404212 0.588980 -0.379487 -0.924329 0.040062 0.557578 -0.193933 0.807154 -0.738307 0.328642 0.588980 -0.280521 -0.959011 0.040062 0.574832 -0.134426 0.807154 -0.768685 0.249452 0.588980 -0.179448 -0.982951 0.040062 0.585682 -0.074025 0.807154 -0.790428 0.168305 0.588980 -0.075439 -0.996345 0.040062 0.590214 -0.012234 0.807154 -0.803714 0.084536 0.588980 -0.109641 -0.684731 0.720502 -0.103285 0.728796 0.676896 -0.988590 -0.000201 -0.150628 -0.037272 -0.692451 0.720502 -0.179099 0.713957 0.676896 -0.983125 -0.103812 -0.150628 0.034814 -0.692579 0.720502 -0.252249 0.691507 0.676896 -0.967036 -0.205311 -0.150628 0.107210 -0.685116 0.720502 -0.323335 0.661261 0.676896 -0.940192 -0.305533 -0.150628 0.178424 -0.670106 0.720502 -0.390859 0.623731 0.676896 -0.902992 -0.402389 -0.150628 0.247026 -0.647963 0.720502 -0.453498 0.579785 0.676896 -0.856340 -0.493957 -0.150628 0.313576 -0.618504 0.720502 -0.511766 0.529062 0.676896 -0.799853 -0.580987 -0.150628 0.376673 -0.582233 0.720502 -0.564397 0.472512 0.676896 -0.734557 -0.661618 -0.150628 0.435621 -0.539548 0.720502 -0.610811 0.410756 0.676896 -0.661169 -0.734961 -0.150628 0.489279 -0.491410 0.720502 -0.650153 0.345127 0.676896 -0.581298 -0.799627 -0.150628 0.538087 -0.437424 0.720502 -0.682744 0.275086 0.676896 -0.494290 -0.856148 -0.150628 0.580969 -0.378619 0.720502 -0.707815 0.202014 0.676896 -0.401837 -0.903237 -0.150628 0.617135 -0.316261 0.720502 -0.724962 0.127443 0.676896 -0.305899 -0.940073 -0.150628 0.646883 -0.249839 0.720502 -0.734326 0.050759 0.676896 -0.205688 -0.966956 -0.150628 0.669505 -0.180665 0.720502 -0.735602 -0.026483 0.676896 -0.103211 -0.983188 -0.150628 0.684664 -0.110059 0.720502 -0.728859 -0.102840 0.676896 -0.000403 -0.988590 -0.150628 0.692428 -0.037695 0.720502 -0.714066 -0.178663 0.676896 0.103211 -0.983188 -0.150628 0.692565 0.035084 0.720502 -0.691409 -0.252518 0.676896 0.205688 -0.966956 -0.150628 0.685074 0.107476 0.720502 -0.661135 -0.323592 0.676896 0.305899 -0.940073 -0.150628 0.670215 0.178015 0.720502 -0.623970 -0.390478 0.676896 0.401837 -0.903237 -0.150628 0.647867 0.247278 0.720502 -0.579609 -0.453724 0.676896 0.494290 -0.856148 -0.150628 0.618382 0.313817 0.720502 -0.528863 -0.511972 0.676896 0.581298 -0.799627 -0.150628 0.582463 0.376317 0.720502 -0.472856 -0.564108 0.676896 0.661169 -0.734961 -0.150628 0.539814 0.435291 0.720502 -0.411129 -0.610560 0.676896 0.734557 -0.661618 -0.150628 0.491219 0.489470 0.720502 -0.344874 -0.650287 0.676896 0.799853 -0.580987 -0.150628 0.437214 0.538258 0.720502 -0.274820 -0.682851 0.676896 0.856340 -0.493957 -0.150628 0.378974 0.580738 0.720502 -0.202447 -0.707691 0.676896 0.902992 -0.402389 -0.150628 0.316021 0.617258 0.720502 -0.127160 -0.725011 0.676896 0.940192 -0.305533 -0.150628 0.249588 0.646980 0.720502 -0.050474 -0.734346 0.676896 0.967036 -0.205311 -0.150628 0.181074 0.669395 0.720502 0.026033 -0.735618 0.676896 0.983125 -0.103812 -0.150628 0.109920 0.684686 0.720502 0.102988 -0.728838 0.676896 0.988590 -0.000201 -0.150628 0.037554 0.692436 0.720502 0.178808 -0.714030 0.676896 0.983167 0.103411 -0.150628 -0.035225 0.692558 0.720502 0.252659 -0.691357 0.676896 0.966914 0.205885 -0.150628 -0.106931 0.685159 0.720502 0.323065 -0.661393 0.676896 0.940316 0.305150 -0.150628 -0.178151 0.670179 0.720502 0.390605 -0.623890 0.676896 0.903156 0.402021 -0.150628 -0.247410 0.647816 0.720502 0.453842 -0.579516 0.676896 0.856047 0.494464 -0.150628 -0.313943 0.618318 0.720502 0.512080 -0.528759 0.676896 0.799509 0.581461 -0.150628 -0.376436 0.582386 0.720502 0.564205 -0.472741 0.676896 0.734826 0.661318 -0.150628 -0.435401 0.539725 0.720502 0.610644 -0.411005 0.676896 0.661468 0.734691 -0.150628 -0.489570 0.491120 0.720502 0.650357 -0.344742 0.676896 0.580824 0.799972 -0.150628 -0.537909 0.437643 0.720502 0.682632 -0.275364 0.676896 0.494639 0.855946 -0.150628 -0.580815 0.378856 0.720502 0.707732 -0.202302 0.676896 0.402205 0.903074 -0.150628 -0.617323 0.315896 0.720502 0.725037 -0.127013 0.676896 0.305342 0.940254 -0.150628 -0.647031 0.249456 0.720502 0.734356 -0.050324 0.676896 0.205114 0.967078 -0.150628 -0.669432 0.180938 0.720502 0.735613 0.026183 0.676896 0.103611 0.983146 -0.150628 -0.684709 0.109780 0.720502 0.728817 0.103136 0.676896 0.000000 0.988590 -0.150628 -0.692443 0.037413 0.720502 0.713994 0.178954 0.676896 -0.103611 0.983146 -0.150628 -0.692586 -0.034673 0.720502 0.691558 0.252108 0.676896 -0.205114 0.967078 -0.150628 -0.685138 -0.107070 0.720502 0.661327 0.323200 0.676896 -0.305342 0.940254 -0.150628 -0.670143 -0.178288 0.720502 0.623811 0.390732 0.676896 -0.402205 0.903074 -0.150628 -0.647766 -0.247542 0.720502 0.579424 0.453960 0.676896 -0.494639 0.855946 -0.150628 -0.618568 -0.313450 0.720502 0.529166 0.511658 0.676896 -0.580824 0.799972 -0.150628 -0.582309 -0.376554 0.720502 0.472626 0.564301 0.676896 -0.661468 0.734691 -0.150628 -0.539637 -0.435511 0.720502 0.410881 0.610728 0.676896 -0.734826 0.661318 -0.150628 -0.491510 -0.489179 0.720502 0.345259 0.650082 0.676896 -0.799509 0.581461 -0.150628 -0.437533 -0.537998 0.720502 0.275225 0.682688 0.676896 -0.856047 0.494464 -0.150628 -0.378737 -0.580892 0.720502 0.202158 0.707774 0.676896 -0.903156 0.402021 -0.150628 -0.315770 -0.617387 0.720502 0.126865 0.725063 0.676896 -0.940316 0.305150 -0.150628 -0.249971 -0.646832 0.720502 0.050909 0.734316 0.676896 -0.966914 0.205885 -0.150628 -0.180802 -0.669469 0.720502 -0.026333 0.735607 0.676896 -0.983167 0.103411 -0.150628 -0.484457 -0.284329 -0.827320 0.143833 -0.958727 0.245265 -0.862910 -0.000176 0.505358 -0.451989 -0.333538 -0.827320 0.243523 -0.938372 0.245265 -0.858139 -0.090614 0.505358 -0.414921 -0.378658 -0.827320 0.339622 -0.908021 0.245265 -0.844096 -0.179210 0.505358 -0.372950 -0.420059 -0.827320 0.432918 -0.867425 0.245265 -0.820664 -0.266690 0.505358 -0.326871 -0.456833 -0.827320 0.521446 -0.817275 0.245265 -0.788194 -0.351233 0.505358 -0.277680 -0.488298 -0.827320 0.603473 -0.758726 0.245265 -0.747472 -0.431160 0.505358 -0.224973 -0.514712 -0.827320 0.679669 -0.691300 0.245265 -0.698167 -0.507125 0.505358 -0.169789 -0.535456 -0.827320 0.748379 -0.616258 0.245265 -0.641172 -0.577505 0.505358 -0.112734 -0.550302 -0.827320 0.808845 -0.534429 0.245265 -0.577114 -0.641524 0.505358 -0.054997 -0.559032 -0.827320 0.859956 -0.447573 0.245265 -0.507397 -0.697970 0.505358 0.003897 -0.561717 -0.827320 0.902128 -0.354978 0.245265 -0.431450 -0.747305 0.505358 0.062747 -0.558215 -0.827320 0.934364 -0.258474 0.245265 -0.350751 -0.788408 0.505358 0.120358 -0.548685 -0.827320 0.956148 -0.160079 0.245265 -0.267010 -0.820561 0.505358 0.177201 -0.533049 -0.827320 0.967660 -0.058986 0.245265 -0.179538 -0.844026 0.505358 0.232093 -0.511541 -0.827320 0.968513 0.042757 0.245265 -0.090090 -0.858194 0.505358 0.284033 -0.484630 -0.827320 0.958814 0.143247 0.245265 -0.000351 -0.862910 0.505358 0.333261 -0.452193 -0.827320 0.938520 0.242949 0.245265 0.090090 -0.858194 0.505358 0.378819 -0.414774 -0.827320 0.907889 0.339975 0.245265 0.179538 -0.844026 0.505358 0.420204 -0.372787 -0.827320 0.867257 0.433256 0.245265 0.267010 -0.820561 0.505358 0.456634 -0.327150 -0.827320 0.817594 0.520947 0.245265 0.350751 -0.788408 0.505358 0.488406 -0.277490 -0.827320 0.758492 0.603768 0.245265 0.431450 -0.747305 0.505358 0.514799 -0.224773 -0.827320 0.691035 0.679938 0.245265 0.507397 -0.697970 0.505358 0.535352 -0.170116 -0.827320 0.616715 0.748002 0.245265 0.577114 -0.641524 0.505358 0.550233 -0.113070 -0.827320 0.534923 0.808519 0.245265 0.641172 -0.577505 0.505358 0.559053 -0.054779 -0.827320 0.447238 0.860130 0.245265 0.698167 -0.507125 0.505358 0.561716 0.004115 -0.827320 0.354627 0.902266 0.245265 0.747472 -0.431160 0.505358 0.558253 0.062406 -0.827320 0.259045 0.934206 0.245265 0.788194 -0.351233 0.505358 0.548638 0.120572 -0.827320 0.159707 0.956211 0.245265 0.820664 -0.266690 0.505358 0.532980 0.177409 -0.827320 0.058609 0.967683 0.245265 0.844096 -0.179210 0.505358 0.511683 0.231780 -0.827320 -0.042165 0.968539 0.245265 0.858139 -0.090614 0.505358 0.484572 0.284132 -0.827320 -0.143443 0.958785 0.245265 0.862910 -0.000176 0.505358 0.452125 0.333354 -0.827320 -0.243140 0.938471 0.245265 0.858176 0.090264 0.505358 0.414697 0.378904 -0.827320 -0.340160 0.907820 0.245265 0.843989 0.179710 0.505358 0.373121 0.419907 -0.827320 -0.432565 0.867602 0.245265 0.820773 0.266356 0.505358 0.327057 0.456700 -0.827320 -0.521113 0.817487 0.245265 0.788337 0.350912 0.505358 0.277390 0.488463 -0.827320 -0.603922 0.758369 0.245265 0.747217 0.431603 0.505358 0.224668 0.514845 -0.827320 -0.680078 0.690897 0.245265 0.697866 0.507539 0.505358 0.170007 0.535387 -0.827320 -0.748128 0.616563 0.245265 0.641407 0.577244 0.505358 0.112958 0.550256 -0.827320 -0.808628 0.534758 0.245265 0.577375 0.641289 0.505358 0.054665 0.559064 -0.827320 -0.860221 0.447063 0.245265 0.506983 0.698270 0.505358 -0.003668 0.561719 -0.827320 -0.901984 0.355346 0.245265 0.431755 0.747129 0.505358 -0.062520 0.558241 -0.827320 -0.934259 0.258854 0.245265 0.351072 0.788265 0.505358 -0.120683 0.548614 -0.827320 -0.956243 0.159512 0.245265 0.266523 0.820719 0.505358 -0.177517 0.532944 -0.827320 -0.967695 0.058412 0.245265 0.179038 0.844132 0.505358 -0.231884 0.511636 -0.827320 -0.968530 -0.042362 0.245265 0.090439 0.858158 0.505358 -0.284230 0.484515 -0.827320 -0.958756 -0.143638 0.245265 0.000000 0.862910 0.505358 -0.333446 0.452057 -0.827320 -0.938421 -0.243331 0.245265 -0.090439 0.858158 0.505358 -0.378573 0.414998 -0.827320 -0.908090 -0.339437 0.245265 -0.179038 0.844132 0.505358 -0.419983 0.373036 -0.827320 -0.867513 -0.432742 0.245265 -0.266523 0.820719 0.505358 -0.456767 0.326964 -0.827320 -0.817381 -0.521280 0.245265 -0.351072 0.788265 0.505358 -0.488519 0.277291 -0.827320 -0.758246 -0.604076 0.245265 -0.431755 0.747129 0.505358 -0.514666 0.225078 -0.827320 -0.691438 -0.679528 0.245265 -0.506983 0.698270 0.505358 -0.535421 0.169898 -0.827320 -0.616411 -0.748253 0.245265 -0.577375 0.641289 0.505358 -0.550279 0.112846 -0.827320 -0.534593 -0.808737 0.245265 -0.641407 0.577244 0.505358 -0.559021 0.055110 -0.827320 -0.447748 -0.859864 0.245265 -0.697866 0.507539 0.505358 -0.561718 -0.003783 -0.827320 -0.355162 -0.902056 0.245265 -0.747217 0.431603 0.505358 -0.558228 -0.062634 -0.827320 -0.258664 -0.934311 0.245265 -0.788337 0.350912 0.505358 -0.548589 -0.120795 -0.827320 -0.159317 -0.956276 0.245265 -0.820773 0.266356 0.505358 -0.533085 -0.177093 -0.827320 -0.059183 -0.967648 0.245265 -0.843989 0.179710 0.505358 -0.511588 -0.231989 -0.827320 0.042560 -0.968521 0.245265 -0.858176 0.090264 0.505358 -0.246216 0.927871 -0.280060 -0.612336 -0.372902 -0.697129 -0.751280 -0.000153 0.659983 -0.342107 0.896955 -0.280060 -0.569881 -0.435025 -0.697129 -0.747127 -0.078892 0.659983 -0.433374 0.856594 -0.280060 -0.521641 -0.491836 -0.697129 -0.734900 -0.156027 0.659983 -0.520764 0.806456 -0.280060 -0.467220 -0.543799 -0.697129 -0.714500 -0.232190 0.659983 -0.602419 0.747434 -0.280060 -0.407653 -0.589772 -0.697129 -0.686230 -0.305796 0.659983 -0.676757 0.680857 -0.280060 -0.344224 -0.628905 -0.697129 -0.650776 -0.375383 0.659983 -0.744388 0.606179 -0.280060 -0.276415 -0.661518 -0.697129 -0.607849 -0.441522 0.659983 -0.803820 0.524823 -0.280060 -0.205561 -0.686845 -0.697129 -0.558227 -0.502797 0.659983 -0.854399 0.437686 -0.280060 -0.132442 -0.704607 -0.697129 -0.502456 -0.558534 0.659983 -0.895220 0.346624 -0.280060 -0.058580 -0.714549 -0.697129 -0.441758 -0.607678 0.659983 -0.926618 0.250890 -0.280060 0.016633 -0.716753 -0.697129 -0.375636 -0.650630 0.659983 -0.947810 0.152392 -0.280060 0.091662 -0.711062 -0.697129 -0.305377 -0.686416 0.659983 -0.958509 0.053174 -0.280060 0.164984 -0.697705 -0.697129 -0.232468 -0.714409 0.659983 -0.958803 -0.047578 -0.280060 0.237200 -0.676571 -0.697129 -0.156313 -0.734839 0.659983 -0.948536 -0.147805 -0.280060 0.306803 -0.647984 -0.697129 -0.078435 -0.747175 0.659983 -0.928021 -0.245649 -0.280060 0.372528 -0.612564 -0.697129 -0.000306 -0.751280 0.659983 -0.897164 -0.341559 -0.280060 0.434677 -0.570147 -0.697129 0.078435 -0.747175 0.659983 -0.856425 -0.433707 -0.280060 0.492039 -0.521449 -0.697129 0.156313 -0.734839 0.659983 -0.806253 -0.521078 -0.280060 0.543980 -0.467008 -0.697129 0.232468 -0.714409 0.659983 -0.747802 -0.601962 -0.280060 0.589522 -0.408013 -0.697129 0.305377 -0.686416 0.659983 -0.680594 -0.677022 -0.280060 0.629038 -0.343980 -0.697129 0.375636 -0.650630 0.659983 -0.605889 -0.744624 -0.280060 0.661626 -0.276158 -0.697129 0.441758 -0.607678 0.659983 -0.525314 -0.803500 -0.280060 0.686719 -0.205980 -0.697129 0.502456 -0.558534 0.659983 -0.438208 -0.854131 -0.280060 0.704526 -0.132873 -0.697129 0.558227 -0.502797 0.659983 -0.346276 -0.895354 -0.280060 0.714571 -0.058302 -0.697129 0.607849 -0.441522 0.659983 -0.250529 -0.926715 -0.280060 0.716746 0.016911 -0.697129 0.650776 -0.375383 0.659983 -0.152971 -0.947716 -0.280060 0.711118 0.091227 -0.697129 0.686230 -0.305796 0.659983 -0.052801 -0.958529 -0.280060 0.697640 0.165255 -0.697129 0.714500 -0.232190 0.659983 0.047951 -0.958784 -0.280060 0.676478 0.237463 -0.697129 0.734900 -0.156027 0.659983 0.147226 -0.948626 -0.280060 0.648171 0.306407 -0.697129 0.747127 -0.078892 0.659983 0.245838 -0.927971 -0.280060 0.612488 0.372652 -0.697129 0.751280 -0.000153 0.659983 0.341742 -0.897095 -0.280060 0.570058 0.434793 -0.697129 0.747159 0.078587 0.659983 0.433882 -0.856337 -0.280060 0.521349 0.492145 -0.697129 0.734807 0.156462 0.659983 0.520436 -0.806668 -0.280060 0.467441 0.543608 -0.697129 0.714594 0.231899 0.659983 0.602114 -0.747680 -0.280060 0.407893 0.589606 -0.697129 0.686354 0.305517 0.659983 0.677160 -0.680456 -0.280060 0.343852 0.629108 -0.697129 0.650554 0.375769 0.659983 0.744747 -0.605737 -0.280060 0.276023 0.661682 -0.697129 0.607588 0.441882 0.659983 0.803607 -0.525150 -0.280060 0.205841 0.686761 -0.697129 0.558432 0.502570 0.659983 0.854220 -0.438034 -0.280060 0.132729 0.704553 -0.697129 0.502683 0.558329 0.659983 0.895425 -0.346093 -0.280060 0.058156 0.714583 -0.697129 0.441398 0.607939 0.659983 0.926516 -0.251267 -0.280060 -0.016341 0.716760 -0.697129 0.375901 0.650477 0.659983 0.947748 -0.152778 -0.280060 -0.091372 0.711100 -0.697129 0.305656 0.686292 0.659983 0.958540 -0.052606 -0.280060 -0.165397 0.697607 -0.697129 0.232045 0.714547 0.659983 0.958774 0.048146 -0.280060 -0.237601 0.676430 -0.697129 0.155877 0.734932 0.659983 0.948596 0.147419 -0.280060 -0.306539 0.648109 -0.697129 0.078740 0.747143 0.659983 0.927921 0.246027 -0.280060 -0.372777 0.612412 -0.697129 0.000000 0.751280 0.659983 0.897025 0.341924 -0.280060 -0.434909 0.569970 -0.697129 -0.078740 0.747143 0.659983 0.856682 0.433199 -0.280060 -0.491729 0.521741 -0.697129 -0.155877 0.734932 0.659983 0.806562 0.520600 -0.280060 -0.543703 0.467331 -0.697129 -0.232045 0.714547 0.659983 0.747557 0.602266 -0.280060 -0.589689 0.407773 -0.697129 -0.305656 0.686292 0.659983 0.680318 0.677299 -0.280060 -0.629178 0.343724 -0.697129 -0.375901 0.650477 0.659983 0.606330 0.744265 -0.280060 -0.661462 0.276550 -0.697129 -0.441398 0.607939 0.659983 0.524987 0.803714 -0.280060 -0.686803 0.205701 -0.697129 -0.502683 0.558329 0.659983 0.437860 0.854309 -0.280060 -0.704580 0.132586 -0.697129 -0.558432 0.502570 0.659983 0.346806 0.895149 -0.280060 -0.714537 0.058725 -0.697129 -0.607588 0.441882 0.659983 0.251078 0.926567 -0.280060 -0.716756 -0.016487 -0.697129 -0.650554 0.375769 0.659983 0.152585 0.947779 -0.280060 -0.711081 -0.091517 -0.697129 -0.686354 0.305517 0.659983 0.052410 0.958551 -0.280060 -0.697573 -0.165539 -0.697129 -0.714594 0.231899 0.659983 -0.047383 0.958812 -0.280060 -0.676619 -0.237062 -0.697129 -0.734807 0.156462 0.659983 -0.147612 0.948566 -0.280060 -0.648047 -0.306671 -0.697129 -0.747159 0.078587 0.659983 0.073999 0.820807 -0.566392 0.106685 -0.571205 -0.813845 -0.991535 -0.000202 -0.129836 -0.012435 0.824042 -0.566392 0.165964 -0.556878 -0.813845 -0.986053 -0.104121 -0.129836 -0.097914 0.818299 -0.566392 0.222878 -0.536640 -0.813845 -0.969917 -0.205923 -0.129836 -0.183138 0.803530 -0.566392 0.277894 -0.510325 -0.813845 -0.942993 -0.306443 -0.129836 -0.266346 0.779910 -0.566392 0.329849 -0.478390 -0.813845 -0.905682 -0.403588 -0.129836 -0.345871 0.748046 -0.566392 0.377730 -0.441562 -0.813845 -0.858891 -0.495429 -0.129836 -0.422367 0.707677 -0.566392 0.421929 -0.399542 -0.813845 -0.802236 -0.582718 -0.129836 -0.494210 0.659512 -0.566392 0.461480 -0.353120 -0.813845 -0.736745 -0.663589 -0.129836 -0.560610 0.604083 -0.566392 0.495948 -0.302809 -0.813845 -0.663138 -0.737150 -0.129836 -0.620292 0.542621 -0.566392 0.524703 -0.249687 -0.813845 -0.583030 -0.802009 -0.129836 -0.673747 0.474621 -0.566392 0.547983 -0.193319 -0.813845 -0.495762 -0.858698 -0.129836 -0.719780 0.401394 -0.566392 0.565226 -0.134822 -0.813845 -0.403034 -0.905928 -0.129836 -0.757561 0.324503 -0.566392 0.576168 -0.075416 -0.813845 -0.306810 -0.942873 -0.129836 -0.787399 0.243318 -0.566392 0.580899 -0.014614 -0.813845 -0.206300 -0.969836 -0.129836 -0.808564 0.159453 -0.566392 0.579231 0.046349 -0.813845 -0.103518 -0.986117 -0.129836 -0.820762 0.074500 -0.566392 0.571270 0.106336 -0.813845 -0.000404 -0.991535 -0.129836 -0.824050 -0.011932 -0.566392 0.556979 0.165623 -0.813845 0.103518 -0.986117 -0.129836 -0.818261 -0.098232 -0.566392 0.536553 0.223087 -0.813845 0.206300 -0.969836 -0.129836 -0.803459 -0.183451 -0.566392 0.510217 0.278093 -0.813845 0.306810 -0.942873 -0.129836 -0.780073 -0.265869 -0.566392 0.478591 0.329557 -0.813845 0.403034 -0.905928 -0.129836 -0.747912 -0.346162 -0.566392 0.441415 0.377902 -0.813845 0.495762 -0.858698 -0.129836 -0.707513 -0.422642 -0.566392 0.399377 0.422084 -0.813845 0.583030 -0.802009 -0.129836 -0.659814 -0.493807 -0.566392 0.353402 0.461264 -0.813845 0.663138 -0.737150 -0.129836 -0.604426 -0.560241 -0.566392 0.303112 0.495762 -0.813845 0.736745 -0.663589 -0.129836 -0.542380 -0.620504 -0.566392 0.249483 0.524800 -0.813845 0.802236 -0.582718 -0.129836 -0.474359 -0.673931 -0.566392 0.193106 0.548058 -0.813845 0.858891 -0.495429 -0.129836 -0.401834 -0.719535 -0.566392 0.135167 0.565143 -0.813845 0.905682 -0.403588 -0.129836 -0.324208 -0.757687 -0.566392 0.075192 0.576197 -0.813845 0.942993 -0.306443 -0.129836 -0.243012 -0.787493 -0.566392 0.014388 0.580905 -0.813845 0.969917 -0.205923 -0.129836 -0.159947 -0.808466 -0.566392 -0.045995 0.579260 -0.813845 0.986053 -0.104121 -0.129836 -0.074333 -0.820777 -0.566392 -0.106452 0.571249 -0.813845 0.991535 -0.000202 -0.129836 0.012100 -0.824047 -0.566392 -0.165737 0.556946 -0.813845 0.986096 0.103719 -0.129836 0.098399 -0.818241 -0.566392 -0.223196 0.536508 -0.813845 0.969794 0.206498 -0.129836 0.182811 -0.803605 -0.566392 -0.277686 0.510439 -0.813845 0.943117 0.306059 -0.129836 0.266028 -0.780019 -0.566392 -0.329655 0.478524 -0.813845 0.905846 0.403219 -0.129836 0.346314 -0.747841 -0.566392 -0.377992 0.441338 -0.813845 0.858597 0.495937 -0.129836 0.422786 -0.707426 -0.566392 -0.422165 0.399291 -0.813845 0.801890 0.583193 -0.129836 0.493942 -0.659714 -0.566392 -0.461336 0.353308 -0.813845 0.737015 0.663288 -0.129836 0.560364 -0.604312 -0.566392 -0.495824 0.303011 -0.813845 0.663438 0.736880 -0.129836 0.620614 -0.542253 -0.566392 -0.524851 0.249376 -0.813845 0.582554 0.802355 -0.129836 0.673553 -0.474896 -0.566392 -0.547904 0.193542 -0.813845 0.496112 0.858496 -0.129836 0.719616 -0.401687 -0.566392 -0.565171 0.135052 -0.813845 0.403403 0.905764 -0.129836 0.757753 -0.324054 -0.566392 -0.576213 0.075074 -0.813845 0.306251 0.943055 -0.129836 0.787543 -0.242851 -0.566392 -0.580907 0.014270 -0.813845 0.205726 0.969959 -0.129836 0.808499 -0.159782 -0.566392 -0.579250 -0.046113 -0.813845 0.103920 0.986075 -0.129836 0.820792 -0.074166 -0.566392 -0.571227 -0.106568 -0.813845 0.000000 0.991535 -0.129836 0.824045 0.012267 -0.566392 -0.556912 -0.165850 -0.813845 -0.103920 0.986075 -0.129836 0.818319 0.097747 -0.566392 -0.536685 -0.222769 -0.813845 -0.205726 0.969959 -0.129836 0.803567 0.182975 -0.566392 -0.510382 -0.277790 -0.813845 -0.306251 0.943055 -0.129836 0.779965 0.266187 -0.566392 -0.478457 -0.329752 -0.813845 -0.403403 0.905764 -0.129836 0.747771 0.346467 -0.566392 -0.441261 -0.378082 -0.813845 -0.496112 0.858496 -0.129836 0.707763 0.422223 -0.566392 -0.399627 -0.421847 -0.813845 -0.582554 0.802355 -0.129836 0.659613 0.494076 -0.566392 -0.353214 -0.461408 -0.813845 -0.663438 0.736880 -0.129836 0.604198 0.560487 -0.566392 -0.302910 -0.495886 -0.813845 -0.737015 0.663288 -0.129836 0.542747 0.620182 -0.566392 -0.249794 -0.524652 -0.813845 -0.801890 0.583193 -0.129836 0.474759 0.673650 -0.566392 -0.193431 -0.547943 -0.813845 -0.858597 0.495937 -0.129836 0.401541 0.719698 -0.566392 -0.134937 -0.565198 -0.813845 -0.905846 0.403219 -0.129836 0.323900 0.757819 -0.566392 -0.074957 -0.576228 -0.813845 -0.943117 0.306059 -0.129836 0.243478 0.787349 -0.566392 -0.014732 -0.580896 -0.813845 -0.969794 0.206498 -0.129836 0.159618 0.808531 -0.566392 0.046231 -0.579241 -0.813845 -0.986096 0.103719 -0.129836 -0.392335 0.209159 -0.895727 -0.083742 -0.977882 -0.191663 -0.916003 -0.000187 0.401172 -0.412095 0.166887 -0.895727 0.019209 -0.981273 -0.191663 -0.910938 -0.096189 0.401172 -0.427194 0.123205 -0.895727 0.120973 -0.973977 -0.191663 -0.896031 -0.190236 0.401172 -0.437754 0.077753 -0.895727 0.222387 -0.955934 -0.191663 -0.871158 -0.283099 0.401172 -0.443492 0.031445 -0.895727 0.321351 -0.927361 -0.191663 -0.836689 -0.372843 0.401172 -0.444360 -0.014765 -0.895727 0.415886 -0.888990 -0.191663 -0.793462 -0.457688 0.401172 -0.440366 -0.061255 -0.895727 0.506768 -0.840506 -0.191663 -0.741124 -0.538328 0.401172 -0.431520 -0.107071 -0.895727 0.592068 -0.782764 -0.191663 -0.680621 -0.613038 0.401172 -0.417922 -0.151708 -0.895727 0.670847 -0.716400 -0.191663 -0.612622 -0.680996 0.401172 -0.399914 -0.194274 -0.895727 0.741594 -0.642887 -0.191663 -0.538616 -0.740914 0.401172 -0.377351 -0.235118 -0.895727 0.804889 -0.561622 -0.191663 -0.457996 -0.793284 0.401172 -0.350630 -0.273372 -0.895727 0.859318 -0.474171 -0.191663 -0.372332 -0.836917 0.401172 -0.320356 -0.308295 -0.895727 0.903900 -0.382401 -0.191663 -0.283438 -0.871047 0.401172 -0.286281 -0.340173 -0.895727 0.939000 -0.285560 -0.191663 -0.190585 -0.895957 0.401172 -0.249051 -0.368303 -0.895727 0.963757 -0.185573 -0.191663 -0.095633 -0.910997 0.401172 -0.209398 -0.392207 -0.895727 0.977830 -0.084339 -0.191663 -0.000373 -0.916003 0.401172 -0.167139 -0.411993 -0.895727 0.981284 0.018609 -0.191663 0.095633 -0.910997 0.401172 -0.123039 -0.427242 -0.895727 0.973930 0.121352 -0.191663 0.190585 -0.895957 0.401172 -0.077583 -0.437784 -0.895727 0.955847 0.222759 -0.191663 0.283438 -0.871047 0.401172 -0.031716 -0.443473 -0.895727 0.927557 0.320784 -0.191663 0.372332 -0.836917 0.401172 0.014937 -0.444354 -0.895727 0.888829 0.416232 -0.191663 0.457996 -0.793284 0.401172 0.061427 -0.440342 -0.895727 0.840309 0.507095 -0.191663 0.538616 -0.740914 0.401172 0.106808 -0.431586 -0.895727 0.783126 0.591590 -0.191663 0.612622 -0.680996 0.401172 0.151453 -0.418014 -0.895727 0.716810 0.670409 -0.191663 0.680621 -0.613038 0.401172 0.194430 -0.399839 -0.895727 0.642599 0.741844 -0.191663 0.741124 -0.538328 0.401172 0.235265 -0.377259 -0.895727 0.561309 0.805107 -0.191663 0.793462 -0.457688 0.401172 0.273158 -0.350797 -0.895727 0.474696 0.859028 -0.191663 0.836689 -0.372843 0.401172 0.308420 -0.320236 -0.895727 0.382049 0.904048 -0.191663 0.871158 -0.283099 0.401172 0.340284 -0.286148 -0.895727 0.285194 0.939111 -0.191663 0.896031 -0.190236 0.401172 0.368151 -0.249276 -0.895727 0.186162 0.963644 -0.191663 0.910938 -0.096189 0.401172 0.392250 -0.209319 -0.895727 0.084140 0.977848 -0.191663 0.916003 -0.000187 0.401172 0.412027 -0.167055 -0.895727 -0.018809 0.981281 -0.191663 0.910977 0.095818 0.401172 0.427267 -0.122952 -0.895727 -0.121551 0.973905 -0.191663 0.895918 0.190767 0.401172 0.437722 -0.077932 -0.895727 -0.221997 0.956024 -0.191663 0.871273 0.282744 0.401172 0.443479 -0.031626 -0.895727 -0.320973 0.927492 -0.191663 0.836841 0.372503 0.401172 0.444351 0.015028 -0.895727 -0.416413 0.888744 -0.191663 0.793191 0.458158 0.401172 0.440329 0.061516 -0.895727 -0.507266 0.840206 -0.191663 0.740804 0.538767 0.401172 0.431564 0.106896 -0.895727 -0.591750 0.783006 -0.191663 0.680871 0.612761 0.401172 0.417984 0.151538 -0.895727 -0.670555 0.716674 -0.191663 0.612899 0.680746 0.401172 0.399799 0.194511 -0.895727 -0.741975 0.642448 -0.191663 0.538177 0.741233 0.401172 0.377446 0.234964 -0.895727 -0.804660 0.561950 -0.191663 0.458320 0.793098 0.401172 0.350742 0.273229 -0.895727 -0.859125 0.474521 -0.191663 0.372673 0.836765 0.401172 0.320174 0.308485 -0.895727 -0.904126 0.381865 -0.191663 0.282922 0.871215 0.401172 0.286079 0.340342 -0.895727 -0.939169 0.285003 -0.191663 0.190054 0.896069 0.401172 0.249201 0.368202 -0.895727 -0.963681 0.185966 -0.191663 0.096004 0.910958 0.401172 0.209239 0.392292 -0.895727 -0.977865 0.083941 -0.191663 0.000000 0.916003 0.401172 0.166971 0.412061 -0.895727 -0.981277 -0.019009 -0.191663 -0.096004 0.910958 0.401172 0.123292 0.427169 -0.895727 -0.974001 -0.120775 -0.191663 -0.190054 0.896069 0.401172 0.077843 0.437738 -0.895727 -0.955979 -0.222192 -0.191663 -0.282922 0.871215 0.401172 0.031536 0.443486 -0.895727 -0.927427 -0.321162 -0.191663 -0.372673 0.836765 0.401172 -0.015118 0.444348 -0.895727 -0.888659 -0.416594 -0.191663 -0.458320 0.793098 0.401172 -0.061166 0.440378 -0.895727 -0.840610 -0.506597 -0.191663 -0.538177 0.741233 0.401172 -0.106984 0.431542 -0.895727 -0.782885 -0.591909 -0.191663 -0.612899 0.680746 0.401172 -0.151623 0.417953 -0.895727 -0.716537 -0.670701 -0.191663 -0.680871 0.612761 0.401172 -0.194193 0.399954 -0.895727 -0.643038 -0.741463 -0.191663 -0.740804 0.538767 0.401172 -0.235041 0.377399 -0.895727 -0.561786 -0.804774 -0.191663 -0.793191 0.458158 0.401172 -0.273301 0.350686 -0.895727 -0.474346 -0.859221 -0.191663 -0.836841 0.372503 0.401172 -0.308550 0.320111 -0.895727 -0.381681 -0.904204 -0.191663 -0.871273 0.282744 0.401172 -0.340114 0.286350 -0.895727 -0.285751 -0.938942 -0.191663 -0.895918 0.190767 0.401172 -0.368253 0.249126 -0.895727 -0.185769 -0.963719 -0.191663 -0.910977 0.095818 0.401172 -0.135764 0.696679 0.704419 0.131573 0.717383 -0.684142 -0.981966 -0.000200 -0.189059 -0.208034 0.678613 0.704419 0.055661 0.727222 -0.684142 -0.976537 -0.103116 -0.189059 -0.277358 0.653350 0.704419 -0.020134 0.729071 -0.684142 -0.960556 -0.203936 -0.189059 -0.344306 0.620682 0.704419 -0.096435 0.722945 -0.684142 -0.933891 -0.303486 -0.189059 -0.407462 0.581178 0.704419 -0.171674 0.708857 -0.684142 -0.896941 -0.399693 -0.189059 -0.465594 0.535738 0.704419 -0.244335 0.687204 -0.684142 -0.850601 -0.490647 -0.189059 -0.519179 0.483990 0.704419 -0.315013 0.657812 -0.684142 -0.794493 -0.577094 -0.189059 -0.567046 0.426911 0.704419 -0.382222 0.621173 -0.684142 -0.729634 -0.657184 -0.189059 -0.608666 0.365129 0.704419 -0.445220 0.577693 -0.684142 -0.656738 -0.730035 -0.189059 -0.643282 0.299969 0.704419 -0.502786 0.528352 -0.684142 -0.577403 -0.794269 -0.189059 -0.671178 0.230897 0.704419 -0.555392 0.472746 -0.684142 -0.490978 -0.850410 -0.189059 -0.691682 0.159281 0.704419 -0.601881 0.411934 -0.684142 -0.399145 -0.897185 -0.189059 -0.704480 0.086615 0.704419 -0.641392 0.347225 -0.684142 -0.303849 -0.933773 -0.189059 -0.709678 0.012303 0.704419 -0.674252 0.278090 -0.684142 -0.204309 -0.960476 -0.189059 -0.707059 -0.062144 0.704419 -0.699684 0.205892 -0.684142 -0.102519 -0.976599 -0.189059 -0.696762 -0.135339 0.704419 -0.717302 0.132011 -0.684142 -0.000400 -0.981966 -0.189059 -0.678740 -0.207619 0.704419 -0.727188 0.056105 -0.684142 0.102519 -0.976599 -0.189059 -0.653242 -0.277612 0.704419 -0.729063 -0.020418 -0.684142 0.204309 -0.960476 -0.189059 -0.620548 -0.344548 0.704419 -0.722908 -0.096717 -0.684142 0.303849 -0.933773 -0.189059 -0.581427 -0.407107 0.704419 -0.708961 -0.171241 -0.684142 0.399145 -0.897185 -0.189059 -0.535557 -0.465803 0.704419 -0.687109 -0.244602 -0.684142 0.490978 -0.850410 -0.189059 -0.483788 -0.519368 0.704419 -0.657689 -0.315269 -0.684142 0.577403 -0.794269 -0.189059 -0.427257 -0.566785 0.704419 -0.621407 -0.381842 -0.684142 0.656738 -0.730035 -0.189059 -0.365501 -0.608443 0.704419 -0.577964 -0.444867 -0.684142 0.729634 -0.657184 -0.189059 -0.299719 -0.643399 0.704419 -0.528156 -0.502992 -0.684142 0.794493 -0.577094 -0.189059 -0.230636 -0.671268 0.704419 -0.472530 -0.555576 -0.684142 0.850601 -0.490647 -0.189059 -0.159703 -0.691584 0.704419 -0.412301 -0.601629 -0.684142 0.896941 -0.399693 -0.189059 -0.086341 -0.704513 0.704419 -0.346976 -0.641527 -0.684142 0.933891 -0.303486 -0.189059 -0.012027 -0.709682 0.704419 -0.277828 -0.674360 -0.684142 0.960556 -0.203936 -0.189059 0.061712 -0.707096 0.704419 -0.206320 -0.699558 -0.684142 0.976537 -0.103116 -0.189059 0.135481 -0.696734 0.704419 -0.131865 -0.717329 -0.684142 0.981966 -0.000200 -0.189059 0.207757 -0.678698 0.704419 -0.055957 -0.727199 -0.684142 0.976579 0.102718 -0.189059 0.277745 -0.653185 0.704419 0.020567 -0.729059 -0.684142 0.960434 0.204505 -0.189059 0.344054 -0.620823 0.704419 0.096141 -0.722984 -0.684142 0.934015 0.303105 -0.189059 0.407225 -0.581344 0.704419 0.171385 -0.708926 -0.684142 0.897103 0.399327 -0.189059 0.465912 -0.535462 0.704419 0.244742 -0.687060 -0.684142 0.850310 0.491151 -0.189059 0.519466 -0.483682 0.704419 0.315403 -0.657625 -0.684142 0.794151 0.577565 -0.189059 0.566872 -0.427142 0.704419 0.381969 -0.621329 -0.684142 0.729902 0.656887 -0.189059 0.608517 -0.365377 0.704419 0.444985 -0.577874 -0.684142 0.657035 0.729768 -0.189059 0.643460 -0.299588 0.704419 0.503099 -0.528054 -0.684142 0.576932 0.794611 -0.189059 0.671084 -0.231170 0.704419 0.555200 -0.472973 -0.684142 0.491324 0.850210 -0.189059 0.691617 -0.159562 0.704419 0.601713 -0.412179 -0.684142 0.399510 0.897022 -0.189059 0.704531 -0.086197 0.704419 0.641598 -0.346845 -0.684142 0.303295 0.933953 -0.189059 0.709685 -0.011883 0.704419 0.674416 -0.277691 -0.684142 0.203740 0.960597 -0.189059 0.707084 0.061856 0.704419 0.699600 -0.206177 -0.684142 0.102917 0.976558 -0.189059 0.696707 0.135623 0.704419 0.717356 -0.131719 -0.684142 0.000000 0.981966 -0.189059 0.678655 0.207896 0.704419 0.727210 -0.055809 -0.684142 -0.102917 0.976558 -0.189059 0.653406 0.277225 0.704419 0.729075 0.019986 -0.684142 -0.203740 0.960597 -0.189059 0.620753 0.344180 0.704419 0.722965 0.096288 -0.684142 -0.303295 0.933953 -0.189059 0.581261 0.407344 0.704419 0.708891 0.171530 -0.684142 -0.399510 0.897022 -0.189059 0.535367 0.466021 0.704419 0.687010 0.244882 -0.684142 -0.491324 0.850210 -0.189059 0.484096 0.519081 0.704419 0.657876 0.314879 -0.684142 -0.576932 0.794611 -0.189059 0.427026 0.566959 0.704419 0.621251 0.382095 -0.684142 -0.657035 0.729768 -0.189059 0.365253 0.608592 0.704419 0.577783 0.445102 -0.684142 -0.729902 0.656887 -0.189059 0.300100 0.643221 0.704419 0.528454 0.502679 -0.684142 -0.794151 0.577565 -0.189059 0.231033 0.671131 0.704419 0.472859 0.555296 -0.684142 -0.850310 0.491151 -0.189059 0.159422 0.691649 0.704419 0.412056 0.601797 -0.684142 -0.897103 0.399327 -0.189059 0.086054 0.704548 0.704419 0.346714 0.641669 -0.684142 -0.934015 0.303105 -0.189059 0.012448 0.709675 0.704419 0.278228 0.674195 -0.684142 -0.960434 0.204505 -0.189059 -0.062000 0.707071 0.704419 0.206035 0.699642 -0.684142 -0.976579 0.102718 -0.189059 0.429912 0.665313 0.610356 -0.383306 0.746564 -0.543800 -0.817467 -0.000166 0.575975 0.357814 0.706707 0.610356 -0.459440 0.702279 -0.543800 -0.812948 -0.085842 0.575975 0.282516 0.740034 0.610356 -0.529863 0.650789 -0.543800 -0.799644 -0.169772 0.575975 0.203399 0.765568 0.610356 -0.595152 0.591672 -0.543800 -0.777446 -0.252646 0.575975 0.122042 0.782670 0.610356 -0.653886 0.526037 -0.543800 -0.746686 -0.332736 0.575975 0.040131 0.791110 0.610356 -0.704962 0.455313 -0.543800 -0.708109 -0.408454 0.575975 -0.043004 0.790959 0.610356 -0.748799 0.378920 -0.543800 -0.661400 -0.480419 0.575975 -0.125665 0.782096 0.610356 -0.784389 0.298354 -0.543800 -0.607406 -0.547093 0.575975 -0.206942 0.764618 0.610356 -0.811339 0.214501 -0.543800 -0.546722 -0.607740 0.575975 -0.285201 0.739004 0.610356 -0.829223 0.129115 -0.543800 -0.480677 -0.661213 0.575975 -0.361083 0.705043 0.610356 -0.838188 0.041495 -0.543800 -0.408729 -0.707950 0.575975 -0.432988 0.663315 0.610356 -0.837921 -0.046581 -0.543800 -0.332280 -0.746889 0.575975 -0.499509 0.614782 0.610356 -0.828558 -0.133316 -0.543800 -0.252948 -0.777348 0.575975 -0.561192 0.559044 0.610356 -0.810022 -0.219421 -0.543800 -0.170084 -0.799578 0.575975 -0.616693 0.497148 0.610356 -0.782564 -0.303109 -0.543800 -0.085345 -0.813000 0.575975 -0.665051 0.430318 0.610356 -0.746798 -0.382849 -0.543800 -0.000333 -0.817467 0.575975 -0.706488 0.358246 0.610356 -0.702560 -0.459011 -0.543800 0.085345 -0.813000 0.575975 -0.740144 0.282228 0.610356 -0.650583 -0.530116 -0.543800 0.170084 -0.799578 0.575975 -0.765647 0.203101 0.610356 -0.591440 -0.595382 -0.543800 0.252948 -0.777348 0.575975 -0.782595 0.122520 0.610356 -0.526436 -0.653564 -0.543800 0.332280 -0.746889 0.575975 -0.791126 0.039824 0.610356 -0.455039 -0.705139 -0.543800 0.408729 -0.707950 0.575975 -0.790943 -0.043311 0.610356 -0.378629 -0.748947 -0.543800 0.480677 -0.661213 0.575975 -0.782173 -0.125187 0.610356 -0.298833 -0.784207 -0.543800 0.546722 -0.607740 0.575975 -0.764744 -0.206475 0.610356 -0.214997 -0.811207 -0.543800 0.607406 -0.547093 0.575975 -0.738893 -0.285489 0.610356 -0.128792 -0.829273 -0.543800 0.661400 -0.480419 0.575975 -0.704902 -0.361357 0.610356 -0.041169 -0.838204 -0.543800 0.708109 -0.408454 0.575975 -0.663580 -0.432583 0.610356 0.046069 -0.837949 -0.543800 0.746686 -0.332736 0.575975 -0.614587 -0.499748 0.610356 0.133639 -0.828506 -0.543800 0.777446 -0.252646 0.575975 -0.558825 -0.561409 0.610356 0.219736 -0.809937 -0.543800 0.799644 -0.169772 0.575975 -0.497525 -0.616389 0.610356 0.302630 -0.782749 -0.543800 0.812948 -0.085842 0.575975 -0.430183 -0.665138 0.610356 0.383001 -0.746720 -0.543800 0.817467 -0.000166 0.575975 -0.358102 -0.706561 0.610356 0.459154 -0.702466 -0.543800 0.812983 0.085511 0.575975 -0.282077 -0.740202 0.610356 0.530248 -0.650475 -0.543800 0.799543 0.170246 0.575975 -0.203711 -0.765485 0.610356 0.594911 -0.591914 -0.543800 0.777549 0.252329 0.575975 -0.122361 -0.782620 0.610356 0.653671 -0.526303 -0.543800 0.746821 0.332432 0.575975 -0.039663 -0.791134 0.610356 0.705232 -0.454895 -0.543800 0.707867 0.408873 0.575975 0.043472 -0.790934 0.610356 0.749024 -0.378476 -0.543800 0.661115 0.480811 0.575975 0.125346 -0.782147 0.610356 0.784267 -0.298673 -0.543800 0.607629 0.546845 0.575975 0.206631 -0.764702 0.610356 0.811251 -0.214832 -0.543800 0.546969 0.607518 0.575975 0.285639 -0.738835 0.610356 0.829299 -0.128623 -0.543800 0.480285 0.661498 0.575975 0.360796 -0.705190 0.610356 0.838171 -0.041837 -0.543800 0.409018 0.707783 0.575975 0.432718 -0.663492 0.610356 0.837940 0.046240 -0.543800 0.332584 0.746753 0.575975 0.499873 -0.614486 0.610356 0.828479 0.133807 -0.543800 0.252487 0.777498 0.575975 0.561523 -0.558711 0.610356 0.809892 0.219901 -0.543800 0.169610 0.799678 0.575975 0.616490 -0.497399 0.610356 0.782687 0.302790 -0.543800 0.085676 0.812965 0.575975 0.665226 -0.430047 0.610356 0.746642 0.383153 -0.543800 0.000000 0.817467 0.575975 0.706634 -0.357958 0.610356 0.702373 0.459297 -0.543800 -0.085676 0.812965 0.575975 0.739977 -0.282667 0.610356 0.650897 0.529730 -0.543800 -0.169610 0.799678 0.575975 0.765527 -0.203555 0.610356 0.591793 0.595031 -0.543800 -0.252487 0.777498 0.575975 0.782645 -0.122201 0.610356 0.526170 0.653778 -0.543800 -0.332584 0.746753 0.575975 0.791142 -0.039501 0.610356 0.454751 0.705324 -0.543800 -0.409018 0.707783 0.575975 0.790968 0.042843 0.610356 0.379073 0.748722 -0.543800 -0.480285 0.661498 0.575975 0.782122 0.125506 0.610356 0.298514 0.784328 -0.543800 -0.546969 0.607518 0.575975 0.764660 0.206786 0.610356 0.214666 0.811295 -0.543800 -0.607629 0.546845 0.575975 0.739062 0.285051 0.610356 0.129284 0.829196 -0.543800 -0.661115 0.480811 0.575975 0.705116 0.360940 0.610356 0.041666 0.838180 -0.543800 -0.707867 0.408873 0.575975 0.663404 0.432853 0.610356 -0.046411 0.837930 -0.543800 -0.746821 0.332432 0.575975 0.614384 0.499999 0.610356 -0.133976 0.828451 -0.543800 -0.777549 0.252329 0.575975 0.559158 0.561078 0.610356 -0.219256 0.810067 -0.543800 -0.799543 0.170246 0.575975 0.497274 0.616591 0.610356 -0.302949 0.782626 -0.543800 -0.812983 0.085511 0.575975 0.314015 -0.867461 0.385884 0.547276 0.497506 0.673035 -0.775811 -0.000158 0.630965 0.403202 -0.829772 0.385884 0.492120 0.552124 0.673035 -0.771522 -0.081468 0.630965 0.487164 -0.783431 0.385884 0.432144 0.600229 0.673035 -0.758896 -0.161121 0.630965 0.566590 -0.728058 0.385884 0.366855 0.642215 0.673035 -0.737830 -0.239772 0.630965 0.639775 -0.664666 0.385884 0.297526 0.677127 0.673035 -0.708636 -0.315781 0.630965 0.705319 -0.594658 0.385884 0.225624 0.704356 0.673035 -0.672026 -0.387640 0.630965 0.763759 -0.517460 0.385884 0.150560 0.724124 0.673035 -0.627697 -0.455938 0.630965 0.813786 -0.434563 0.385884 0.073837 0.735915 0.673035 -0.576454 -0.519214 0.630965 0.854850 -0.346879 0.385884 -0.003698 0.739601 0.673035 -0.518862 -0.576771 0.630965 0.886241 -0.256261 0.385884 -0.080458 0.735221 0.673035 -0.456183 -0.627520 0.630965 0.908219 -0.161965 0.385884 -0.157072 0.722739 0.673035 -0.387902 -0.671875 0.630965 0.920192 -0.065885 0.385884 -0.231955 0.702296 0.673035 -0.315348 -0.708829 0.630965 0.922059 0.029998 0.385884 -0.303609 0.674422 0.673035 -0.240059 -0.737736 0.630965 0.913837 0.126472 0.385884 -0.372621 0.638887 0.673035 -0.161417 -0.758833 0.630965 0.895549 0.221552 0.385884 -0.437529 0.596315 0.673035 -0.080996 -0.771572 0.630965 0.867652 0.313485 0.385884 -0.497171 0.547580 0.673035 -0.000316 -0.775811 0.630965 0.830018 0.402695 0.385884 -0.551823 0.492457 0.673035 0.080996 -0.771572 0.630965 0.783242 0.487469 0.385884 -0.600397 0.431910 0.673035 0.161417 -0.758833 0.630965 0.727838 0.566873 0.385884 -0.642358 0.366605 0.673035 0.240059 -0.737736 0.630965 0.665057 0.639369 0.385884 -0.676946 0.297940 0.673035 0.315348 -0.708829 0.630965 0.594383 0.705551 0.385884 -0.704444 0.225350 0.673035 0.387902 -0.671875 0.630965 0.517163 0.763960 0.385884 -0.724182 0.150278 0.673035 0.456183 -0.627520 0.630965 0.435060 0.813521 0.385884 -0.735870 0.074287 0.673035 0.518862 -0.576771 0.630965 0.347401 0.854638 0.385884 -0.739603 -0.003247 0.673035 0.576454 -0.519214 0.630965 0.255916 0.886341 0.385884 -0.735189 -0.080745 0.673035 0.627697 -0.455938 0.630965 0.161612 0.908281 0.385884 -0.722678 -0.157353 0.673035 0.672026 -0.387640 0.630965 0.066447 0.920151 0.385884 -0.702438 -0.231526 0.673035 0.708636 -0.315781 0.630965 -0.030357 0.922048 0.385884 -0.674304 -0.303871 0.673035 0.737830 -0.239772 0.630965 -0.126827 0.913788 0.385884 -0.638742 -0.372870 0.673035 0.758896 -0.161121 0.630965 -0.221005 0.895684 0.385884 -0.596582 -0.437164 0.673035 0.771522 -0.081468 0.630965 -0.313662 0.867588 0.385884 -0.547479 -0.497283 0.673035 0.775811 -0.000158 0.630965 -0.402864 0.829936 0.385884 -0.492345 -0.551924 0.673035 0.771555 0.081153 0.630965 -0.487628 0.783142 0.385884 -0.431788 -0.600485 0.673035 0.758800 0.161571 0.630965 -0.566294 0.728289 0.385884 -0.367117 -0.642066 0.673035 0.737927 0.239471 0.630965 -0.639505 0.664926 0.385884 -0.297802 -0.677006 0.673035 0.708765 0.315492 0.630965 -0.705672 0.594240 0.385884 -0.225207 -0.704489 0.673035 0.671796 0.388038 0.630965 -0.764066 0.517008 0.385884 -0.150131 -0.724213 0.673035 0.627427 0.456310 0.630965 -0.813609 0.434894 0.385884 -0.074137 -0.735885 0.673035 0.576666 0.518980 0.630965 -0.854709 0.347227 0.385884 0.003397 -0.739602 0.673035 0.519097 0.576560 0.630965 -0.886393 0.255735 0.385884 0.080894 -0.735173 0.673035 0.455811 0.627790 0.630965 -0.908152 0.162335 0.385884 0.156777 -0.722803 0.673035 0.388175 0.671717 0.630965 -0.920165 0.066260 0.385884 0.231669 -0.702391 0.673035 0.315637 0.708701 0.630965 -0.922041 -0.030545 0.385884 0.304009 -0.674242 0.673035 0.239621 0.737879 0.630965 -0.913762 -0.127013 0.385884 0.373000 -0.638666 0.673035 0.160967 0.758929 0.630965 -0.895639 -0.221187 0.385884 0.437286 -0.596493 0.673035 0.081311 0.771539 0.630965 -0.867525 -0.313838 0.385884 0.497394 -0.547378 0.673035 0.000000 0.775811 0.630965 -0.829854 -0.403033 0.385884 0.552024 -0.492232 0.673035 -0.081311 0.771539 0.630965 -0.783531 -0.487004 0.385884 0.600141 -0.432266 0.673035 -0.160967 0.758929 0.630965 -0.728174 -0.566442 0.385884 0.642141 -0.366986 0.673035 -0.239621 0.737879 0.630965 -0.664796 -0.639640 0.385884 0.677067 -0.297664 0.673035 -0.315637 0.708701 0.630965 -0.594096 -0.705793 0.385884 0.704535 -0.225063 0.673035 -0.388175 0.671717 0.630965 -0.517616 -0.763654 0.385884 0.724093 -0.150707 0.673035 -0.455811 0.627790 0.630965 -0.434729 -0.813698 0.385884 0.735900 -0.073987 0.673035 -0.519097 0.576560 0.630965 -0.347053 -0.854779 0.385884 0.739602 0.003548 0.673035 -0.576666 0.518980 0.630965 -0.256441 -0.886189 0.385884 0.735237 0.080309 0.673035 -0.627427 0.456310 0.630965 -0.162150 -0.908185 0.385884 0.722771 0.156925 0.673035 -0.671796 0.388038 0.630965 -0.066072 -0.920178 0.385884 0.702344 0.231812 0.673035 -0.708765 0.315492 0.630965 0.030733 -0.922035 0.385884 0.674180 0.304146 0.673035 -0.737927 0.239471 0.630965 0.126286 -0.913863 0.385884 0.638963 0.372491 0.673035 -0.758800 0.161571 0.630965 0.221370 -0.895594 0.385884 0.596404 0.437407 0.673035 -0.771555 0.081153 0.630965 -0.633529 -0.526395 -0.567052 0.392333 -0.850240 0.350951 -0.666870 -0.000136 0.745174 -0.574870 -0.589895 -0.567052 0.479284 -0.804438 0.350951 -0.663183 -0.070028 0.745174 -0.510526 -0.646386 -0.567052 0.560205 -0.750336 0.350951 -0.652330 -0.138496 0.745174 -0.439968 -0.696333 -0.567052 0.635760 -0.687490 0.350951 -0.634222 -0.206102 0.745174 -0.364564 -0.738610 -0.567052 0.704313 -0.617071 0.350951 -0.609128 -0.271438 0.745174 -0.285917 -0.772465 -0.567052 0.764567 -0.540621 0.350951 -0.577658 -0.333207 0.745174 -0.203383 -0.798177 -0.567052 0.817017 -0.457511 0.350951 -0.539554 -0.391914 0.745174 -0.118608 -0.815097 -0.567052 0.860468 -0.369362 0.350951 -0.495507 -0.446305 0.745174 -0.032527 -0.823039 -0.567052 0.894441 -0.277145 0.350951 -0.446002 -0.495779 0.745174 0.053091 -0.821969 -0.567052 0.918379 -0.182793 0.350951 -0.392124 -0.539401 0.745174 0.138947 -0.811878 -0.567052 0.932479 -0.085533 0.350951 -0.333431 -0.577528 0.745174 0.223272 -0.792844 -0.567052 0.936308 0.012668 0.350951 -0.271066 -0.609293 0.745174 0.304373 -0.765381 -0.567052 0.929934 0.109800 0.350951 -0.206349 -0.634141 0.745174 0.382914 -0.729266 -0.567052 0.913305 0.206659 0.350951 -0.138750 -0.652276 0.745174 0.457237 -0.685117 -0.567052 0.886615 0.301242 0.350951 -0.069623 -0.663225 0.745174 0.526008 -0.633851 -0.567052 0.850479 0.391814 0.350951 -0.000272 -0.666870 0.745174 0.589543 -0.575230 -0.567052 0.804731 0.478792 0.350951 0.069623 -0.663225 0.745174 0.646585 -0.510274 -0.567052 0.750118 0.560497 0.350951 0.138750 -0.652276 0.745174 0.696504 -0.439697 -0.567052 0.687242 0.636028 0.350951 0.206349 -0.634141 0.745174 0.738387 -0.365015 -0.567052 0.617501 0.703936 0.350951 0.271066 -0.609293 0.745174 0.772577 -0.285617 -0.567052 0.540323 0.764777 0.350951 0.333431 -0.577528 0.745174 0.798256 -0.203072 -0.567052 0.457193 0.817195 0.350951 0.392124 -0.539401 0.745174 0.815025 -0.119106 -0.567052 0.369888 0.860242 0.350951 0.446002 -0.495779 0.745174 0.823019 -0.033030 -0.567052 0.277691 0.894271 0.350951 0.495507 -0.446305 0.745174 0.821948 0.053411 -0.567052 0.182436 0.918450 0.350951 0.539554 -0.391914 0.745174 0.811824 0.139262 -0.567052 0.085171 0.932512 0.350951 0.577658 -0.333207 0.745174 0.792980 0.222788 -0.567052 -0.012096 0.936316 0.350951 0.609128 -0.271438 0.745174 0.765263 0.304671 -0.567052 -0.110162 0.929891 0.350951 0.634222 -0.206102 0.745174 0.729117 0.383198 -0.567052 -0.207015 0.913224 0.350951 0.652330 -0.138496 0.745174 0.685396 0.456819 -0.567052 -0.300700 0.886799 0.350951 0.663183 -0.070028 0.745174 0.633744 0.526137 -0.567052 -0.391987 0.850400 0.350951 0.666870 -0.000136 0.745174 0.575110 0.589661 -0.567052 -0.478956 0.804633 0.350951 0.663211 0.069758 0.745174 0.510142 0.646689 -0.567052 -0.560650 0.750004 0.350951 0.652247 0.138883 0.745174 0.440252 0.696154 -0.567052 -0.635480 0.687749 0.350951 0.634305 0.205844 0.745174 0.364865 0.738461 -0.567052 -0.704061 0.617358 0.350951 0.609238 0.271190 0.745174 0.285460 0.772635 -0.567052 -0.764887 0.540167 0.350951 0.577460 0.333549 0.745174 0.202910 0.798298 -0.567052 -0.817288 0.457027 0.350951 0.539322 0.392234 0.745174 0.118940 0.815049 -0.567052 -0.860317 0.369713 0.350951 0.495689 0.446103 0.745174 0.032862 0.823026 -0.567052 -0.894328 0.277509 0.350951 0.446204 0.495598 0.745174 -0.053578 0.821937 -0.567052 -0.918487 0.182249 0.350951 0.391804 0.539634 0.745174 -0.138616 0.811934 -0.567052 -0.932444 0.085913 0.350951 0.333667 0.577392 0.745174 -0.222949 0.792935 -0.567052 -0.936313 -0.012287 0.350951 0.271314 0.609183 0.745174 -0.304826 0.765201 -0.567052 -0.929869 -0.110351 0.350951 0.205973 0.634264 0.745174 -0.383346 0.729039 -0.567052 -0.913182 -0.207200 0.350951 0.138363 0.652358 0.745174 -0.456958 0.685303 -0.567052 -0.886738 -0.300881 0.350951 0.069893 0.663197 0.745174 -0.526266 0.633637 -0.567052 -0.850320 -0.392160 0.350951 0.000000 0.666870 0.745174 -0.589778 0.574990 -0.567052 -0.804536 -0.479120 0.350951 -0.069893 0.663197 0.745174 -0.646282 0.510657 -0.567052 -0.750450 -0.560052 0.350951 -0.138363 0.652358 0.745174 -0.696243 0.440110 -0.567052 -0.687619 -0.635620 0.350951 -0.205973 0.634264 0.745174 -0.738536 0.364715 -0.567052 -0.617215 -0.704187 0.350951 -0.271314 0.609183 0.745174 -0.772693 0.285302 -0.567052 -0.540012 -0.764997 0.350951 -0.333667 0.577392 0.745174 -0.798136 0.203545 -0.567052 -0.457677 -0.816924 0.350951 -0.391804 0.539634 0.745174 -0.815073 0.118774 -0.567052 -0.369537 -0.860393 0.350951 -0.446204 0.495598 0.745174 -0.823033 0.032694 -0.567052 -0.277327 -0.894384 0.350951 -0.495689 0.446103 0.745174 -0.821980 -0.052923 -0.567052 -0.182980 -0.918342 0.350951 -0.539322 0.392234 0.745174 -0.811906 -0.138781 -0.567052 -0.085723 -0.932462 0.350951 -0.577460 0.333549 0.745174 -0.792889 -0.223111 -0.567052 0.012477 -0.936311 0.350951 -0.609238 0.271190 0.745174 -0.765139 -0.304982 -0.567052 0.110541 -0.929846 0.350951 -0.634305 0.205844 0.745174 -0.729344 -0.382765 -0.567052 0.206473 -0.913347 0.350951 -0.652247 0.138883 0.745174 -0.685210 -0.457098 -0.567052 0.301061 -0.886677 0.350951 -0.663211 0.069758 0.745174 -0.793747 -0.561667 -0.233444 0.538865 -0.827363 0.158410 -0.282117 -0.000057 0.959380 -0.730509 -0.641764 -0.233444 0.622611 -0.766330 0.158410 -0.280557 -0.029625 0.959380 -0.659938 -0.714132 -0.233444 0.698802 -0.697554 0.158410 -0.275966 -0.058590 0.959380 -0.581458 -0.779366 -0.233444 0.768062 -0.620473 0.158410 -0.268305 -0.087191 0.959380 -0.496572 -0.836014 -0.233444 0.828862 -0.536558 0.158410 -0.257689 -0.114831 0.959380 -0.407100 -0.883048 -0.233444 0.880085 -0.447612 0.158410 -0.244376 -0.140962 0.959380 -0.312309 -0.920851 -0.233444 0.922151 -0.352908 0.158410 -0.228256 -0.165798 0.959380 -0.214077 -0.948512 -0.233444 0.954059 -0.254316 0.158410 -0.209623 -0.188808 0.959380 -0.113487 -0.965725 -0.233444 0.975459 -0.152923 0.158410 -0.188680 -0.209738 0.959380 -0.012619 -0.972288 -0.233444 0.986064 -0.050832 0.158410 -0.165887 -0.228192 0.959380 0.089353 -0.968256 -0.233444 0.985961 0.052795 0.158410 -0.141057 -0.244321 0.959380 0.190341 -0.953559 -0.233444 0.974998 0.155840 0.158410 -0.114673 -0.257760 0.959380 0.288304 -0.928647 -0.233444 0.953551 0.256215 0.158410 -0.087295 -0.268271 0.959380 0.384045 -0.893316 -0.233444 0.921447 0.354743 0.158410 -0.058698 -0.275943 0.959380 0.475556 -0.848145 -0.233444 0.879192 0.449363 0.158410 -0.029454 -0.280575 0.959380 0.561182 -0.794090 -0.233444 0.827693 0.538360 0.158410 -0.000115 -0.282117 0.959380 0.641317 -0.730901 -0.233444 0.766710 0.622143 0.158410 0.029454 -0.280575 0.959380 0.714389 -0.659661 -0.233444 0.697282 0.699073 0.158410 0.058698 -0.275943 0.959380 0.779592 -0.581154 -0.233444 0.620174 0.768303 0.158410 0.087295 -0.268271 0.959380 0.835711 -0.497083 -0.233444 0.537064 0.828534 0.158410 0.114673 -0.257760 0.959380 0.883206 -0.406757 -0.233444 0.447270 0.880259 0.158410 0.141057 -0.244321 0.959380 0.920973 -0.311950 -0.233444 0.352549 0.922288 0.158410 0.165887 -0.228192 0.959380 0.948381 -0.214656 -0.233444 0.254899 0.953904 0.158410 0.188680 -0.209738 0.959380 0.965655 -0.114077 -0.233444 0.153519 0.975366 0.158410 0.209623 -0.188808 0.959380 0.972293 -0.012241 -0.233444 0.050448 0.986084 0.158410 0.228256 -0.165798 0.959380 0.968221 0.089730 -0.233444 -0.053178 0.985940 0.158410 0.244376 -0.140962 0.959380 0.953675 0.189758 -0.233444 -0.155244 0.975093 0.158410 0.257689 -0.114831 0.959380 0.928534 0.288665 -0.233444 -0.256586 0.953452 0.158410 0.268305 -0.087191 0.959380 0.893166 0.384393 -0.233444 -0.355101 0.921309 0.158410 0.275966 -0.058590 0.959380 0.848436 0.475038 -0.233444 -0.448826 0.879467 0.158410 0.280557 -0.029625 0.959380 0.793976 0.561344 -0.233444 -0.538528 0.827583 0.158410 0.282117 -0.000057 0.959380 0.730770 0.641466 -0.233444 -0.622299 0.766583 0.158410 0.280569 0.029511 0.959380 0.659515 0.714523 -0.233444 -0.699215 0.697140 0.158410 0.275931 0.058754 0.959380 0.581775 0.779129 -0.233444 -0.767809 0.620786 0.158410 0.268341 0.087082 0.959380 0.496913 0.835812 -0.233444 -0.828643 0.536895 0.158410 0.257736 0.114726 0.959380 0.406577 0.883289 -0.233444 -0.880350 0.447091 0.158410 0.244293 0.141107 0.959380 0.311763 0.921036 -0.233444 -0.922360 0.352361 0.158410 0.228158 0.165933 0.959380 0.214463 0.948425 -0.233444 -0.953956 0.254705 0.158410 0.209699 0.188722 0.959380 0.113880 0.965679 -0.233444 -0.975397 0.153320 0.158410 0.188765 0.209661 0.959380 0.012043 0.972296 -0.233444 -0.986094 0.050248 0.158410 0.165752 0.228290 0.959380 -0.088959 0.968292 -0.233444 -0.985982 -0.052393 0.158410 0.141157 0.244264 0.959380 -0.189953 0.953636 -0.233444 -0.975061 -0.155442 0.158410 0.114778 0.257713 0.959380 -0.288854 0.928476 -0.233444 -0.953399 -0.256780 0.158410 0.087136 0.268323 0.959380 -0.384575 0.893088 -0.233444 -0.921236 -0.355289 0.158410 0.058534 0.275978 0.959380 -0.475210 0.848339 -0.233444 -0.879375 -0.449005 0.158410 0.029568 0.280563 0.959380 -0.561505 0.793861 -0.233444 -0.827473 -0.538697 0.158410 0.000000 0.282117 0.959380 -0.641615 0.730639 -0.233444 -0.766457 -0.622455 0.158410 -0.029568 0.280563 0.959380 -0.713998 0.660084 -0.233444 -0.697697 -0.698660 0.158410 -0.058534 0.275978 0.959380 -0.779247 0.581616 -0.233444 -0.620630 -0.767936 0.158410 -0.087136 0.268323 0.959380 -0.835913 0.496742 -0.233444 -0.536726 -0.828753 0.158410 -0.114778 0.257713 0.959380 -0.883372 0.406397 -0.233444 -0.446911 -0.880441 0.158410 -0.141157 0.244264 0.959380 -0.920788 0.312496 -0.233444 -0.353096 -0.922079 0.158410 -0.165752 0.228290 0.959380 -0.948468 0.214270 -0.233444 -0.254510 -0.954008 0.158410 -0.188765 0.209661 0.959380 -0.965702 0.113684 -0.233444 -0.153122 -0.975428 0.158410 -0.209699 0.188722 0.959380 -0.972286 0.012817 -0.233444 -0.051033 -0.986054 0.158410 -0.228158 0.165933 0.959380 -0.968274 -0.089156 -0.233444 0.052594 -0.985972 0.158410 -0.244293 0.141107 0.959380 -0.953597 -0.190147 -0.233444 0.155641 -0.975029 0.158410 -0.257736 0.114726 0.959380 -0.928417 -0.289044 -0.233444 0.256974 -0.953347 0.158410 -0.268341 0.087082 0.959380 -0.893394 -0.383863 -0.233444 0.354555 -0.921519 0.158410 -0.275931 0.058754 0.959380 -0.848242 -0.475383 -0.233444 0.449184 -0.879284 0.158410 -0.280569 0.029511 0.959380 -0.190498 -0.930696 0.312276 -0.485091 0.365795 0.794280 -0.853462 -0.000174 -0.521155 -0.091905 -0.945535 0.312276 -0.520757 0.312939 0.794280 -0.848743 -0.089622 -0.521155 0.006750 -0.949967 0.312276 -0.550430 0.257187 0.794280 -0.834854 -0.177248 -0.521155 0.106276 -0.944028 0.312276 -0.574354 0.198082 0.794280 -0.811679 -0.263770 -0.521155 0.204632 -0.927690 0.312276 -0.591951 0.136794 0.794280 -0.779564 -0.347387 -0.521155 0.299832 -0.901434 0.312276 -0.602954 0.074603 0.794280 -0.739288 -0.426439 -0.521155 0.392658 -0.865045 0.312276 -0.607452 0.010998 0.794280 -0.690523 -0.501573 -0.521155 0.481158 -0.819128 0.312276 -0.605259 -0.052727 0.794280 -0.634152 -0.571182 -0.521155 0.564359 -0.764188 0.312276 -0.596400 -0.115873 0.794280 -0.570795 -0.634500 -0.521155 0.640642 -0.701471 0.312276 -0.581148 -0.177160 0.794280 -0.501842 -0.690328 -0.521155 0.710633 -0.630464 0.312276 -0.559380 -0.237093 0.794280 -0.426726 -0.739122 -0.521155 0.772796 -0.552512 0.312276 -0.531450 -0.294414 0.794280 -0.346911 -0.779776 -0.521155 0.825978 -0.469301 0.312276 -0.498015 -0.347995 0.794280 -0.264086 -0.811576 -0.521155 0.870615 -0.380148 0.312276 -0.458799 -0.398274 0.794280 -0.177573 -0.834785 -0.521155 0.905663 -0.286808 0.312276 -0.414531 -0.444166 0.794280 -0.089103 -0.848798 -0.521155 0.930579 -0.191066 0.312276 -0.366091 -0.484867 0.794280 -0.000348 -0.853462 -0.521155 0.945479 -0.092483 0.312276 -0.313257 -0.520566 0.794280 0.089103 -0.848798 -0.521155 0.949965 0.007120 0.312276 -0.256973 -0.550530 0.794280 0.177573 -0.834785 -0.521155 0.943987 0.106644 0.312276 -0.197858 -0.574431 0.794280 0.264086 -0.811576 -0.521155 0.927815 0.204065 0.312276 -0.137156 -0.591868 0.794280 0.346911 -0.779776 -0.521155 0.901318 0.300183 0.312276 -0.074369 -0.602983 0.794280 0.426726 -0.739122 -0.521155 0.864893 0.392994 0.312276 -0.010762 -0.607456 0.794280 0.501842 -0.690328 -0.521155 0.819422 0.480658 0.312276 0.052358 -0.605291 0.794280 0.570795 -0.634500 -0.521155 0.764532 0.563892 0.312276 0.115508 -0.596470 0.794280 0.634152 -0.571182 -0.521155 0.701222 0.640915 0.312276 0.177386 -0.581079 0.794280 0.690523 -0.501573 -0.521155 0.630188 0.710878 0.312276 0.237311 -0.559288 0.794280 0.739288 -0.426439 -0.521155 0.552984 0.772458 0.312276 0.294090 -0.531630 0.794280 0.779564 -0.347387 -0.521155 0.468980 0.826161 0.312276 0.348189 -0.497879 0.794280 0.811679 -0.263770 -0.521155 0.379809 0.870763 0.312276 0.398452 -0.458644 0.794280 0.834854 -0.177248 -0.521155 0.287361 0.905487 0.312276 0.443912 -0.414802 0.794280 0.848743 -0.089622 -0.521155 0.190877 0.930618 0.312276 0.484942 -0.365992 0.794280 0.853462 -0.000174 -0.521155 0.092290 0.945498 0.312276 0.520630 -0.313151 0.794280 0.848780 0.089276 -0.521155 -0.007313 0.949963 0.312276 0.550583 -0.256861 0.794280 0.834749 0.177743 -0.521155 -0.105892 0.944071 0.312276 0.574273 -0.198316 0.794280 0.811786 0.263440 -0.521155 -0.204254 0.927774 0.312276 0.591895 -0.137035 0.794280 0.779705 0.347070 -0.521155 -0.300366 0.901257 0.312276 0.602998 -0.074246 0.794280 0.739036 0.426877 -0.521155 -0.393170 0.864812 0.312276 0.607458 -0.010638 0.794280 0.690226 0.501982 -0.521155 -0.480824 0.819324 0.312276 0.605281 0.052481 0.794280 0.634384 0.570924 -0.521155 -0.564047 0.764418 0.312276 0.596447 0.115630 0.794280 0.571053 0.634268 -0.521155 -0.641057 0.701091 0.312276 0.581043 0.177505 0.794280 0.501432 0.690625 -0.521155 -0.710376 0.630753 0.312276 0.559476 0.236865 0.794280 0.427028 0.738949 -0.521155 -0.772571 0.552827 0.312276 0.531570 0.294198 0.794280 0.347229 0.779634 -0.521155 -0.826256 0.468811 0.312276 0.497808 0.348290 0.794280 0.263605 0.811733 -0.521155 -0.870840 0.379632 0.312276 0.458563 0.398546 0.794280 0.177078 0.834890 -0.521155 -0.905546 0.287176 0.312276 0.414712 0.443997 0.794280 0.089449 0.848762 -0.521155 -0.930657 0.190687 0.312276 0.365893 0.485016 0.794280 0.000000 0.853462 -0.521155 -0.945517 0.092098 0.312276 0.313045 0.520693 0.794280 -0.089449 0.848762 -0.521155 -0.949969 -0.006557 0.312276 0.257299 0.550378 0.794280 -0.177078 0.834890 -0.521155 -0.944050 -0.106084 0.312276 0.198199 0.574314 0.794280 -0.263605 0.811733 -0.521155 -0.927732 -0.204443 0.312276 0.136915 0.591923 0.794280 -0.347229 0.779634 -0.521155 -0.901195 -0.300550 0.312276 0.074123 0.603013 0.794280 -0.427028 0.738949 -0.521155 -0.865125 -0.392482 0.312276 0.011122 0.607450 0.794280 -0.501432 0.690625 -0.521155 -0.819226 -0.480991 0.312276 -0.052604 0.605270 0.794280 -0.571053 0.634268 -0.521155 -0.764303 -0.564203 0.312276 -0.115751 0.596423 0.794280 -0.634384 0.570924 -0.521155 -0.701602 -0.640499 0.312276 -0.177042 0.581184 0.794280 -0.690226 0.501982 -0.521155 -0.630609 -0.710504 0.312276 -0.236979 0.559428 0.794280 -0.739036 0.426877 -0.521155 -0.552670 -0.772683 0.312276 -0.294306 0.531510 0.794280 -0.779705 0.347070 -0.521155 -0.468643 -0.826352 0.312276 -0.348391 0.497737 0.794280 -0.811786 0.263440 -0.521155 -0.380325 -0.870538 0.312276 -0.398180 0.458881 0.794280 -0.834749 0.177743 -0.521155 -0.286992 -0.905604 0.312276 -0.444081 0.414621 0.794280 -0.848780 0.089276 -0.521155 0.524855 -0.500417 -0.688557 -0.303213 -0.865785 0.398094 -0.795355 -0.000162 -0.606144 0.574411 -0.442652 -0.688557 -0.210803 -0.892795 0.398094 -0.790958 -0.083520 -0.606144 0.617261 -0.380630 -0.688557 -0.116980 -0.909855 0.398094 -0.778013 -0.165180 -0.606144 0.653754 -0.313840 -0.688557 -0.020977 -0.917105 0.398094 -0.756416 -0.245812 -0.606144 0.683046 -0.243593 -0.688557 0.075258 -0.914252 0.398094 -0.726488 -0.323736 -0.606144 0.704643 -0.171368 -0.688557 0.169762 -0.901500 0.398094 -0.688955 -0.397405 -0.606144 0.718723 -0.096573 -0.688557 0.263311 -0.878743 0.398094 -0.643509 -0.467424 -0.606144 0.724887 -0.020714 -0.688557 0.353959 -0.846306 0.398094 -0.590976 -0.532294 -0.606144 0.723065 0.055374 -0.688557 0.440709 -0.804548 0.398094 -0.531933 -0.591301 -0.606144 0.713410 0.130138 -0.688557 0.521850 -0.754449 0.398094 -0.467674 -0.643327 -0.606144 0.695841 0.204192 -0.688557 0.598047 -0.695601 0.398094 -0.397673 -0.688800 -0.606144 0.670608 0.275996 -0.688557 0.667658 -0.629090 0.398094 -0.323292 -0.726685 -0.606144 0.638333 0.344122 -0.688557 0.729358 -0.556380 0.398094 -0.246106 -0.756321 -0.606144 0.598751 0.409129 -0.688557 0.783653 -0.476874 0.398094 -0.165483 -0.777949 -0.606144 0.552574 0.469629 -0.688557 0.829317 -0.392115 0.398094 -0.083037 -0.791008 -0.606144 0.500737 0.524549 -0.688557 0.865599 -0.303742 0.398094 -0.000324 -0.795355 -0.606144 0.443003 0.574141 -0.688557 0.892666 -0.211348 0.398094 0.083037 -0.791008 -0.606144 0.380389 0.617409 -0.688557 0.909901 -0.116626 0.398094 0.165483 -0.777949 -0.606144 0.313585 0.653876 -0.688557 0.917113 -0.020620 0.398094 0.246106 -0.756321 -0.606144 0.244011 0.682897 -0.688557 0.914298 0.074699 0.398094 0.323292 -0.726685 -0.606144 0.171094 0.704710 -0.688557 0.901434 0.170113 0.398094 0.397673 -0.688800 -0.606144 0.096293 0.718761 -0.688557 0.878640 0.263653 0.398094 0.467674 -0.643327 -0.606144 0.021157 0.724874 -0.688557 0.846522 0.353442 0.398094 0.531933 -0.591301 -0.606144 -0.054932 0.723099 -0.688557 0.804817 0.440217 0.398094 0.590976 -0.532294 -0.606144 -0.130415 0.713359 -0.688557 0.754246 0.522143 0.398094 0.643509 -0.467424 -0.606144 -0.204462 0.695762 -0.688557 0.695368 0.598318 0.398094 0.688955 -0.397405 -0.606144 -0.275586 0.670777 -0.688557 0.629498 0.667273 0.398094 0.726488 -0.323736 -0.606144 -0.344371 0.638199 -0.688557 0.556096 0.729574 0.398094 0.756416 -0.245812 -0.606144 -0.409362 0.598592 -0.688557 0.476569 0.783839 0.398094 0.778013 -0.165180 -0.606144 -0.469292 0.552861 -0.688557 0.392621 0.829078 0.398094 0.790958 -0.083520 -0.606144 -0.524651 0.500631 -0.688557 0.303566 0.865661 0.398094 0.795355 -0.000162 -0.606144 -0.574231 0.442886 -0.688557 0.211166 0.892709 0.398094 0.790991 0.083198 -0.606144 -0.617486 0.380264 -0.688557 0.116441 0.909925 0.398094 0.777915 0.165641 -0.606144 -0.653626 0.314106 -0.688557 0.021350 0.917096 0.398094 0.756517 0.245504 -0.606144 -0.682947 0.243872 -0.688557 -0.074885 0.914283 0.398094 0.726620 0.323440 -0.606144 -0.704745 0.170951 -0.688557 -0.170296 0.901399 0.398094 0.688719 0.397813 -0.606144 -0.718780 0.096147 -0.688557 -0.263832 0.878586 0.398094 0.643232 0.467805 -0.606144 -0.724878 0.021009 -0.688557 -0.353614 0.846450 0.398094 0.591193 0.532053 -0.606144 -0.723088 -0.055079 -0.688557 -0.440381 0.804727 0.398094 0.532174 0.591084 -0.606144 -0.713333 -0.130561 -0.688557 -0.522297 0.754140 0.398094 0.467293 0.643604 -0.606144 -0.695925 -0.203908 -0.688557 -0.597764 0.695844 0.398094 0.397954 0.688638 -0.606144 -0.670721 -0.275723 -0.688557 -0.667401 0.629362 0.398094 0.323588 0.726554 -0.606144 -0.638129 -0.344501 -0.688557 -0.729687 0.555947 0.398094 0.245658 0.756467 -0.606144 -0.598508 -0.409484 -0.688557 -0.783936 0.476409 0.398094 0.165022 0.778047 -0.606144 -0.552765 -0.469404 -0.688557 -0.829157 0.392453 0.398094 0.083359 0.790974 -0.606144 -0.500524 -0.524753 -0.688557 -0.865723 0.303390 0.398094 0.000000 0.795355 -0.606144 -0.442769 -0.574321 -0.688557 -0.892752 0.210985 0.398094 -0.083359 0.790974 -0.606144 -0.380755 -0.617183 -0.688557 -0.909831 0.117166 0.398094 -0.165022 0.778047 -0.606144 -0.313973 -0.653690 -0.688557 -0.917100 0.021164 0.398094 -0.245658 0.756467 -0.606144 -0.243732 -0.682996 -0.688557 -0.914268 -0.075072 0.398094 -0.323588 0.726554 -0.606144 -0.170807 -0.704780 -0.688557 -0.901364 -0.170480 0.398094 -0.397954 0.688638 -0.606144 -0.096719 -0.718704 -0.688557 -0.878796 -0.263132 0.398094 -0.467293 0.643604 -0.606144 -0.020861 -0.724882 -0.688557 -0.846378 -0.353787 0.398094 -0.532174 0.591084 -0.606144 0.055226 -0.723076 -0.688557 -0.804637 -0.440545 0.398094 -0.591193 0.532053 -0.606144 0.129993 -0.713436 -0.688557 -0.754556 -0.521696 0.398094 -0.643232 0.467805 -0.606144 0.204050 -0.695883 -0.688557 -0.695723 -0.597906 0.398094 -0.688719 0.397813 -0.606144 0.275860 -0.670665 -0.688557 -0.629226 -0.667529 0.398094 -0.726620 0.323440 -0.606144 0.344631 -0.638059 -0.688557 -0.555799 -0.729801 0.398094 -0.756517 0.245504 -0.606144 0.409007 -0.598834 -0.688557 -0.477033 -0.783556 0.398094 -0.777915 0.165641 -0.606144 0.469517 -0.552669 -0.688557 -0.392284 -0.829237 0.398094 -0.790991 0.083198 -0.606144 0.014893 0.961883 -0.273055 0.053128 -0.273460 -0.960415 -0.998477 -0.000203 -0.055176 -0.086001 0.958147 -0.273055 0.081496 -0.266386 -0.960415 -0.992956 -0.104850 -0.055176 -0.185004 0.944042 -0.273055 0.108710 -0.256487 -0.960415 -0.976707 -0.207365 -0.055176 -0.282928 0.919453 -0.273055 0.134993 -0.243680 -0.960415 -0.949594 -0.308588 -0.055176 -0.377735 0.884736 -0.273055 0.159789 -0.228190 -0.960415 -0.912022 -0.406413 -0.055176 -0.467541 0.840742 -0.273055 0.182615 -0.210369 -0.960415 -0.864903 -0.498897 -0.055176 -0.553081 0.787110 -0.273055 0.203657 -0.190071 -0.960415 -0.807852 -0.586797 -0.055176 -0.632530 0.724808 -0.273055 0.222456 -0.167680 -0.960415 -0.741902 -0.668234 -0.055176 -0.705011 0.654523 -0.273055 0.238805 -0.143441 -0.960415 -0.667781 -0.742310 -0.055176 -0.769150 0.577797 -0.273055 0.252406 -0.117875 -0.960415 -0.587111 -0.807624 -0.055176 -0.825471 0.494002 -0.273055 0.263370 -0.090772 -0.960415 -0.499233 -0.864709 -0.055176 -0.872700 0.404766 -0.273055 0.271433 -0.062669 -0.960415 -0.405856 -0.912270 -0.055176 -0.910004 0.311982 -0.273055 0.276472 -0.034152 -0.960415 -0.308958 -0.949474 -0.055176 -0.937691 0.214889 -0.273055 0.278529 -0.004988 -0.960415 -0.207745 -0.976626 -0.055176 -0.955048 0.115429 -0.273055 0.277518 0.024231 -0.960415 -0.104243 -0.993020 -0.055176 -0.961874 0.015481 -0.273055 0.273493 0.052961 -0.960415 -0.000407 -0.998477 -0.055176 -0.958199 -0.085416 -0.273055 0.266436 0.081333 -0.960415 0.104243 -0.993020 -0.055176 -0.943970 -0.185372 -0.273055 0.256444 0.108810 -0.960415 0.207745 -0.976626 -0.055176 -0.919342 -0.283285 -0.273055 0.243628 0.135088 -0.960415 0.308958 -0.949474 -0.055176 -0.884967 -0.377194 -0.273055 0.228288 0.159649 -0.960415 0.405856 -0.912270 -0.055176 -0.840560 -0.467867 -0.273055 0.210298 0.182696 -0.960415 0.499233 -0.864709 -0.055176 -0.786895 -0.553387 -0.273055 0.189992 0.203731 -0.960415 0.587111 -0.807624 -0.055176 -0.725194 -0.632087 -0.273055 0.167815 0.222354 -0.960415 0.667781 -0.742310 -0.055176 -0.654953 -0.704612 -0.273055 0.143587 0.238717 -0.960415 0.741902 -0.668234 -0.055176 -0.577498 -0.769375 -0.273055 0.117777 0.252452 -0.960415 0.807852 -0.586797 -0.055176 -0.493681 -0.825663 -0.273055 0.090670 0.263405 -0.960415 0.864903 -0.498897 -0.055176 -0.405300 -0.872452 -0.273055 0.062835 0.271395 -0.960415 0.912022 -0.406413 -0.055176 -0.311628 -0.910126 -0.273055 0.034045 0.276485 -0.960415 0.949594 -0.308588 -0.055176 -0.214524 -0.937774 -0.273055 0.004880 0.278531 -0.960415 0.976707 -0.207365 -0.055176 -0.116012 -0.954978 -0.273055 -0.024062 0.277532 -0.960415 0.992956 -0.104850 -0.055176 -0.015285 -0.961877 -0.273055 -0.053017 0.273482 -0.960415 0.998477 -0.000203 -0.055176 0.085611 -0.958182 -0.273055 -0.081388 0.266419 -0.960415 0.992999 0.104445 -0.055176 0.185564 -0.943932 -0.273055 -0.108862 0.256422 -0.960415 0.976583 0.207943 -0.055176 0.282553 -0.919568 -0.273055 -0.134894 0.243735 -0.960415 0.949720 0.308202 -0.055176 0.377374 -0.884890 -0.273055 -0.159696 0.228255 -0.960415 0.912187 0.406042 -0.055176 0.468039 -0.840465 -0.273055 -0.182739 0.210261 -0.960415 0.864608 0.499409 -0.055176 0.553548 -0.786782 -0.273055 -0.203770 0.189950 -0.960415 0.807504 0.587276 -0.055176 0.632235 -0.725066 -0.273055 -0.222388 0.167770 -0.960415 0.742174 0.667932 -0.055176 0.704745 -0.654810 -0.273055 -0.238747 0.143538 -0.960415 0.668083 0.742038 -0.055176 0.769492 -0.577341 -0.273055 -0.252476 0.117725 -0.960415 0.586633 0.807971 -0.055176 0.825270 -0.494339 -0.273055 -0.263333 0.090879 -0.960415 0.499585 0.864506 -0.055176 0.872535 -0.405122 -0.273055 -0.271407 0.062780 -0.960415 0.406227 0.912105 -0.055176 0.910189 -0.311443 -0.273055 -0.276492 0.033988 -0.960415 0.308395 0.949657 -0.055176 0.937818 -0.214333 -0.273055 -0.278532 0.004823 -0.960415 0.207166 0.976749 -0.055176 0.955001 -0.115818 -0.273055 -0.277527 -0.024118 -0.960415 0.104648 0.992978 -0.055176 0.961880 -0.015089 -0.273055 -0.273471 -0.053072 -0.960415 0.000000 0.998477 -0.055176 0.958164 0.085806 -0.273055 -0.266403 -0.081442 -0.960415 -0.104648 0.992978 -0.055176 0.944079 0.184812 -0.273055 -0.256509 -0.108658 -0.960415 -0.207166 0.976749 -0.055176 0.919510 0.282740 -0.273055 -0.243708 -0.134943 -0.960415 -0.308395 0.949657 -0.055176 0.884813 0.377555 -0.273055 -0.228223 -0.159742 -0.960415 -0.406227 0.912105 -0.055176 0.840369 0.468210 -0.273055 -0.210224 -0.182782 -0.960415 -0.499585 0.864506 -0.055176 0.787223 0.552921 -0.273055 -0.190113 -0.203618 -0.960415 -0.586633 0.807971 -0.055176 0.724937 0.632382 -0.273055 -0.167725 -0.222422 -0.960415 -0.668083 0.742038 -0.055176 0.654666 0.704878 -0.273055 -0.143490 -0.238776 -0.960415 -0.742174 0.667932 -0.055176 0.577954 0.769032 -0.273055 -0.117927 -0.252382 -0.960415 -0.807504 0.587276 -0.055176 0.494171 0.825371 -0.273055 -0.090826 -0.263351 -0.960415 -0.864608 0.499409 -0.055176 0.404944 0.872617 -0.273055 -0.062724 -0.271420 -0.960415 -0.912187 0.406042 -0.055176 0.311257 0.910253 -0.273055 -0.033932 -0.276499 -0.960415 -0.949720 0.308202 -0.055176 0.215080 0.937647 -0.273055 -0.005045 -0.278528 -0.960415 -0.976583 0.207943 -0.055176 0.115623 0.955025 -0.273055 0.024175 -0.277523 -0.960415 -0.992999 0.104445 -0.055176 -0.308835 -0.105073 -0.945294 0.032816 -0.994465 0.099817 -0.950549 -0.000194 0.310574 -0.296122 -0.136862 -0.945294 0.136862 -0.985548 0.099817 -0.945294 -0.099817 0.310574 -0.280314 -0.166864 -0.945294 0.238435 -0.966015 0.099817 -0.929824 -0.197411 0.310574 -0.261281 -0.195324 -0.945294 0.338367 -0.935705 0.099817 -0.904013 -0.293776 0.310574 -0.239371 -0.221632 -0.945294 0.434572 -0.895089 0.099817 -0.868244 -0.386905 0.310574 -0.215070 -0.245284 -0.945294 0.525146 -0.845138 0.099817 -0.823388 -0.474949 0.310574 -0.188178 -0.266474 -0.945294 0.610830 -0.785445 0.099817 -0.769075 -0.558630 0.310574 -0.159213 -0.284729 -0.945294 0.689786 -0.717100 0.099817 -0.706291 -0.636158 0.310574 -0.128494 -0.299848 -0.945294 0.761144 -0.640856 0.099817 -0.635727 -0.706679 0.310574 -0.096672 -0.311567 -0.945294 0.823561 -0.558377 0.099817 -0.558930 -0.768857 0.310574 -0.063485 -0.319983 -0.945294 0.877547 -0.468986 0.099817 -0.475270 -0.823203 0.310574 -0.029599 -0.324874 -0.945294 0.921867 -0.374430 0.099817 -0.386375 -0.868481 0.310574 0.004287 -0.326192 -0.945294 0.955756 -0.276706 0.099817 -0.294128 -0.903899 0.310574 0.038451 -0.323946 -0.945294 0.979493 -0.175012 0.099817 -0.197773 -0.929747 0.310574 0.072191 -0.318132 -0.945294 0.992441 -0.071390 0.099817 -0.099239 -0.945355 0.310574 0.104884 -0.308899 -0.945294 0.994484 0.032208 0.099817 -0.000387 -0.950549 0.310574 0.136681 -0.296205 -0.945294 0.985632 0.136260 0.099817 0.099239 -0.945355 0.310574 0.166973 -0.280249 -0.945294 0.965922 0.238811 0.099817 0.197773 -0.929747 0.310574 0.195425 -0.261205 -0.945294 0.935574 0.338731 0.099817 0.294128 -0.903899 0.310574 0.221486 -0.239507 -0.945294 0.895354 0.434025 0.099817 0.386375 -0.868481 0.310574 0.245368 -0.214974 -0.945294 0.844934 0.525474 0.099817 0.475270 -0.823203 0.310574 0.266547 -0.188074 -0.945294 0.785207 0.611135 0.099817 0.558930 -0.768857 0.310574 0.284632 -0.159387 -0.945294 0.717521 0.689348 0.099817 0.635727 -0.706679 0.310574 0.299769 -0.128677 -0.945294 0.641321 0.760753 0.099817 0.706291 -0.636158 0.310574 0.311604 -0.096551 -0.945294 0.558056 0.823778 0.099817 0.769075 -0.558630 0.310574 0.320007 -0.063361 -0.945294 0.468645 0.877729 0.099817 0.823388 -0.474949 0.310574 0.324856 -0.029798 -0.945294 0.374993 0.921638 0.099817 0.868244 -0.386905 0.310574 0.326190 0.004414 -0.945294 0.276334 0.955864 0.099817 0.904013 -0.293776 0.310574 0.323931 0.038577 -0.945294 0.174631 0.979562 0.099817 0.929824 -0.197411 0.310574 0.318176 0.071996 -0.945294 0.071996 0.992398 0.099817 0.945294 -0.099817 0.310574 0.308878 0.104947 -0.945294 -0.032411 0.994478 0.099817 0.950549 -0.000194 0.310574 0.296178 0.136741 -0.945294 -0.136461 0.985604 0.099817 0.945335 0.099432 0.310574 0.280215 0.167030 -0.945294 -0.239007 0.965874 0.099817 0.929707 0.197962 0.310574 0.261361 0.195217 -0.945294 -0.337986 0.935843 0.099817 0.904133 0.293408 0.310574 0.239461 0.221535 -0.945294 -0.434208 0.895266 0.099817 0.868402 0.386551 0.310574 0.214924 0.245412 -0.945294 -0.525646 0.844827 0.099817 0.823106 0.475437 0.310574 0.188020 0.266586 -0.945294 -0.611295 0.785083 0.099817 0.768744 0.559086 0.310574 0.159329 0.284664 -0.945294 -0.689494 0.717380 0.099817 0.706550 0.635871 0.310574 0.128616 0.299795 -0.945294 -0.760883 0.641166 0.099817 0.636015 0.706420 0.310574 0.096487 0.311624 -0.945294 -0.823891 0.557888 0.099817 0.558474 0.769189 0.310574 0.063616 0.319957 -0.945294 -0.877356 0.469344 0.099817 0.475605 0.823009 0.310574 0.029731 0.324862 -0.945294 -0.921714 0.374806 0.099817 0.386728 0.868323 0.310574 -0.004480 0.326189 -0.945294 -0.955920 0.276139 0.099817 0.293592 0.904073 0.310574 -0.038643 0.323923 -0.945294 -0.979597 0.174431 0.099817 0.197222 0.929864 0.310574 -0.072061 0.318161 -0.945294 -0.992412 0.071794 0.099817 0.099624 0.945314 0.310574 -0.105010 0.308856 -0.945294 -0.994471 -0.032613 0.099817 0.000000 0.950549 0.310574 -0.136802 0.296150 -0.945294 -0.985576 -0.136661 0.099817 -0.099624 0.945314 0.310574 -0.166807 0.280348 -0.945294 -0.966064 -0.238238 0.099817 -0.197222 0.929864 0.310574 -0.195270 0.261321 -0.945294 -0.935774 -0.338177 0.099817 -0.293592 0.904073 0.310574 -0.221583 0.239416 -0.945294 -0.895177 -0.434390 0.099817 -0.386728 0.868323 0.310574 -0.245456 0.214874 -0.945294 -0.844720 -0.525818 0.099817 -0.475605 0.823009 0.310574 -0.266436 0.188232 -0.945294 -0.785569 -0.610670 0.099817 -0.558474 0.769189 0.310574 -0.284697 0.159271 -0.945294 -0.717240 -0.689640 0.099817 -0.636015 0.706420 0.310574 -0.299821 0.128555 -0.945294 -0.641011 -0.761014 0.099817 -0.706550 0.635871 0.310574 -0.311547 0.096735 -0.945294 -0.558544 -0.823447 0.099817 -0.768744 0.559086 0.310574 -0.319970 0.063550 -0.945294 -0.469165 -0.877451 0.099817 -0.823106 0.475437 0.310574 -0.324868 0.029665 -0.945294 -0.374618 -0.921791 0.099817 -0.868402 0.386551 0.310574 -0.326188 -0.004547 -0.945294 -0.275945 -0.955977 0.099817 -0.904133 0.293408 0.310574 -0.323954 -0.038385 -0.945294 -0.175211 -0.979458 0.099817 -0.929707 0.197962 0.310574 -0.318146 -0.072126 -0.945294 -0.071592 -0.992427 0.099817 -0.945335 0.099432 0.310574 -0.375165 -0.484062 0.790528 -0.207729 0.875034 0.437224 -0.903382 -0.000184 -0.428836 -0.322366 -0.520716 0.790528 -0.298294 0.848443 0.437224 -0.898388 -0.094864 -0.428836 -0.266567 -0.551368 0.790528 -0.384762 0.812892 0.437224 -0.883686 -0.187615 -0.428836 -0.207312 -0.576270 0.790528 -0.467840 0.768089 0.437224 -0.859155 -0.279199 -0.428836 -0.145773 -0.594824 0.790528 -0.545764 0.714826 0.437224 -0.825162 -0.367707 -0.428836 -0.083235 -0.606743 0.790528 -0.617023 0.654307 0.437224 -0.782531 -0.451382 -0.428836 -0.019186 -0.612125 0.790528 -0.682201 0.586035 0.437224 -0.730913 -0.530911 -0.428836 0.045075 -0.610765 0.790528 -0.739865 0.511308 0.437224 -0.671244 -0.604592 -0.428836 0.108839 -0.602677 0.790528 -0.789379 0.430948 0.437224 -0.604182 -0.671613 -0.428836 0.170817 -0.588121 0.790528 -0.829851 0.346672 0.437224 -0.531195 -0.730706 -0.428836 0.231515 -0.566979 0.790528 -0.861615 0.257789 0.437224 -0.451686 -0.782355 -0.428836 0.289664 -0.539592 0.790528 -0.883888 0.166066 0.437224 -0.367202 -0.825386 -0.428836 0.344115 -0.506606 0.790528 -0.896352 0.073410 0.437224 -0.279533 -0.859047 -0.428836 0.395316 -0.467750 0.790528 -0.899109 -0.020939 0.437224 -0.187959 -0.883613 -0.428836 0.442162 -0.423742 0.790528 -0.891962 -0.115056 0.437224 -0.094315 -0.898446 -0.428836 0.483833 -0.375461 0.790528 -0.875160 -0.207194 0.437224 -0.000368 -0.903382 -0.428836 0.520519 -0.322684 0.790528 -0.848625 -0.297776 0.437224 0.094315 -0.898446 -0.428836 0.551472 -0.266353 0.790528 -0.812742 -0.385078 0.437224 0.187959 -0.883613 -0.428836 0.576350 -0.207088 0.790528 -0.767907 -0.468138 0.437224 0.279533 -0.859047 -0.428836 0.594735 -0.146136 0.790528 -0.715160 -0.545327 0.437224 0.367202 -0.825386 -0.428836 0.606775 -0.082999 0.790528 -0.654067 -0.617278 0.437224 0.451686 -0.782355 -0.428836 0.612132 -0.018947 0.790528 -0.585769 -0.682429 0.437224 0.531195 -0.730706 -0.428836 0.610792 0.044702 0.790528 -0.511759 -0.739552 0.437224 0.604182 -0.671613 -0.428836 0.602743 0.108471 0.790528 -0.431431 -0.789115 0.437224 0.671244 -0.604592 -0.428836 0.588055 0.171046 0.790528 -0.346350 -0.829986 0.437224 0.730913 -0.530911 -0.428836 0.566889 0.231736 0.790528 -0.257454 -0.861715 0.437224 0.782531 -0.451382 -0.428836 0.539769 0.289334 0.790528 -0.166606 -0.883786 0.437224 0.825162 -0.367707 -0.428836 0.506472 0.344312 0.790528 -0.073061 -0.896380 0.437224 0.859155 -0.279199 -0.428836 0.467596 0.395498 0.790528 0.021288 -0.899101 0.437224 0.883686 -0.187615 -0.428836 0.424012 0.441903 0.790528 0.114511 -0.892033 0.437224 0.898388 -0.094864 -0.428836 0.375362 0.483909 0.790528 0.207372 -0.875118 0.437224 0.903382 -0.000184 -0.428836 0.322578 0.520585 0.790528 0.297949 -0.848564 0.437224 0.898426 0.094498 -0.428836 0.266240 0.551526 0.790528 0.385243 -0.812664 0.437224 0.883574 0.188139 -0.428836 0.207546 0.576185 0.790528 0.467527 -0.768280 0.437224 0.859269 0.278849 -0.428836 0.146015 0.594764 0.790528 0.545473 -0.715048 0.437224 0.825311 0.367371 -0.428836 0.082875 0.606792 0.790528 0.617411 -0.653941 0.437224 0.782263 0.451846 -0.428836 0.018823 0.612136 0.790528 0.682548 -0.585630 0.437224 0.730598 0.531344 -0.428836 -0.044826 0.610783 0.790528 0.739656 -0.511609 0.437224 0.671490 0.604318 -0.428836 -0.108594 0.602721 0.790528 0.789203 -0.431270 0.437224 0.604455 0.671367 -0.428836 -0.171165 0.588020 0.790528 0.830057 -0.346181 0.437224 0.530762 0.731021 -0.428836 -0.231284 0.567074 0.790528 0.861510 -0.258140 0.437224 0.452005 0.782171 -0.428836 -0.289444 0.539710 0.790528 0.883820 -0.166426 0.437224 0.367539 0.825236 -0.428836 -0.344415 0.506402 0.790528 0.896395 -0.072878 0.437224 0.279024 0.859212 -0.428836 -0.395593 0.467516 0.790528 0.899096 0.021472 0.437224 0.187435 0.883724 -0.428836 -0.441990 0.423922 0.790528 0.892009 0.114693 0.437224 0.094681 0.898407 -0.428836 -0.483986 0.375264 0.790528 0.875076 0.207550 0.437224 0.000000 0.903382 -0.428836 -0.520651 0.322472 0.790528 0.848504 0.298122 0.437224 -0.094681 0.898407 -0.428836 -0.551314 0.266679 0.790528 0.812970 0.384596 0.437224 -0.187435 0.883724 -0.428836 -0.576228 0.207429 0.790528 0.768185 0.467683 0.437224 -0.279024 0.859212 -0.428836 -0.594794 0.145894 0.790528 0.714937 0.545619 0.437224 -0.367539 0.825236 -0.428836 -0.606809 0.082752 0.790528 0.653815 0.617544 0.437224 -0.452005 0.782171 -0.428836 -0.612121 0.019310 0.790528 0.586174 0.682082 0.437224 -0.530762 0.731021 -0.428836 -0.610774 -0.044951 0.790528 0.511458 0.739760 0.437224 -0.604455 0.671367 -0.428836 -0.602699 -0.108717 0.790528 0.431109 0.789291 0.437224 -0.671490 0.604318 -0.428836 -0.588156 -0.170697 0.790528 0.346841 0.829781 0.437224 -0.730598 0.531344 -0.428836 -0.567027 -0.231400 0.790528 0.257964 0.861562 0.437224 -0.782263 0.451846 -0.428836 -0.539651 -0.289554 0.790528 0.166246 0.883854 0.437224 -0.825311 0.367371 -0.428836 -0.506332 -0.344519 0.790528 0.072696 0.896410 0.437224 -0.859269 0.278849 -0.428836 -0.467831 -0.395221 0.790528 -0.020755 0.899113 0.437224 -0.883574 0.188139 -0.428836 -0.423832 -0.442076 0.790528 -0.114875 0.891986 0.437224 -0.898426 0.094498 -0.428836 -0.043736 0.995482 -0.084278 -0.456846 -0.094950 -0.884464 -0.888470 -0.000181 0.458935 -0.147829 0.985416 -0.084278 -0.444379 -0.142308 -0.884464 -0.883558 -0.093298 0.458935 -0.249329 0.964745 -0.084278 -0.427205 -0.187671 -0.884464 -0.869098 -0.184518 0.458935 -0.349068 0.933300 -0.084278 -0.405182 -0.231412 -0.884464 -0.844973 -0.274590 0.458935 -0.444962 0.891575 -0.084278 -0.378697 -0.272603 -0.884464 -0.811540 -0.361637 0.458935 -0.535114 0.840565 -0.084278 -0.348351 -0.310444 -0.884464 -0.769613 -0.443931 0.458935 -0.620264 0.779852 -0.084278 -0.313896 -0.345244 -0.884464 -0.718847 -0.522147 0.458935 -0.698582 0.710549 -0.084278 -0.275983 -0.376241 -0.884464 -0.660163 -0.594611 0.458935 -0.769206 0.633419 -0.084278 -0.235031 -0.403094 -0.884464 -0.594208 -0.660527 0.458935 -0.830806 0.550143 -0.084278 -0.191915 -0.425315 -0.884464 -0.522426 -0.718644 0.458935 -0.883890 0.460039 -0.084278 -0.146281 -0.443087 -0.884464 -0.444230 -0.769440 0.458935 -0.927237 0.364867 -0.084278 -0.099037 -0.455978 -0.884464 -0.361141 -0.811761 0.458935 -0.960105 0.266637 -0.084278 -0.051166 -0.463796 -0.884464 -0.274919 -0.844866 0.458935 -0.982763 0.164543 -0.084278 -0.002275 -0.466604 -0.884464 -0.184856 -0.869026 0.458935 -0.994596 0.060636 -0.084278 0.046641 -0.464272 -0.884464 -0.092758 -0.883614 0.458935 -0.995509 -0.043128 -0.084278 0.094671 -0.456904 -0.884464 -0.000362 -0.888470 0.458935 -0.985506 -0.147227 -0.084278 0.142037 -0.444466 -0.884464 0.092758 -0.883614 0.458935 -0.964648 -0.249704 -0.084278 0.187837 -0.427132 -0.884464 0.184856 -0.869026 0.458935 -0.933164 -0.349431 -0.084278 0.231569 -0.405092 -0.884464 0.274919 -0.844866 0.458935 -0.891847 -0.444417 -0.084278 0.272372 -0.378864 -0.884464 0.361141 -0.811761 0.458935 -0.840357 -0.535441 -0.084278 0.310579 -0.348231 -0.884464 0.444230 -0.769440 0.458935 -0.779611 -0.620568 -0.084278 0.345366 -0.313762 -0.884464 0.522426 -0.718644 0.458935 -0.710976 -0.698148 -0.084278 0.376072 -0.276213 -0.884464 0.594208 -0.660527 0.458935 -0.633889 -0.768819 -0.084278 0.402950 -0.235277 -0.884464 0.660163 -0.594611 0.458935 -0.549820 -0.831020 -0.084278 0.425390 -0.191749 -0.884464 0.718847 -0.522147 0.458935 -0.459695 -0.884069 -0.084278 0.443144 -0.146109 -0.884464 0.769613 -0.443931 0.458935 -0.365434 -0.927014 -0.084278 0.455917 -0.099316 -0.884464 0.811540 -0.361637 0.458935 -0.266264 -0.960209 -0.084278 0.463815 -0.050985 -0.884464 0.844973 -0.274590 0.458935 -0.164160 -0.982827 -0.084278 0.466605 -0.002093 -0.884464 0.869098 -0.184518 0.458935 -0.061244 -0.994558 -0.084278 0.464301 0.046357 -0.884464 0.883558 -0.093298 0.458935 0.043331 -0.995500 -0.084278 0.456885 0.094764 -0.884464 0.888470 -0.000181 0.458935 0.147427 -0.985476 -0.084278 0.444437 0.142127 -0.884464 0.883596 0.092938 0.458935 0.249900 -0.964597 -0.084278 0.427093 0.187924 -0.884464 0.868989 0.185033 0.458935 0.348687 -0.933442 -0.084278 0.405277 0.231247 -0.884464 0.845085 0.274246 0.458935 0.444599 -0.891756 -0.084278 0.378808 0.272449 -0.884464 0.811687 0.361306 0.458935 0.535612 -0.840248 -0.084278 0.348167 0.310650 -0.884464 0.769350 0.444387 0.458935 0.620727 -0.779484 -0.084278 0.313692 0.345430 -0.884464 0.718538 0.522573 0.458935 0.698293 -0.710833 -0.084278 0.276137 0.376129 -0.884464 0.660406 0.594343 0.458935 0.768948 -0.633732 -0.084278 0.235195 0.402998 -0.884464 0.594477 0.660284 0.458935 0.831132 -0.549651 -0.084278 0.191662 0.425429 -0.884464 0.522000 0.718953 0.458935 0.883702 -0.460399 -0.084278 0.146462 0.443027 -0.884464 0.444544 0.769259 0.458935 0.927089 -0.365245 -0.084278 0.099223 0.455938 -0.884464 0.361471 0.811614 0.458935 0.960263 -0.266068 -0.084278 0.050891 0.463826 -0.884464 0.274418 0.845029 0.458935 0.982860 -0.163960 -0.084278 0.001998 0.466605 -0.884464 0.184341 0.869136 0.458935 0.994571 -0.061041 -0.084278 -0.046452 0.464291 -0.884464 0.093118 0.883577 0.458935 0.995491 0.043533 -0.084278 -0.094857 0.456866 -0.884464 0.000000 0.888470 0.458935 0.985446 0.147628 -0.084278 -0.142218 0.444408 -0.884464 -0.093118 0.883577 0.458935 0.964796 0.249132 -0.084278 -0.187584 0.427243 -0.884464 -0.184341 0.869136 0.458935 0.933371 0.348878 -0.084278 -0.231329 0.405230 -0.884464 -0.274418 0.845029 0.458935 0.891666 0.444780 -0.084278 -0.272526 0.378753 -0.884464 -0.361471 0.811614 0.458935 0.840139 0.535784 -0.084278 -0.310721 0.348104 -0.884464 -0.444544 0.769259 0.458935 0.779978 0.620106 -0.084278 -0.345180 0.313967 -0.884464 -0.522000 0.718953 0.458935 0.710691 0.698438 -0.084278 -0.376185 0.276060 -0.884464 -0.594477 0.660284 0.458935 0.633576 0.769077 -0.084278 -0.403046 0.235113 -0.884464 -0.660406 0.594343 0.458935 0.550313 0.830694 -0.084278 -0.425276 0.192001 -0.884464 -0.718538 0.522573 0.458935 0.460219 0.883796 -0.084278 -0.443057 0.146372 -0.884464 -0.769350 0.444387 0.458935 0.365056 0.927163 -0.084278 -0.455958 0.099130 -0.884464 -0.811687 0.361306 0.458935 0.265873 0.960317 -0.084278 -0.463836 0.050796 -0.884464 -0.845085 0.274246 0.458935 0.164743 0.982729 -0.084278 -0.466603 0.002370 -0.884464 -0.868989 0.185033 0.458935 0.060839 0.994583 -0.084278 -0.464282 -0.046546 -0.884464 -0.883596 0.092938 0.458935 -0.443252 0.600146 0.665847 0.332389 0.799891 -0.499693 -0.832493 -0.000170 -0.554035 -0.503711 0.550385 0.665847 0.246724 0.830322 -0.499693 -0.827891 -0.087420 -0.554035 -0.558126 0.495119 0.665847 0.159193 0.851449 -0.499693 -0.814342 -0.172893 -0.554035 -0.606944 0.433897 0.665847 0.069079 0.863444 -0.499693 -0.791737 -0.257290 -0.554035 -0.649077 0.367895 0.665847 -0.021797 0.865929 -0.499693 -0.760410 -0.338852 -0.554035 -0.683762 0.298525 0.665847 -0.111574 0.858987 -0.499693 -0.721125 -0.415962 -0.554035 -0.711284 0.225218 0.665847 -0.200987 0.842563 -0.499693 -0.673557 -0.489250 -0.554035 -0.730971 0.149430 0.665847 -0.288187 0.816857 -0.499693 -0.618571 -0.557149 -0.554035 -0.742606 0.071996 0.665847 -0.372212 0.782154 -0.499693 -0.556771 -0.618911 -0.554035 -0.746068 -0.005485 0.665847 -0.451398 0.739288 -0.499693 -0.489512 -0.673367 -0.554035 -0.741384 -0.083648 0.665847 -0.526395 0.687907 -0.499693 -0.416242 -0.720963 -0.554035 -0.728534 -0.160890 0.665847 -0.595594 0.628948 -0.499693 -0.338388 -0.760617 -0.554035 -0.707895 -0.235652 0.665847 -0.657668 0.563720 -0.499693 -0.257598 -0.791636 -0.554035 -0.679299 -0.308546 0.665847 -0.713128 0.491687 -0.499693 -0.173210 -0.814275 -0.554035 -0.643220 -0.378042 0.665847 -0.760733 0.414238 -0.499693 -0.086914 -0.827944 -0.554035 -0.600417 -0.442886 0.665847 -0.799687 0.332878 -0.499693 -0.000339 -0.832493 -0.554035 -0.550692 -0.503374 0.665847 -0.830171 0.247231 -0.499693 0.086914 -0.827944 -0.554035 -0.494902 -0.558319 0.665847 -0.851511 0.158862 -0.499693 0.173210 -0.814275 -0.554035 -0.433661 -0.607113 0.665847 -0.863471 0.068743 -0.499693 0.257598 -0.791636 -0.554035 -0.368292 -0.648852 0.665847 -0.865942 -0.021268 -0.499693 0.338388 -0.760617 -0.554035 -0.298259 -0.683878 0.665847 -0.858944 -0.111908 -0.499693 0.416242 -0.720963 -0.554035 -0.224941 -0.711371 0.665847 -0.842484 -0.201315 -0.499693 0.489512 -0.673367 -0.554035 -0.149876 -0.730879 0.665847 -0.817033 -0.287688 -0.499693 0.556771 -0.618911 -0.554035 -0.072449 -0.742562 0.665847 -0.782382 -0.371734 -0.499693 0.618571 -0.557149 -0.554035 0.005776 -0.746066 0.665847 -0.739112 -0.451686 -0.499693 0.673557 -0.489250 -0.554035 0.083937 -0.741352 0.665847 -0.687702 -0.526663 -0.499693 0.721125 -0.415962 -0.554035 0.160445 -0.728632 0.665847 -0.629312 -0.595209 -0.499693 0.760410 -0.338852 -0.554035 0.235927 -0.707804 0.665847 -0.563464 -0.657887 -0.499693 0.791737 -0.257290 -0.554035 0.308811 -0.679179 0.665847 -0.491409 -0.713319 -0.499693 0.814342 -0.172893 -0.554035 0.377649 -0.643451 0.665847 -0.414703 -0.760480 -0.499693 0.827891 -0.087420 -0.554035 0.443008 -0.600326 0.665847 -0.332715 -0.799755 -0.499693 0.832493 -0.000170 -0.554035 0.503486 -0.550590 0.665847 -0.247062 -0.830221 -0.499693 0.827926 0.087083 -0.554035 0.558419 -0.494788 0.665847 -0.158689 -0.851543 -0.499693 0.814239 0.173376 -0.554035 0.606767 -0.434144 0.665847 -0.069430 -0.863416 -0.499693 0.791841 0.256967 -0.554035 0.648927 -0.368159 0.665847 0.021444 -0.865937 -0.499693 0.760548 0.338543 -0.554035 0.683939 -0.298120 0.665847 0.112083 -0.858921 -0.499693 0.720878 0.416389 -0.554035 0.711417 -0.224796 0.665847 0.201486 -0.842443 -0.499693 0.673267 0.489649 -0.554035 0.730910 -0.149727 0.665847 0.287854 -0.816975 -0.499693 0.618798 0.556897 -0.554035 0.742577 -0.072298 0.665847 0.371893 -0.782306 -0.499693 0.557023 0.618684 -0.554035 0.746065 0.005927 0.665847 0.451836 -0.739020 -0.499693 0.489113 0.673657 -0.554035 0.741418 0.083346 0.665847 0.526115 -0.688121 -0.499693 0.416536 0.720793 -0.554035 0.728600 0.160593 0.665847 0.595337 -0.629191 -0.499693 0.338697 0.760479 -0.554035 0.707756 0.236071 0.665847 0.658002 -0.563330 -0.499693 0.257128 0.791789 -0.554035 0.679116 0.308949 0.665847 0.713419 -0.491264 -0.499693 0.172727 0.814377 -0.554035 0.643374 0.377780 0.665847 0.760564 -0.414548 -0.499693 0.087251 0.827908 -0.554035 0.600236 0.443130 0.665847 0.799823 -0.332552 -0.499693 0.000000 0.832493 -0.554035 0.550487 0.503599 0.665847 0.830272 -0.246893 -0.499693 -0.087251 0.827908 -0.554035 0.495233 0.558025 0.665847 0.851416 -0.159367 -0.499693 -0.172727 0.814377 -0.554035 0.434020 0.606856 0.665847 0.863430 -0.069254 -0.499693 -0.257128 0.791789 -0.554035 0.368027 0.649002 0.665847 0.865933 0.021621 -0.499693 -0.338697 0.760479 -0.554035 0.297980 0.684000 0.665847 0.858898 0.112258 -0.499693 -0.416536 0.720793 -0.554035 0.225362 0.711238 0.665847 0.842603 0.200815 -0.499693 -0.489113 0.673657 -0.554035 0.149579 0.730940 0.665847 0.816916 0.288020 -0.499693 -0.557023 0.618684 -0.554035 0.072147 0.742592 0.665847 0.782230 0.372053 -0.499693 -0.618798 0.556897 -0.554035 -0.005333 0.746069 0.665847 0.739380 0.451248 -0.499693 -0.673267 0.489649 -0.554035 -0.083497 0.741401 0.665847 0.688014 0.526255 -0.499693 -0.720878 0.416389 -0.554035 -0.160742 0.728567 0.665847 0.629069 0.595465 -0.499693 -0.760548 0.338543 -0.554035 -0.236215 0.707708 0.665847 0.563196 0.658117 -0.499693 -0.791841 0.256967 -0.554035 -0.308408 0.679362 0.665847 0.491832 0.713028 -0.499693 -0.814239 0.173376 -0.554035 -0.377911 0.643297 0.665847 0.414393 0.760648 -0.499693 -0.827926 0.087083 -0.554035 -0.047653 0.844579 -0.533306 -0.074789 -0.535431 -0.841261 -0.996060 -0.000203 0.088680 -0.135908 0.834933 -0.533306 -0.018260 -0.540321 -0.841261 -0.990553 -0.104596 0.088680 -0.221850 0.816313 -0.533306 0.037931 -0.539297 -0.841261 -0.974343 -0.206863 0.088680 -0.306184 0.788566 -0.533306 0.094244 -0.532351 -0.841261 -0.947296 -0.307842 0.088680 -0.387145 0.752132 -0.533306 0.149519 -0.519542 -0.841261 -0.909815 -0.405430 0.088680 -0.463134 0.707878 -0.533306 0.202646 -0.501213 -0.841261 -0.862810 -0.497689 0.088680 -0.534774 0.655440 -0.533306 0.254061 -0.477214 -0.841261 -0.805897 -0.585377 0.088680 -0.600523 0.595782 -0.533306 0.302677 -0.447958 -0.841261 -0.740107 -0.666617 0.088680 -0.659658 0.529561 -0.533306 0.347959 -0.413768 -0.841261 -0.666165 -0.740514 0.088680 -0.711069 0.458219 -0.533306 0.389034 -0.375410 -0.841261 -0.585690 -0.805669 0.088680 -0.755178 0.381170 -0.533306 0.426237 -0.332569 -0.841261 -0.498025 -0.862616 0.088680 -0.790968 0.299923 -0.533306 0.458745 -0.286064 -0.841261 -0.404874 -0.910062 0.088680 -0.817830 0.216190 -0.533306 0.485963 -0.236895 -0.841261 -0.308210 -0.947176 0.088680 -0.835984 0.129285 -0.533306 0.508115 -0.184658 -0.841261 -0.207242 -0.974262 0.088680 -0.844930 0.040956 -0.533306 0.524670 -0.130387 -0.841261 -0.103991 -0.990617 0.088680 -0.844608 -0.047136 -0.533306 0.535385 -0.075116 -0.841261 -0.000406 -0.996060 0.088680 -0.835016 -0.135398 -0.533306 0.540309 -0.018590 -0.841261 0.103991 -0.990617 0.088680 -0.816227 -0.222168 -0.533306 0.539282 0.038141 -0.841261 0.207242 -0.974262 0.088680 -0.788446 -0.306491 -0.533306 0.532315 0.094451 -0.841261 0.308210 -0.947176 0.088680 -0.752369 -0.386685 -0.533306 0.519633 0.149202 -0.841261 0.404874 -0.910062 0.088680 -0.707698 -0.463409 -0.533306 0.501134 0.202841 -0.841261 0.498025 -0.862616 0.088680 -0.655232 -0.535029 -0.533306 0.477115 0.254247 -0.841261 0.585690 -0.805669 0.088680 -0.596148 -0.600159 -0.533306 0.448143 0.302404 -0.841261 0.666165 -0.740514 0.088680 -0.529964 -0.659335 -0.533306 0.413981 0.347707 -0.841261 0.740107 -0.666617 0.088680 -0.457942 -0.711248 -0.533306 0.375258 0.389180 -0.841261 0.805897 -0.585377 0.088680 -0.380877 -0.755326 -0.533306 0.332403 0.426366 -0.841261 0.862810 -0.497689 0.088680 -0.300406 -0.790785 -0.533306 0.286345 0.458570 -0.841261 0.909815 -0.405430 0.088680 -0.215872 -0.817914 -0.533306 0.236706 0.486055 -0.841261 0.947296 -0.307842 0.088680 -0.128960 -0.836035 -0.533306 0.184461 0.508187 -0.841261 0.974343 -0.206863 0.088680 -0.041472 -0.844905 -0.533306 0.130708 0.524591 -0.841261 0.990553 -0.104596 0.088680 0.047309 -0.844598 -0.533306 0.075007 0.535401 -0.841261 0.996060 -0.000203 0.088680 0.135568 -0.834988 -0.533306 0.018480 0.540313 -0.841261 0.990596 0.104193 0.088680 0.222334 -0.816181 -0.533306 -0.038251 0.539274 -0.841261 0.974220 0.207440 0.088680 0.305863 -0.788690 -0.533306 -0.094027 0.532390 -0.841261 0.947421 0.307456 0.088680 0.386839 -0.752290 -0.533306 -0.149308 0.519603 -0.841261 0.909980 0.405059 0.088680 0.463553 -0.707603 -0.533306 -0.202943 0.501093 -0.841261 0.862515 0.498200 0.088680 0.535162 -0.655123 -0.533306 -0.254344 0.477063 -0.841261 0.805550 0.585854 0.088680 0.600281 -0.596026 -0.533306 -0.302495 0.448081 -0.841261 0.740378 0.666315 0.088680 0.659443 -0.529830 -0.533306 -0.347791 0.413910 -0.841261 0.666466 0.740242 0.088680 0.711341 -0.457798 -0.533306 -0.389256 0.375179 -0.841261 0.585213 0.806016 0.088680 0.755022 -0.381478 -0.533306 -0.426101 0.332742 -0.841261 0.498376 0.862414 0.088680 0.790846 -0.300245 -0.533306 -0.458628 0.286251 -0.841261 0.405244 0.909897 0.088680 0.817958 -0.215705 -0.533306 -0.486104 0.236607 -0.841261 0.307649 0.947359 0.088680 0.836061 -0.128789 -0.533306 -0.508225 0.184357 -0.841261 0.206664 0.974385 0.088680 0.844913 -0.041300 -0.533306 -0.524617 0.130601 -0.841261 0.104394 0.990574 0.088680 0.844589 0.047481 -0.533306 -0.535416 0.074898 -0.841261 0.000000 0.996060 0.088680 0.834961 0.135738 -0.533306 -0.540317 0.018370 -0.841261 -0.104394 0.990574 0.088680 0.816358 0.221684 -0.533306 -0.539304 -0.037821 -0.841261 -0.206664 0.974385 0.088680 0.788628 0.306023 -0.533306 -0.532370 -0.094136 -0.841261 -0.307649 0.947359 0.088680 0.752211 0.386992 -0.533306 -0.519572 -0.149413 -0.841261 -0.405244 0.909897 0.088680 0.707509 0.463698 -0.533306 -0.501051 -0.203046 -0.841261 -0.498376 0.862414 0.088680 0.655549 0.534640 -0.533306 -0.477265 -0.253964 -0.841261 -0.585213 0.806016 0.088680 0.595904 0.600402 -0.533306 -0.448020 -0.302586 -0.841261 -0.666466 0.740242 0.088680 0.529696 0.659550 -0.533306 -0.413839 -0.347875 -0.841261 -0.740378 0.666315 0.088680 0.458364 0.710976 -0.533306 -0.375489 -0.388957 -0.841261 -0.805550 0.585854 0.088680 0.381324 0.755100 -0.533306 -0.332656 -0.426169 -0.841261 -0.862515 0.498200 0.088680 0.300084 0.790907 -0.533306 -0.286158 -0.458687 -0.841261 -0.909980 0.405059 0.088680 0.215539 0.818002 -0.533306 -0.236508 -0.486152 -0.841261 -0.947421 0.307456 0.088680 0.129455 0.835958 -0.533306 -0.184762 -0.508078 -0.841261 -0.974220 0.207440 0.088680 0.041128 0.844922 -0.533306 -0.130494 -0.524644 -0.841261 -0.990596 0.104193 0.088680 0.525832 0.668314 -0.526172 0.472553 -0.743879 -0.472586 -0.707244 -0.000144 -0.706969 0.452891 0.719744 -0.526172 0.547915 -0.690255 -0.472586 -0.703334 -0.074268 -0.706969 0.375726 0.762871 -0.526172 0.616611 -0.629645 -0.472586 -0.691824 -0.146881 -0.706969 0.293702 0.798049 -0.526172 0.679207 -0.561552 -0.472586 -0.672620 -0.218580 -0.706969 0.208443 0.824436 -0.526172 0.734321 -0.487274 -0.472586 -0.646006 -0.287872 -0.706969 0.121730 0.841620 -0.526172 0.780938 -0.408409 -0.472586 -0.612631 -0.353380 -0.706969 0.032852 0.849743 -0.526172 0.819442 -0.324312 -0.472586 -0.572221 -0.415642 -0.706969 -0.056388 0.848506 -0.526172 0.848919 -0.236643 -0.472586 -0.525507 -0.473326 -0.706969 -0.145007 0.837923 -0.526172 0.869045 -0.146366 -0.472586 -0.473005 -0.525796 -0.706969 -0.231211 0.818342 -0.526172 0.879544 -0.055358 -0.472586 -0.415865 -0.572059 -0.706969 -0.315705 0.789603 -0.526172 0.880502 0.037130 -0.472586 -0.353618 -0.612494 -0.706969 -0.396723 0.752166 -0.526172 0.871761 0.129208 -0.472586 -0.287477 -0.646182 -0.706969 -0.472663 0.706917 -0.526172 0.853638 0.219010 -0.472586 -0.218842 -0.672535 -0.706969 -0.544150 0.653485 -0.526172 0.825983 0.307271 -0.472586 -0.147150 -0.691767 -0.706969 -0.609643 0.592856 -0.526172 0.789229 0.392148 -0.472586 -0.073838 -0.703379 -0.706969 -0.667993 0.526240 -0.526172 0.744168 0.472099 -0.472586 -0.000288 -0.707244 -0.706969 -0.719468 0.453331 -0.526172 0.690590 0.547493 -0.472586 0.073838 -0.703379 -0.706969 -0.763018 0.375429 -0.526172 0.629405 0.616856 -0.472586 0.147150 -0.691767 -0.706969 -0.798163 0.293392 -0.526172 0.561288 0.679425 -0.472586 0.218842 -0.672535 -0.706969 -0.824308 0.208947 -0.526172 0.487722 0.734023 -0.472586 0.287477 -0.646182 -0.706969 -0.841667 0.121403 -0.526172 0.408105 0.781097 -0.472586 0.353618 -0.612494 -0.706969 -0.849756 0.032522 -0.526172 0.323993 0.819568 -0.472586 0.415865 -0.572059 -0.706969 -0.848541 -0.055870 -0.526172 0.237161 0.848774 -0.472586 0.473005 -0.525796 -0.706969 -0.838012 -0.144495 -0.526172 0.146897 0.868956 -0.472586 0.525507 -0.473326 -0.706969 -0.818252 -0.231529 -0.526172 0.055015 0.879566 -0.472586 0.572221 -0.415642 -0.706969 -0.789480 -0.316012 -0.526172 -0.037472 0.880488 -0.472586 0.612631 -0.353380 -0.706969 -0.752408 -0.396263 -0.526172 -0.128676 0.871840 -0.472586 0.646006 -0.287872 -0.706969 -0.706733 -0.472938 -0.526172 -0.219342 0.853552 -0.472586 0.672620 -0.218580 -0.706969 -0.653274 -0.544405 -0.526172 -0.307592 0.825863 -0.472586 0.691824 -0.146881 -0.706969 -0.593228 -0.609281 -0.526172 -0.391665 0.789469 -0.472586 0.703334 -0.074268 -0.706969 -0.526104 -0.668100 -0.526172 -0.472250 0.744071 -0.472586 0.707244 -0.000144 -0.706969 -0.453185 -0.719560 -0.526172 -0.547634 0.690478 -0.472586 0.703364 0.073981 -0.706969 -0.375274 -0.763094 -0.526172 -0.616985 0.629280 -0.472586 0.691737 0.147291 -0.706969 -0.294027 -0.797929 -0.526172 -0.678978 0.561829 -0.472586 0.672709 0.218306 -0.706969 -0.208779 -0.824351 -0.526172 -0.734122 0.487573 -0.472586 0.646124 0.287609 -0.706969 -0.121232 -0.841692 -0.526172 -0.781180 0.407946 -0.472586 0.612422 0.353743 -0.706969 -0.032348 -0.849762 -0.526172 -0.819634 0.323826 -0.472586 0.571974 0.415981 -0.706969 0.056042 -0.848529 -0.526172 -0.848822 0.236988 -0.472586 0.525699 0.473112 -0.706969 0.144666 -0.837982 -0.526172 -0.868986 0.146720 -0.472586 0.473219 0.525603 -0.706969 0.231696 -0.818205 -0.526172 -0.879577 0.054836 -0.472586 0.415526 0.572305 -0.706969 0.315384 -0.789732 -0.526172 -0.880517 -0.036771 -0.472586 0.353868 0.612350 -0.706969 0.396416 -0.752328 -0.526172 -0.871814 -0.128853 -0.472586 0.287740 0.646065 -0.706969 0.473082 -0.706637 -0.526172 -0.853508 -0.219516 -0.472586 0.218443 0.672664 -0.706969 0.544538 -0.653163 -0.526172 -0.825800 -0.307761 -0.472586 0.146740 0.691854 -0.706969 0.609402 -0.593104 -0.526172 -0.789389 -0.391826 -0.472586 0.074124 0.703349 -0.706969 0.668207 -0.525968 -0.526172 -0.743975 -0.472402 -0.472586 0.000000 0.707244 -0.706969 0.719652 -0.453038 -0.526172 -0.690367 -0.547774 -0.472586 -0.074124 0.703349 -0.706969 0.762795 -0.375881 -0.526172 -0.629771 -0.616483 -0.472586 -0.146740 0.691854 -0.706969 0.797989 -0.293865 -0.526172 -0.561691 -0.679092 -0.472586 -0.218443 0.672664 -0.706969 0.824393 -0.208611 -0.526172 -0.487423 -0.734222 -0.472586 -0.287740 0.646065 -0.706969 0.841717 -0.121060 -0.526172 -0.407787 -0.781263 -0.472586 -0.353868 0.612350 -0.706969 0.849736 -0.033025 -0.526172 -0.324479 -0.819376 -0.472586 -0.415526 0.572305 -0.706969 0.848518 0.056215 -0.526172 -0.236815 -0.848871 -0.472586 -0.473219 0.525603 -0.706969 0.837953 0.144836 -0.526172 -0.146543 -0.869015 -0.472586 -0.525699 0.473112 -0.706969 0.818390 0.231044 -0.526172 -0.055537 -0.879533 -0.472586 -0.571974 0.415981 -0.706969 0.789667 0.315545 -0.526172 0.036950 -0.880510 -0.472586 -0.612422 0.353743 -0.706969 0.752247 0.396569 -0.526172 0.129031 -0.871788 -0.472586 -0.646124 0.287609 -0.706969 0.706541 0.473226 -0.526172 0.219690 -0.853463 -0.472586 -0.672709 0.218306 -0.706969 0.653596 0.544017 -0.526172 0.307103 -0.826045 -0.472586 -0.691737 0.147291 -0.706969 0.592980 0.609523 -0.526172 0.391987 -0.789309 -0.472586 -0.703364 0.073981 -0.706969 0.801537 0.165201 0.574672 -0.134330 0.986260 -0.096161 -0.582662 -0.000119 0.812715 0.779808 0.248298 0.574672 -0.236957 0.966749 -0.096161 -0.579440 -0.061185 0.812715 0.749818 0.327910 0.574672 -0.336037 0.936927 -0.096161 -0.569958 -0.121008 0.812715 0.711321 0.404691 0.574672 -0.432383 0.896548 -0.096161 -0.554136 -0.180077 0.812715 0.664989 0.477013 0.574672 -0.523967 0.846293 -0.096161 -0.532211 -0.237163 0.812715 0.611876 0.543470 0.574672 -0.608992 0.787326 -0.096161 -0.504715 -0.291132 0.812715 0.551547 0.604606 0.574672 -0.688155 0.719163 -0.096161 -0.471423 -0.342426 0.812715 0.485142 0.659082 0.574672 -0.759738 0.643079 -0.096161 -0.432938 -0.389948 0.812715 0.413393 0.706299 0.574672 -0.822953 0.559911 -0.096161 -0.389684 -0.433176 0.812715 0.337837 0.745398 0.574672 -0.876633 0.471453 -0.096161 -0.342609 -0.471289 0.812715 0.257853 0.776701 0.574672 -0.921216 0.376979 -0.096161 -0.291328 -0.504602 0.812715 0.175029 0.799448 0.574672 -0.955653 0.278353 -0.096161 -0.236837 -0.532356 0.812715 0.091091 0.813299 0.574672 -0.979386 0.177640 -0.096161 -0.180293 -0.554066 0.812715 0.005350 0.818366 0.574672 -0.992610 0.074015 -0.096161 -0.121230 -0.569911 0.812715 -0.080450 0.814420 0.574672 -0.994901 -0.030425 -0.096161 -0.060831 -0.579478 0.812715 -0.164711 0.801637 0.574672 -0.986342 -0.133727 -0.096161 -0.000237 -0.582662 0.812715 -0.247822 0.779959 0.574672 -0.966894 -0.236366 -0.096161 0.060831 -0.579478 0.812715 -0.328202 0.749690 0.574672 -0.936796 -0.336402 -0.096161 0.121230 -0.569911 0.812715 -0.404967 0.711164 0.574672 -0.896379 -0.432732 -0.096161 0.180293 -0.554066 0.812715 -0.476607 0.665280 0.574672 -0.846613 -0.523449 -0.096161 0.236837 -0.532356 0.812715 -0.543708 0.611665 0.574672 -0.787089 -0.609298 -0.096161 0.291328 -0.504602 0.812715 -0.604821 0.551311 0.574672 -0.718896 -0.688435 -0.096161 0.342609 -0.471289 0.812715 -0.658786 0.485544 0.574672 -0.643543 -0.759345 -0.096161 0.389684 -0.433176 0.812715 -0.706046 0.413825 0.574672 -0.560414 -0.822611 -0.096161 0.432938 -0.389948 0.812715 -0.745530 0.337547 0.574672 -0.471112 -0.876816 -0.096161 0.471423 -0.342426 0.812715 -0.776801 0.257551 0.574672 -0.376621 -0.921363 -0.096161 0.504715 -0.291132 0.812715 -0.799341 0.175518 0.574672 -0.278937 -0.955483 -0.096161 0.532211 -0.237163 0.812715 -0.813334 0.090775 0.574672 -0.177259 -0.979455 -0.096161 0.554136 -0.180077 0.812715 -0.818368 0.005031 0.574672 -0.073629 -0.992639 -0.096161 0.569958 -0.121008 0.812715 -0.814469 -0.079953 0.574672 0.029817 -0.994919 -0.096161 0.579440 -0.061185 0.812715 -0.801604 -0.164875 0.574672 0.133928 -0.986315 -0.096161 0.582662 -0.000119 0.812715 -0.779909 -0.247980 0.574672 0.236563 -0.966846 -0.096161 0.579465 0.060949 0.812715 -0.749624 -0.328355 0.574672 0.336593 -0.936728 -0.096161 0.569886 0.121346 0.812715 -0.711486 -0.404401 0.574672 0.432018 -0.896724 -0.096161 0.554210 0.179851 0.812715 -0.665183 -0.476743 0.574672 0.523622 -0.846506 -0.096161 0.532308 0.236946 0.812715 -0.611554 -0.543833 0.574672 0.609458 -0.786965 -0.096161 0.504542 0.291431 0.812715 -0.551188 -0.604933 0.574672 0.688581 -0.718755 -0.096161 0.471220 0.342705 0.812715 -0.485410 -0.658885 0.574672 0.759476 -0.643388 -0.096161 0.433096 0.389772 0.812715 -0.413681 -0.706130 0.574672 0.822725 -0.560246 -0.096161 0.389860 0.433017 0.812715 -0.337395 -0.745598 0.574672 0.876912 -0.470933 -0.096161 0.342330 0.471492 0.812715 -0.258170 -0.776596 0.574672 0.921063 -0.377354 -0.096161 0.291533 0.504483 0.812715 -0.175355 -0.799377 0.574672 0.955540 -0.278742 -0.096161 0.237054 0.532259 0.812715 -0.090609 -0.813353 0.574672 0.979491 -0.177060 -0.096161 0.179964 0.554173 0.812715 -0.004865 -0.818370 0.574672 0.992654 -0.073427 -0.096161 0.120892 0.569982 0.812715 0.080119 -0.814453 0.574672 0.994913 0.030020 -0.096161 0.061067 0.579453 0.812715 0.165038 -0.801570 0.574672 0.986287 0.134129 -0.096161 0.000000 0.582662 0.812715 0.248139 -0.779858 0.574672 0.966798 0.236760 -0.096161 -0.061067 0.579453 0.812715 0.327758 -0.749885 0.574672 0.936995 0.335847 -0.096161 -0.120892 0.569982 0.812715 0.404546 -0.711403 0.574672 0.896636 0.432201 -0.096161 -0.179964 0.554173 0.812715 0.476878 -0.665086 0.574672 0.846400 0.523794 -0.096161 -0.237054 0.532259 0.812715 0.543957 -0.611443 0.574672 0.786841 0.609618 -0.096161 -0.291533 0.504483 0.812715 0.604494 -0.551670 0.574672 0.719303 0.688008 -0.096161 -0.342330 0.471492 0.812715 0.658984 -0.485276 0.574672 0.643234 0.759607 -0.096161 -0.389860 0.433017 0.812715 0.706215 -0.413537 0.574672 0.560079 0.822839 -0.096161 -0.433096 0.389772 0.812715 0.745329 -0.337989 0.574672 0.471632 0.876537 -0.096161 -0.471220 0.342705 0.812715 0.776648 -0.258012 0.574672 0.377167 0.921140 -0.096161 -0.504542 0.291431 0.812715 0.799412 -0.175192 0.574672 0.278548 0.955596 -0.096161 -0.532308 0.236946 0.812715 0.813371 -0.090443 0.574672 0.176860 0.979527 -0.096161 -0.554210 0.179851 0.812715 0.818365 -0.005517 0.574672 0.074217 0.992595 -0.096161 -0.569886 0.121346 0.812715 0.814436 0.080284 0.574672 -0.030223 0.994907 -0.096161 -0.579465 0.060949 0.812715 -0.158875 0.875142 0.457039 0.286974 0.483866 -0.826753 -0.944672 -0.000192 -0.328017 -0.249721 0.853671 0.457039 0.234680 0.511278 -0.826753 -0.939449 -0.099200 -0.328017 -0.336994 0.823134 0.457039 0.180335 0.532878 -0.826753 -0.924075 -0.196190 -0.328017 -0.421408 0.783282 0.457039 0.123493 0.548844 -0.826753 -0.898423 -0.291960 -0.328017 -0.501181 0.734801 0.457039 0.065290 0.558764 -0.826753 -0.862876 -0.384513 -0.328017 -0.574755 0.678802 0.457039 0.006930 0.562523 -0.826753 -0.818296 -0.472013 -0.328017 -0.642733 0.614825 0.457039 -0.052064 0.560151 -0.826753 -0.764319 -0.555176 -0.328017 -0.703631 0.544076 0.457039 -0.110485 0.551609 -0.826753 -0.701923 -0.632225 -0.328017 -0.756779 0.467334 0.457039 -0.167690 0.536992 -0.826753 -0.631796 -0.702310 -0.328017 -0.801205 0.386246 0.457039 -0.222530 0.516682 -0.826753 -0.555474 -0.764103 -0.328017 -0.837274 0.300146 0.457039 -0.275457 0.490514 -0.826753 -0.472331 -0.818113 -0.328017 -0.864120 0.210741 0.457039 -0.325349 0.458942 -0.826753 -0.383985 -0.863111 -0.328017 -0.881329 0.119896 0.457039 -0.371235 0.422687 -0.826753 -0.292309 -0.898310 -0.328017 -0.889041 0.026866 0.457039 -0.413491 0.381451 -0.826753 -0.196550 -0.923998 -0.328017 -0.886960 -0.066460 0.457039 -0.451193 0.336014 -0.826753 -0.098626 -0.939509 -0.328017 -0.875239 -0.158341 0.457039 -0.483690 0.287269 -0.826753 -0.000385 -0.944672 -0.328017 -0.853823 -0.249200 0.457039 -0.511134 0.234993 -0.826753 0.098626 -0.939509 -0.328017 -0.823003 -0.337314 0.457039 -0.532948 0.180128 -0.826753 0.196550 -0.923998 -0.328017 -0.783118 -0.421713 0.457039 -0.548892 0.123279 -0.826753 0.292309 -0.898310 -0.328017 -0.735107 -0.500732 0.457039 -0.558724 0.065631 -0.826753 0.383985 -0.863111 -0.328017 -0.678578 -0.575019 0.457039 -0.562526 0.006711 -0.826753 0.472331 -0.818113 -0.328017 -0.614575 -0.642972 0.457039 -0.560131 -0.052282 -0.826753 0.555474 -0.764103 -0.328017 -0.544506 -0.703298 0.457039 -0.551677 -0.110148 -0.826753 0.631796 -0.702310 -0.328017 -0.467796 -0.756493 0.457039 -0.537094 -0.167361 -0.826753 0.701923 -0.632225 -0.328017 -0.385934 -0.801355 0.457039 -0.516595 -0.222731 -0.826753 0.764319 -0.555176 -0.328017 -0.299821 -0.837390 0.457039 -0.490407 -0.275647 -0.826753 0.818296 -0.472013 -0.328017 -0.211269 -0.863991 0.457039 -0.459141 -0.325068 -0.826753 0.862876 -0.384513 -0.328017 -0.119553 -0.881375 0.457039 -0.422543 -0.371399 -0.826753 0.898423 -0.291960 -0.328017 -0.026520 -0.889051 0.457039 -0.381291 -0.413639 -0.826753 0.924075 -0.196190 -0.328017 0.065918 -0.887001 0.457039 -0.336289 -0.450987 -0.826753 0.939449 -0.099200 -0.328017 0.158519 -0.875207 0.457039 -0.287171 -0.483749 -0.826753 0.944672 -0.000192 -0.328017 0.249374 -0.853773 0.457039 -0.234889 -0.511182 -0.826753 0.939489 0.098817 -0.328017 0.337482 -0.822934 0.457039 -0.180019 -0.532985 -0.826753 0.923958 0.196738 -0.328017 0.421089 -0.783453 0.457039 -0.123716 -0.548793 -0.826753 0.898542 0.291594 -0.328017 0.500882 -0.735005 0.457039 -0.065517 -0.558737 -0.826753 0.863032 0.384161 -0.328017 0.575157 -0.678461 0.457039 -0.006597 -0.562527 -0.826753 0.818016 0.472497 -0.328017 0.643097 -0.614444 0.457039 0.052396 -0.560120 -0.826753 0.763990 0.555629 -0.328017 0.703409 -0.544363 0.457039 0.110261 -0.551654 -0.826753 0.702181 0.631939 -0.328017 0.756588 -0.467642 0.457039 0.167471 -0.537060 -0.826753 0.632082 0.702052 -0.328017 0.801434 -0.385771 0.457039 0.222836 -0.516550 -0.826753 0.555021 0.764432 -0.328017 0.837151 -0.300487 0.457039 0.275257 -0.490626 -0.826753 0.472664 0.817920 -0.328017 0.864034 -0.211093 0.457039 0.325162 -0.459075 -0.826753 0.384337 0.862954 -0.328017 0.881400 -0.119374 0.457039 0.371485 -0.422467 -0.826753 0.291777 0.898483 -0.328017 0.889056 -0.026339 0.457039 0.413717 -0.381206 -0.826753 0.196002 0.924115 -0.328017 0.886987 0.066098 0.457039 0.451056 -0.336198 -0.826753 0.099008 0.939469 -0.328017 0.875174 0.158697 0.457039 0.483807 -0.287072 -0.826753 0.000000 0.944672 -0.328017 0.853722 0.249548 0.457039 0.511230 -0.234785 -0.826753 -0.099008 0.939469 -0.328017 0.823203 0.336826 0.457039 0.532841 -0.180444 -0.826753 -0.196002 0.924115 -0.328017 0.783367 0.421249 0.457039 0.548819 -0.123604 -0.826753 -0.291777 0.898483 -0.328017 0.734903 0.501031 0.457039 0.558751 -0.065404 -0.826753 -0.384337 0.862954 -0.328017 0.678344 0.575295 0.457039 0.562528 -0.006482 -0.826753 -0.472664 0.817920 -0.328017 0.614956 0.642607 0.457039 0.560162 0.051950 -0.826753 -0.555021 0.764432 -0.328017 0.544219 0.703520 0.457039 0.551632 0.110373 -0.826753 -0.632082 0.702052 -0.328017 0.467488 0.756684 0.457039 0.537026 0.167580 -0.826753 -0.702181 0.631939 -0.328017 0.386409 0.801126 0.457039 0.516727 0.222425 -0.826753 -0.763990 0.555629 -0.328017 0.300317 0.837213 0.457039 0.490570 0.275357 -0.826753 -0.818016 0.472497 -0.328017 0.210917 0.864077 0.457039 0.459009 0.325255 -0.826753 -0.863032 0.384161 -0.328017 0.119194 0.881424 0.457039 0.422392 0.371571 -0.826753 -0.898542 0.291594 -0.328017 0.027047 0.889035 0.457039 0.381536 0.413413 -0.826753 -0.923958 0.196738 -0.328017 -0.066279 0.886974 0.457039 0.336106 0.451124 -0.826753 -0.939489 0.098817 -0.328017 0.620996 -0.716675 -0.317398 -0.638091 -0.697408 0.326285 -0.455196 -0.000093 -0.890391 0.692688 -0.647643 -0.317398 -0.561484 -0.760443 0.326285 -0.452680 -0.047800 -0.890391 0.756179 -0.572234 -0.317398 -0.479506 -0.814624 0.326285 -0.445272 -0.094536 -0.890391 0.811989 -0.489829 -0.317398 -0.391487 -0.860393 0.326285 -0.432911 -0.140683 -0.890391 0.858854 -0.402029 -0.317398 -0.299156 -0.896685 0.326285 -0.415782 -0.185280 -0.890391 0.895950 -0.310697 -0.317398 -0.204452 -0.922896 0.326285 -0.394302 -0.227442 -0.890391 0.923579 -0.215084 -0.317398 -0.106600 -0.939241 0.326285 -0.368292 -0.267515 -0.890391 0.941034 -0.117102 -0.317398 -0.007574 -0.945241 0.326285 -0.338226 -0.304642 -0.890391 0.948125 -0.017830 -0.317398 0.091536 -0.940829 0.326285 -0.304435 -0.338412 -0.890391 0.944853 0.080694 -0.317398 0.188712 -0.926243 0.326285 -0.267659 -0.368188 -0.890391 0.931192 0.179277 -0.317398 0.284749 -0.901363 0.326285 -0.227596 -0.394213 -0.890391 0.907274 0.275885 -0.317398 0.377650 -0.866555 0.326285 -0.185026 -0.415896 -0.890391 0.873731 0.368581 -0.317398 0.465569 -0.822668 0.326285 -0.140851 -0.432856 -0.890391 0.830289 0.458124 -0.317398 0.549227 -0.769343 0.326285 -0.094709 -0.445235 -0.890391 0.777702 0.542622 -0.317398 0.626834 -0.707543 0.326285 -0.047523 -0.452709 -0.890391 0.717054 0.620558 -0.317398 0.697018 -0.638517 0.326285 -0.000185 -0.455196 -0.890391 0.648066 0.692293 -0.317398 0.760100 -0.561948 0.326285 0.047523 -0.452709 -0.890391 0.571939 0.756402 -0.317398 0.814810 -0.479189 0.326285 0.094709 -0.445235 -0.890391 0.489513 0.812179 -0.317398 0.860545 -0.391152 0.326285 0.140851 -0.432856 -0.890391 0.402554 0.858609 -0.317398 0.896502 -0.299703 0.326285 0.185026 -0.415896 -0.890391 0.310348 0.896070 -0.317398 0.922976 -0.204093 0.326285 0.227596 -0.394213 -0.890391 0.214725 0.923662 -0.317398 0.939283 -0.106234 0.326285 0.267659 -0.368188 -0.890391 0.117676 0.940963 -0.317398 0.945236 -0.008151 0.326285 0.304435 -0.338412 -0.890391 0.018409 0.948114 -0.317398 0.940885 0.090962 0.326285 0.338226 -0.304642 -0.890391 -0.081062 0.944821 -0.317398 0.926169 0.189072 0.326285 0.368292 -0.267515 -0.890391 -0.179639 0.931122 -0.317398 0.901253 0.285100 0.326285 0.394302 -0.227442 -0.890391 -0.275331 0.907442 -0.317398 0.866786 0.377121 0.326285 0.415782 -0.185280 -0.890391 -0.368921 0.873588 -0.317398 0.822487 0.465889 0.326285 0.432911 -0.140683 -0.890391 -0.458447 0.830111 -0.317398 0.769129 0.549526 0.326285 0.445272 -0.094536 -0.890391 -0.542146 0.778033 -0.317398 0.707925 0.626402 0.326285 0.452680 -0.047800 -0.890391 -0.620704 0.716927 -0.317398 0.638375 0.697148 0.326285 0.455196 -0.000093 -0.890391 -0.692425 0.647925 -0.317398 0.561793 0.760215 0.326285 0.452699 0.047616 -0.890391 -0.756518 0.571785 -0.317398 0.479023 0.814908 0.326285 0.445215 0.094800 -0.890391 -0.811789 0.490160 -0.317398 0.391837 0.860233 0.326285 0.432968 0.140506 -0.890391 -0.858691 0.402379 -0.317398 0.299521 0.896563 0.326285 0.415858 0.185111 -0.890391 -0.896134 0.310166 -0.317398 0.203905 0.923017 0.326285 0.394167 0.227676 -0.890391 -0.923706 0.214536 -0.317398 0.106043 0.939304 0.326285 0.368134 0.267734 -0.890391 -0.940987 0.117485 -0.317398 0.007958 0.945238 0.326285 0.338351 0.304504 -0.890391 -0.948117 0.018216 -0.317398 -0.091153 0.940866 0.326285 0.304573 0.338288 -0.890391 -0.944805 -0.081254 -0.317398 -0.189261 0.926131 0.326285 0.267440 0.368347 -0.890391 -0.931265 -0.178898 -0.317398 -0.284382 0.901479 0.326285 0.227756 0.394120 -0.890391 -0.907386 -0.275516 -0.317398 -0.377297 0.866709 0.326285 0.185195 0.415820 -0.890391 -0.873513 -0.369099 -0.317398 -0.466057 0.822392 0.326285 0.140594 0.432940 -0.890391 -0.830018 -0.458616 -0.317398 -0.549682 0.769017 0.326285 0.094445 0.445291 -0.890391 -0.777923 -0.542305 -0.317398 -0.626546 0.707798 0.326285 0.047708 0.452689 -0.890391 -0.716801 -0.620850 -0.317398 -0.697278 0.638233 0.326285 0.000000 0.455196 -0.890391 -0.647784 -0.692557 -0.317398 -0.760329 0.561638 0.326285 -0.047708 0.452689 -0.890391 -0.572388 -0.756063 -0.317398 -0.814526 0.479672 0.326285 -0.094445 0.445291 -0.890391 -0.489994 -0.811889 -0.317398 -0.860313 0.391662 0.326285 -0.140594 0.432940 -0.890391 -0.402204 -0.858773 -0.317398 -0.896624 0.299338 0.326285 -0.185195 0.415820 -0.890391 -0.309983 -0.896197 -0.317398 -0.923059 0.203717 0.326285 -0.227756 0.394120 -0.890391 -0.215272 -0.923535 -0.317398 -0.939220 0.106791 0.326285 -0.267440 0.368347 -0.890391 -0.117293 -0.941010 -0.317398 -0.945239 0.007766 0.326285 -0.304573 0.338288 -0.890391 -0.018023 -0.948121 -0.317398 -0.940848 -0.091345 0.326285 -0.338351 0.304504 -0.890391 0.080502 -0.944869 -0.317398 -0.926281 -0.188523 0.326285 -0.368134 0.267734 -0.890391 0.179087 -0.931228 -0.317398 -0.901421 -0.284566 0.326285 -0.394167 0.227676 -0.890391 0.275700 -0.907330 -0.317398 -0.866632 -0.377474 0.326285 -0.415858 0.185111 -0.890391 0.369277 -0.873437 -0.317398 -0.822297 -0.466224 0.326285 -0.432968 0.140506 -0.890391 0.457955 -0.830383 -0.317398 -0.769454 -0.549070 0.326285 -0.445215 0.094800 -0.890391 0.542463 -0.777812 -0.317398 -0.707670 -0.626690 0.326285 -0.452699 0.047616 -0.890391 -0.150188 0.983813 0.097752 0.824208 0.179197 -0.537187 -0.546009 -0.000111 -0.837779 -0.252471 0.962654 0.097752 0.800887 0.264593 -0.537187 -0.542990 -0.057336 -0.837779 -0.351043 0.931243 0.097752 0.769092 0.346306 -0.537187 -0.534104 -0.113396 -0.837779 -0.446710 0.889323 0.097752 0.728561 0.425005 -0.537187 -0.519278 -0.168749 -0.837779 -0.537457 0.837606 0.097752 0.680005 0.499023 -0.537187 -0.498732 -0.222244 -0.837779 -0.621508 0.777286 0.097752 0.624525 0.566920 -0.537187 -0.472965 -0.272818 -0.837779 -0.699550 0.707866 0.097752 0.561669 0.629252 -0.537187 -0.441767 -0.320885 -0.837779 -0.769886 0.630650 0.097752 0.492625 0.684653 -0.537187 -0.405703 -0.365418 -0.837779 -0.831743 0.546487 0.097752 0.418156 0.732513 -0.537187 -0.365170 -0.405926 -0.837779 -0.883981 0.457189 0.097752 0.339852 0.771965 -0.537187 -0.321057 -0.441642 -0.837779 -0.927029 0.362023 0.097752 0.257073 0.803333 -0.537187 -0.273001 -0.472859 -0.837779 -0.959867 0.262870 0.097752 0.171462 0.825851 -0.537187 -0.221939 -0.498867 -0.837779 -0.981970 0.161804 0.097752 0.084802 0.839189 -0.537187 -0.168951 -0.519212 -0.837779 -0.993520 0.057995 0.097752 -0.003618 0.843455 -0.537187 -0.113603 -0.534060 -0.837779 -0.994126 -0.046452 0.097752 -0.091998 0.838431 -0.537187 -0.057004 -0.543025 -0.837779 -0.983905 -0.149587 0.097752 -0.178694 0.824317 -0.537187 -0.000222 -0.546009 -0.837779 -0.962808 -0.251883 0.097752 -0.264104 0.801049 -0.537187 0.057004 -0.543025 -0.837779 -0.931106 -0.351405 0.097752 -0.346605 0.768957 -0.537187 0.113603 -0.534060 -0.837779 -0.889149 -0.447056 0.097752 -0.425288 0.728395 -0.537187 0.168951 -0.519212 -0.837779 -0.837934 -0.536946 0.097752 -0.498607 0.680309 -0.537187 0.221939 -0.498867 -0.837779 -0.777044 -0.621810 0.097752 -0.567162 0.624305 -0.537187 0.273001 -0.472859 -0.837779 -0.707594 -0.699825 0.097752 -0.629470 0.561424 -0.537187 0.321057 -0.441642 -0.837779 -0.631120 -0.769501 0.097752 -0.684352 0.493043 -0.537187 0.365170 -0.405926 -0.837779 -0.546995 -0.831409 0.097752 -0.732258 0.418603 -0.537187 0.405703 -0.365418 -0.837779 -0.456845 -0.884159 0.097752 -0.772097 0.339552 -0.537187 0.441767 -0.320885 -0.837779 -0.361663 -0.927170 0.097752 -0.803433 0.256761 -0.537187 0.472965 -0.272818 -0.837779 -0.263457 -0.959706 0.097752 -0.825746 0.171967 -0.537187 0.498732 -0.222244 -0.837779 -0.161422 -0.982032 0.097752 -0.839222 0.084475 -0.537187 0.519278 -0.168749 -0.837779 -0.057609 -0.993542 0.097752 -0.843454 -0.003946 -0.537187 0.534104 -0.113396 -0.837779 0.045845 -0.994154 0.097752 -0.838487 -0.091486 -0.537187 0.542990 -0.057336 -0.837779 0.149787 -0.983874 0.097752 -0.824280 -0.178862 -0.537187 0.546009 -0.000111 -0.837779 0.252079 -0.962757 0.097752 -0.800995 -0.264267 -0.537187 0.543013 0.057115 -0.837779 0.351595 -0.931035 0.097752 -0.768886 -0.346762 -0.537187 0.534037 0.113712 -0.837779 0.446348 -0.889504 0.097752 -0.728734 -0.424708 -0.537187 0.519346 0.168538 -0.837779 0.537116 -0.837825 0.097752 -0.680208 -0.498746 -0.537187 0.498822 0.222041 -0.837779 0.621968 -0.776917 0.097752 -0.624189 -0.567289 -0.537187 0.472804 0.273098 -0.837779 0.699969 -0.707452 0.097752 -0.561296 -0.629585 -0.537187 0.441577 0.321147 -0.837779 0.769630 -0.630964 0.097752 -0.492904 -0.684453 -0.537187 0.405852 0.365253 -0.837779 0.831520 -0.546826 0.097752 -0.418454 -0.732343 -0.537187 0.365336 0.405778 -0.837779 0.884252 -0.456665 0.097752 -0.339395 -0.772166 -0.537187 0.320795 0.441833 -0.837779 0.926882 -0.362401 0.097752 -0.257400 -0.803228 -0.537187 0.273194 0.472748 -0.837779 0.959759 -0.263261 0.097752 -0.171798 -0.825782 -0.537187 0.222142 0.498777 -0.837779 0.982065 -0.161222 0.097752 -0.084305 -0.839239 -0.537187 0.168643 0.519312 -0.837779 0.993554 -0.057406 0.097752 0.004118 -0.843453 -0.537187 0.113287 0.534127 -0.837779 0.994145 0.046047 0.097752 0.091657 -0.838468 -0.537187 0.057226 0.543002 -0.837779 0.983844 0.149987 0.097752 0.179030 -0.824244 -0.537187 0.000000 0.546009 -0.837779 0.962705 0.252275 0.097752 0.264430 -0.800941 -0.537187 -0.057226 0.543002 -0.837779 0.931315 0.350853 0.097752 0.346149 -0.769162 -0.537187 -0.113287 0.534127 -0.837779 0.889413 0.446529 0.097752 0.424857 -0.728647 -0.537187 -0.168643 0.519312 -0.837779 0.837716 0.537287 0.097752 0.498884 -0.680106 -0.537187 -0.222142 0.498777 -0.837779 0.776790 0.622126 0.097752 0.567417 -0.624074 -0.537187 -0.273194 0.472748 -0.837779 0.708009 0.699406 0.097752 0.629138 -0.561797 -0.537187 -0.320795 0.441833 -0.837779 0.630807 0.769758 0.097752 0.684553 -0.492765 -0.537187 -0.365336 0.405778 -0.837779 0.546656 0.831632 0.097752 0.732428 -0.418305 -0.537187 -0.405852 0.365253 -0.837779 0.457369 0.883888 0.097752 0.771896 -0.340009 -0.537187 -0.441577 0.321147 -0.837779 0.362212 0.926956 0.097752 0.803280 -0.257237 -0.537187 -0.472804 0.273098 -0.837779 0.263066 0.959813 0.097752 0.825816 -0.171630 -0.537187 -0.498822 0.222041 -0.837779 0.161022 0.982098 0.097752 0.839256 -0.084134 -0.537187 -0.519346 0.168538 -0.837779 0.058197 0.993508 0.097752 0.843456 0.003446 -0.537187 -0.534037 0.113712 -0.837779 -0.046250 0.994136 0.097752 0.838449 0.091828 -0.537187 -0.543013 0.057115 -0.837779 -0.128032 -0.899779 0.417139 -0.264440 0.436345 0.860043 -0.955866 -0.000195 -0.293804 -0.033024 -0.908243 0.417139 -0.308715 0.406227 0.860043 -0.950581 -0.100375 -0.293804 0.061442 -0.906763 0.417139 -0.349219 0.371983 0.860043 -0.935025 -0.198515 -0.293804 0.156139 -0.895330 0.417139 -0.386282 0.333334 0.860043 -0.909069 -0.295419 -0.293804 0.249116 -0.874035 0.417139 -0.419090 0.291013 0.860043 -0.873101 -0.389069 -0.293804 0.338506 -0.843451 0.417139 -0.447037 0.245934 0.860043 -0.827993 -0.477606 -0.293804 0.425041 -0.803328 0.417139 -0.470350 0.197727 0.860043 -0.773376 -0.561755 -0.293804 0.506894 -0.754356 0.417139 -0.488483 0.147342 0.860043 -0.710241 -0.639716 -0.293804 0.583165 -0.697075 0.417139 -0.501235 0.095334 0.860043 -0.639283 -0.710632 -0.293804 0.652379 -0.632769 0.417139 -0.508424 0.042784 0.860043 -0.562056 -0.773158 -0.293804 0.715105 -0.560910 0.417139 -0.510108 -0.010738 0.860043 -0.477928 -0.827807 -0.293804 0.769954 -0.482873 0.417139 -0.506173 -0.064142 0.860043 -0.388536 -0.873338 -0.293804 0.815922 -0.400333 0.417139 -0.496780 -0.116342 0.860043 -0.295773 -0.908954 -0.293804 0.853386 -0.312614 0.417139 -0.481850 -0.167768 0.860043 -0.198879 -0.934947 -0.293804 0.881450 -0.221451 0.417139 -0.461613 -0.217345 0.860043 -0.099794 -0.950642 -0.293804 0.899701 -0.128582 0.417139 -0.436507 -0.264173 0.860043 -0.000389 -0.955866 -0.293804 0.908222 -0.033579 0.417139 -0.406415 -0.308467 0.860043 0.099794 -0.950642 -0.293804 0.906740 0.061794 0.417139 -0.371848 -0.349363 0.860043 0.198879 -0.934947 -0.293804 0.895269 0.156487 0.417139 -0.333184 -0.386412 0.860043 0.295773 -0.908954 -0.293804 0.874187 0.248581 0.417139 -0.291269 -0.418912 0.860043 0.388536 -0.873338 -0.293804 0.843319 0.338833 0.417139 -0.245760 -0.447132 0.860043 0.477928 -0.827807 -0.293804 0.803162 0.425353 0.417139 -0.197544 -0.470427 0.860043 0.562056 -0.773158 -0.293804 0.754666 0.506433 0.417139 -0.147640 -0.488393 0.860043 0.639283 -0.710632 -0.293804 0.697432 0.582739 0.417139 -0.095640 -0.501177 0.860043 0.710241 -0.639716 -0.293804 0.632515 0.652625 0.417139 -0.042586 -0.508441 0.860043 0.773376 -0.561755 -0.293804 0.560632 0.715323 0.417139 0.010936 -0.510104 0.860043 0.827993 -0.477606 -0.293804 0.483343 0.769659 0.417139 0.063833 -0.506212 0.860043 0.873101 -0.389069 -0.293804 0.400016 0.816078 0.417139 0.116536 -0.496734 0.860043 0.909069 -0.295419 -0.293804 0.312282 0.853508 0.417139 0.167955 -0.481785 0.860043 0.935025 -0.198515 -0.293804 0.221990 0.881315 0.417139 0.217063 -0.461746 0.860043 0.950581 -0.100375 -0.293804 0.128399 0.899727 0.417139 0.264262 -0.436453 0.860043 0.955866 -0.000195 -0.293804 0.033394 0.908229 0.417139 0.308550 -0.406353 0.860043 0.950622 0.099988 -0.293804 -0.061979 0.906727 0.417139 0.349439 -0.371776 0.860043 0.934907 0.199069 -0.293804 -0.155774 0.895394 0.417139 0.386146 -0.333491 0.860043 0.909190 0.295049 -0.293804 -0.248760 0.874136 0.417139 0.418972 -0.291184 0.860043 0.873259 0.388713 -0.293804 -0.339005 0.843250 0.417139 0.447183 -0.245669 0.860043 0.827710 0.478096 -0.293804 -0.425517 0.803076 0.417139 0.470468 -0.197448 0.860043 0.773043 0.562213 -0.293804 -0.506587 0.754563 0.417139 0.488423 -0.147541 0.860043 0.710501 0.639427 -0.293804 -0.582881 0.697313 0.417139 0.501197 -0.095538 0.860043 0.639572 0.710371 -0.293804 -0.652754 0.632382 0.417139 0.508449 -0.042483 0.860043 0.561597 0.773491 -0.293804 -0.714876 0.561201 0.417139 0.510112 0.010530 0.860043 0.478265 0.827612 -0.293804 -0.769757 0.483187 0.417139 0.506199 0.063936 0.860043 0.388891 0.873180 -0.293804 -0.816159 0.399849 0.417139 0.496710 0.116637 0.860043 0.295234 0.909129 -0.293804 -0.853571 0.312108 0.417139 0.481750 0.168053 0.860043 0.198325 0.935065 -0.293804 -0.881360 0.221810 0.417139 0.461701 0.217157 0.860043 0.100182 0.950601 -0.293804 -0.899753 0.128216 0.417139 0.436399 0.264351 0.860043 0.000000 0.955866 -0.293804 -0.908236 0.033209 0.417139 0.406290 0.308633 0.860043 -0.100182 0.950601 -0.293804 -0.906776 -0.061257 0.417139 0.372055 0.349143 0.860043 -0.198325 0.935065 -0.293804 -0.895362 -0.155956 0.417139 0.333413 0.386214 0.860043 -0.295234 0.909129 -0.293804 -0.874085 -0.248938 0.417139 0.291099 0.419031 0.860043 -0.388891 0.873180 -0.293804 -0.843181 -0.339177 0.417139 0.245578 0.447233 0.860043 -0.478265 0.827612 -0.293804 -0.803414 -0.424877 0.417139 0.197823 0.470310 0.860043 -0.561597 0.773491 -0.293804 -0.754459 -0.506741 0.417139 0.147441 0.488453 0.860043 -0.639572 0.710371 -0.293804 -0.697194 -0.583023 0.417139 0.095436 0.501216 0.860043 -0.710501 0.639427 -0.293804 -0.632902 -0.652250 0.417139 0.042888 0.508415 0.860043 -0.773043 0.562213 -0.293804 -0.561056 -0.714991 0.417139 -0.010634 0.510110 0.860043 -0.827710 0.478096 -0.293804 -0.483030 -0.769855 0.417139 -0.064039 0.506186 0.860043 -0.873259 0.388713 -0.293804 -0.399683 -0.816240 0.417139 -0.116738 0.496687 0.860043 -0.909190 0.295049 -0.293804 -0.312788 -0.853322 0.417139 -0.167670 0.481884 0.860043 -0.934907 0.199069 -0.293804 -0.221631 -0.881405 0.417139 -0.217251 0.461657 0.860043 -0.950622 0.099988 -0.293804 -0.550000 -0.451396 0.702667 -0.278368 0.892324 0.355345 -0.787408 -0.000160 -0.616432 -0.499661 -0.506554 0.702667 -0.370357 0.858234 0.355345 -0.783055 -0.082685 -0.616432 -0.444375 -0.555688 0.702667 -0.457451 0.815149 0.355345 -0.770240 -0.163530 -0.616432 -0.383688 -0.599201 0.702667 -0.540365 0.762716 0.355345 -0.748859 -0.243356 -0.616432 -0.318774 -0.636115 0.702667 -0.617327 0.701881 0.355345 -0.719229 -0.320501 -0.616432 -0.251015 -0.665770 0.702667 -0.686856 0.634002 0.355345 -0.682071 -0.393435 -0.616432 -0.179855 -0.688412 0.702667 -0.749521 0.558523 0.355345 -0.637080 -0.462754 -0.616432 -0.106714 -0.703470 0.702667 -0.803930 0.476892 0.355345 -0.585071 -0.526976 -0.616432 -0.032397 -0.710781 0.702667 -0.849485 0.390008 0.355345 -0.526618 -0.585393 -0.616432 0.041566 -0.710303 0.702667 -0.885382 0.299713 0.355345 -0.463001 -0.636900 -0.616432 0.115782 -0.702035 0.702667 -0.911918 0.205268 0.355345 -0.393700 -0.681918 -0.616432 0.188722 -0.686034 0.702667 -0.928410 0.108562 0.355345 -0.320062 -0.719425 -0.616432 0.258922 -0.662735 0.702667 -0.934663 0.011595 0.355345 -0.243647 -0.748764 -0.616432 0.326955 -0.631949 0.702667 -0.930731 -0.086428 0.355345 -0.163829 -0.770176 -0.616432 0.391387 -0.594201 0.702667 -0.916547 -0.183499 0.355345 -0.082207 -0.783105 -0.616432 0.451060 -0.550276 0.702667 -0.892494 -0.277823 0.355345 -0.000321 -0.787408 -0.616432 0.506249 -0.499971 0.702667 -0.858460 -0.369832 0.355345 0.082207 -0.783105 -0.616432 0.555861 -0.444159 0.702667 -0.814971 -0.457768 0.355345 0.163829 -0.770176 -0.616432 0.599351 -0.383454 0.702667 -0.762506 -0.540662 0.355345 0.243647 -0.748764 -0.616432 0.635920 -0.319162 0.702667 -0.702258 -0.616898 0.355345 0.320062 -0.719425 -0.616432 0.665868 -0.250756 0.702667 -0.633735 -0.687102 0.355345 0.393700 -0.681918 -0.616432 0.688482 -0.179587 0.702667 -0.558232 -0.749738 0.355345 0.463001 -0.636900 -0.616432 0.703405 -0.107143 0.702667 -0.477383 -0.803639 0.355345 0.526618 -0.585393 -0.616432 0.710761 -0.032831 0.702667 -0.390527 -0.849246 0.355345 0.585071 -0.526976 -0.616432 0.710287 0.041842 0.702667 -0.299369 -0.885499 0.355345 0.637080 -0.462754 -0.616432 0.701990 0.116055 0.702667 -0.204914 -0.911998 0.355345 0.682071 -0.393435 -0.616432 0.686149 0.188303 0.702667 -0.109130 -0.928343 0.355345 0.719229 -0.320501 -0.616432 0.662635 0.259179 0.702667 -0.011232 -0.934668 0.355345 0.748859 -0.243356 -0.616432 0.631821 0.327201 0.702667 0.086790 -0.930697 0.355345 0.770240 -0.163530 -0.616432 0.594440 0.391024 0.702667 0.182939 -0.916659 0.355345 0.783055 -0.082685 -0.616432 0.550184 0.451172 0.702667 0.278004 -0.892437 0.355345 0.787408 -0.000160 -0.616432 0.499868 0.506350 0.702667 0.370007 -0.858385 0.355345 0.783088 0.082367 -0.616432 0.444046 0.555951 0.702667 0.457934 -0.814878 0.355345 0.770143 0.163986 -0.616432 0.383932 0.599045 0.702667 0.540055 -0.762936 0.355345 0.748958 0.243051 -0.616432 0.319033 0.635985 0.702667 0.617041 -0.702133 0.355345 0.719359 0.320208 -0.616432 0.250620 0.665919 0.702667 0.687231 -0.633595 0.355345 0.681838 0.393839 -0.616432 0.179447 0.688518 0.702667 0.749852 -0.558079 0.355345 0.636805 0.463131 -0.616432 0.107000 0.703427 0.702667 0.803736 -0.477220 0.355345 0.585286 0.526737 -0.616432 0.032687 0.710767 0.702667 0.849326 -0.390354 0.355345 0.526856 0.585178 -0.616432 -0.041987 0.710279 0.702667 0.885560 -0.299189 0.355345 0.462624 0.637174 -0.616432 -0.115496 0.702082 0.702667 0.911835 -0.205640 0.355345 0.393978 0.681757 -0.616432 -0.188443 0.686111 0.702667 0.928365 -0.108941 0.355345 0.320355 0.719294 -0.616432 -0.259314 0.662582 0.702667 0.934670 -0.011041 0.355345 0.243203 0.748908 -0.616432 -0.327330 0.631755 0.702667 0.930680 0.086980 0.355345 0.163373 0.770273 -0.616432 -0.391145 0.594360 0.702667 0.916622 0.183126 0.355345 0.082526 0.783071 -0.616432 -0.451284 0.550092 0.702667 0.892380 0.278186 0.355345 0.000000 0.787408 -0.616432 -0.506452 0.499765 0.702667 0.858310 0.370182 0.355345 -0.082526 0.783071 -0.616432 -0.555598 0.444488 0.702667 0.815243 0.457285 0.355345 -0.163373 0.770273 -0.616432 -0.599123 0.383810 0.702667 0.762826 0.540210 0.355345 -0.243203 0.748908 -0.616432 -0.636050 0.318903 0.702667 0.702007 0.617184 0.355345 -0.320355 0.719294 -0.616432 -0.665970 0.250484 0.702667 0.633455 0.687361 0.355345 -0.393978 0.681757 -0.616432 -0.688375 0.179995 0.702667 0.558676 0.749407 0.355345 -0.462624 0.637174 -0.616432 -0.703449 0.106857 0.702667 0.477056 0.803833 0.355345 -0.526856 0.585178 -0.616432 -0.710774 0.032542 0.702667 0.390181 0.849405 0.355345 -0.585286 0.526737 -0.616432 -0.710312 -0.041421 0.702667 0.299894 0.885321 0.355345 -0.636805 0.463131 -0.616432 -0.702058 -0.115639 0.702667 0.205454 0.911876 0.355345 -0.681838 0.393839 -0.616432 -0.686072 -0.188583 0.702667 0.108751 0.928387 0.355345 -0.719359 0.320208 -0.616432 -0.662529 -0.259449 0.702667 0.010851 0.934672 0.355345 -0.748958 0.243051 -0.616432 -0.632015 -0.326826 0.702667 -0.086239 0.930749 0.355345 -0.770143 0.163986 -0.616432 -0.594281 -0.391266 0.702667 -0.183313 0.916584 0.355345 -0.783088 0.082367 -0.616432 -0.229655 -0.932882 -0.277470 0.595149 -0.360182 0.718378 -0.770101 -0.000157 0.637922 -0.130617 -0.951814 -0.277470 0.629621 -0.295822 0.718378 -0.765844 -0.080868 0.637922 -0.031101 -0.960231 -0.277470 0.656929 -0.228861 0.718378 -0.753311 -0.159935 0.637922 0.069709 -0.958202 -0.277470 0.677297 -0.158750 0.718378 -0.732399 -0.238007 0.637922 0.169751 -0.945619 -0.277470 0.690205 -0.086890 0.718378 -0.703421 -0.313457 0.637922 0.267002 -0.922887 -0.277470 0.695496 -0.014768 0.718378 -0.667079 -0.384787 0.637922 0.362256 -0.889821 -0.277470 0.693214 0.058206 0.718378 -0.623077 -0.452583 0.637922 0.453521 -0.846953 -0.277470 0.683296 0.130539 0.718378 -0.572212 -0.515393 0.637922 0.539790 -0.794756 -0.277470 0.665851 0.201434 0.718378 -0.515043 -0.572526 0.637922 0.619379 -0.734425 -0.277470 0.641342 0.269470 0.718378 -0.452825 -0.622901 0.637922 0.692941 -0.665465 -0.277470 0.609567 0.335203 0.718378 -0.385047 -0.666930 0.637922 0.758870 -0.589175 -0.277470 0.571078 0.397244 0.718378 -0.313027 -0.703612 0.637922 0.815933 -0.507211 -0.277470 0.526754 0.454383 0.718378 -0.238292 -0.732307 0.637922 0.864599 -0.418902 -0.277470 0.476230 0.507088 0.718378 -0.160228 -0.753248 0.637922 0.903741 -0.325979 -0.277470 0.420461 0.554207 0.718378 -0.080400 -0.765893 0.637922 0.932742 -0.230225 -0.277470 0.360545 0.594929 0.718378 -0.000314 -0.770101 0.637922 0.951734 -0.131199 -0.277470 0.296207 0.629440 0.718378 0.080400 -0.765893 0.637922 0.960243 -0.030728 -0.277470 0.228606 0.657018 0.718378 0.160228 -0.753248 0.637922 0.958175 0.070082 -0.277470 0.158486 0.677359 0.718378 0.238292 -0.732307 0.637922 0.945722 0.169174 -0.277470 0.087312 0.690152 0.718378 0.313027 -0.703612 0.637922 0.922783 0.267360 -0.277470 0.014498 0.695502 0.718378 0.385047 -0.666930 0.637922 0.889680 0.362602 -0.277470 -0.058476 0.693191 0.718378 0.452825 -0.622901 0.637922 0.847230 0.453003 -0.277470 -0.130122 0.683375 0.718378 0.515043 -0.572526 0.637922 0.795086 0.539304 -0.277470 -0.201028 0.665974 0.718378 0.572212 -0.515393 0.637922 0.734184 0.619665 -0.277470 -0.269719 0.641237 0.718378 0.623077 -0.452583 0.637922 0.665196 0.693199 -0.277470 -0.335440 0.609437 0.718378 0.667079 -0.384787 0.637922 0.589638 0.758510 -0.277470 -0.396895 0.571321 0.718378 0.703421 -0.313457 0.637922 0.506894 0.816131 -0.277470 -0.454588 0.526577 0.718378 0.732399 -0.238007 0.637922 0.418566 0.864762 -0.277470 -0.507273 0.476033 0.718378 0.753311 -0.159935 0.637922 0.326531 0.903542 -0.277470 -0.553950 0.420800 0.718378 0.765844 -0.080868 0.637922 0.230035 0.932788 -0.277470 -0.595002 0.360424 0.718378 0.770101 -0.000157 0.637922 0.131005 0.951761 -0.277470 -0.629501 0.296079 0.718378 0.765876 0.080556 0.637922 0.030532 0.960249 -0.277470 -0.657065 0.228472 0.718378 0.753216 0.160382 0.637922 -0.069319 0.958230 -0.277470 -0.677233 0.159026 0.718378 0.732496 0.237709 0.637922 -0.169366 0.945688 -0.277470 -0.690170 0.087171 0.718378 0.703548 0.313170 0.637922 -0.267548 0.922729 -0.277470 -0.695505 0.014356 0.718378 0.666851 0.385182 0.637922 -0.362783 0.889606 -0.277470 -0.693179 -0.058617 0.718378 0.622809 0.452952 0.637922 -0.453176 0.847138 -0.277470 -0.683349 -0.130261 0.718378 0.572421 0.515160 0.637922 -0.539466 0.794976 -0.277470 -0.665933 -0.201163 0.718378 0.515276 0.572317 0.637922 -0.619814 0.734058 -0.277470 -0.641182 -0.269850 0.718378 0.452456 0.623169 0.637922 -0.692670 0.665747 -0.277470 -0.609704 -0.334955 0.718378 0.385318 0.666773 0.637922 -0.758630 0.589484 -0.277470 -0.571240 -0.397011 0.718378 0.313314 0.703485 0.637922 -0.816234 0.506728 -0.277470 -0.526485 -0.454695 0.718378 0.237858 0.732448 0.637922 -0.864847 0.418390 -0.277470 -0.475930 -0.507370 0.718378 0.159782 0.753343 0.637922 -0.903608 0.326347 -0.277470 -0.420687 -0.554036 0.718378 0.080712 0.765860 0.637922 -0.932835 0.229845 -0.277470 -0.360303 -0.595076 0.718378 0.000000 0.770101 0.637922 -0.951787 0.130811 -0.277470 -0.295950 -0.629561 0.718378 -0.080712 0.765860 0.637922 -0.960224 0.031297 -0.277470 -0.228995 -0.656883 0.718378 -0.159782 0.753343 0.637922 -0.958216 -0.069514 -0.277470 -0.158888 -0.677265 0.718378 -0.237858 0.732448 0.637922 -0.945653 -0.169559 -0.277470 -0.087031 -0.690188 0.718378 -0.313314 0.703485 0.637922 -0.922674 -0.267736 -0.277470 -0.014215 -0.695508 0.718378 -0.385318 0.666773 0.637922 -0.889895 -0.362075 -0.277470 0.058065 -0.693226 0.718378 -0.452456 0.623169 0.637922 -0.847045 -0.453348 -0.277470 0.130400 -0.683322 0.718378 -0.515276 0.572317 0.637922 -0.794866 -0.539628 -0.277470 0.201299 -0.665892 0.718378 -0.572421 0.515160 0.637922 -0.734551 -0.619229 -0.277470 0.269339 -0.641397 0.718378 -0.622809 0.452952 0.637922 -0.665606 -0.692805 -0.277470 0.335079 -0.609636 0.718378 -0.666851 0.385182 0.637922 -0.589329 -0.758750 -0.277470 0.397128 -0.571159 0.718378 -0.703548 0.313170 0.637922 -0.506561 -0.816337 -0.277470 0.454802 -0.526392 0.718378 -0.732496 0.237709 0.637922 -0.419078 -0.864514 -0.277470 0.506991 -0.476334 0.718378 -0.753216 0.160382 0.637922 -0.326163 -0.903675 -0.277470 0.554122 -0.420574 0.718378 -0.765876 0.080556 0.637922 0.830242 -0.509847 0.225285 0.492038 0.860265 0.133578 -0.261909 -0.000053 0.965092 0.879106 -0.420024 0.225285 0.399166 0.907096 0.133578 -0.260461 -0.027503 0.965092 0.917959 -0.326492 0.225285 0.302841 0.943634 0.133578 -0.256199 -0.054394 0.965092 0.947123 -0.228485 0.225285 0.202274 0.970176 0.133578 -0.249087 -0.080945 0.965092 0.965853 -0.127962 0.225285 0.099478 0.986033 0.133578 -0.239231 -0.106606 0.965092 0.973919 -0.027002 0.225285 -0.003422 0.991032 0.133578 -0.226872 -0.130865 0.965092 0.971385 0.075220 0.225285 -0.107270 0.985216 0.133578 -0.211907 -0.153922 0.965092 0.958151 0.176614 0.225285 -0.209937 0.968547 0.133578 -0.194608 -0.175284 0.965092 0.934364 0.276062 0.225285 -0.310292 0.941210 0.133578 -0.175165 -0.194715 0.965092 0.900657 0.371569 0.225285 -0.406325 0.903912 0.133578 -0.154004 -0.211847 0.965092 0.856753 0.463918 0.225285 -0.498823 0.856348 0.133578 -0.130953 -0.226821 0.965092 0.803413 0.551157 0.225285 -0.585828 0.799352 0.133578 -0.106460 -0.239297 0.965092 0.741855 0.631584 0.225285 -0.665645 0.734216 0.133578 -0.081042 -0.249055 0.965092 0.671575 0.705857 0.225285 -0.738930 0.660408 0.133578 -0.054493 -0.256178 0.965092 0.593897 0.772355 0.225285 -0.804076 0.579326 0.133578 -0.027344 -0.260478 0.965092 0.510354 0.829931 0.225285 -0.859964 0.492563 0.133578 -0.000107 -0.261909 0.965092 0.420561 0.878849 0.225285 -0.906852 0.399720 0.133578 0.027344 -0.260478 0.965092 0.326135 0.918086 0.225285 -0.943751 0.302474 0.133578 0.054493 -0.256178 0.965092 0.228117 0.947211 0.225285 -0.970255 0.201896 0.133578 0.081042 -0.249055 0.965092 0.128552 0.965775 0.225285 -0.985972 0.100081 0.133578 0.106460 -0.239297 0.965092 0.026624 0.973929 0.225285 -0.991031 -0.003808 0.133578 0.130953 -0.226821 0.965092 -0.075598 0.971356 0.225285 -0.985174 -0.107654 0.133578 0.154004 -0.211847 0.965092 -0.176028 0.958259 0.225285 -0.968675 -0.209346 0.133578 0.175165 -0.194715 0.965092 -0.275491 0.934533 0.225285 -0.941399 -0.309717 0.133578 0.194608 -0.175284 0.965092 -0.371920 0.900512 0.225285 -0.903754 -0.406676 0.133578 0.211907 -0.153922 0.965092 -0.464251 0.856573 0.225285 -0.856154 -0.499156 0.133578 0.226872 -0.130865 0.965092 -0.550666 0.803750 0.225285 -0.799709 -0.585339 0.133578 0.239231 -0.106606 0.965092 -0.631872 0.741609 0.225285 -0.733957 -0.665931 0.133578 0.249087 -0.080945 0.965092 -0.706118 0.671300 0.225285 -0.660121 -0.739187 0.133578 0.256199 -0.054394 0.965092 -0.771992 0.594369 0.225285 -0.579817 -0.803722 0.133578 0.260461 -0.027503 0.965092 -0.830035 0.510185 0.225285 -0.492388 -0.860065 0.133578 0.261909 -0.000053 0.965092 -0.878934 0.420382 0.225285 -0.399535 -0.906934 0.133578 0.260472 0.027397 0.965092 -0.918153 0.325948 0.225285 -0.302282 -0.943813 0.133578 0.256166 0.054545 0.965092 -0.947029 0.228871 0.225285 -0.202669 -0.970094 0.133578 0.249120 0.080844 0.965092 -0.965801 0.128355 0.225285 -0.099880 -0.985992 0.133578 0.239275 0.106508 0.965092 -0.973934 0.026425 0.225285 0.004009 -0.991030 0.133578 0.226794 0.130999 0.965092 -0.971340 -0.075796 0.225285 0.107854 -0.985152 0.133578 0.211815 0.154048 0.965092 -0.958223 -0.176223 0.225285 0.209543 -0.968632 0.133578 0.194679 0.175204 0.965092 -0.934476 -0.275682 0.225285 0.309908 -0.941336 0.133578 0.175244 0.194643 0.965092 -0.900437 -0.372103 0.225285 0.406860 -0.903671 0.133578 0.153879 0.211938 0.965092 -0.856942 -0.463569 0.225285 0.498475 -0.856551 0.133578 0.131046 0.226768 0.965092 -0.803637 -0.550830 0.225285 0.585502 -0.799590 0.133578 0.106557 0.239253 0.965092 -0.741481 -0.632023 0.225285 0.666080 -0.733822 0.133578 0.080895 0.249103 0.965092 -0.671156 -0.706255 0.225285 0.739321 -0.659970 0.133578 0.054341 0.256210 0.965092 -0.594212 -0.772113 0.225285 0.803840 -0.579653 0.133578 0.027450 0.260467 0.965092 -0.510016 -0.830139 0.225285 0.860165 -0.492213 0.133578 0.000000 0.261909 0.965092 -0.420203 -0.879020 0.225285 0.907015 -0.399351 0.133578 -0.027450 0.260467 0.965092 -0.326679 -0.917893 0.225285 0.943572 -0.303033 0.133578 -0.054341 0.256210 0.965092 -0.228678 -0.947076 0.225285 0.970135 -0.202471 0.133578 -0.080895 0.249103 0.965092 -0.128158 -0.965827 0.225285 0.986013 -0.099679 0.133578 -0.106557 0.239253 0.965092 -0.026227 -0.973940 0.225285 0.991029 0.004211 0.133578 -0.131046 0.226768 0.965092 0.075022 -0.971400 0.225285 0.985238 0.107070 0.133578 -0.153879 0.211938 0.965092 0.176419 -0.958187 0.225285 0.968590 0.209740 0.133578 -0.175244 0.194643 0.965092 0.275872 -0.934420 0.225285 0.941273 0.310100 0.133578 -0.194679 0.175204 0.965092 0.371386 -0.900733 0.225285 0.903995 0.406141 0.133578 -0.211815 0.154048 0.965092 0.463744 -0.856848 0.225285 0.856450 0.498649 0.133578 -0.226794 0.130999 0.965092 0.550994 -0.803525 0.225285 0.799471 0.585665 0.133578 -0.239275 0.106508 0.965092 0.632174 -0.741352 0.225285 0.733686 0.666230 0.133578 -0.249120 0.080844 0.965092 0.705720 -0.671719 0.225285 0.660559 0.738796 0.133578 -0.256166 0.054545 0.965092 0.772234 -0.594055 0.225285 0.579490 0.803958 0.133578 -0.260472 0.027397 0.965092 -0.151627 0.863281 -0.481409 -0.258976 -0.504723 -0.823520 -0.953908 -0.000194 0.300099 -0.241270 0.842635 -0.481409 -0.204651 -0.529086 -0.823520 -0.948634 -0.100170 0.300099 -0.327442 0.813036 -0.481409 -0.148620 -0.547473 -0.823520 -0.933110 -0.198109 0.300099 -0.410851 0.774239 -0.481409 -0.090422 -0.560034 -0.823520 -0.907207 -0.294814 0.300099 -0.489734 0.726915 -0.481409 -0.031229 -0.566426 -0.823520 -0.871312 -0.388272 0.300099 -0.562551 0.672147 -0.481409 0.027742 -0.566608 -0.823520 -0.826297 -0.476628 0.300099 -0.629898 0.609486 -0.481409 0.086974 -0.560580 -0.823520 -0.771792 -0.560604 0.300099 -0.690308 0.540111 -0.481409 0.145248 -0.548377 -0.823520 -0.708786 -0.638406 0.300099 -0.743114 0.464788 -0.481409 0.201922 -0.530134 -0.823520 -0.637973 -0.709176 0.300099 -0.787349 0.385132 -0.481409 0.255865 -0.506307 -0.823520 -0.560905 -0.771574 0.300099 -0.823378 0.300491 -0.481409 0.307521 -0.476702 -0.823520 -0.476949 -0.826112 0.300099 -0.850336 0.212540 -0.481409 0.355789 -0.441846 -0.823520 -0.387740 -0.871549 0.300099 -0.867806 0.123116 -0.481409 0.399736 -0.402524 -0.823520 -0.295167 -0.907093 0.300099 -0.875930 0.031485 -0.481409 0.439722 -0.358412 -0.823520 -0.198472 -0.933033 0.300099 -0.874406 -0.060492 -0.481409 0.474864 -0.310352 -0.823520 -0.099590 -0.948695 0.300099 -0.863374 -0.151099 -0.481409 0.504565 -0.259285 -0.823520 -0.000389 -0.953908 0.300099 -0.842782 -0.240755 -0.481409 0.528961 -0.204975 -0.823520 0.099590 -0.948695 0.300099 -0.812908 -0.327759 -0.481409 0.547530 -0.148407 -0.823520 0.198472 -0.933033 0.300099 -0.774080 -0.411152 -0.481409 0.560069 -0.090204 -0.823520 0.295167 -0.907093 0.300099 -0.727214 -0.489290 -0.481409 0.566407 -0.031575 -0.823520 0.387740 -0.871549 0.300099 -0.671928 -0.562812 -0.481409 0.566597 0.027963 -0.823520 0.476949 -0.826112 0.300099 -0.609241 -0.630136 -0.481409 0.560546 0.087192 -0.823520 0.560905 -0.771574 0.300099 -0.540533 -0.689978 -0.481409 0.548465 0.144913 -0.823520 0.637973 -0.709176 0.300099 -0.465241 -0.742830 -0.481409 0.530257 0.201598 -0.823520 0.708786 -0.638406 0.300099 -0.384825 -0.787499 -0.481409 0.506208 0.256062 -0.823520 0.771792 -0.560604 0.300099 -0.300170 -0.823494 -0.481409 0.476583 0.307706 -0.823520 0.826297 -0.476628 0.300099 -0.213059 -0.850206 -0.481409 0.442064 0.355519 -0.823520 0.871312 -0.388272 0.300099 -0.122778 -0.867854 -0.481409 0.402368 0.399892 -0.823520 0.907207 -0.294814 0.300099 -0.031145 -0.875943 -0.481409 0.358241 0.439861 -0.823520 0.933110 -0.198109 0.300099 0.059957 -0.874443 -0.481409 0.310642 0.474674 -0.823520 0.948634 -0.100170 0.300099 0.151275 -0.863343 -0.481409 0.259182 0.504618 -0.823520 0.953908 -0.000194 0.300099 0.240927 -0.842734 -0.481409 0.204867 0.529002 -0.823520 0.948675 0.099783 0.300099 0.327924 -0.812841 -0.481409 0.148295 0.547561 -0.823520 0.932992 0.198662 0.300099 0.410536 -0.774407 -0.481409 0.090650 0.559997 -0.823520 0.907327 0.294445 0.300099 0.489438 -0.727115 -0.481409 0.031459 0.566414 -0.823520 0.871470 0.387917 0.300099 0.562949 -0.671814 -0.481409 -0.028078 0.566591 -0.823520 0.826014 0.477117 0.300099 0.630260 -0.609113 -0.481409 -0.087306 0.560528 -0.823520 0.771460 0.561062 0.300099 0.690088 -0.540392 -0.481409 -0.145024 0.548436 -0.823520 0.709046 0.638118 0.300099 0.742924 -0.465090 -0.481409 -0.201706 0.530216 -0.823520 0.638262 0.708916 0.300099 0.787577 -0.384665 -0.481409 -0.256165 0.506155 -0.823520 0.560447 0.771906 0.300099 0.823255 -0.300826 -0.481409 -0.307326 0.476827 -0.823520 0.477285 0.825917 0.300099 0.850250 -0.212886 -0.481409 -0.355609 0.441991 -0.823520 0.388095 0.871391 0.300099 0.867879 -0.122601 -0.481409 -0.399974 0.402287 -0.823520 0.294629 0.907267 0.300099 0.875949 -0.030966 -0.481409 -0.439934 0.358151 -0.823520 0.197919 0.933150 0.300099 0.874431 0.060136 -0.481409 -0.474737 0.310545 -0.823520 0.099976 0.948655 0.300099 0.863312 0.151451 -0.481409 -0.504670 0.259079 -0.823520 0.000000 0.953908 0.300099 0.842684 0.241098 -0.481409 -0.529044 0.204759 -0.823520 -0.099976 0.948655 0.300099 0.813102 0.327277 -0.481409 -0.547442 0.148731 -0.823520 -0.197919 0.933150 0.300099 0.774323 0.410693 -0.481409 -0.560015 0.090536 -0.823520 -0.294629 0.907267 0.300099 0.727015 0.489586 -0.481409 -0.566420 0.031344 -0.823520 -0.388095 0.871391 0.300099 0.671699 0.563086 -0.481409 -0.566585 -0.028193 -0.823520 -0.477285 0.825917 0.300099 0.609614 0.629774 -0.481409 -0.560597 -0.086860 -0.823520 -0.560447 0.771906 0.300099 0.540252 0.690198 -0.481409 -0.548406 -0.145136 -0.823520 -0.638262 0.708916 0.300099 0.464939 0.743019 -0.481409 -0.530175 -0.201814 -0.823520 -0.709046 0.638118 0.300099 0.385292 0.787271 -0.481409 -0.506359 -0.255762 -0.823520 -0.771460 0.561062 0.300099 0.300658 0.823316 -0.481409 -0.476765 -0.307424 -0.823520 -0.826014 0.477117 0.300099 0.212713 0.850293 -0.481409 -0.441919 -0.355699 -0.823520 -0.871470 0.387917 0.300099 0.122425 0.867904 -0.481409 -0.402205 -0.400056 -0.823520 -0.907327 0.294445 0.300099 0.031664 0.875924 -0.481409 -0.358501 -0.439649 -0.823520 -0.932992 0.198662 0.300099 -0.060314 0.874418 -0.481409 -0.310449 -0.474801 -0.823520 -0.948675 0.099783 0.300099 0.965490 -0.171157 -0.196303 -0.167717 -0.985244 0.034142 -0.199250 -0.000041 -0.979949 0.978111 -0.069024 -0.196303 -0.063533 -0.997396 0.034142 -0.198149 -0.020923 -0.979949 0.979992 0.032889 -0.196303 0.040352 -0.998602 0.034142 -0.194906 -0.041380 -0.979949 0.971147 0.135418 -0.196303 0.144791 -0.988873 0.034142 -0.189495 -0.061580 -0.979949 0.951606 0.236455 -0.196303 0.247634 -0.968252 0.034142 -0.181998 -0.081101 -0.979949 0.921917 0.333966 -0.196303 0.346813 -0.937313 0.034142 -0.172595 -0.099557 -0.979949 0.881838 0.428750 -0.196303 0.443140 -0.895802 0.034142 -0.161210 -0.117098 -0.979949 0.832045 0.518812 -0.196303 0.534586 -0.844424 0.034142 -0.148050 -0.133349 -0.979949 0.773087 0.603159 -0.196303 0.620144 -0.783745 0.034142 -0.133258 -0.148131 -0.979949 0.706295 0.680156 -0.196303 0.698156 -0.715132 0.034142 -0.117160 -0.161165 -0.979949 0.631120 0.750435 -0.196303 0.769261 -0.638021 0.034142 -0.099624 -0.172556 -0.979949 0.548993 0.812448 -0.196303 0.831894 -0.553883 0.034142 -0.080990 -0.182047 -0.979949 0.461684 0.865051 -0.196303 0.884899 -0.464530 0.034142 -0.061654 -0.189471 -0.979949 0.368478 0.908674 -0.196303 0.928712 -0.369227 0.034142 -0.041456 -0.194890 -0.979949 0.271213 0.942289 -0.196303 0.962295 -0.269858 0.034142 -0.020802 -0.198161 -0.979949 0.171747 0.965385 -0.196303 0.985141 -0.168319 0.034142 -0.000081 -0.199250 -0.979949 0.069622 0.978068 -0.196303 0.997357 -0.064142 0.034142 0.020802 -0.198161 -0.979949 -0.033270 0.979979 -0.196303 0.998586 0.040741 0.034142 0.041456 -0.194890 -0.979949 -0.135796 0.971095 -0.196303 0.988817 0.145176 0.034142 0.061654 -0.189471 -0.979949 -0.235874 0.951750 -0.196303 0.968403 0.247043 0.034142 0.080990 -0.182047 -0.979949 -0.334325 0.921787 -0.196303 0.937178 0.347178 0.034142 0.099624 -0.172556 -0.979949 -0.429094 0.881671 -0.196303 0.895629 0.443489 0.034142 0.117160 -0.161165 -0.979949 -0.518304 0.832362 -0.196303 0.844750 0.534070 0.034142 0.133258 -0.148131 -0.979949 -0.602687 0.773456 -0.196303 0.784124 0.619665 0.034142 0.148050 -0.133349 -0.979949 -0.680431 0.706030 -0.196303 0.714860 0.698434 0.034142 0.161210 -0.117098 -0.979949 -0.750681 0.630828 -0.196303 0.637722 0.769509 0.034142 0.172595 -0.099557 -0.979949 -0.812113 0.549489 -0.196303 0.554392 0.831555 0.034142 0.181998 -0.081101 -0.979949 -0.865230 0.461348 -0.196303 0.464185 0.885080 0.034142 0.189495 -0.061580 -0.979949 -0.908818 0.368124 -0.196303 0.368866 0.928855 0.034142 0.194906 -0.041380 -0.979949 -0.942123 0.271789 -0.196303 0.270446 0.962129 0.034142 0.198149 -0.020923 -0.979949 -0.965420 0.171550 -0.196303 0.168119 0.985175 0.034142 0.199250 -0.000041 -0.979949 -0.978083 0.069423 -0.196303 0.063939 0.997370 0.034142 0.198157 0.020842 -0.979949 -0.979972 -0.033470 -0.196303 -0.040944 0.998578 0.034142 0.194881 0.041496 -0.979949 -0.971202 -0.135022 -0.196303 -0.144388 0.988932 0.034142 0.189520 0.061503 -0.979949 -0.951702 -0.236068 -0.196303 -0.247240 0.968353 0.034142 0.182031 0.081027 -0.979949 -0.921719 -0.334513 -0.196303 -0.347369 0.937107 0.034142 0.172536 0.099659 -0.979949 -0.881584 -0.429273 -0.196303 -0.443671 0.895539 0.034142 0.161141 0.117193 -0.979949 -0.832256 -0.518473 -0.196303 -0.534242 0.844642 0.034142 0.148104 0.133289 -0.979949 -0.773333 -0.602844 -0.196303 -0.619824 0.783998 0.034142 0.133319 0.148077 -0.979949 -0.705892 -0.680575 -0.196303 -0.698579 0.714718 0.034142 0.117065 0.161234 -0.979949 -0.631425 -0.750178 -0.196303 -0.769001 0.638335 0.034142 0.099694 0.172516 -0.979949 -0.549324 -0.812224 -0.196303 -0.831668 0.554222 0.034142 0.081064 0.182014 -0.979949 -0.461171 -0.865324 -0.196303 -0.885174 0.464005 0.034142 0.061542 0.189508 -0.979949 -0.367939 -0.908893 -0.196303 -0.928930 0.368677 0.034142 0.041341 0.194914 -0.979949 -0.271597 -0.942178 -0.196303 -0.962185 0.270250 0.034142 0.020883 0.198153 -0.979949 -0.171354 -0.965455 -0.196303 -0.985210 0.167918 0.034142 0.000000 0.199250 -0.979949 -0.069224 -0.978097 -0.196303 -0.997383 0.063736 0.034142 -0.020883 0.198153 -0.979949 0.032689 -0.979998 -0.196303 -0.998610 -0.040149 0.034142 -0.041341 0.194914 -0.979949 0.135220 -0.971175 -0.196303 -0.988903 -0.144589 0.034142 -0.061542 0.189508 -0.979949 0.236261 -0.951654 -0.196303 -0.968302 -0.247437 0.034142 -0.081064 0.182014 -0.979949 0.334700 -0.921651 -0.196303 -0.937036 -0.347560 0.034142 -0.099694 0.172516 -0.979949 0.428571 -0.881925 -0.196303 -0.895892 -0.442958 0.034142 -0.117065 0.161234 -0.979949 0.518643 -0.832151 -0.196303 -0.844533 -0.534414 0.034142 -0.133319 0.148077 -0.979949 0.603002 -0.773210 -0.196303 -0.783871 -0.619984 0.034142 -0.148104 0.133289 -0.979949 0.680013 -0.706433 -0.196303 -0.715274 -0.698010 0.034142 -0.161141 0.117193 -0.979949 0.750307 -0.631272 -0.196303 -0.638178 -0.769131 0.034142 -0.172536 0.099659 -0.979949 0.812336 -0.549158 -0.196303 -0.554053 -0.831781 0.034142 -0.182031 0.081027 -0.979949 0.865418 -0.460995 -0.196303 -0.463825 -0.885269 0.034142 -0.189520 0.061503 -0.979949 0.908599 -0.368663 -0.196303 -0.369417 -0.928636 0.034142 -0.194881 0.041496 -0.979949 0.942234 -0.271405 -0.196303 -0.270054 -0.962240 0.034142 -0.198157 0.020842 -0.979949 -0.703020 0.411992 0.579677 0.317779 0.911187 -0.262210 -0.636223 -0.000130 -0.771505 -0.742328 0.336041 0.579677 0.220530 0.939475 -0.262210 -0.632706 -0.066810 -0.771505 -0.773202 0.257163 0.579677 0.121809 0.957292 -0.262210 -0.622351 -0.132131 -0.771505 -0.795896 0.174709 0.579677 0.020807 0.964787 -0.262210 -0.605075 -0.196631 -0.771505 -0.809824 0.090332 0.579677 -0.080424 0.961654 -0.262210 -0.581135 -0.258964 -0.771505 -0.814826 0.005773 0.579677 -0.179822 0.948109 -0.262210 -0.551111 -0.317894 -0.771505 -0.810943 -0.079658 0.579677 -0.278200 0.924041 -0.262210 -0.514758 -0.373903 -0.771505 -0.798128 -0.164212 0.579677 -0.373514 0.889794 -0.262210 -0.472735 -0.425794 -0.771505 -0.776522 -0.246957 0.579677 -0.464713 0.845747 -0.262210 -0.425506 -0.472995 -0.771505 -0.746689 -0.326235 0.579677 -0.550002 0.792934 -0.262210 -0.374104 -0.514613 -0.771505 -0.708385 -0.402697 0.579677 -0.630078 0.730923 -0.262210 -0.318108 -0.550987 -0.771505 -0.662278 -0.474723 0.579677 -0.703214 0.660861 -0.262210 -0.258609 -0.581293 -0.771505 -0.609418 -0.540911 0.579677 -0.768020 0.584288 -0.262210 -0.196866 -0.604999 -0.771505 -0.549370 -0.601803 0.579677 -0.825027 0.500576 -0.262210 -0.132374 -0.622300 -0.771505 -0.483271 -0.656067 0.579677 -0.872947 0.411350 -0.262210 -0.066423 -0.632746 -0.771505 -0.412421 -0.702768 0.579677 -0.910993 0.318336 -0.262210 -0.000259 -0.636223 -0.771505 -0.336495 -0.742122 0.579677 -0.939340 0.221104 -0.262210 0.066423 -0.632746 -0.771505 -0.256862 -0.773302 0.579677 -0.957340 0.121436 -0.262210 0.132374 -0.622300 -0.771505 -0.174400 -0.795964 0.579677 -0.964795 0.020432 -0.262210 0.196866 -0.604999 -0.771505 -0.090826 -0.809768 0.579677 -0.961703 -0.079837 -0.262210 0.258609 -0.581293 -0.771505 -0.005457 -0.814828 0.579677 -0.948039 -0.180190 -0.262210 0.318108 -0.550987 -0.771505 0.079973 -0.810912 0.579677 -0.923932 -0.278559 -0.262210 0.374104 -0.514613 -0.771505 0.163724 -0.798228 0.579677 -0.890022 -0.372970 -0.262210 0.425506 -0.472995 -0.771505 0.246483 -0.776673 0.579677 -0.846030 -0.464197 -0.262210 0.472735 -0.425794 -0.771505 0.326526 -0.746562 0.579677 -0.792720 -0.550310 -0.262210 0.514758 -0.373903 -0.771505 0.402973 -0.708228 0.579677 -0.730678 -0.630362 -0.262210 0.551111 -0.317894 -0.771505 0.474318 -0.662568 0.579677 -0.661290 -0.702810 -0.262210 0.581135 -0.258964 -0.771505 0.541148 -0.609207 0.579677 -0.583989 -0.768247 -0.262210 0.605075 -0.196631 -0.771505 0.602017 -0.549136 0.579677 -0.500255 -0.825222 -0.262210 0.622351 -0.132131 -0.771505 0.655771 -0.483672 0.579677 -0.411883 -0.872696 -0.262210 0.632706 -0.066810 -0.771505 0.702852 -0.412278 0.579677 -0.318150 -0.911058 -0.262210 0.636223 -0.000130 -0.771505 0.742191 -0.336344 0.579677 -0.220912 -0.939385 -0.262210 0.632733 0.066552 -0.771505 0.773354 -0.256704 0.579677 -0.121241 -0.957364 -0.262210 0.622273 0.132500 -0.771505 0.795825 -0.175034 0.579677 -0.021200 -0.964778 -0.262210 0.605155 0.196384 -0.771505 0.809787 -0.090661 0.579677 0.080033 -0.961686 -0.262210 0.581240 0.258727 -0.771505 0.814829 -0.005291 0.579677 0.180383 -0.948002 -0.262210 0.550922 0.318220 -0.771505 0.810896 0.080138 0.579677 0.278747 -0.923875 -0.262210 0.514536 0.374208 -0.771505 0.798195 0.163887 0.579677 0.373151 -0.889946 -0.262210 0.472909 0.425602 -0.771505 0.776623 0.246641 0.579677 0.464369 -0.845936 -0.262210 0.425698 0.472822 -0.771505 0.746496 0.326678 0.579677 0.550471 -0.792608 -0.262210 0.373799 0.514834 -0.771505 0.708549 0.402408 0.579677 0.629780 -0.731179 -0.262210 0.318333 0.550858 -0.771505 0.662471 0.474453 0.579677 0.702944 -0.661147 -0.262210 0.258846 0.581187 -0.771505 0.609097 0.541272 0.579677 0.768366 -0.583832 -0.262210 0.196507 0.605115 -0.771505 0.549013 0.602129 0.579677 0.825324 -0.500087 -0.262210 0.132005 0.622378 -0.771505 0.483538 0.655870 0.579677 0.872780 -0.411705 -0.262210 0.066681 0.632719 -0.771505 0.412135 0.702936 0.579677 0.911123 -0.317964 -0.262210 0.000000 0.636223 -0.771505 0.336193 0.742259 0.579677 0.939430 -0.220721 -0.262210 -0.066681 0.632719 -0.771505 0.257320 0.773150 0.579677 0.957267 -0.122004 -0.262210 -0.132005 0.622378 -0.771505 0.174871 0.795861 0.579677 0.964782 -0.021003 -0.262210 -0.196507 0.605115 -0.771505 0.090496 0.809805 0.579677 0.961670 0.080228 -0.262210 -0.258846 0.581187 -0.771505 0.005125 0.814830 0.579677 0.947965 0.180576 -0.262210 -0.318333 0.550858 -0.771505 -0.079493 0.810959 0.579677 0.924097 0.278012 -0.262210 -0.373799 0.514834 -0.771505 -0.164049 0.798162 0.579677 0.889870 0.373332 -0.262210 -0.425698 0.472822 -0.771505 -0.246799 0.776572 0.579677 0.845841 0.464541 -0.262210 -0.472909 0.425602 -0.771505 -0.326083 0.746756 0.579677 0.793046 0.549840 -0.262210 -0.514536 0.374208 -0.771505 -0.402553 0.708467 0.579677 0.731051 0.629929 -0.262210 -0.550922 0.318220 -0.771505 -0.474588 0.662375 0.579677 0.661004 0.703079 -0.262210 -0.581240 0.258727 -0.771505 -0.541396 0.608987 0.579677 0.583676 0.768485 -0.262210 -0.605155 0.196384 -0.771505 -0.601691 0.549492 0.579677 0.500744 0.824925 -0.262210 -0.622273 0.132500 -0.771505 -0.655968 0.483405 0.579677 0.411528 0.872864 -0.262210 -0.632733 0.066552 -0.771505 0.378052 0.768131 0.516770 -0.453739 0.640293 -0.619795 -0.806968 -0.000164 0.590595 0.295464 0.803523 0.516770 -0.518348 0.589212 -0.619795 -0.802506 -0.084739 0.590595 0.210452 0.829854 0.516770 -0.576715 0.532217 -0.619795 -0.789373 -0.167592 0.590595 0.122318 0.847341 0.516770 -0.629318 0.468842 -0.619795 -0.767461 -0.249401 0.590595 0.032837 0.855494 0.516770 -0.674991 0.400303 -0.619795 -0.737095 -0.328463 0.590595 -0.056151 0.854281 0.516770 -0.712900 0.328067 -0.619795 -0.699014 -0.403208 0.590595 -0.145376 0.843691 0.516770 -0.743357 0.251544 -0.619795 -0.652905 -0.474249 0.590595 -0.233001 0.823808 0.516770 -0.765627 0.172249 -0.619795 -0.599605 -0.540066 0.590595 -0.318058 0.794850 0.516770 -0.779463 0.091057 -0.619795 -0.539700 -0.599935 0.590595 -0.398855 0.757537 0.516770 -0.784705 0.009647 -0.619795 -0.474503 -0.652721 0.590595 -0.476054 0.711562 0.516770 -0.781394 -0.072649 -0.619795 -0.403480 -0.698857 0.590595 -0.548009 0.657749 0.516770 -0.769476 -0.154145 -0.619795 -0.328012 -0.737296 0.590595 -0.613331 0.597305 0.516770 -0.749317 -0.233193 -0.619795 -0.249699 -0.767364 0.590595 -0.672555 0.529734 0.516770 -0.720750 -0.310442 -0.619795 -0.167899 -0.789308 0.590595 -0.724371 0.456328 0.516770 -0.684244 -0.384272 -0.619795 -0.084249 -0.802558 0.590595 -0.767900 0.378521 0.516770 -0.640570 -0.453348 -0.619795 -0.000329 -0.806968 0.590595 -0.803342 0.295955 0.516770 -0.589528 -0.517988 -0.619795 0.084249 -0.802558 0.590595 -0.829936 0.210129 0.516770 -0.531992 -0.576922 -0.619795 0.167899 -0.789308 0.590595 -0.847388 0.121989 0.516770 -0.468597 -0.629501 -0.619795 0.249699 -0.767364 0.590595 -0.855474 0.033360 0.516770 -0.400715 -0.674746 -0.619795 0.328012 -0.737296 0.590595 -0.854259 -0.056483 0.516770 -0.327790 -0.713028 -0.619795 0.403480 -0.698857 0.590595 -0.843634 -0.145705 0.516770 -0.251254 -0.743455 -0.619795 0.474503 -0.652721 0.590595 -0.823950 -0.232497 0.516770 -0.172717 -0.765522 -0.619795 0.539700 -0.599935 0.590595 -0.795045 -0.317573 0.516770 -0.091533 -0.779408 -0.619795 0.599605 -0.540066 0.590595 -0.757382 -0.399150 0.516770 -0.009342 -0.784708 -0.619795 0.652905 -0.474249 0.590595 -0.711377 -0.476331 0.516770 0.072953 -0.781366 -0.619795 0.699014 -0.403208 0.590595 -0.658084 -0.547607 0.516770 0.153674 -0.769570 -0.619795 0.737095 -0.328463 0.590595 -0.597067 -0.613563 0.516770 0.233484 -0.749226 -0.619795 0.767461 -0.249401 0.590595 -0.529473 -0.672761 0.516770 0.310723 -0.720629 -0.619795 0.789373 -0.167592 0.590595 -0.456771 -0.724092 0.516770 0.383854 -0.684478 -0.619795 0.802506 -0.084739 0.590595 -0.378365 -0.767977 0.516770 0.453478 -0.640478 -0.619795 0.806968 -0.000164 0.590595 -0.295792 -0.803402 0.516770 0.518108 -0.589423 -0.619795 0.802541 0.084413 0.590595 -0.209960 -0.829979 0.516770 0.577030 -0.531875 -0.619795 0.789274 0.168060 0.590595 -0.122664 -0.847291 0.516770 0.629128 -0.469098 -0.619795 0.767563 0.249088 0.590595 -0.033186 -0.855481 0.516770 0.674827 -0.400578 -0.619795 0.737229 0.328162 0.590595 0.056657 -0.854247 0.516770 0.713094 -0.327645 -0.619795 0.698775 0.403622 0.590595 0.145877 -0.843604 0.516770 0.743506 -0.251103 -0.619795 0.652624 0.474636 0.590595 0.232665 -0.823902 0.516770 0.765557 -0.172561 -0.619795 0.599825 0.539822 0.590595 0.317735 -0.794980 0.516770 0.779426 -0.091375 -0.619795 0.539944 0.599715 0.590595 0.399304 -0.757301 0.516770 0.784710 -0.009182 -0.619795 0.474116 0.653002 0.590595 0.475764 -0.711756 0.516770 0.781424 0.072331 -0.619795 0.403764 0.698693 0.590595 0.547741 -0.657973 0.516770 0.769539 0.153831 -0.619795 0.328313 0.737162 0.590595 0.613685 -0.596942 0.516770 0.749178 0.233637 -0.619795 0.249245 0.767512 0.590595 0.672869 -0.529335 0.516770 0.720565 0.310870 -0.619795 0.167431 0.789407 0.590595 0.724185 -0.456623 0.516770 0.684400 0.383994 -0.619795 0.084576 0.802524 0.590595 0.768054 -0.378209 0.516770 0.640385 0.453609 -0.619795 0.000000 0.806968 0.590595 0.803463 -0.295628 0.516770 0.589317 0.518228 -0.619795 -0.084576 0.802524 0.590595 0.829811 -0.210621 0.516770 0.532334 0.576606 -0.619795 -0.167431 0.789407 0.590595 0.847316 -0.122491 0.516770 0.468970 0.629223 -0.619795 -0.249245 0.767512 0.590595 0.855487 -0.033012 0.516770 0.400440 0.674909 -0.619795 -0.328313 0.737162 0.590595 0.854236 0.056831 0.516770 0.327500 0.713161 -0.619795 -0.403764 0.698693 0.590595 0.843720 0.145205 0.516770 0.251695 0.743306 -0.619795 -0.474116 0.653002 0.590595 0.823855 0.232833 0.516770 0.172405 0.765592 -0.619795 -0.539944 0.599715 0.590595 0.794915 0.317897 0.516770 0.091216 0.779445 -0.619795 -0.599825 0.539822 0.590595 0.757618 0.398701 0.516770 0.009807 0.784703 -0.619795 -0.652624 0.474636 0.590595 0.711659 0.475909 0.516770 -0.072490 0.781409 -0.619795 -0.698775 0.403622 0.590595 0.657861 0.547875 0.516770 -0.153988 0.769508 -0.619795 -0.737229 0.328162 0.590595 0.596817 0.613806 0.516770 -0.233790 0.749131 -0.619795 -0.767563 0.249088 0.590595 0.529871 0.672447 0.516770 -0.310296 0.720813 -0.619795 -0.789274 0.168060 0.590595 0.456476 0.724278 0.516770 -0.384133 0.684322 -0.619795 -0.802541 0.084413 0.590595 -0.734879 -0.254527 0.628624 -0.193505 0.967066 0.165347 -0.650006 -0.000132 -0.759929 -0.704156 -0.330146 0.628624 -0.293795 0.941459 0.165347 -0.646412 -0.068257 -0.759929 -0.666078 -0.401462 0.628624 -0.389943 0.905872 0.165347 -0.635834 -0.134994 -0.759929 -0.620333 -0.469061 0.628624 -0.482737 0.860015 0.165347 -0.618184 -0.200890 -0.759929 -0.567756 -0.531493 0.628624 -0.570215 0.804684 0.165347 -0.593724 -0.264574 -0.759929 -0.509513 -0.587561 0.628624 -0.650670 0.741140 0.165347 -0.563050 -0.324781 -0.759929 -0.445126 -0.637726 0.628624 -0.724763 0.668864 0.165347 -0.525910 -0.382004 -0.759929 -0.375836 -0.680866 0.628624 -0.790873 0.589220 0.165347 -0.482977 -0.435019 -0.759929 -0.302407 -0.716507 0.628624 -0.848272 0.503085 0.165347 -0.434724 -0.483243 -0.759929 -0.226390 -0.744029 0.628624 -0.895915 0.412306 0.165347 -0.382208 -0.525761 -0.759929 -0.147164 -0.763658 0.628624 -0.934194 0.316137 0.165347 -0.325000 -0.562924 -0.759929 -0.066316 -0.774876 0.628624 -0.962182 0.216485 0.165347 -0.264211 -0.593886 -0.759929 0.014484 -0.777574 0.628624 -0.979457 0.115429 0.165347 -0.201131 -0.618106 -0.759929 0.095899 -0.771774 0.628624 -0.986161 0.012139 0.165347 -0.135241 -0.635781 -0.759929 0.176259 -0.757472 0.628624 -0.982002 -0.091284 0.165347 -0.067862 -0.646454 -0.759929 0.254078 -0.735035 0.628624 -0.967184 -0.192915 0.165347 -0.000265 -0.650006 -0.759929 0.329715 -0.704357 0.628624 -0.941638 -0.293220 0.165347 0.067862 -0.646454 -0.759929 0.401721 -0.665922 0.628624 -0.905721 -0.390296 0.165347 0.135241 -0.635781 -0.759929 0.469302 -0.620151 0.628624 -0.859827 -0.483072 0.165347 0.201131 -0.618106 -0.759929 0.531146 -0.568081 0.628624 -0.805032 -0.569723 0.165347 0.264211 -0.593886 -0.759929 0.587759 -0.509284 0.628624 -0.740887 -0.650958 0.165347 0.325000 -0.562924 -0.759929 0.637899 -0.444878 0.628624 -0.668582 -0.725023 0.165347 0.382208 -0.525761 -0.759929 0.680636 -0.376252 0.628624 -0.589703 -0.790513 0.165347 0.434724 -0.483243 -0.759929 0.716322 -0.302844 0.628624 -0.503604 -0.847965 0.165347 0.482977 -0.435019 -0.759929 0.744117 -0.226101 0.628624 -0.411957 -0.896076 0.165347 0.525910 -0.382004 -0.759929 0.763716 -0.146867 0.628624 -0.315773 -0.934317 0.165347 0.563050 -0.324781 -0.759929 0.774836 -0.066790 0.628624 -0.217073 -0.962050 0.165347 0.593724 -0.264574 -0.759929 0.777569 0.014786 0.628624 -0.115048 -0.979502 0.165347 0.618184 -0.200890 -0.759929 0.771736 0.096200 0.628624 -0.011756 -0.986165 0.165347 0.635834 -0.134994 -0.759929 0.757580 0.175796 0.628624 0.090684 -0.982057 0.165347 0.646412 -0.068257 -0.759929 0.734983 0.254227 0.628624 0.193112 -0.967144 0.165347 0.650006 -0.000132 -0.759929 0.704290 0.329859 0.628624 0.293412 -0.941578 0.165347 0.646440 0.067994 -0.759929 0.665840 0.401857 0.628624 0.390480 -0.905641 0.165347 0.635754 0.135371 -0.759929 0.620524 0.468808 0.628624 0.482387 -0.860211 0.165347 0.618266 0.200639 -0.759929 0.567972 0.531262 0.628624 0.569887 -0.804916 0.165347 0.593832 0.264332 -0.759929 0.509164 0.587863 0.628624 0.651109 -0.740755 0.165347 0.562858 0.325114 -0.759929 0.444748 0.637990 0.628624 0.725159 -0.668434 0.165347 0.525683 0.382315 -0.759929 0.376113 0.680713 0.628624 0.790633 -0.589542 0.165347 0.483154 0.434822 -0.759929 0.302698 0.716383 0.628624 0.848067 -0.503431 0.165347 0.434921 0.483065 -0.759929 0.225949 0.744163 0.628624 0.896160 -0.411775 0.165347 0.381897 0.525988 -0.759929 0.147475 0.763598 0.628624 0.934065 -0.316517 0.165347 0.325229 0.562791 -0.759929 0.066632 0.774849 0.628624 0.962094 -0.216877 0.165347 0.264453 0.593778 -0.759929 -0.014945 0.777565 0.628624 0.979526 -0.114849 0.165347 0.200765 0.618225 -0.759929 -0.096357 0.771717 0.628624 0.986168 -0.011555 0.165347 0.134864 0.635861 -0.759929 -0.175950 0.757544 0.628624 0.982039 0.090884 0.165347 0.068125 0.646426 -0.759929 -0.254377 0.734931 0.628624 0.967105 0.193309 0.165347 0.000000 0.650006 -0.759929 -0.330002 0.704223 0.628624 0.941519 0.293603 0.165347 -0.068125 0.646426 -0.759929 -0.401326 0.666160 0.628624 0.905952 0.389759 0.165347 -0.134864 0.635861 -0.759929 -0.468934 0.620429 0.628624 0.860113 0.482562 0.165347 -0.200765 0.618225 -0.759929 -0.531377 0.567864 0.628624 0.804800 0.570051 0.165347 -0.264453 0.593778 -0.759929 -0.587967 0.509045 0.628624 0.740622 0.651260 0.165347 -0.325229 0.562791 -0.759929 -0.637635 0.445256 0.628624 0.669011 0.724627 0.165347 -0.381897 0.525988 -0.759929 -0.680790 0.375975 0.628624 0.589381 0.790753 0.165347 -0.434921 0.483065 -0.759929 -0.716445 0.302552 0.628624 0.503258 0.848170 0.165347 -0.483154 0.434822 -0.759929 -0.743983 0.226542 0.628624 0.412488 0.895831 0.165347 -0.525683 0.382315 -0.759929 -0.763628 0.147319 0.628624 0.316327 0.934129 0.165347 -0.562858 0.325114 -0.759929 -0.774863 0.066474 0.628624 0.216681 0.962138 0.165347 -0.593832 0.264332 -0.759929 -0.777562 -0.015103 0.628624 0.114649 0.979549 0.165347 -0.618266 0.200639 -0.759929 -0.771793 -0.095742 0.628624 0.012340 0.986158 0.165347 -0.635754 0.135371 -0.759929 -0.757508 -0.176104 0.628624 -0.091084 0.982020 0.165347 -0.646440 0.067994 -0.759929 -0.545198 0.803178 -0.240136 -0.734981 -0.595740 -0.323878 -0.403190 -0.000082 0.915116 -0.626374 0.741613 -0.240136 -0.668495 -0.669490 -0.323878 -0.400961 -0.042339 0.915116 -0.699978 0.672581 -0.240136 -0.595382 -0.735271 -0.323878 -0.394399 -0.083735 0.915116 -0.766615 0.595514 -0.240136 -0.515041 -0.793622 -0.323878 -0.383451 -0.124610 0.915116 -0.824807 0.511887 -0.240136 -0.429027 -0.843231 -0.323878 -0.368279 -0.164112 0.915116 -0.873491 0.423496 -0.240136 -0.339171 -0.883213 -0.323878 -0.349252 -0.201457 0.915116 -0.913065 0.329616 -0.240136 -0.244736 -0.913897 -0.323878 -0.326215 -0.236952 0.915116 -0.942583 0.232105 -0.240136 -0.147606 -0.934514 -0.323878 -0.299584 -0.269836 0.915116 -0.961718 0.132037 -0.240136 -0.048849 -0.944837 -0.323878 -0.269653 -0.299749 0.915116 -0.970229 0.031485 -0.240136 0.049501 -0.944803 -0.323878 -0.237078 -0.326123 0.915116 -0.968185 -0.070375 -0.240136 0.148251 -0.934412 -0.323878 -0.201593 -0.349174 0.915116 -0.955477 -0.171460 -0.240136 0.245367 -0.913728 -0.323878 -0.163887 -0.368379 0.915116 -0.932515 -0.269724 -0.240136 0.338898 -0.883318 -0.323878 -0.124759 -0.383402 0.915116 -0.899110 -0.365973 -0.240136 0.429609 -0.842935 -0.323878 -0.083888 -0.394366 0.915116 -0.855801 -0.458191 -0.240136 0.515589 -0.793266 -0.323878 -0.042094 -0.400987 0.915116 -0.803510 -0.544707 -0.240136 0.595291 -0.735345 -0.323878 -0.000164 -0.403190 0.915116 -0.741996 -0.625921 -0.240136 0.669082 -0.668904 -0.323878 0.042094 -0.400987 0.915116 -0.672309 -0.700240 -0.240136 0.735503 -0.595096 -0.323878 0.083888 -0.394366 0.915116 -0.595216 -0.766846 -0.240136 0.793822 -0.514732 -0.323878 0.124759 -0.383402 0.915116 -0.512391 -0.824494 -0.240136 0.842969 -0.429543 -0.323878 0.163887 -0.368379 0.915116 -0.423157 -0.873655 -0.240136 0.883345 -0.338828 -0.323878 0.201593 -0.349174 0.915116 -0.329261 -0.913193 -0.240136 0.913992 -0.244381 -0.323878 0.237078 -0.326123 0.915116 -0.232681 -0.942441 -0.240136 0.934423 -0.148176 -0.323878 0.269653 -0.299749 0.915116 -0.132625 -0.961637 -0.240136 0.944807 -0.049426 -0.323878 0.299584 -0.269836 0.915116 -0.031108 -0.970241 -0.240136 0.944784 0.049869 -0.323878 0.326215 -0.236952 0.915116 0.070752 -0.968158 -0.240136 0.934354 0.148614 -0.323878 0.349252 -0.201457 0.915116 0.170876 -0.955581 -0.240136 0.913877 0.244809 -0.323878 0.368279 -0.164112 0.915116 0.270087 -0.932410 -0.240136 0.883187 0.339241 -0.323878 0.383451 -0.124610 0.915116 0.366323 -0.898967 -0.240136 0.842767 0.429937 -0.323878 0.394399 -0.083735 0.915116 0.457668 -0.856081 -0.240136 0.793581 0.515104 -0.323878 0.400961 -0.042339 0.915116 0.544871 -0.803400 -0.240136 0.735224 0.595440 -0.323878 0.403190 -0.000082 0.915116 0.626072 -0.741868 -0.240136 0.668768 0.669218 -0.323878 0.400978 0.042176 0.915116 0.700377 -0.672166 -0.240136 0.594946 0.735624 -0.323878 0.394349 0.083969 0.915116 0.766372 -0.595826 -0.240136 0.515364 0.793412 -0.323878 0.383502 0.124453 0.915116 0.824598 -0.512223 -0.240136 0.429371 0.843056 -0.323878 0.368346 0.163962 0.915116 0.873741 -0.422979 -0.240136 0.338648 0.883414 -0.323878 0.349133 0.201664 0.915116 0.913260 -0.329075 -0.240136 0.244195 0.914042 -0.323878 0.326074 0.237145 0.915116 0.942488 -0.232489 -0.240136 0.147986 0.934453 -0.323878 0.299694 0.269714 0.915116 0.961664 -0.132429 -0.240136 0.049234 0.944817 -0.323878 0.269775 0.299639 0.915116 0.970247 -0.030910 -0.240136 -0.050061 0.944774 -0.323878 0.236885 0.326263 0.915116 0.968214 0.069981 -0.240136 -0.147870 0.934472 -0.323878 0.201735 0.349092 0.915116 0.955547 0.171071 -0.240136 -0.244995 0.913827 -0.323878 0.164037 0.368312 0.915116 0.932355 0.270277 -0.240136 -0.339421 0.883117 -0.323878 0.124531 0.383476 0.915116 0.898893 0.366506 -0.240136 -0.430109 0.842680 -0.323878 0.083655 0.394416 0.915116 0.855988 0.457842 -0.240136 -0.515266 0.793476 -0.323878 0.042257 0.400969 0.915116 0.803289 0.545034 -0.240136 -0.595590 0.735102 -0.323878 0.000000 0.403190 0.915116 0.741741 0.626223 -0.240136 -0.669354 0.668632 -0.323878 -0.042257 0.400969 0.915116 0.672723 0.699841 -0.240136 -0.735150 0.595532 -0.323878 -0.083655 0.394416 0.915116 0.595670 0.766493 -0.240136 -0.793517 0.515203 -0.323878 -0.124531 0.383476 0.915116 0.512055 0.824702 -0.240136 -0.843144 0.429199 -0.323878 -0.164037 0.368312 0.915116 0.422801 0.873827 -0.240136 -0.883483 0.338468 -0.323878 -0.201735 0.349092 0.915116 0.329802 0.912998 -0.240136 -0.913847 0.244922 -0.323878 -0.236885 0.326263 0.915116 0.232297 0.942535 -0.240136 -0.934484 0.147796 -0.323878 -0.269775 0.299639 0.915116 0.132233 0.961691 -0.240136 -0.944827 0.049041 -0.323878 -0.299694 0.269714 0.915116 0.031683 0.970222 -0.240136 -0.944813 -0.049309 -0.323878 -0.326074 0.237145 0.915116 -0.070178 0.968199 -0.240136 -0.934442 -0.148060 -0.323878 -0.349133 0.201664 0.915116 -0.171266 0.955512 -0.240136 -0.913778 -0.245181 -0.323878 -0.368346 0.163962 0.915116 -0.270467 0.932300 -0.240136 -0.883048 -0.339601 -0.323878 -0.383502 0.124453 0.915116 -0.365790 0.899184 -0.240136 -0.843022 -0.429438 -0.323878 -0.394349 0.083969 0.915116 -0.458016 0.855895 -0.240136 -0.793371 -0.515427 -0.323878 -0.400978 0.042176 0.915116 -0.554261 0.728844 0.401972 0.589910 0.684680 -0.428042 -0.587198 -0.000120 -0.809443 -0.627597 0.666739 0.401972 0.514901 0.742736 -0.428042 -0.583951 -0.061661 -0.809443 -0.693421 0.597984 0.401972 0.435014 0.792176 -0.428042 -0.574395 -0.121950 -0.809443 -0.752276 0.522015 0.401972 0.349592 0.833406 -0.428042 -0.558450 -0.181479 -0.809443 -0.802843 0.440296 0.401972 0.260320 0.865456 -0.428042 -0.536354 -0.239009 -0.809443 -0.844214 0.354572 0.401972 0.169068 0.887804 -0.428042 -0.508644 -0.293398 -0.809443 -0.876726 0.264140 0.401972 0.075089 0.900634 -0.428042 -0.475093 -0.345092 -0.809443 -0.899581 0.170798 0.401972 -0.019718 0.903544 -0.428042 -0.436308 -0.392984 -0.809443 -0.912528 0.075575 0.401972 -0.114307 0.896501 -0.428042 -0.392718 -0.436548 -0.809443 -0.915443 -0.019566 0.401972 -0.206757 0.879791 -0.428042 -0.345276 -0.474958 -0.809443 -0.908350 -0.115403 0.401972 -0.297827 0.853276 -0.428042 -0.293596 -0.508530 -0.809443 -0.891253 -0.209969 0.401972 -0.385616 0.817362 -0.428042 -0.238681 -0.536500 -0.809443 -0.864640 -0.301358 0.401972 -0.468385 0.772914 -0.428042 -0.181696 -0.558380 -0.809443 -0.828293 -0.390318 0.401972 -0.546812 0.719567 -0.428042 -0.122173 -0.574347 -0.809443 -0.782823 -0.474980 0.401972 -0.619217 0.658294 -0.428042 -0.061305 -0.583989 -0.809443 -0.729182 -0.553816 0.401972 -0.684320 0.590328 -0.428042 -0.000239 -0.587198 -0.809443 -0.667122 -0.627189 0.401972 -0.742421 0.515355 -0.428042 0.061305 -0.583989 -0.809443 -0.597714 -0.693654 0.401972 -0.792345 0.434706 -0.428042 0.122173 -0.574347 -0.809443 -0.521722 -0.752479 0.401972 -0.833542 0.349268 -0.428042 0.181696 -0.558380 -0.809443 -0.440787 -0.802574 0.401972 -0.865297 0.260849 -0.428042 0.238681 -0.536500 -0.809443 -0.354244 -0.844352 0.401972 -0.887870 0.168723 -0.428042 0.293596 -0.508530 -0.809443 -0.263799 -0.876829 0.401972 -0.900663 0.074738 -0.428042 0.345276 -0.474958 -0.809443 -0.171347 -0.899477 0.401972 -0.903556 -0.019166 -0.428042 0.392718 -0.436548 -0.809443 -0.076132 -0.912481 0.401972 -0.896571 -0.113759 -0.428042 0.436308 -0.392984 -0.809443 0.019922 -0.915435 0.401972 -0.879710 -0.207100 -0.428042 0.475093 -0.345092 -0.809443 0.115756 -0.908305 0.401972 -0.853160 -0.298159 -0.428042 0.508644 -0.293398 -0.809443 0.209424 -0.891381 0.401972 -0.817597 -0.385117 -0.428042 0.536354 -0.239009 -0.809443 0.301694 -0.864522 0.401972 -0.772731 -0.468686 -0.428042 0.558450 -0.181479 -0.809443 0.390641 -0.828141 0.401972 -0.719354 -0.547092 -0.428042 0.574395 -0.121950 -0.809443 0.474502 -0.783113 0.401972 -0.658672 -0.618814 -0.428042 0.583951 -0.061661 -0.809443 0.553964 -0.729069 0.401972 -0.590188 -0.684440 -0.428042 0.587198 -0.000120 -0.809443 0.627325 -0.666995 0.401972 -0.515204 -0.742526 -0.428042 0.583976 0.061424 -0.809443 0.693776 -0.597573 0.401972 -0.434544 -0.792434 -0.428042 0.574323 0.122290 -0.809443 0.752063 -0.522322 0.401972 -0.349932 -0.833264 -0.428042 0.558524 0.181251 -0.809443 0.802664 -0.440623 0.401972 -0.260672 -0.865350 -0.428042 0.536452 0.238791 -0.809443 0.844424 -0.354072 0.401972 -0.168542 -0.887904 -0.428042 0.508470 0.293699 -0.809443 0.876882 -0.263620 0.401972 -0.074555 -0.900679 -0.428042 0.474888 0.345373 -0.809443 0.899512 -0.171164 0.401972 0.019350 -0.903552 -0.428042 0.436468 0.392807 -0.809443 0.912497 -0.075946 0.401972 0.113942 -0.896548 -0.428042 0.392895 0.436388 -0.809443 0.915431 0.020108 0.401972 0.207279 -0.879668 -0.428042 0.344995 0.475163 -0.809443 0.908397 0.115033 0.401972 0.297480 -0.853397 -0.428042 0.293803 0.508410 -0.809443 0.891338 0.209606 0.401972 0.385283 -0.817519 -0.428042 0.238900 0.536403 -0.809443 0.864461 0.301870 0.401972 0.468843 -0.772636 -0.428042 0.181365 0.558487 -0.809443 0.828062 0.390809 0.401972 0.547239 -0.719243 -0.428042 0.121833 0.574420 -0.809443 0.783017 0.474661 0.401972 0.618949 -0.658546 -0.428042 0.061543 0.583964 -0.809443 0.728956 0.554113 0.401972 0.684560 -0.590049 -0.428042 0.000000 0.587198 -0.809443 0.666867 0.627461 0.401972 0.742631 -0.515053 -0.428042 -0.061543 0.583964 -0.809443 0.598125 0.693300 0.401972 0.792088 -0.435175 -0.428042 -0.121833 0.574420 -0.809443 0.522168 0.752169 0.401972 0.833335 -0.349762 -0.428042 -0.181365 0.558487 -0.809443 0.440460 0.802754 0.401972 0.865403 -0.260496 -0.428042 -0.238900 0.536403 -0.809443 0.353900 0.844496 0.401972 0.887938 -0.168361 -0.428042 -0.293803 0.508410 -0.809443 0.264318 0.876672 0.401972 0.900619 -0.075272 -0.428042 -0.344995 0.475163 -0.809443 0.170981 0.899546 0.401972 0.903548 0.019534 -0.428042 -0.392895 0.436388 -0.809443 0.075760 0.912512 0.401972 0.896524 0.114124 -0.428042 -0.436468 0.392807 -0.809443 -0.019379 0.915447 0.401972 0.879833 0.206578 -0.428042 -0.474888 0.345373 -0.809443 -0.115218 0.908374 0.401972 0.853336 0.297653 -0.428042 -0.508470 0.293699 -0.809443 -0.209787 0.891295 0.401972 0.817440 0.385450 -0.428042 -0.536452 0.238791 -0.809443 -0.302046 0.864399 0.401972 0.772541 0.469001 -0.428042 -0.558524 0.181251 -0.809443 -0.390150 0.828373 0.401972 0.719678 0.546666 -0.428042 -0.574323 0.122290 -0.809443 -0.474820 0.782920 0.401972 0.658420 0.619083 -0.428042 -0.583976 0.061424 -0.809443 -0.275195 -0.758031 -0.591317 0.320099 -0.652218 0.687131 -0.906534 -0.000185 0.422132 -0.194233 -0.782699 -0.591317 0.386693 -0.615077 0.687131 -0.901522 -0.095195 0.422132 -0.111929 -0.798634 -0.591317 0.448456 -0.571610 0.687131 -0.886769 -0.188270 0.422132 -0.027610 -0.805966 -0.591317 0.505895 -0.521461 0.687131 -0.862153 -0.280173 0.422132 0.057013 -0.804421 -0.591317 0.557762 -0.465567 0.687131 -0.828040 -0.368990 0.422132 0.140214 -0.794156 -0.591317 0.603080 -0.405149 0.687131 -0.785261 -0.452957 0.422132 0.222675 -0.775087 -0.591317 0.642221 -0.339711 0.687131 -0.733463 -0.532763 0.422132 0.302683 -0.747481 -0.591317 0.674288 -0.270530 0.687131 -0.673586 -0.606701 0.422132 0.379358 -0.711640 -0.591317 0.698928 -0.198370 0.687131 -0.606290 -0.673956 0.422132 0.451185 -0.668413 -0.591317 0.715745 -0.124741 0.687131 -0.533048 -0.733255 0.422132 0.518755 -0.617445 -0.591317 0.724877 -0.049038 0.687131 -0.453262 -0.785084 0.422132 0.580610 -0.559675 -0.591317 0.726024 0.027204 0.687131 -0.368483 -0.828266 0.422132 0.635575 -0.496376 -0.591317 0.719278 0.102427 0.687131 -0.280508 -0.862044 0.422132 0.684098 -0.427030 -0.591317 0.704581 0.177249 0.687131 -0.188615 -0.886695 0.422132 0.725086 -0.352979 -0.591317 0.682124 0.250118 0.687131 -0.094644 -0.901580 0.422132 0.757863 -0.275659 -0.591317 0.652413 0.319700 0.687131 -0.000369 -0.906534 0.422132 0.782580 -0.194711 -0.591317 0.615313 0.386317 0.687131 0.094644 -0.901580 0.422132 0.798677 -0.111618 -0.591317 0.571436 0.448679 0.687131 0.188615 -0.886695 0.422132 0.805977 -0.027297 -0.591317 0.521264 0.506098 0.687131 0.280508 -0.862044 0.422132 0.804456 0.056521 -0.591317 0.465908 0.557478 0.687131 0.368483 -0.828266 0.422132 0.794102 0.140523 -0.591317 0.404914 0.603238 0.687131 0.453262 -0.785084 0.422132 0.775001 0.222977 -0.591317 0.339461 0.642353 0.687131 0.533048 -0.733255 0.422132 0.747665 0.302227 -0.591317 0.270942 0.674123 0.687131 0.606290 -0.673956 0.422132 0.711872 0.378923 -0.591317 0.198797 0.698807 0.687131 0.673586 -0.606701 0.422132 0.668238 0.451445 -0.591317 0.124462 0.715794 0.687131 0.733463 -0.532763 0.422132 0.617243 0.518995 -0.591317 0.048757 0.724896 0.687131 0.785261 -0.452957 0.422132 0.560029 0.580268 -0.591317 -0.026760 0.726041 0.687131 0.828040 -0.368990 0.422132 0.496129 0.635768 -0.591317 -0.102707 0.719238 0.687131 0.862153 -0.280173 0.422132 0.426763 0.684264 -0.591317 -0.177523 0.704512 0.687131 0.886769 -0.188270 0.422132 0.353422 0.724870 -0.591317 -0.249701 0.682276 0.687131 0.901522 -0.095195 0.422132 0.275504 0.757919 -0.591317 -0.319833 0.652348 0.687131 0.906534 -0.000185 0.422132 0.194551 0.782620 -0.591317 -0.386442 0.615235 0.687131 0.901561 0.094828 0.422132 0.111456 0.798700 -0.591317 -0.448795 0.571344 0.687131 0.886657 0.188795 0.422132 0.027938 0.805955 -0.591317 -0.505683 0.521667 0.687131 0.862267 0.279822 0.422132 -0.056685 0.804445 -0.591317 -0.557572 0.465794 0.687131 0.828191 0.368652 0.422132 -0.140685 0.794073 -0.591317 -0.603320 0.404792 0.687131 0.784992 0.453422 0.422132 -0.223134 0.774955 -0.591317 -0.642423 0.339330 0.687131 0.733147 0.533198 0.422132 -0.302379 0.747604 -0.591317 -0.674178 0.270805 0.687131 0.673833 0.606427 0.422132 -0.379068 0.711795 -0.591317 -0.698847 0.198655 0.687131 0.606564 0.673709 0.422132 -0.451581 0.668146 -0.591317 -0.715819 0.124316 0.687131 0.532614 0.733571 0.422132 -0.518503 0.617656 -0.591317 -0.724857 0.049334 0.687131 0.453582 0.784900 0.422132 -0.580382 0.559911 -0.591317 -0.726035 -0.026908 0.687131 0.368821 0.828116 0.422132 -0.635869 0.495999 -0.591317 -0.719217 -0.102854 0.687131 0.279997 0.862210 0.422132 -0.684351 0.426624 -0.591317 -0.704476 -0.177666 0.687131 0.188089 0.886807 0.422132 -0.724942 0.353275 -0.591317 -0.682225 -0.249840 0.687131 0.095011 0.901541 0.422132 -0.757975 0.275350 -0.591317 -0.652283 -0.319966 0.687131 0.000000 0.906534 0.422132 -0.782660 0.194392 -0.591317 -0.615156 -0.386568 0.687131 -0.095011 0.901541 0.422132 -0.798611 0.112092 -0.591317 -0.571702 -0.448340 0.687131 -0.188089 0.886807 0.422132 -0.805961 0.027774 -0.591317 -0.521564 -0.505789 0.687131 -0.279997 0.862210 0.422132 -0.804433 -0.056849 -0.591317 -0.465681 -0.557667 0.687131 -0.368821 0.828116 0.422132 -0.794044 -0.140846 -0.591317 -0.404669 -0.603403 0.687131 -0.453582 0.784900 0.422132 -0.775132 -0.222517 -0.591317 -0.339841 -0.642152 0.687131 -0.532614 0.733571 0.422132 -0.747542 -0.302531 -0.591317 -0.270668 -0.674233 0.687131 -0.606564 0.673709 0.422132 -0.711718 -0.379213 -0.591317 -0.198512 -0.698888 0.687131 -0.673833 0.606427 0.422132 -0.668505 -0.451049 -0.591317 -0.124886 -0.715720 0.687131 -0.733147 0.533198 0.422132 -0.617550 -0.518629 -0.591317 -0.049186 -0.724867 0.687131 -0.784992 0.453422 0.422132 -0.559793 -0.580496 -0.591317 0.027056 -0.726030 0.687131 -0.828191 0.368652 0.422132 -0.495870 -0.635970 -0.591317 0.103000 -0.719196 0.687131 -0.862267 0.279822 0.422132 -0.427169 -0.684011 -0.591317 0.177105 -0.704617 0.687131 -0.886657 0.188795 0.422132 -0.353127 -0.725014 -0.591317 0.249979 -0.682175 0.687131 -0.901561 0.094828 0.422132 -0.131512 -0.974912 -0.179588 0.576594 -0.222592 0.786125 -0.806377 -0.000164 0.591402 -0.028610 -0.983326 -0.179588 0.596748 -0.160935 0.786125 -0.801919 -0.084677 0.591402 0.073626 -0.980983 -0.179588 0.610231 -0.098115 0.786125 -0.788795 -0.167469 0.591402 0.176035 -0.967864 -0.179588 0.617153 -0.033618 0.786125 -0.766899 -0.249218 0.591402 0.276504 -0.944084 -0.179588 0.617277 0.031249 0.786125 -0.736555 -0.328222 0.591402 0.373018 -0.910278 -0.179588 0.610698 0.095161 0.786125 -0.698502 -0.402913 0.591402 0.466367 -0.866170 -0.179588 0.597361 0.158643 0.786125 -0.652427 -0.473901 0.591402 0.554580 -0.812521 -0.179588 0.577444 0.220377 0.786125 -0.599166 -0.539671 0.591402 0.636683 -0.749922 -0.179588 0.551167 0.279683 0.786125 -0.539304 -0.599495 0.591402 0.711095 -0.679774 -0.179588 0.519154 0.335390 0.786125 -0.474155 -0.652243 0.591402 0.778423 -0.601502 -0.179588 0.481144 0.387954 0.786125 -0.403184 -0.698345 0.591402 0.837178 -0.516605 -0.179588 0.437834 0.436245 0.786125 -0.327772 -0.736756 0.591402 0.886285 -0.426905 -0.179588 0.390180 0.479340 0.786125 -0.249517 -0.766802 0.591402 0.926146 -0.331664 -0.179588 0.337793 0.517594 0.786125 -0.167776 -0.788730 0.591402 0.955806 -0.232771 -0.179588 0.281685 0.550147 0.786125 -0.084187 -0.801970 0.591402 0.974831 -0.132108 -0.179588 0.222944 0.576458 0.786125 -0.000328 -0.806377 0.591402 0.983308 -0.029211 -0.179588 0.161299 0.596649 0.786125 0.084187 -0.801970 0.591402 0.980954 0.074008 -0.179588 0.097878 0.610269 0.786125 0.167776 -0.788730 0.591402 0.967795 0.176411 -0.179588 0.033378 0.617166 0.786125 0.249517 -0.766802 0.591402 0.944252 0.275927 -0.179588 -0.030872 0.617296 0.786125 0.327772 -0.736756 0.591402 0.910133 0.373372 -0.179588 -0.095399 0.610661 0.786125 0.403184 -0.698345 0.591402 0.865988 0.466704 -0.179588 -0.158875 0.597299 0.786125 0.474155 -0.652243 0.591402 0.812859 0.554083 -0.179588 -0.220024 0.577579 0.786125 0.539304 -0.599495 0.591402 0.750311 0.636225 -0.179588 -0.279347 0.551338 0.786125 0.599166 -0.539671 0.591402 0.679497 0.711359 -0.179588 -0.335592 0.519024 0.786125 0.652427 -0.473901 0.591402 0.601200 0.778657 -0.179588 -0.388141 0.480993 0.786125 0.698502 -0.402913 0.591402 0.517117 0.836862 -0.179588 -0.435977 0.438100 0.786125 0.736555 -0.328222 0.591402 0.426560 0.886451 -0.179588 -0.479492 0.389994 0.786125 0.766899 -0.249218 0.591402 0.331304 0.926275 -0.179588 -0.517726 0.337592 0.786125 0.788795 -0.167469 0.591402 0.233355 0.955664 -0.179588 -0.549975 0.282021 0.786125 0.801919 -0.084677 0.591402 0.131909 0.974858 -0.179588 -0.576503 0.222827 0.786125 0.806377 -0.000164 0.591402 0.029011 0.983314 -0.179588 -0.596682 0.161178 0.786125 0.801953 0.084351 0.591402 -0.074208 0.980939 -0.179588 -0.610289 0.097753 0.786125 0.788696 0.167937 0.591402 -0.175640 0.967935 -0.179588 -0.617139 0.033870 0.786125 0.767000 0.248906 0.591402 -0.276120 0.944196 -0.179588 -0.617290 -0.030998 0.786125 0.736689 0.327922 0.591402 -0.373557 0.910057 -0.179588 -0.610642 -0.095523 0.786125 0.698263 0.403326 0.591402 -0.466881 0.865893 -0.179588 -0.597267 -0.158997 0.786125 0.652146 0.474288 0.591402 -0.554249 0.812746 -0.179588 -0.577534 -0.220142 0.786125 0.599385 0.539426 0.591402 -0.636378 0.750181 -0.179588 -0.551281 -0.279459 0.786125 0.539549 0.599276 0.591402 -0.711497 0.679353 -0.179588 -0.518956 -0.335698 0.786125 0.473769 0.652524 0.591402 -0.778178 0.601820 -0.179588 -0.481302 -0.387758 0.786125 0.403469 0.698181 0.591402 -0.836968 0.516946 -0.179588 -0.438011 -0.436067 0.786125 0.328072 0.736622 0.591402 -0.886538 0.426379 -0.179588 -0.389896 -0.479572 0.786125 0.249062 0.766950 0.591402 -0.926343 0.331115 -0.179588 -0.337486 -0.517794 0.786125 0.167309 0.788829 0.591402 -0.955712 0.233160 -0.179588 -0.281909 -0.550032 0.786125 0.084514 0.801936 0.591402 -0.974885 0.131711 -0.179588 -0.222709 -0.576549 0.786125 0.000000 0.806377 0.591402 -0.983320 0.028810 -0.179588 -0.161056 -0.596715 0.786125 -0.084514 0.801936 0.591402 -0.980998 -0.073426 -0.179588 -0.098239 -0.610211 0.786125 -0.167309 0.788829 0.591402 -0.967900 -0.175838 -0.179588 -0.033744 -0.617146 0.786125 -0.249062 0.766950 0.591402 -0.944140 -0.276312 -0.179588 0.031123 -0.617284 0.786125 -0.328072 0.736622 0.591402 -0.909981 -0.373743 -0.179588 0.095648 -0.610622 0.786125 -0.403469 0.698181 0.591402 -0.866265 -0.466191 -0.179588 0.158521 -0.597394 0.786125 -0.473769 0.652524 0.591402 -0.812634 -0.554414 -0.179588 0.220259 -0.577489 0.786125 -0.539549 0.599276 0.591402 -0.750051 -0.636531 -0.179588 0.279571 -0.551224 0.786125 -0.599385 0.539426 0.591402 -0.679919 -0.710956 -0.179588 0.335285 -0.519223 0.786125 -0.652146 0.474288 0.591402 -0.601661 -0.778301 -0.179588 0.387856 -0.481223 0.786125 -0.698263 0.403326 0.591402 -0.516776 -0.837073 -0.179588 0.436156 -0.437922 0.786125 -0.736689 0.327922 0.591402 -0.426199 -0.886625 -0.179588 0.479651 -0.389798 0.786125 -0.767000 0.248906 0.591402 -0.331853 -0.926079 -0.179588 0.517525 -0.337898 0.786125 -0.788696 0.167937 0.591402 -0.232966 -0.955759 -0.179588 0.550089 -0.281797 0.786125 -0.801953 0.084351 0.591402 0.733163 0.396737 -0.552333 0.316958 -0.917932 -0.238615 -0.601672 -0.000123 -0.798743 0.687545 0.471392 -0.552333 0.411419 -0.879658 -0.238615 -0.598345 -0.063181 -0.798743 0.634893 0.540221 -0.552333 0.500515 -0.832194 -0.238615 -0.588553 -0.124956 -0.798743 0.574777 0.603787 -0.552333 0.584979 -0.775153 -0.238615 -0.572216 -0.185952 -0.798743 0.508331 0.660703 -0.552333 0.662999 -0.709574 -0.238615 -0.549575 -0.244900 -0.798743 0.436995 0.709904 -0.552333 0.733079 -0.636913 -0.238615 -0.521182 -0.300630 -0.798743 0.360185 0.751795 -0.552333 0.795795 -0.556573 -0.238615 -0.486803 -0.353598 -0.798743 0.279408 0.785404 -0.552333 0.849745 -0.470103 -0.238615 -0.447063 -0.402671 -0.798743 0.195553 0.810362 -0.552333 0.894335 -0.378454 -0.238615 -0.402398 -0.447309 -0.798743 0.110371 0.826285 -0.552333 0.928791 -0.283566 -0.238615 -0.353787 -0.486666 -0.798743 0.023162 0.833302 -0.552333 0.953396 -0.184660 -0.238615 -0.300833 -0.521065 -0.798743 -0.064301 0.831140 -0.552333 0.967499 -0.083721 -0.238615 -0.244565 -0.549725 -0.798743 -0.150237 0.819974 -0.552333 0.970962 0.017170 -0.238615 -0.186175 -0.572143 -0.798743 -0.235348 0.799712 -0.552333 0.963815 0.118839 -0.238615 -0.125185 -0.588505 -0.798743 -0.317868 0.770642 -0.552333 0.946052 0.219200 -0.238615 -0.062816 -0.598384 -0.798743 -0.396289 0.733405 -0.552333 0.918126 0.316398 -0.238615 -0.000245 -0.601672 -0.798743 -0.470972 0.687832 -0.552333 0.879909 0.410881 -0.238615 0.062816 -0.598384 -0.798743 -0.540468 0.634683 -0.552333 0.831999 0.500839 -0.238615 0.125185 -0.588505 -0.798743 -0.604011 0.574542 -0.552333 0.774926 0.585280 -0.238615 0.186175 -0.572143 -0.798743 -0.660392 0.508734 -0.552333 0.709979 0.662565 -0.238615 0.244565 -0.549725 -0.798743 -0.710074 0.436719 -0.552333 0.636627 0.733327 -0.238615 0.300833 -0.521065 -0.798743 -0.751935 0.359893 -0.552333 0.556263 0.796011 -0.238615 0.353787 -0.486666 -0.798743 -0.785233 0.279888 -0.552333 0.470622 0.849457 -0.238615 0.402398 -0.447309 -0.798743 -0.810243 0.196048 -0.552333 0.379001 0.894104 -0.238615 0.447063 -0.402671 -0.798743 -0.826328 0.110049 -0.552333 0.283205 0.928901 -0.238615 0.486803 -0.353598 -0.798743 -0.833311 0.022838 -0.552333 0.184290 0.953467 -0.238615 0.521182 -0.300630 -0.798743 -0.831179 -0.063794 -0.552333 0.084312 0.967447 -0.238615 0.549575 -0.244900 -0.798743 -0.819915 -0.150556 -0.552333 -0.017548 0.970956 -0.238615 0.572216 -0.185952 -0.798743 -0.799620 -0.235660 -0.552333 -0.119214 0.963769 -0.238615 0.588553 -0.124956 -0.798743 -0.770836 -0.317397 -0.552333 -0.218622 0.946186 -0.238615 0.598345 -0.063181 -0.798743 -0.733325 -0.396438 -0.552333 -0.316585 0.918061 -0.238615 0.601672 -0.000123 -0.798743 -0.687736 -0.471112 -0.552333 -0.411060 0.879825 -0.238615 0.598371 0.062938 -0.798743 -0.634573 -0.540597 -0.552333 -0.501009 0.831897 -0.238615 0.588479 0.125305 -0.798743 -0.575023 -0.603553 -0.552333 -0.584663 0.775391 -0.238615 0.572291 0.185719 -0.798743 -0.508600 -0.660496 -0.552333 -0.662710 0.709844 -0.238615 0.549675 0.244677 -0.798743 -0.436574 -0.710163 -0.552333 -0.733456 0.636478 -0.238615 0.521004 0.300939 -0.798743 -0.359739 -0.752008 -0.552333 -0.796124 0.556101 -0.238615 0.486594 0.353886 -0.798743 -0.279728 -0.785290 -0.552333 -0.849553 0.470449 -0.238615 0.447227 0.402489 -0.798743 -0.195883 -0.810283 -0.552333 -0.894181 0.378819 -0.238615 0.402580 0.447145 -0.798743 -0.109881 -0.826350 -0.552333 -0.928959 0.283016 -0.238615 0.353499 0.486875 -0.798743 -0.023502 -0.833292 -0.552333 -0.953320 0.185049 -0.238615 0.301045 0.520942 -0.798743 0.063963 -0.831166 -0.552333 -0.967464 0.084115 -0.238615 0.244788 0.549625 -0.798743 0.150723 -0.819885 -0.552333 -0.970952 -0.017746 -0.238615 0.185836 0.572254 -0.798743 0.235822 -0.799572 -0.552333 -0.963745 -0.119411 -0.238615 0.124836 0.588579 -0.798743 0.317554 -0.770771 -0.552333 -0.946141 -0.218814 -0.238615 0.063060 0.598358 -0.798743 0.396587 -0.733244 -0.552333 -0.917997 -0.316772 -0.238615 0.000000 0.601672 -0.798743 0.471252 -0.687640 -0.552333 -0.879741 -0.411240 -0.238615 -0.063060 0.598358 -0.798743 0.540092 -0.635003 -0.552333 -0.832296 -0.500346 -0.238615 -0.124836 0.588579 -0.798743 0.603670 -0.574900 -0.552333 -0.775272 -0.584821 -0.238615 -0.185836 0.572254 -0.798743 0.660599 -0.508465 -0.552333 -0.709709 -0.662854 -0.238615 -0.244788 0.549625 -0.798743 0.710252 -0.436429 -0.552333 -0.636329 -0.733586 -0.238615 -0.301045 0.520942 -0.798743 0.751721 -0.360338 -0.552333 -0.556735 -0.795681 -0.238615 -0.353499 0.486875 -0.798743 0.785347 -0.279568 -0.552333 -0.470276 -0.849649 -0.238615 -0.402580 0.447145 -0.798743 0.810323 -0.195718 -0.552333 -0.378636 -0.894258 -0.238615 -0.447227 0.402489 -0.798743 0.826262 -0.110539 -0.552333 -0.283755 -0.928733 -0.238615 -0.486594 0.353886 -0.798743 0.833297 -0.023332 -0.552333 -0.184855 -0.953358 -0.238615 -0.521004 0.300939 -0.798743 0.831153 0.064132 -0.552333 -0.083918 -0.967481 -0.238615 -0.549675 0.244677 -0.798743 0.819854 0.150890 -0.552333 0.017943 -0.970948 -0.238615 -0.572291 0.185719 -0.798743 0.799760 0.235186 -0.552333 0.118643 -0.963839 -0.238615 -0.588479 0.125305 -0.798743 0.770706 0.317711 -0.552333 0.219007 -0.946097 -0.238615 -0.598371 0.062938 -0.798743 0.004139 0.999969 0.006719 -0.542809 0.007889 -0.839819 -0.839846 -0.000171 0.542824 -0.100688 0.994895 0.006719 -0.540646 -0.049044 -0.839819 -0.835203 -0.088192 0.542824 -0.203426 0.979067 0.006719 -0.532633 -0.104905 -0.839819 -0.821535 -0.174420 0.542824 -0.304919 0.952354 0.006719 -0.518705 -0.160151 -0.839819 -0.798730 -0.259562 0.542824 -0.403054 0.915152 0.006719 -0.499063 -0.213633 -0.839819 -0.767127 -0.341845 0.542824 -0.495880 0.868365 0.006719 -0.474189 -0.264288 -0.839819 -0.727494 -0.419636 0.542824 -0.584160 0.811611 0.006719 -0.443878 -0.312531 -0.839819 -0.679507 -0.493571 0.542824 -0.666005 0.745917 0.006719 -0.408678 -0.357331 -0.839819 -0.624035 -0.562070 0.542824 -0.740515 0.672006 0.006719 -0.368976 -0.398196 -0.839819 -0.561689 -0.624378 0.542824 -0.806277 0.591501 0.006719 -0.325645 -0.434349 -0.839819 -0.493835 -0.679315 0.542824 -0.863829 0.503739 0.006719 -0.278329 -0.466086 -0.839819 -0.419919 -0.727331 0.542824 -0.911868 0.410430 0.006719 -0.227947 -0.492690 -0.839819 -0.341376 -0.767336 0.542824 -0.949548 0.313549 0.006719 -0.175568 -0.513692 -0.839819 -0.259873 -0.798629 0.542824 -0.977181 0.212302 0.006719 -0.120762 -0.529263 -0.839819 -0.174740 -0.821467 0.542824 -0.994050 0.108718 0.006719 -0.064626 -0.539005 -0.839819 -0.087682 -0.835257 0.542824 -0.999966 0.004750 0.006719 -0.008221 -0.542804 -0.839819 -0.000342 -0.839846 0.542824 -0.994957 -0.100080 0.006719 0.048714 -0.540676 -0.839819 0.087682 -0.835257 0.542824 -0.978988 -0.203807 0.006719 0.105112 -0.532592 -0.839819 0.174740 -0.821467 0.542824 -0.952236 -0.305290 0.006719 0.160353 -0.518643 -0.839819 0.259873 -0.798629 0.542824 -0.915398 -0.402494 0.006719 0.213328 -0.499194 -0.839819 0.341376 -0.767336 0.542824 -0.868172 -0.496218 0.006719 0.264472 -0.474086 -0.839819 0.419919 -0.727331 0.542824 -0.811383 -0.584476 0.006719 0.312703 -0.443757 -0.839819 0.493835 -0.679315 0.542824 -0.746323 -0.665550 0.006719 0.357081 -0.408896 -0.839819 0.561689 -0.624378 0.542824 -0.672459 -0.740104 0.006719 0.397970 -0.369220 -0.839819 0.624035 -0.562070 0.542824 -0.591187 -0.806507 0.006719 0.434475 -0.325476 -0.839819 0.679507 -0.493571 0.542824 -0.503403 -0.864025 0.006719 0.466195 -0.278147 -0.839819 0.727494 -0.419636 0.542824 -0.410987 -0.911617 0.006719 0.492551 -0.228248 -0.839819 0.767127 -0.341845 0.542824 -0.313179 -0.949670 0.006719 0.513760 -0.175368 -0.839819 0.798730 -0.259562 0.542824 -0.211922 -0.977263 0.006719 0.529310 -0.120556 -0.839819 0.821535 -0.174420 0.542824 -0.109325 -0.993983 0.006719 0.538966 -0.064956 -0.839819 0.835203 -0.088192 0.542824 -0.004546 -0.999967 0.006719 0.542805 -0.008110 -0.839819 0.839846 -0.000171 0.542824 0.100283 -0.994936 0.006719 0.540666 0.048824 -0.839819 0.835239 0.087852 0.542824 0.204007 -0.978946 0.006719 0.532571 0.105221 -0.839819 0.821431 0.174907 0.542824 0.304531 -0.952479 0.006719 0.518770 0.159940 -0.839819 0.798835 0.259237 0.542824 0.402681 -0.915316 0.006719 0.499150 0.213430 -0.839819 0.767266 0.341533 0.542824 0.496395 -0.868071 0.006719 0.474032 0.264569 -0.839819 0.727245 0.420067 0.542824 0.584641 -0.811264 0.006719 0.443693 0.312794 -0.839819 0.679214 0.493974 0.542824 0.665702 -0.746188 0.006719 0.408824 0.357165 -0.839819 0.624263 0.561816 0.542824 0.740241 -0.672308 0.006719 0.369139 0.398045 -0.839819 0.561943 0.624149 0.542824 0.806627 -0.591023 0.006719 0.325388 0.434541 -0.839819 0.493433 0.679607 0.542824 0.863624 -0.504091 0.006719 0.278519 0.465973 -0.839819 0.420215 0.727160 0.542824 0.911700 -0.410801 0.006719 0.228147 0.492597 -0.839819 0.341689 0.767196 0.542824 0.949734 -0.312986 0.006719 0.175263 0.513796 -0.839819 0.259400 0.798783 0.542824 0.977307 -0.211723 0.006719 0.120448 0.529335 -0.839819 0.174253 0.821570 0.542824 0.994006 -0.109122 0.006719 0.064846 0.538979 -0.839819 0.088022 0.835221 0.542824 0.999968 -0.004343 0.006719 0.008000 0.542807 -0.839819 0.000000 0.839846 0.542824 0.994916 0.100485 0.006719 -0.048934 0.540656 -0.839819 -0.088022 0.835221 0.542824 0.979109 0.203227 0.006719 -0.104797 0.532655 -0.839819 -0.174253 0.821570 0.542824 0.952417 0.304725 0.006719 -0.160046 0.518738 -0.839819 -0.259400 0.798783 0.542824 0.915234 0.402867 0.006719 -0.213532 0.499107 -0.839819 -0.341689 0.767196 0.542824 0.867970 0.496572 0.006719 -0.264666 0.473978 -0.839819 -0.420215 0.727160 0.542824 0.811730 0.583995 0.006719 -0.312440 0.443942 -0.839819 -0.493433 0.679607 0.542824 0.746052 0.665854 0.006719 -0.357248 0.408751 -0.839819 -0.561943 0.624149 0.542824 0.672157 0.740378 0.006719 -0.398120 0.369058 -0.839819 -0.624263 0.561816 0.542824 0.591665 0.806156 0.006719 -0.434282 0.325734 -0.839819 -0.679214 0.493974 0.542824 0.503915 0.863727 0.006719 -0.466030 0.278424 -0.839819 -0.727245 0.420067 0.542824 0.410615 0.911784 0.006719 -0.492644 0.228047 -0.839819 -0.767266 0.341533 0.542824 0.312792 0.949798 0.006719 -0.513832 0.175158 -0.839819 -0.798835 0.259237 0.542824 0.212501 0.977138 0.006719 -0.529239 0.120870 -0.839819 -0.821431 0.174907 0.542824 0.108920 0.994028 0.006719 -0.538992 0.064736 -0.839819 -0.835239 0.087852 0.542824 -0.063375 -0.962277 -0.264587 0.224857 -0.272072 0.935637 -0.972329 -0.000198 0.233617 0.037827 -0.963620 -0.264587 0.252134 -0.247007 0.935637 -0.966953 -0.102104 0.233617 0.137659 -0.954486 -0.264587 0.276414 -0.219497 0.935637 -0.951129 -0.201934 0.233617 0.236938 -0.934802 -0.264587 0.297896 -0.189318 0.935637 -0.924726 -0.300507 0.233617 0.333607 -0.904821 -0.264587 0.316098 -0.157054 0.935637 -0.888138 -0.395770 0.233617 0.425736 -0.865299 -0.264587 0.330694 -0.123390 0.935637 -0.842253 -0.485832 0.233617 0.514081 -0.815913 -0.264587 0.341805 -0.088052 0.935637 -0.786696 -0.571430 0.233617 0.596763 -0.757540 -0.264587 0.349151 -0.051743 0.935637 -0.722473 -0.650734 0.233617 0.672872 -0.690823 -0.264587 0.352651 -0.014865 0.935637 -0.650293 -0.722871 0.233617 0.740953 -0.617238 -0.264587 0.352289 0.021825 0.935637 -0.571736 -0.786474 0.233617 0.801563 -0.536182 -0.264587 0.348061 0.058627 0.935637 -0.486159 -0.842064 0.233617 0.853344 -0.449219 -0.264587 0.339999 0.094784 0.935637 -0.395227 -0.888380 0.233617 0.895368 -0.358204 -0.264587 0.328323 0.129568 0.935637 -0.300867 -0.924609 0.233617 0.927979 -0.262390 -0.264587 0.312935 0.163265 0.935637 -0.202304 -0.951050 0.233617 0.950368 -0.163686 -0.264587 0.294100 0.195163 0.935637 -0.101513 -0.967015 0.233617 0.962238 -0.063963 -0.264587 0.272209 0.224691 0.935637 -0.000396 -0.972329 0.233617 0.963642 0.037238 -0.264587 0.247160 0.251983 0.935637 0.101513 -0.967015 0.233617 0.954432 0.138030 -0.264587 0.219390 0.276499 0.935637 0.202304 -0.951050 0.233617 0.934709 0.237301 -0.264587 0.189202 0.297970 0.935637 0.300867 -0.924609 0.233617 0.905024 0.333054 -0.264587 0.157247 0.316002 0.935637 0.395227 -0.888380 0.233617 0.865133 0.426072 -0.264587 0.123262 0.330742 0.935637 0.486159 -0.842064 0.233617 0.815713 0.514398 -0.264587 0.087919 0.341839 0.935637 0.571736 -0.786474 0.233617 0.757905 0.596300 -0.264587 0.051957 0.349119 0.935637 0.650293 -0.722871 0.233617 0.691234 0.672450 -0.264587 0.015080 0.352642 0.935637 0.722473 -0.650734 0.233617 0.616950 0.741193 -0.264587 -0.021962 0.352280 0.935637 0.786696 -0.571430 0.233617 0.535870 0.801771 -0.264587 -0.058763 0.348038 0.935637 0.842253 -0.485832 0.233617 0.449740 0.853069 -0.264587 -0.094576 0.340057 0.935637 0.888138 -0.395770 0.233617 0.357856 0.895507 -0.264587 -0.129696 0.328272 0.935637 0.924726 -0.300507 0.233617 0.262029 0.928081 -0.264587 -0.163387 0.312871 0.935637 0.951129 -0.201934 0.233617 0.164267 0.950268 -0.264587 -0.194984 0.294219 0.935637 0.966953 -0.102104 0.233617 0.063767 0.962251 -0.264587 -0.224746 0.272163 0.935637 0.972329 -0.000198 0.233617 -0.037435 0.963635 -0.264587 -0.252033 0.247109 0.935637 0.966994 0.101710 0.233617 -0.138224 0.954404 -0.264587 -0.276544 0.219333 0.935637 0.951009 0.202498 0.233617 -0.236557 0.934898 -0.264587 -0.297819 0.189440 0.935637 0.924848 0.300130 0.233617 -0.333238 0.904956 -0.264587 -0.316034 0.157183 0.935637 0.888299 0.395408 0.233617 -0.426249 0.865047 -0.264587 -0.330767 0.123194 0.935637 0.841965 0.486331 0.233617 -0.514564 0.815609 -0.264587 -0.341857 0.087849 0.935637 0.786357 0.571896 0.233617 -0.596454 0.757783 -0.264587 -0.349130 0.051885 0.935637 0.722738 0.650440 0.233617 -0.672591 0.691097 -0.264587 -0.352645 0.015008 0.935637 0.650587 0.722606 0.233617 -0.741318 0.616799 -0.264587 -0.352276 -0.022034 0.935637 0.571270 0.786812 0.233617 -0.801344 0.536508 -0.264587 -0.348085 -0.058486 0.935637 0.486502 0.841866 0.233617 -0.853161 0.449567 -0.264587 -0.340038 -0.094645 0.935637 0.395589 0.888219 0.233617 -0.895580 0.357673 -0.264587 -0.328246 -0.129762 0.935637 0.300319 0.924787 0.233617 -0.928134 0.261840 -0.264587 -0.312838 -0.163450 0.935637 0.201740 0.951170 0.233617 -0.950302 0.164073 -0.264587 -0.294179 -0.195044 0.935637 0.101907 0.966974 0.233617 -0.962264 0.063571 -0.264587 -0.272117 -0.224802 0.935637 0.000000 0.972329 0.233617 -0.963627 -0.037631 -0.264587 -0.247058 -0.252083 0.935637 -0.101907 0.966974 0.233617 -0.954514 -0.137464 -0.264587 -0.219554 -0.276369 0.935637 -0.201740 0.951170 0.233617 -0.934850 -0.236747 -0.264587 -0.189379 -0.297858 0.935637 -0.300319 0.924787 0.233617 -0.904888 -0.333422 -0.264587 -0.157118 -0.316066 0.935637 -0.395589 0.888219 0.233617 -0.864960 -0.426425 -0.264587 -0.123127 -0.330792 0.935637 -0.486502 0.841866 0.233617 -0.816018 -0.513914 -0.264587 -0.088121 -0.341787 0.935637 -0.571270 0.786812 0.233617 -0.757662 -0.596609 -0.264587 -0.051814 -0.349140 0.935637 -0.650587 0.722606 0.233617 -0.690960 -0.672731 -0.264587 -0.014937 -0.352648 0.935637 -0.722738 0.650440 0.233617 -0.617389 -0.740827 -0.264587 0.021753 -0.352293 0.935637 -0.786357 0.571896 0.233617 -0.536345 -0.801454 -0.264587 0.058556 -0.348073 0.935637 -0.841965 0.486331 0.233617 -0.449393 -0.853252 -0.264587 0.094714 -0.340019 0.935637 -0.888299 0.395408 0.233617 -0.357491 -0.895653 -0.264587 0.129829 -0.328219 0.935637 -0.924848 0.300130 0.233617 -0.262579 -0.927925 -0.264587 0.163201 -0.312968 0.935637 -0.951009 0.202498 0.233617 -0.163880 -0.950335 -0.264587 0.195104 -0.294140 0.935637 -0.966994 0.101710 0.233617 0.004809 0.795479 -0.605962 0.006649 -0.605981 -0.795451 -0.999966 -0.000204 -0.008204 -0.078589 0.791602 -0.605962 0.070124 -0.601947 -0.795451 -0.994438 -0.105006 -0.008204 -0.160343 0.779167 -0.605962 0.132234 -0.591414 -0.795451 -0.978164 -0.207674 -0.008204 -0.241122 0.758070 -0.605962 0.193491 -0.574298 -0.795451 -0.951011 -0.309049 -0.008204 -0.319245 0.728624 -0.605962 0.252616 -0.550856 -0.795451 -0.913383 -0.407020 -0.008204 -0.393161 0.691545 -0.605962 0.308437 -0.521655 -0.795451 -0.866194 -0.499641 -0.008204 -0.463474 0.646531 -0.605962 0.361411 -0.486456 -0.795451 -0.809057 -0.587672 -0.008204 -0.528683 0.594395 -0.605962 0.410405 -0.445898 -0.795451 -0.743009 -0.669231 -0.008204 -0.588068 0.535711 -0.605962 0.454878 -0.400429 -0.795451 -0.668777 -0.743418 -0.008204 -0.640504 0.471768 -0.605962 0.493989 -0.351043 -0.795451 -0.587987 -0.808829 -0.008204 -0.686421 0.402040 -0.605962 0.528061 -0.297336 -0.795451 -0.499978 -0.865999 -0.008204 -0.724777 0.327884 -0.605962 0.556315 -0.240354 -0.795451 -0.406461 -0.913631 -0.008204 -0.754900 0.250871 -0.605962 0.578261 -0.181303 -0.795451 -0.309419 -0.950890 -0.008204 -0.777035 0.170371 -0.605962 0.594078 -0.119699 -0.795451 -0.208055 -0.978083 -0.008204 -0.790612 0.087994 -0.605962 0.603352 -0.056776 -0.795451 -0.104399 -0.994502 -0.008204 -0.795476 0.005295 -0.605962 0.605985 0.006279 -0.795451 -0.000407 -0.999966 -0.008204 -0.791650 -0.078106 -0.605962 0.601989 0.069756 -0.795451 0.104399 -0.994502 -0.008204 -0.779104 -0.160646 -0.605962 0.591363 0.132465 -0.795451 0.208055 -0.978083 -0.008204 -0.757976 -0.241417 -0.605962 0.574223 0.193714 -0.795451 0.309419 -0.950890 -0.008204 -0.728819 -0.318800 -0.605962 0.551010 0.252279 -0.795451 0.406461 -0.913631 -0.008204 -0.691392 -0.393430 -0.605962 0.521535 0.308639 -0.795451 0.499978 -0.865999 -0.008204 -0.646350 -0.463726 -0.605962 0.486315 0.361600 -0.795451 0.587987 -0.808829 -0.008204 -0.594717 -0.528320 -0.605962 0.446149 0.410132 -0.795451 0.668777 -0.743418 -0.008204 -0.536070 -0.587741 -0.605962 0.400707 0.454633 -0.795451 0.743009 -0.669231 -0.008204 -0.471518 -0.640688 -0.605962 0.350851 0.494126 -0.795451 0.809057 -0.587672 -0.008204 -0.401773 -0.686577 -0.605962 0.297131 0.528176 -0.795451 0.866194 -0.499641 -0.008204 -0.328327 -0.724577 -0.605962 0.240694 0.556168 -0.795451 0.913383 -0.407020 -0.008204 -0.250578 -0.754997 -0.605962 0.181078 0.578332 -0.795451 0.951011 -0.309049 -0.008204 -0.170069 -0.777102 -0.605962 0.119467 0.594125 -0.795451 0.978164 -0.207674 -0.008204 -0.088477 -0.790558 -0.605962 0.057144 0.603317 -0.795451 0.994438 -0.105006 -0.008204 -0.005133 -0.795477 -0.605962 -0.006402 0.605983 -0.795451 0.999966 -0.000204 -0.008204 0.078267 -0.791634 -0.605962 -0.069879 0.601975 -0.795451 0.994480 0.104601 -0.008204 0.160805 -0.779071 -0.605962 -0.132585 0.591336 -0.795451 0.978040 0.208254 -0.008204 0.240813 -0.758168 -0.605962 -0.193257 0.574377 -0.795451 0.951137 0.308661 -0.008204 0.318948 -0.728754 -0.605962 -0.252391 0.550959 -0.795451 0.913548 0.406647 -0.008204 0.393570 -0.691312 -0.605962 -0.308746 0.521472 -0.795451 0.865897 0.500154 -0.008204 0.463857 -0.646256 -0.605962 -0.361699 0.486241 -0.795451 0.808709 0.588152 -0.008204 0.528441 -0.594610 -0.605962 -0.410223 0.446065 -0.795451 0.743282 0.668928 -0.008204 0.587850 -0.535951 -0.605962 -0.454714 0.400614 -0.795451 0.669080 0.743145 -0.008204 0.640784 -0.471388 -0.605962 -0.494197 0.350751 -0.795451 0.587508 0.809177 -0.008204 0.686257 -0.402320 -0.605962 -0.527939 0.297551 -0.795451 0.500331 0.865796 -0.008204 0.724644 -0.328179 -0.605962 -0.556217 0.240581 -0.795451 0.406833 0.913465 -0.008204 0.755048 -0.250424 -0.605962 -0.578369 0.180960 -0.795451 0.308855 0.951074 -0.008204 0.777136 -0.169910 -0.605962 -0.594149 0.119346 -0.795451 0.207475 0.978206 -0.008204 0.790576 -0.088316 -0.605962 -0.603329 0.057021 -0.795451 0.104804 0.994459 -0.008204 0.795478 -0.004971 -0.605962 -0.605982 -0.006526 -0.795451 0.000000 0.999966 -0.008204 0.791618 0.078428 -0.605962 -0.601961 -0.070001 -0.795451 -0.104804 0.994459 -0.008204 0.779199 0.160184 -0.605962 -0.591441 -0.132114 -0.795451 -0.207475 0.978206 -0.008204 0.758119 0.240968 -0.605962 -0.574338 -0.193374 -0.795451 -0.308855 0.951074 -0.008204 0.728689 0.319097 -0.605962 -0.550907 -0.252503 -0.795451 -0.406833 0.913465 -0.008204 0.691232 0.393711 -0.605962 -0.521409 -0.308852 -0.795451 -0.500331 0.865796 -0.008204 0.646625 0.463343 -0.605962 -0.486529 -0.361312 -0.795451 -0.587508 0.809177 -0.008204 0.594502 0.528562 -0.605962 -0.445982 -0.410314 -0.795451 -0.669080 0.743145 -0.008204 0.535831 0.587959 -0.605962 -0.400522 -0.454796 -0.795451 -0.743282 0.668928 -0.008204 0.471898 0.640408 -0.605962 -0.351144 -0.493918 -0.795451 -0.808709 0.588152 -0.008204 0.402180 0.686339 -0.605962 -0.297444 -0.528000 -0.795451 -0.865897 0.500154 -0.008204 0.328032 0.724711 -0.605962 -0.240468 -0.556266 -0.795451 -0.913548 0.406647 -0.008204 0.250270 0.755099 -0.605962 -0.180843 -0.578406 -0.795451 -0.951137 0.308661 -0.008204 0.170529 0.777001 -0.605962 -0.119820 -0.594054 -0.795451 -0.978040 0.208254 -0.008204 0.088155 0.790594 -0.605962 -0.056899 -0.603340 -0.795451 -0.994480 0.104601 -0.008204 0.506535 -0.674335 0.537302 0.462426 0.738425 0.490806 -0.727726 -0.000148 0.685868 0.574421 -0.617533 0.537302 0.382487 0.782824 0.490806 -0.723702 -0.076418 0.685868 0.635425 -0.554564 0.537302 0.299153 0.818301 0.490806 -0.711859 -0.151135 0.685868 0.690048 -0.484913 0.537302 0.211742 0.845148 0.490806 -0.692098 -0.224910 0.685868 0.737069 -0.409920 0.537302 0.121998 0.862685 0.490806 -0.664714 -0.296209 0.685868 0.775642 -0.331188 0.537302 0.031781 0.870689 0.490806 -0.630373 -0.363614 0.685868 0.806081 -0.248072 0.537302 -0.059648 0.869225 0.490806 -0.588792 -0.427679 0.685868 0.827641 -0.162222 0.537302 -0.150421 0.858186 0.490806 -0.540725 -0.487033 0.685868 0.840085 -0.074586 0.537302 -0.239536 0.837694 0.490806 -0.486702 -0.541022 0.685868 0.843289 0.013028 0.537302 -0.325206 0.808301 0.490806 -0.427908 -0.588625 0.685868 0.837279 0.101339 0.537302 -0.408130 0.769766 0.490806 -0.363859 -0.630231 0.685868 0.822047 0.188534 0.537302 -0.486559 0.722751 0.490806 -0.295802 -0.664895 0.685868 0.798033 0.272854 0.537302 -0.558961 0.668335 0.490806 -0.225180 -0.692011 0.685868 0.765041 0.354991 0.537302 -0.625929 0.606071 0.490806 -0.151412 -0.711800 0.685868 0.723622 0.433218 0.537302 -0.686002 0.537131 0.490806 -0.075976 -0.723749 0.685868 0.674645 0.506123 0.537302 -0.738143 0.462877 0.490806 -0.000296 -0.727726 0.685868 0.617884 0.574043 0.537302 -0.782590 0.382965 0.490806 0.075976 -0.723749 0.685868 0.554317 0.635641 0.537302 -0.818418 0.298835 0.490806 0.151412 -0.711800 0.685868 0.484644 0.690236 0.537302 -0.845230 0.211413 0.490806 0.225180 -0.692011 0.685868 0.410371 0.736819 0.537302 -0.862611 0.122525 0.490806 0.295802 -0.664895 0.685868 0.330887 0.775771 0.537302 -0.870701 0.031442 0.490806 0.363859 -0.630231 0.685868 0.247758 0.806177 0.537302 -0.869201 -0.059987 0.490806 0.427908 -0.588625 0.685868 0.162728 0.827542 0.537302 -0.858278 -0.149897 0.490806 0.486702 -0.541022 0.685868 0.075099 0.840039 0.537302 -0.837840 -0.239025 0.490806 0.540725 -0.487033 0.685868 -0.013357 0.843284 0.537302 -0.808175 -0.325520 0.490806 0.588792 -0.427679 0.685868 -0.101665 0.837240 0.537302 -0.769607 -0.408430 0.490806 0.630373 -0.363614 0.685868 -0.188032 0.822162 0.537302 -0.723048 -0.486118 0.490806 0.664714 -0.296209 0.685868 -0.273165 0.797927 0.537302 -0.668118 -0.559221 0.490806 0.692098 -0.224910 0.685868 -0.355289 0.764903 0.537302 -0.605828 -0.626165 0.490806 0.711859 -0.151135 0.685868 -0.432776 0.723886 0.537302 -0.537550 -0.685674 0.490806 0.723702 -0.076418 0.685868 -0.506261 0.674541 0.537302 -0.462726 -0.738237 0.490806 0.727726 -0.000148 0.685868 -0.574169 0.617767 0.537302 -0.382805 -0.782668 0.490806 0.723733 0.076123 0.685868 -0.635753 0.554187 0.537302 -0.298668 -0.818478 0.490806 0.711769 0.151557 0.685868 -0.689850 0.485194 0.537302 -0.212086 -0.845062 0.490806 0.692190 0.224628 0.685868 -0.736902 0.410220 0.537302 -0.122349 -0.862636 0.490806 0.664835 0.295938 0.685868 -0.775838 0.330729 0.537302 -0.031265 -0.870708 0.490806 0.630157 0.363987 0.685868 -0.806228 0.247594 0.537302 0.060164 -0.869189 0.490806 0.588538 0.428028 0.685868 -0.827575 0.162559 0.537302 0.150071 -0.858247 0.490806 0.540923 0.486813 0.685868 -0.840055 0.074928 0.537302 0.239195 -0.837792 0.490806 0.486923 0.540824 0.685868 -0.843281 -0.013528 0.537302 0.325685 -0.808108 0.490806 0.427559 0.588879 0.685868 -0.837320 -0.100998 0.537302 0.407817 -0.769932 0.490806 0.364116 0.630083 0.685868 -0.822124 -0.188199 0.537302 0.486265 -0.722949 0.490806 0.296073 0.664775 0.685868 -0.797871 -0.273327 0.537302 0.559357 -0.668004 0.490806 0.224769 0.692144 0.685868 -0.764830 -0.355445 0.537302 0.626288 -0.605700 0.490806 0.150990 0.711890 0.685868 -0.723798 -0.432923 0.537302 0.685784 -0.537411 0.490806 0.076271 0.723718 0.685868 -0.674438 -0.506398 0.537302 0.738331 -0.462576 0.490806 0.000000 0.727726 0.685868 -0.617650 -0.574295 0.537302 0.782746 -0.382646 0.490806 -0.076271 0.723718 0.685868 -0.554694 -0.635312 0.537302 0.818240 -0.299320 0.490806 -0.150990 0.711890 0.685868 -0.485053 -0.689949 0.537302 0.845105 -0.211914 0.490806 -0.224769 0.692144 0.685868 -0.410070 -0.736986 0.537302 0.862660 -0.122173 0.490806 -0.296073 0.664775 0.685868 -0.330570 -0.775905 0.537302 0.870714 -0.031088 0.490806 -0.364116 0.630083 0.685868 -0.248236 -0.806031 0.537302 0.869237 0.059471 0.490806 -0.427559 0.588879 0.685868 -0.162391 -0.827608 0.537302 0.858216 0.150246 0.490806 -0.486923 0.540824 0.685868 -0.074757 -0.840070 0.537302 0.837743 0.239366 0.490806 -0.540923 0.486813 0.685868 0.012857 -0.843292 0.537302 0.808367 0.325041 0.490806 -0.588538 0.428028 0.685868 0.101169 -0.837300 0.537302 0.769849 0.407973 0.490806 -0.630157 0.363987 0.685868 0.188367 -0.822085 0.537302 0.722850 0.486412 0.490806 -0.664835 0.295938 0.685868 0.273490 -0.797815 0.537302 0.667890 0.559493 0.490806 -0.692190 0.224628 0.685868 0.354835 -0.765113 0.537302 0.606199 0.625806 0.490806 -0.711769 0.151557 0.685868 0.433070 -0.723710 0.537302 0.537271 0.685893 0.490806 -0.723733 0.076123 0.685868 0.802067 0.025957 -0.596670 0.020899 -0.999663 -0.015395 -0.596869 -0.000122 -0.802339 0.794929 0.109876 -0.596670 0.125556 -0.991967 -0.015395 -0.593569 -0.062677 -0.802339 0.779227 0.191806 -0.596670 0.227856 -0.973573 -0.015395 -0.583855 -0.123958 -0.802339 0.754833 0.272418 -0.596670 0.328638 -0.944330 -0.015395 -0.567648 -0.184468 -0.802339 0.722125 0.350030 -0.596670 0.425801 -0.904686 -0.015395 -0.545188 -0.242945 -0.802339 0.681885 0.423105 -0.596670 0.517418 -0.855594 -0.015395 -0.517021 -0.298230 -0.802339 0.633785 0.492241 -0.596670 0.604241 -0.796653 -0.015395 -0.482917 -0.350775 -0.802339 0.578705 0.555955 -0.596670 0.684408 -0.728937 -0.015395 -0.443494 -0.399456 -0.802339 0.517249 0.613545 -0.596670 0.757036 -0.653191 -0.015395 -0.399185 -0.443738 -0.802339 0.450761 0.663927 -0.596670 0.820756 -0.571072 -0.015395 -0.350963 -0.482781 -0.802339 0.378694 0.707514 -0.596670 0.876088 -0.481906 -0.015395 -0.298431 -0.516905 -0.802339 0.302456 0.743307 -0.596670 0.921770 -0.387431 -0.015395 -0.242612 -0.545336 -0.802339 0.223657 0.770690 -0.596670 0.957010 -0.289647 -0.015395 -0.184689 -0.567576 -0.802339 0.141651 0.789886 -0.596670 0.982096 -0.187750 -0.015395 -0.124185 -0.583807 -0.802339 0.058085 0.800382 -0.596670 0.996365 -0.083785 -0.015395 -0.062314 -0.593607 -0.802339 -0.025467 0.802082 -0.596670 0.999676 0.020288 -0.015395 -0.000243 -0.596869 -0.802339 -0.109391 0.794996 -0.596670 0.992044 0.124949 -0.015395 0.062314 -0.593607 -0.802339 -0.192109 0.779153 -0.596670 0.973484 0.228235 -0.015395 0.124185 -0.583807 -0.802339 -0.272712 0.754727 -0.596670 0.944202 0.329006 -0.015395 0.184689 -0.567576 -0.802339 -0.349589 0.722338 -0.596670 0.904946 0.425248 -0.015395 0.242612 -0.545336 -0.802339 -0.423370 0.681721 -0.596670 0.855393 0.517751 -0.015395 0.298431 -0.516905 -0.802339 -0.492487 0.633594 -0.596670 0.796418 0.604551 -0.015395 0.350963 -0.482781 -0.802339 -0.555601 0.579044 -0.596670 0.729355 0.683963 -0.015395 0.399185 -0.443738 -0.802339 -0.613229 0.517624 -0.596670 0.653654 0.756637 -0.015395 0.443494 -0.399456 -0.802339 -0.664103 0.450502 -0.596670 0.570753 0.820978 -0.015395 0.482917 -0.350775 -0.802339 -0.707661 0.378419 -0.596670 0.481565 0.876275 -0.015395 0.517021 -0.298230 -0.802339 -0.743122 0.302910 -0.596670 0.387995 0.921533 -0.015395 0.545188 -0.242945 -0.802339 -0.770777 0.223357 -0.596670 0.289274 0.957122 -0.015395 0.567648 -0.184468 -0.802339 -0.789941 0.141344 -0.596670 0.187368 0.982169 -0.015395 0.583855 -0.123958 -0.802339 -0.800346 0.058574 -0.596670 0.084394 0.996314 -0.015395 0.593569 -0.062677 -0.802339 -0.802077 -0.025630 -0.596670 -0.020492 0.999671 -0.015395 0.596869 -0.000122 -0.802339 -0.794974 -0.109552 -0.596670 -0.125151 0.992018 -0.015395 0.593594 0.062435 -0.802339 -0.779114 -0.192268 -0.596670 -0.228433 0.973438 -0.015395 0.583781 0.124304 -0.802339 -0.754944 -0.272111 -0.596670 -0.328254 0.944464 -0.015395 0.567723 0.184237 -0.802339 -0.722267 -0.349736 -0.596670 -0.425433 0.904859 -0.015395 0.545287 0.242723 -0.802339 -0.681634 -0.423508 -0.596670 -0.517925 0.855287 -0.015395 0.516844 0.298536 -0.802339 -0.633494 -0.492616 -0.596670 -0.604713 0.796295 -0.015395 0.482709 0.351061 -0.802339 -0.578931 -0.555719 -0.596670 -0.684111 0.729215 -0.015395 0.443656 0.399276 -0.802339 -0.517499 -0.613335 -0.596670 -0.756770 0.653499 -0.015395 0.399366 0.443575 -0.802339 -0.450367 -0.664194 -0.596670 -0.821094 0.570585 -0.015395 0.350677 0.482989 -0.802339 -0.378982 -0.707360 -0.596670 -0.875891 0.482263 -0.015395 0.298642 0.516784 -0.802339 -0.302758 -0.743184 -0.596670 -0.921612 0.387807 -0.015395 0.242834 0.545237 -0.802339 -0.223200 -0.770822 -0.596670 -0.957181 0.289080 -0.015395 0.184352 0.567685 -0.802339 -0.141183 -0.789970 -0.596670 -0.982207 0.187168 -0.015395 0.123839 0.583880 -0.802339 -0.058411 -0.800358 -0.596670 -0.996331 0.084191 -0.015395 0.062556 0.593581 -0.802339 0.025794 -0.802072 -0.596670 -0.999667 -0.020695 -0.015395 0.000000 0.596869 -0.802339 0.109714 -0.794951 -0.596670 -0.991993 -0.125353 -0.015395 -0.062556 0.593581 -0.802339 0.191648 -0.779266 -0.596670 -0.973620 -0.227658 -0.015395 -0.123839 0.583880 -0.802339 0.272265 -0.754889 -0.596670 -0.944397 -0.328446 -0.015395 -0.184352 0.567685 -0.802339 0.349883 -0.722196 -0.596670 -0.904773 -0.425617 -0.015395 -0.242834 0.545237 -0.802339 0.423647 -0.681548 -0.596670 -0.855182 -0.518099 -0.015395 -0.298642 0.516784 -0.802339 0.492112 -0.633886 -0.596670 -0.796776 -0.604079 -0.015395 -0.350677 0.482989 -0.802339 0.555837 -0.578818 -0.596670 -0.729076 -0.684260 -0.015395 -0.399366 0.443575 -0.802339 0.613440 -0.517374 -0.596670 -0.653345 -0.756903 -0.015395 -0.443656 0.399276 -0.802339 0.663836 -0.450896 -0.596670 -0.571239 -0.820639 -0.015395 -0.482709 0.351061 -0.802339 0.707437 -0.378838 -0.596670 -0.482084 -0.875990 -0.015395 -0.516844 0.298536 -0.802339 0.743245 -0.302607 -0.596670 -0.387619 -0.921691 -0.015395 -0.545287 0.242723 -0.802339 0.770867 -0.223043 -0.596670 -0.288885 -0.957240 -0.015395 -0.567723 0.184237 -0.802339 0.789857 -0.141812 -0.596670 -0.187950 -0.982058 -0.015395 -0.583781 0.124304 -0.802339 0.800370 -0.058248 -0.596670 -0.083988 -0.996348 -0.015395 -0.593594 0.062435 -0.802339 0.734760 -0.072989 -0.674389 -0.053679 -0.997333 0.049456 -0.676200 -0.000138 -0.736718 0.738363 0.004421 -0.674389 0.051144 -0.997466 0.049456 -0.672462 -0.071008 -0.736718 0.733914 0.081049 -0.674389 0.154417 -0.986767 0.049456 -0.661457 -0.140434 -0.736718 0.721378 0.157522 -0.674389 0.256987 -0.965149 0.049456 -0.643095 -0.208986 -0.736718 0.700895 0.232260 -0.674389 0.356726 -0.932899 0.049456 -0.617650 -0.275236 -0.736718 0.672997 0.303767 -0.674389 0.451646 -0.890826 0.049456 -0.585740 -0.337869 -0.736718 0.637453 0.372629 -0.674389 0.542523 -0.838584 0.049456 -0.547103 -0.397398 -0.736718 0.594889 0.437386 -0.674389 0.627425 -0.777105 0.049456 -0.502440 -0.452549 -0.736718 0.545771 0.497326 -0.674389 0.705415 -0.707067 0.049456 -0.452242 -0.502716 -0.736718 0.491193 0.551297 -0.674389 0.775006 -0.630015 0.049456 -0.397610 -0.546949 -0.736718 0.430708 0.599741 -0.674389 0.836768 -0.545319 0.049456 -0.338097 -0.585609 -0.736718 0.365479 0.641579 -0.674389 0.889313 -0.454617 0.049456 -0.274859 -0.617818 -0.736718 0.296900 0.676054 -0.674389 0.931703 -0.359838 0.049456 -0.209236 -0.643014 -0.736718 0.224410 0.703448 -0.674389 0.964285 -0.260208 0.049456 -0.140691 -0.661402 -0.736718 0.149448 0.723094 -0.674389 0.986246 -0.157710 0.049456 -0.070597 -0.672505 -0.736718 0.073438 0.734715 -0.674389 0.997300 -0.054289 0.049456 -0.000275 -0.676200 -0.736718 -0.003970 0.738365 -0.674389 0.997497 0.050535 0.049456 0.070597 -0.672505 -0.736718 -0.081334 0.733883 -0.674389 0.986707 0.154801 0.049456 0.140691 -0.661402 -0.736718 -0.157803 0.721316 -0.674389 0.965048 0.257363 0.049456 0.209236 -0.643014 -0.736718 -0.231832 0.701037 -0.674389 0.933117 0.356156 0.049456 0.274859 -0.617818 -0.736718 -0.304029 0.672879 -0.674389 0.890650 0.451992 0.049456 0.338097 -0.585609 -0.736718 -0.372877 0.637308 -0.674389 0.838373 0.542849 0.049456 0.397610 -0.546949 -0.736718 -0.437023 0.595156 -0.674389 0.777488 0.626950 0.049456 0.452242 -0.502716 -0.736718 -0.496992 0.546075 -0.674389 0.707497 0.704983 0.049456 0.502440 -0.452549 -0.736718 -0.551488 0.490979 -0.674389 0.629714 0.775251 0.049456 0.547103 -0.397398 -0.736718 -0.599909 0.430475 -0.674389 0.544994 0.836980 0.049456 0.585740 -0.337869 -0.736718 -0.641356 0.365871 -0.674389 0.455160 0.889035 0.049456 0.617650 -0.275236 -0.736718 -0.676170 0.296637 -0.674389 0.359476 0.931843 0.049456 0.643095 -0.208986 -0.736718 -0.703535 0.224136 -0.674389 0.259832 0.964386 0.049456 0.661457 -0.140434 -0.736718 -0.723002 0.149889 -0.674389 0.158313 0.986150 0.049456 0.672462 -0.071008 -0.736718 -0.734730 0.073288 -0.674389 0.054085 0.997311 0.049456 0.676200 -0.000138 -0.736718 -0.738364 -0.004121 -0.674389 -0.050738 0.997487 0.049456 0.672491 0.070734 -0.736718 -0.733866 -0.081484 -0.674389 -0.155002 0.986675 0.049456 0.661373 0.140826 -0.736718 -0.721442 -0.157228 -0.674389 -0.256594 0.965253 0.049456 0.643180 0.208724 -0.736718 -0.700990 -0.231974 -0.674389 -0.356346 0.933044 0.049456 0.617762 0.274984 -0.736718 -0.672817 -0.304166 -0.674389 -0.452173 0.890558 0.049456 0.585540 0.338216 -0.736718 -0.637232 -0.373006 -0.674389 -0.543020 0.838262 0.049456 0.546868 0.397722 -0.736718 -0.595067 -0.437144 -0.674389 -0.627108 0.777361 0.049456 0.502624 0.452345 -0.736718 -0.545974 -0.497104 -0.674389 -0.705127 0.707354 0.049456 0.452447 0.502532 -0.736718 -0.490867 -0.551588 -0.674389 -0.775380 0.629556 0.049456 0.397286 0.547184 -0.736718 -0.430953 -0.599566 -0.674389 -0.836546 0.545660 0.049456 0.338335 0.585471 -0.736718 -0.365740 -0.641430 -0.674389 -0.889128 0.454979 0.049456 0.275110 0.617706 -0.736718 -0.296500 -0.676230 -0.674389 -0.931916 0.359286 0.049456 0.208855 0.643138 -0.736718 -0.223993 -0.703581 -0.674389 -0.964439 0.259636 0.049456 0.140299 0.661485 -0.736718 -0.149742 -0.723033 -0.674389 -0.986182 0.158112 0.049456 0.070871 0.672476 -0.736718 -0.073138 -0.734745 -0.674389 -0.997322 0.053882 0.049456 0.000000 0.676200 -0.736718 0.004271 -0.738364 -0.674389 -0.997476 -0.050941 0.049456 -0.070871 0.672476 -0.736718 0.080899 -0.733931 -0.674389 -0.986799 -0.154216 0.049456 -0.140299 0.661485 -0.736718 0.157375 -0.721410 -0.674389 -0.965201 -0.256791 0.049456 -0.208855 0.643138 -0.736718 0.232117 -0.700943 -0.674389 -0.932972 -0.356536 0.049456 -0.275110 0.617706 -0.736718 0.304303 -0.672755 -0.674389 -0.890466 -0.452355 0.049456 -0.338335 0.585471 -0.736718 0.372499 -0.637529 -0.674389 -0.838694 -0.542352 0.049456 -0.397286 0.547184 -0.736718 0.437265 -0.594978 -0.674389 -0.777233 -0.627266 0.049456 -0.452447 0.502532 -0.736718 0.497215 -0.545872 -0.674389 -0.707210 -0.705271 0.049456 -0.502624 0.452345 -0.736718 0.551197 -0.491306 -0.674389 -0.630173 -0.774878 0.049456 -0.546868 0.397722 -0.736718 0.599653 -0.430831 -0.674389 -0.545490 -0.836657 0.049456 -0.585540 0.338216 -0.736718 0.641505 -0.365610 -0.674389 -0.454798 -0.889220 0.049456 -0.617762 0.274984 -0.736718 0.676290 -0.296362 -0.674389 -0.359096 -0.931989 0.049456 -0.643180 0.208724 -0.736718 0.703402 -0.224553 -0.674389 -0.260404 -0.964232 0.049456 -0.661373 0.140826 -0.736718 0.723063 -0.149595 -0.674389 -0.157911 -0.986214 0.049456 -0.672491 0.070734 -0.736718 0.030311 -0.999249 -0.024128 -0.779748 -0.038742 0.624894 -0.625360 -0.000127 -0.780336 0.134873 -0.990569 -0.024128 -0.771393 -0.120252 0.624894 -0.621902 -0.065669 -0.780336 0.236978 -0.971215 -0.024128 -0.754741 -0.199682 0.624894 -0.611725 -0.129875 -0.780336 0.337463 -0.941030 -0.024128 -0.729656 -0.277685 0.624894 -0.594744 -0.193273 -0.780336 0.434231 -0.900478 -0.024128 -0.696534 -0.352629 0.624894 -0.571212 -0.254542 -0.780336 0.525366 -0.850534 -0.024128 -0.656164 -0.423033 0.624894 -0.541701 -0.312466 -0.780336 0.611614 -0.790788 -0.024128 -0.608213 -0.489473 0.624894 -0.505969 -0.367519 -0.780336 0.691126 -0.722331 -0.024128 -0.553563 -0.550523 0.624894 -0.464664 -0.418524 -0.780336 0.763025 -0.645918 -0.024128 -0.492816 -0.605508 0.624894 -0.418240 -0.464919 -0.780336 0.825957 -0.563216 -0.024128 -0.427293 -0.653397 0.624894 -0.367716 -0.505826 -0.780336 0.880437 -0.473548 -0.024128 -0.356459 -0.694582 0.624894 -0.312677 -0.541579 -0.780336 0.925220 -0.378664 -0.024128 -0.281699 -0.728116 0.624894 -0.254193 -0.571367 -0.780336 0.959531 -0.280569 -0.024128 -0.204590 -0.753426 0.624894 -0.193505 -0.594669 -0.780336 0.983652 -0.178458 -0.024128 -0.124498 -0.770719 0.624894 -0.130113 -0.611674 -0.780336 0.996938 -0.074381 -0.024128 -0.043036 -0.779522 0.624894 -0.065289 -0.621942 -0.780336 0.999268 0.029701 -0.024128 0.038266 -0.779771 0.624894 -0.000255 -0.625360 -0.780336 0.990651 0.134268 -0.024128 0.119780 -0.771466 0.624894 0.065289 -0.621942 -0.780336 0.971123 0.237356 -0.024128 0.199976 -0.754663 0.624894 0.130113 -0.611674 -0.780336 0.940898 0.337829 -0.024128 0.277969 -0.729548 0.624894 0.193505 -0.594669 -0.780336 0.900743 0.433681 -0.024128 0.352203 -0.696750 0.624894 0.254193 -0.571367 -0.780336 0.850330 0.525697 -0.024128 0.423288 -0.655999 0.624894 0.312677 -0.541579 -0.780336 0.790550 0.611922 -0.024128 0.489710 -0.608023 0.624894 0.367716 -0.505826 -0.780336 0.722753 0.690685 -0.024128 0.550184 -0.553899 0.624894 0.418240 -0.464919 -0.780336 0.646384 0.762631 -0.024128 0.605207 -0.493185 0.624894 0.464664 -0.418524 -0.780336 0.562895 0.826176 -0.024128 0.653563 -0.427039 0.624894 0.505969 -0.367519 -0.780336 0.473206 0.880621 -0.024128 0.694720 -0.356189 0.624894 0.541701 -0.312466 -0.780336 0.379229 0.924988 -0.024128 0.727944 -0.282144 0.624894 0.571212 -0.254542 -0.780336 0.280195 0.959640 -0.024128 0.753505 -0.204296 0.624894 0.594744 -0.193273 -0.780336 0.178075 0.983721 -0.024128 0.770767 -0.124198 0.624894 0.611725 -0.129875 -0.780336 0.074990 0.996892 -0.024128 0.779496 -0.043512 0.624894 0.621902 -0.065669 -0.780336 -0.029904 0.999261 -0.024128 0.779763 0.038424 0.624894 0.625360 -0.000127 -0.780336 -0.134469 0.990624 -0.024128 0.771442 0.119938 0.624894 0.621929 0.065416 -0.780336 -0.237553 0.971075 -0.024128 0.754623 0.200130 0.624894 0.611648 0.130238 -0.780336 -0.337080 0.941167 -0.024128 0.729769 0.277388 0.624894 0.594823 0.193031 -0.780336 -0.433864 0.900655 -0.024128 0.696678 0.352345 0.624894 0.571316 0.254310 -0.780336 -0.525870 0.850223 -0.024128 0.655913 0.423421 0.624894 0.541516 0.312787 -0.780336 -0.612083 0.790425 -0.024128 0.607923 0.489834 0.624894 0.505751 0.367819 -0.780336 -0.690832 0.722613 -0.024128 0.553787 0.550297 0.624894 0.464834 0.418335 -0.780336 -0.762762 0.646229 -0.024128 0.493062 0.605307 0.624894 0.418430 0.464749 -0.780336 -0.826291 0.562727 -0.024128 0.426906 0.653650 0.624894 0.367416 0.506044 -0.780336 -0.880244 0.473907 -0.024128 0.356742 0.694437 0.624894 0.312897 0.541452 -0.780336 -0.925065 0.379041 -0.024128 0.281996 0.728001 0.624894 0.254426 0.571264 -0.780336 -0.959697 0.280000 -0.024128 0.204143 0.753547 0.624894 0.193152 0.594783 -0.780336 -0.983757 0.177875 -0.024128 0.124042 0.770792 0.624894 0.129751 0.611751 -0.780336 -0.996908 0.074787 -0.024128 0.043353 0.779505 0.624894 0.065542 0.621916 -0.780336 -0.999255 -0.030108 -0.024128 -0.038583 0.779755 0.624894 0.000000 0.625360 -0.780336 -0.990597 -0.134671 -0.024128 -0.120095 0.771417 0.624894 -0.065542 0.621916 -0.780336 -0.971264 -0.236780 -0.024128 -0.199529 0.754782 0.624894 -0.129751 0.611751 -0.780336 -0.941098 -0.337271 -0.024128 -0.277536 0.729713 0.624894 -0.193152 0.594783 -0.780336 -0.900567 -0.434048 -0.024128 -0.352487 0.696606 0.624894 -0.254426 0.571264 -0.780336 -0.850116 -0.526043 -0.024128 -0.423555 0.655827 0.624894 -0.312897 0.541452 -0.780336 -0.790912 -0.611453 -0.024128 -0.489349 0.608313 0.624894 -0.367416 0.506044 -0.780336 -0.722472 -0.690979 -0.024128 -0.550410 0.553675 0.624894 -0.418430 0.464749 -0.780336 -0.646073 -0.762894 -0.024128 -0.605408 0.492939 0.624894 -0.464834 0.418335 -0.780336 -0.563384 -0.825842 -0.024128 -0.653310 0.427427 0.624894 -0.505751 0.367819 -0.780336 -0.473727 -0.880341 -0.024128 -0.694509 0.356601 0.624894 -0.541516 0.312787 -0.780336 -0.378852 -0.925143 -0.024128 -0.728059 0.281848 0.624894 -0.571316 0.254310 -0.780336 -0.279804 -0.959754 -0.024128 -0.753588 0.203989 0.624894 -0.594823 0.193031 -0.780336 -0.178658 -0.983615 -0.024128 -0.770693 0.124655 0.624894 -0.611648 0.130238 -0.780336 -0.074584 -0.996923 -0.024128 -0.779514 0.043195 0.624894 -0.621929 0.065416 -0.780336 -0.569945 -0.307273 0.762067 -0.184169 0.951622 0.245964 -0.800778 -0.000163 -0.598962 -0.534601 -0.365315 0.762067 -0.282891 0.927078 0.245964 -0.796350 -0.084089 -0.598962 -0.493789 -0.418839 0.762067 -0.377605 0.892702 0.245964 -0.783318 -0.166306 -0.598962 -0.447172 -0.468285 0.762067 -0.469087 0.848209 0.245964 -0.761574 -0.247488 -0.598962 -0.395629 -0.512573 0.762067 -0.555402 0.794374 0.245964 -0.731441 -0.325943 -0.598962 -0.340280 -0.550875 0.762067 -0.634867 0.732424 0.245964 -0.693652 -0.400115 -0.598962 -0.280671 -0.583504 0.762067 -0.708134 0.661852 0.245964 -0.647897 -0.470611 -0.598962 -0.217969 -0.609707 0.762067 -0.773601 0.583989 0.245964 -0.595005 -0.535923 -0.598962 -0.152867 -0.629194 0.762067 -0.830546 0.499694 0.245964 -0.535560 -0.595333 -0.598962 -0.086723 -0.641664 0.762067 -0.877934 0.410773 0.245964 -0.470863 -0.647714 -0.598962 -0.018994 -0.647219 0.762067 -0.916150 0.316497 0.245964 -0.400385 -0.693496 -0.598962 0.048944 -0.645645 0.762067 -0.944276 0.218735 0.245964 -0.325496 -0.731640 -0.598962 0.115705 -0.637076 0.762067 -0.961881 0.119525 0.245964 -0.247784 -0.761478 -0.598962 0.181838 -0.621440 0.762067 -0.969111 0.018055 0.245964 -0.166611 -0.783253 -0.598962 0.245968 -0.598960 0.762067 -0.965666 -0.083614 0.245964 -0.083603 -0.796402 -0.598962 0.306924 -0.570132 0.762067 -0.951734 -0.183587 0.245964 -0.000326 -0.800778 -0.598962 0.364988 -0.534824 0.762067 -0.927251 -0.282325 0.245964 0.083603 -0.796402 -0.598962 0.419031 -0.493626 0.762067 -0.892555 -0.377952 0.245964 0.166611 -0.783253 -0.598962 0.468459 -0.446989 0.762067 -0.848027 -0.469417 0.245964 0.247784 -0.761478 -0.598962 0.512331 -0.395942 0.762067 -0.794713 -0.554917 0.245964 0.325496 -0.731640 -0.598962 0.551007 -0.340066 0.762067 -0.732177 -0.635152 0.245964 0.400385 -0.693496 -0.598962 0.583614 -0.280443 0.762067 -0.661576 -0.708391 0.245964 0.470863 -0.647714 -0.598962 0.609574 -0.218342 0.762067 -0.584462 -0.773244 0.245964 0.535560 -0.595333 -0.598962 0.629100 -0.153251 0.762067 -0.500201 -0.830241 0.245964 0.595005 -0.535923 -0.598962 0.641698 -0.086473 0.762067 -0.410431 -0.878093 0.245964 0.647897 -0.470611 -0.598962 0.647226 -0.018743 0.762067 -0.316141 -0.916273 0.245964 0.693652 -0.400115 -0.598962 0.645675 0.048549 0.762067 -0.219312 -0.944142 0.245964 0.731441 -0.325943 -0.598962 0.637031 0.115953 0.762067 -0.119151 -0.961928 0.245964 0.761574 -0.247488 -0.598962 0.621370 0.182080 0.762067 -0.017678 -0.969118 0.245964 0.783318 -0.166306 -0.598962 0.599110 0.245602 0.762067 0.083024 -0.965717 0.245964 0.796350 -0.084089 -0.598962 0.570070 0.307040 0.762067 0.183781 -0.951696 0.245964 0.800778 -0.000163 -0.598962 0.534750 0.365097 0.762067 0.282514 -0.927193 0.245964 0.796385 0.083765 -0.598962 0.493540 0.419132 0.762067 0.378134 -0.892478 0.245964 0.783219 0.166771 -0.598962 0.447362 0.468103 0.762067 0.468742 -0.848400 0.245964 0.761675 0.247178 -0.598962 0.395838 0.512412 0.762067 0.555078 -0.794600 0.245964 0.731574 0.325645 -0.598962 0.339954 0.551076 0.762067 0.635301 -0.732048 0.245964 0.693415 0.400526 -0.598962 0.280325 0.583671 0.762067 0.708526 -0.661432 0.245964 0.647618 0.470995 -0.598962 0.218218 0.609618 0.762067 0.773363 -0.584304 0.245964 0.595223 0.535681 -0.598962 0.153123 0.629132 0.762067 0.830343 -0.500032 0.245964 0.535802 0.595114 -0.598962 0.086343 0.641715 0.762067 0.878177 -0.410253 0.245964 0.470479 0.647993 -0.598962 0.019258 0.647211 0.762067 0.916021 -0.316870 0.245964 0.400667 0.693333 -0.598962 -0.048681 0.645665 0.762067 0.944187 -0.219119 0.245964 0.325794 0.731507 -0.598962 -0.116083 0.637007 0.762067 0.961952 -0.118955 0.245964 0.247333 0.761624 -0.598962 -0.182206 0.621333 0.762067 0.969121 -0.017480 0.245964 0.166147 0.783352 -0.598962 -0.245724 0.599060 0.762067 0.965700 0.083221 0.245964 0.083927 0.796368 -0.598962 -0.307157 0.570007 0.762067 0.951659 0.183975 0.245964 0.000000 0.800778 -0.598962 -0.365206 0.534676 0.762067 0.927136 0.282702 0.245964 -0.083927 0.796368 -0.598962 -0.418739 0.493874 0.762067 0.892778 0.377423 0.245964 -0.166147 0.783352 -0.598962 -0.468194 0.447267 0.762067 0.848305 0.468914 0.245964 -0.247333 0.761624 -0.598962 -0.512492 0.395734 0.762067 0.794487 0.555240 0.245964 -0.325794 0.731507 -0.598962 -0.551145 0.339841 0.762067 0.731919 0.635450 0.245964 -0.400667 0.693333 -0.598962 -0.583447 0.280789 0.762067 0.661996 0.707999 0.245964 -0.470479 0.647993 -0.598962 -0.609663 0.218093 0.762067 0.584147 0.773482 0.245964 -0.535802 0.595114 -0.598962 -0.629163 0.152995 0.762067 0.499863 0.830445 0.245964 -0.595223 0.535681 -0.598962 -0.641646 0.086854 0.762067 0.410952 0.877850 0.245964 -0.647618 0.470995 -0.598962 -0.647215 0.019126 0.762067 0.316683 0.916086 0.245964 -0.693415 0.400526 -0.598962 -0.645655 -0.048812 0.762067 0.218927 0.944231 0.245964 -0.731574 0.325645 -0.598962 -0.636984 -0.116212 0.762067 0.118759 0.961976 0.245964 -0.761675 0.247178 -0.598962 -0.621477 -0.181711 0.762067 0.018252 0.969107 0.245964 -0.783219 0.166771 -0.598962 -0.599010 -0.245846 0.762067 -0.083418 0.965683 0.245964 -0.796385 0.083765 -0.598962 0.370191 -0.654941 0.658795 0.320636 0.755680 0.571086 -0.871866 -0.000178 0.489744 0.436795 -0.612535 0.658795 0.239670 0.785123 0.571086 -0.867046 -0.091554 0.489744 0.498024 -0.563880 0.658795 0.156869 0.805762 0.571086 -0.852857 -0.181070 0.489744 0.554380 -0.508578 0.658795 0.071555 0.817765 0.571086 -0.829182 -0.269458 0.489744 0.604629 -0.447674 0.658795 -0.014546 0.820761 0.571086 -0.796374 -0.354878 0.489744 0.647837 -0.382487 0.658795 -0.099673 0.814816 0.571086 -0.755230 -0.435635 0.489744 0.684356 -0.312483 0.658795 -0.184523 0.799882 0.571086 -0.705413 -0.512389 0.489744 0.713337 -0.239037 0.658795 -0.267340 0.776138 0.571086 -0.647826 -0.583499 0.489744 0.734462 -0.162957 0.658795 -0.347212 0.743844 0.571086 -0.583104 -0.648183 0.489744 0.747410 -0.085830 0.658795 -0.422557 0.703780 0.571086 -0.512663 -0.705214 0.489744 0.752290 -0.007024 0.658795 -0.493991 0.655617 0.571086 -0.435928 -0.755061 0.489744 0.748882 0.071860 0.658795 -0.559983 0.600232 0.571086 -0.354392 -0.796591 0.489744 0.737376 0.149215 0.658795 -0.619269 0.538856 0.571086 -0.269781 -0.829077 0.489744 0.717676 0.225676 0.658795 -0.672335 0.470984 0.571086 -0.181402 -0.852786 0.489744 0.690071 0.299651 0.658795 -0.717995 0.397925 0.571086 -0.091025 -0.867102 0.489744 0.655167 0.369791 0.658795 -0.755484 0.321098 0.571086 -0.000355 -0.871866 0.489744 0.612802 0.436421 0.658795 -0.784977 0.240149 0.571086 0.091025 -0.867102 0.489744 0.563687 0.498243 0.658795 -0.805823 0.156556 0.571086 0.181402 -0.852786 0.489744 0.508363 0.554578 0.658795 -0.817793 0.071237 0.571086 0.269781 -0.829077 0.489744 0.448044 0.604356 0.658795 -0.820770 -0.014045 0.571086 0.354392 -0.796591 0.489744 0.382235 0.647985 0.658795 -0.814778 -0.099990 0.571086 0.435928 -0.755061 0.489744 0.312217 0.684478 0.658795 -0.799811 -0.184834 0.571086 0.512663 -0.705214 0.489744 0.239472 0.713191 0.658795 -0.776301 -0.266866 0.571086 0.583104 -0.648183 0.489744 0.163406 0.734362 0.658795 -0.744056 -0.346758 0.571086 0.647826 -0.583499 0.489744 0.085540 0.747444 0.658795 -0.703616 -0.422831 0.571086 0.705413 -0.512389 0.489744 0.006731 0.752292 0.658795 -0.655425 -0.494246 0.571086 0.755230 -0.435635 0.489744 -0.071403 0.748926 0.658795 -0.600575 -0.559617 0.571086 0.796374 -0.354878 0.489744 -0.149502 0.737318 0.658795 -0.538615 -0.619479 0.571086 0.829182 -0.269458 0.489744 -0.225955 0.717588 0.658795 -0.470723 -0.672518 0.571086 0.852857 -0.181070 0.489744 -0.299229 0.690254 0.658795 -0.398364 -0.717751 0.571086 0.867046 -0.091554 0.489744 -0.369925 0.655091 0.658795 -0.320944 -0.755550 0.571086 0.871866 -0.000178 0.489744 -0.436546 0.612713 0.658795 -0.239990 -0.785026 0.571086 0.867083 0.091201 0.489744 -0.498358 0.563585 0.658795 -0.156391 -0.805855 0.571086 0.852749 0.181576 0.489744 -0.554173 0.508804 0.658795 -0.071889 -0.817736 0.571086 0.829292 0.269121 0.489744 -0.604447 0.447921 0.658795 0.014212 -0.820767 0.571086 0.796519 0.354554 0.489744 -0.648063 0.382103 0.658795 0.100156 -0.814757 0.571086 0.754972 0.436082 0.489744 -0.684541 0.312077 0.658795 0.184997 -0.799773 0.571086 0.705110 0.512807 0.489744 -0.713240 0.239327 0.658795 0.267024 -0.776247 0.571086 0.648064 0.583236 0.489744 -0.734395 0.163256 0.658795 0.346909 -0.743985 0.571086 0.583368 0.647945 0.489744 -0.747461 0.085387 0.658795 0.422974 -0.703529 0.571086 0.512245 0.705518 0.489744 -0.752287 0.007330 0.658795 0.493724 -0.655818 0.571086 0.436236 0.754883 0.489744 -0.748912 -0.071555 0.658795 0.559739 -0.600461 0.571086 0.354716 0.796447 0.489744 -0.737288 -0.149652 0.658795 0.619589 -0.538489 0.571086 0.269289 0.829237 0.489744 -0.717542 -0.226101 0.658795 0.672614 -0.470586 0.571086 0.180896 0.852893 0.489744 -0.690193 -0.299370 0.658795 0.717832 -0.398217 0.571086 0.091378 0.867064 0.489744 -0.655016 -0.370058 0.658795 0.755615 -0.320790 0.571086 0.000000 0.871866 0.489744 -0.612624 -0.436670 0.658795 0.785075 -0.239830 0.571086 -0.091378 0.867064 0.489744 -0.563982 -0.497909 0.658795 0.805730 -0.157033 0.571086 -0.180896 0.852893 0.489744 -0.508691 -0.554276 0.658795 0.817751 -0.071722 0.571086 -0.269289 0.829237 0.489744 -0.447798 -0.604538 0.658795 0.820764 0.014379 0.571086 -0.354716 0.796447 0.489744 -0.381971 -0.648141 0.658795 0.814737 0.100322 0.571086 -0.436236 0.754883 0.489744 -0.312622 -0.684292 0.658795 0.799920 0.184360 0.571086 -0.512245 0.705518 0.489744 -0.239182 -0.713289 0.658795 0.776192 0.267182 0.571086 -0.583368 0.647945 0.489744 -0.163107 -0.734428 0.658795 0.743915 0.347061 0.571086 -0.648064 0.583236 0.489744 -0.085983 -0.747393 0.658795 0.703866 0.422413 0.571086 -0.705110 0.512807 0.489744 -0.007177 -0.752288 0.658795 0.655718 0.493857 0.571086 -0.754972 0.436082 0.489744 0.071708 -0.748897 0.658795 0.600347 0.559861 0.571086 -0.796519 0.354554 0.489744 0.149803 -0.737257 0.658795 0.538363 0.619698 0.571086 -0.829292 0.269121 0.489744 0.225530 -0.717722 0.658795 0.471121 0.672239 0.571086 -0.852749 0.181576 0.489744 0.299510 -0.690132 0.658795 0.398071 0.717914 0.571086 -0.867083 0.091201 0.489744 0.114802 0.972304 -0.203579 0.478256 -0.233718 -0.846550 -0.870685 -0.000177 -0.491842 0.012265 0.978982 -0.203579 0.500117 -0.182306 -0.846550 -0.865871 -0.091430 -0.491842 -0.089432 0.974965 -0.203579 0.516341 -0.129403 -0.846550 -0.851701 -0.180825 -0.491842 -0.191122 0.960223 -0.203579 0.527059 -0.074574 -0.846550 -0.828058 -0.269093 -0.491842 -0.290708 0.934903 -0.203579 0.531973 -0.018923 -0.846550 -0.795295 -0.354398 -0.491842 -0.386192 0.899673 -0.203579 0.531063 0.036404 -0.846550 -0.754207 -0.435044 -0.491842 -0.478357 0.854242 -0.203579 0.524322 0.091863 -0.846550 -0.704458 -0.511695 -0.491842 -0.565253 0.799402 -0.203579 0.511807 0.146310 -0.846550 -0.646948 -0.582709 -0.491842 -0.645923 0.735757 -0.203579 0.493654 0.199145 -0.846550 -0.582313 -0.647304 -0.491842 -0.718814 0.664727 -0.203579 0.470313 0.249317 -0.846550 -0.511969 -0.704258 -0.491842 -0.784524 0.585729 -0.203579 0.441592 0.297236 -0.846550 -0.435338 -0.754038 -0.491842 -0.841591 0.500279 -0.203579 0.408008 0.341881 -0.846550 -0.353912 -0.795511 -0.491842 -0.888979 0.410208 -0.203579 0.370312 0.382390 -0.846550 -0.269415 -0.827954 -0.491842 -0.927076 0.314778 -0.203579 0.328195 0.419095 -0.846550 -0.181156 -0.851630 -0.491842 -0.954961 0.215880 -0.203579 0.282464 0.451184 -0.846550 -0.090901 -0.865927 -0.491842 -0.972234 0.115396 -0.203579 0.234010 0.478113 -0.846550 -0.000355 -0.870685 -0.491842 -0.978974 0.012864 -0.203579 0.182612 0.500006 -0.846550 0.090901 -0.865927 -0.491842 -0.974930 -0.089811 -0.203579 0.129202 0.516391 -0.846550 0.181156 -0.851630 -0.491842 -0.960148 -0.191496 -0.203579 0.074369 0.527088 -0.846550 0.269415 -0.827954 -0.491842 -0.935081 -0.290137 -0.203579 0.019248 0.531961 -0.846550 0.353912 -0.795511 -0.491842 -0.899522 -0.386542 -0.203579 -0.036611 0.531048 -0.846550 0.435338 -0.754038 -0.491842 -0.854056 -0.478689 -0.203579 -0.092067 0.524287 -0.846550 0.511969 -0.704258 -0.491842 -0.799747 -0.564765 -0.203579 -0.145997 0.511896 -0.846550 0.582313 -0.647304 -0.491842 -0.736151 -0.645474 -0.203579 -0.198843 0.493775 -0.846550 0.646948 -0.582709 -0.491842 -0.664447 -0.719073 -0.203579 -0.249499 0.470216 -0.846550 0.704458 -0.511695 -0.491842 -0.585424 -0.784751 -0.203579 -0.297407 0.441477 -0.846550 0.754207 -0.435044 -0.491842 -0.500793 -0.841286 -0.203579 -0.341631 0.408217 -0.846550 0.795295 -0.354398 -0.491842 -0.409862 -0.889139 -0.203579 -0.382534 0.370163 -0.846550 0.828058 -0.269093 -0.491842 -0.314417 -0.927199 -0.203579 -0.419223 0.328032 -0.846550 0.851701 -0.180825 -0.491842 -0.216463 -0.954829 -0.203579 -0.451012 0.282739 -0.846550 0.865871 -0.091430 -0.491842 -0.115198 -0.972258 -0.203579 -0.478161 0.233913 -0.846550 0.870685 -0.000177 -0.491842 -0.012664 -0.978976 -0.203579 -0.500043 0.182510 -0.846550 0.865908 0.091078 -0.491842 0.090009 -0.974912 -0.203579 -0.516417 0.129097 -0.846550 0.851593 0.181329 -0.491842 0.190731 -0.960300 -0.203579 -0.527029 0.074788 -0.846550 0.828168 0.268756 -0.491842 0.290327 -0.935022 -0.203579 -0.531965 0.019140 -0.846550 0.795439 0.354074 -0.491842 0.386725 -0.899444 -0.203579 -0.531041 -0.036719 -0.846550 0.753949 0.435491 -0.491842 0.478863 -0.853959 -0.203579 -0.524268 -0.092174 -0.846550 0.704154 0.512112 -0.491842 0.564928 -0.799632 -0.203579 -0.511866 -0.146101 -0.846550 0.647186 0.582445 -0.491842 0.645624 -0.736020 -0.203579 -0.493735 -0.198944 -0.846550 0.582577 0.647067 -0.491842 0.719208 -0.664301 -0.203579 -0.470165 -0.249595 -0.846550 0.511551 0.704562 -0.491842 0.784285 -0.586048 -0.203579 -0.441713 -0.297056 -0.846550 0.435645 0.753860 -0.491842 0.841388 -0.500622 -0.203579 -0.408147 -0.341714 -0.846550 0.354236 0.795367 -0.491842 0.889222 -0.409681 -0.203579 -0.370085 -0.382609 -0.846550 0.268924 0.828113 -0.491842 0.927263 -0.314228 -0.203579 -0.327947 -0.419290 -0.846550 0.180651 0.851738 -0.491842 0.954873 -0.216269 -0.203579 -0.282647 -0.451069 -0.846550 0.091254 0.865889 -0.491842 0.972281 -0.115000 -0.203579 -0.233815 -0.478208 -0.846550 0.000000 0.870685 -0.491842 0.978979 -0.012465 -0.203579 -0.182408 -0.500080 -0.846550 -0.091254 0.865889 -0.491842 0.974984 0.089233 -0.203579 -0.129508 -0.516314 -0.846550 -0.180651 0.851738 -0.491842 0.960262 0.190927 -0.203579 -0.074681 -0.527044 -0.846550 -0.268924 0.828113 -0.491842 0.934963 0.290518 -0.203579 -0.019032 -0.531969 -0.846550 -0.354236 0.795367 -0.491842 0.899365 0.386908 -0.203579 0.036827 -0.531034 -0.846550 -0.435645 0.753860 -0.491842 0.854340 0.478183 -0.203579 0.091756 -0.524341 -0.846550 -0.511551 0.704562 -0.491842 0.799517 0.565091 -0.203579 0.146206 -0.511837 -0.846550 -0.582577 0.647067 -0.491842 0.735889 0.645774 -0.203579 0.199044 -0.493694 -0.846550 -0.647186 0.582445 -0.491842 0.664873 0.718679 -0.203579 0.249221 -0.470364 -0.846550 -0.704154 0.512112 -0.491842 0.585889 0.784404 -0.203579 0.297146 -0.441653 -0.846550 -0.753949 0.435491 -0.491842 0.500451 0.841489 -0.203579 0.341798 -0.408078 -0.846550 -0.795439 0.354074 -0.491842 0.409500 0.889306 -0.203579 0.382685 -0.370007 -0.846550 -0.828168 0.268756 -0.491842 0.314967 0.927012 -0.203579 0.419028 -0.328281 -0.846550 -0.851593 0.181329 -0.491842 0.216074 0.954917 -0.203579 0.451127 -0.282555 -0.846550 -0.865908 0.091078 -0.491842 0.333039 0.846791 0.414764 -0.530410 0.531925 -0.660091 -0.779583 -0.000159 0.626299 0.242455 0.877033 0.414764 -0.583239 0.473405 -0.660091 -0.775273 -0.081864 0.626299 0.150098 0.897464 0.414764 -0.629233 0.410299 -0.660091 -0.762586 -0.161905 0.626299 0.055211 0.908252 0.414764 -0.668770 0.342092 -0.660091 -0.741417 -0.240937 0.626299 -0.040285 0.909037 0.414764 -0.700940 0.270116 -0.660091 -0.712082 -0.317316 0.626299 -0.134436 0.899943 0.414764 -0.725194 0.195890 -0.660091 -0.675293 -0.389525 0.626299 -0.228016 0.880897 0.414764 -0.741731 0.118806 -0.660091 -0.630749 -0.458155 0.626299 -0.319085 0.852148 0.414764 -0.750097 0.040413 -0.660091 -0.579257 -0.521739 0.626299 -0.406639 0.814012 0.414764 -0.750202 -0.038426 -0.660091 -0.521385 -0.579576 0.626299 -0.488946 0.767400 0.414764 -0.742159 -0.116099 -0.660091 -0.458400 -0.630570 0.626299 -0.566683 0.711928 0.414764 -0.725904 -0.193243 -0.660091 -0.389787 -0.675141 0.626299 -0.638177 0.648615 0.414764 -0.701653 -0.268258 -0.660091 -0.316881 -0.712275 0.626299 -0.702063 0.578860 0.414764 -0.670013 -0.339649 -0.660091 -0.241226 -0.741323 0.626299 -0.758865 0.502090 0.414764 -0.630725 -0.408001 -0.660091 -0.162201 -0.762523 0.626299 -0.807308 0.419790 0.414764 -0.584490 -0.471858 -0.660091 -0.081390 -0.775323 0.626299 -0.846588 0.333557 0.414764 -0.532249 -0.530085 -0.660091 -0.000318 -0.779583 0.626299 -0.876884 0.242991 0.414764 -0.473761 -0.582949 -0.660091 0.081390 -0.775323 0.626299 -0.897522 0.149749 0.414764 -0.410055 -0.629392 -0.660091 0.162201 -0.762523 0.626299 -0.908274 0.054857 0.414764 -0.341831 -0.668903 -0.660091 0.241226 -0.741323 0.626299 -0.909061 -0.039729 0.414764 -0.270544 -0.700775 -0.660091 0.316881 -0.712275 0.626299 -0.899891 -0.134786 0.414764 -0.195608 -0.725270 -0.660091 0.389787 -0.675141 0.626299 -0.880808 -0.228359 0.414764 -0.118517 -0.741777 -0.660091 0.458400 -0.630570 0.626299 -0.852342 -0.318564 0.414764 -0.040871 -0.750073 -0.660091 0.521385 -0.579576 0.626299 -0.814260 -0.406141 0.414764 0.037967 -0.750225 -0.660091 0.579257 -0.521739 0.626299 -0.767209 -0.489245 0.414764 0.116387 -0.742114 -0.660091 0.630749 -0.458155 0.626299 -0.711708 -0.566959 0.414764 0.193525 -0.725829 -0.660091 0.675293 -0.389525 0.626299 -0.649005 -0.637780 0.414764 0.267830 -0.701817 -0.660091 0.712082 -0.317316 0.626299 -0.578586 -0.702288 0.414764 0.339910 -0.669881 -0.660091 0.741417 -0.240937 0.626299 -0.501795 -0.759060 0.414764 0.408246 -0.630567 -0.660091 0.762586 -0.161905 0.626299 -0.420284 -0.807052 0.414764 0.471501 -0.584779 -0.660091 0.775273 -0.081864 0.626299 -0.333384 -0.846656 0.414764 0.530194 -0.532141 -0.660091 0.779583 -0.000159 0.626299 -0.242812 -0.876934 0.414764 0.583046 -0.473642 -0.660091 0.775306 0.081548 0.626299 -0.149566 -0.897553 0.414764 0.629476 -0.409926 -0.660091 0.762489 0.162357 0.626299 -0.055581 -0.908230 0.414764 0.668630 -0.342364 -0.660091 0.741515 0.240635 0.626299 0.039914 -0.909053 0.414764 0.700830 -0.270401 -0.660091 0.712211 0.317026 0.626299 0.134970 -0.899863 0.414764 0.725310 -0.195460 -0.660091 0.675062 0.389925 0.626299 0.228539 -0.880762 0.414764 0.741801 -0.118366 -0.660091 0.630477 0.458529 0.626299 0.318738 -0.852277 0.414764 0.750081 -0.040718 -0.660091 0.579469 0.521503 0.626299 0.406307 -0.814178 0.414764 0.750217 0.038120 -0.660091 0.521621 0.579363 0.626299 0.489401 -0.767110 0.414764 0.742090 0.116538 -0.660091 0.458027 0.630842 0.626299 0.566393 -0.712159 0.414764 0.725983 0.192947 -0.660091 0.390062 0.674982 0.626299 0.637913 -0.648875 0.414764 0.701762 0.267973 -0.660091 0.317171 0.712146 0.626299 0.702406 -0.578443 0.414764 0.669812 0.340046 -0.660091 0.240786 0.741466 0.626299 0.759162 -0.501640 0.414764 0.630484 0.408375 -0.660091 0.161749 0.762619 0.626299 0.807137 -0.420119 0.414764 0.584682 0.471620 -0.660091 0.081706 0.775290 0.626299 0.846723 -0.333212 0.414764 0.532033 0.530302 -0.660091 0.000000 0.779583 0.626299 0.876983 -0.242634 0.414764 0.473524 0.583142 -0.660091 -0.081706 0.775290 0.626299 0.897433 -0.150281 0.414764 0.410428 0.629149 -0.660091 -0.161749 0.762619 0.626299 0.908241 -0.055396 0.414764 0.342228 0.668700 -0.660091 -0.240786 0.741466 0.626299 0.909045 0.040099 0.414764 0.270259 0.700885 -0.660091 -0.317171 0.712146 0.626299 0.899836 0.135153 0.414764 0.195312 0.725350 -0.660091 -0.390062 0.674982 0.626299 0.880943 0.227837 0.414764 0.118957 0.741707 -0.660091 -0.458027 0.630842 0.626299 0.852213 0.318911 0.414764 0.040565 0.750089 -0.660091 -0.521621 0.579363 0.626299 0.814095 0.406473 0.414764 -0.038273 0.750210 -0.660091 -0.579469 0.521503 0.626299 0.767499 0.488790 0.414764 -0.115947 0.742183 -0.660091 -0.630477 0.458529 0.626299 0.712043 0.566538 0.414764 -0.193095 0.725943 -0.660091 -0.675062 0.389925 0.626299 0.648745 0.638045 0.414764 -0.268115 0.701708 -0.660091 -0.712211 0.317026 0.626299 0.578300 0.702524 0.414764 -0.340183 0.669742 -0.660091 -0.741515 0.240635 0.626299 0.502245 0.758763 0.414764 -0.407872 0.630809 -0.660091 -0.762489 0.162357 0.626299 0.419955 0.807223 0.414764 -0.471739 0.584586 -0.660091 -0.775306 0.081548 0.626299 0.153356 -0.914442 -0.374537 -0.346070 -0.404717 0.846428 -0.925591 -0.000188 -0.378526 0.248351 -0.893333 -0.374537 -0.301746 -0.438759 0.846428 -0.920473 -0.097196 -0.378526 0.339749 -0.862724 -0.374537 -0.254567 -0.467714 0.846428 -0.905410 -0.192228 -0.378526 0.428297 -0.822365 -0.374537 -0.204146 -0.491818 0.846428 -0.880276 -0.286062 -0.378526 0.512128 -0.772947 -0.374537 -0.151475 -0.510505 0.846428 -0.845447 -0.376746 -0.378526 0.589603 -0.715605 -0.374537 -0.097660 -0.523472 0.846428 -0.801768 -0.462479 -0.378526 0.661356 -0.649869 -0.374537 -0.042258 -0.530825 0.846428 -0.748881 -0.543962 -0.378526 0.725824 -0.576975 -0.374537 0.013608 -0.532330 0.846428 -0.687745 -0.619455 -0.378526 0.782298 -0.497726 -0.374537 0.069326 -0.527972 0.846428 -0.619034 -0.688124 -0.378526 0.829742 -0.413824 -0.374537 0.123761 -0.517922 0.846428 -0.544254 -0.748669 -0.378526 0.868544 -0.324582 -0.374537 0.177362 -0.502099 0.846428 -0.462790 -0.801588 -0.378526 0.897779 -0.231765 -0.374537 0.229008 -0.480745 0.846428 -0.376229 -0.845677 -0.378526 0.916988 -0.137312 -0.374537 0.277678 -0.454373 0.846428 -0.286405 -0.880165 -0.378526 0.926329 -0.040449 -0.374537 0.323771 -0.422768 0.846428 -0.192580 -0.905335 -0.378526 0.925467 0.056860 -0.374537 0.366297 -0.386506 0.846428 -0.096634 -0.920532 -0.378526 0.914535 0.152797 -0.374537 0.404506 -0.346317 0.846428 -0.000377 -0.925590 -0.378526 0.893484 0.247805 -0.374537 0.438575 -0.302014 0.846428 0.096634 -0.920532 -0.378526 0.862592 0.340084 -0.374537 0.467813 -0.254385 0.846428 0.192580 -0.905335 -0.378526 0.822198 0.428617 -0.374537 0.491897 -0.203954 0.846428 0.286405 -0.880165 -0.378526 0.773260 0.511656 -0.374537 0.510413 -0.151787 0.846428 0.376229 -0.845677 -0.378526 0.715376 0.589881 -0.374537 0.523510 -0.097456 0.846428 0.462790 -0.801588 -0.378526 0.649612 0.661609 -0.374537 0.530841 -0.042052 0.846428 0.544254 -0.748669 -0.378526 0.577419 0.725472 -0.374537 0.532338 0.013283 0.846428 0.619034 -0.688124 -0.378526 0.498204 0.781994 -0.374537 0.528014 0.069003 0.846428 0.687745 -0.619455 -0.378526 0.413502 0.829903 -0.374537 0.517874 0.123963 0.846428 0.748881 -0.543962 -0.378526 0.324245 0.868670 -0.374537 0.502030 0.177557 0.846428 0.801768 -0.462479 -0.378526 0.232314 0.897637 -0.374537 0.480885 0.228715 0.846428 0.845447 -0.376746 -0.378526 0.136956 0.917041 -0.374537 0.454265 0.277855 0.846428 0.880276 -0.286062 -0.378526 0.040089 0.926345 -0.374537 0.422642 0.323935 0.846428 0.905410 -0.192228 -0.378526 -0.056294 0.925501 -0.374537 0.386730 0.366060 0.846428 0.920473 -0.097196 -0.378526 -0.152983 0.914504 -0.374537 0.346235 0.404576 0.846428 0.925591 -0.000188 -0.378526 -0.247987 0.893434 -0.374537 0.301925 0.438636 0.846428 0.920513 0.096821 -0.378526 -0.340260 0.862522 -0.374537 0.254290 0.467864 0.846428 0.905295 0.192764 -0.378526 -0.427962 0.822539 -0.374537 0.204346 0.491735 0.846428 0.880393 0.285704 -0.378526 -0.511813 0.773155 -0.374537 0.151683 0.510444 0.846428 0.845600 0.376402 -0.378526 -0.590026 0.715256 -0.374537 0.097350 0.523530 0.846428 0.801493 0.462954 -0.378526 -0.661741 0.649477 -0.374537 0.041944 0.530850 0.846428 0.748558 0.544406 -0.378526 -0.725589 0.577271 -0.374537 -0.013392 0.532336 0.846428 0.687998 0.619174 -0.378526 -0.782095 0.498045 -0.374537 -0.069111 0.528000 0.846428 0.619315 0.687872 -0.378526 -0.829987 0.413333 -0.374537 -0.124068 0.517849 0.846428 0.543810 0.748992 -0.378526 -0.868411 0.324936 -0.374537 -0.177157 0.502171 0.846428 0.463117 0.801399 -0.378526 -0.897684 0.232131 -0.374537 -0.228812 0.480838 0.846428 0.376574 0.845523 -0.378526 -0.917069 0.136769 -0.374537 -0.277948 0.454209 0.846428 0.285883 0.880334 -0.378526 -0.926353 0.039900 -0.374537 -0.324021 0.422576 0.846428 0.192043 0.905449 -0.378526 -0.925490 -0.056483 -0.374537 -0.366139 0.386656 0.846428 0.097009 0.920493 -0.378526 -0.914473 -0.153170 -0.374537 -0.404647 0.346152 0.846428 0.000000 0.925591 -0.378526 -0.893383 -0.248169 -0.374537 -0.438698 0.301836 0.846428 -0.097009 0.920493 -0.378526 -0.862793 -0.339573 -0.374537 -0.467662 0.254663 0.846428 -0.192043 0.905449 -0.378526 -0.822452 -0.428130 -0.374537 -0.491776 0.204246 0.846428 -0.285883 0.880334 -0.378526 -0.773051 -0.511971 -0.374537 -0.510475 0.151579 0.846428 -0.376574 0.845523 -0.378526 -0.715135 -0.590172 -0.374537 -0.523550 0.097243 0.846428 -0.463117 0.801399 -0.378526 -0.650004 -0.661223 -0.374537 -0.530816 0.042367 0.846428 -0.543810 0.748992 -0.378526 -0.577123 -0.725707 -0.374537 -0.532333 -0.013500 0.846428 -0.619315 0.687872 -0.378526 -0.497885 -0.782197 -0.374537 -0.527986 -0.069218 0.846428 -0.687998 0.619174 -0.378526 -0.413993 -0.829657 -0.374537 -0.517948 -0.123656 0.846428 -0.748558 0.544406 -0.378526 -0.324759 -0.868477 -0.374537 -0.502135 -0.177259 0.846428 -0.801493 0.462954 -0.378526 -0.231948 -0.897731 -0.374537 -0.480792 -0.228910 0.846428 -0.845600 0.376402 -0.378526 -0.136582 -0.917097 -0.374537 -0.454152 -0.278040 0.846428 -0.880393 0.285704 -0.378526 -0.040638 -0.926321 -0.374537 -0.422834 -0.323685 0.846428 -0.905295 0.192764 -0.378526 0.056671 -0.925478 -0.374537 -0.386581 -0.366218 0.846428 -0.920513 0.096821 -0.378526 0.012356 0.999522 -0.028336 0.405017 -0.030913 -0.913786 -0.914226 -0.000186 -0.405206 -0.092469 0.995312 -0.028336 0.406026 0.011706 -0.913786 -0.909171 -0.096003 -0.405206 -0.195296 0.980335 -0.028336 0.402617 0.053794 -0.913786 -0.894292 -0.189867 -0.405206 -0.296966 0.954467 -0.028336 0.394762 0.095695 -0.913786 -0.869468 -0.282550 -0.405206 -0.395366 0.918087 -0.028336 0.382558 0.136542 -0.913786 -0.835066 -0.372120 -0.405206 -0.488539 0.872082 -0.028336 0.366317 0.175518 -0.913786 -0.791923 -0.456800 -0.405206 -0.577248 0.816077 -0.028336 0.345904 0.212944 -0.913786 -0.739686 -0.537283 -0.405206 -0.659600 0.751083 -0.028336 0.321680 0.248025 -0.913786 -0.679301 -0.611849 -0.405206 -0.734686 0.677815 -0.028336 0.293914 0.280373 -0.913786 -0.611434 -0.679675 -0.405206 -0.801082 0.597883 -0.028336 0.263220 0.309370 -0.913786 -0.537571 -0.739477 -0.405206 -0.859333 0.510631 -0.028336 0.229346 0.335254 -0.913786 -0.457108 -0.791745 -0.405206 -0.908118 0.417755 -0.028336 0.192946 0.357444 -0.913786 -0.371610 -0.835293 -0.405206 -0.946579 0.321224 -0.028336 0.154796 0.375543 -0.913786 -0.282888 -0.869358 -0.405206 -0.975033 0.220246 -0.028336 0.114584 0.389699 -0.913786 -0.190215 -0.894218 -0.405206 -0.992746 0.116843 -0.028336 0.073110 0.399562 -0.913786 -0.095447 -0.909230 -0.405206 -0.999514 0.012966 -0.028336 0.031160 0.404998 -0.913786 -0.000372 -0.914226 -0.405206 -0.995369 -0.091861 -0.028336 -0.011458 0.406034 -0.913786 0.095447 -0.909230 -0.405206 -0.980259 -0.195677 -0.028336 -0.053950 0.402596 -0.913786 0.190215 -0.894218 -0.405206 -0.954352 -0.297338 -0.028336 -0.095848 0.394725 -0.913786 0.282888 -0.869358 -0.405206 -0.918328 -0.394805 -0.028336 -0.136308 0.382642 -0.913786 0.371610 -0.835293 -0.405206 -0.871892 -0.488878 -0.028336 -0.175661 0.366248 -0.913786 0.457108 -0.791745 -0.405206 -0.815852 -0.577566 -0.028336 -0.213079 0.345821 -0.913786 0.537571 -0.739477 -0.405206 -0.751485 -0.659141 -0.028336 -0.247828 0.321832 -0.913786 0.611434 -0.679675 -0.405206 -0.678264 -0.734272 -0.028336 -0.280193 0.294085 -0.913786 0.679301 -0.611849 -0.405206 -0.597571 -0.801315 -0.028336 -0.309473 0.263099 -0.913786 0.739686 -0.537283 -0.405206 -0.510297 -0.859531 -0.028336 -0.335343 0.229216 -0.913786 0.791923 -0.456800 -0.405206 -0.418310 -0.907862 -0.028336 -0.357326 0.193164 -0.913786 0.835066 -0.372120 -0.405206 -0.320855 -0.946704 -0.028336 -0.375603 0.154650 -0.913786 0.869468 -0.282550 -0.405206 -0.219867 -0.975118 -0.028336 -0.389743 0.114432 -0.913786 0.894292 -0.189867 -0.405206 -0.117449 -0.992675 -0.028336 -0.399517 0.073354 -0.913786 0.909171 -0.096003 -0.405206 -0.012763 -0.999517 -0.028336 -0.405005 0.031078 -0.913786 0.914226 -0.000186 -0.405206 0.092064 -0.995350 -0.028336 -0.406031 -0.011541 -0.913786 0.909210 0.095632 -0.405206 0.195877 -0.980219 -0.028336 -0.402585 -0.054032 -0.913786 0.894180 0.190397 -0.405206 0.296577 -0.954588 -0.028336 -0.394801 -0.095534 -0.913786 0.869583 0.282196 -0.405206 0.394992 -0.918248 -0.028336 -0.382614 -0.136386 -0.913786 0.835217 0.371780 -0.405206 0.489055 -0.871792 -0.028336 -0.366213 -0.175735 -0.913786 0.791652 0.457269 -0.405206 0.577732 -0.815735 -0.028336 -0.345777 -0.213149 -0.913786 0.739367 0.537722 -0.405206 0.659294 -0.751351 -0.028336 -0.321781 -0.247894 -0.913786 0.679550 0.611572 -0.405206 0.734410 -0.678114 -0.028336 -0.294028 -0.280253 -0.913786 0.611710 0.679425 -0.405206 0.801436 -0.597408 -0.028336 -0.263036 -0.309526 -0.913786 0.537133 0.739795 -0.405206 0.859125 -0.510981 -0.028336 -0.229482 -0.335160 -0.913786 0.457430 0.791559 -0.405206 0.907948 -0.418125 -0.028336 -0.193091 -0.357366 -0.913786 0.371950 0.835142 -0.405206 0.946770 -0.320662 -0.028336 -0.154573 -0.375635 -0.913786 0.282373 0.869525 -0.405206 0.975163 -0.219668 -0.028336 -0.114353 -0.389767 -0.913786 0.189685 0.894331 -0.405206 0.992698 -0.117247 -0.028336 -0.073272 -0.399532 -0.913786 0.095817 0.909191 -0.405206 0.999520 -0.012559 -0.028336 -0.030995 -0.405011 -0.913786 0.000000 0.914226 -0.405206 0.995331 0.092267 -0.028336 0.011624 -0.406029 -0.913786 -0.095817 0.909191 -0.405206 0.980375 0.195096 -0.028336 0.053712 -0.402628 -0.913786 -0.189685 0.894331 -0.405206 0.954528 0.296772 -0.028336 0.095614 -0.394782 -0.913786 -0.282373 0.869525 -0.405206 0.918167 0.395179 -0.028336 0.136464 -0.382586 -0.913786 -0.371950 0.835142 -0.405206 0.871693 0.489233 -0.028336 0.175810 -0.366177 -0.913786 -0.457430 0.791559 -0.405206 0.816194 0.577082 -0.028336 0.212874 -0.345947 -0.913786 -0.537133 0.739795 -0.405206 0.751217 0.659447 -0.028336 0.247959 -0.321731 -0.913786 -0.611710 0.679425 -0.405206 0.677965 0.734548 -0.028336 0.280313 -0.293971 -0.913786 -0.679550 0.611572 -0.405206 0.598046 0.800960 -0.028336 0.309317 -0.263283 -0.913786 -0.739367 0.537722 -0.405206 0.510806 0.859229 -0.028336 0.335207 -0.229414 -0.913786 -0.791652 0.457269 -0.405206 0.417940 0.908033 -0.028336 0.357405 -0.193019 -0.913786 -0.835217 0.371780 -0.405206 0.320470 0.946835 -0.028336 0.375666 -0.154497 -0.913786 -0.869583 0.282196 -0.405206 0.220445 0.974988 -0.028336 0.389675 -0.114663 -0.913786 -0.894180 0.190397 -0.405206 0.117045 0.992722 -0.028336 0.399547 -0.073191 -0.913786 -0.909210 0.095632 -0.405206 0.009518 -0.379450 -0.925163 -0.003683 -0.925212 0.379432 -0.999948 -0.000204 -0.010203 0.049234 -0.376363 -0.925163 0.093306 -0.920503 0.379432 -0.994419 -0.105004 -0.010203 0.088039 -0.369218 -0.925163 0.188362 -0.905843 0.379432 -0.978146 -0.207670 -0.010203 0.126251 -0.357957 -0.925163 0.282263 -0.881112 0.379432 -0.950993 -0.309043 -0.010203 0.163072 -0.342754 -0.925163 0.373055 -0.846676 0.379432 -0.913366 -0.407012 -0.010203 0.197774 -0.323973 -0.925163 0.458935 -0.803374 0.379432 -0.866178 -0.499632 -0.010203 0.230639 -0.301461 -0.925163 0.540607 -0.750850 0.379432 -0.809042 -0.587662 -0.010203 0.260964 -0.275628 -0.925163 0.616324 -0.690055 0.379432 -0.742996 -0.669219 -0.010203 0.288414 -0.246759 -0.925163 0.685252 -0.621659 0.379432 -0.668765 -0.743404 -0.010203 0.312473 -0.215484 -0.925163 0.746086 -0.547162 0.379432 -0.587976 -0.808814 -0.010203 0.333336 -0.181548 -0.925163 0.799324 -0.465954 0.379432 -0.499969 -0.865983 -0.010203 0.350528 -0.145612 -0.925163 0.843757 -0.379613 0.379432 -0.406454 -0.913614 -0.010203 0.363750 -0.108436 -0.925163 0.878606 -0.289969 0.379432 -0.309413 -0.950873 -0.010203 0.373112 -0.069716 -0.925163 0.904158 -0.196288 0.379432 -0.208051 -0.978065 -0.010203 0.378364 -0.030227 -0.925163 0.919751 -0.100445 0.379432 -0.104397 -0.994483 -0.010203 0.379456 0.009286 -0.925163 0.925210 -0.004249 0.379432 -0.000407 -0.999948 -0.010203 0.376393 0.049004 -0.925163 0.920560 0.092743 0.379432 0.104397 -0.994483 -0.010203 0.369184 0.088183 -0.925163 0.905769 0.188714 0.379432 0.208051 -0.978065 -0.010203 0.357908 0.126391 -0.925163 0.881002 0.282606 0.379432 0.309413 -0.950873 -0.010203 0.342853 0.162863 -0.925163 0.846904 0.372538 0.379432 0.406454 -0.913614 -0.010203 0.323896 0.197900 -0.925163 0.803195 0.459248 0.379432 0.499969 -0.865983 -0.010203 0.301371 0.230756 -0.925163 0.750639 0.540899 0.379432 0.587976 -0.808814 -0.010203 0.275787 0.260796 -0.925163 0.690431 0.615903 0.379432 0.668765 -0.743404 -0.010203 0.246935 0.288264 -0.925163 0.622078 0.684873 0.379432 0.742996 -0.669219 -0.010203 0.215363 0.312557 -0.925163 0.546872 0.746299 0.379432 0.809042 -0.587662 -0.010203 0.181419 0.333407 -0.925163 0.465643 0.799505 0.379432 0.866178 -0.499632 -0.010203 0.145827 0.350439 -0.925163 0.380128 0.843525 0.379432 0.913366 -0.407012 -0.010203 0.108295 0.363793 -0.925163 0.289627 0.878719 0.379432 0.950993 -0.309043 -0.010203 0.069570 0.373139 -0.925163 0.195936 0.904235 0.379432 0.978146 -0.207670 -0.010203 0.030458 0.378345 -0.925163 0.101007 0.919690 0.379432 0.994419 -0.105004 -0.010203 -0.009363 0.379454 -0.925163 0.004060 0.925211 0.379432 0.999948 -0.000204 -0.010203 -0.049081 0.376383 -0.925163 -0.092931 0.920541 0.379432 0.994462 0.104599 -0.010203 -0.088258 0.369166 -0.925163 -0.188898 0.905731 0.379432 0.978022 0.208250 -0.010203 -0.126105 0.358009 -0.925163 -0.281904 0.881227 0.379432 0.951119 0.308656 -0.010203 -0.162933 0.342820 -0.925163 -0.372710 0.846828 0.379432 0.913531 0.406640 -0.010203 -0.197965 0.323856 -0.925163 -0.459411 0.803102 0.379432 0.865882 0.500145 -0.010203 -0.230818 0.301324 -0.925163 -0.541052 0.750529 0.379432 0.808694 0.588141 -0.010203 -0.260852 0.275734 -0.925163 -0.616043 0.690306 0.379432 0.743268 0.668916 -0.010203 -0.288314 0.246876 -0.925163 -0.684999 0.621938 0.379432 0.669067 0.743132 -0.010203 -0.312600 0.215299 -0.925163 -0.746410 0.546720 0.379432 0.587497 0.809162 -0.010203 -0.333262 0.181684 -0.925163 -0.799134 0.466279 0.379432 0.500321 0.865780 -0.010203 -0.350469 0.145755 -0.925163 -0.843602 0.379956 0.379432 0.406826 0.913449 -0.010203 -0.363815 0.108221 -0.925163 -0.878778 0.289448 0.379432 0.308849 0.951056 -0.010203 -0.373153 0.069494 -0.925163 -0.904275 0.195752 0.379432 0.207471 0.978188 -0.010203 -0.378351 0.030381 -0.925163 -0.919710 0.100819 0.379432 0.104802 0.994441 -0.010203 -0.379452 -0.009440 -0.925163 -0.925211 0.003872 0.379432 0.000000 0.999948 -0.010203 -0.376373 -0.049158 -0.925163 -0.920522 -0.093118 0.379432 -0.104802 0.994441 -0.010203 -0.369236 -0.087964 -0.925163 -0.905881 -0.188177 0.379432 -0.207471 0.978188 -0.010203 -0.357983 -0.126178 -0.925163 -0.881170 -0.282084 0.379432 -0.308849 0.951056 -0.010203 -0.342787 -0.163003 -0.925163 -0.846752 -0.372883 0.379432 -0.406826 0.913449 -0.010203 -0.323815 -0.198031 -0.925163 -0.803008 -0.459575 0.379432 -0.500321 0.865780 -0.010203 -0.301508 -0.230578 -0.925163 -0.750960 -0.540454 0.379432 -0.587497 0.809162 -0.010203 -0.275681 -0.260908 -0.925163 -0.690180 -0.616184 0.379432 -0.669067 0.743132 -0.010203 -0.246817 -0.288364 -0.925163 -0.621799 -0.685126 0.379432 -0.743268 0.668916 -0.010203 -0.215548 -0.312429 -0.925163 -0.547314 -0.745975 0.379432 -0.808694 0.588141 -0.010203 -0.181616 -0.333299 -0.925163 -0.466117 -0.799229 0.379432 -0.865882 0.500145 -0.010203 -0.145684 -0.350498 -0.925163 -0.379785 -0.843679 0.379432 -0.913531 0.406640 -0.010203 -0.108147 -0.363837 -0.925163 -0.289269 -0.878837 0.379432 -0.951119 0.308656 -0.010203 -0.069792 -0.373098 -0.925163 -0.196472 -0.904118 0.379432 -0.978022 0.208250 -0.010203 -0.030304 -0.378358 -0.925163 -0.100632 -0.919731 0.379432 -0.994462 0.104599 -0.010203 -0.422229 0.888290 0.180728 0.816558 0.459282 -0.349704 -0.393644 -0.000080 -0.919263 -0.513003 0.839145 0.180728 0.763925 0.542334 -0.349704 -0.391468 -0.041336 -0.919263 -0.597345 0.781355 0.180728 0.703496 0.618709 -0.349704 -0.385062 -0.081752 -0.919263 -0.675947 0.714446 0.180728 0.634776 0.689033 -0.349704 -0.374373 -0.121659 -0.919263 -0.747103 0.639667 0.180728 0.559065 0.751767 -0.349704 -0.359560 -0.160226 -0.919263 -0.809472 0.558652 0.180728 0.478001 0.805743 -0.349704 -0.340984 -0.196688 -0.919263 -0.863565 0.470737 0.180728 0.390921 0.851403 -0.349704 -0.318492 -0.231342 -0.919263 -0.908145 0.377637 0.180728 0.299535 0.887686 -0.349704 -0.292491 -0.263448 -0.919263 -0.942723 0.280377 0.180728 0.204849 0.914190 -0.349704 -0.263269 -0.292652 -0.919263 -0.966736 0.180995 0.180728 0.108838 0.930517 -0.349704 -0.231466 -0.318402 -0.919263 -0.980381 0.078677 0.180728 0.010714 0.936799 -0.349704 -0.196820 -0.340907 -0.919263 -0.983228 -0.024507 0.180728 -0.087529 0.932762 -0.349704 -0.160007 -0.359658 -0.919263 -0.975371 -0.126446 0.180728 -0.183888 0.918636 -0.349704 -0.121805 -0.374325 -0.919263 -0.956747 -0.227975 0.180728 -0.279155 0.894304 -0.349704 -0.081902 -0.385030 -0.919263 -0.927584 -0.326994 0.180728 -0.371347 0.860121 -0.349704 -0.041097 -0.391493 -0.919263 -0.888548 -0.421687 0.180728 -0.458783 0.816838 -0.349704 -0.000160 -0.393644 -0.919263 -0.839459 -0.512490 0.180728 -0.541867 0.764256 -0.349704 0.041097 -0.391493 -0.919263 -0.781123 -0.597649 0.180728 -0.618982 0.703255 -0.349704 0.081902 -0.385030 -0.919263 -0.714183 -0.676225 0.180728 -0.689280 0.634508 -0.349704 0.121805 -0.374325 -0.919263 -0.640123 -0.746712 0.180728 -0.751425 0.559524 -0.349704 0.160007 -0.359658 -0.919263 -0.558337 -0.809689 0.180728 -0.805929 0.477688 -0.349704 0.196820 -0.340907 -0.919263 -0.470401 -0.863748 0.180728 -0.851555 0.390590 -0.349704 0.231466 -0.318402 -0.919263 -0.378191 -0.907914 0.180728 -0.887502 0.300077 -0.349704 0.263269 -0.292652 -0.919263 -0.280952 -0.942551 0.180728 -0.914065 0.205408 -0.349704 0.292491 -0.263448 -0.919263 -0.180619 -0.966806 0.180728 -0.930559 0.108476 -0.349704 0.318492 -0.231342 -0.919263 -0.078296 -0.980412 0.180728 -0.936803 0.010349 -0.349704 0.340984 -0.196688 -0.919263 0.023906 -0.983242 0.180728 -0.932816 -0.086959 -0.349704 0.359560 -0.160226 -0.919263 0.126825 -0.975322 0.180728 -0.918564 -0.184245 -0.349704 0.374373 -0.121659 -0.919263 0.228347 -0.956658 0.180728 -0.894195 -0.279503 -0.349704 0.385062 -0.081752 -0.919263 0.326427 -0.927784 0.180728 -0.860348 -0.370821 -0.349704 0.391468 -0.041336 -0.919263 0.421867 -0.888462 0.180728 -0.816745 -0.458950 -0.349704 0.393644 -0.000080 -0.919263 0.512661 -0.839354 0.180728 -0.764145 -0.542023 -0.349704 0.391485 0.041177 -0.919263 0.597808 -0.781001 0.180728 -0.703129 -0.619126 -0.349704 0.385013 0.081981 -0.919263 0.675656 -0.714721 0.180728 -0.635057 -0.688774 -0.349704 0.374422 0.121507 -0.919263 0.746843 -0.639971 0.180728 -0.559371 -0.751539 -0.349704 0.359625 0.160080 -0.919263 0.809803 -0.558172 0.180728 -0.477524 -0.806026 -0.349704 0.340867 0.196890 -0.919263 0.863844 -0.470225 0.180728 -0.390416 -0.851635 -0.349704 0.318354 0.231530 -0.919263 0.907991 -0.378006 0.180728 -0.299896 -0.887564 -0.349704 0.292598 0.263329 -0.919263 0.942608 -0.280761 0.180728 -0.205222 -0.914107 -0.349704 0.263388 0.292545 -0.919263 0.966843 -0.180422 0.180728 -0.108286 -0.930581 -0.349704 0.231277 0.318539 -0.919263 0.980349 -0.079077 0.180728 -0.011095 -0.936794 -0.349704 0.196959 0.340827 -0.919263 0.983238 0.024106 0.180728 0.087149 -0.932798 -0.349704 0.160153 0.359593 -0.919263 0.975296 0.127024 0.180728 0.184433 -0.918527 -0.349704 0.121583 0.374397 -0.919263 0.956612 0.228542 0.180728 0.279685 -0.894138 -0.349704 0.081674 0.385078 -0.919263 0.927717 0.326616 0.180728 0.370997 -0.860272 -0.349704 0.041257 0.391476 -0.919263 0.888376 0.422048 0.180728 0.459116 -0.816651 -0.349704 0.000000 0.393644 -0.919263 0.839250 0.512832 0.180728 0.542178 -0.764035 -0.349704 -0.041257 0.391476 -0.919263 0.781477 0.597186 0.180728 0.618565 -0.703622 -0.349704 -0.081674 0.385078 -0.919263 0.714584 0.675801 0.180728 0.688903 -0.634917 -0.349704 -0.121583 0.374397 -0.919263 0.639819 0.746973 0.180728 0.751653 -0.559218 -0.349704 -0.160153 0.359593 -0.919263 0.558007 0.809917 0.180728 0.806123 -0.477359 -0.349704 -0.196959 0.340827 -0.919263 0.470913 0.863469 0.180728 0.851324 -0.391094 -0.349704 -0.231277 0.318539 -0.919263 0.377822 0.908068 0.180728 0.887625 -0.299716 -0.349704 -0.263388 0.292545 -0.919263 0.280569 0.942666 0.180728 0.914148 -0.205035 -0.349704 -0.292598 0.263329 -0.919263 0.181192 0.966699 0.180728 0.930494 -0.109027 -0.349704 -0.318354 0.231530 -0.919263 0.078877 0.980365 0.180728 0.936797 -0.010904 -0.349704 -0.340867 0.196890 -0.919263 -0.024306 0.983233 0.180728 0.932780 0.087339 -0.349704 -0.359625 0.160080 -0.919263 -0.127222 0.975270 0.180728 0.918489 0.184620 -0.349704 -0.374422 0.121507 -0.919263 -0.227780 0.956793 0.180728 0.894361 0.278973 -0.349704 -0.385013 0.081981 -0.919263 -0.326805 0.927651 0.180728 0.860197 0.371172 -0.349704 -0.391485 0.041177 -0.919263 -0.129700 0.979841 -0.151952 -0.635541 -0.199779 -0.745772 -0.761095 -0.000155 0.648640 -0.231680 0.960851 -0.151952 -0.611102 -0.265288 -0.745772 -0.756887 -0.079922 0.648640 -0.330177 0.931608 -0.151952 -0.580260 -0.327294 -0.745772 -0.744501 -0.158065 0.648640 -0.425998 0.891873 -0.151952 -0.542762 -0.386307 -0.745772 -0.723834 -0.235224 0.648640 -0.517126 0.842313 -0.151952 -0.499285 -0.441065 -0.745772 -0.695195 -0.309791 0.648640 -0.601775 0.784078 -0.151952 -0.450799 -0.490514 -0.745772 -0.659278 -0.380287 0.648640 -0.680637 0.716689 -0.151952 -0.396907 -0.535059 -0.745772 -0.615790 -0.447290 0.648640 -0.752003 0.641406 -0.151952 -0.338643 -0.573711 -0.745772 -0.565520 -0.509366 0.648640 -0.815085 0.559058 -0.151952 -0.276649 -0.606044 -0.745772 -0.509020 -0.565831 0.648640 -0.868719 0.471422 -0.151952 -0.212239 -0.631489 -0.745772 -0.447529 -0.615616 0.648640 -0.913343 0.377777 -0.151952 -0.144885 -0.650255 -0.745772 -0.380544 -0.659130 0.648640 -0.947906 0.279972 -0.151952 -0.075936 -0.661859 -0.745772 -0.309366 -0.695384 0.648640 -0.971849 0.180055 -0.151952 -0.006816 -0.666166 -0.745772 -0.235505 -0.723743 0.648640 -0.985368 0.077206 -0.151952 0.063040 -0.663211 -0.745772 -0.158355 -0.744439 0.648640 -0.988033 -0.026493 -0.151952 0.132202 -0.652952 -0.745772 -0.079460 -0.756936 0.648640 -0.979920 -0.129101 -0.151952 0.199390 -0.635663 -0.745772 -0.000310 -0.761095 0.648640 -0.960992 -0.231093 -0.151952 0.264914 -0.611264 -0.745772 0.079460 -0.756936 0.648640 -0.931480 -0.330539 -0.151952 0.327520 -0.580133 -0.745772 0.158355 -0.744439 0.648640 -0.891707 -0.426345 -0.151952 0.386518 -0.542611 -0.745772 0.235505 -0.723743 0.648640 -0.842629 -0.516611 -0.151952 0.440760 -0.499554 -0.745772 0.309366 -0.695384 0.648640 -0.783844 -0.602080 -0.151952 0.490689 -0.450608 -0.745772 0.380544 -0.659130 0.648640 -0.716424 -0.680916 -0.151952 0.535214 -0.396698 -0.745772 0.447529 -0.615616 0.648640 -0.641866 -0.751611 -0.151952 0.573504 -0.338993 -0.745772 0.509020 -0.565831 0.648640 -0.559556 -0.814744 -0.151952 0.605875 -0.277019 -0.745772 0.565520 -0.509366 0.648640 -0.471084 -0.868902 -0.151952 0.631571 -0.211993 -0.745772 0.615790 -0.447290 0.648640 -0.377422 -0.913490 -0.151952 0.650311 -0.144632 -0.745772 0.659278 -0.380287 0.648640 -0.280551 -0.947735 -0.151952 0.661812 -0.076340 -0.745772 0.695195 -0.309791 0.648640 -0.179677 -0.971919 -0.151952 0.666169 -0.006557 -0.745772 0.723834 -0.235224 0.648640 -0.076823 -0.985398 -0.151952 0.663187 0.063298 -0.745772 0.744501 -0.158065 0.648640 0.025889 -0.988049 -0.151952 0.653032 0.131803 -0.745772 0.756887 -0.079922 0.648640 0.129301 -0.979894 -0.151952 0.635622 0.199520 -0.745772 0.761095 -0.000155 0.648640 0.231289 -0.960945 -0.151952 0.611210 0.265039 -0.745772 0.756920 0.079614 0.648640 0.330729 -0.931412 -0.151952 0.580066 0.327638 -0.745772 0.744407 0.158506 0.648640 0.425634 -0.892046 -0.151952 0.542919 0.386086 -0.745772 0.723930 0.234929 0.648640 0.516783 -0.842524 -0.151952 0.499464 0.440862 -0.745772 0.695321 0.309508 0.648640 0.602239 -0.783721 -0.151952 0.450508 0.490781 -0.745772 0.659053 0.380678 0.648640 0.681062 -0.716286 -0.151952 0.396589 0.535295 -0.745772 0.615525 0.447655 0.648640 0.751742 -0.641713 -0.151952 0.338876 0.573573 -0.745772 0.565727 0.509135 0.648640 0.814858 -0.559390 -0.151952 0.276895 0.605931 -0.745772 0.509250 0.565624 0.648640 0.868998 -0.470907 -0.151952 0.211864 0.631615 -0.745772 0.447164 0.615881 0.648640 0.913189 -0.378149 -0.151952 0.145150 0.650196 -0.745772 0.380812 0.658975 0.648640 0.947792 -0.280358 -0.151952 0.076206 0.661828 -0.745772 0.309649 0.695258 0.648640 0.971956 -0.179479 -0.151952 0.006422 0.666170 -0.745772 0.235076 0.723882 0.648640 0.985413 -0.076622 -0.151952 -0.063433 0.663174 -0.745772 0.157913 0.744533 0.648640 0.988043 0.026090 -0.151952 -0.131936 0.653006 -0.745772 0.079768 0.756904 0.648640 0.979867 0.129501 -0.151952 -0.199649 0.635581 -0.745772 0.000000 0.761095 0.648640 0.960898 0.231484 -0.151952 -0.265163 0.611156 -0.745772 -0.079768 0.756904 0.648640 0.931675 0.329987 -0.151952 -0.327176 0.580327 -0.745772 -0.157913 0.744533 0.648640 0.891959 0.425816 -0.151952 -0.386197 0.542840 -0.745772 -0.235076 0.723882 0.648640 0.842418 0.516955 -0.151952 -0.440963 0.499374 -0.745772 -0.309649 0.695258 0.648640 0.783598 0.602399 -0.151952 -0.490873 0.450408 -0.745772 -0.380812 0.658975 0.648640 0.716828 0.680491 -0.151952 -0.534979 0.397016 -0.745772 -0.447164 0.615881 0.648640 0.641559 0.751872 -0.151952 -0.573642 0.338759 -0.745772 -0.509250 0.565624 0.648640 0.559224 0.814972 -0.151952 -0.605987 0.276772 -0.745772 -0.565727 0.509135 0.648640 0.471599 0.868623 -0.151952 -0.631446 0.212367 -0.745772 -0.615525 0.447655 0.648640 0.377963 0.913266 -0.151952 -0.650226 0.145018 -0.745772 -0.659053 0.380678 0.648640 0.280165 0.947849 -0.151952 -0.661843 0.076071 -0.745772 -0.695321 0.309508 0.648640 0.179281 0.971992 -0.151952 -0.666171 0.006286 -0.745772 -0.723930 0.234929 0.648640 0.077407 0.985352 -0.151952 -0.663224 -0.062905 -0.745772 -0.744407 0.158506 0.648640 -0.026291 0.988038 -0.151952 -0.652979 -0.132069 -0.745772 -0.756920 0.079614 0.648640 0.464526 0.427659 0.775450 -0.219935 0.903940 -0.366770 -0.857813 -0.000175 0.513961 0.417146 0.473989 0.775450 -0.313464 0.875911 -0.366770 -0.853071 -0.090079 0.513961 0.365686 0.514733 0.775450 -0.402701 0.838637 -0.366770 -0.839110 -0.178152 0.513961 0.309725 0.550225 0.775450 -0.488378 0.791812 -0.366770 -0.815817 -0.265115 0.513961 0.250351 0.579656 0.775450 -0.568676 0.736266 -0.366770 -0.783538 -0.349159 0.513961 0.188823 0.602513 0.775450 -0.642037 0.673252 -0.366770 -0.743058 -0.428613 0.513961 0.124635 0.618985 0.775450 -0.709062 0.602254 -0.366770 -0.694044 -0.504130 0.513961 0.059075 0.628639 0.775450 -0.768278 0.524622 -0.366770 -0.637385 -0.574095 0.513961 -0.007136 0.631368 0.775450 -0.819031 0.441212 -0.366770 -0.573705 -0.637735 0.513961 -0.072642 0.627216 0.775450 -0.860409 0.353802 -0.366770 -0.504400 -0.693847 0.513961 -0.137978 0.616148 0.775450 -0.892751 0.261677 -0.366770 -0.428902 -0.742891 0.513961 -0.201795 0.598294 0.775450 -0.915260 0.166669 -0.366770 -0.348680 -0.783751 0.513961 -0.262815 0.574112 0.775450 -0.927617 0.070753 -0.366770 -0.265433 -0.815714 0.513961 -0.321539 0.543405 0.775450 -0.929924 -0.026858 -0.366770 -0.178478 -0.839041 0.513961 -0.376721 0.506713 0.775450 -0.921987 -0.124173 -0.366770 -0.089558 -0.853126 0.513961 -0.427375 0.464787 0.775450 -0.904074 -0.219383 -0.366770 -0.000349 -0.857813 0.513961 -0.473734 0.417436 0.775450 -0.876102 -0.312928 -0.366770 0.089558 -0.853126 0.513961 -0.514875 0.365486 0.775450 -0.838480 -0.403027 -0.366770 0.178478 -0.839041 0.513961 -0.550345 0.309510 0.775450 -0.791622 -0.488686 -0.366770 0.265433 -0.815714 0.513961 -0.579503 0.250705 0.775450 -0.736613 -0.568226 -0.366770 0.348680 -0.783751 0.513961 -0.602587 0.188589 0.775450 -0.673002 -0.642299 -0.366770 0.428902 -0.742891 0.513961 -0.619034 0.124395 0.775450 -0.601978 -0.709297 -0.366770 0.504400 -0.693847 0.513961 -0.628603 0.059459 0.775450 -0.525092 -0.767957 -0.366770 0.573705 -0.637735 0.513961 -0.631372 -0.006751 0.775450 -0.441712 -0.818761 -0.366770 0.637385 -0.574095 0.513961 -0.627188 -0.072886 0.775450 -0.353468 -0.860547 -0.366770 0.694044 -0.504130 0.513961 -0.616094 -0.138218 0.775450 -0.261330 -0.892853 -0.366770 0.743058 -0.428613 0.513961 -0.598417 -0.201430 0.775450 -0.167228 -0.915158 -0.366770 0.783538 -0.349159 0.513961 -0.574010 -0.263039 0.775450 -0.070392 -0.927645 -0.366770 0.815817 -0.265115 0.513961 -0.543280 -0.321750 0.775450 0.027220 -0.929913 -0.366770 0.839110 -0.178152 0.513961 -0.506943 -0.376411 0.775450 0.123609 -0.922063 -0.366770 0.853071 -0.090079 0.513961 -0.464700 -0.427469 0.775450 0.219567 -0.904030 -0.366770 0.857813 -0.000175 0.513961 -0.417339 -0.473819 0.775450 0.313107 -0.876039 -0.366770 0.853107 0.089731 0.513961 -0.365381 -0.514950 0.775450 0.403198 -0.838398 -0.366770 0.839004 0.178649 0.513961 -0.309949 -0.550099 0.775450 0.488055 -0.792011 -0.366770 0.815925 0.264783 0.513961 -0.250587 -0.579554 0.775450 0.568376 -0.736497 -0.366770 0.783680 0.348839 0.513961 -0.188466 -0.602625 0.775450 0.642436 -0.672871 -0.366770 0.742803 0.429053 0.513961 -0.124268 -0.619059 0.775450 0.709419 -0.601834 -0.366770 0.693745 0.504542 0.513961 -0.059331 -0.628615 0.775450 0.768064 -0.524935 -0.366770 0.637618 0.573835 0.513961 0.006879 -0.631371 0.775450 0.818851 -0.441546 -0.366770 0.573965 0.637502 0.513961 0.073013 -0.627173 0.775450 0.860618 -0.353292 -0.366770 0.503989 0.694146 0.513961 0.137727 -0.616204 0.775450 0.892645 -0.262040 -0.366770 0.429205 0.742716 0.513961 0.201552 -0.598376 0.775450 0.915192 -0.167042 -0.366770 0.348999 0.783609 0.513961 0.263156 -0.573956 0.775450 0.927659 -0.070203 -0.366770 0.264949 0.815871 0.513961 0.321861 -0.543215 0.775450 0.929908 0.027409 -0.366770 0.177981 0.839146 0.513961 0.376514 -0.506866 0.775450 0.922038 0.123797 -0.366770 0.089905 0.853089 0.513961 0.427564 -0.464613 0.775450 0.903985 0.219751 -0.366770 0.000000 0.857813 0.513961 0.473904 -0.417243 0.775450 0.875975 0.313285 -0.366770 -0.089905 0.853089 0.513961 0.514659 -0.365791 0.775450 0.838719 0.402530 -0.366770 -0.177981 0.839146 0.513961 0.550162 -0.309837 0.775450 0.791912 0.488217 -0.366770 -0.264949 0.815871 0.513961 0.579605 -0.250469 0.775450 0.736382 0.568526 -0.366770 -0.348999 0.783609 0.513961 0.602664 -0.188343 0.775450 0.672741 0.642573 -0.366770 -0.429205 0.742716 0.513961 0.618960 -0.124761 0.775450 0.602399 0.708940 -0.366770 -0.503989 0.694146 0.513961 0.628627 -0.059203 0.775450 0.524779 0.768171 -0.366770 -0.573965 0.637502 0.513961 0.631369 0.007008 0.775450 0.441379 0.818941 -0.366770 -0.637618 0.573835 0.513961 0.627231 0.072514 0.775450 0.353978 0.860337 -0.366770 -0.693745 0.504542 0.513961 0.616176 0.137853 0.775450 0.261859 0.892698 -0.366770 -0.742803 0.429053 0.513961 0.598335 0.201673 0.775450 0.166855 0.915226 -0.366770 -0.783680 0.348839 0.513961 0.573903 0.263272 0.775450 0.070014 0.927673 -0.366770 -0.815925 0.264783 0.513961 0.543471 0.321428 0.775450 -0.026668 0.929929 -0.366770 -0.839004 0.178649 0.513961 0.506790 0.376618 0.775450 -0.123985 0.922013 -0.366770 -0.853107 0.089731 0.513961 -0.349586 0.336051 0.874562 0.124546 0.941844 -0.312119 -0.928589 -0.000189 -0.371110 -0.382882 0.297561 0.874562 0.025148 0.949710 -0.312119 -0.923455 -0.097511 -0.371110 -0.411703 0.256205 0.874562 -0.073579 0.947189 -0.312119 -0.908343 -0.192850 -0.371110 -0.436288 0.211645 0.874562 -0.172446 0.934261 -0.312119 -0.883128 -0.286989 -0.371110 -0.456067 0.164753 0.874562 -0.269414 0.911042 -0.312119 -0.848186 -0.377967 -0.371110 -0.470706 0.116517 0.874562 -0.362536 0.878151 -0.312119 -0.804365 -0.463977 -0.371110 -0.480326 0.066542 0.874562 -0.452576 0.835318 -0.312119 -0.751307 -0.545725 -0.371110 -0.484655 0.015834 0.874562 -0.537631 0.783285 -0.312119 -0.689973 -0.621461 -0.371110 -0.483645 -0.035048 0.874562 -0.616763 0.722623 -0.312119 -0.621040 -0.690353 -0.371110 -0.477393 -0.085067 0.874562 -0.688448 0.654691 -0.312119 -0.546017 -0.751095 -0.371110 -0.465848 -0.134633 0.874562 -0.753273 0.578931 -0.312119 -0.464290 -0.804185 -0.371110 -0.449172 -0.182716 0.874562 -0.809801 0.496794 -0.312119 -0.377448 -0.848416 -0.371110 -0.427777 -0.228358 0.874562 -0.856999 0.410042 -0.312119 -0.287333 -0.883016 -0.371110 -0.401487 -0.271935 0.874562 -0.895254 0.317965 -0.312119 -0.193204 -0.908268 -0.371110 -0.370776 -0.312516 0.874562 -0.923649 0.222384 -0.312119 -0.096947 -0.923514 -0.371110 -0.336264 -0.349381 0.874562 -0.941768 0.125122 -0.312119 -0.000378 -0.928589 -0.371110 -0.297795 -0.382700 0.874562 -0.949695 0.025729 -0.312119 0.096947 -0.923514 -0.371110 -0.256045 -0.411803 0.874562 -0.947161 -0.073948 -0.312119 0.193204 -0.908268 -0.371110 -0.211475 -0.436370 0.874562 -0.934194 -0.172810 -0.312119 0.287333 -0.883016 -0.371110 -0.165032 -0.455966 0.874562 -0.911207 -0.268857 -0.312119 0.377448 -0.848416 -0.371110 -0.116334 -0.470752 0.874562 -0.878010 -0.362877 -0.312119 0.464290 -0.804185 -0.371110 -0.066355 -0.480352 0.874562 -0.835142 -0.452901 -0.312119 0.546017 -0.751095 -0.371110 -0.016130 -0.484645 0.874562 -0.783613 -0.537152 -0.312119 0.621040 -0.690353 -0.371110 0.034753 -0.483666 0.874562 -0.723000 -0.616322 -0.312119 0.689973 -0.621461 -0.371110 0.085253 -0.477360 0.874562 -0.654423 -0.688703 -0.312119 0.751307 -0.545725 -0.371110 0.134814 -0.465796 0.874562 -0.578638 -0.753498 -0.312119 0.804365 -0.463977 -0.371110 0.182441 -0.449284 0.874562 -0.497289 -0.809497 -0.312119 0.848186 -0.377967 -0.371110 0.228525 -0.427688 0.874562 -0.409709 -0.857158 -0.312119 0.883128 -0.286989 -0.371110 0.272091 -0.401382 0.874562 -0.317616 -0.895378 -0.312119 0.908343 -0.192850 -0.371110 0.312289 -0.370966 0.874562 -0.222949 -0.923513 -0.312119 0.923455 -0.097511 -0.371110 0.349449 -0.336193 0.874562 -0.124930 -0.941793 -0.312119 0.928589 -0.000189 -0.371110 0.382760 -0.297717 0.874562 -0.025535 -0.949700 -0.312119 0.923495 0.097135 -0.371110 0.411855 -0.255961 0.874562 0.074141 -0.947146 -0.312119 0.908228 0.193389 -0.371110 0.436202 -0.211822 0.874562 0.172066 -0.934331 -0.312119 0.883245 0.286629 -0.371110 0.456000 -0.164939 0.874562 0.269043 -0.911152 -0.312119 0.848340 0.377621 -0.371110 0.470775 -0.116238 0.874562 0.363056 -0.877936 -0.312119 0.804090 0.464453 -0.371110 0.480365 -0.066257 0.874562 0.453071 -0.835050 -0.312119 0.750983 0.546170 -0.371110 0.484648 -0.016031 0.874562 0.537312 -0.783504 -0.312119 0.690226 0.621180 -0.371110 0.483659 0.034851 0.874562 0.616469 -0.722874 -0.312119 0.621321 0.690100 -0.371110 0.477343 0.085350 0.874562 0.688836 -0.654283 -0.312119 0.545572 0.751418 -0.371110 0.465903 0.134443 0.874562 0.753037 -0.579238 -0.312119 0.464617 0.803995 -0.371110 0.449247 0.182533 0.874562 0.809598 -0.497124 -0.312119 0.377794 0.848263 -0.371110 0.427642 0.228612 0.874562 0.857242 -0.409534 -0.312119 0.286809 0.883186 -0.371110 0.401326 0.272173 0.874562 0.895443 -0.317434 -0.312119 0.192665 0.908382 -0.371110 0.370903 0.312365 0.874562 0.923558 -0.222760 -0.312119 0.097323 0.923475 -0.371110 0.336122 0.349518 0.874562 0.941818 -0.124738 -0.312119 0.000000 0.928589 -0.371110 0.297639 0.382821 0.874562 0.949705 -0.025342 -0.312119 -0.097323 0.923475 -0.371110 0.256289 0.411651 0.874562 0.947204 0.073387 -0.312119 -0.192665 0.908382 -0.371110 0.211734 0.436245 0.874562 0.934296 0.172256 -0.312119 -0.286809 0.883186 -0.371110 0.164846 0.456034 0.874562 0.911097 0.269228 -0.312119 -0.377794 0.848263 -0.371110 0.116142 0.470799 0.874562 0.877862 0.363235 -0.312119 -0.464617 0.803995 -0.371110 0.066640 0.480312 0.874562 0.835410 0.452406 -0.312119 -0.545572 0.751418 -0.371110 0.015933 0.484651 0.874562 0.783394 0.537471 -0.312119 -0.621321 0.690100 -0.371110 -0.034950 0.483652 0.874562 0.722749 0.616616 -0.312119 -0.690226 0.621180 -0.371110 -0.084970 0.477410 0.874562 0.654831 0.688315 -0.312119 -0.750983 0.546170 -0.371110 -0.134538 0.465876 0.874562 0.579084 0.753155 -0.312119 -0.804090 0.464453 -0.371110 -0.182624 0.449209 0.874562 0.496959 0.809699 -0.312119 -0.848340 0.377621 -0.371110 -0.228699 0.427595 0.874562 0.409360 0.857325 -0.312119 -0.883245 0.286629 -0.371110 -0.271853 0.401543 0.874562 0.318147 0.895189 -0.312119 -0.908228 0.193389 -0.371110 -0.312440 0.370839 0.874562 0.222572 0.923603 -0.312119 -0.923495 0.097135 -0.371110 0.065008 0.663745 -0.745129 0.057959 -0.747959 -0.661209 -0.996200 -0.000203 -0.087093 -0.004915 0.666902 -0.745129 0.136031 -0.737765 -0.661209 -0.990692 -0.104611 -0.087093 -0.074122 0.662789 -0.745129 0.211885 -0.719658 -0.661209 -0.974480 -0.206892 -0.087093 -0.143178 0.651370 -0.745129 0.286144 -0.693487 -0.661209 -0.947429 -0.307885 -0.087093 -0.210658 0.632776 -0.745129 0.357250 -0.659678 -0.661209 -0.909943 -0.405487 -0.087093 -0.275210 0.607488 -0.745129 0.423803 -0.619026 -0.661209 -0.862931 -0.497759 -0.087093 -0.337363 0.575299 -0.745129 0.486347 -0.571199 -0.661209 -0.806010 -0.585459 -0.087093 -0.395801 0.536772 -0.745129 0.543534 -0.517081 -0.661209 -0.740211 -0.666710 -0.087093 -0.449879 0.492333 -0.745129 0.594735 -0.457267 -0.661209 -0.666258 -0.740618 -0.087093 -0.498558 0.442970 -0.745129 0.638991 -0.393055 -0.661209 -0.585773 -0.805782 -0.087093 -0.542239 0.388278 -0.745129 0.676667 -0.323920 -0.661209 -0.498095 -0.862738 -0.087093 -0.579947 0.329309 -0.745129 0.706890 -0.251216 -0.661209 -0.404930 -0.910190 -0.087093 -0.611000 0.267324 -0.745129 0.729150 -0.176475 -0.661209 -0.308253 -0.947309 -0.087093 -0.635652 0.201815 -0.745129 0.743630 -0.099083 -0.661209 -0.207271 -0.974399 -0.087093 -0.653303 0.134082 -0.745129 0.749919 -0.020599 -0.661209 -0.104005 -0.990756 -0.087093 -0.663705 0.065414 -0.745129 0.747995 0.057502 -0.661209 -0.000406 -0.996200 -0.087093 -0.666905 -0.004508 -0.745129 0.737848 0.135580 -0.661209 0.104005 -0.990756 -0.087093 -0.662760 -0.074379 -0.745129 0.719575 0.212165 -0.661209 0.207271 -0.974399 -0.087093 -0.651314 -0.143432 -0.745129 0.693376 0.286414 -0.661209 0.308253 -0.947309 -0.087093 -0.632905 -0.210271 -0.745129 0.659896 0.356847 -0.661209 0.404930 -0.910190 -0.087093 -0.607381 -0.275446 -0.745129 0.618861 0.424044 -0.661209 0.498095 -0.862738 -0.087093 -0.575168 -0.337587 -0.745129 0.571010 0.486569 -0.661209 0.585773 -0.805782 -0.087093 -0.537014 -0.395473 -0.745129 0.517413 0.543218 -0.661209 0.666258 -0.740618 -0.087093 -0.492608 -0.449578 -0.745129 0.457630 0.594455 -0.661209 0.740211 -0.666710 -0.087093 -0.442776 -0.498731 -0.745129 0.392807 0.639144 -0.661209 0.806010 -0.585459 -0.087093 -0.388067 -0.542390 -0.745129 0.323656 0.676793 -0.661209 0.862931 -0.497759 -0.087093 -0.329663 -0.579746 -0.745129 0.251648 0.706736 -0.661209 0.909943 -0.405487 -0.087093 -0.267086 -0.611104 -0.745129 0.176191 0.729218 -0.661209 0.947429 -0.307885 -0.087093 -0.201567 -0.635731 -0.745129 0.098793 0.743668 -0.661209 0.974480 -0.206892 -0.087093 -0.134481 -0.653221 -0.745129 0.021057 0.749906 -0.661209 0.990692 -0.104611 -0.087093 -0.065278 -0.663718 -0.745129 -0.057654 0.747983 -0.661209 0.996200 -0.000203 -0.087093 0.004644 -0.666904 -0.745129 -0.135731 0.737821 -0.661209 0.990735 0.104207 -0.087093 0.074514 -0.662745 -0.745129 -0.212312 0.719532 -0.661209 0.974357 0.207469 -0.087093 0.142913 -0.651428 -0.745129 -0.285861 0.693603 -0.661209 0.947554 0.307499 -0.087093 0.210400 -0.632862 -0.745129 -0.356982 0.659823 -0.661209 0.910108 0.405116 -0.087093 0.275570 -0.607325 -0.745129 -0.424170 0.618775 -0.661209 0.862636 0.498270 -0.087093 0.337704 -0.575099 -0.745129 -0.486686 0.570911 -0.661209 0.805663 0.585937 -0.087093 0.395582 -0.536933 -0.745129 -0.543324 0.517302 -0.661209 0.740482 0.666409 -0.087093 0.449678 -0.492516 -0.745129 -0.594548 0.457509 -0.661209 0.666560 0.740347 -0.087093 0.498821 -0.442675 -0.745129 -0.639224 0.392676 -0.661209 0.585295 0.806129 -0.087093 0.542081 -0.388499 -0.745129 -0.676535 0.324195 -0.661209 0.498446 0.862535 -0.087093 0.579813 -0.329545 -0.745129 -0.706787 0.251504 -0.661209 0.405301 0.910025 -0.087093 0.611158 -0.266962 -0.745129 -0.729254 0.176042 -0.661209 0.307692 0.947492 -0.087093 0.635772 -0.201438 -0.745129 -0.743688 0.098642 -0.661209 0.206693 0.974522 -0.087093 0.653248 -0.134348 -0.745129 -0.749910 0.020905 -0.661209 0.104409 0.990714 -0.087093 0.663731 -0.065143 -0.745129 -0.747971 -0.057806 -0.661209 0.000000 0.996200 -0.087093 0.666903 0.004779 -0.745129 -0.737793 -0.135881 -0.661209 -0.104409 0.990714 -0.087093 0.662804 0.073987 -0.745129 -0.719701 -0.211739 -0.661209 -0.206693 0.974522 -0.087093 0.651399 0.143046 -0.745129 -0.693545 -0.286003 -0.661209 -0.307692 0.947492 -0.087093 0.632819 0.210529 -0.745129 -0.659750 -0.357116 -0.661209 -0.405301 0.910025 -0.087093 0.607269 0.275694 -0.745129 -0.618689 -0.424296 -0.661209 -0.498446 0.862535 -0.087093 0.575368 0.337246 -0.745129 -0.571298 -0.486231 -0.661209 -0.585295 0.806129 -0.087093 0.536853 0.395692 -0.745129 -0.517192 -0.543429 -0.661209 -0.666560 0.740347 -0.087093 0.492425 0.449778 -0.745129 -0.457388 -0.594642 -0.661209 -0.740482 0.666409 -0.087093 0.443072 0.498468 -0.745129 -0.393185 -0.638911 -0.661209 -0.805663 0.585937 -0.087093 0.388388 0.542160 -0.745129 -0.324057 -0.676601 -0.661209 -0.862636 0.498270 -0.087093 0.329427 0.579880 -0.745129 -0.251360 -0.706838 -0.661209 -0.910108 0.405116 -0.087093 0.266837 0.611212 -0.745129 -0.175894 -0.729290 -0.661209 -0.947554 0.307499 -0.087093 0.201944 0.635611 -0.745129 -0.099234 -0.743609 -0.661209 -0.974357 0.207469 -0.087093 0.134215 0.653276 -0.745129 -0.020752 -0.749915 -0.661209 -0.990735 0.104207 -0.087093 0.243544 0.592258 -0.768061 0.179245 -0.805749 -0.564483 -0.953183 -0.000194 -0.302394 0.180130 0.614521 -0.768061 0.262706 -0.782525 -0.564483 -0.947913 -0.100093 -0.302394 0.115362 0.629901 -0.768061 0.342522 -0.751025 -0.564483 -0.932400 -0.197958 -0.302394 0.048708 0.638522 -0.768061 0.419348 -0.710990 -0.564483 -0.906518 -0.294590 -0.302394 -0.018482 0.640110 -0.768061 0.491556 -0.663123 -0.564483 -0.870650 -0.387977 -0.302394 -0.084833 0.634733 -0.768061 0.557740 -0.608510 -0.564483 -0.825669 -0.476265 -0.302394 -0.150891 0.622346 -0.768061 0.618445 -0.546704 -0.564483 -0.771206 -0.560178 -0.302394 -0.215286 0.603104 -0.768061 0.672337 -0.478876 -0.564483 -0.708247 -0.637921 -0.302394 -0.277310 0.577219 -0.768061 0.718824 -0.405773 -0.564483 -0.637488 -0.708637 -0.302394 -0.335734 0.545312 -0.768061 0.757065 -0.328957 -0.564483 -0.560478 -0.770988 -0.302394 -0.391038 0.507122 -0.768061 0.787372 -0.247800 -0.564483 -0.476586 -0.825484 -0.302394 -0.442034 0.463345 -0.768061 0.809007 -0.163913 -0.564483 -0.387445 -0.870887 -0.302394 -0.487747 0.414953 -0.768061 0.821652 -0.079042 -0.564483 -0.294943 -0.906403 -0.302394 -0.528551 0.361548 -0.768061 0.825411 0.007508 -0.564483 -0.198321 -0.932323 -0.302394 -0.563533 0.304161 -0.768061 0.820078 0.093976 -0.564483 -0.099514 -0.947974 -0.302394 -0.592109 0.243906 -0.768061 0.805858 0.178752 -0.564483 -0.000388 -0.953183 -0.302394 -0.614411 0.180506 -0.768061 0.782685 0.262227 -0.564483 0.099514 -0.947974 -0.302394 -0.629945 0.115117 -0.768061 0.750891 0.342814 -0.564483 0.198321 -0.932323 -0.302394 -0.638541 0.048460 -0.768061 0.710826 0.419625 -0.564483 0.294943 -0.906403 -0.302394 -0.640122 -0.018090 -0.768061 0.663423 0.491150 -0.564483 0.387445 -0.870887 -0.302394 -0.634700 -0.085080 -0.768061 0.608294 0.557977 -0.564483 0.476586 -0.825484 -0.302394 -0.622288 -0.151133 -0.768061 0.546463 0.618658 -0.564483 0.560478 -0.770988 -0.302394 -0.603236 -0.214917 -0.768061 0.479286 0.672045 -0.564483 0.637488 -0.708637 -0.302394 -0.577389 -0.276957 -0.768061 0.406212 0.718576 -0.564483 0.708247 -0.637921 -0.302394 -0.545182 -0.335946 -0.768061 0.328662 0.757192 -0.564483 0.771206 -0.560178 -0.302394 -0.506970 -0.391235 -0.768061 0.247493 0.787468 -0.564483 0.825669 -0.476265 -0.302394 -0.463615 -0.441751 -0.768061 0.164407 0.808907 -0.564483 0.870650 -0.387977 -0.302394 -0.414763 -0.487908 -0.768061 0.078722 0.821683 -0.564483 0.906518 -0.294590 -0.302394 -0.361343 -0.528691 -0.768061 -0.007830 0.825408 -0.564483 0.932400 -0.197958 -0.302394 -0.304505 -0.563347 -0.768061 -0.093475 0.820135 -0.564483 0.947913 -0.100093 -0.302394 -0.243786 -0.592158 -0.768061 -0.178916 0.805822 -0.564483 0.953183 -0.000194 -0.302394 -0.180380 -0.614448 -0.768061 -0.262387 0.782632 -0.564483 0.947954 0.099707 -0.302394 -0.114988 -0.629969 -0.768061 -0.342967 0.750821 -0.564483 0.932283 0.198511 -0.302394 -0.048968 -0.638502 -0.768061 -0.419059 0.711160 -0.564483 0.906638 0.294221 -0.302394 0.018221 -0.640118 -0.768061 -0.491286 0.663323 -0.564483 0.870808 0.387622 -0.302394 0.085209 -0.634683 -0.768061 -0.558101 0.608180 -0.564483 0.825386 0.476754 -0.302394 0.151259 -0.622257 -0.768061 -0.618769 0.546337 -0.564483 0.770873 0.560635 -0.302394 0.215040 -0.603192 -0.768061 -0.672142 0.479149 -0.564483 0.708507 0.637632 -0.302394 0.277075 -0.577332 -0.768061 -0.718659 0.406065 -0.564483 0.637777 0.708377 -0.302394 0.336057 -0.545113 -0.768061 -0.757259 0.328508 -0.564483 0.560021 0.771320 -0.302394 0.390831 -0.507281 -0.768061 -0.787271 0.248120 -0.564483 0.476923 0.825289 -0.302394 0.441845 -0.463525 -0.768061 -0.808940 0.164242 -0.564483 0.387800 0.870729 -0.302394 0.487993 -0.414664 -0.768061 -0.821699 0.078555 -0.564483 0.294405 0.906578 -0.302394 0.528765 -0.361235 -0.768061 -0.825406 -0.007998 -0.564483 0.197768 0.932441 -0.302394 0.563409 -0.304391 -0.768061 -0.820116 -0.093642 -0.564483 0.099900 0.947933 -0.302394 0.592208 -0.243665 -0.768061 -0.805785 -0.179080 -0.564483 0.000000 0.953183 -0.302394 0.614484 -0.180255 -0.768061 -0.782578 -0.262546 -0.564483 -0.099900 0.947933 -0.302394 0.629877 -0.115490 -0.768061 -0.751094 -0.342369 -0.564483 -0.197768 0.932441 -0.302394 0.638512 -0.048838 -0.768061 -0.711075 -0.419204 -0.564483 -0.294405 0.906578 -0.302394 0.640114 0.018351 -0.768061 -0.663223 -0.491421 -0.564483 -0.387800 0.870729 -0.302394 0.634665 0.085339 -0.768061 -0.608066 -0.558225 -0.564483 -0.476923 0.825289 -0.302394 0.622377 0.150764 -0.768061 -0.546830 -0.618334 -0.564483 -0.560021 0.771320 -0.302394 0.603148 0.215163 -0.768061 -0.479013 -0.672240 -0.564483 -0.637777 0.708377 -0.302394 0.577276 0.277192 -0.768061 -0.405919 -0.718741 -0.564483 -0.708507 0.637632 -0.302394 0.545381 0.335623 -0.768061 -0.329111 -0.756997 -0.564483 -0.770873 0.560635 -0.302394 0.507201 0.390935 -0.768061 -0.247960 -0.787322 -0.564483 -0.825386 0.476754 -0.302394 0.463435 0.441940 -0.768061 -0.164077 -0.808973 -0.564483 -0.870808 0.387622 -0.302394 0.414564 0.488077 -0.768061 -0.078387 -0.821715 -0.564483 -0.906638 0.294221 -0.302394 0.361656 0.528477 -0.768061 0.007340 -0.825412 -0.564483 -0.932283 0.198511 -0.302394 0.304276 0.563471 -0.768061 0.093809 -0.820097 -0.564483 -0.947954 0.099707 -0.302394 0.001389 0.549526 0.835476 -0.001157 0.835477 -0.549525 -0.999998 -0.000204 0.001796 -0.056213 0.546645 0.835476 -0.088715 0.830754 -0.549525 -0.994470 -0.105010 0.001796 -0.112658 0.537856 0.835476 -0.174478 0.817056 -0.549525 -0.978195 -0.207681 0.001796 -0.168409 0.523086 0.835476 -0.259151 0.794269 -0.549525 -0.951041 -0.309059 0.001796 -0.222304 0.502555 0.835476 -0.340968 0.762734 -0.549525 -0.913412 -0.407033 0.001796 -0.273275 0.476761 0.835476 -0.418308 0.723216 -0.549525 -0.866221 -0.499657 0.001796 -0.321738 0.445495 0.835476 -0.491802 0.675391 -0.549525 -0.809083 -0.587691 0.001796 -0.366657 0.409321 0.835476 -0.559879 0.620127 -0.549525 -0.743033 -0.669252 0.001796 -0.407537 0.368638 0.835476 -0.621790 0.558033 -0.549525 -0.668798 -0.743442 0.001796 -0.443605 0.324339 0.835476 -0.676361 0.490468 -0.549525 -0.588006 -0.808855 0.001796 -0.475154 0.276060 0.835476 -0.724040 0.416879 -0.549525 -0.499994 -0.866027 0.001796 -0.501471 0.224740 0.835476 -0.763745 0.338699 -0.549525 -0.406474 -0.913660 0.001796 -0.522092 0.171466 0.835476 -0.794779 0.257582 -0.549525 -0.309429 -0.950921 0.001796 -0.537187 0.115803 0.835476 -0.817398 0.172865 -0.549525 -0.208061 -0.978114 0.001796 -0.546366 0.058864 0.835476 -0.831014 0.086244 -0.549525 -0.104402 -0.994534 0.001796 -0.549525 0.001725 0.835476 -0.835477 -0.000647 -0.549525 -0.000407 -0.999998 0.001796 -0.546679 -0.055879 0.835476 -0.830808 -0.088207 -0.549525 0.104402 -0.994534 0.001796 -0.537812 -0.112867 0.835476 -0.816988 -0.174796 -0.549525 0.208061 -0.978114 0.001796 -0.523021 -0.168612 0.835476 -0.794168 -0.259460 -0.549525 0.309429 -0.950921 0.001796 -0.502691 -0.221997 0.835476 -0.762942 -0.340502 -0.549525 0.406474 -0.913660 0.001796 -0.476655 -0.273460 0.835476 -0.723053 -0.418589 -0.549525 0.499994 -0.866027 0.001796 -0.445369 -0.321911 0.835476 -0.675200 -0.492065 -0.549525 0.588006 -0.808855 0.001796 -0.409545 -0.366407 0.835476 -0.620469 -0.559500 -0.549525 0.668798 -0.743442 0.001796 -0.368887 -0.407312 0.835476 -0.558412 -0.621449 -0.549525 0.743033 -0.669252 0.001796 -0.324166 -0.443731 0.835476 -0.490205 -0.676552 -0.549525 0.809083 -0.587691 0.001796 -0.275875 -0.475262 0.835476 -0.416598 -0.724202 -0.549525 0.866221 -0.499657 0.001796 -0.225046 -0.501333 0.835476 -0.339165 -0.763538 -0.549525 0.913412 -0.407033 0.001796 -0.171263 -0.522159 0.835476 -0.257273 -0.794879 -0.549525 0.951041 -0.309059 0.001796 -0.115594 -0.537232 0.835476 -0.172547 -0.817466 -0.549525 0.978195 -0.207681 0.001796 -0.059198 -0.546330 0.835476 -0.086752 -0.830961 -0.549525 0.994470 -0.105010 0.001796 -0.001613 -0.549525 0.835476 0.000817 -0.835477 -0.549525 0.999998 -0.000204 0.001796 0.055990 -0.546668 0.835476 0.088376 -0.830790 -0.549525 0.994512 0.104604 0.001796 0.112977 -0.537789 0.835476 0.174963 -0.816952 -0.549525 0.978072 0.208260 0.001796 0.168196 -0.523155 0.835476 0.258827 -0.794375 -0.549525 0.951167 0.308671 0.001796 0.222100 -0.502645 0.835476 0.340658 -0.762873 -0.549525 0.913578 0.406660 0.001796 0.273557 -0.476599 0.835476 0.418736 -0.722968 -0.549525 0.865925 0.500170 0.001796 0.322002 -0.445304 0.835476 0.492202 -0.675100 -0.549525 0.808735 0.588171 0.001796 0.366490 -0.409470 0.835476 0.559627 -0.620355 -0.549525 0.743306 0.668950 0.001796 0.407387 -0.368804 0.835476 0.621562 -0.558286 -0.549525 0.669101 0.743169 0.001796 0.443797 -0.324076 0.835476 0.676651 -0.490067 -0.549525 0.587527 0.809203 0.001796 0.475042 -0.276253 0.835476 0.723870 -0.417174 -0.549525 0.500347 0.865823 0.001796 0.501379 -0.224944 0.835476 0.763607 -0.339010 -0.549525 0.406846 0.913495 0.001796 0.522193 -0.171157 0.835476 0.794932 -0.257111 -0.549525 0.308865 0.951104 0.001796 0.537256 -0.115485 0.835476 0.817501 -0.172381 -0.549525 0.207481 0.978237 0.001796 0.546342 -0.059087 0.835476 0.830979 -0.086582 -0.549525 0.104807 0.994491 0.001796 0.549526 -0.001501 0.835476 0.835477 0.000987 -0.549525 0.000000 0.999998 0.001796 0.546656 0.056102 0.835476 0.830772 0.088546 -0.549525 -0.104807 0.994491 0.001796 0.537879 0.112548 0.835476 0.817091 0.174312 -0.549525 -0.207481 0.978237 0.001796 0.523120 0.168302 0.835476 0.794322 0.258989 -0.549525 -0.308865 0.951104 0.001796 0.502600 0.222202 0.835476 0.762803 0.340813 -0.549525 -0.406846 0.913495 0.001796 0.476544 0.273654 0.835476 0.722883 0.418883 -0.549525 -0.500347 0.865823 0.001796 0.445560 0.321647 0.835476 0.675491 0.491664 -0.549525 -0.587527 0.809203 0.001796 0.409395 0.366573 0.835476 0.620241 0.559753 -0.549525 -0.669101 0.743169 0.001796 0.368721 0.407462 0.835476 0.558159 0.621676 -0.549525 -0.743306 0.668950 0.001796 0.324429 0.443538 0.835476 0.490606 0.676261 -0.549525 -0.808735 0.588171 0.001796 0.276156 0.475098 0.835476 0.417027 0.723955 -0.549525 -0.865925 0.500170 0.001796 0.224842 0.501425 0.835476 0.338854 0.763676 -0.549525 -0.913578 0.406660 0.001796 0.171051 0.522228 0.835476 0.256949 0.794984 -0.549525 -0.951167 0.308671 0.001796 0.115912 0.537164 0.835476 0.173032 0.817363 -0.549525 -0.978072 0.208260 0.001796 0.058975 0.546354 0.835476 0.086413 0.830997 -0.549525 -0.994512 0.104604 0.001796 -0.038146 0.906862 0.419697 0.081606 0.421427 -0.903183 -0.995934 -0.000203 -0.090081 -0.132982 0.897870 0.419697 0.036988 0.427659 -0.903183 -0.990428 -0.104583 -0.090081 -0.225473 0.879213 0.419697 -0.007608 0.429188 -0.903183 -0.974220 -0.206837 -0.090081 -0.316379 0.850740 0.419697 -0.052548 0.426027 -0.903183 -0.947176 -0.307803 -0.090081 -0.403801 0.812896 0.419697 -0.096909 0.418173 -0.903183 -0.909700 -0.405378 -0.090081 -0.486008 0.766584 0.419697 -0.139797 0.405853 -0.903183 -0.862701 -0.497626 -0.090081 -0.563674 0.711425 0.419697 -0.181564 0.388967 -0.903183 -0.805795 -0.585303 -0.090081 -0.635132 0.648430 0.419697 -0.221330 0.367795 -0.903183 -0.740013 -0.666533 -0.090081 -0.699595 0.578292 0.419697 -0.258659 0.342572 -0.903183 -0.666080 -0.740420 -0.090081 -0.755849 0.502541 0.419697 -0.292825 0.313869 -0.903183 -0.585616 -0.805567 -0.090081 -0.804356 0.420555 0.419697 -0.324108 0.281451 -0.903183 -0.497962 -0.862508 -0.090081 -0.844003 0.333936 0.419697 -0.351821 0.245932 -0.903183 -0.404822 -0.909947 -0.090081 -0.874109 0.244514 0.419697 -0.375451 0.208080 -0.903183 -0.308171 -0.947056 -0.090081 -0.894922 0.151554 0.419697 -0.395191 0.167584 -0.903183 -0.207216 -0.974139 -0.090081 -0.905877 0.056925 0.419697 -0.410579 0.125242 -0.903183 -0.103978 -0.990492 -0.090081 -0.906885 -0.037592 0.419697 -0.421377 0.081864 -0.903183 -0.000406 -0.995934 -0.090081 -0.897951 -0.132433 0.419697 -0.427636 0.037250 -0.903183 0.103978 -0.990492 -0.090081 -0.879126 -0.225815 0.419697 -0.429185 -0.007775 -0.903183 0.207216 -0.974139 -0.090081 -0.850617 -0.316710 0.419697 -0.426007 -0.052714 -0.903183 0.308171 -0.947056 -0.090081 -0.813142 -0.403304 0.419697 -0.418232 -0.096654 -0.903183 0.404822 -0.909947 -0.090081 -0.766395 -0.486306 0.419697 -0.405799 -0.139955 -0.903183 0.497962 -0.862508 -0.090081 -0.711206 -0.563951 0.419697 -0.388896 -0.181715 -0.903183 0.585616 -0.805567 -0.090081 -0.648818 -0.634736 0.419697 -0.367930 -0.221106 -0.903183 0.666080 -0.740420 -0.090081 -0.578719 -0.699241 0.419697 -0.342730 -0.258450 -0.903183 0.740013 -0.666533 -0.090081 -0.502247 -0.756044 0.419697 -0.313755 -0.292947 -0.903183 0.805795 -0.585303 -0.090081 -0.420242 -0.804519 0.419697 -0.281325 -0.324217 -0.903183 0.862701 -0.497626 -0.090081 -0.334452 -0.843799 0.419697 -0.246147 -0.351670 -0.903183 0.909700 -0.405378 -0.090081 -0.244174 -0.874205 0.419697 -0.207933 -0.375532 -0.903183 0.947176 -0.307803 -0.090081 -0.151206 -0.894981 0.419697 -0.167430 -0.395256 -0.903183 0.974220 -0.206837 -0.090081 -0.057479 -0.905842 0.419697 -0.125493 -0.410502 -0.903183 0.990428 -0.104583 -0.090081 0.037777 -0.906878 0.419697 -0.081778 -0.421394 -0.903183 0.995934 -0.000203 -0.090081 0.132616 -0.897924 0.419697 -0.037162 -0.427644 -0.903183 0.990471 0.104179 -0.090081 0.225994 -0.879080 0.419697 0.007862 -0.429184 -0.903183 0.974097 0.207414 -0.090081 0.316033 -0.850869 0.419697 0.052375 -0.426048 -0.903183 0.947302 0.307417 -0.090081 0.403469 -0.813060 0.419697 0.096739 -0.418213 -0.903183 0.909865 0.405008 -0.090081 0.486462 -0.766296 0.419697 0.140038 -0.405771 -0.903183 0.862406 0.498138 -0.090081 0.564096 -0.711091 0.419697 0.181794 -0.388859 -0.903183 0.805448 0.585781 -0.090081 0.634868 -0.648688 0.419697 0.221181 -0.367885 -0.903183 0.740285 0.666231 -0.090081 0.699359 -0.578577 0.419697 0.258519 -0.342678 -0.903183 0.666382 0.740149 -0.090081 0.756146 -0.502093 0.419697 0.293011 -0.313696 -0.903183 0.585139 0.805914 -0.090081 0.804184 -0.420882 0.419697 0.323993 -0.281583 -0.903183 0.498313 0.862305 -0.090081 0.843867 -0.334280 0.419697 0.351721 -0.246075 -0.903183 0.405193 0.909782 -0.090081 0.874254 -0.243996 0.419697 0.375574 -0.207857 -0.903183 0.307610 0.947239 -0.090081 0.895012 -0.151024 0.419697 0.395290 -0.167349 -0.903183 0.206638 0.974262 -0.090081 0.905854 -0.057294 0.419697 0.410528 -0.125409 -0.903183 0.104381 0.990449 -0.090081 0.906870 0.037961 0.419697 0.421410 -0.081692 -0.903183 0.000000 0.995934 -0.090081 0.897897 0.132799 0.419697 0.427651 -0.037075 -0.903183 -0.104381 0.990449 -0.090081 0.879259 0.225294 0.419697 0.429190 0.007521 -0.903183 -0.206638 0.974262 -0.090081 0.850804 0.316206 0.419697 0.426038 0.052461 -0.903183 -0.307610 0.947239 -0.090081 0.812978 0.403635 0.419697 0.418193 0.096824 -0.903183 -0.405193 0.909782 -0.090081 0.766197 0.486618 0.419697 0.405742 0.140121 -0.903183 -0.498313 0.862305 -0.090081 0.711540 0.563530 0.419697 0.389003 0.181485 -0.903183 -0.585139 0.805914 -0.090081 0.648559 0.635000 0.419697 0.367840 0.221255 -0.903183 -0.666382 0.740149 -0.090081 0.578435 0.699477 0.419697 0.342625 0.258589 -0.903183 -0.740285 0.666231 -0.090081 0.502695 0.755746 0.419697 0.313929 0.292761 -0.903183 -0.805448 0.585781 -0.090081 0.420718 0.804270 0.419697 0.281517 0.324050 -0.903183 -0.862406 0.498138 -0.090081 0.334108 0.843935 0.419697 0.246003 0.351771 -0.903183 -0.909865 0.405008 -0.090081 0.243818 0.874304 0.419697 0.207781 0.375616 -0.903183 -0.947302 0.307417 -0.090081 0.151737 0.894891 0.419697 0.167664 0.395157 -0.903183 -0.974097 0.207414 -0.090081 0.057110 0.905866 0.419697 0.125325 0.410553 -0.903183 -0.990471 0.104179 -0.090081 0.399599 0.381931 -0.833336 0.165317 -0.924191 -0.344298 -0.901660 -0.000184 -0.432446 0.357369 0.421708 -0.833336 0.261269 -0.901775 -0.344298 -0.896675 -0.094683 -0.432446 0.311660 0.456529 -0.833336 0.353473 -0.869779 -0.344298 -0.882001 -0.187258 -0.432446 0.262096 0.486679 -0.833336 0.442685 -0.827942 -0.344298 -0.857517 -0.278666 -0.432446 0.209645 0.511468 -0.833336 0.527021 -0.776986 -0.344298 -0.823588 -0.367006 -0.432446 0.155415 0.530468 -0.833336 0.604835 -0.718076 -0.344298 -0.781038 -0.450521 -0.432446 0.098963 0.543835 -0.833336 0.676763 -0.650731 -0.344298 -0.729519 -0.529899 -0.432446 0.041420 0.551212 -0.833336 0.741237 -0.576217 -0.344298 -0.669964 -0.603439 -0.432446 -0.016579 0.552518 -0.833336 0.797546 -0.495357 -0.344298 -0.603030 -0.670333 -0.432446 -0.073848 0.547811 -0.833336 0.844662 -0.409885 -0.344298 -0.530182 -0.729313 -0.432446 -0.130856 0.537054 -0.833336 0.882969 -0.319101 -0.344298 -0.450825 -0.780863 -0.432446 -0.186422 0.520382 -0.833336 0.911550 -0.224802 -0.344298 -0.366502 -0.823812 -0.432446 -0.239437 0.498217 -0.833336 0.929962 -0.128957 -0.344298 -0.279000 -0.857409 -0.432446 -0.290335 0.470379 -0.833336 0.938356 -0.030780 -0.344298 -0.187601 -0.881928 -0.432446 -0.338035 0.437359 -0.833336 0.936414 0.067736 -0.344298 -0.094135 -0.896733 -0.432446 -0.381686 0.399833 -0.833336 0.924292 0.164753 -0.344298 -0.000367 -0.901660 -0.432446 -0.421490 0.357627 -0.833336 0.901934 0.260718 -0.344298 0.094135 -0.896733 -0.432446 -0.456650 0.311482 -0.833336 0.869642 0.353811 -0.344298 0.187601 -0.881928 -0.432446 -0.486781 0.261907 -0.833336 0.827770 0.443007 -0.344298 0.279000 -0.857409 -0.432446 -0.511340 0.209958 -0.833336 0.777308 0.526546 -0.344298 0.366502 -0.823812 -0.432446 -0.530529 0.155209 -0.833336 0.717841 0.605114 -0.344298 0.450825 -0.780863 -0.432446 -0.543874 0.098751 -0.833336 0.650467 0.677016 -0.344298 0.530182 -0.729313 -0.432446 -0.551187 0.041757 -0.833336 0.576670 0.740885 -0.344298 0.603030 -0.670333 -0.432446 -0.552528 -0.016242 -0.833336 0.495844 0.797244 -0.344298 0.669964 -0.603439 -0.432446 -0.547782 -0.074061 -0.833336 0.409556 0.844821 -0.344298 0.729519 -0.529899 -0.432446 -0.537003 -0.131065 -0.833336 0.318758 0.883093 -0.344298 0.781038 -0.450521 -0.432446 -0.520496 -0.186104 -0.833336 0.225359 0.911412 -0.344298 0.823588 -0.367006 -0.432446 -0.498124 -0.239631 -0.833336 0.128595 0.930012 -0.344298 0.857517 -0.278666 -0.432446 -0.470266 -0.290518 -0.833336 0.030415 0.938368 -0.344298 0.882001 -0.187258 -0.432446 -0.437565 -0.337768 -0.833336 -0.067164 0.936455 -0.344298 0.896675 -0.094683 -0.432446 -0.399755 -0.381768 -0.833336 -0.164941 0.924258 -0.344298 0.901660 -0.000184 -0.432446 -0.357541 -0.421562 -0.833336 -0.260901 0.901881 -0.344298 0.896713 0.094318 -0.432446 -0.311389 -0.456714 -0.833336 -0.353988 0.869570 -0.344298 0.881890 0.187780 -0.432446 -0.262294 -0.486572 -0.833336 -0.442348 0.828123 -0.344298 0.857631 0.278317 -0.432446 -0.209853 -0.511383 -0.833336 -0.526705 0.777201 -0.344298 0.823738 0.366670 -0.432446 -0.155101 -0.530560 -0.833336 -0.605260 0.717718 -0.344298 0.780771 0.450984 -0.432446 -0.098640 -0.543894 -0.833336 -0.677149 0.650330 -0.344298 0.729205 0.530331 -0.432446 -0.041644 -0.551195 -0.833336 -0.741002 0.576519 -0.344298 0.670210 0.603166 -0.432446 0.016354 -0.552524 -0.833336 -0.797345 0.495682 -0.344298 0.603303 0.670087 -0.432446 0.074173 -0.547767 -0.833336 -0.844904 0.409384 -0.344298 0.529750 0.729627 -0.432446 0.130637 -0.537108 -0.833336 -0.882838 0.319461 -0.344298 0.451143 0.780679 -0.432446 0.186210 -0.520458 -0.833336 -0.911458 0.225173 -0.344298 0.366838 0.823663 -0.432446 0.239733 -0.498075 -0.833336 -0.930038 0.128406 -0.344298 0.278492 0.857574 -0.432446 0.290614 -0.470206 -0.833336 -0.938374 0.030224 -0.344298 0.187078 0.882039 -0.432446 0.337857 -0.437496 -0.833336 -0.936441 -0.067354 -0.344298 0.094500 0.896694 -0.432446 0.381849 -0.399677 -0.833336 -0.924225 -0.165129 -0.344298 0.000000 0.901660 -0.432446 0.421635 -0.357455 -0.833336 -0.901828 -0.261085 -0.344298 -0.094500 0.896694 -0.432446 0.456465 -0.311753 -0.833336 -0.869851 -0.353295 -0.344298 -0.187078 0.882039 -0.432446 0.486625 -0.262195 -0.833336 -0.828033 -0.442516 -0.344298 -0.278492 0.857574 -0.432446 0.511425 -0.209749 -0.833336 -0.777093 -0.526863 -0.344298 -0.366838 0.823663 -0.432446 0.530592 -0.154993 -0.833336 -0.717595 -0.605406 -0.344298 -0.451143 0.780679 -0.432446 0.543815 -0.099073 -0.833336 -0.650869 -0.676631 -0.344298 -0.529750 0.729627 -0.432446 0.551204 -0.041532 -0.833336 -0.576368 -0.741120 -0.344298 -0.603303 0.670087 -0.432446 0.552521 0.016467 -0.833336 -0.495519 -0.797446 -0.344298 -0.670210 0.603166 -0.432446 0.547826 0.073736 -0.833336 -0.410057 -0.844578 -0.344298 -0.729205 0.530331 -0.432446 0.537081 0.130747 -0.833336 -0.319281 -0.882904 -0.344298 -0.780771 0.450984 -0.432446 0.520420 0.186316 -0.833336 -0.224988 -0.911504 -0.344298 -0.823738 0.366670 -0.432446 0.498026 0.239834 -0.833336 -0.128217 -0.930064 -0.344298 -0.857631 0.278317 -0.432446 0.470438 0.290240 -0.833336 -0.030971 -0.938349 -0.344298 -0.881890 0.187780 -0.432446 0.437428 0.337946 -0.833336 0.067545 -0.936427 -0.344298 -0.896713 0.094318 -0.432446 -0.714445 0.244153 0.655711 0.179782 0.969737 -0.165195 -0.676200 -0.000138 -0.736718 -0.736099 0.167929 0.655711 0.077156 0.983238 -0.165195 -0.672462 -0.071008 -0.736718 -0.749555 0.090606 0.655711 -0.025333 0.985936 -0.165195 -0.661457 -0.140434 -0.736718 -0.754923 0.011548 0.655711 -0.128527 0.977850 -0.165195 -0.643095 -0.208986 -0.736718 -0.751976 -0.067637 0.655711 -0.230305 0.958994 -0.165195 -0.617650 -0.275236 -0.736718 -0.740891 -0.145336 0.655711 -0.328616 0.929904 -0.165195 -0.585740 -0.337869 -0.736718 -0.721579 -0.222186 0.655711 -0.424267 0.890342 -0.165195 -0.547103 -0.397398 -0.736718 -0.694318 -0.296589 0.655711 -0.515244 0.840972 -0.165195 -0.502440 -0.452549 -0.736718 -0.659409 -0.367725 0.655711 -0.600547 0.782339 -0.165195 -0.452242 -0.502716 -0.736718 -0.617672 -0.434194 0.655711 -0.678519 0.715768 -0.165195 -0.397610 -0.546949 -0.736718 -0.568763 -0.496539 0.655711 -0.749799 0.640712 -0.165195 -0.338097 -0.585609 -0.736718 -0.513590 -0.553415 0.655711 -0.812821 0.558599 -0.165195 -0.274859 -0.617818 -0.736718 -0.453364 -0.603741 0.655711 -0.866419 0.471200 -0.165195 -0.209236 -0.643014 -0.736718 -0.387591 -0.647932 0.655711 -0.911032 0.377798 -0.165195 -0.140691 -0.661402 -0.736718 -0.317548 -0.684986 0.655711 -0.945611 0.280234 -0.165195 -0.070597 -0.672505 -0.736718 -0.244590 -0.714296 0.655711 -0.969627 0.180374 -0.165195 -0.000275 -0.676200 -0.736718 -0.168379 -0.735997 0.655711 -0.983191 0.077757 -0.165195 0.070597 -0.672505 -0.736718 -0.090314 -0.749590 0.655711 -0.985926 -0.025717 -0.165195 0.140691 -0.661402 -0.736718 -0.011254 -0.754928 0.655711 -0.977800 -0.128907 -0.165195 0.209236 -0.643014 -0.736718 0.067177 -0.752017 0.655711 -0.959135 -0.229719 -0.165195 0.274859 -0.617818 -0.736718 0.145624 -0.740835 0.655711 -0.929776 -0.328978 -0.165195 0.338097 -0.585609 -0.736718 0.222467 -0.721492 0.655711 -0.890177 -0.424613 -0.165195 0.397610 -0.546949 -0.736718 0.296165 -0.694499 0.655711 -0.841287 -0.514731 -0.165195 0.452242 -0.502716 -0.736718 0.367322 -0.659634 0.655711 -0.782706 -0.600069 -0.165195 0.502440 -0.452549 -0.736718 0.434434 -0.617503 0.655711 -0.715504 -0.678797 -0.165195 0.547103 -0.397398 -0.736718 0.496760 -0.568570 0.655711 -0.640420 -0.750048 -0.165195 0.585740 -0.337869 -0.736718 0.553101 -0.513928 0.655711 -0.559096 -0.812479 -0.165195 0.617650 -0.275236 -0.736718 0.603918 -0.453129 0.655711 -0.470863 -0.866602 -0.165195 0.643095 -0.208986 -0.736718 0.648083 -0.387338 0.655711 -0.377443 -0.911179 -0.165195 0.661457 -0.140434 -0.736718 0.684792 -0.317966 0.655711 -0.280812 -0.945439 -0.165195 0.672462 -0.071008 -0.736718 0.714346 -0.244444 0.655711 -0.180177 -0.969663 -0.165195 0.676200 -0.000138 -0.736718 0.736031 -0.168229 0.655711 -0.077557 -0.983207 -0.165195 0.672491 0.070734 -0.736718 0.749609 -0.090161 0.655711 0.025918 -0.985920 -0.165195 0.661373 0.140826 -0.736718 0.754919 -0.011855 0.655711 0.128129 -0.977903 -0.165195 0.643180 0.208724 -0.736718 0.752003 0.067331 0.655711 0.229914 -0.959088 -0.165195 0.617762 0.274984 -0.736718 0.740805 0.145775 0.655711 0.329167 -0.929709 -0.165195 0.585540 0.338216 -0.736718 0.721447 0.222614 0.655711 0.424795 -0.890090 -0.165195 0.546868 0.397722 -0.736718 0.694439 0.296307 0.655711 0.514902 -0.841182 -0.165195 0.502624 0.452345 -0.736718 0.659559 0.367457 0.655711 0.600228 -0.782584 -0.165195 0.452447 0.502532 -0.736718 0.617414 0.434559 0.655711 0.678943 -0.715365 -0.165195 0.397286 0.547184 -0.736718 0.568966 0.496307 0.655711 0.749538 -0.641017 -0.165195 0.338335 0.585471 -0.736718 0.513816 0.553205 0.655711 0.812593 -0.558930 -0.165195 0.275110 0.617706 -0.736718 0.453006 0.604010 0.655711 0.866698 -0.470686 -0.165195 0.208855 0.643138 -0.736718 0.387206 0.648162 0.655711 0.911256 -0.377258 -0.165195 0.140299 0.661485 -0.736718 0.317827 0.684857 0.655711 0.945496 -0.280619 -0.165195 0.070871 0.672476 -0.736718 0.244299 0.714395 0.655711 0.969700 -0.179979 -0.165195 0.000000 0.676200 -0.736718 0.168079 0.736065 0.655711 0.983223 -0.077356 -0.165195 -0.070871 0.672476 -0.736718 0.090758 0.749537 0.655711 0.985941 0.025132 -0.165195 -0.140299 0.661485 -0.736718 0.011702 0.754921 0.655711 0.977877 0.128328 -0.165195 -0.208855 0.643138 -0.736718 -0.067484 0.751990 0.655711 0.959041 0.230109 -0.165195 -0.275110 0.617706 -0.736718 -0.145926 0.740775 0.655711 0.929642 0.329357 -0.165195 -0.338335 0.585471 -0.736718 -0.222039 0.721624 0.655711 0.890428 0.424086 -0.165195 -0.397286 0.547184 -0.736718 -0.296448 0.694378 0.655711 0.841077 0.515073 -0.165195 -0.452447 0.502532 -0.736718 -0.367591 0.659484 0.655711 0.782461 0.600387 -0.165195 -0.502624 0.452345 -0.736718 -0.434068 0.617760 0.655711 0.715906 0.678373 -0.165195 -0.546868 0.397722 -0.736718 -0.496423 0.568865 0.655711 0.640865 0.749669 -0.165195 -0.585540 0.338216 -0.736718 -0.553310 0.513703 0.655711 0.558765 0.812707 -0.165195 -0.617762 0.274984 -0.736718 -0.604102 0.452883 0.655711 0.470510 0.866794 -0.165195 -0.643180 0.208724 -0.736718 -0.647853 0.387722 0.655711 0.377983 0.910955 -0.165195 -0.661373 0.140826 -0.736718 -0.684921 0.317687 0.655711 0.280427 0.945553 -0.165195 -0.672491 0.070734 -0.736718 0.372894 0.724912 -0.579183 0.392629 -0.688842 -0.609377 -0.840710 -0.000171 -0.541486 0.294864 0.760001 -0.579183 0.462662 -0.643897 -0.609377 -0.836062 -0.088283 -0.541486 0.214373 0.786506 -0.579183 0.527007 -0.592388 -0.609377 -0.822379 -0.174599 -0.541486 0.130761 0.804642 -0.579183 0.586191 -0.533892 -0.609377 -0.799551 -0.259829 -0.541486 0.045709 0.813915 -0.579183 0.638918 -0.469514 -0.609377 -0.767916 -0.342197 -0.541486 -0.039033 0.814263 -0.579183 0.684207 -0.400650 -0.609377 -0.728242 -0.420067 -0.541486 -0.124159 0.805687 -0.579183 0.722430 -0.326733 -0.609377 -0.680205 -0.494079 -0.541486 -0.207917 0.788237 -0.579183 0.752695 -0.249218 -0.609377 -0.624676 -0.562648 -0.541486 -0.289384 0.762105 -0.579183 0.774670 -0.168957 -0.609377 -0.562266 -0.625020 -0.541486 -0.366937 0.727945 -0.579183 0.788024 -0.087624 -0.609377 -0.494343 -0.680013 -0.541486 -0.441210 0.685479 -0.579183 0.792868 -0.004551 -0.609377 -0.420350 -0.728079 -0.541486 -0.510623 0.635461 -0.579183 0.788978 0.078572 -0.609377 -0.341727 -0.768125 -0.541486 -0.573833 0.579019 -0.579183 0.776558 0.160054 -0.609377 -0.260140 -0.799450 -0.541486 -0.631358 0.515688 -0.579183 0.755507 0.240561 -0.609377 -0.174919 -0.822312 -0.541486 -0.681929 0.446677 -0.579183 0.726133 0.318419 -0.609377 -0.087772 -0.836115 -0.541486 -0.724684 0.373336 -0.579183 0.689081 0.392208 -0.609377 -0.000342 -0.840710 -0.541486 -0.759821 0.295328 -0.579183 0.644180 0.462268 -0.609377 0.087772 -0.836115 -0.541486 -0.786589 0.214067 -0.579183 0.592183 0.527237 -0.609377 0.174919 -0.822312 -0.541486 -0.804693 0.130448 -0.579183 0.533663 0.586399 -0.609377 0.260140 -0.799450 -0.541486 -0.813887 0.046206 -0.579183 0.469905 0.638631 -0.609377 0.341727 -0.768125 -0.541486 -0.814247 -0.039350 -0.579183 0.400383 0.684363 -0.609377 0.420350 -0.728079 -0.541486 -0.805639 -0.124472 -0.579183 0.326452 0.722557 -0.609377 0.494343 -0.680013 -0.541486 -0.788364 -0.207435 -0.579183 0.249678 0.752543 -0.609377 0.562266 -0.625020 -0.541486 -0.762281 -0.288919 -0.579183 0.169431 0.774566 -0.609377 0.624676 -0.562648 -0.541486 -0.727802 -0.367220 -0.579183 0.087317 0.788058 -0.609377 0.680205 -0.494079 -0.541486 -0.685307 -0.441476 -0.579183 0.004243 0.792869 -0.609377 0.728242 -0.420067 -0.541486 -0.635773 -0.510235 -0.579183 -0.078090 0.789026 -0.609377 0.767916 -0.342197 -0.541486 -0.578795 -0.574058 -0.579183 -0.160356 0.776496 -0.609377 0.799551 -0.259829 -0.541486 -0.515442 -0.631559 -0.579183 -0.240855 0.755413 -0.609377 0.822379 -0.174599 -0.541486 -0.447094 -0.681656 -0.579183 -0.317975 0.726328 -0.609377 0.836062 -0.088283 -0.541486 -0.373189 -0.724760 -0.579183 -0.392348 0.689001 -0.609377 0.840710 -0.000171 -0.541486 -0.295173 -0.759881 -0.579183 -0.462400 0.644086 -0.609377 0.836098 0.087942 -0.541486 -0.213907 -0.786633 -0.579183 -0.527358 0.592076 -0.609377 0.822276 0.175087 -0.541486 -0.131089 -0.804589 -0.579183 -0.585973 0.534130 -0.609377 0.799657 0.259503 -0.541486 -0.046040 -0.813896 -0.579183 -0.638727 0.469774 -0.609377 0.768055 0.341884 -0.541486 0.039516 -0.814239 -0.579183 -0.684445 0.400244 -0.609377 0.727993 0.420499 -0.541486 0.124636 -0.805613 -0.579183 -0.722624 0.326305 -0.609377 0.679912 0.494482 -0.541486 0.207596 -0.788322 -0.579183 -0.752594 0.249524 -0.609377 0.624905 0.562393 -0.541486 0.289074 -0.762223 -0.579183 -0.774601 0.169273 -0.609377 0.562521 0.624791 -0.541486 0.367368 -0.727728 -0.579183 -0.788076 0.087157 -0.609377 0.493940 0.680306 -0.541486 0.440931 -0.685658 -0.579183 -0.792866 0.004874 -0.609377 0.420647 0.727907 -0.541486 0.510364 -0.635669 -0.579183 -0.789010 -0.078251 -0.609377 0.342040 0.767985 -0.541486 0.574176 -0.578679 -0.579183 -0.776463 -0.160514 -0.609377 0.259666 0.799604 -0.541486 0.631664 -0.515314 -0.579183 -0.755364 -0.241009 -0.609377 0.174432 0.822415 -0.541486 0.681747 -0.446955 -0.579183 -0.726263 -0.318123 -0.609377 0.088112 0.836080 -0.541486 0.724836 -0.373041 -0.579183 -0.688921 -0.392489 -0.609377 0.000000 0.840710 -0.541486 0.759941 -0.295019 -0.579183 -0.643992 -0.462531 -0.609377 -0.088112 0.836080 -0.541486 0.786462 -0.214533 -0.579183 -0.592496 -0.526886 -0.609377 -0.174432 0.822415 -0.541486 0.804615 -0.130925 -0.579183 -0.534011 -0.586082 -0.609377 -0.259666 0.799604 -0.541486 0.813906 -0.045874 -0.579183 -0.469644 -0.638822 -0.609377 -0.342040 0.767985 -0.541486 0.814231 0.039681 -0.579183 -0.400105 -0.684526 -0.609377 -0.420647 0.727907 -0.541486 0.805712 0.123995 -0.579183 -0.326880 -0.722364 -0.609377 -0.493940 0.680306 -0.541486 0.788279 0.207756 -0.579183 -0.249371 -0.752645 -0.609377 -0.562521 0.624791 -0.541486 0.762164 0.289229 -0.579183 -0.169115 -0.774635 -0.609377 -0.624905 0.562393 -0.541486 0.728020 0.366789 -0.579183 -0.087785 -0.788006 -0.609377 -0.679912 0.494482 -0.541486 0.685568 0.441070 -0.579183 -0.004712 -0.792867 -0.609377 -0.727993 0.420499 -0.541486 0.635565 0.510494 -0.579183 0.078412 -0.788994 -0.609377 -0.768055 0.341884 -0.541486 0.578562 0.574294 -0.579183 0.160672 -0.776431 -0.609377 -0.799657 0.259503 -0.541486 0.515817 0.631253 -0.579183 0.240407 -0.755556 -0.609377 -0.822276 0.175087 -0.541486 0.446816 0.681838 -0.579183 0.318271 -0.726198 -0.609377 -0.836098 0.087942 -0.541486 0.213655 -0.702670 0.678680 0.210738 0.711516 0.670324 -0.953908 -0.000194 0.300099 0.286124 -0.676407 0.678680 0.135006 0.729685 0.670324 -0.948634 -0.100170 0.300099 0.354797 -0.643049 0.678680 0.058526 0.739757 0.670324 -0.933110 -0.198109 0.300099 0.420239 -0.602322 0.678680 -0.019328 0.741817 0.670324 -0.907207 -0.294814 0.300099 0.481053 -0.554961 0.678680 -0.096970 0.735706 0.670324 -0.871312 -0.388272 0.300099 0.536065 -0.502023 0.678680 -0.172821 0.721664 0.670324 -0.826297 -0.476628 0.300099 0.585729 -0.443075 0.678680 -0.247505 0.699577 0.670324 -0.771792 -0.560604 0.300099 0.628940 -0.379246 0.678680 -0.319462 0.669784 0.670324 -0.708786 -0.638406 0.300099 0.665224 -0.311240 0.678680 -0.387901 0.632613 0.670324 -0.637973 -0.709176 0.300099 0.693940 -0.240499 0.678680 -0.451479 0.588926 0.670324 -0.560905 -0.771574 0.300099 0.715325 -0.166445 0.678680 -0.510716 0.538364 0.670324 -0.476949 -0.826112 0.300099 0.728830 -0.090557 0.678680 -0.564327 0.481872 0.670324 -0.387740 -0.871549 0.300099 0.734293 -0.014406 0.678680 -0.611303 0.420684 0.670324 -0.295167 -0.907093 0.300099 0.731758 0.062632 0.678680 -0.652027 0.354299 0.670324 -0.198472 -0.933033 0.300099 0.721164 0.138981 0.678680 -0.685569 0.284010 0.670324 -0.099590 -0.948695 0.300099 0.702800 0.213226 0.678680 -0.711387 0.211173 0.670324 -0.000389 -0.953908 0.300099 0.676582 0.285710 0.678680 -0.729602 0.135452 0.670324 0.099590 -0.948695 0.300099 0.642911 0.355047 0.678680 -0.739780 0.058238 0.670324 0.198472 -0.933033 0.300099 0.602159 0.420474 0.678680 -0.741810 -0.019617 0.670324 0.295167 -0.907093 0.300099 0.555255 0.480713 0.678680 -0.735765 -0.096520 0.670324 0.387740 -0.871549 0.300099 0.501814 0.536261 0.678680 -0.721597 -0.173102 0.670324 0.476949 -0.826112 0.300099 0.442847 0.585901 0.678680 -0.699480 -0.247777 0.670324 0.560905 -0.771574 0.300099 0.379630 0.628708 0.678680 -0.669979 -0.319053 0.670324 0.637973 -0.709176 0.300099 0.311646 0.665034 0.678680 -0.632850 -0.387515 0.670324 0.708786 -0.638406 0.300099 0.240229 0.694034 0.678680 -0.588750 -0.451708 0.670324 0.771792 -0.560604 0.300099 0.166167 0.715389 0.678680 -0.538165 -0.510925 0.670324 0.826297 -0.476628 0.300099 0.091002 0.728774 0.678680 -0.482217 -0.564033 0.670324 0.871312 -0.388272 0.300099 0.014121 0.734298 0.678680 -0.420447 -0.611466 0.670324 0.907207 -0.294814 0.300099 -0.062917 0.731734 0.678680 -0.354045 -0.652164 0.670324 0.933110 -0.198109 0.300099 -0.138540 0.721249 0.678680 -0.284429 -0.685395 0.670324 0.948634 -0.100170 0.300099 -0.213369 0.702756 0.678680 -0.211028 -0.711430 0.670324 0.953908 -0.000194 0.300099 -0.285848 0.676523 0.678680 -0.135303 -0.729630 0.670324 0.948675 0.099783 0.300099 -0.355178 0.642839 0.678680 -0.058087 -0.739792 0.670324 0.932992 0.198662 0.300099 -0.419994 0.602493 0.678680 0.019026 -0.741825 0.670324 0.907327 0.294445 0.300099 -0.480826 0.555157 0.678680 0.096670 -0.735745 0.670324 0.871470 0.387917 0.300099 -0.536363 0.501705 0.678680 0.173249 -0.721562 0.670324 0.826014 0.477117 0.300099 -0.585991 0.442727 0.678680 0.247920 -0.699430 0.670324 0.771460 0.561062 0.300099 -0.628786 0.379502 0.678680 0.319190 -0.669914 0.670324 0.709046 0.638118 0.300099 -0.665097 0.311511 0.678680 0.387644 -0.632771 0.670324 0.638262 0.708916 0.300099 -0.694083 0.240088 0.678680 0.451827 -0.588658 0.670324 0.560447 0.771906 0.300099 -0.715257 0.166736 0.678680 0.510496 -0.538572 0.670324 0.477285 0.825917 0.300099 -0.728793 0.090854 0.678680 0.564131 -0.482102 0.670324 0.388095 0.871391 0.300099 -0.734301 0.013971 0.678680 0.611552 -0.420322 0.670324 0.294629 0.907267 0.300099 -0.731721 -0.063066 0.678680 0.652237 -0.353912 0.670324 0.197919 0.933150 0.300099 -0.721220 -0.138687 0.678680 0.685453 -0.284289 0.670324 0.099976 0.948655 0.300099 -0.702713 -0.213512 0.678680 0.711473 -0.210883 0.670324 0.000000 0.953908 0.300099 -0.676465 -0.285986 0.678680 0.729657 -0.135154 0.670324 -0.099976 0.948655 0.300099 -0.643121 -0.354666 0.678680 0.739745 -0.058677 0.670324 -0.197919 0.933150 0.300099 -0.602408 -0.420117 0.678680 0.741821 0.019177 0.670324 -0.294629 0.907267 0.300099 -0.555059 -0.480940 0.678680 0.735726 0.096820 0.670324 -0.388095 0.871391 0.300099 -0.501596 -0.536465 0.678680 0.721526 0.173396 0.670324 -0.477285 0.825917 0.300099 -0.443194 -0.585638 0.678680 0.699627 0.247363 0.670324 -0.560447 0.771906 0.300099 -0.379374 -0.628863 0.678680 0.669849 0.319326 0.670324 -0.638262 0.708916 0.300099 -0.311375 -0.665161 0.678680 0.632692 0.387772 0.670324 -0.709046 0.638118 0.300099 -0.240641 -0.693891 0.678680 0.589018 0.451359 0.670324 -0.771460 0.561062 0.300099 -0.166591 -0.715291 0.678680 0.538468 0.510606 0.670324 -0.826014 0.477117 0.300099 -0.090706 -0.728811 0.678680 0.481987 0.564229 0.670324 -0.871470 0.387917 0.300099 -0.013821 -0.734304 0.678680 0.420197 0.611637 0.670324 -0.907327 0.294445 0.300099 0.062483 -0.731771 0.678680 0.354431 0.651954 0.670324 -0.932992 0.198662 0.300099 0.138834 -0.721192 0.678680 0.284150 0.685511 0.670324 -0.948675 0.099783 0.300099 0.686201 -0.496049 -0.532037 -0.391932 -0.868294 0.304062 -0.612795 -0.000125 -0.790242 0.734411 -0.421398 -0.532037 -0.298770 -0.904590 0.304062 -0.609407 -0.064349 -0.790242 0.774189 -0.342880 -0.532037 -0.203248 -0.930718 0.304062 -0.599434 -0.127266 -0.790242 0.805862 -0.259851 -0.532037 -0.104583 -0.946894 0.304062 -0.582794 -0.189390 -0.790242 0.828658 -0.173960 -0.532037 -0.004766 -0.952640 0.304062 -0.559735 -0.249428 -0.790242 0.842240 -0.086995 -0.532037 0.094156 -0.947988 0.304062 -0.530817 -0.306188 -0.790242 0.846719 0.001757 -0.532037 0.192993 -0.932899 0.304062 -0.495803 -0.360135 -0.790242 0.841872 0.090489 -0.532037 0.289705 -0.907534 0.304062 -0.455328 -0.410115 -0.790242 0.827751 0.178225 -0.532037 0.383226 -0.872172 0.304062 -0.409837 -0.455578 -0.790242 0.804777 0.263193 -0.532037 0.471697 -0.827676 0.304062 -0.360328 -0.495663 -0.790242 0.772760 0.346090 -0.532037 0.555846 -0.773680 0.304062 -0.306394 -0.530698 -0.790242 0.732231 0.425175 -0.532037 0.633872 -0.711163 0.304062 -0.249086 -0.559887 -0.790242 0.684136 0.498892 -0.532037 0.704275 -0.641517 0.304062 -0.189617 -0.582720 -0.790242 0.628081 0.567847 -0.532037 0.767632 -0.564170 0.304062 -0.127499 -0.599384 -0.790242 0.565108 0.630547 -0.532037 0.822533 -0.480610 0.304062 -0.063977 -0.609446 -0.790242 0.496468 0.685897 -0.532037 0.868055 -0.392463 0.304062 -0.000250 -0.612795 -0.790242 0.421847 0.734153 -0.532037 0.904407 -0.299323 0.304062 0.063977 -0.609446 -0.790242 0.342579 0.774323 -0.532037 0.930797 -0.202886 0.304062 0.127499 -0.599384 -0.790242 0.259538 0.805963 -0.532037 0.946935 -0.104215 0.304062 0.189617 -0.582720 -0.790242 0.174467 0.828551 -0.532037 0.952637 -0.005348 0.304062 0.249086 -0.559887 -0.790242 0.086667 0.842274 -0.532037 0.947951 0.094525 0.304062 0.306394 -0.530698 -0.790242 -0.002086 0.846718 -0.532037 0.932823 0.193356 0.304062 0.360328 -0.495663 -0.790242 -0.089975 0.841927 -0.532037 0.907710 0.289151 0.304062 0.409837 -0.455578 -0.790242 -0.177719 0.827860 -0.532037 0.872406 0.382693 0.304062 0.455328 -0.410115 -0.790242 -0.263506 0.804674 -0.532037 0.827493 0.472019 0.304062 0.495803 -0.360135 -0.790242 -0.346391 0.772625 -0.532037 0.773464 0.556147 0.304062 0.530817 -0.306188 -0.790242 -0.424727 0.732491 -0.532037 0.711550 0.633437 0.304062 0.559735 -0.249428 -0.790242 -0.499158 0.683942 -0.532037 0.641242 0.704524 0.304062 0.582794 -0.189390 -0.790242 -0.568091 0.627860 -0.532037 0.563872 0.767851 0.304062 0.599434 -0.127266 -0.790242 -0.630202 0.565493 -0.532037 0.481112 0.822239 0.304062 0.609407 -0.064349 -0.790242 -0.685999 0.496329 -0.532037 0.392286 0.868135 0.304062 0.612795 -0.000125 -0.790242 -0.734239 0.421697 -0.532037 0.299139 0.904468 0.304062 0.609433 0.064101 -0.790242 -0.774392 0.342421 -0.532037 0.202697 0.930839 0.304062 0.599358 0.127621 -0.790242 -0.805756 0.260180 -0.532037 0.104969 0.946852 0.304062 0.582871 0.189153 -0.790242 -0.828587 0.174298 -0.532037 0.005154 0.952638 0.304062 0.559837 0.249200 -0.790242 -0.842291 0.086496 -0.532037 -0.094718 0.947932 0.304062 0.530635 0.306502 -0.790242 -0.846718 -0.002259 -0.532037 -0.193546 0.932784 0.304062 0.495589 0.360429 -0.790242 -0.841908 -0.090146 -0.532037 -0.289335 0.907652 0.304062 0.455495 0.409930 -0.790242 -0.827824 -0.177888 -0.532037 -0.382870 0.872328 0.304062 0.410022 0.455411 -0.790242 -0.804621 -0.263670 -0.532037 -0.472188 0.827396 0.304062 0.360034 0.495876 -0.790242 -0.772901 -0.345775 -0.532037 -0.555531 0.773907 0.304062 0.306610 0.530573 -0.790242 -0.732404 -0.424876 -0.532037 -0.633582 0.711421 0.304062 0.249314 0.559786 -0.790242 -0.683841 -0.499298 -0.532037 -0.704655 0.641099 0.304062 0.189271 0.582833 -0.790242 -0.627744 -0.568219 -0.532037 -0.767966 0.563715 0.304062 0.127144 0.599460 -0.790242 -0.565364 -0.630317 -0.532037 -0.822337 0.480945 0.304062 0.064225 0.609420 -0.790242 -0.496189 -0.686100 -0.532037 -0.868215 0.392109 0.304062 0.000000 0.612795 -0.790242 -0.421548 -0.734325 -0.532037 -0.904529 0.298955 0.304062 -0.064225 0.609420 -0.790242 -0.343038 -0.774119 -0.532037 -0.930677 0.203438 0.304062 -0.127144 0.599460 -0.790242 -0.260016 -0.805809 -0.532037 -0.946873 0.104776 0.304062 -0.189271 0.582833 -0.790242 -0.174129 -0.828622 -0.532037 -0.952639 0.004960 0.304062 -0.249314 0.559786 -0.790242 -0.086324 -0.842309 -0.532037 -0.947913 -0.094911 0.304062 -0.306610 0.530573 -0.790242 0.001584 -0.846719 -0.532037 -0.932938 -0.192804 0.304062 -0.360034 0.495876 -0.790242 0.090318 -0.841890 -0.532037 -0.907593 -0.289520 0.304062 -0.410022 0.455411 -0.790242 0.178057 -0.827787 -0.532037 -0.872250 -0.383048 0.304062 -0.455495 0.409930 -0.790242 0.263029 -0.804830 -0.532037 -0.827772 -0.471529 0.304062 -0.495589 0.360429 -0.790242 0.345933 -0.772830 -0.532037 -0.773794 -0.555689 0.304062 -0.530635 0.306502 -0.790242 0.425026 -0.732318 -0.532037 -0.711292 -0.633727 0.304062 -0.559837 0.249200 -0.790242 0.499437 -0.683739 -0.532037 -0.640955 -0.704785 0.304062 -0.582871 0.189153 -0.790242 0.567719 -0.628197 -0.532037 -0.564327 -0.767517 0.304062 -0.599358 0.127621 -0.790242 0.630432 -0.565236 -0.532037 -0.480777 -0.822435 0.304062 -0.609433 0.064101 -0.790242 -0.068564 0.185698 -0.980212 -0.012751 -0.982607 -0.185260 -0.997565 -0.000203 0.069740 -0.087649 0.177489 -0.980212 0.090303 -0.978532 -0.185260 -0.992050 -0.104754 0.069740 -0.105601 0.167431 -0.980212 0.191399 -0.963870 -0.185260 -0.975815 -0.207175 0.069740 -0.122568 0.155441 -0.980212 0.291365 -0.938501 -0.185260 -0.948727 -0.308307 0.069740 -0.138184 0.141739 -0.980212 0.388122 -0.902795 -0.185260 -0.911189 -0.406042 0.069740 -0.152152 0.126628 -0.980212 0.479747 -0.857626 -0.185260 -0.864114 -0.498441 0.069740 -0.164585 0.109984 -0.980212 0.566990 -0.802621 -0.185260 -0.807115 -0.586261 0.069740 -0.175206 0.092129 -0.980212 0.647988 -0.738776 -0.185260 -0.741225 -0.667624 0.069740 -0.183897 0.073259 -0.980212 0.721848 -0.666794 -0.185260 -0.667171 -0.741633 0.069740 -0.190508 0.053772 -0.980212 0.787170 -0.588254 -0.185260 -0.586575 -0.806886 0.069740 -0.195095 0.033509 -0.980212 0.844488 -0.502513 -0.185260 -0.498777 -0.863920 0.069740 -0.197532 0.012877 -0.980212 0.892504 -0.411237 -0.185260 -0.405485 -0.911437 0.069740 -0.197802 -0.007699 -0.980212 0.930373 -0.316362 -0.185260 -0.308676 -0.948607 0.069740 -0.195906 -0.028387 -0.980212 0.958406 -0.217110 -0.185260 -0.207555 -0.975734 0.069740 -0.191851 -0.048763 -0.980212 0.975882 -0.115467 -0.185260 -0.104148 -0.992114 0.069740 -0.185740 -0.068451 -0.980212 0.982599 -0.013352 -0.185260 -0.000406 -0.997565 0.069740 -0.177543 -0.087541 -0.980212 0.978587 0.089705 -0.185260 0.104148 -0.992114 0.069740 -0.167390 -0.105666 -0.980212 0.963795 0.191774 -0.185260 0.207555 -0.975734 0.069740 -0.155394 -0.122628 -0.980212 0.938388 0.291731 -0.185260 0.308676 -0.948607 0.069740 -0.141824 -0.138097 -0.980212 0.903033 0.387571 -0.185260 0.405485 -0.911437 0.069740 -0.126569 -0.152201 -0.980212 0.857439 0.480081 -0.185260 0.498777 -0.863920 0.069740 -0.109920 -0.164628 -0.980212 0.802401 0.567302 -0.185260 0.586575 -0.806886 0.069740 -0.092236 -0.175150 -0.980212 0.739172 0.647536 -0.185260 0.667171 -0.741633 0.069740 -0.073371 -0.183852 -0.980212 0.667235 0.721441 -0.185260 0.741225 -0.667624 0.069740 -0.053698 -0.190529 -0.980212 0.587948 0.787398 -0.185260 0.807115 -0.586261 0.069740 -0.033433 -0.195108 -0.980212 0.502185 0.844683 -0.185260 0.864114 -0.498441 0.069740 -0.012998 -0.197524 -0.980212 0.411783 0.892252 -0.185260 0.911189 -0.406042 0.069740 0.007776 -0.197799 -0.980212 0.316000 0.930496 -0.185260 0.948727 -0.308307 0.069740 0.028463 -0.195894 -0.980212 0.216737 0.958490 -0.185260 0.975815 -0.207175 0.069740 0.048646 -0.191881 -0.980212 0.116063 0.975812 -0.185260 0.992050 -0.104754 0.069740 0.068489 -0.185726 -0.980212 0.013152 0.982602 -0.185260 0.997565 -0.000203 0.069740 0.087577 -0.177525 -0.980212 -0.089905 0.978568 -0.185260 0.992092 0.104350 0.069740 0.105700 -0.167369 -0.980212 -0.191970 0.963756 -0.185260 0.975692 0.207754 0.069740 0.122504 -0.155491 -0.980212 -0.290983 0.938620 -0.185260 0.948853 0.307920 0.069740 0.138126 -0.141796 -0.980212 -0.387755 0.902954 -0.185260 0.911355 0.405671 0.069740 0.152227 -0.126538 -0.980212 -0.480255 0.857341 -0.185260 0.863818 0.498953 0.069740 0.164650 -0.109887 -0.980212 -0.567466 0.802285 -0.185260 0.806767 0.586740 0.069740 0.175168 -0.092200 -0.980212 -0.647687 0.739040 -0.185260 0.741497 0.667322 0.069740 0.183867 -0.073333 -0.980212 -0.721577 0.667088 -0.185260 0.667473 0.741361 0.069740 0.190540 -0.053659 -0.980212 -0.787518 0.587787 -0.185260 0.586097 0.807234 0.069740 0.195081 -0.033589 -0.980212 -0.844283 0.502857 -0.185260 0.499129 0.863717 0.069740 0.197527 -0.012958 -0.980212 -0.892336 0.411601 -0.185260 0.405857 0.911272 0.069740 0.197797 0.007816 -0.980212 -0.930560 0.315811 -0.185260 0.308114 0.948790 0.069740 0.195889 0.028503 -0.980212 -0.958534 0.216542 -0.185260 0.206977 0.975857 0.069740 0.191871 0.048685 -0.980212 -0.975835 0.115864 -0.185260 0.104552 0.992071 0.069740 0.185712 0.068526 -0.980212 -0.982604 0.012951 -0.185260 0.000000 0.997565 0.069740 0.177507 0.087613 -0.980212 -0.978550 -0.090104 -0.185260 -0.104552 0.992071 0.069740 0.167453 0.105567 -0.980212 -0.963909 -0.191203 -0.185260 -0.206977 0.975857 0.069740 0.155466 0.122536 -0.980212 -0.938561 -0.291174 -0.185260 -0.308114 0.948790 0.069740 0.141767 0.138155 -0.980212 -0.902875 -0.387939 -0.185260 -0.405857 0.911272 0.069740 0.126507 0.152252 -0.980212 -0.857243 -0.480430 -0.185260 -0.499129 0.863717 0.069740 0.110018 0.164563 -0.980212 -0.802737 -0.566827 -0.185260 -0.586097 0.807234 0.069740 0.092164 0.175187 -0.980212 -0.738908 -0.647837 -0.185260 -0.667473 0.741361 0.069740 0.073296 0.183882 -0.980212 -0.666941 -0.721712 -0.185260 -0.741497 0.667322 0.069740 0.053811 0.190497 -0.980212 -0.588414 -0.787050 -0.185260 -0.806767 0.586740 0.069740 0.033549 0.195088 -0.980212 -0.502685 -0.844385 -0.185260 -0.863818 0.498953 0.069740 0.012918 0.197530 -0.980212 -0.411419 -0.892420 -0.185260 -0.911355 0.405671 0.069740 -0.007856 0.197796 -0.980212 -0.315621 -0.930625 -0.185260 -0.948853 0.307920 0.069740 -0.028347 0.195911 -0.980212 -0.217305 -0.958362 -0.185260 -0.975692 0.207754 0.069740 -0.048724 0.191861 -0.980212 -0.115665 -0.975859 -0.185260 -0.992092 0.104350 0.069740 -0.099610 0.979847 0.173140 0.487859 0.199749 -0.849761 -0.867220 -0.000177 -0.497924 -0.201756 0.964011 0.173140 0.464237 0.249780 -0.849761 -0.862426 -0.091067 -0.497924 -0.300743 0.937857 0.173140 0.435799 0.296624 -0.849761 -0.848312 -0.180105 -0.497924 -0.397380 0.901172 0.173140 0.402310 0.340665 -0.849761 -0.824764 -0.268022 -0.497924 -0.489641 0.854561 0.173140 0.364390 0.380954 -0.849761 -0.792131 -0.352988 -0.497924 -0.575710 0.799112 0.173140 0.322874 0.416724 -0.849761 -0.751206 -0.433314 -0.497924 -0.656292 0.734373 0.173140 0.277420 0.448268 -0.849761 -0.701655 -0.509659 -0.497924 -0.729645 0.661544 0.173140 0.228910 0.474875 -0.849761 -0.644374 -0.580390 -0.497924 -0.794961 0.581429 0.173140 0.177879 0.496251 -0.849761 -0.579997 -0.644729 -0.497924 -0.851025 0.495760 0.173140 0.125401 0.512036 -0.849761 -0.509932 -0.701456 -0.497924 -0.898298 0.403836 0.173140 0.071045 0.522359 -0.849761 -0.433606 -0.751038 -0.497924 -0.935675 0.307464 0.173140 0.015907 0.526928 -0.849761 -0.352503 -0.792346 -0.497924 -0.962538 0.208668 0.173140 -0.038881 0.525732 -0.849761 -0.268343 -0.824659 -0.497924 -0.979107 0.106638 0.173140 -0.093767 0.518762 -0.849761 -0.180435 -0.848242 -0.497924 -0.984891 0.003433 0.173140 -0.147620 0.506077 -0.849761 -0.090540 -0.862481 -0.497924 -0.979908 -0.099011 0.173140 -0.199451 0.487981 -0.849761 -0.000353 -0.867220 -0.497924 -0.964134 -0.201167 0.173140 -0.249496 0.464390 -0.849761 0.090540 -0.862481 -0.497924 -0.937740 -0.301107 0.173140 -0.296793 0.435683 -0.849761 0.180435 -0.848242 -0.497924 -0.901017 -0.397731 0.173140 -0.340821 0.402178 -0.849761 0.268343 -0.824659 -0.497924 -0.854860 -0.489119 0.173140 -0.380731 0.364623 -0.849761 0.352503 -0.792346 -0.497924 -0.798889 -0.576021 0.173140 -0.416849 0.322712 -0.849761 0.433606 -0.751038 -0.497924 -0.734118 -0.656577 0.173140 -0.448376 0.277245 -0.849761 0.509932 -0.701456 -0.497924 -0.661990 -0.729241 0.173140 -0.474735 0.229200 -0.849761 0.579997 -0.644729 -0.497924 -0.581914 -0.794606 0.173140 -0.496142 0.178182 -0.849761 0.644374 -0.580390 -0.497924 -0.495429 -0.851218 0.173140 -0.512085 0.125202 -0.849761 0.701655 -0.509659 -0.497924 -0.403487 -0.898455 0.173140 -0.522386 0.070842 -0.849761 0.751206 -0.433314 -0.497924 -0.308036 -0.935487 0.173140 -0.526918 0.016229 -0.849761 0.792131 -0.352988 -0.497924 -0.208294 -0.962619 0.173140 -0.525717 -0.039085 -0.849761 0.824764 -0.268022 -0.497924 -0.106257 -0.979149 0.173140 -0.518725 -0.093969 -0.849761 0.848312 -0.180105 -0.497924 -0.004035 -0.984889 0.173140 -0.506167 -0.147311 -0.849761 0.862426 -0.091067 -0.497924 0.099211 -0.979888 0.173140 -0.487940 -0.199550 -0.849761 0.867220 -0.000177 -0.497924 0.201364 -0.964093 0.173140 -0.464339 -0.249591 -0.849761 0.862463 0.090715 -0.497924 0.301298 -0.937679 0.173140 -0.435623 -0.296882 -0.849761 0.848205 0.180608 -0.497924 0.397013 -0.901334 0.173140 -0.402449 -0.340501 -0.849761 0.824873 0.267687 -0.497924 0.489293 -0.854760 0.173140 -0.364545 -0.380805 -0.849761 0.792274 0.352665 -0.497924 0.576183 -0.798771 0.173140 -0.322627 -0.416915 -0.849761 0.750949 0.433759 -0.497924 0.656727 -0.733984 0.173140 -0.277154 -0.448433 -0.849761 0.701352 0.510075 -0.497924 0.729375 -0.661841 0.173140 -0.229104 -0.474782 -0.849761 0.644611 0.580128 -0.497924 0.794724 -0.581753 0.173140 -0.178081 -0.496179 -0.849761 0.580259 0.644493 -0.497924 0.851319 -0.495256 0.173140 -0.125098 -0.512110 -0.849761 0.509516 0.701758 -0.497924 0.898133 -0.404202 0.173140 -0.071258 -0.522330 -0.849761 0.433912 0.750861 -0.497924 0.935550 -0.307845 0.173140 -0.016122 -0.526921 -0.849761 0.352826 0.792203 -0.497924 0.962662 -0.208098 0.173140 0.039192 -0.525709 -0.849761 0.267855 0.824818 -0.497924 0.979170 -0.106058 0.173140 0.094074 -0.518706 -0.849761 0.179932 0.848349 -0.497924 0.984890 -0.003834 0.173140 0.147414 -0.506137 -0.849761 0.090891 0.862444 -0.497924 0.979867 0.099410 0.173140 0.199649 -0.487900 -0.849761 0.000000 0.867220 -0.497924 0.964052 0.201560 0.173140 0.249685 -0.464288 -0.849761 -0.090891 0.862444 -0.497924 0.937919 0.300552 0.173140 0.296535 -0.435859 -0.849761 -0.179932 0.848349 -0.497924 0.901253 0.397197 0.173140 0.340583 -0.402380 -0.849761 -0.267855 0.824818 -0.497924 0.854660 0.489467 0.173140 0.380880 -0.364468 -0.849761 -0.352826 0.792203 -0.497924 0.798654 0.576346 0.173140 0.416981 -0.322542 -0.849761 -0.433912 0.750861 -0.497924 0.734507 0.656142 0.173140 0.448212 -0.277511 -0.849761 -0.509516 0.701758 -0.497924 0.661693 0.729510 0.173140 0.474828 -0.229007 -0.849761 -0.580259 0.644493 -0.497924 0.581591 0.794843 0.173140 0.496215 -0.177980 -0.849761 -0.644611 0.580128 -0.497924 0.495934 0.850924 0.173140 0.512010 -0.125505 -0.849761 -0.701352 0.510075 -0.497924 0.404019 0.898215 0.173140 0.522344 -0.071152 -0.849761 -0.750949 0.433759 -0.497924 0.307655 0.935613 0.173140 0.526925 -0.016014 -0.849761 -0.792274 0.352665 -0.497924 0.207902 0.962704 0.173140 0.525701 0.039299 -0.849761 -0.824873 0.267687 -0.497924 0.106837 0.979085 0.173140 0.518781 0.093661 -0.849761 -0.848205 0.180608 -0.497924 0.003634 0.984891 0.173140 0.506107 0.147517 -0.849761 -0.862463 0.090715 -0.497924 -0.650173 0.577476 0.493757 0.459801 0.816407 -0.349374 -0.604862 -0.000123 -0.796330 -0.707116 0.506153 0.493757 0.371703 0.860102 -0.349374 -0.601518 -0.063516 -0.796330 -0.755840 0.430011 0.493757 0.280406 0.894042 -0.349374 -0.591674 -0.125618 -0.796330 -0.796746 0.348425 0.493757 0.185159 0.918506 -0.349374 -0.575250 -0.186938 -0.796330 -0.828875 0.263001 0.493757 0.087874 0.932854 -0.349374 -0.552489 -0.246199 -0.796330 -0.851700 0.175533 0.493757 -0.009443 0.936936 -0.349374 -0.523945 -0.302224 -0.796330 -0.865406 0.085302 0.493757 -0.107589 0.930786 -0.349374 -0.489385 -0.355473 -0.796330 -0.869580 -0.005869 0.493757 -0.204549 0.914384 -0.349374 -0.449433 -0.404806 -0.796330 -0.864176 -0.096975 0.493757 -0.299257 0.887910 -0.349374 -0.404531 -0.449680 -0.796330 -0.849439 -0.186163 0.493757 -0.389816 0.852045 -0.349374 -0.355663 -0.489246 -0.796330 -0.825250 -0.274165 0.493757 -0.476970 0.806497 -0.349374 -0.302428 -0.523828 -0.796330 -0.791970 -0.359147 0.493757 -0.558870 0.752066 -0.349374 -0.245861 -0.552639 -0.796330 -0.750407 -0.439423 0.493757 -0.633924 0.689985 -0.349374 -0.187162 -0.575177 -0.796330 -0.700220 -0.515651 0.493757 -0.702748 0.619745 -0.349374 -0.125849 -0.591625 -0.796330 -0.642319 -0.586199 0.493757 -0.763831 0.542679 -0.349374 -0.063149 -0.601557 -0.796330 -0.577873 -0.649820 0.493757 -0.816126 0.460300 -0.349374 -0.000246 -0.604862 -0.796330 -0.506585 -0.706806 0.493757 -0.859874 0.372229 -0.349374 0.063149 -0.601557 -0.796330 -0.429717 -0.756008 0.493757 -0.894151 0.280058 -0.349374 0.125849 -0.591625 -0.796330 -0.348115 -0.796881 0.493757 -0.918578 0.184802 -0.349374 0.187162 -0.575177 -0.796330 -0.263508 -0.828714 0.493757 -0.932800 0.088444 -0.349374 0.245861 -0.552639 -0.796330 -0.175201 -0.851768 0.493757 -0.936932 -0.009808 -0.349374 0.302428 -0.523828 -0.796330 -0.084965 -0.865439 0.493757 -0.930744 -0.107951 -0.349374 0.355663 -0.489246 -0.796330 0.005338 -0.869583 0.493757 -0.914509 -0.203991 -0.349374 0.404531 -0.449680 -0.796330 0.096447 -0.864235 0.493757 -0.888092 -0.298714 -0.349374 0.449433 -0.404806 -0.796330 0.186494 -0.849367 0.493757 -0.851894 -0.390148 -0.349374 0.489385 -0.355473 -0.796330 0.274486 -0.825143 0.493757 -0.806312 -0.477283 -0.349374 0.523945 -0.302224 -0.796330 0.358663 -0.792190 0.493757 -0.752407 -0.558410 -0.349374 0.552489 -0.246199 -0.796330 0.439715 -0.750236 0.493757 -0.689738 -0.634192 -0.349374 0.575250 -0.186938 -0.796330 0.515924 -0.700019 0.493757 -0.619471 -0.702989 -0.349374 0.591674 -0.125618 -0.796330 0.585807 -0.642677 0.493757 -0.543145 -0.763499 -0.349374 0.601518 -0.063516 -0.796330 0.649938 -0.577741 0.493757 -0.460134 -0.816220 -0.349374 0.604862 -0.000123 -0.796330 0.706910 -0.506441 0.493757 -0.372054 -0.859950 -0.349374 0.601544 0.063271 -0.796330 0.756095 -0.429563 0.493757 -0.279876 -0.894208 -0.349374 0.591599 0.125969 -0.796330 0.796604 -0.348750 0.493757 -0.185533 -0.918431 -0.349374 0.575326 0.186704 -0.796330 0.828768 -0.263339 0.493757 -0.088253 -0.932818 -0.349374 0.552589 0.245974 -0.796330 0.851803 -0.175028 0.493757 0.009998 -0.936930 -0.349374 0.523766 0.302534 -0.796330 0.865456 -0.084789 0.493757 0.108140 -0.930722 -0.349374 0.489174 0.355763 -0.796330 0.869582 0.005515 0.493757 0.204177 -0.914467 -0.349374 0.449598 0.404623 -0.796330 0.864215 0.096623 0.493757 0.298895 -0.888031 -0.349374 0.404714 0.449516 -0.796330 0.849329 0.186666 0.493757 0.390321 -0.851814 -0.349374 0.355373 0.489457 -0.796330 0.825361 0.273829 0.493757 0.476641 -0.806692 -0.349374 0.302641 0.523704 -0.796330 0.792117 0.358825 0.493757 0.558563 -0.752293 -0.349374 0.246086 0.552539 -0.796330 0.750147 0.439868 0.493757 0.634333 -0.689609 -0.349374 0.186821 0.575288 -0.796330 0.699914 0.516066 0.493757 0.703115 -0.619328 -0.349374 0.125498 0.591700 -0.796330 0.642558 0.585938 0.493757 0.763610 -0.542990 -0.349374 0.063394 0.601531 -0.796330 0.577609 0.650055 0.493757 0.816314 -0.459967 -0.349374 0.000000 0.604862 -0.796330 0.506297 0.707013 0.493757 0.860026 -0.371879 -0.349374 -0.063394 0.601531 -0.796330 0.430165 0.755753 0.493757 0.893985 -0.280588 -0.349374 -0.125498 0.591700 -0.796330 0.348587 0.796675 0.493757 0.918469 -0.185346 -0.349374 -0.186821 0.575288 -0.796330 0.263170 0.828822 0.493757 0.932836 -0.088064 -0.349374 -0.246086 0.552539 -0.796330 0.174854 0.851839 0.493757 0.936928 0.010189 -0.349374 -0.302641 0.523704 -0.796330 0.085478 0.865389 0.493757 0.930808 0.107399 -0.349374 -0.355373 0.489457 -0.796330 -0.005692 0.869581 0.493757 0.914425 0.204363 -0.349374 -0.404714 0.449516 -0.796330 -0.096799 0.864196 0.493757 0.887971 0.299076 -0.349374 -0.449598 0.404623 -0.796330 -0.185990 0.849477 0.493757 0.852125 0.389643 -0.349374 -0.489174 0.355763 -0.796330 -0.273997 0.825306 0.493757 0.806594 0.476805 -0.349374 -0.523766 0.302534 -0.796330 -0.358986 0.792044 0.493757 0.752180 0.558716 -0.349374 -0.552589 0.245974 -0.796330 -0.440021 0.750057 0.493757 0.689480 0.634473 -0.349374 -0.575326 0.186704 -0.796330 -0.515509 0.700325 0.493757 0.619888 0.702622 -0.349374 -0.591599 0.125969 -0.796330 -0.586069 0.642439 0.493757 0.542834 0.763721 -0.349374 -0.601544 0.063271 -0.796330 -0.479364 -0.264133 0.836925 -0.131437 0.964486 0.229108 -0.867718 -0.000177 -0.497057 -0.449041 -0.312919 0.836925 -0.231798 0.945399 0.229108 -0.862920 -0.091119 -0.497057 -0.414130 -0.357845 0.836925 -0.328690 0.916227 0.229108 -0.848799 -0.180209 -0.497057 -0.374344 -0.399278 0.836925 -0.422907 0.876732 0.229108 -0.825237 -0.268176 -0.497057 -0.330436 -0.436312 0.836925 -0.512466 0.827580 0.229108 -0.792585 -0.353190 -0.497057 -0.283355 -0.468258 0.836925 -0.595610 0.769908 0.229108 -0.751637 -0.433562 -0.497057 -0.232718 -0.495377 0.836925 -0.673022 0.703243 0.229108 -0.702057 -0.509951 -0.497057 -0.179517 -0.517039 0.836925 -0.743020 0.628833 0.229108 -0.644744 -0.580723 -0.497057 -0.124339 -0.533007 0.836925 -0.804834 0.547496 0.229108 -0.580329 -0.645099 -0.497057 -0.068334 -0.543035 0.836925 -0.857322 0.460986 0.229108 -0.510224 -0.701859 -0.497057 -0.011044 -0.547206 0.836925 -0.900915 0.368593 0.229108 -0.433854 -0.751468 -0.497057 0.046368 -0.545350 0.836925 -0.934585 0.272141 0.229108 -0.352706 -0.792801 -0.497057 0.102731 -0.537589 0.836925 -0.957787 0.173649 0.229108 -0.268497 -0.825132 -0.497057 0.158509 -0.523862 0.836925 -0.970711 0.072310 0.229108 -0.180539 -0.848729 -0.497057 0.212540 -0.504364 0.836925 -0.972944 -0.029826 0.229108 -0.090592 -0.862976 -0.497057 0.263840 -0.479525 0.836925 -0.964566 -0.130848 0.229108 -0.000353 -0.867718 -0.497057 0.312645 -0.449232 0.836925 -0.945540 -0.231221 0.229108 0.090592 -0.862976 -0.497057 0.358006 -0.413991 0.836925 -0.916099 -0.329047 0.229108 0.180539 -0.848729 -0.497057 0.399423 -0.374189 0.836925 -0.876567 -0.423248 0.229108 0.268497 -0.825132 -0.497057 0.436110 -0.330702 0.836925 -0.827893 -0.511960 0.229108 0.352706 -0.792801 -0.497057 0.468369 -0.283173 0.836925 -0.769676 -0.595909 0.229108 0.433854 -0.751468 -0.497057 0.495468 -0.232525 0.836925 -0.702982 -0.673295 0.229108 0.510224 -0.701859 -0.497057 0.516930 -0.179833 0.836925 -0.629287 -0.742636 0.229108 0.580329 -0.645099 -0.497057 0.532930 -0.124665 0.836925 -0.547987 -0.804499 0.229108 0.644744 -0.580723 -0.497057 0.543061 -0.068123 0.836925 -0.460652 -0.857502 0.229108 0.702057 -0.509951 -0.497057 0.547210 -0.010831 0.836925 -0.368243 -0.901059 0.229108 0.751637 -0.433562 -0.497057 0.545378 0.046034 0.836925 -0.272712 -0.934418 0.229108 0.792585 -0.353190 -0.497057 0.537549 0.102940 0.836925 -0.173276 -0.957854 0.229108 0.825237 -0.268176 -0.497057 0.523800 0.158713 0.836925 -0.071932 -0.970740 0.229108 0.848799 -0.180209 -0.497057 0.504494 0.212232 0.836925 0.029232 -0.972962 0.229108 0.862920 -0.091119 -0.497057 0.479472 0.263938 0.836925 0.131044 -0.964540 0.229108 0.867718 -0.000177 -0.497057 0.449168 0.312736 0.836925 0.231413 -0.945493 0.229108 0.862958 0.090767 -0.497057 0.413918 0.358090 0.836925 0.329233 -0.916032 0.229108 0.848692 0.180712 -0.497057 0.374507 0.399125 0.836925 0.422550 -0.876904 0.229108 0.825346 0.267840 -0.497057 0.330613 0.436178 0.836925 0.512129 -0.827788 0.229108 0.792729 0.352867 -0.497057 0.283078 0.468426 0.836925 0.596066 -0.769555 0.229108 0.751380 0.434007 -0.497057 0.232424 0.495515 0.836925 0.673438 -0.702844 0.229108 0.701755 0.510367 -0.497057 0.179728 0.516966 0.836925 0.742764 -0.629135 0.229108 0.644981 0.580461 -0.497057 0.124556 0.532956 0.836925 0.804611 -0.547824 0.229108 0.580592 0.644862 -0.497057 0.068013 0.543075 0.836925 0.857595 -0.460477 0.229108 0.509808 0.702161 -0.497057 0.011267 0.547201 0.836925 0.900765 -0.368960 0.229108 0.434160 0.751292 -0.497057 -0.046146 0.545368 0.836925 0.934474 -0.272522 0.229108 0.353029 0.792657 -0.497057 -0.103050 0.537529 0.836925 0.957889 -0.173081 0.229108 0.268008 0.825291 -0.497057 -0.158819 0.523768 0.836925 0.970754 -0.071734 0.229108 0.180036 0.848835 -0.497057 -0.212335 0.504450 0.836925 0.972956 0.029430 0.229108 0.090943 0.862939 -0.497057 -0.264035 0.479418 0.836925 0.964513 0.131241 0.229108 0.000000 0.867718 -0.497057 -0.312828 0.449105 0.836925 0.945446 0.231606 0.229108 -0.090943 0.862939 -0.497057 -0.357760 0.414203 0.836925 0.916294 0.328504 0.229108 -0.180036 0.848835 -0.497057 -0.399201 0.374426 0.836925 0.876818 0.422729 0.229108 -0.268008 0.825291 -0.497057 -0.436245 0.330524 0.836925 0.827684 0.512297 0.229108 -0.353029 0.792657 -0.497057 -0.468484 0.282982 0.836925 0.769433 0.596223 0.229108 -0.434160 0.751292 -0.497057 -0.495330 0.232819 0.836925 0.703380 0.672878 0.229108 -0.509808 0.702161 -0.497057 -0.517003 0.179623 0.836925 0.628984 0.742892 0.229108 -0.580592 0.644862 -0.497057 -0.532981 0.124448 0.836925 0.547660 0.804722 0.229108 -0.644981 0.580461 -0.497057 -0.543021 0.068445 0.836925 0.461160 0.857228 0.229108 -0.701755 0.510367 -0.497057 -0.547204 0.011156 0.836925 0.368777 0.900840 0.229108 -0.751380 0.434007 -0.497057 -0.545359 -0.046257 0.836925 0.272331 0.934529 0.229108 -0.792729 0.352867 -0.497057 -0.537508 -0.103159 0.836925 0.172886 0.957925 0.229108 -0.825346 0.267840 -0.497057 -0.523894 -0.158402 0.836925 0.072507 0.970697 0.229108 -0.848692 0.180712 -0.497057 -0.504407 -0.212438 0.836925 -0.029628 0.972950 0.229108 -0.862958 0.090767 -0.497057 0.192570 0.848884 -0.492252 0.309597 -0.528579 -0.790414 -0.931164 -0.000190 -0.364600 0.102541 0.864392 -0.492252 0.363291 -0.493220 -0.790414 -0.926016 -0.097781 -0.364600 0.012252 0.870366 -0.492252 0.412530 -0.452841 -0.790414 -0.910862 -0.193385 -0.364600 -0.079036 0.866857 -0.492252 0.457719 -0.407111 -0.790414 -0.885577 -0.287785 -0.364600 -0.169454 0.853799 -0.492252 0.497866 -0.356896 -0.790414 -0.850538 -0.379015 -0.364600 -0.257174 0.831594 -0.492252 0.532227 -0.303283 -0.790414 -0.806596 -0.465263 -0.364600 -0.342914 0.800061 -0.492252 0.561082 -0.245832 -0.790414 -0.753390 -0.547238 -0.364600 -0.424878 0.759715 -0.492252 0.583757 -0.185672 -0.790414 -0.691887 -0.623185 -0.364600 -0.502161 0.711000 -0.492252 0.600001 -0.123468 -0.790414 -0.622762 -0.692267 -0.364600 -0.573259 0.655028 -0.492252 0.609577 -0.060513 -0.790414 -0.547531 -0.753178 -0.364600 -0.638753 0.591339 -0.492252 0.612562 0.003708 -0.790414 -0.465577 -0.806415 -0.364600 -0.697212 0.521136 -0.492252 0.608800 0.067889 -0.790414 -0.378495 -0.850769 -0.364600 -0.747545 0.445941 -0.492252 0.598463 0.130723 -0.790414 -0.288129 -0.885465 -0.364600 -0.790166 0.365137 -0.492252 0.581466 0.192726 -0.790414 -0.193739 -0.910786 -0.364600 -0.824083 0.280311 -0.492252 0.558064 0.252607 -0.790414 -0.097215 -0.926075 -0.364600 -0.848766 0.193089 -0.492252 0.528768 0.309274 -0.790414 -0.000379 -0.931164 -0.364600 -0.864329 0.103069 -0.492252 0.493442 0.362989 -0.790414 0.097215 -0.926075 -0.364600 -0.870371 0.011913 -0.492252 0.452680 0.412706 -0.790414 0.193739 -0.910786 -0.364600 -0.866826 -0.079374 -0.492252 0.406933 0.457878 -0.790414 0.288129 -0.885465 -0.364600 -0.853902 -0.168932 -0.492252 0.357200 0.497648 -0.790414 0.378495 -0.850769 -0.364600 -0.831494 -0.257497 -0.492252 0.303076 0.532345 -0.790414 0.465577 -0.806415 -0.364600 -0.799927 -0.343225 -0.492252 0.245613 0.561177 -0.790414 0.547531 -0.753178 -0.364600 -0.759974 -0.424413 -0.492252 0.186029 0.583643 -0.790414 0.622762 -0.692267 -0.364600 -0.711307 -0.501727 -0.492252 0.123834 0.599926 -0.790414 0.691887 -0.623185 -0.364600 -0.654805 -0.573514 -0.492252 0.060276 0.609601 -0.790414 0.753390 -0.547238 -0.364600 -0.591091 -0.638983 -0.492252 -0.003946 0.612561 -0.790414 0.806596 -0.465263 -0.364600 -0.521562 -0.696893 -0.492252 -0.067517 0.608841 -0.790414 0.850538 -0.379015 -0.364600 -0.445650 -0.747719 -0.492252 -0.130956 0.598412 -0.790414 0.885577 -0.287785 -0.364600 -0.364830 -0.790308 -0.492252 -0.192952 0.581391 -0.790414 0.910862 -0.193385 -0.364600 -0.280814 -0.823912 -0.492252 -0.252266 0.558219 -0.790414 0.926016 -0.097781 -0.364600 -0.192916 -0.848806 -0.492252 -0.309382 0.528705 -0.790414 0.931164 -0.000190 -0.364600 -0.102893 -0.864350 -0.492252 -0.363090 0.493368 -0.790414 0.926056 0.097404 -0.364600 -0.011736 -0.870373 -0.492252 -0.412799 0.452596 -0.790414 0.910747 0.193925 -0.364600 0.078683 -0.866889 -0.492252 -0.457553 0.407297 -0.790414 0.885694 0.287424 -0.364600 0.169106 -0.853868 -0.492252 -0.497721 0.357099 -0.790414 0.850692 0.378668 -0.364600 0.257666 -0.831442 -0.492252 -0.532406 0.302968 -0.790414 0.806320 0.465741 -0.364600 0.343388 -0.799857 -0.492252 -0.561227 0.245499 -0.790414 0.753066 0.547684 -0.364600 0.424568 -0.759888 -0.492252 -0.583681 0.185910 -0.790414 0.692141 0.622903 -0.364600 0.501872 -0.711205 -0.492252 -0.599951 0.123712 -0.790414 0.623044 0.692014 -0.364600 0.573647 -0.654688 -0.492252 -0.609613 0.060152 -0.790414 0.547085 0.753502 -0.364600 0.638512 -0.591599 -0.492252 -0.612563 -0.003459 -0.790414 0.465906 0.806225 -0.364600 0.697000 -0.521420 -0.492252 -0.608827 -0.067641 -0.790414 0.378841 0.850615 -0.364600 0.747809 -0.445498 -0.492252 -0.598385 -0.131078 -0.790414 0.287604 0.885635 -0.364600 0.790382 -0.364669 -0.492252 -0.581352 -0.193071 -0.790414 0.193200 0.910901 -0.364600 0.823969 -0.280647 -0.492252 -0.558167 -0.252379 -0.790414 0.097593 0.926036 -0.364600 0.848845 -0.192743 -0.492252 -0.528642 -0.309489 -0.790414 0.000000 0.931164 -0.364600 0.864371 -0.102717 -0.492252 -0.493294 -0.363190 -0.790414 -0.097593 0.926036 -0.364600 0.870364 -0.012429 -0.492252 -0.452925 -0.412438 -0.790414 -0.193200 0.910901 -0.364600 0.866873 0.078860 -0.492252 -0.407204 -0.457636 -0.790414 -0.287604 0.885635 -0.364600 0.853834 0.169280 -0.492252 -0.356998 -0.497794 -0.790414 -0.378841 0.850615 -0.364600 0.831389 0.257836 -0.492252 -0.302859 -0.532468 -0.790414 -0.465906 0.806225 -0.364600 0.800131 0.342751 -0.492252 -0.245946 -0.561032 -0.790414 -0.547085 0.753502 -0.364600 0.759801 0.424723 -0.492252 -0.185791 -0.583719 -0.790414 -0.623044 0.692014 -0.364600 0.711103 0.502016 -0.492252 -0.123590 -0.599976 -0.790414 -0.692141 0.622903 -0.364600 0.655145 0.573125 -0.492252 -0.060637 -0.609565 -0.790414 -0.753066 0.547684 -0.364600 0.591469 0.638633 -0.492252 0.003584 -0.612563 -0.790414 -0.806320 0.465741 -0.364600 0.521278 0.697106 -0.492252 0.067765 -0.608814 -0.790414 -0.850692 0.378668 -0.364600 0.445346 0.747900 -0.492252 0.131200 -0.598358 -0.790414 -0.885694 0.287424 -0.364600 0.365298 0.790092 -0.492252 0.192608 -0.581505 -0.790414 -0.910747 0.193925 -0.364600 0.280479 0.824026 -0.492252 0.252493 -0.558116 -0.790414 -0.926056 0.097404 -0.364600 -0.878797 -0.149818 -0.453068 0.133206 -0.988714 0.068569 -0.458228 -0.000093 0.888835 -0.858255 -0.241098 -0.453068 0.236097 -0.969307 0.068569 -0.455694 -0.048118 0.888835 -0.828589 -0.328893 -0.453068 0.335447 -0.939560 0.068569 -0.448237 -0.095165 0.888835 -0.789555 -0.413923 -0.453068 0.432073 -0.899228 0.068569 -0.435794 -0.141619 0.888835 -0.741824 -0.494395 -0.453068 0.523939 -0.848992 0.068569 -0.418551 -0.186514 0.888835 -0.686492 -0.568734 -0.453068 0.609244 -0.790013 0.068569 -0.396927 -0.228957 0.888835 -0.623104 -0.637551 -0.453068 0.688687 -0.721809 0.068569 -0.370745 -0.269297 0.888835 -0.552852 -0.699345 -0.453068 0.760545 -0.645654 0.068569 -0.340479 -0.306670 0.888835 -0.476511 -0.753437 -0.453068 0.824026 -0.562388 0.068569 -0.306462 -0.340666 0.888835 -0.395720 -0.798834 -0.453068 0.877956 -0.473805 0.068569 -0.269441 -0.370640 0.888835 -0.309817 -0.835908 -0.453068 0.922779 -0.379179 0.068569 -0.229111 -0.396838 0.888835 -0.220501 -0.863776 -0.453068 0.957438 -0.280377 0.068569 -0.186258 -0.418665 0.888835 -0.129639 -0.881999 -0.453068 0.981371 -0.179468 0.068569 -0.141789 -0.435739 0.888835 -0.036485 -0.890729 -0.453068 0.994776 -0.075625 0.068569 -0.095340 -0.448200 0.888835 0.057070 -0.889647 -0.453068 0.997223 0.029051 0.068569 -0.047840 -0.455723 0.888835 0.149282 -0.878888 -0.453068 0.988795 0.132602 0.068569 -0.000187 -0.458227 0.888835 0.240573 -0.858402 -0.453068 0.969451 0.235505 0.068569 0.047840 -0.455723 0.888835 0.329215 -0.828461 -0.453068 0.939430 0.335813 0.068569 0.095340 -0.448200 0.888835 0.414230 -0.789394 -0.453068 0.899060 0.432422 0.068569 0.141789 -0.435739 0.888835 0.493941 -0.742126 -0.453068 0.849312 0.523420 0.068569 0.186258 -0.418665 0.888835 0.569001 -0.686270 -0.453068 0.789776 0.609551 0.068569 0.229111 -0.396838 0.888835 0.637793 -0.622855 -0.453068 0.721541 0.688968 0.068569 0.269441 -0.370640 0.888835 0.699008 -0.553279 -0.453068 0.646119 0.760151 0.068569 0.306462 -0.340666 0.888835 0.753145 -0.476971 -0.453068 0.562891 0.823682 0.068569 0.340479 -0.306670 0.888835 0.798988 -0.395409 -0.453068 0.473463 0.878141 0.068569 0.370745 -0.269297 0.888835 0.836029 -0.309492 -0.453068 0.378820 0.922927 0.068569 0.396927 -0.228957 0.888835 0.863641 -0.221029 -0.453068 0.280962 0.957266 0.068569 0.418551 -0.186514 0.888835 0.882050 -0.129296 -0.453068 0.179086 0.981441 0.068569 0.435794 -0.141619 0.888835 0.890743 -0.036139 -0.453068 0.075238 0.994805 0.068569 0.448237 -0.095165 0.888835 0.889682 0.056527 -0.453068 -0.028442 0.997241 0.068569 0.455694 -0.048118 0.888835 0.878858 0.149460 -0.453068 -0.132803 0.988768 0.068569 0.458228 -0.000093 0.888835 0.858353 0.240748 -0.453068 -0.235702 0.969403 0.068569 0.455714 0.047933 0.888835 0.828393 0.329384 -0.453068 -0.336004 0.939361 0.068569 0.448180 0.095431 0.888835 0.789723 0.413602 -0.453068 -0.431706 0.899404 0.068569 0.435852 0.141442 0.888835 0.742026 0.494092 -0.453068 -0.523593 0.849205 0.068569 0.418627 0.186343 0.888835 0.686155 0.569141 -0.453068 -0.609712 0.789652 0.068569 0.396791 0.229192 0.888835 0.622726 0.637920 -0.453068 -0.689115 0.721400 0.068569 0.370585 0.269516 0.888835 0.553137 0.699120 -0.453068 -0.760282 0.645964 0.068569 0.340604 0.306532 0.888835 0.476818 0.753242 -0.453068 -0.823797 0.562723 0.068569 0.306601 0.340541 0.888835 0.395246 0.799068 -0.453068 -0.878237 0.473284 0.068569 0.269221 0.370800 0.888835 0.310157 0.835782 -0.453068 -0.922625 0.379555 0.068569 0.229273 0.396745 0.888835 0.220853 0.863686 -0.453068 -0.957323 0.280767 0.068569 0.186429 0.418589 0.888835 0.129116 0.882076 -0.453068 -0.981477 0.178886 0.068569 0.141531 0.435823 0.888835 0.035957 0.890750 -0.453068 -0.994821 0.075035 0.068569 0.095074 0.448256 0.888835 -0.056708 0.889670 -0.453068 -0.997235 -0.028645 0.068569 0.048026 0.455704 0.888835 -0.149639 0.878827 -0.453068 -0.988741 -0.133005 0.068569 0.000000 0.458228 0.888835 -0.240923 0.858304 -0.453068 -0.969355 -0.235899 0.068569 -0.048026 0.455704 0.888835 -0.328724 0.828655 -0.453068 -0.939628 -0.335256 0.068569 -0.095074 0.448256 0.888835 -0.413762 0.789639 -0.453068 -0.899316 -0.431890 0.068569 -0.141531 0.435823 0.888835 -0.494243 0.741925 -0.453068 -0.849098 -0.523766 0.068569 -0.186429 0.418589 0.888835 -0.569281 0.686039 -0.453068 -0.789527 -0.609873 0.068569 -0.229273 0.396745 0.888835 -0.637424 0.623233 -0.453068 -0.721949 -0.688540 0.068569 -0.269221 0.370800 0.888835 -0.699233 0.552994 -0.453068 -0.645809 -0.760414 0.068569 -0.306601 0.340541 0.888835 -0.753340 0.476664 -0.453068 -0.562555 -0.823911 0.068569 -0.340604 0.306532 0.888835 -0.798753 0.395883 -0.453068 -0.473984 -0.877860 0.068569 -0.370585 0.269516 0.888835 -0.835845 0.309987 -0.453068 -0.379367 -0.922702 0.068569 -0.396791 0.229192 0.888835 -0.863731 0.220677 -0.453068 -0.280572 -0.957381 0.068569 -0.418627 0.186343 0.888835 -0.882102 0.128937 -0.453068 -0.178686 -0.981514 0.068569 -0.435852 0.141442 0.888835 -0.890721 0.036667 -0.453068 -0.075827 -0.994761 0.068569 -0.448180 0.095431 0.888835 -0.889659 -0.056889 -0.453068 0.028848 -0.997229 0.068569 -0.455714 0.047933 0.888835 0.140183 -0.922740 0.359026 0.335154 0.385423 0.859721 -0.931676 -0.000190 0.363290 0.236121 -0.902966 0.359026 0.292913 0.418427 0.859721 -0.926525 -0.097835 0.363290 0.328585 -0.873574 0.359026 0.247892 0.446574 0.859721 -0.911363 -0.193491 0.363290 0.418332 -0.834325 0.359026 0.199723 0.470096 0.859721 -0.886064 -0.287943 0.363290 0.503471 -0.785886 0.359026 0.149353 0.488439 0.859721 -0.851006 -0.379223 0.363290 0.582336 -0.729373 0.359026 0.097840 0.501305 0.859721 -0.807039 -0.465519 0.363290 0.655572 -0.664323 0.359026 0.044761 0.508798 0.859721 -0.753805 -0.547539 0.363290 0.721587 -0.591956 0.359026 -0.008811 0.510687 0.859721 -0.692267 -0.623528 0.363290 0.779655 -0.513068 0.359026 -0.062286 0.506951 0.859721 -0.623105 -0.692648 0.363290 0.828705 -0.429358 0.359026 -0.114578 0.497746 0.859721 -0.547832 -0.753592 0.363290 0.869141 -0.340139 0.359026 -0.166114 0.482996 0.859721 -0.465833 -0.806858 0.363290 0.900003 -0.247174 0.359026 -0.215821 0.462926 0.859721 -0.378703 -0.851237 0.363290 0.920800 -0.152407 0.359026 -0.262712 0.438020 0.859721 -0.288288 -0.885952 0.363290 0.931702 -0.055061 0.359026 -0.307173 0.408073 0.859721 -0.193846 -0.911287 0.363290 0.932341 0.042891 0.359026 -0.348250 0.373632 0.859721 -0.097269 -0.926585 0.363290 0.922825 0.139620 0.359026 -0.385219 0.335389 0.859721 -0.000379 -0.931676 0.363290 0.903110 0.235569 0.359026 -0.418248 0.293168 0.859721 0.097269 -0.926585 0.363290 0.873447 0.328924 0.359026 -0.446671 0.247718 0.859721 0.193846 -0.911287 0.363290 0.834162 0.418656 0.359026 -0.470173 0.199540 0.859721 0.288288 -0.885952 0.363290 0.786194 0.502991 0.359026 -0.488348 0.149652 0.859721 0.378703 -0.851237 0.363290 0.729147 0.582619 0.359026 -0.501343 0.097645 0.859721 0.465833 -0.806858 0.363290 0.664068 0.655830 0.359026 -0.508816 0.044563 0.859721 0.547832 -0.753592 0.363290 0.592397 0.721226 0.359026 -0.510693 -0.008499 0.859721 0.623105 -0.692648 0.363290 0.513544 0.779341 0.359026 -0.506989 -0.061977 0.859721 0.692267 -0.623528 0.363290 0.429036 0.828872 0.359026 -0.497701 -0.114772 0.859721 0.753805 -0.547539 0.363290 0.339801 0.869273 0.359026 -0.482931 -0.166302 0.859721 0.807039 -0.465519 0.363290 0.247724 0.899852 0.359026 -0.463058 -0.215538 0.859721 0.851006 -0.379223 0.363290 0.152048 0.920859 0.359026 -0.437918 -0.262883 0.859721 0.886064 -0.287943 0.363290 0.054698 0.931723 0.359026 -0.407954 -0.307332 0.859721 0.911363 -0.193491 0.363290 -0.042322 0.932367 0.359026 -0.373845 -0.348022 0.859721 0.926525 -0.097835 0.363290 -0.139808 0.922797 0.359026 -0.335311 -0.385287 0.859721 0.931676 -0.000190 0.363290 -0.235753 0.903062 0.359026 -0.293083 -0.418308 0.859721 0.926565 0.097458 0.363290 -0.329102 0.873380 0.359026 -0.247627 -0.446721 0.859721 0.911248 0.194032 0.363290 -0.417992 0.834496 0.359026 -0.199914 -0.470014 0.859721 0.886181 0.287582 0.363290 -0.503151 0.786091 0.359026 -0.149552 -0.488378 0.859721 0.851160 0.378877 0.363290 -0.582768 0.729028 0.359026 -0.097543 -0.501363 0.859721 0.806763 0.465997 0.363290 -0.655966 0.663935 0.359026 -0.044459 -0.508825 0.859721 0.753480 0.547986 0.363290 -0.721346 0.592250 0.359026 0.008603 -0.510691 0.859721 0.692521 0.623246 0.363290 -0.779445 0.513386 0.359026 0.062080 -0.506977 0.859721 0.623387 0.692394 0.363290 -0.828959 0.428867 0.359026 0.114873 -0.497678 0.859721 0.547385 0.753916 0.363290 -0.869002 0.340493 0.359026 0.165917 -0.483064 0.859721 0.466162 0.806668 0.363290 -0.899902 0.247540 0.359026 0.215632 -0.463014 0.859721 0.379050 0.851083 0.363290 -0.920890 0.151861 0.359026 0.262972 -0.437864 0.859721 0.287763 0.886123 0.363290 -0.931734 0.054509 0.359026 0.307415 -0.407891 0.859721 0.193306 0.911402 0.363290 -0.932359 -0.042512 0.359026 0.348098 -0.373774 0.859721 0.097646 0.926545 0.363290 -0.922768 -0.139996 0.359026 0.385355 -0.335232 0.859721 0.000000 0.931676 0.363290 -0.903014 -0.235937 0.359026 0.418368 -0.292998 0.859721 -0.097646 0.926545 0.363290 -0.873641 -0.328407 0.359026 0.446524 -0.247983 0.859721 -0.193306 0.911402 0.363290 -0.834410 -0.418162 0.359026 0.470055 -0.199818 0.859721 -0.287763 0.886123 0.363290 -0.785989 -0.503311 0.359026 0.488409 -0.149453 0.859721 -0.379050 0.851083 0.363290 -0.728909 -0.582916 0.359026 0.501383 -0.097441 0.859721 -0.466162 0.806668 0.363290 -0.664457 -0.655437 0.359026 0.508789 -0.044865 0.859721 -0.547385 0.753916 0.363290 -0.592103 -0.721467 0.359026 0.510689 0.008707 0.859721 -0.623387 0.692394 0.363290 -0.513227 -0.779550 0.359026 0.506964 0.062183 0.859721 -0.692521 0.623246 0.363290 -0.429527 -0.828617 0.359026 0.497769 0.114476 0.859721 -0.753480 0.547986 0.363290 -0.340316 -0.869071 0.359026 0.483030 0.166016 0.859721 -0.806763 0.465997 0.363290 -0.247357 -0.899953 0.359026 0.462970 0.215726 0.859721 -0.851160 0.378877 0.363290 -0.151673 -0.920921 0.359026 0.437811 0.263061 0.859721 -0.886181 0.287582 0.363290 -0.055251 -0.931691 0.359026 0.408136 0.307090 0.859721 -0.911248 0.194032 0.363290 0.042702 -0.932350 0.359026 0.373703 0.348174 0.859721 -0.926565 0.097458 0.363290 -0.798316 0.167833 -0.578379 -0.135841 -0.985815 -0.098566 -0.586718 -0.000119 0.809791 -0.811510 0.083240 -0.578379 -0.031772 -0.994623 -0.098566 -0.583474 -0.061611 0.809791 -0.815767 -0.001455 -0.578379 0.071654 -0.992547 -0.098566 -0.573926 -0.121850 0.809791 -0.811121 -0.086945 -0.578379 0.175285 -0.979571 -0.098566 -0.557994 -0.181331 0.809791 -0.797542 -0.171478 -0.578379 0.276986 -0.955805 -0.098566 -0.535916 -0.238814 0.809791 -0.775431 -0.253346 -0.578379 0.374714 -0.921886 -0.098566 -0.508229 -0.293158 0.809791 -0.744608 -0.333221 -0.578379 0.469271 -0.877536 -0.098566 -0.474704 -0.344810 0.809791 -0.705583 -0.409426 -0.578379 0.558658 -0.823520 -0.098566 -0.435952 -0.392663 0.809791 -0.658786 -0.481122 -0.578379 0.641892 -0.760433 -0.098566 -0.392397 -0.436191 0.809791 -0.605280 -0.546912 -0.578379 0.717367 -0.689688 -0.098566 -0.344994 -0.474570 0.809791 -0.544626 -0.607338 -0.578379 0.785700 -0.610705 -0.098566 -0.293356 -0.508115 0.809791 -0.477973 -0.661074 -0.578379 0.845379 -0.524994 -0.098566 -0.238486 -0.536062 0.809791 -0.406763 -0.707122 -0.578379 0.895312 -0.434397 -0.098566 -0.181548 -0.557923 0.809791 -0.330411 -0.745859 -0.578379 0.935909 -0.338169 -0.098566 -0.122073 -0.573878 0.809791 -0.250420 -0.776381 -0.578379 0.966197 -0.238217 -0.098566 -0.061255 -0.583512 0.809791 -0.168321 -0.798214 -0.578379 0.985732 -0.136443 -0.098566 -0.000239 -0.586718 0.809791 -0.083736 -0.811459 -0.578379 0.994604 -0.032380 -0.098566 0.061255 -0.583512 0.809791 0.001772 -0.815766 -0.578379 0.992519 0.072040 -0.098566 0.122073 -0.573878 0.809791 0.087261 -0.811087 -0.578379 0.979503 0.175666 -0.098566 0.181548 -0.557923 0.809791 0.170990 -0.797646 -0.578379 0.955974 0.276402 -0.098566 0.238486 -0.536062 0.809791 0.253648 -0.775332 -0.578379 0.921740 0.375073 -0.098566 0.293356 -0.508115 0.809791 0.333511 -0.744478 -0.578379 0.877354 0.469612 -0.098566 0.344994 -0.474570 0.809791 0.408995 -0.705833 -0.578379 0.823861 0.558155 -0.098566 0.392397 -0.436191 0.809791 0.480719 -0.659080 -0.578379 0.760825 0.641428 -0.098566 0.435952 -0.392663 0.809791 0.547148 -0.605067 -0.578379 0.689409 0.717635 -0.098566 0.474704 -0.344810 0.809791 0.607550 -0.544390 -0.578379 0.610399 0.785937 -0.098566 0.508229 -0.293158 0.809791 0.660782 -0.478377 -0.578379 0.525511 0.845058 -0.098566 0.535916 -0.238814 0.809791 0.707280 -0.406488 -0.578379 0.434048 0.895481 -0.098566 0.557994 -0.181331 0.809791 0.745987 -0.330121 -0.578379 0.337805 0.936041 -0.098566 0.573926 -0.121850 0.809791 0.776228 -0.250895 -0.578379 0.238807 0.966052 -0.098566 0.583474 -0.061611 0.809791 0.798248 -0.168159 -0.578379 0.136242 0.985760 -0.098566 0.586718 -0.000119 0.809791 0.811476 -0.083570 -0.578379 0.032177 0.994610 -0.098566 0.583499 0.061373 0.809791 0.815766 0.001939 -0.578379 -0.072242 0.992505 -0.098566 0.573853 0.122190 0.809791 0.811157 0.086615 -0.578379 -0.174886 0.979643 -0.098566 0.558068 0.181103 0.809791 0.797611 0.171153 -0.578379 -0.276597 0.955918 -0.098566 0.536013 0.238595 0.809791 0.775281 0.253806 -0.578379 -0.375260 0.921664 -0.098566 0.508055 0.293459 0.809791 0.744410 0.333663 -0.578379 -0.469791 0.877258 -0.098566 0.474500 0.345091 0.809791 0.705750 0.409139 -0.578379 -0.558323 0.823748 -0.098566 0.436111 0.392485 0.809791 0.658982 0.480853 -0.578379 -0.641582 0.760695 -0.098566 0.392574 0.436031 0.809791 0.604956 0.547271 -0.578379 -0.717775 0.689263 -0.098566 0.344713 0.474775 0.809791 0.544874 0.607116 -0.578379 -0.785451 0.611025 -0.098566 0.293563 0.507995 0.809791 0.478243 0.660879 -0.578379 -0.845165 0.525338 -0.098566 0.238705 0.535965 0.809791 0.406344 0.707363 -0.578379 -0.895570 0.433866 -0.098566 0.181217 0.558031 0.809791 0.329969 0.746055 -0.578379 -0.936110 0.337614 -0.098566 0.121733 0.573950 0.809791 0.250736 0.776279 -0.578379 -0.966100 0.238610 -0.098566 0.061492 0.583487 0.809791 0.167996 0.798282 -0.578379 -0.985788 0.136042 -0.098566 0.000000 0.586718 0.809791 0.083405 0.811493 -0.578379 -0.994617 0.031975 -0.098566 -0.061492 0.583487 0.809791 -0.001289 0.815767 -0.578379 -0.992562 -0.071452 -0.098566 -0.121733 0.573950 0.809791 -0.086780 0.811139 -0.578379 -0.979607 -0.175086 -0.098566 -0.181217 0.558031 0.809791 -0.171315 0.797577 -0.578379 -0.955862 -0.276791 -0.098566 -0.238705 0.535965 0.809791 -0.253963 0.775229 -0.578379 -0.921587 -0.375448 -0.098566 -0.293563 0.507995 0.809791 -0.333070 0.744676 -0.578379 -0.877632 -0.469092 -0.098566 -0.344713 0.474775 0.809791 -0.409283 0.705666 -0.578379 -0.823634 -0.558491 -0.098566 -0.392574 0.436031 0.809791 -0.480988 0.658884 -0.578379 -0.760564 -0.641737 -0.098566 -0.436111 0.392485 0.809791 -0.546789 0.605392 -0.578379 -0.689834 -0.717226 -0.098566 -0.474500 0.345091 0.809791 -0.607227 0.544750 -0.578379 -0.610865 -0.785576 -0.098566 -0.508055 0.293459 0.809791 -0.660977 0.478108 -0.578379 -0.525166 -0.845272 -0.098566 -0.536013 0.238595 0.809791 -0.707445 0.406200 -0.578379 -0.433683 -0.895658 -0.098566 -0.558068 0.181103 0.809791 -0.745792 0.330563 -0.578379 -0.338360 -0.935840 -0.098566 -0.573853 0.122190 0.809791 -0.776330 0.250578 -0.578379 -0.238413 -0.966149 -0.098566 -0.583499 0.061373 0.809791 0.296691 -0.193906 -0.935080 -0.058455 -0.981020 0.184885 -0.953183 -0.000194 -0.302394 0.315380 -0.161743 -0.935080 0.044685 -0.981744 0.184885 -0.947913 -0.100093 -0.302394 0.330467 -0.128128 -0.935080 0.146361 -0.971800 0.184885 -0.932400 -0.197958 -0.302394 0.342075 -0.092787 -0.935080 0.247407 -0.951108 0.184885 -0.906518 -0.294590 -0.302394 0.349916 -0.056425 -0.935080 0.345727 -0.919940 0.184885 -0.870650 -0.387977 -0.302394 0.353883 -0.019794 -0.935080 0.439361 -0.879079 0.184885 -0.825669 -0.476265 -0.302394 0.354009 0.017405 -0.935080 0.529075 -0.828189 0.184885 -0.771206 -0.560178 -0.302394 0.350235 0.054411 -0.935080 0.612961 -0.768177 0.184885 -0.708247 -0.637921 -0.302394 0.342603 0.090819 -0.935080 0.690096 -0.699704 0.184885 -0.637488 -0.708637 -0.302394 0.331324 0.125895 -0.935080 0.759005 -0.624283 0.184885 -0.560478 -0.770988 -0.302394 0.316305 0.159926 -0.935080 0.820254 -0.541295 0.184885 -0.476586 -0.825484 -0.302394 0.297801 0.192197 -0.935080 0.872468 -0.452346 0.184885 -0.387445 -0.870887 -0.302394 0.276240 0.222074 -0.935080 0.914713 -0.359328 0.184885 -0.294943 -0.906403 -0.302394 0.251443 0.249802 -0.935080 0.947336 -0.261481 0.184885 -0.198321 -0.932323 -0.302394 0.223877 0.274780 -0.935080 0.969523 -0.160753 0.184885 -0.099514 -0.947974 -0.302394 0.194087 0.296572 -0.935080 0.980984 -0.059054 0.184885 -0.000388 -0.953183 -0.302394 0.161935 0.315281 -0.935080 0.981771 0.044086 0.184885 0.099514 -0.947974 -0.302394 0.128000 0.330516 -0.935080 0.971743 0.146739 0.184885 0.198321 -0.932323 -0.302394 0.092654 0.342111 -0.935080 0.951012 0.247777 0.184885 0.294943 -0.906403 -0.302394 0.056638 0.349882 -0.935080 0.920151 0.345165 0.184885 0.387445 -0.870887 -0.302394 0.019656 0.353891 -0.935080 0.878908 0.439703 0.184885 0.476586 -0.825484 -0.302394 -0.017542 0.354002 -0.935080 0.827983 0.529397 0.184885 0.560478 -0.770988 -0.302394 -0.054197 0.350268 -0.935080 0.768552 0.612492 0.184885 0.637488 -0.708637 -0.302394 -0.090609 0.342659 -0.935080 0.700125 0.689668 0.184885 0.708247 -0.637921 -0.302394 -0.126024 0.331275 -0.935080 0.623987 0.759248 0.184885 0.771206 -0.560178 -0.302394 -0.160049 0.316242 -0.935080 0.540976 0.820465 0.184885 0.825669 -0.476265 -0.302394 -0.192015 0.297918 -0.935080 0.452879 0.872192 0.184885 0.870650 -0.387977 -0.302394 -0.222181 0.276153 -0.935080 0.358972 0.914853 0.184885 0.906518 -0.294590 -0.302394 -0.249900 0.251346 -0.935080 0.261112 0.947437 0.184885 0.932400 -0.197958 -0.302394 -0.274643 0.224045 -0.935080 0.161345 0.969425 0.184885 0.947913 -0.100093 -0.302394 -0.296612 0.194027 -0.935080 0.058854 0.980996 0.184885 0.953183 -0.000194 -0.302394 -0.315314 0.161871 -0.935080 -0.044285 0.981762 0.184885 0.947954 0.099707 -0.302394 -0.330542 0.127932 -0.935080 -0.146937 0.971713 0.184885 0.932283 0.198511 -0.302394 -0.342037 0.092927 -0.935080 -0.247019 0.951209 0.184885 0.906638 0.294221 -0.302394 -0.349893 0.056567 -0.935080 -0.345353 0.920081 0.184885 0.870808 0.387622 -0.302394 -0.353895 0.019584 -0.935080 -0.439882 0.878818 0.184885 0.825386 0.476754 -0.302394 -0.353998 -0.017614 -0.935080 -0.529565 0.827875 0.184885 0.770873 0.560635 -0.302394 -0.350257 -0.054269 -0.935080 -0.612648 0.768427 0.184885 0.708507 0.637632 -0.302394 -0.342640 -0.090679 -0.935080 -0.689811 0.699985 0.184885 0.637777 0.708377 -0.302394 -0.331249 -0.126091 -0.935080 -0.759375 0.623833 0.184885 0.560021 0.771320 -0.302394 -0.316370 -0.159798 -0.935080 -0.820034 0.541629 0.184885 0.476923 0.825289 -0.302394 -0.297879 -0.192075 -0.935080 -0.872284 0.452701 0.184885 0.387800 0.870729 -0.302394 -0.276108 -0.222237 -0.935080 -0.914926 0.358786 0.184885 0.294405 0.906578 -0.302394 -0.251295 -0.249951 -0.935080 -0.947491 0.260919 0.184885 0.197768 0.932441 -0.302394 -0.223989 -0.274689 -0.935080 -0.969458 0.161148 0.184885 0.099900 0.947933 -0.302394 -0.193966 -0.296651 -0.935080 -0.981008 0.058654 0.184885 0.000000 0.953183 -0.302394 -0.161807 -0.315347 -0.935080 -0.981753 -0.044485 0.184885 -0.099900 0.947933 -0.302394 -0.128196 -0.330440 -0.935080 -0.971830 -0.146163 0.184885 -0.197768 0.932441 -0.302394 -0.092857 -0.342056 -0.935080 -0.951159 -0.247213 0.184885 -0.294405 0.906578 -0.302394 -0.056496 -0.349905 -0.935080 -0.920011 -0.345540 0.184885 -0.387800 0.870729 -0.302394 -0.019512 -0.353899 -0.935080 -0.878729 -0.440061 0.184885 -0.476923 0.825289 -0.302394 0.017332 -0.354012 -0.935080 -0.828297 -0.528906 0.184885 -0.560021 0.771320 -0.302394 0.054340 -0.350246 -0.935080 -0.768302 -0.612804 0.184885 -0.637777 0.708377 -0.302394 0.090749 -0.342622 -0.935080 -0.699844 -0.689953 0.184885 -0.708507 0.637632 -0.302394 0.125827 -0.331350 -0.935080 -0.624437 -0.758878 0.184885 -0.770873 0.560635 -0.302394 0.159862 -0.316337 -0.935080 -0.541462 -0.820144 0.184885 -0.825386 0.476754 -0.302394 0.192136 -0.297840 -0.935080 -0.452523 -0.872376 0.184885 -0.870808 0.387622 -0.302394 0.222294 -0.276063 -0.935080 -0.358600 -0.914999 0.184885 -0.906638 0.294221 -0.302394 0.249751 -0.251494 -0.935080 -0.261674 -0.947283 0.184885 -0.932283 0.198511 -0.302394 0.274734 -0.223933 -0.935080 -0.160951 -0.969491 0.184885 -0.947954 0.099707 -0.302394 -0.777092 0.071576 0.625304 0.055684 0.997435 -0.044972 -0.626919 -0.000128 -0.779084 -0.780314 -0.010263 0.625304 -0.049161 0.997778 -0.044972 -0.623453 -0.065833 -0.779084 -0.775032 -0.091213 0.625304 -0.152477 0.987283 -0.044972 -0.613250 -0.130199 -0.779084 -0.761204 -0.171940 0.625304 -0.255112 0.965865 -0.044972 -0.596227 -0.193755 -0.779084 -0.738991 -0.250773 0.625304 -0.354936 0.933808 -0.044972 -0.572636 -0.255177 -0.779084 -0.708965 -0.326134 0.625304 -0.449960 0.891916 -0.044972 -0.543052 -0.313245 -0.779084 -0.670879 -0.398643 0.625304 -0.540961 0.839845 -0.044972 -0.507231 -0.368436 -0.779084 -0.625404 -0.466760 0.625304 -0.626003 0.778523 -0.044972 -0.465823 -0.419568 -0.779084 -0.573039 -0.529736 0.625304 -0.704150 0.708625 -0.044972 -0.419283 -0.466079 -0.779084 -0.514950 -0.586363 0.625304 -0.773910 0.631697 -0.044972 -0.368633 -0.507087 -0.779084 -0.450659 -0.637104 0.625304 -0.835854 0.547107 -0.044972 -0.313456 -0.542930 -0.779084 -0.381404 -0.680827 0.625304 -0.888591 0.456490 -0.044972 -0.254827 -0.572792 -0.779084 -0.308665 -0.716743 0.625304 -0.931179 0.361777 -0.044972 -0.193987 -0.596152 -0.779084 -0.231845 -0.745146 0.625304 -0.963968 0.262190 -0.044972 -0.130438 -0.613200 -0.779084 -0.152471 -0.765341 0.625304 -0.986138 0.159715 -0.044972 -0.065452 -0.623493 -0.779084 -0.072051 -0.777048 0.625304 -0.997401 0.056294 -0.044972 -0.000255 -0.626919 -0.779084 0.009786 -0.780320 0.625304 -0.997808 -0.048551 -0.044972 0.065452 -0.623493 -0.779084 0.091515 -0.774997 0.625304 -0.987224 -0.152861 -0.044972 0.130438 -0.613200 -0.779084 0.172236 -0.761137 0.625304 -0.965766 -0.255488 -0.044972 0.193987 -0.596152 -0.779084 0.250321 -0.739144 0.625304 -0.934025 -0.354366 -0.044972 0.254827 -0.572792 -0.779084 0.326410 -0.708838 0.625304 -0.891741 -0.450307 -0.044972 0.313456 -0.542930 -0.779084 0.398904 -0.670724 0.625304 -0.839634 -0.541287 -0.044972 0.368633 -0.507087 -0.779084 0.466378 -0.625689 0.625304 -0.778905 -0.625527 -0.044972 0.419283 -0.466079 -0.779084 0.529386 -0.573363 0.625304 -0.709055 -0.703717 -0.044972 0.465823 -0.419568 -0.779084 0.586563 -0.514722 0.625304 -0.631396 -0.774156 -0.044972 0.507231 -0.368436 -0.779084 0.637279 -0.450411 0.625304 -0.546782 -0.836067 -0.044972 0.543052 -0.313245 -0.779084 0.680594 -0.381820 0.625304 -0.457033 -0.888312 -0.044972 0.572636 -0.255177 -0.779084 0.716863 -0.308386 0.625304 -0.361414 -0.931320 -0.044972 0.596227 -0.193755 -0.779084 0.745236 -0.231555 0.625304 -0.261815 -0.964070 -0.044972 0.613250 -0.130199 -0.779084 0.765248 -0.152939 0.625304 -0.160318 -0.986040 -0.044972 0.623453 -0.065833 -0.779084 0.777062 -0.071893 0.625304 -0.056091 -0.997412 -0.044972 0.626919 -0.000128 -0.779084 0.780318 0.009945 0.625304 0.048754 -0.997798 -0.044972 0.623480 0.065579 -0.779084 0.774978 0.091673 0.625304 0.153062 -0.987193 -0.044972 0.613173 0.130563 -0.779084 0.761274 0.171630 0.625304 0.254718 -0.965969 -0.044972 0.596306 0.193512 -0.779084 0.739093 0.250472 0.625304 0.354556 -0.933953 -0.044972 0.572740 0.254944 -0.779084 0.708771 0.326554 0.625304 0.450488 -0.891649 -0.044972 0.542866 0.313567 -0.779084 0.670643 0.399040 0.625304 0.541458 -0.839524 -0.044972 0.507012 0.368736 -0.779084 0.625594 0.466505 0.625304 0.625686 -0.778778 -0.044972 0.465993 0.419378 -0.779084 0.573255 0.529503 0.625304 0.703861 -0.708912 -0.044972 0.419473 0.465908 -0.779084 0.514602 0.586668 0.625304 0.774284 -0.631238 -0.044972 0.368332 0.507306 -0.779084 0.450918 0.636920 0.625304 0.835631 -0.547447 -0.044972 0.313677 0.542802 -0.779084 0.381681 0.680672 0.625304 0.888405 -0.456852 -0.044972 0.255060 0.572688 -0.779084 0.308240 0.716926 0.625304 0.931394 -0.361225 -0.044972 0.193634 0.596267 -0.779084 0.231403 0.745283 0.625304 0.964123 -0.261618 -0.044972 0.130074 0.613277 -0.779084 0.152783 0.765279 0.625304 0.986073 -0.160117 -0.044972 0.065706 0.623467 -0.779084 0.071735 0.777077 0.625304 0.997424 -0.055887 -0.044972 0.000000 0.626919 -0.779084 -0.010104 0.780316 0.625304 0.997788 0.048958 -0.044972 -0.065706 0.623467 -0.779084 -0.091056 0.775051 0.625304 0.987314 0.152276 -0.044972 -0.130074 0.613277 -0.779084 -0.171785 0.761239 0.625304 0.965917 0.254915 -0.044972 -0.193634 0.596267 -0.779084 -0.250622 0.739042 0.625304 0.933880 0.354746 -0.044972 -0.255060 0.572688 -0.779084 -0.326699 0.708705 0.625304 0.891557 0.450670 -0.044972 -0.313677 0.542802 -0.779084 -0.398506 0.670960 0.625304 0.839955 0.540790 -0.044972 -0.368332 0.507306 -0.779084 -0.466633 0.625499 0.625304 0.778650 0.625845 -0.044972 -0.419473 0.465908 -0.779084 -0.529620 0.573147 0.625304 0.708769 0.704006 -0.044972 -0.465993 0.419378 -0.779084 -0.586258 0.515069 0.625304 0.631855 0.773781 -0.044972 -0.507012 0.368736 -0.779084 -0.637012 0.450788 0.625304 0.547277 0.835743 -0.044972 -0.542866 0.313567 -0.779084 -0.680750 0.381542 0.625304 0.456671 0.888498 -0.044972 -0.572740 0.254944 -0.779084 -0.716989 0.308094 0.625304 0.361035 0.931467 -0.044972 -0.596306 0.193512 -0.779084 -0.745099 0.231996 0.625304 0.262386 0.963914 -0.044972 -0.613173 0.130563 -0.779084 -0.765310 0.152627 0.625304 0.159916 0.986106 -0.044972 -0.623480 0.065579 -0.779084 -0.271687 -0.936447 0.221930 -0.725472 0.350809 0.592134 -0.632357 -0.000129 -0.774677 -0.172045 -0.959764 0.221930 -0.758244 0.272842 0.592134 -0.628861 -0.066404 -0.774677 -0.071479 -0.972439 0.221930 -0.782472 0.192653 0.592134 -0.618570 -0.131329 -0.774677 0.030833 -0.974575 0.221930 -0.798354 0.109583 0.592134 -0.601399 -0.195436 -0.774677 0.132805 -0.965976 0.221930 -0.805442 0.025306 0.592134 -0.577604 -0.257390 -0.774677 0.232369 -0.946970 0.221930 -0.803717 -0.058445 0.592134 -0.547763 -0.315962 -0.774677 0.330338 -0.917401 0.221930 -0.793165 -0.142359 0.592134 -0.511631 -0.371632 -0.774677 0.424669 -0.877726 0.221930 -0.773877 -0.224704 0.592134 -0.469863 -0.423207 -0.774677 0.514322 -0.828384 0.221930 -0.746064 -0.304574 0.592134 -0.422920 -0.470122 -0.774677 0.597540 -0.770515 0.221930 -0.710414 -0.380380 0.592134 -0.371831 -0.511486 -0.774677 0.675004 -0.703645 0.221930 -0.666635 -0.452741 0.592134 -0.316175 -0.547640 -0.774677 0.745034 -0.629024 0.221930 -0.615513 -0.520116 0.592134 -0.257037 -0.577761 -0.774677 0.806309 -0.548282 0.221930 -0.558193 -0.581204 0.592134 -0.195670 -0.601323 -0.774677 0.859332 -0.460755 0.221930 -0.494204 -0.636505 0.592134 -0.131569 -0.618519 -0.774677 0.902890 -0.368154 0.221930 -0.424772 -0.684796 0.592134 -0.066019 -0.628902 -0.774677 0.936281 -0.272259 0.221930 -0.351252 -0.725258 0.592134 -0.000258 -0.632357 -0.774677 0.959659 -0.172631 0.221930 -0.273305 -0.758077 0.592134 0.066019 -0.628902 -0.774677 0.972467 -0.071101 0.221930 -0.192348 -0.782547 0.592134 0.131569 -0.618519 -0.774677 0.974563 0.031212 0.221930 -0.109272 -0.798396 0.592134 0.195670 -0.601323 -0.774677 0.966057 0.132215 0.221930 -0.025799 -0.805426 0.592134 0.257037 -0.577761 -0.774677 0.946879 0.232737 0.221930 0.058758 -0.803694 0.592134 0.316175 -0.547640 -0.774677 0.917272 0.330695 0.221930 0.142667 -0.793110 0.592134 0.371831 -0.511486 -0.774677 0.877986 0.424132 0.221930 0.224231 -0.774014 0.592134 0.422920 -0.470122 -0.774677 0.828698 0.513816 0.221930 0.304119 -0.746250 0.592134 0.469863 -0.423207 -0.774677 0.770282 0.597839 0.221930 0.380656 -0.710266 0.592134 0.511631 -0.371632 -0.774677 0.703382 0.675278 0.221930 0.453000 -0.666459 0.592134 0.547763 -0.315962 -0.774677 0.629480 0.744649 0.221930 0.519740 -0.615831 0.592134 0.577604 -0.257390 -0.774677 0.547968 0.806522 0.221930 0.581421 -0.557967 0.592134 0.601399 -0.195436 -0.774677 0.460421 0.859511 0.221930 0.636698 -0.493957 0.592134 0.618570 -0.131329 -0.774677 0.368705 0.902665 0.221930 0.684536 -0.425191 0.592134 0.628861 -0.066404 -0.774677 0.272069 0.936336 0.221930 0.725329 -0.351104 0.592134 0.632357 -0.000129 -0.774677 0.172436 0.959694 0.221930 0.758133 -0.273151 0.592134 0.628888 0.066148 -0.774677 0.070903 0.972481 0.221930 0.782586 -0.192189 0.592134 0.618492 0.131695 -0.774677 -0.030436 0.974587 0.221930 0.798309 -0.109908 0.592134 0.601479 0.195191 -0.774677 -0.132412 0.966030 0.221930 0.805431 -0.025634 0.592134 0.577709 0.257155 -0.774677 -0.232930 0.946832 0.221930 0.803682 0.058922 0.592134 0.547575 0.316287 -0.774677 -0.330882 0.917205 0.221930 0.793081 0.142829 0.592134 0.511410 0.371935 -0.774677 -0.424311 0.877899 0.221930 0.773968 0.224389 0.592134 0.470036 0.423016 -0.774677 -0.513984 0.828593 0.221930 0.746188 0.304271 0.592134 0.423112 0.469949 -0.774677 -0.597996 0.770161 0.221930 0.710189 0.380801 0.592134 0.371527 0.511706 -0.774677 -0.674718 0.703920 0.221930 0.666819 0.452470 0.592134 0.316398 0.547511 -0.774677 -0.744777 0.629328 0.221930 0.615725 0.519865 0.592134 0.257273 0.577656 -0.774677 -0.806634 0.547804 0.221930 0.557848 0.581534 0.592134 0.195313 0.601439 -0.774677 -0.859605 0.460246 0.221930 0.493827 0.636798 0.592134 0.131203 0.618597 -0.774677 -0.902740 0.368521 0.221930 0.425051 0.684623 0.592134 0.066276 0.628875 -0.774677 -0.936392 0.271878 0.221930 0.350957 0.725401 0.592134 0.000000 0.632357 -0.774677 -0.959729 0.172240 0.221930 0.272997 0.758188 0.592134 -0.066276 0.628875 -0.774677 -0.972424 0.071677 0.221930 0.192812 0.782432 0.592134 -0.131203 0.618597 -0.774677 -0.974581 -0.030634 0.221930 0.109746 0.798331 0.592134 -0.195313 0.601439 -0.774677 -0.966003 -0.132609 0.221930 0.025470 0.805437 0.592134 -0.257273 0.577656 -0.774677 -0.946785 -0.233122 0.221930 -0.059085 0.803670 0.592134 -0.316398 0.547511 -0.774677 -0.917468 -0.330151 0.221930 -0.142197 0.793194 0.592134 -0.371527 0.511706 -0.774677 -0.877813 -0.424490 0.221930 -0.224547 0.773922 0.592134 -0.423112 0.469949 -0.774677 -0.828489 -0.514153 0.221930 -0.304422 0.746126 0.592134 -0.470036 0.423016 -0.774677 -0.770637 -0.597383 0.221930 -0.380235 0.710492 0.592134 -0.511410 0.371935 -0.774677 -0.703782 -0.674861 0.221930 -0.452605 0.666727 0.592134 -0.547575 0.316287 -0.774677 -0.629176 -0.744906 0.221930 -0.519991 0.615619 0.592134 -0.577709 0.257155 -0.774677 -0.547640 -0.806745 0.221930 -0.581648 0.557730 0.592134 -0.601479 0.195191 -0.774677 -0.460930 -0.859238 0.221930 -0.636405 0.494334 0.592134 -0.618492 0.131695 -0.774677 -0.368337 -0.902815 0.221930 -0.684709 0.424912 0.592134 -0.628888 0.066148 -0.774677 -0.533215 -0.823978 -0.191683 0.775438 -0.566622 0.278630 -0.338197 -0.000069 0.941075 -0.443920 -0.875324 -0.191683 0.830554 -0.482230 0.278630 -0.336327 -0.035514 0.941075 -0.350652 -0.916679 -0.191683 0.876128 -0.393403 0.278630 -0.330823 -0.070237 0.941075 -0.252646 -0.948382 -0.191683 0.912534 -0.299412 0.278630 -0.321640 -0.104523 0.941075 -0.151857 -0.969638 -0.191683 0.938889 -0.202123 0.278630 -0.308913 -0.137657 0.941075 -0.050376 -0.980163 -0.191683 0.954799 -0.103562 0.278630 -0.292954 -0.168983 0.941075 0.052629 -0.980045 -0.191683 0.960394 -0.002922 0.278630 -0.273630 -0.198756 0.941075 0.155055 -0.969131 -0.191683 0.955411 0.097750 0.278630 -0.251292 -0.226339 0.941075 0.255773 -0.947543 -0.191683 0.939904 0.197346 0.278630 -0.226186 -0.251430 0.941075 0.352758 -0.915871 -0.191683 0.914339 0.293854 0.278630 -0.198862 -0.273552 0.941075 0.446805 -0.873855 -0.191683 0.878505 0.388065 0.278630 -0.169097 -0.292888 0.941075 0.535931 -0.822214 -0.191683 0.832995 0.478001 0.278630 -0.137468 -0.308997 0.941075 0.618391 -0.762135 -0.191683 0.778872 0.561894 0.278630 -0.104648 -0.321599 0.941075 0.694863 -0.693126 -0.191683 0.715692 0.640430 0.278630 -0.070366 -0.330795 0.941075 0.763680 -0.616482 -0.191683 0.644628 0.711913 0.278630 -0.035308 -0.336348 0.941075 0.823652 -0.533719 -0.191683 0.567096 0.775092 0.278630 -0.000138 -0.338197 0.941075 0.875053 -0.444455 -0.191683 0.482738 0.830259 0.278630 0.035308 -0.336348 0.941075 0.916816 -0.350295 -0.191683 0.393062 0.876281 0.278630 0.070366 -0.330795 0.941075 0.948480 -0.252277 -0.191683 0.299057 0.912650 0.278630 0.104648 -0.321599 0.941075 0.969545 -0.152450 -0.191683 0.202696 0.938765 0.278630 0.137468 -0.308997 0.941075 0.980183 -0.049995 -0.191683 0.103191 0.954839 0.278630 0.169097 -0.292888 0.941075 0.980024 0.053011 -0.191683 0.002548 0.960395 0.278630 0.198862 -0.273552 0.941075 0.969226 0.154463 -0.191683 -0.097167 0.955471 0.278630 0.226186 -0.251430 0.941075 0.947699 0.255194 -0.191683 -0.196772 0.940025 0.278630 0.251292 -0.226339 0.941075 0.915733 0.353115 -0.191683 -0.294209 0.914224 0.278630 0.273630 -0.198756 0.941075 0.873681 0.447145 -0.191683 -0.388406 0.878354 0.278630 0.292954 -0.168983 0.941075 0.822541 0.535428 -0.191683 -0.477492 0.833287 0.278630 0.308913 -0.137657 0.941075 0.761894 0.618688 -0.191683 -0.562196 0.778653 0.278630 0.321640 -0.104523 0.941075 0.692855 0.695132 -0.191683 -0.640709 0.715442 0.278630 0.330823 -0.070237 0.941075 0.616948 0.763304 -0.191683 -0.711519 0.645063 0.278630 0.336327 -0.035514 0.941075 0.533551 0.823760 -0.191683 -0.775207 0.566938 0.278630 0.338197 -0.000069 0.941075 0.444276 0.875143 -0.191683 -0.830357 0.482569 0.278630 0.336341 0.035377 0.941075 0.350108 0.916887 -0.191683 -0.876361 0.392883 0.278630 0.330781 0.070433 0.941075 0.253032 0.948279 -0.191683 -0.912412 0.299783 0.278630 0.321682 0.104392 0.941075 0.152252 0.969576 -0.191683 -0.938806 0.202505 0.278630 0.308969 0.137531 0.941075 0.049795 0.980193 -0.191683 -0.954860 0.102996 0.278630 0.292854 0.169156 0.941075 -0.053210 0.980013 -0.191683 -0.960396 0.002353 0.278630 0.273512 0.198918 0.941075 -0.154661 0.969194 -0.191683 -0.955451 -0.097361 0.278630 0.251384 0.226237 0.941075 -0.255387 0.947647 -0.191683 -0.939985 -0.196963 0.278630 0.226288 0.251338 0.941075 -0.353301 0.915662 -0.191683 -0.914165 -0.294395 0.278630 0.198700 0.273670 0.941075 -0.446449 0.874037 -0.191683 -0.878663 -0.387707 0.278630 0.169216 0.292819 0.941075 -0.535596 0.822432 -0.191683 -0.833190 -0.477662 0.278630 0.137594 0.308941 0.941075 -0.618843 0.761768 -0.191683 -0.778539 -0.562355 0.278630 0.104457 0.321661 0.941075 -0.695273 0.692714 -0.191683 -0.715312 -0.640854 0.278630 0.070170 0.330837 0.941075 -0.763429 0.616793 -0.191683 -0.644918 -0.711650 0.278630 0.035445 0.336334 0.941075 -0.823869 0.533383 -0.191683 -0.566780 -0.775323 0.278630 0.000000 0.338197 0.941075 -0.875234 0.444098 -0.191683 -0.482399 -0.830455 0.278630 -0.035445 0.336334 0.941075 -0.916608 0.350838 -0.191683 -0.393581 -0.876048 0.278630 -0.070170 0.330837 0.941075 -0.948330 0.252839 -0.191683 -0.299598 -0.912473 0.278630 -0.104457 0.321661 0.941075 -0.969607 0.152055 -0.191683 -0.202314 -0.938847 0.278630 -0.137594 0.308941 0.941075 -0.980203 0.049596 -0.191683 -0.102802 -0.954881 0.278630 -0.169216 0.292819 0.941075 -0.980055 -0.052430 -0.191683 -0.003118 -0.960394 0.278630 -0.198700 0.273670 0.941075 -0.969163 -0.154858 -0.191683 0.097556 -0.955431 0.278630 -0.226288 0.251338 0.941075 -0.947595 -0.255580 -0.191683 0.197155 -0.939944 0.278630 -0.251384 0.226237 0.941075 -0.915943 -0.352572 -0.191683 0.293667 -0.914399 0.278630 -0.273512 0.198918 0.941075 -0.873946 -0.446627 -0.191683 0.387886 -0.878584 0.278630 -0.292854 0.169156 0.941075 -0.822323 -0.535763 -0.191683 0.477831 -0.833092 0.278630 -0.308969 0.137531 0.941075 -0.761642 -0.618998 -0.191683 0.562514 -0.778424 0.278630 -0.321682 0.104392 0.941075 -0.693267 -0.694721 -0.191683 0.640284 -0.715822 0.278630 -0.330781 0.070433 0.941075 -0.616637 -0.763555 -0.191683 0.711781 -0.644773 0.278630 -0.336341 0.035377 0.941075 0.303388 0.930935 0.203262 -0.773575 0.365184 -0.517902 -0.556361 -0.000113 0.830941 0.204148 0.957605 0.203262 -0.807589 0.282097 -0.517902 -0.553285 -0.058423 0.830941 0.103634 0.973624 0.203262 -0.832510 0.196735 -0.517902 -0.544230 -0.115546 0.830941 0.001020 0.979124 0.203262 -0.848544 0.108398 -0.517902 -0.529123 -0.171948 0.830941 -0.101605 0.973838 0.203262 -0.855232 0.018868 -0.517902 -0.508188 -0.226457 0.830941 -0.202153 0.958029 0.203262 -0.852570 -0.070018 -0.517902 -0.481933 -0.277990 0.830941 -0.301447 0.931565 0.203262 -0.840536 -0.158988 -0.517902 -0.450143 -0.326969 0.830941 -0.397422 0.894841 0.203262 -0.819244 -0.246206 -0.517902 -0.413395 -0.372347 0.830941 -0.489019 0.848260 0.203262 -0.788928 -0.330713 -0.517902 -0.372094 -0.413623 0.830941 -0.574437 0.792910 0.203262 -0.750333 -0.410827 -0.517902 -0.327144 -0.450016 0.830941 -0.654376 0.728338 0.203262 -0.703143 -0.487205 -0.517902 -0.278178 -0.481824 0.830941 -0.727107 0.655744 0.203262 -0.648208 -0.558216 -0.517902 -0.226147 -0.508326 0.830941 -0.791253 0.576718 0.203262 -0.586755 -0.622492 -0.517902 -0.172154 -0.529056 0.830941 -0.847339 0.490613 0.203262 -0.518282 -0.680560 -0.517902 -0.115757 -0.544185 0.830941 -0.894092 0.399104 0.203262 -0.444100 -0.731131 -0.517902 -0.058085 -0.553321 0.830941 -0.930750 0.303957 0.203262 -0.365657 -0.773352 -0.517902 -0.000227 -0.556361 0.830941 -0.957480 0.204733 0.203262 -0.282590 -0.807416 -0.517902 0.058085 -0.553321 0.830941 -0.973665 0.103255 0.203262 -0.196411 -0.832587 -0.517902 0.115757 -0.544185 0.830941 -0.979124 0.000639 0.203262 -0.108068 -0.848587 -0.517902 0.172154 -0.529056 0.830941 -0.973900 -0.101010 0.203262 -0.019390 -0.855220 -0.517902 0.226147 -0.508326 0.830941 -0.957950 -0.202525 0.203262 0.070350 -0.852543 -0.517902 0.278178 -0.481824 0.830941 -0.931448 -0.301810 0.203262 0.159315 -0.840474 -0.517902 0.327144 -0.450016 0.830941 -0.895084 -0.396875 0.203262 0.245706 -0.819394 -0.517902 0.372094 -0.413623 0.830941 -0.848559 -0.488501 0.203262 0.330231 -0.789129 -0.517902 0.413395 -0.372347 0.830941 -0.792687 -0.574745 0.203262 0.411119 -0.750173 -0.517902 0.450143 -0.326969 0.830941 -0.728084 -0.654659 0.203262 0.487478 -0.702953 -0.517902 0.481933 -0.277990 0.830941 -0.656188 -0.726706 0.203262 0.557820 -0.648549 -0.517902 0.508188 -0.226457 0.830941 -0.576410 -0.791477 0.203262 0.622720 -0.586513 -0.517902 0.529123 -0.171948 0.830941 -0.490283 -0.847530 0.203262 0.680761 -0.518018 -0.517902 0.544230 -0.115546 0.830941 -0.399650 -0.893848 0.203262 0.730860 -0.444547 -0.517902 0.553285 -0.058423 0.830941 -0.303767 -0.930812 0.203262 0.773426 -0.365499 -0.517902 0.556361 -0.000113 0.830941 -0.204538 -0.957522 0.203262 0.807474 -0.282426 -0.517902 0.553309 0.058198 0.830941 -0.103057 -0.973686 0.203262 0.832627 -0.196241 -0.517902 0.544162 0.115868 0.830941 -0.001419 -0.979123 0.203262 0.848500 -0.108744 -0.517902 0.529193 0.171733 0.830941 0.101208 -0.973880 0.203262 0.855224 -0.019216 -0.517902 0.508280 0.226250 0.830941 0.202720 -0.957909 0.203262 0.852528 0.070523 -0.517902 0.481768 0.278276 0.830941 0.301999 -0.931387 0.203262 0.840442 0.159486 -0.517902 0.449949 0.327236 0.830941 0.397057 -0.895003 0.203262 0.819344 0.245873 -0.517902 0.413547 0.372178 0.830941 0.488673 -0.848459 0.203262 0.789062 0.330392 -0.517902 0.372262 0.413471 0.830941 0.574907 -0.792570 0.203262 0.750089 0.411272 -0.517902 0.326877 0.450210 0.830941 0.654079 -0.728605 0.203262 0.703341 0.486918 -0.517902 0.278374 0.481711 0.830941 0.726840 -0.656040 0.203262 0.648435 0.557952 -0.517902 0.226354 0.508234 0.830941 0.791594 -0.576249 0.203262 0.586386 0.622839 -0.517902 0.171841 0.529158 0.830941 0.847630 -0.490110 0.203262 0.517879 0.680867 -0.517902 0.115435 0.544254 0.830941 0.893930 -0.399468 0.203262 0.444398 0.730950 -0.517902 0.058311 0.553297 0.830941 0.930873 -0.303577 0.203262 0.365342 0.773501 -0.517902 0.000000 0.556361 0.830941 0.957564 -0.204343 0.203262 0.282261 0.807531 -0.517902 -0.058311 0.553297 0.830941 0.973603 -0.103832 0.203262 0.196904 0.832470 -0.517902 -0.115435 0.544254 0.830941 0.979124 -0.001219 0.203262 0.108571 0.848522 -0.517902 -0.171841 0.529158 0.830941 0.973859 0.101406 0.203262 0.019042 0.855228 -0.517902 -0.226354 0.508234 0.830941 0.957867 0.202915 0.203262 -0.070697 0.852514 -0.517902 -0.278374 0.481711 0.830941 0.931627 0.301258 0.203262 -0.158817 0.840568 -0.517902 -0.326877 0.450210 0.830941 0.894922 0.397240 0.203262 -0.246040 0.819294 -0.517902 -0.372262 0.413471 0.830941 0.848360 0.488846 0.203262 -0.330552 0.788995 -0.517902 -0.413547 0.372178 0.830941 0.793027 0.574275 0.203262 -0.410674 0.750416 -0.517902 -0.449949 0.327236 0.830941 0.728472 0.654227 0.203262 -0.487061 0.703242 -0.517902 -0.481768 0.278276 0.830941 0.655892 0.726973 0.203262 -0.558084 0.648321 -0.517902 -0.508280 0.226250 0.830941 0.576088 0.791712 0.203262 -0.622959 0.586260 -0.517902 -0.529193 0.171733 0.830941 0.490785 0.847239 0.203262 -0.680454 0.518421 -0.517902 -0.544162 0.115868 0.830941 0.399286 0.894011 0.203262 -0.731041 0.444249 -0.517902 -0.553309 0.058198 0.830941 -0.094108 0.143282 0.985197 0.013421 0.989682 -0.142652 -0.995472 -0.000203 -0.095060 -0.108607 0.132630 0.985197 -0.090379 0.985638 -0.142652 -0.989968 -0.104534 -0.095060 -0.121789 0.120638 0.985197 -0.192212 0.970930 -0.142652 -0.973767 -0.206740 -0.095060 -0.133762 0.107210 0.985197 -0.292914 0.945437 -0.142652 -0.946736 -0.307660 -0.095060 -0.144261 0.092600 0.985197 -0.390390 0.909531 -0.142652 -0.909277 -0.405190 -0.095060 -0.153095 0.077124 0.985197 -0.482701 0.864089 -0.142652 -0.862300 -0.497395 -0.095060 -0.160335 0.060653 0.985197 -0.570605 0.808740 -0.142652 -0.805421 -0.585031 -0.095060 -0.165809 0.043515 0.985197 -0.652224 0.744482 -0.142652 -0.739669 -0.666223 -0.095060 -0.169456 0.025898 0.985197 -0.726659 0.672024 -0.142652 -0.665771 -0.740076 -0.095060 -0.171229 0.008166 0.985197 -0.792498 0.592957 -0.142652 -0.585344 -0.805193 -0.095060 -0.171142 -0.009825 0.985197 -0.850279 0.506631 -0.142652 -0.497730 -0.862107 -0.095060 -0.169170 -0.027708 0.985197 -0.898695 0.414726 -0.142652 -0.404634 -0.909524 -0.095060 -0.165379 -0.045120 0.985197 -0.936893 0.319189 -0.142652 -0.308028 -0.946616 -0.095060 -0.159739 -0.062205 0.985197 -0.965186 0.219238 -0.142652 -0.207119 -0.973686 -0.095060 -0.152340 -0.078604 0.985197 -0.982849 0.116872 -0.142652 -0.103929 -0.990031 -0.095060 -0.143340 -0.094020 0.985197 -0.989673 0.014025 -0.142652 -0.000405 -0.995471 -0.095060 -0.132696 -0.108526 0.985197 -0.985693 -0.089777 -0.142652 0.103929 -0.990031 -0.095060 -0.120591 -0.121835 0.985197 -0.970855 -0.192590 -0.142652 0.207119 -0.973686 -0.095060 -0.107158 -0.133803 0.985197 -0.945323 -0.293282 -0.142652 0.308028 -0.946616 -0.095060 -0.092688 -0.144205 0.985197 -0.909769 -0.389834 -0.142652 0.404634 -0.909524 -0.095060 -0.077064 -0.153125 0.985197 -0.863901 -0.483037 -0.142652 0.497730 -0.862107 -0.095060 -0.060591 -0.160358 0.985197 -0.808518 -0.570920 -0.142652 0.585344 -0.805193 -0.095060 -0.043616 -0.165782 0.985197 -0.744880 -0.651770 -0.142652 0.665771 -0.740076 -0.095060 -0.026001 -0.169440 0.985197 -0.672468 -0.726249 -0.142652 0.739669 -0.666223 -0.095060 -0.008099 -0.171232 0.985197 -0.592648 -0.792728 -0.142652 0.805421 -0.585031 -0.095060 0.009892 -0.171138 0.985197 -0.506301 -0.850476 -0.142652 0.862300 -0.497395 -0.095060 0.027604 -0.169186 0.985197 -0.415275 -0.898441 -0.142652 0.909277 -0.405190 -0.095060 0.045184 -0.165362 0.985197 -0.318825 -0.937017 -0.142652 0.946736 -0.307660 -0.095060 0.062267 -0.159715 0.985197 -0.218863 -0.965272 -0.142652 0.973767 -0.206740 -0.095060 0.078511 -0.152388 0.985197 -0.117473 -0.982777 -0.142652 0.989968 -0.104534 -0.095060 0.094050 -0.143320 0.985197 -0.013824 -0.989676 -0.142652 0.995472 -0.000203 -0.095060 0.108553 -0.132674 0.985197 0.089978 -0.985675 -0.142652 0.990010 0.104131 -0.095060 0.121860 -0.120566 0.985197 0.192788 -0.970816 -0.142652 0.973644 0.207318 -0.095060 0.133718 -0.107264 0.985197 0.292529 -0.945556 -0.142652 0.946861 0.307274 -0.095060 0.144223 -0.092659 0.985197 0.390019 -0.909690 -0.142652 0.909442 0.404820 -0.095060 0.153140 -0.077033 0.985197 0.483213 -0.863803 -0.142652 0.862005 0.497906 -0.095060 0.160371 -0.060558 0.985197 0.571085 -0.808401 -0.142652 0.805074 0.585508 -0.095060 0.165791 -0.043583 0.985197 0.651921 -0.744748 -0.142652 0.739941 0.665921 -0.095060 0.169446 -0.025967 0.985197 0.726386 -0.672320 -0.142652 0.666072 0.739805 -0.095060 0.171234 -0.008064 0.985197 0.792849 -0.592487 -0.142652 0.584867 0.805540 -0.095060 0.171146 0.009755 0.985197 0.850073 -0.506978 -0.142652 0.498082 0.861904 -0.095060 0.169181 0.027639 0.985197 0.898526 -0.415092 -0.142652 0.405005 0.909360 -0.095060 0.165352 0.045218 0.985197 0.937082 -0.318634 -0.142652 0.307467 0.946799 -0.095060 0.159702 0.062299 0.985197 0.965316 -0.218666 -0.142652 0.206542 0.973809 -0.095060 0.152372 0.078542 0.985197 0.982801 -0.117273 -0.142652 0.104333 0.989989 -0.095060 0.143301 0.094079 0.985197 0.989679 -0.013622 -0.142652 0.000000 0.995472 -0.095060 0.132652 0.108580 0.985197 0.985656 0.090178 -0.142652 -0.104333 0.989989 -0.095060 0.120663 0.121764 0.985197 0.970969 0.192015 -0.142652 -0.206542 0.973809 -0.095060 0.107237 0.133740 0.985197 0.945497 0.292722 -0.142652 -0.307467 0.946799 -0.095060 0.092629 0.144242 0.985197 0.909610 0.390204 -0.142652 -0.405005 0.909360 -0.095060 0.077002 0.153156 0.985197 0.863705 0.483389 -0.142652 -0.498082 0.861904 -0.095060 0.060686 0.160322 0.985197 0.808856 0.570441 -0.142652 -0.584867 0.805540 -0.095060 0.043549 0.165800 0.985197 0.744615 0.652073 -0.142652 -0.666072 0.739805 -0.095060 0.025932 0.169451 0.985197 0.672172 0.726523 -0.142652 -0.739941 0.665921 -0.095060 0.008201 0.171227 0.985197 0.593118 0.792377 -0.142652 -0.805074 0.585508 -0.095060 -0.009790 0.171144 0.985197 0.506805 0.850176 -0.142652 -0.862005 0.497906 -0.095060 -0.027673 0.169175 0.985197 0.414909 0.898611 -0.142652 -0.909442 0.404820 -0.095060 -0.045252 0.165343 0.985197 0.318443 0.937147 -0.142652 -0.946861 0.307274 -0.095060 -0.062172 0.159752 0.985197 0.219435 0.965142 -0.142652 -0.973644 0.207318 -0.095060 -0.078573 0.152356 0.985197 0.117073 0.982825 -0.142652 -0.990010 0.104131 -0.095060 -0.580535 0.690104 -0.432129 -0.553477 -0.723710 -0.412198 -0.597195 -0.000122 0.802096 -0.649666 0.625459 -0.432129 -0.474579 -0.777733 -0.412198 -0.593894 -0.062711 0.802096 -0.711086 0.554636 -0.432129 -0.391276 -0.822798 -0.412198 -0.584175 -0.124026 0.802096 -0.765299 0.477055 -0.432129 -0.302886 -0.859275 -0.412198 -0.567958 -0.184569 0.802096 -0.811083 0.394219 -0.432129 -0.211160 -0.886287 -0.412198 -0.545486 -0.243078 0.802096 -0.847626 0.307888 -0.432129 -0.118011 -0.903419 -0.412198 -0.517304 -0.298393 0.802096 -0.875226 0.217355 -0.432129 -0.022676 -0.910812 -0.412198 -0.483182 -0.350967 0.802096 -0.893187 0.124428 -0.432129 0.072908 -0.908173 -0.412198 -0.443737 -0.399675 0.802096 -0.901308 0.030130 -0.432129 0.167690 -0.895530 -0.412198 -0.399404 -0.443981 0.802096 -0.899566 -0.063600 -0.432129 0.259751 -0.873283 -0.412198 -0.351155 -0.483045 0.802096 -0.887946 -0.157531 -0.432129 0.349847 -0.841249 -0.412198 -0.298595 -0.517188 0.802096 -0.866546 -0.249726 -0.432129 0.436089 -0.799950 -0.412198 -0.242745 -0.545635 0.802096 -0.835939 -0.338335 -0.432129 0.516777 -0.750356 -0.412198 -0.184790 -0.567887 0.802096 -0.795875 -0.424084 -0.432129 0.592574 -0.692062 -0.412198 -0.124253 -0.584126 0.802096 -0.747045 -0.505162 -0.432129 0.661843 -0.626144 -0.412198 -0.062348 -0.593932 0.802096 -0.690459 -0.580113 -0.432129 0.723372 -0.553919 -0.412198 -0.000243 -0.597195 0.802096 -0.625856 -0.649283 -0.432129 0.777443 -0.475054 -0.412198 0.062348 -0.593932 0.802096 -0.554360 -0.711302 -0.432129 0.822950 -0.390956 -0.412198 0.124253 -0.584126 0.802096 -0.476757 -0.765485 -0.432129 0.859393 -0.302552 -0.412198 0.184790 -0.567887 0.802096 -0.394714 -0.810842 -0.432129 0.886158 -0.211701 -0.412198 0.242745 -0.545635 0.802096 -0.307558 -0.847746 -0.432129 0.903465 -0.117660 -0.412198 0.298595 -0.517188 0.802096 -0.217014 -0.875311 -0.432129 0.910821 -0.022322 -0.412198 0.351155 -0.483045 0.802096 -0.124973 -0.893110 -0.432129 0.908217 0.072353 -0.412198 0.399404 -0.443981 0.802096 -0.030681 -0.901290 -0.432129 0.895632 0.167143 -0.412198 0.443737 -0.399675 0.802096 0.063950 -0.899541 -0.432129 0.873182 0.260091 -0.412198 0.483182 -0.350967 0.802096 0.157876 -0.887885 -0.432129 0.841113 0.350174 -0.412198 0.517304 -0.298393 0.802096 0.249197 -0.866698 -0.432129 0.800216 0.435600 -0.412198 0.545486 -0.243078 0.802096 0.338660 -0.835807 -0.432129 0.750155 0.517069 -0.412198 0.567958 -0.184569 0.802096 0.424394 -0.795710 -0.432129 0.691831 0.592843 -0.412198 0.584175 -0.124026 0.802096 0.504705 -0.747353 -0.432129 0.626548 0.661461 -0.412198 0.593894 -0.062711 0.802096 0.580254 -0.690341 -0.432129 0.553772 0.723485 -0.412198 0.597195 -0.000122 0.802096 0.649411 -0.625724 -0.432129 0.474896 0.777539 -0.412198 0.593919 0.062469 0.802096 0.711414 -0.554215 -0.432129 0.390788 0.823030 -0.412198 0.584101 0.124372 0.802096 0.765105 -0.477366 -0.432129 0.303236 0.859151 -0.412198 0.568034 0.184337 0.802096 0.810923 -0.394549 -0.432129 0.211521 0.886201 -0.412198 0.545585 0.242856 0.802096 0.847808 -0.307386 -0.432129 0.117476 0.903489 -0.412198 0.517127 0.298700 0.802096 0.875355 -0.216836 -0.432129 0.022137 0.910825 -0.412198 0.482973 0.351253 0.802096 0.893136 -0.124792 -0.432129 -0.072538 0.908202 -0.412198 0.443899 0.399494 0.802096 0.901296 -0.030497 -0.432129 -0.167325 0.895598 -0.412198 0.399585 0.443818 0.802096 0.899529 0.064133 -0.432129 -0.260268 0.873129 -0.412198 0.350869 0.483253 0.802096 0.888010 0.157169 -0.432129 -0.349504 0.841392 -0.412198 0.298805 0.517067 0.802096 0.866647 0.249373 -0.432129 -0.435763 0.800127 -0.412198 0.242967 0.545536 0.802096 0.835738 0.338831 -0.432129 -0.517222 0.750050 -0.412198 0.184453 0.567996 0.802096 0.795624 0.424556 -0.432129 -0.592984 0.691710 -0.412198 0.123907 0.584200 0.802096 0.747250 0.504858 -0.432129 -0.661588 0.626414 -0.412198 0.062590 0.593906 0.802096 0.690222 0.580394 -0.432129 -0.723597 0.553624 -0.412198 0.000000 0.597195 0.802096 0.625592 0.649538 -0.432129 -0.777636 0.474737 -0.412198 -0.062590 0.593906 0.802096 0.554781 0.710973 -0.432129 -0.822718 0.391444 -0.412198 -0.123907 0.584200 0.802096 0.477211 0.765202 -0.432129 -0.859213 0.303061 -0.412198 -0.184453 0.567996 0.802096 0.394384 0.811003 -0.432129 -0.886244 0.211340 -0.412198 -0.242967 0.545536 0.802096 0.307213 0.847871 -0.432129 -0.903513 0.117292 -0.412198 -0.298805 0.517067 0.802096 0.217533 0.875182 -0.432129 -0.910808 0.022862 -0.412198 -0.350869 0.483253 0.802096 0.124610 0.893161 -0.432129 -0.908187 -0.072723 -0.412198 -0.399585 0.443818 0.802096 0.030314 0.901302 -0.432129 -0.895564 -0.167507 -0.412198 -0.443899 0.399494 0.802096 -0.063417 0.899579 -0.432129 -0.873336 -0.259573 -0.412198 -0.482973 0.351253 0.802096 -0.157350 0.887978 -0.432129 -0.841321 -0.349675 -0.412198 -0.517127 0.298700 0.802096 -0.249550 0.866597 -0.432129 -0.800039 -0.435926 -0.412198 -0.545585 0.242856 0.802096 -0.339001 0.835669 -0.432129 -0.749944 -0.517375 -0.412198 -0.568034 0.184337 0.802096 -0.423922 0.795961 -0.432129 -0.692182 -0.592433 -0.412198 -0.584101 0.124372 0.802096 -0.505010 0.747148 -0.432129 -0.626279 -0.661716 -0.412198 -0.593919 0.062469 0.802096 -0.305896 -0.253472 -0.917703 0.080343 -0.967343 0.240402 -0.948669 -0.000193 0.316271 -0.277646 -0.284136 -0.917703 0.181285 -0.953595 0.240402 -0.943424 -0.099619 0.316271 -0.246649 -0.311424 -0.917703 0.279301 -0.929622 0.240402 -0.927985 -0.197020 0.316271 -0.212651 -0.335560 -0.917703 0.375194 -0.895230 0.240402 -0.902225 -0.293195 0.316271 -0.176311 -0.355999 -0.917703 0.466954 -0.850976 0.240402 -0.866527 -0.386140 0.316271 -0.138401 -0.372379 -0.917703 0.552773 -0.797903 0.240402 -0.821759 -0.474010 0.316271 -0.098611 -0.384833 -0.917703 0.633354 -0.735574 0.240402 -0.767553 -0.557525 0.316271 -0.057734 -0.393049 -0.917703 0.706960 -0.665143 0.240402 -0.704893 -0.634900 0.316271 -0.016222 -0.396935 -0.917703 0.772778 -0.587385 0.240402 -0.634469 -0.705281 0.316271 0.025073 -0.396475 -0.917703 0.829581 -0.503987 0.240402 -0.557824 -0.767336 0.316271 0.066488 -0.391663 -0.917703 0.877833 -0.414265 0.240402 -0.474329 -0.821574 0.316271 0.107171 -0.382538 -0.917703 0.916417 -0.319981 0.240402 -0.385610 -0.866763 0.316271 0.146304 -0.369345 -0.917703 0.944683 -0.223116 0.240402 -0.293546 -0.902111 0.316271 0.184208 -0.351977 -0.917703 0.962864 -0.122878 0.240402 -0.197382 -0.927908 0.316271 0.220084 -0.330732 -0.917703 0.970440 -0.021286 0.240402 -0.099043 -0.943484 0.316271 0.253285 -0.306051 -0.917703 0.967392 0.079752 0.240402 -0.000386 -0.948669 0.316271 0.283967 -0.277819 -0.917703 0.953705 0.180703 0.240402 0.099043 -0.943484 0.316271 0.311520 -0.246527 -0.917703 0.929514 0.279663 0.240402 0.197382 -0.927908 0.316271 0.335642 -0.212520 -0.917703 0.895084 0.375542 0.240402 0.293546 -0.902111 0.316271 0.355891 -0.176528 -0.917703 0.851262 0.466434 0.240402 0.385610 -0.866763 0.316271 0.372433 -0.138256 -0.917703 0.797688 0.553083 0.240402 0.474329 -0.821574 0.316271 0.384872 -0.098461 -0.917703 0.735327 0.633641 0.240402 0.557824 -0.767336 0.316271 0.393014 -0.057974 -0.917703 0.665574 0.706553 0.240402 0.634469 -0.705281 0.316271 0.396925 -0.016464 -0.917703 0.587857 0.772419 0.240402 0.704893 -0.634900 0.316271 0.396465 0.025227 -0.917703 0.503664 0.829777 0.240402 0.767553 -0.557525 0.316271 0.391637 0.066640 -0.917703 0.413924 0.877994 0.240402 0.821759 -0.474010 0.316271 0.382603 0.106937 -0.917703 0.320541 0.916221 0.240402 0.866527 -0.386140 0.316271 0.369288 0.146448 -0.917703 0.222749 0.944770 0.240402 0.902225 -0.293195 0.316271 0.351906 0.184345 -0.917703 0.122503 0.962912 0.240402 0.927985 -0.197020 0.316271 0.330867 0.219881 -0.917703 0.021879 0.970427 0.240402 0.943424 -0.099619 0.316271 0.305999 0.253348 -0.917703 -0.079949 0.967375 0.240402 0.948669 -0.000193 0.316271 0.277761 0.284023 -0.917703 -0.180897 0.953668 0.240402 0.943464 0.099235 0.316271 0.246464 0.311570 -0.917703 -0.279852 0.929457 0.240402 0.927868 0.197570 0.316271 0.212787 0.335473 -0.917703 -0.374829 0.895383 0.240402 0.902344 0.292827 0.316271 0.176456 0.355927 -0.917703 -0.466607 0.851167 0.240402 0.866684 0.385787 0.316271 0.138180 0.372461 -0.917703 -0.553246 0.797575 0.240402 0.821478 0.474497 0.316271 0.098382 0.384892 -0.917703 -0.633790 0.735198 0.240402 0.767223 0.557980 0.316271 0.057894 0.393025 -0.917703 -0.706689 0.665430 0.240402 0.705152 0.634613 0.316271 0.016384 0.396929 -0.917703 -0.772539 0.587700 0.240402 0.634756 0.705023 0.316271 -0.025308 0.396460 -0.917703 -0.829879 0.503495 0.240402 0.557369 0.767667 0.316271 -0.066328 0.391690 -0.917703 -0.877664 0.414623 0.240402 0.474664 0.821381 0.316271 -0.107015 0.382581 -0.917703 -0.916286 0.320354 0.240402 0.385963 0.866605 0.316271 -0.146523 0.369258 -0.917703 -0.944815 0.222556 0.240402 0.293011 0.902284 0.316271 -0.184417 0.351868 -0.917703 -0.962937 0.122307 0.240402 0.196831 0.928025 0.316271 -0.219949 0.330822 -0.917703 -0.970431 0.021681 0.240402 0.099427 0.943444 0.316271 -0.253410 0.305948 -0.917703 -0.967359 -0.080146 0.240402 0.000000 0.948669 0.316271 -0.284080 0.277704 -0.917703 -0.953631 -0.181091 0.240402 -0.099427 0.943444 0.316271 -0.311374 0.246712 -0.917703 -0.929679 -0.279112 0.240402 -0.196831 0.928025 0.316271 -0.335516 0.212719 -0.917703 -0.895306 -0.375011 0.240402 -0.293011 0.902284 0.316271 -0.355963 0.176383 -0.917703 -0.851071 -0.466781 0.240402 -0.385963 0.866605 0.316271 -0.372489 0.138104 -0.917703 -0.797462 -0.553408 0.240402 -0.474664 0.821381 0.316271 -0.384813 0.098689 -0.917703 -0.735703 -0.633205 0.240402 -0.557369 0.767667 0.316271 -0.393037 0.057814 -0.917703 -0.665287 -0.706824 0.240402 -0.634756 0.705023 0.316271 -0.396932 0.016303 -0.917703 -0.587542 -0.772658 0.240402 -0.705152 0.634613 0.316271 -0.396480 -0.024992 -0.917703 -0.504156 -0.829478 0.240402 -0.767223 0.557980 0.316271 -0.391677 -0.066408 -0.917703 -0.414444 -0.877749 0.240402 -0.821478 0.474497 0.316271 -0.382560 -0.107093 -0.917703 -0.320167 -0.916351 0.240402 -0.866684 0.385787 0.316271 -0.369228 -0.146598 -0.917703 -0.222364 -0.944860 0.240402 -0.902344 0.292827 0.316271 -0.352015 -0.184137 -0.917703 -0.123074 -0.962839 0.240402 -0.927868 0.197570 0.316271 -0.330777 -0.220016 -0.917703 -0.021484 -0.970436 0.240402 -0.943464 0.099235 0.316271 -0.087345 0.885588 -0.456185 -0.166113 -0.464472 -0.869869 -0.982231 -0.000200 0.187677 -0.179680 0.871556 -0.456185 -0.116518 -0.479324 -0.869869 -0.976800 -0.103144 0.187677 -0.269187 0.848194 -0.456185 -0.066129 -0.488830 -0.869869 -0.960815 -0.203991 0.187677 -0.356602 0.815310 -0.456185 -0.014532 -0.493068 -0.869869 -0.934144 -0.303567 0.187677 -0.440088 0.773445 -0.456185 0.037225 -0.491876 -0.869869 -0.897183 -0.399801 0.187677 -0.518003 0.723579 -0.456185 0.088087 -0.485354 -0.869869 -0.850831 -0.490779 0.187677 -0.590987 0.665304 -0.456185 0.138471 -0.473449 -0.869869 -0.794708 -0.577249 0.187677 -0.657461 0.599700 -0.456185 0.187329 -0.456328 -0.869869 -0.729831 -0.657361 0.187677 -0.716693 0.527491 -0.456185 0.234124 -0.434182 -0.869869 -0.656915 -0.730233 0.187677 -0.767580 0.450239 -0.456185 0.277932 -0.407531 -0.869869 -0.577559 -0.794483 0.187677 -0.810541 0.367311 -0.456185 0.319114 -0.376157 -0.869869 -0.491110 -0.850640 0.187677 -0.844574 0.280338 -0.456185 0.356780 -0.340640 -0.869869 -0.399252 -0.897427 0.187677 -0.869113 0.191146 -0.456185 0.390215 -0.301761 -0.869869 -0.303931 -0.934025 0.187677 -0.884360 0.099004 -0.456185 0.419693 -0.259202 -0.869869 -0.204364 -0.960735 0.187677 -0.889866 0.005771 -0.456185 0.444548 -0.213788 -0.869869 -0.102547 -0.976863 0.187677 -0.885641 -0.086804 -0.456185 0.464370 -0.166397 -0.869869 -0.000400 -0.982231 0.187677 -0.871666 -0.179147 -0.456185 0.479252 -0.116811 -0.869869 0.102547 -0.976863 0.187677 -0.848089 -0.269517 -0.456185 0.488856 -0.065939 -0.869869 0.204364 -0.960735 0.187677 -0.815171 -0.356919 -0.456185 0.493074 -0.014340 -0.869869 0.303931 -0.934025 0.187677 -0.773714 -0.439615 -0.456185 0.491899 0.036925 -0.869869 0.399252 -0.897427 0.187677 -0.723378 -0.518285 -0.456185 0.485320 0.088276 -0.869869 0.491110 -0.850640 0.187677 -0.665074 -0.591246 -0.456185 0.473395 0.138655 -0.869869 0.577559 -0.794483 0.187677 -0.600102 -0.657094 -0.456185 0.456443 0.187050 -0.869869 0.656915 -0.730233 0.187677 -0.527929 -0.716370 -0.456185 0.434325 0.233858 -0.869869 0.729831 -0.657361 0.187677 -0.449940 -0.767756 -0.456185 0.407423 0.278091 -0.869869 0.794708 -0.577249 0.187677 -0.366996 -0.810684 -0.456185 0.376033 0.319260 -0.869869 0.850831 -0.490779 0.187677 -0.280854 -0.844403 -0.456185 0.340858 0.356572 -0.869869 0.897183 -0.399801 0.187677 -0.190808 -0.869188 -0.456185 0.301609 0.390333 -0.869869 0.934144 -0.303567 0.187677 -0.098660 -0.884399 -0.456185 0.259039 0.419794 -0.869869 0.960815 -0.203991 0.187677 -0.006315 -0.889862 -0.456185 0.214059 0.444417 -0.869869 0.976800 -0.103144 0.187677 0.086984 -0.885623 -0.456185 0.166302 0.464404 -0.869869 0.982231 -0.000200 0.187677 0.179325 -0.871629 -0.456185 0.116713 0.479276 -0.869869 0.976842 0.102746 0.187677 0.269690 -0.848034 -0.456185 0.065839 0.488869 -0.869869 0.960694 0.204560 0.187677 0.356269 -0.815455 -0.456185 0.014732 0.493063 -0.869869 0.934267 0.303187 0.187677 0.439773 -0.773624 -0.456185 -0.037025 0.491891 -0.869869 0.897346 0.399435 0.187677 0.518432 -0.723272 -0.456185 -0.088375 0.485302 -0.869869 0.850540 0.491283 0.187677 0.591381 -0.664954 -0.456185 -0.138751 0.473366 -0.869869 0.794365 0.577720 0.187677 0.657216 -0.599968 -0.456185 -0.187143 0.456405 -0.869869 0.730099 0.657064 0.187677 0.716478 -0.527783 -0.456185 -0.233947 0.434277 -0.869869 0.657213 0.729965 0.187677 0.767847 -0.449784 -0.456185 -0.278174 0.407366 -0.869869 0.577088 0.794825 0.187677 0.810392 -0.367642 -0.456185 -0.318960 0.376287 -0.869869 0.491457 0.850440 0.187677 0.844460 -0.280682 -0.456185 -0.356641 0.340785 -0.869869 0.399618 0.897264 0.187677 0.869227 -0.190631 -0.456185 -0.390394 0.301530 -0.869869 0.303377 0.934205 0.187677 0.884419 -0.098480 -0.456185 -0.419846 0.258953 -0.869869 0.203795 0.960856 0.187677 0.889864 -0.006134 -0.456185 -0.444460 0.213969 -0.869869 0.102945 0.976821 0.187677 0.885606 0.087164 -0.456185 -0.464438 0.166208 -0.869869 0.000000 0.982231 0.187677 0.871593 0.179502 -0.456185 -0.479300 0.116616 -0.869869 -0.102945 0.976821 0.187677 0.848249 0.269014 -0.456185 -0.488816 0.066228 -0.869869 -0.203795 0.960856 0.187677 0.815382 0.356435 -0.456185 -0.493066 0.014632 -0.869869 -0.303377 0.934205 0.187677 0.773535 0.439930 -0.456185 -0.491884 -0.037125 -0.869869 -0.399618 0.897264 0.187677 0.723167 0.518579 -0.456185 -0.485284 -0.088474 -0.869869 -0.491457 0.850440 0.187677 0.665424 0.590851 -0.456185 -0.473477 -0.138374 -0.869869 -0.577088 0.794825 0.187677 0.599834 0.657339 -0.456185 -0.456367 -0.187236 -0.869869 -0.657213 0.729965 0.187677 0.527637 0.716585 -0.456185 -0.434229 -0.234035 -0.869869 -0.730099 0.657064 0.187677 0.450395 0.767489 -0.456185 -0.407587 -0.277849 -0.869869 -0.794365 0.577720 0.187677 0.367476 0.810467 -0.456185 -0.376222 -0.319037 -0.869869 -0.850540 0.491283 0.187677 0.280510 0.844517 -0.456185 -0.340713 -0.356711 -0.869869 -0.897346 0.399435 0.187677 0.190454 0.869265 -0.456185 -0.301450 -0.390455 -0.869869 -0.934267 0.303187 0.187677 0.099184 0.884340 -0.456185 -0.259287 -0.419640 -0.869869 -0.960694 0.204560 0.187677 0.005952 0.889865 -0.456185 -0.213878 -0.444504 -0.869869 -0.976842 0.102746 0.187677 -0.117501 0.816750 -0.564902 -0.165988 -0.576992 -0.799705 -0.979102 -0.000199 0.203368 -0.202455 0.799936 -0.564902 -0.104601 -0.591211 -0.799705 -0.973689 -0.102815 0.203368 -0.284405 0.774597 -0.564902 -0.042660 -0.598876 -0.799705 -0.957755 -0.203341 0.203368 -0.364022 0.740523 -0.564902 0.020341 -0.600049 -0.799705 -0.931168 -0.302601 0.203368 -0.439629 0.698293 -0.564902 0.083118 -0.594612 -0.799705 -0.894325 -0.398527 0.203368 -0.509745 0.648881 -0.564902 0.144398 -0.582770 -0.799705 -0.848121 -0.489216 0.203368 -0.574945 0.591882 -0.564902 0.204681 -0.564427 -0.799705 -0.792177 -0.575411 0.203368 -0.633812 0.528364 -0.564902 0.262710 -0.539867 -0.799705 -0.727507 -0.655268 0.203368 -0.685698 0.459026 -0.564902 0.317845 -0.509359 -0.799705 -0.654823 -0.727907 0.203368 -0.729646 0.385362 -0.564902 0.369005 -0.473611 -0.799705 -0.575719 -0.791953 0.203368 -0.766016 0.306767 -0.564902 0.416611 -0.432328 -0.799705 -0.489546 -0.847931 0.203368 -0.793948 0.224794 -0.564902 0.459627 -0.386283 -0.799705 -0.397981 -0.894569 0.203368 -0.812995 0.141157 -0.564902 0.497245 -0.336481 -0.799705 -0.302963 -0.931051 0.203368 -0.823312 0.055172 -0.564902 0.529772 -0.282513 -0.799705 -0.203714 -0.957676 0.203368 -0.824560 -0.031421 -0.564902 0.556464 -0.225433 -0.799705 -0.102220 -0.973752 0.203368 -0.816821 -0.117002 -0.564902 0.576891 -0.166340 -0.799705 -0.000399 -0.979102 0.203368 -0.800060 -0.201966 -0.564902 0.591147 -0.104962 -0.799705 0.102220 -0.973752 0.203368 -0.774486 -0.284706 -0.564902 0.598892 -0.042427 -0.799705 0.203714 -0.957676 0.203368 -0.740381 -0.364310 -0.564902 0.600041 0.020575 -0.799705 0.302963 -0.931051 0.203368 -0.698561 -0.439202 -0.564902 0.594663 0.082755 -0.799705 0.397981 -0.894569 0.203368 -0.648682 -0.509998 -0.564902 0.582714 0.144624 -0.799705 0.489546 -0.847931 0.203368 -0.591658 -0.575175 -0.564902 0.564347 0.204900 -0.799705 0.575719 -0.791953 0.203368 -0.528751 -0.633489 -0.564902 0.540027 0.262380 -0.799705 0.654823 -0.727907 0.203368 -0.459445 -0.685417 -0.564902 0.509553 0.317533 -0.799705 0.727507 -0.655268 0.203368 -0.385078 -0.729796 -0.564902 0.473467 0.369189 -0.799705 0.792177 -0.575411 0.203368 -0.306469 -0.766135 -0.564902 0.432166 0.416779 -0.799705 0.848121 -0.489216 0.203368 -0.225279 -0.793811 -0.564902 0.386564 0.459391 -0.799705 0.894325 -0.398527 0.203368 -0.140841 -0.813050 -0.564902 0.336288 0.497376 -0.799705 0.931168 -0.302601 0.203368 -0.054852 -0.823333 -0.564902 0.282307 0.529882 -0.799705 0.957755 -0.203341 0.203368 0.030917 -0.824579 -0.564902 0.225773 0.556326 -0.799705 0.973689 -0.102815 0.203368 0.117168 -0.816797 -0.564902 0.166223 0.576925 -0.799705 0.979102 -0.000199 0.203368 0.202129 -0.800019 -0.564902 0.104842 0.591169 -0.799705 0.973731 0.102419 0.203368 0.284864 -0.774428 -0.564902 0.042305 0.598901 -0.799705 0.957634 0.203909 0.203368 0.363720 -0.740671 -0.564902 -0.020097 0.600057 -0.799705 0.931292 0.302221 0.203368 0.439345 -0.698472 -0.564902 -0.082876 0.594646 -0.799705 0.894488 0.398163 0.203368 0.510130 -0.648578 -0.564902 -0.144743 0.582685 -0.799705 0.847831 0.489719 0.203368 0.575296 -0.591541 -0.564902 -0.205015 0.564306 -0.799705 0.791835 0.575880 0.203368 0.633597 -0.528622 -0.564902 -0.262490 0.539973 -0.799705 0.727773 0.654971 0.203368 0.685511 -0.459305 -0.564902 -0.317637 0.509489 -0.799705 0.655120 0.727640 0.203368 0.729874 -0.384929 -0.564902 -0.369286 0.473392 -0.799705 0.575250 0.792294 0.203368 0.765891 -0.307079 -0.564902 -0.416435 0.432498 -0.799705 0.489891 0.847731 0.203368 0.793857 -0.225117 -0.564902 -0.459470 0.386471 -0.799705 0.398345 0.894406 0.203368 0.813079 -0.140675 -0.564902 -0.497444 0.336186 -0.799705 0.302411 0.931230 0.203368 0.823344 -0.054684 -0.564902 -0.529939 0.282199 -0.799705 0.203146 0.957796 0.203368 0.824573 0.031085 -0.564902 -0.556372 0.225660 -0.799705 0.102617 0.973710 0.203368 0.816773 0.117335 -0.564902 -0.576959 0.166105 -0.799705 0.000000 0.979102 0.203368 0.799978 0.202292 -0.564902 -0.591190 0.104721 -0.799705 -0.102617 0.973710 0.203368 0.774655 0.284247 -0.564902 -0.598867 0.042782 -0.799705 -0.203146 0.957796 0.203368 0.740597 0.363871 -0.564902 -0.600053 -0.020219 -0.799705 -0.302411 0.931230 0.203368 0.698382 0.439487 -0.564902 -0.594629 -0.082997 -0.799705 -0.398345 0.894406 0.203368 0.648475 0.510262 -0.564902 -0.582655 -0.144862 -0.799705 -0.489891 0.847731 0.203368 0.591999 0.574825 -0.564902 -0.564469 -0.204566 -0.799705 -0.575250 0.792294 0.203368 0.528493 0.633705 -0.564902 -0.539920 -0.262600 -0.799705 -0.655120 0.727640 0.203368 0.459166 0.685604 -0.564902 -0.509424 -0.317741 -0.799705 -0.727773 0.654971 0.203368 0.385510 0.729567 -0.564902 -0.473686 -0.368909 -0.799705 -0.791835 0.575880 0.203368 0.306923 0.765953 -0.564902 -0.432413 -0.416523 -0.799705 -0.847831 0.489719 0.203368 0.224955 0.793903 -0.564902 -0.386377 -0.459549 -0.799705 -0.894488 0.398163 0.203368 0.140510 0.813107 -0.564902 -0.336085 -0.497513 -0.799705 -0.931292 0.302221 0.203368 0.055340 0.823301 -0.564902 -0.282621 -0.529715 -0.799705 -0.957634 0.203909 0.203368 -0.031253 0.824566 -0.564902 -0.225547 -0.556418 -0.799705 -0.973731 0.102419 0.203368 -0.346984 -0.099112 0.932619 -0.034740 0.995076 0.092824 -0.937227 -0.000191 -0.348719 -0.334685 -0.134932 0.932619 -0.138840 0.985955 0.092824 -0.932046 -0.098418 -0.348719 -0.318869 -0.168948 0.932619 -0.240444 0.966214 0.092824 -0.916793 -0.194644 -0.348719 -0.299406 -0.201437 0.932619 -0.340386 0.935693 0.092824 -0.891343 -0.289659 -0.348719 -0.276645 -0.231708 0.932619 -0.436579 0.894865 0.092824 -0.856076 -0.381483 -0.348719 -0.251096 -0.259175 0.932619 -0.527118 0.844707 0.092824 -0.811848 -0.468293 -0.348719 -0.222550 -0.284064 0.932619 -0.612746 0.784809 0.092824 -0.758296 -0.550801 -0.348719 -0.191553 -0.305825 0.932619 -0.691625 0.716267 0.092824 -0.696392 -0.627243 -0.348719 -0.158445 -0.324216 0.932619 -0.762886 0.639835 0.092824 -0.626817 -0.696775 -0.348719 -0.123931 -0.338913 0.932619 -0.825187 0.557180 0.092824 -0.551096 -0.758082 -0.348719 -0.087728 -0.350036 0.932619 -0.879039 0.467626 0.092824 -0.468609 -0.811666 -0.348719 -0.050559 -0.357302 0.932619 -0.923208 0.372921 0.092824 -0.380959 -0.856309 -0.348719 -0.013193 -0.360620 0.932619 -0.956934 0.275065 0.092824 -0.290006 -0.891231 -0.348719 0.024675 -0.360017 0.932619 -0.980493 0.173257 0.092824 -0.195001 -0.916717 -0.348719 0.062272 -0.355448 0.932619 -0.993251 0.069540 0.092824 -0.097849 -0.932106 -0.348719 0.098900 -0.347045 0.932619 -0.995097 -0.034132 0.092824 -0.000382 -0.937227 -0.348719 0.134728 -0.334768 0.932619 -0.986040 -0.138238 0.092824 0.097849 -0.932106 -0.348719 0.169072 -0.318804 0.932619 -0.966121 -0.240820 0.092824 0.195001 -0.916717 -0.348719 0.201554 -0.299328 0.932619 -0.935560 -0.340750 0.092824 0.290006 -0.891231 -0.348719 0.231539 -0.276787 0.932619 -0.895131 -0.436032 0.092824 0.380959 -0.856309 -0.348719 0.259273 -0.250996 0.932619 -0.844502 -0.527447 0.092824 0.468609 -0.811666 -0.348719 0.284151 -0.222440 0.932619 -0.784571 -0.613052 0.092824 0.551096 -0.758082 -0.348719 0.305708 -0.191739 0.932619 -0.716689 -0.691188 0.092824 0.626817 -0.696775 -0.348719 0.324120 -0.158643 0.932619 -0.640300 -0.762495 0.092824 0.696392 -0.627243 -0.348719 0.338961 -0.123799 0.932619 -0.556859 -0.825404 0.092824 0.758296 -0.550801 -0.348719 0.350070 -0.087592 0.932619 -0.467284 -0.879221 0.092824 0.811848 -0.468293 -0.348719 0.357271 -0.050777 0.932619 -0.373485 -0.922980 0.092824 0.856076 -0.381483 -0.348719 0.360625 -0.013053 0.932619 -0.274693 -0.957041 0.092824 0.891343 -0.289659 -0.348719 0.360007 0.024815 0.932619 -0.172875 -0.980560 0.092824 0.916793 -0.194644 -0.348719 0.355486 0.062055 0.932619 -0.070147 -0.993209 0.092824 0.932046 -0.098418 -0.348719 0.347024 0.098970 0.932619 0.034335 -0.995090 0.092824 0.937227 -0.000191 -0.348719 0.334740 0.134796 0.932619 0.138438 -0.986011 0.092824 0.932086 0.098038 -0.348719 0.318769 0.169137 0.932619 0.241017 -0.966072 0.092824 0.916677 0.195188 -0.348719 0.299488 0.201315 0.932619 0.340005 -0.935831 0.092824 0.891461 0.289296 -0.348719 0.276740 0.231595 0.932619 0.436214 -0.895042 0.092824 0.856231 0.381134 -0.348719 0.250943 0.259324 0.932619 0.527619 -0.844395 0.092824 0.811570 0.468774 -0.348719 0.222382 0.284196 0.932619 0.613212 -0.784446 0.092824 0.757970 0.551251 -0.348719 0.191677 0.305747 0.932619 0.691334 -0.716548 0.092824 0.696647 0.626959 -0.348719 0.158577 0.324152 0.932619 0.762626 -0.640145 0.092824 0.627101 0.696520 -0.348719 0.123730 0.338987 0.932619 0.825517 -0.556691 0.092824 0.550647 0.758408 -0.348719 0.087871 0.350000 0.932619 0.878848 -0.467984 0.092824 0.468939 0.811475 -0.348719 0.050704 0.357282 0.932619 0.923056 -0.373297 0.092824 0.381308 0.856154 -0.348719 0.012979 0.360628 0.932619 0.957097 -0.274498 0.092824 0.289477 0.891402 -0.348719 -0.024889 0.360002 0.932619 0.980595 -0.172676 0.092824 0.194458 0.916832 -0.348719 -0.062127 0.355473 0.932619 0.993223 -0.069945 0.092824 0.098228 0.932066 -0.348719 -0.099041 0.347004 0.932619 0.995083 0.034537 0.092824 0.000000 0.937227 -0.348719 -0.134864 0.334713 0.932619 0.985983 0.138639 0.092824 -0.098228 0.932066 -0.348719 -0.168883 0.318904 0.932619 0.966263 0.240248 0.092824 -0.194458 0.916832 -0.348719 -0.201376 0.299447 0.932619 0.935762 0.340196 0.092824 -0.289477 0.891402 -0.348719 -0.231651 0.276693 0.932619 0.894953 0.436397 0.092824 -0.381308 0.856154 -0.348719 -0.259375 0.250890 0.932619 0.844287 0.527791 0.092824 -0.468939 0.811475 -0.348719 -0.284019 0.222608 0.932619 0.784934 0.612587 0.092824 -0.550647 0.758408 -0.348719 -0.305786 0.191615 0.932619 0.716407 0.691480 0.092824 -0.627101 0.696520 -0.348719 -0.324184 0.158511 0.932619 0.639990 0.762756 0.092824 -0.696647 0.626959 -0.348719 -0.338888 0.124000 0.932619 0.557348 0.825074 0.092824 -0.757970 0.551251 -0.348719 -0.350018 0.087799 0.932619 0.467805 0.878944 0.092824 -0.811570 0.468774 -0.348719 -0.357292 0.050631 0.932619 0.373109 0.923132 0.092824 -0.856231 0.381134 -0.348719 -0.360631 0.012906 0.932619 0.274303 0.957153 0.092824 -0.891461 0.289296 -0.348719 -0.360022 -0.024602 0.932619 0.173457 0.980457 0.092824 -0.916677 0.195188 -0.348719 -0.355461 -0.062199 0.932619 0.069742 0.993237 0.092824 -0.932086 0.098038 -0.348719 0.607544 0.749948 -0.261666 0.688829 -0.661497 -0.296542 -0.395482 -0.000081 -0.918474 0.525598 0.809493 -0.261666 0.754364 -0.585660 -0.296542 -0.393296 -0.041529 -0.918474 0.438722 0.859682 -0.261666 0.811087 -0.504183 -0.296542 -0.386859 -0.082134 -0.918474 0.346205 0.900929 -0.261666 0.859462 -0.416398 -0.296542 -0.376120 -0.122227 -0.918474 0.249875 0.932252 -0.261666 0.898370 -0.324027 -0.296542 -0.361239 -0.160974 -0.918474 0.151745 0.953155 -0.261666 0.927154 -0.229014 -0.296542 -0.342576 -0.197606 -0.918474 0.051012 0.963810 -0.261666 0.946051 -0.130580 -0.296542 -0.319979 -0.232422 -0.918474 -0.050283 0.963848 -0.261666 0.954526 -0.030708 -0.296542 -0.293857 -0.264678 -0.918474 -0.151025 0.953269 -0.261666 0.952487 0.069502 -0.296542 -0.264498 -0.294018 -0.918474 -0.249170 0.932441 -0.261666 0.940126 0.168007 -0.296542 -0.232546 -0.319888 -0.918474 -0.345524 0.901190 -0.261666 0.917340 0.265613 -0.296542 -0.197739 -0.342499 -0.918474 -0.438073 0.860014 -0.261666 0.884449 0.360294 -0.296542 -0.160754 -0.361337 -0.918474 -0.524986 0.809890 -0.261666 0.842268 0.450165 -0.296542 -0.122374 -0.376073 -0.918474 -0.606977 0.750407 -0.261666 0.790448 0.535961 -0.296542 -0.082285 -0.386827 -0.918474 -0.682282 0.682659 -0.261666 0.729922 0.615854 -0.296542 -0.041289 -0.393321 -0.918474 -0.749577 0.608002 -0.261666 0.661918 0.688424 -0.296542 -0.000161 -0.395482 -0.918474 -0.809171 0.526092 -0.261666 0.586120 0.754007 -0.296542 0.041289 -0.393321 -0.918474 -0.859853 0.438388 -0.261666 0.503867 0.811283 -0.296542 0.082285 -0.386827 -0.918474 -0.901064 0.345854 -0.261666 0.416064 0.859624 -0.296542 0.122374 -0.376073 -0.918474 -0.932099 0.250444 -0.261666 0.324576 0.898172 -0.296542 0.160754 -0.361337 -0.918474 -0.953214 0.151374 -0.261666 0.228653 0.927243 -0.296542 0.197739 -0.342499 -0.918474 -0.963829 0.050637 -0.261666 0.130212 0.946101 -0.296542 0.232546 -0.319888 -0.918474 -0.963878 -0.049695 -0.261666 0.031291 0.954507 -0.296542 0.264498 -0.294018 -0.918474 -0.953362 -0.150442 -0.261666 -0.068920 0.952530 -0.296542 0.293857 -0.264678 -0.918474 -0.932344 -0.249533 -0.261666 -0.168373 0.940060 -0.296542 0.319979 -0.232422 -0.918474 -0.901056 -0.345875 -0.261666 -0.265970 0.917236 -0.296542 0.342576 -0.197606 -0.918474 -0.860281 -0.437547 -0.261666 -0.359754 0.884669 -0.296542 0.361239 -0.160974 -0.918474 -0.809685 -0.525301 -0.261666 -0.450492 0.842092 -0.296542 0.376120 -0.122227 -0.918474 -0.750171 -0.607269 -0.261666 -0.536268 0.790240 -0.296542 0.386859 -0.082134 -0.918474 -0.683075 -0.681865 -0.261666 -0.615408 0.730299 -0.296542 0.393296 -0.041529 -0.918474 -0.607849 -0.749700 -0.261666 -0.688559 0.661777 -0.296542 0.395482 -0.000081 -0.918474 -0.525927 -0.809278 -0.261666 -0.754126 0.585967 -0.296542 0.393313 0.041369 -0.918474 -0.438213 -0.859942 -0.261666 -0.811386 0.503702 -0.296542 0.386811 0.082363 -0.918474 -0.346572 -0.900788 -0.261666 -0.859293 0.416748 -0.296542 0.376170 0.122074 -0.918474 -0.250254 -0.932150 -0.261666 -0.898238 0.324393 -0.296542 0.361304 0.160827 -0.918474 -0.151180 -0.953245 -0.261666 -0.927290 0.228465 -0.296542 0.342459 0.197809 -0.918474 -0.050440 -0.963840 -0.261666 -0.946128 0.130020 -0.296542 0.319841 0.232611 -0.918474 0.049891 -0.963868 -0.261666 -0.954513 0.031097 -0.296542 0.293965 0.264558 -0.918474 0.150636 -0.953331 -0.261666 -0.952516 -0.069114 -0.296542 0.264618 0.293911 -0.918474 0.249723 -0.932293 -0.261666 -0.940026 -0.168564 -0.296542 0.232357 0.320026 -0.918474 0.345157 -0.901331 -0.261666 -0.917448 -0.265240 -0.296542 0.197878 0.342418 -0.918474 0.437722 -0.860192 -0.261666 -0.884596 -0.359934 -0.296542 0.160901 0.361271 -0.918474 0.525466 -0.809578 -0.261666 -0.842001 -0.450664 -0.296542 0.122151 0.376145 -0.918474 0.607421 -0.750047 -0.261666 -0.790131 -0.536429 -0.296542 0.082055 0.386876 -0.918474 0.682004 -0.682936 -0.261666 -0.730173 -0.615557 -0.296542 0.041449 0.393304 -0.918474 0.749824 -0.607696 -0.261666 -0.661637 -0.688694 -0.296542 0.000000 0.395482 -0.918474 0.809386 -0.525762 -0.261666 -0.585813 -0.754245 -0.296542 -0.041449 0.393304 -0.918474 0.859593 -0.438897 -0.261666 -0.504348 -0.810985 -0.296542 -0.082055 0.386876 -0.918474 0.900859 -0.346389 -0.261666 -0.416573 -0.859378 -0.296542 -0.122151 0.376145 -0.918474 0.932201 -0.250064 -0.261666 -0.324210 -0.898304 -0.296542 -0.160901 0.361271 -0.918474 0.953276 -0.150986 -0.261666 -0.228276 -0.927337 -0.296542 -0.197878 0.342418 -0.918474 0.963799 -0.051208 -0.261666 -0.130773 -0.946024 -0.296542 -0.232357 0.320026 -0.918474 0.963858 0.050087 -0.261666 -0.030903 -0.954520 -0.296542 -0.264618 0.293911 -0.918474 0.953300 0.150830 -0.261666 0.069308 -0.952502 -0.296542 -0.293965 0.264558 -0.918474 0.932491 0.248980 -0.261666 0.167815 -0.940160 -0.296542 -0.319841 0.232611 -0.918474 0.901261 0.345341 -0.261666 0.265427 -0.917394 -0.296542 -0.342459 0.197809 -0.918474 0.860103 0.437897 -0.261666 0.360114 -0.884523 -0.296542 -0.361304 0.160827 -0.918474 0.809471 0.525631 -0.261666 0.450835 -0.841909 -0.296542 -0.376170 0.122074 -0.918474 0.750530 0.606824 -0.261666 0.535800 -0.790558 -0.296542 -0.386811 0.082363 -0.918474 0.682797 0.682143 -0.261666 0.615705 -0.730048 -0.296542 -0.393313 0.041369 -0.918474 0.419518 -0.062078 0.905622 0.025925 0.998071 0.056406 -0.907377 -0.000185 0.420319 0.423714 -0.017768 0.905622 -0.078823 0.995292 0.056406 -0.902360 -0.095283 0.420319 0.423269 0.026315 0.905622 -0.181720 0.981731 0.056406 -0.887593 -0.188445 0.420319 0.418180 0.070532 0.905622 -0.283612 0.957279 0.056406 -0.862954 -0.280433 0.420319 0.408485 0.113972 0.905622 -0.382380 0.922282 0.056406 -0.828810 -0.369332 0.420319 0.394446 0.155762 0.905622 -0.476058 0.877603 0.056406 -0.785990 -0.453378 0.420319 0.375949 0.196245 0.905622 -0.565415 0.822875 0.056406 -0.734144 -0.533258 0.420319 0.353310 0.234566 0.905622 -0.648545 0.759084 0.056406 -0.674212 -0.607265 0.420319 0.326780 0.270304 0.905622 -0.724530 0.686931 0.056406 -0.606853 -0.674583 0.420319 0.296954 0.302767 0.905622 -0.791928 0.608004 0.056406 -0.533544 -0.733937 0.420319 0.263586 0.332222 0.905622 -0.851289 0.521656 0.056406 -0.453683 -0.785814 0.420319 0.227315 0.358018 0.905622 -0.901274 0.429561 0.056406 -0.368826 -0.829035 0.420319 0.188920 0.379682 0.905622 -0.940998 0.333677 0.056406 -0.280769 -0.862845 0.420319 0.148086 0.397391 0.905622 -0.970788 0.233216 0.056406 -0.188790 -0.887519 0.420319 0.105621 0.410723 0.905622 -0.989884 0.130186 0.056406 -0.094732 -0.902418 0.420319 0.062334 0.419480 0.905622 -0.998055 0.026535 0.056406 -0.000370 -0.907377 0.420319 0.018027 0.423703 0.905622 -0.995340 -0.078214 0.056406 0.094732 -0.902418 0.420319 -0.026480 0.423259 0.905622 -0.981660 -0.182102 0.056406 0.188790 -0.887519 0.420319 -0.070695 0.418153 0.905622 -0.957168 -0.283985 0.056406 0.280769 -0.862845 0.420319 -0.113722 0.408554 0.905622 -0.922515 -0.381816 0.056406 0.368826 -0.829035 0.420319 -0.155915 0.394385 0.905622 -0.877418 -0.476400 0.056406 0.453683 -0.785814 0.420319 -0.196391 0.375872 0.905622 -0.822655 -0.565736 0.056406 0.533544 -0.733937 0.420319 -0.234350 0.353453 0.905622 -0.759480 -0.648081 0.056406 0.606853 -0.674583 0.420319 -0.270104 0.326945 0.905622 -0.687373 -0.724111 0.056406 0.674212 -0.607265 0.420319 -0.302882 0.296836 0.905622 -0.607696 -0.792164 0.056406 0.734144 -0.533258 0.420319 -0.332325 0.263457 0.905622 -0.521325 -0.851492 0.056406 0.785990 -0.453378 0.420319 -0.357879 0.227534 0.905622 -0.430112 -0.901012 0.056406 0.828810 -0.369332 0.420319 -0.379756 0.188772 0.905622 -0.333311 -0.941128 0.056406 0.862954 -0.280433 0.420319 -0.397449 0.147932 0.905622 -0.232838 -0.970878 0.056406 0.887593 -0.188445 0.420319 -0.410659 0.105872 0.905622 -0.130791 -0.989804 0.056406 0.902360 -0.095283 0.420319 -0.419493 0.062249 0.905622 -0.026332 -0.998061 0.056406 0.907377 -0.000185 0.420319 -0.423707 0.017940 0.905622 0.078417 -0.995324 0.056406 0.902399 0.094916 0.420319 -0.423254 -0.026566 0.905622 0.182302 -0.981623 0.056406 0.887481 0.188971 0.420319 -0.418209 -0.070362 0.905622 0.283222 -0.957394 0.056406 0.863068 0.280082 0.420319 -0.408531 -0.113805 0.905622 0.382004 -0.922438 0.056406 0.828960 0.368995 0.420319 -0.394354 -0.155995 0.905622 0.476578 -0.877321 0.056406 0.785722 0.453844 0.420319 -0.375832 -0.196467 0.905622 0.565903 -0.822540 0.056406 0.733828 0.533693 0.420319 -0.353406 -0.234422 0.905622 0.648235 -0.759348 0.056406 0.674459 0.606990 0.420319 -0.326890 -0.270170 0.905622 0.724250 -0.687226 0.056406 0.607128 0.674335 0.420319 -0.296774 -0.302943 0.905622 0.792288 -0.607535 0.056406 0.533109 0.734253 0.420319 -0.263721 -0.332115 0.905622 0.851077 -0.522002 0.056406 0.454004 0.785629 0.420319 -0.227461 -0.357926 0.905622 0.901099 -0.429929 0.056406 0.369164 0.828885 0.420319 -0.188695 -0.379794 0.905622 0.941196 -0.333119 0.056406 0.280257 0.863011 0.420319 -0.147851 -0.397479 0.905622 0.970926 -0.232640 0.056406 0.188264 0.887631 0.420319 -0.105788 -0.410680 0.905622 0.989831 -0.130589 0.056406 0.095100 0.902379 0.420319 -0.062164 -0.419506 0.905622 0.998066 -0.026129 0.056406 0.000000 0.907377 0.420319 -0.017854 -0.423710 0.905622 0.995308 0.078620 0.056406 -0.095100 0.902379 0.420319 0.026229 -0.423275 0.905622 0.981768 0.181521 0.056406 -0.188264 0.887631 0.420319 0.070447 -0.418194 0.905622 0.957336 0.283417 0.056406 -0.280257 0.863011 0.420319 0.113888 -0.408508 0.905622 0.922360 0.382192 0.056406 -0.369164 0.828885 0.420319 0.156076 -0.394322 0.905622 0.877224 0.476757 0.056406 -0.454004 0.785629 0.420319 0.196168 -0.375989 0.905622 0.822990 0.565248 0.056406 -0.533109 0.734253 0.420319 0.234494 -0.353358 0.905622 0.759216 0.648390 0.056406 -0.607128 0.674335 0.420319 0.270237 -0.326835 0.905622 0.687078 0.724390 0.056406 -0.674459 0.606990 0.420319 0.302706 -0.297015 0.905622 0.608165 0.791804 0.056406 -0.733828 0.533693 0.420319 0.332169 -0.263654 0.905622 0.521829 0.851183 0.056406 -0.785722 0.453844 0.420319 0.357972 -0.227388 0.905622 0.429745 0.901187 0.056406 -0.828960 0.368995 0.420319 0.379832 -0.188618 0.905622 0.332927 0.941264 0.056406 -0.863068 0.280082 0.420319 0.397361 -0.148167 0.905622 0.233414 0.970740 0.056406 -0.887481 0.188971 0.420319 0.410702 -0.105705 0.905622 0.130388 0.989857 0.056406 -0.902399 0.094916 0.420319 0.385838 -0.099957 -0.917135 -0.038588 -0.994992 0.092209 -0.921759 -0.000188 -0.387763 0.394190 -0.058968 -0.917135 0.065907 -0.993556 0.092209 -0.916663 -0.096794 -0.387763 0.398182 -0.017728 -0.917135 0.168695 -0.981346 0.092209 -0.901662 -0.191432 -0.387763 0.397847 0.024102 -0.917135 0.270618 -0.958261 0.092209 -0.876632 -0.284878 -0.387763 0.393129 0.065666 -0.917135 0.369560 -0.924620 0.092209 -0.841947 -0.375187 -0.387763 0.384188 0.106124 -0.917135 0.463550 -0.881260 0.092209 -0.798449 -0.460564 -0.387763 0.370950 0.145805 -0.917135 0.553360 -0.827823 0.092209 -0.745781 -0.541711 -0.387763 0.353626 0.183880 -0.917135 0.637074 -0.765268 0.092209 -0.684898 -0.616890 -0.387763 0.332406 0.219930 -0.917135 0.713771 -0.694283 0.092209 -0.616472 -0.685275 -0.387763 0.307778 0.253249 -0.917135 0.781990 -0.616433 0.092209 -0.542001 -0.745570 -0.387763 0.279541 0.284112 -0.917135 0.842289 -0.531080 0.092209 -0.460875 -0.798270 -0.387763 0.248225 0.311845 -0.917135 0.893312 -0.439877 0.092209 -0.374672 -0.842176 -0.387763 0.214510 0.335929 -0.917135 0.934150 -0.344764 0.092209 -0.285219 -0.876521 -0.387763 0.178121 0.356561 -0.917135 0.965139 -0.244959 0.092209 -0.191783 -0.901587 -0.387763 0.139770 0.373266 -0.917135 0.985497 -0.142457 0.092209 -0.096234 -0.916722 -0.387763 0.100193 0.385777 -0.917135 0.994968 -0.039196 0.092209 -0.000375 -0.921759 -0.387763 0.059209 0.394154 -0.917135 0.993596 0.065300 0.092209 0.096234 -0.916722 -0.387763 0.017573 0.398188 -0.917135 0.981280 0.169076 0.092209 0.191783 -0.901587 -0.387763 -0.024257 0.397837 -0.917135 0.958155 0.270991 0.092209 0.285219 -0.876521 -0.387763 -0.065426 0.393169 -0.917135 0.924846 0.368995 0.092209 0.374672 -0.842176 -0.387763 -0.106273 0.384147 -0.917135 0.881079 0.463893 0.092209 0.460875 -0.798270 -0.387763 -0.145949 0.370893 -0.917135 0.827607 0.553682 0.092209 0.542001 -0.745570 -0.387763 -0.183664 0.353738 -0.917135 0.765657 0.636606 0.092209 0.616472 -0.685275 -0.387763 -0.219727 0.332540 -0.917135 0.694719 0.713346 0.092209 0.684898 -0.616890 -0.387763 -0.253369 0.307680 -0.917135 0.616129 0.782229 0.092209 0.745781 -0.541711 -0.387763 -0.284221 0.279431 -0.917135 0.530753 0.842496 0.092209 0.798449 -0.460564 -0.387763 -0.311693 0.248415 -0.917135 0.440423 0.893043 0.092209 0.841947 -0.375187 -0.387763 -0.336012 0.214379 -0.917135 0.344400 0.934284 0.092209 0.876632 -0.284878 -0.387763 -0.356630 0.177982 -0.917135 0.244584 0.965234 0.092209 0.901662 -0.191432 -0.387763 -0.373180 0.139998 -0.917135 0.143059 0.985409 0.092209 0.916663 -0.096794 -0.387763 -0.385798 0.100115 -0.917135 0.038993 0.994976 0.092209 0.921759 -0.000188 -0.387763 -0.394166 0.059129 -0.917135 -0.065502 0.993583 0.092209 0.916702 0.096420 -0.387763 -0.398192 0.017492 -0.917135 -0.169276 0.981246 0.092209 0.901548 0.191966 -0.387763 -0.397856 -0.023940 -0.917135 -0.270227 0.958371 0.092209 0.876748 0.284521 -0.387763 -0.393156 -0.065506 -0.917135 -0.369183 0.924771 0.092209 0.842100 0.374844 -0.387763 -0.384125 -0.106351 -0.917135 -0.464073 0.880985 0.092209 0.798176 0.461037 -0.387763 -0.370863 -0.146025 -0.917135 -0.553850 0.827495 0.092209 0.745460 0.542153 -0.387763 -0.353700 -0.183736 -0.917135 -0.636762 0.765527 0.092209 0.685150 0.616611 -0.387763 -0.332496 -0.219794 -0.917135 -0.713488 0.694574 0.092209 0.616751 0.685024 -0.387763 -0.307628 -0.253432 -0.917135 -0.782355 0.615970 0.092209 0.541559 0.745891 -0.387763 -0.279657 -0.283998 -0.917135 -0.842073 0.531423 0.092209 0.461200 0.798082 -0.387763 -0.248352 -0.311744 -0.917135 -0.893132 0.440241 0.092209 0.375015 0.842023 -0.387763 -0.214311 -0.336056 -0.917135 -0.934354 0.344210 0.092209 0.284700 0.876690 -0.387763 -0.177909 -0.356667 -0.917135 -0.965284 0.244387 0.092209 0.191248 0.901701 -0.387763 -0.139922 -0.373209 -0.917135 -0.985439 0.142858 0.092209 0.096607 0.916682 -0.387763 -0.100036 -0.385818 -0.917135 -0.994984 0.038790 0.092209 0.000000 0.921759 -0.387763 -0.059049 -0.394178 -0.917135 -0.993569 -0.065705 0.092209 -0.096607 0.916682 -0.387763 -0.017809 -0.398178 -0.917135 -0.981380 -0.168495 0.092209 -0.191248 0.901701 -0.387763 0.024021 -0.397851 -0.917135 -0.958316 -0.270423 0.092209 -0.284700 0.876690 -0.387763 0.065586 -0.393143 -0.917135 -0.924696 -0.369372 0.092209 -0.375015 0.842023 -0.387763 0.106429 -0.384104 -0.917135 -0.880890 -0.464252 0.092209 -0.461200 0.798082 -0.387763 0.145729 -0.370980 -0.917135 -0.827935 -0.553191 0.092209 -0.541559 0.745891 -0.387763 0.183808 -0.353663 -0.917135 -0.765397 -0.636918 0.092209 -0.616751 0.685024 -0.387763 0.219862 -0.332451 -0.917135 -0.694428 -0.713629 0.092209 -0.685150 0.616611 -0.387763 0.253187 -0.307830 -0.917135 -0.616592 -0.781864 0.092209 -0.745460 0.542153 -0.387763 0.284055 -0.279599 -0.917135 -0.531252 -0.842181 0.092209 -0.798176 0.461037 -0.387763 0.311795 -0.248288 -0.917135 -0.440059 -0.893222 0.092209 -0.842100 0.374844 -0.387763 0.336100 -0.214242 -0.917135 -0.344020 -0.934424 0.092209 -0.876748 0.284521 -0.387763 0.356525 -0.178193 -0.917135 -0.245156 -0.965089 0.092209 -0.901548 0.191966 -0.387763 0.373237 -0.139846 -0.917135 -0.142657 -0.985468 0.092209 -0.916702 0.096420 -0.387763 0.156923 0.909830 -0.384168 0.344467 -0.414982 -0.842100 -0.925591 -0.000188 -0.378526 0.060702 0.921265 -0.384168 0.386063 -0.376594 -0.842100 -0.920473 -0.097196 -0.378526 -0.035265 0.922589 -0.384168 0.423072 -0.334481 -0.842100 -0.905410 -0.192228 -0.378526 -0.131765 0.913812 -0.384168 0.455798 -0.288298 -0.842100 -0.880276 -0.286062 -0.378526 -0.226813 0.894970 -0.384168 0.483503 -0.238939 -0.842100 -0.845447 -0.376746 -0.378526 -0.318497 0.866588 -0.384168 0.505696 -0.187454 -0.842100 -0.801768 -0.462479 -0.378526 -0.407567 0.828434 -0.384168 0.522557 -0.133421 -0.842100 -0.748881 -0.543962 -0.378526 -0.492148 0.781156 -0.384168 0.533663 -0.077919 -0.842100 -0.687745 -0.619455 -0.378526 -0.571309 0.725273 -0.384168 0.538890 -0.021558 -0.842100 -0.619034 -0.688124 -0.378526 -0.643514 0.662045 -0.384168 0.538217 0.034502 -0.842100 -0.544254 -0.748669 -0.378526 -0.709357 0.590954 -0.384168 0.531636 0.090721 -0.842100 -0.462790 -0.801588 -0.378526 -0.767387 0.513354 -0.384168 0.519200 0.145941 -0.842100 -0.376229 -0.845677 -0.378526 -0.816533 0.430916 -0.384168 0.501244 0.199052 -0.842100 -0.286405 -0.880165 -0.378526 -0.857199 0.342964 -0.384168 0.477622 0.250489 -0.842100 -0.192580 -0.905335 -0.378526 -0.888423 0.251234 -0.384168 0.448738 0.299168 -0.842100 -0.096634 -0.920532 -0.378526 -0.909734 0.157479 -0.384168 0.415192 0.344213 -0.842100 -0.000377 -0.925590 -0.378526 -0.921228 0.061265 -0.384168 0.376830 0.385833 -0.842100 0.096634 -0.920532 -0.378526 -0.922576 -0.035624 -0.384168 0.334316 0.423202 -0.842100 0.192580 -0.905335 -0.378526 -0.913761 -0.132120 -0.384168 0.288120 0.455910 -0.842100 0.286405 -0.880165 -0.378526 -0.895108 -0.226266 -0.384168 0.239234 0.483357 -0.842100 0.376229 -0.845677 -0.378526 -0.866464 -0.318834 -0.384168 0.187258 0.505769 -0.842100 0.462790 -0.801588 -0.378526 -0.828276 -0.407890 -0.384168 0.133218 0.522609 -0.842100 0.544254 -0.748669 -0.378526 -0.781456 -0.491671 -0.384168 0.078245 0.533615 -0.842100 0.619034 -0.688124 -0.378526 -0.725622 -0.570866 -0.384168 0.021887 0.538877 -0.842100 0.687745 -0.619455 -0.378526 -0.661795 -0.643772 -0.384168 -0.034712 0.538203 -0.842100 0.748881 -0.543962 -0.378526 -0.590678 -0.709587 -0.384168 -0.090928 0.531601 -0.842100 0.801768 -0.462479 -0.378526 -0.513823 -0.767073 -0.384168 -0.145624 0.519289 -0.842100 0.845447 -0.376746 -0.378526 -0.430598 -0.816701 -0.384168 -0.199247 0.501167 -0.842100 0.880276 -0.286062 -0.378526 -0.342630 -0.857333 -0.384168 -0.250675 0.477524 -0.842100 0.905410 -0.192228 -0.378526 -0.251777 -0.888270 -0.384168 -0.298894 0.448921 -0.842100 0.920473 -0.097196 -0.378526 -0.157293 -0.909766 -0.384168 -0.344298 0.415122 -0.842100 0.925591 -0.000188 -0.378526 -0.061077 -0.921241 -0.384168 -0.385909 0.376751 -0.842100 0.920513 0.096821 -0.378526 0.035812 -0.922568 -0.384168 -0.423270 0.334230 -0.842100 0.905295 0.192764 -0.378526 0.131393 -0.913866 -0.384168 -0.455681 0.288483 -0.842100 0.880393 0.285704 -0.378526 0.226449 -0.895062 -0.384168 -0.483406 0.239136 -0.842100 0.845600 0.376402 -0.378526 0.319010 -0.866399 -0.384168 -0.505807 0.187155 -0.842100 0.801493 0.462954 -0.378526 0.408058 -0.828193 -0.384168 -0.522636 0.133112 -0.842100 0.748558 0.544406 -0.378526 0.491830 -0.781356 -0.384168 -0.533631 0.078136 -0.842100 0.687998 0.619174 -0.378526 0.571013 -0.725506 -0.384168 -0.538881 0.021777 -0.842100 0.619315 0.687872 -0.378526 0.643907 -0.661664 -0.384168 -0.538196 -0.034821 -0.842100 0.543810 0.748992 -0.378526 0.709117 -0.591243 -0.384168 -0.531673 -0.090505 -0.842100 0.463117 0.801399 -0.378526 0.767178 -0.513666 -0.384168 -0.519259 -0.145729 -0.842100 0.376574 0.845523 -0.378526 0.816788 -0.430432 -0.384168 -0.501126 -0.199349 -0.842100 0.285883 0.880334 -0.378526 0.857402 -0.342456 -0.384168 -0.477473 -0.250773 -0.842100 0.192043 0.905449 -0.378526 0.888321 -0.251596 -0.384168 -0.448860 -0.298985 -0.842100 0.097009 0.920493 -0.378526 0.909798 -0.157108 -0.384168 -0.415052 -0.344382 -0.842100 0.000000 0.925591 -0.378526 0.921253 -0.060890 -0.384168 -0.376672 -0.385986 -0.842100 -0.097009 0.920493 -0.378526 0.922597 0.035077 -0.384168 -0.334567 -0.423004 -0.842100 -0.192043 0.905449 -0.378526 0.913839 0.131579 -0.384168 -0.288391 -0.455739 -0.842100 -0.285883 0.880334 -0.378526 0.895016 0.226631 -0.384168 -0.239037 -0.483455 -0.842100 -0.376574 0.845523 -0.378526 0.866334 0.319187 -0.384168 -0.187051 -0.505845 -0.842100 -0.463117 0.801399 -0.378526 0.828517 0.407399 -0.384168 -0.133528 -0.522530 -0.842100 -0.543810 0.748992 -0.378526 0.781256 0.491989 -0.384168 -0.078027 -0.533647 -0.842100 -0.619315 0.687872 -0.378526 0.725389 0.571161 -0.384168 -0.021668 -0.538886 -0.842100 -0.687998 0.619174 -0.378526 0.662176 0.643380 -0.384168 0.034393 -0.538224 -0.842100 -0.748558 0.544406 -0.378526 0.591099 0.709237 -0.384168 0.090613 -0.531655 -0.842100 -0.801493 0.462954 -0.378526 0.513510 0.767282 -0.384168 0.145835 -0.519230 -0.842100 -0.845600 0.376402 -0.378526 0.430265 0.816876 -0.384168 0.199451 -0.501086 -0.842100 -0.880393 0.285704 -0.378526 0.343138 0.857129 -0.384168 0.250392 -0.477673 -0.842100 -0.905295 0.192764 -0.378526 0.251415 0.888372 -0.384168 0.299077 -0.448799 -0.842100 -0.920513 0.096821 -0.378526 0.266273 -0.288966 0.919564 0.080176 0.957339 0.277621 -0.960557 -0.000196 0.278082 0.295092 -0.259468 0.919564 -0.020601 0.960470 0.277621 -0.955247 -0.100868 0.278082 0.320434 -0.227431 0.919564 -0.120199 0.953142 0.277621 -0.939614 -0.199490 0.278082 0.342505 -0.192595 0.919564 -0.219433 0.935295 0.277621 -0.913531 -0.296869 0.278082 0.360804 -0.155637 0.919564 -0.316250 0.907145 0.277621 -0.877386 -0.390979 0.278082 0.375012 -0.117340 0.919564 -0.408714 0.869413 0.277621 -0.832057 -0.479950 0.278082 0.385245 -0.077390 0.919564 -0.497584 0.821789 0.277621 -0.777172 -0.564512 0.278082 0.391234 -0.036588 0.919564 -0.580973 0.765112 0.277621 -0.713727 -0.642856 0.278082 0.392914 0.004618 0.919564 -0.657963 0.700008 0.277621 -0.642420 -0.714120 0.278082 0.390312 0.045382 0.919564 -0.727077 0.627921 0.277621 -0.564815 -0.776953 0.278082 0.383406 0.086040 0.919564 -0.788884 0.548260 0.277621 -0.480274 -0.831870 0.278082 0.372276 0.125750 0.919564 -0.842001 0.462560 0.277621 -0.390443 -0.877625 0.278082 0.357211 0.163717 0.919564 -0.885471 0.372651 0.277621 -0.297225 -0.913416 0.278082 0.338084 0.200254 0.919564 -0.919650 0.277795 0.277621 -0.199855 -0.939536 0.278082 0.315234 0.234585 0.919564 -0.943700 0.179879 0.277621 -0.100284 -0.955308 0.278082 0.289129 0.266096 0.919564 -0.957290 0.080761 0.277621 -0.000391 -0.960557 0.278082 0.259648 0.294933 0.919564 -0.960482 -0.020014 0.277621 0.100284 -0.955308 0.278082 0.227307 0.320522 0.919564 -0.953095 -0.120570 0.277621 0.199855 -0.939536 0.278082 0.192462 0.342580 0.919564 -0.935209 -0.219797 0.277621 0.297225 -0.913416 0.278082 0.155858 0.360709 0.919564 -0.907338 -0.315696 0.277621 0.390443 -0.877625 0.278082 0.117195 0.375058 0.919564 -0.869254 -0.409052 0.277621 0.480274 -0.831870 0.278082 0.077240 0.385275 0.919564 -0.821595 -0.497904 0.277621 0.564815 -0.776953 0.278082 0.036827 0.391212 0.919564 -0.765467 -0.580506 0.277621 0.642420 -0.714120 0.278082 -0.004378 0.392917 0.919564 -0.700410 -0.657535 0.277621 0.713727 -0.642856 0.278082 -0.045534 0.390294 0.919564 -0.627638 -0.727322 0.277621 0.777172 -0.564512 0.278082 -0.086189 0.383372 0.919564 -0.547953 -0.789097 0.277621 0.832057 -0.479950 0.278082 -0.125522 0.372353 0.919564 -0.463074 -0.841718 0.277621 0.877386 -0.390979 0.278082 -0.163856 0.357147 0.919564 -0.372306 -0.885616 0.277621 0.913531 -0.296869 0.278082 -0.200385 0.338007 0.919564 -0.277437 -0.919758 0.277621 0.939614 -0.199490 0.278082 -0.234392 0.315378 0.919564 -0.180455 -0.943590 0.277621 0.955247 -0.100868 0.278082 -0.266155 0.289075 0.919564 -0.080566 -0.957307 0.277621 0.960557 -0.000196 0.278082 -0.294986 0.259588 0.919564 0.020210 -0.960478 0.277621 0.955288 0.100479 0.278082 -0.320568 0.227241 0.919564 0.120764 -0.953070 0.277621 0.939496 0.200046 0.278082 -0.342427 0.192735 0.919564 0.219052 -0.935384 0.277621 0.913652 0.296497 0.278082 -0.360741 0.155784 0.919564 0.315880 -0.907274 0.277621 0.877545 0.390621 0.278082 -0.375081 0.117118 0.919564 0.409230 -0.869171 0.277621 0.831772 0.480443 0.278082 -0.385290 0.077162 0.919564 0.498071 -0.821494 0.277621 0.776837 0.564973 0.278082 -0.391219 0.036747 0.919564 0.580661 -0.765349 0.277621 0.713989 0.642566 0.278082 -0.392916 -0.004458 0.919564 0.657677 -0.700276 0.277621 0.642711 0.713858 0.278082 -0.390285 -0.045614 0.919564 0.727449 -0.627490 0.277621 0.564354 0.777287 0.278082 -0.383441 -0.085884 0.919564 0.788660 -0.548581 0.277621 0.480612 0.831674 0.278082 -0.372328 -0.125598 0.919564 0.841812 -0.462903 0.277621 0.390800 0.877466 0.278082 -0.357113 -0.163929 0.919564 0.885691 -0.372126 0.277621 0.296683 0.913592 0.278082 -0.337966 -0.200454 0.919564 0.919815 -0.277249 0.277621 0.199298 0.939655 0.278082 -0.315330 -0.234456 0.919564 0.943627 -0.180263 0.277621 0.100673 0.955267 0.278082 -0.289021 -0.266214 0.919564 0.957323 -0.080371 0.277621 0.000000 0.960557 0.278082 -0.259528 -0.295039 0.919564 0.960474 0.020406 0.277621 -0.100673 0.955267 0.278082 -0.227497 -0.320387 0.919564 0.953166 0.120005 0.277621 -0.199298 0.939655 0.278082 -0.192665 -0.342466 0.919564 0.935339 0.219242 0.277621 -0.296683 0.913592 0.278082 -0.155711 -0.360773 0.919564 0.907210 0.316065 0.277621 -0.390800 0.877466 0.278082 -0.117042 -0.375105 0.919564 0.869087 0.409407 0.277621 -0.480612 0.831674 0.278082 -0.077469 -0.385229 0.919564 0.821890 0.497417 0.277621 -0.564354 0.777287 0.278082 -0.036667 -0.391227 0.919564 0.765231 0.580817 0.277621 -0.642711 0.713858 0.278082 0.004538 -0.392915 0.919564 0.700142 0.657820 0.277621 -0.713989 0.642566 0.278082 0.045303 -0.390321 0.919564 0.628069 0.726949 0.277621 -0.776837 0.564973 0.278082 0.085962 -0.383423 0.919564 0.548421 0.788772 0.277621 -0.831772 0.480443 0.278082 0.125674 -0.372302 0.919564 0.462732 0.841906 0.277621 -0.877545 0.390621 0.278082 0.164002 -0.357080 0.919564 0.371945 0.885767 0.277621 -0.913652 0.296497 0.278082 0.200185 -0.338125 0.919564 0.277982 0.919594 0.277621 -0.939496 0.200046 0.278082 0.234520 -0.315282 0.919564 0.180071 0.943664 0.277621 -0.955288 0.100479 0.278082 0.098839 -0.965700 0.240113 0.366921 0.259660 0.893278 -0.924986 -0.000188 0.380000 0.199507 -0.950023 0.240113 0.337686 0.296686 0.893278 -0.919872 -0.097133 0.380000 0.297053 -0.924178 0.240113 0.305062 0.330139 0.893278 -0.904819 -0.192102 0.380000 0.392278 -0.887955 0.240113 0.268780 0.360293 0.893278 -0.879702 -0.285876 0.380000 0.483181 -0.841951 0.240113 0.229539 0.386479 0.893278 -0.844895 -0.376500 0.380000 0.567976 -0.787241 0.240113 0.188177 0.408220 0.893278 -0.801244 -0.462177 0.380000 0.647356 -0.723378 0.240113 0.144357 0.425694 0.893278 -0.748392 -0.543607 0.380000 0.719606 -0.651546 0.240113 0.098946 0.438479 0.893278 -0.687297 -0.619050 0.380000 0.783930 -0.572538 0.240113 0.052445 0.446434 0.893278 -0.618630 -0.687675 0.380000 0.839131 -0.488063 0.240113 0.005816 0.449467 0.893278 -0.543899 -0.748181 0.380000 0.885662 -0.397428 0.240113 -0.041323 0.447601 0.893278 -0.462488 -0.801065 0.380000 0.922437 -0.302415 0.240113 -0.088008 0.440805 0.893278 -0.375984 -0.845125 0.380000 0.948848 -0.205021 0.240113 -0.133293 0.429287 0.893278 -0.286218 -0.879590 0.380000 0.965110 -0.104446 0.240113 -0.177551 0.412952 0.893278 -0.192454 -0.904744 0.380000 0.970741 -0.002720 0.240113 -0.219854 0.392070 0.893278 -0.096571 -0.919932 0.380000 0.965760 0.098249 0.240113 -0.259436 0.367079 0.893278 -0.000377 -0.924986 0.380000 0.950144 0.198927 0.240113 -0.296479 0.337867 0.893278 0.096571 -0.919932 0.380000 0.924062 0.297413 0.240113 -0.330258 0.304933 0.893278 0.192454 -0.904744 0.380000 0.887802 0.392623 0.240113 -0.360398 0.268640 0.893278 0.286218 -0.879590 0.380000 0.842246 0.482667 0.240113 -0.386339 0.229775 0.893278 0.375984 -0.845125 0.380000 0.787021 0.568282 0.240113 -0.408293 0.188018 0.893278 0.462488 -0.801065 0.380000 0.723126 0.647638 0.240113 -0.425750 0.144191 0.893278 0.543899 -0.748181 0.380000 0.651986 0.719208 0.240113 -0.438419 0.099214 0.893278 0.618630 -0.687675 0.380000 0.573017 0.783580 0.240113 -0.446402 0.052718 0.893278 0.687297 -0.619050 0.380000 0.487736 0.839321 0.240113 -0.449469 0.005641 0.893278 0.748392 -0.543607 0.380000 0.397083 0.885816 0.240113 -0.447585 -0.041497 0.893278 0.801244 -0.462177 0.380000 0.302979 0.922252 0.240113 -0.440859 -0.087738 0.893278 0.844895 -0.376500 0.380000 0.204652 0.948928 0.240113 -0.429235 -0.133460 0.893278 0.879702 -0.285876 0.380000 0.104070 0.965150 0.240113 -0.412883 -0.177712 0.893278 0.904819 -0.192102 0.380000 0.003313 0.970739 0.240113 -0.392204 -0.219614 0.893278 0.919872 -0.097133 0.380000 -0.098446 0.965740 0.240113 -0.367027 -0.259511 0.893278 0.924986 -0.000188 0.380000 -0.199120 0.950104 0.240113 -0.337807 -0.296548 0.893278 0.919912 0.096758 0.380000 -0.297601 0.924002 0.240113 -0.304866 -0.330320 0.893278 0.904705 0.192638 0.380000 -0.391916 0.888115 0.240113 -0.268927 -0.360184 0.893278 0.879818 0.285517 0.380000 -0.482839 0.842148 0.240113 -0.229696 -0.386386 0.893278 0.845048 0.376156 0.380000 -0.568442 0.786905 0.240113 -0.187935 -0.408331 0.893278 0.800970 0.462651 0.380000 -0.647785 0.722994 0.240113 -0.144104 -0.425780 0.893278 0.748070 0.544051 0.380000 -0.719341 0.651839 0.240113 -0.099124 -0.438439 0.893278 0.687549 0.618770 0.380000 -0.783697 0.572857 0.240113 -0.052627 -0.446413 0.893278 0.618910 0.687423 0.380000 -0.839420 0.487565 0.240113 -0.005550 -0.449470 0.893278 0.543455 0.748503 0.380000 -0.885500 0.397789 0.240113 0.041141 -0.447618 0.893278 0.462815 0.800876 0.380000 -0.922314 0.302791 0.240113 0.087828 -0.440841 0.893278 0.376328 0.844972 0.380000 -0.948969 0.204458 0.240113 0.133547 -0.429208 0.893278 0.285696 0.879760 0.380000 -0.965172 0.103873 0.240113 0.177796 -0.412847 0.893278 0.191918 0.904858 0.380000 -0.970740 0.003115 0.240113 0.219694 -0.392159 0.893278 0.096945 0.919892 0.380000 -0.965720 -0.098642 0.240113 0.259585 -0.366974 0.893278 0.000000 0.924986 0.380000 -0.950063 -0.199314 0.240113 0.296617 -0.337746 0.893278 -0.096945 0.919892 0.380000 -0.924239 -0.296865 0.240113 0.330077 -0.305129 0.893278 -0.191918 0.904858 0.380000 -0.888035 -0.392097 0.240113 0.360239 -0.268854 0.893278 -0.285696 0.879760 0.380000 -0.842049 -0.483010 0.240113 0.386432 -0.229618 0.893278 -0.376328 0.844972 0.380000 -0.786789 -0.568603 0.240113 0.408370 -0.187852 0.893278 -0.462815 0.800876 0.380000 -0.723510 -0.647209 0.240113 0.425665 -0.144443 0.893278 -0.543455 0.748503 0.380000 -0.651693 -0.719474 0.240113 0.438459 -0.099035 0.893278 -0.618910 0.687423 0.380000 -0.572698 -0.783813 0.240113 0.446424 -0.052536 0.893278 -0.687549 0.618770 0.380000 -0.488234 -0.839031 0.240113 0.449466 -0.005908 0.893278 -0.748070 0.544051 0.380000 -0.397608 -0.885581 0.240113 0.447609 0.041232 0.893278 -0.800970 0.462651 0.380000 -0.302603 -0.922376 0.240113 0.440823 0.087918 0.893278 -0.845048 0.376156 0.380000 -0.204265 -0.949011 0.240113 0.429181 0.133635 0.893278 -0.879818 0.285517 0.380000 -0.104642 -0.965089 0.240113 0.412989 0.177467 0.893278 -0.904705 0.192638 0.380000 -0.002918 -0.970741 0.240113 0.392114 0.219774 0.893278 -0.919912 0.096758 0.380000 -0.566929 0.806141 0.169496 0.772333 0.591724 -0.231009 -0.286520 -0.000058 -0.958074 -0.648296 0.742283 0.169496 0.706063 0.669411 -0.231009 -0.284936 -0.030087 -0.958074 -0.721851 0.670971 0.169496 0.632754 0.739092 -0.231009 -0.280273 -0.059505 -0.958074 -0.788198 0.591621 0.169496 0.551807 0.801339 -0.231009 -0.272493 -0.088552 -0.958074 -0.845863 0.505753 0.169496 0.464782 0.854759 -0.231009 -0.261711 -0.116623 -0.958074 -0.893797 0.415209 0.169496 0.373536 0.898391 -0.231009 -0.248190 -0.143162 -0.958074 -0.932391 0.319247 0.169496 0.277321 0.932592 -0.231009 -0.231819 -0.168386 -0.958074 -0.960715 0.219767 0.169496 0.178052 0.956521 -0.231009 -0.212894 -0.191755 -0.958074 -0.978457 0.117867 0.169496 0.076821 0.969914 -0.231009 -0.191624 -0.213011 -0.958074 -0.985407 0.015654 0.169496 -0.024284 0.972649 -0.231009 -0.168476 -0.231753 -0.958074 -0.981620 -0.087710 0.169496 -0.126091 0.964747 -0.231009 -0.143258 -0.248134 -0.958074 -0.967021 -0.190108 0.169496 -0.226508 0.946218 -0.231009 -0.116463 -0.261782 -0.958074 -0.942061 -0.289470 0.169496 -0.323514 0.917591 -0.231009 -0.088658 -0.272458 -0.958074 -0.906534 -0.386610 0.169496 -0.417902 0.878631 -0.231009 -0.059614 -0.280250 -0.958074 -0.861022 -0.479492 0.169496 -0.507688 0.829993 -0.231009 -0.029913 -0.284954 -0.958074 -0.806487 -0.566436 0.169496 -0.591252 0.772694 -0.231009 -0.000117 -0.286520 -0.958074 -0.742679 -0.647842 0.169496 -0.668979 0.706471 -0.231009 0.029913 -0.284954 -0.958074 -0.670690 -0.722112 0.169496 -0.739338 0.632467 -0.231009 0.059614 -0.280250 -0.958074 -0.591314 -0.788428 0.169496 -0.801553 0.551496 -0.231009 0.088658 -0.272458 -0.958074 -0.506270 -0.845554 0.169496 -0.854475 0.465305 -0.231009 0.116463 -0.261782 -0.958074 -0.414862 -0.893958 0.169496 -0.898536 0.373187 -0.231009 0.143258 -0.248134 -0.958074 -0.318884 -0.932515 0.169496 -0.932700 0.276958 -0.231009 0.168476 -0.231753 -0.958074 -0.220354 -0.960581 0.169496 -0.956412 0.178636 -0.231009 0.191624 -0.213011 -0.958074 -0.118465 -0.978385 0.169496 -0.969867 0.077413 -0.231009 0.212894 -0.191755 -0.958074 -0.015270 -0.985413 0.169496 -0.972639 -0.024662 -0.231009 0.231819 -0.168386 -0.958074 0.088092 -0.981586 0.169496 -0.964698 -0.126466 -0.231009 0.248190 -0.143162 -0.958074 0.189517 -0.967137 0.169496 -0.946356 -0.225930 -0.231009 0.261711 -0.116623 -0.958074 0.289836 -0.941948 0.169496 -0.917465 -0.323871 -0.231009 0.272493 -0.088552 -0.958074 0.386963 -0.906383 0.169496 -0.878468 -0.418244 -0.231009 0.280273 -0.059505 -0.958074 0.478966 -0.861315 0.169496 -0.830303 -0.507180 -0.231009 0.284936 -0.030087 -0.958074 0.566600 -0.806372 0.169496 -0.772574 -0.591409 -0.231009 0.286520 -0.000058 -0.958074 0.647993 -0.742547 0.169496 -0.706335 -0.669123 -0.231009 0.284948 0.029971 -0.958074 0.722249 -0.670543 0.169496 -0.632316 -0.739467 -0.231009 0.280238 0.059671 -0.958074 0.787957 -0.591942 0.169496 -0.552134 -0.801114 -0.231009 0.272529 0.088441 -0.958074 0.845657 -0.506098 0.169496 -0.465130 -0.854569 -0.231009 0.261759 0.116517 -0.958074 0.894042 -0.414680 0.169496 -0.373004 -0.898612 -0.231009 0.248105 0.143309 -0.958074 0.932580 -0.318694 0.169496 -0.276768 -0.932756 -0.231009 0.231719 0.168523 -0.958074 0.960626 -0.220158 0.169496 -0.178441 -0.956448 -0.231009 0.212972 0.191668 -0.958074 0.978409 -0.118265 0.169496 -0.077216 -0.969883 -0.231009 0.191711 0.212933 -0.958074 0.985416 -0.015070 0.169496 0.024860 -0.972634 -0.231009 0.168338 0.231853 -0.958074 0.981656 0.087310 0.169496 0.125698 -0.964798 -0.231009 0.143360 0.248076 -0.958074 0.967099 0.189714 0.169496 0.226123 -0.946310 -0.231009 0.116570 0.261735 -0.958074 0.941889 0.290028 0.169496 0.324058 -0.917399 -0.231009 0.088496 0.272511 -0.958074 0.906305 0.387147 0.169496 0.418423 -0.878383 -0.231009 0.059448 0.280285 -0.958074 0.861217 0.479141 0.169496 0.507349 -0.830200 -0.231009 0.030029 0.284942 -0.958074 0.806256 0.566764 0.169496 0.591566 -0.772454 -0.231009 0.000000 0.286520 -0.958074 0.742415 0.648144 0.169496 0.669267 -0.706199 -0.231009 -0.030029 0.284942 -0.958074 0.671118 0.721714 0.169496 0.738963 -0.632905 -0.231009 -0.059448 0.280285 -0.958074 0.591781 0.788078 0.169496 0.801226 -0.551971 -0.231009 -0.088496 0.272511 -0.958074 0.505926 0.845760 0.169496 0.854664 -0.464956 -0.231009 -0.116570 0.261735 -0.958074 0.414498 0.894127 0.169496 0.898688 -0.372821 -0.231009 -0.143360 0.248076 -0.958074 0.319436 0.932326 0.169496 0.932536 -0.277511 -0.231009 -0.168338 0.231853 -0.958074 0.219963 0.960670 0.169496 0.956485 -0.178246 -0.231009 -0.191711 0.212933 -0.958074 0.118066 0.978433 0.169496 0.969899 -0.077018 -0.231009 -0.212972 0.191668 -0.958074 0.015855 0.985403 0.169496 0.972654 0.024086 -0.231009 -0.231719 0.168523 -0.958074 -0.087510 0.981638 0.169496 0.964772 0.125894 -0.231009 -0.248105 0.143309 -0.958074 -0.189911 0.967060 0.169496 0.946264 0.226316 -0.231009 -0.261759 0.116517 -0.958074 -0.290220 0.941830 0.169496 0.917333 0.324245 -0.231009 -0.272529 0.088441 -0.958074 -0.386426 0.906613 0.169496 0.878716 0.417723 -0.231009 -0.280238 0.059671 -0.958074 -0.479317 0.861119 0.169496 0.830096 0.507519 -0.231009 -0.284948 0.029971 -0.958074 0.010337 0.988320 -0.152039 0.068372 -0.152390 -0.985953 -0.997606 -0.000203 -0.069148 -0.093303 0.983961 -0.152039 0.083967 -0.144385 -0.985953 -0.992091 -0.104758 -0.069148 -0.194946 0.968958 -0.152039 0.098502 -0.134888 -0.985953 -0.975855 -0.207184 -0.069148 -0.295426 0.943190 -0.152039 0.112097 -0.123821 -0.985953 -0.948766 -0.308319 -0.069148 -0.392652 0.907033 -0.152039 0.124457 -0.111391 -0.985953 -0.911227 -0.406059 -0.069148 -0.484692 0.861370 -0.152039 0.135348 -0.097869 -0.985953 -0.864149 -0.498462 -0.069148 -0.572300 0.805826 -0.152039 0.144860 -0.083144 -0.985953 -0.807148 -0.586286 -0.069148 -0.653605 0.741407 -0.152039 0.152776 -0.067504 -0.985953 -0.741256 -0.667651 -0.069148 -0.727710 0.668822 -0.152039 0.159010 -0.051120 -0.985953 -0.667199 -0.741663 -0.069148 -0.793210 0.589662 -0.152039 0.163457 -0.034337 -0.985953 -0.586600 -0.806920 -0.069148 -0.850643 0.503281 -0.152039 0.166156 -0.017016 -0.985953 -0.498798 -0.863956 -0.069148 -0.898705 0.411355 -0.152039 0.167024 0.000492 -0.985953 -0.405502 -0.911475 -0.069148 -0.936553 0.315836 -0.152039 0.166071 0.017828 -0.985953 -0.308689 -0.948646 -0.069148 -0.964497 0.215939 -0.152039 0.163288 0.035136 -0.985953 -0.207564 -0.975775 -0.069148 -0.981817 0.113663 -0.152039 0.158706 0.052056 -0.985953 -0.104152 -0.992155 -0.069148 -0.988314 0.010941 -0.152039 0.152432 0.068279 -0.985953 -0.000406 -0.997606 -0.069148 -0.984018 -0.092702 -0.152039 0.144436 0.083878 -0.985953 0.104152 -0.992155 -0.069148 -0.968882 -0.195323 -0.152039 0.134849 0.098554 -0.985953 0.207564 -0.975775 -0.069148 -0.943075 -0.295793 -0.152039 0.123778 0.112145 -0.985953 0.308689 -0.948646 -0.069148 -0.907272 -0.392098 -0.152039 0.111467 0.124389 -0.985953 0.405502 -0.911475 -0.069148 -0.861181 -0.485027 -0.152039 0.097816 0.135386 -0.985953 0.498798 -0.863956 -0.069148 -0.805604 -0.572614 -0.152039 0.083088 0.144892 -0.985953 0.586600 -0.806920 -0.069148 -0.741806 -0.653152 -0.152039 0.067597 0.152735 -0.985953 0.667199 -0.741663 -0.069148 -0.669266 -0.727301 -0.152039 0.051217 0.158978 -0.985953 0.741256 -0.667651 -0.069148 -0.589354 -0.793440 -0.152039 0.034273 0.163471 -0.985953 0.807148 -0.586286 -0.069148 -0.502950 -0.850838 -0.152039 0.016951 0.166163 -0.985953 0.864149 -0.498462 -0.069148 -0.411904 -0.898454 -0.152039 -0.000390 0.167025 -0.985953 0.911227 -0.406059 -0.069148 -0.315471 -0.936676 -0.152039 -0.017893 0.166064 -0.985953 0.948766 -0.308319 -0.069148 -0.215564 -0.964581 -0.152039 -0.035199 0.163274 -0.985953 0.975855 -0.207184 -0.069148 -0.114263 -0.981747 -0.152039 -0.051959 0.158738 -0.985953 0.992091 -0.104758 -0.069148 -0.010740 -0.988316 -0.152039 -0.068310 0.152418 -0.985953 0.997606 -0.000203 -0.069148 0.092902 -0.983999 -0.152039 -0.083908 0.144419 -0.985953 0.992133 0.104354 -0.069148 0.195521 -0.968843 -0.152039 -0.098582 0.134829 -0.985953 0.975732 0.207762 -0.069148 0.295042 -0.943310 -0.152039 -0.112046 0.123867 -0.985953 0.948892 0.307933 -0.069148 0.392283 -0.907193 -0.152039 -0.124411 0.111441 -0.985953 0.911392 0.405688 -0.069148 0.485203 -0.861082 -0.152039 -0.135406 0.097788 -0.985953 0.863854 0.498974 -0.069148 0.572778 -0.805487 -0.152039 -0.144909 0.083058 -0.985953 0.806800 0.586764 -0.069148 0.653303 -0.741673 -0.152039 -0.152749 0.067566 -0.985953 0.741527 0.667350 -0.069148 0.727438 -0.669118 -0.152039 -0.158989 0.051185 -0.985953 0.667501 0.741392 -0.069148 0.793560 -0.589192 -0.152039 -0.163478 0.034240 -0.985953 0.586121 0.807267 -0.069148 0.850438 -0.503627 -0.152039 -0.166149 0.017084 -0.985953 0.499150 0.863752 -0.069148 0.898538 -0.411721 -0.152039 -0.167024 -0.000424 -0.985953 0.405873 0.911310 -0.069148 0.936740 -0.315281 -0.152039 -0.166060 -0.017927 -0.985953 0.308126 0.948829 -0.069148 0.964625 -0.215367 -0.152039 -0.163267 -0.035232 -0.985953 0.206985 0.975897 -0.069148 0.981771 -0.114063 -0.152039 -0.158727 -0.051991 -0.985953 0.104556 0.992112 -0.069148 0.988318 -0.010538 -0.152039 -0.152404 -0.068341 -0.985953 0.000000 0.997606 -0.069148 0.983980 0.093102 -0.152039 -0.144402 -0.083937 -0.985953 -0.104556 0.992112 -0.069148 0.968998 0.194749 -0.152039 -0.134908 -0.098474 -0.985953 -0.206985 0.975897 -0.069148 0.943250 0.295234 -0.152039 -0.123844 -0.112071 -0.985953 -0.308126 0.948829 -0.069148 0.907113 0.392468 -0.152039 -0.111416 -0.124434 -0.985953 -0.405873 0.911310 -0.069148 0.860983 0.485378 -0.152039 -0.097761 -0.135426 -0.985953 -0.499150 0.863752 -0.069148 0.805943 0.572136 -0.152039 -0.083174 -0.144843 -0.985953 -0.586121 0.807267 -0.069148 0.741540 0.653454 -0.152039 -0.067535 -0.152762 -0.985953 -0.667501 0.741392 -0.069148 0.668970 0.727574 -0.152039 -0.051153 -0.158999 -0.985953 -0.741527 0.667350 -0.069148 0.589824 0.793090 -0.152039 -0.034370 -0.163450 -0.985953 -0.806800 0.586764 -0.069148 0.503454 0.850540 -0.152039 -0.017050 -0.166153 -0.985953 -0.863854 0.498974 -0.069148 0.411538 0.898621 -0.152039 0.000458 -0.167024 -0.985953 -0.911392 0.405688 -0.069148 0.315090 0.936804 -0.152039 0.017961 -0.166057 -0.985953 -0.948892 0.307933 -0.069148 0.216135 0.964453 -0.152039 0.035102 -0.163295 -0.985953 -0.975732 0.207762 -0.069148 0.113863 0.981794 -0.152039 0.052024 -0.158716 -0.985953 -0.992133 0.104354 -0.069148 0.908124 0.227964 0.351202 -0.212645 0.973670 -0.082156 -0.360683 -0.000073 0.932688 0.879231 0.321887 0.351202 -0.313522 0.946020 -0.082156 -0.358689 -0.037875 0.932688 0.841064 0.411423 0.351202 -0.410037 0.908361 -0.082156 -0.352819 -0.074907 0.932688 0.793312 0.497306 0.351202 -0.502981 0.860384 -0.082156 -0.343025 -0.111472 0.932688 0.736822 0.577712 0.351202 -0.590385 0.802929 -0.082156 -0.329453 -0.146810 0.932688 0.672867 0.651082 0.351202 -0.670550 0.737301 -0.082156 -0.312432 -0.180218 0.932688 0.600923 0.718018 0.351202 -0.744131 0.662962 -0.082156 -0.291823 -0.211971 0.932688 0.522360 0.777044 0.351202 -0.809516 0.581321 -0.082156 -0.268000 -0.241388 0.932688 0.438043 0.827512 0.351202 -0.865984 0.493276 -0.082156 -0.241225 -0.268147 0.932688 0.349770 0.868515 0.351202 -0.912514 0.400711 -0.082156 -0.212084 -0.291740 0.932688 0.256817 0.900390 0.351202 -0.949485 0.302866 -0.082156 -0.180340 -0.312362 0.932688 0.161035 0.922348 0.351202 -0.975999 0.201685 -0.082156 -0.146609 -0.329542 0.932688 0.064414 0.934081 0.351202 -0.991663 0.099275 -0.082156 -0.111606 -0.342981 0.932688 -0.033839 0.935688 0.351202 -0.996606 -0.005206 -0.082156 -0.075044 -0.352790 0.932688 -0.131720 0.926988 0.351202 -0.990572 -0.109628 -0.082156 -0.037656 -0.358712 0.932688 -0.227409 0.908263 0.351202 -0.973799 -0.212050 -0.082156 -0.000147 -0.360683 0.932688 -0.321349 0.879427 0.351202 -0.946212 -0.312944 -0.082156 0.037656 -0.358712 0.932688 -0.411750 0.840904 0.351202 -0.908202 -0.410390 -0.082156 0.075044 -0.352790 0.932688 -0.497615 0.793118 0.351202 -0.860188 -0.503316 -0.082156 0.111606 -0.342981 0.932688 -0.577262 0.737174 0.351202 -0.803290 -0.589895 -0.082156 0.146609 -0.329542 0.932688 -0.651344 0.672613 0.351202 -0.737041 -0.670836 -0.082156 0.180340 -0.312362 0.932688 -0.718251 0.600643 0.351202 -0.662673 -0.744389 -0.082156 0.212084 -0.291740 0.932688 -0.776725 0.522834 0.351202 -0.581815 -0.809161 -0.082156 0.241225 -0.268147 0.932688 -0.827244 0.438549 0.351202 -0.493805 -0.865683 -0.082156 0.268000 -0.241388 0.932688 -0.868651 0.349432 0.351202 -0.400356 -0.912669 -0.082156 0.291823 -0.211971 0.932688 -0.900490 0.256467 0.351202 -0.302497 -0.949603 -0.082156 0.312432 -0.180218 0.932688 -0.922249 0.161599 0.351202 -0.202281 -0.975875 -0.082156 0.329453 -0.146810 0.932688 -0.934107 0.064051 0.351202 -0.098889 -0.991701 -0.082156 0.343025 -0.111472 0.932688 -0.935675 -0.034203 0.351202 0.005593 -0.996604 -0.082156 0.352819 -0.074907 0.932688 -0.927069 -0.131153 0.351202 0.109023 -0.990638 -0.082156 0.358689 -0.037875 0.932688 -0.908217 -0.227594 0.351202 0.212249 -0.973756 -0.082156 0.360683 -0.000073 0.932688 -0.879362 -0.321528 0.351202 0.313136 -0.946148 -0.082156 0.358704 0.037729 0.932688 -0.840820 -0.411921 0.351202 0.410575 -0.908118 -0.082156 0.352774 0.075116 0.932688 -0.793514 -0.496983 0.351202 0.502631 -0.860589 -0.082156 0.343070 0.111333 0.932688 -0.737057 -0.577412 0.351202 0.590058 -0.803170 -0.082156 0.329512 0.146676 0.932688 -0.672481 -0.651481 0.351202 0.670987 -0.736904 -0.082156 0.312325 0.180403 0.932688 -0.600497 -0.718374 0.351202 0.744524 -0.662521 -0.082156 0.291697 0.212143 0.932688 -0.522676 -0.776831 0.351202 0.809279 -0.581651 -0.082156 0.268098 0.241279 0.932688 -0.438380 -0.827333 0.351202 0.865783 -0.493629 -0.082156 0.241334 0.268049 0.932688 -0.349255 -0.868722 0.351202 0.912751 -0.400170 -0.082156 0.211911 0.291866 0.932688 -0.257184 -0.900285 0.351202 0.949362 -0.303253 -0.082156 0.180467 0.312288 0.932688 -0.161411 -0.922282 0.351202 0.975917 -0.202083 -0.082156 0.146743 0.329482 0.932688 -0.063860 -0.934120 0.351202 0.991721 -0.098687 -0.082156 0.111403 0.343048 0.932688 0.034394 -0.935668 0.351202 0.996603 0.005796 -0.082156 0.074835 0.352834 0.932688 0.131342 -0.927042 0.351202 0.990616 0.109225 -0.082156 0.037802 0.358696 0.932688 0.227779 -0.908171 0.351202 0.973713 0.212447 -0.082156 0.000000 0.360683 0.932688 0.321708 -0.879296 0.351202 0.946084 0.313329 -0.082156 -0.037802 0.358696 0.932688 0.411251 -0.841148 0.351202 0.908445 0.409852 -0.082156 -0.074835 0.352834 0.932688 0.497145 -0.793413 0.351202 0.860486 0.502806 -0.082156 -0.111403 0.343048 0.932688 0.577562 -0.736939 0.351202 0.803050 0.590222 -0.082156 -0.146743 0.329482 0.932688 0.651618 -0.672348 0.351202 0.736767 0.671137 -0.082156 -0.180467 0.312288 0.932688 0.717895 -0.601069 0.351202 0.663114 0.743996 -0.082156 -0.211911 0.291866 0.932688 0.776938 -0.522518 0.351202 0.581486 0.809398 -0.082156 -0.241334 0.268049 0.932688 0.827422 -0.438212 0.351202 0.493453 0.865884 -0.082156 -0.268098 0.241279 0.932688 0.868444 -0.349947 0.351202 0.400897 0.912432 -0.082156 -0.291697 0.212143 0.932688 0.900338 -0.257001 0.351202 0.303059 0.949424 -0.082156 -0.312325 0.180403 0.932688 0.922315 -0.161223 0.351202 0.201884 0.975958 -0.082156 -0.329512 0.146676 0.932688 0.934133 -0.063670 0.351202 0.098485 0.991741 -0.082156 -0.343070 0.111333 0.932688 0.935695 0.033648 0.351202 -0.005003 0.996607 -0.082156 -0.352774 0.075116 0.932688 0.927015 0.131531 0.351202 -0.109427 0.990594 -0.082156 -0.358704 0.037729 0.932688 -0.319450 -0.828442 0.460039 -0.472764 0.560075 0.680302 -0.821247 -0.000167 -0.570573 -0.230864 -0.857360 0.460039 -0.528860 0.507442 0.680302 -0.816706 -0.086239 -0.570573 -0.140612 -0.876694 0.460039 -0.578681 0.449797 0.680302 -0.803341 -0.170557 -0.570573 -0.047954 -0.886603 0.460039 -0.622636 0.386670 0.680302 -0.781041 -0.253814 -0.570573 0.045233 -0.886746 0.460039 -0.659733 0.319284 0.680302 -0.750138 -0.334275 -0.570573 0.137044 -0.877259 0.460039 -0.689314 0.249070 0.680302 -0.711383 -0.410342 -0.570573 0.228232 -0.858064 0.460039 -0.711622 0.175454 0.680302 -0.664458 -0.482640 -0.570573 0.316906 -0.829418 0.460039 -0.726091 0.099904 0.680302 -0.610214 -0.549622 -0.570573 0.402090 -0.791636 0.460039 -0.732563 0.023254 0.680302 -0.549249 -0.610550 -0.570573 0.482099 -0.745617 0.460039 -0.731019 -0.052921 0.680302 -0.482899 -0.664270 -0.570573 0.557590 -0.690983 0.460039 -0.721447 -0.129245 0.680302 -0.410619 -0.711223 -0.570573 0.626939 -0.628738 0.460039 -0.703928 -0.204146 0.680302 -0.333816 -0.750342 -0.570573 0.688823 -0.560257 0.460039 -0.678931 -0.276120 0.680302 -0.254118 -0.780942 -0.570573 0.743748 -0.484978 0.460039 -0.646253 -0.345756 0.680302 -0.170870 -0.803274 -0.570573 0.790481 -0.404356 0.460039 -0.606456 -0.411584 0.680302 -0.085740 -0.816759 -0.570573 0.828246 -0.319956 0.460039 -0.560364 -0.472421 0.680302 -0.000334 -0.821247 -0.570573 0.857219 -0.231388 0.460039 -0.507765 -0.528550 0.680302 0.085740 -0.816759 -0.570573 0.876749 -0.140271 0.460039 -0.449572 -0.578856 0.680302 0.170870 -0.803274 -0.570573 0.886621 -0.047609 0.460039 -0.386428 -0.622787 0.680302 0.254118 -0.780942 -0.570573 0.886773 0.044691 0.460039 -0.319687 -0.659538 0.680302 0.333816 -0.750342 -0.570573 0.877206 0.137385 0.460039 -0.248802 -0.689411 0.680302 0.410619 -0.711223 -0.570573 0.857975 0.228566 0.460039 -0.175177 -0.711690 0.680302 0.482899 -0.664270 -0.570573 0.829612 0.316400 0.460039 -0.100348 -0.726030 0.680302 0.549249 -0.610550 -0.570573 0.791882 0.401606 0.460039 -0.023702 -0.732549 0.680302 0.610214 -0.549622 -0.570573 0.745429 0.482389 0.460039 0.053205 -0.730999 0.680302 0.664458 -0.482640 -0.570573 0.690766 0.557859 0.460039 0.129526 -0.721396 0.680302 0.711383 -0.410342 -0.570573 0.629121 0.626555 0.460039 0.203716 -0.704052 0.680302 0.750138 -0.334275 -0.570573 0.559989 0.689041 0.460039 0.276384 -0.678824 0.680302 0.781041 -0.253814 -0.570573 0.484688 0.743937 0.460039 0.346007 -0.646118 0.680302 0.803341 -0.170557 -0.570573 0.404839 0.790234 0.460039 0.411213 -0.606707 0.680302 0.816706 -0.086239 -0.570573 0.319788 0.828312 0.460039 0.472535 -0.560268 0.680302 0.821247 -0.000167 -0.570573 0.231213 0.857266 0.460039 0.528653 -0.507657 0.680302 0.816741 0.085906 -0.570573 0.140092 0.876777 0.460039 0.578948 -0.449454 0.680302 0.803240 0.171033 -0.570573 0.048315 0.886583 0.460039 0.622479 -0.386924 0.680302 0.781144 0.253496 -0.570573 -0.044872 0.886764 0.460039 0.659603 -0.319553 0.680302 0.750274 0.333969 -0.570573 -0.137564 0.877178 0.460039 0.689461 -0.248662 0.680302 0.711139 0.410764 -0.570573 -0.228741 0.857929 0.460039 0.711726 -0.175032 0.680302 0.664172 0.483034 -0.570573 -0.316568 0.829547 0.460039 0.726051 -0.100200 0.680302 0.610438 0.549374 -0.570573 -0.401767 0.791800 0.460039 0.732554 -0.023553 0.680302 0.549498 0.610326 -0.570573 -0.482541 0.745331 0.460039 0.730988 0.053354 0.680302 0.482505 0.664556 -0.570573 -0.557309 0.691210 0.460039 0.721499 0.128951 0.680302 0.410909 0.711056 -0.570573 -0.626683 0.628993 0.460039 0.704011 0.203859 0.680302 0.334122 0.750206 -0.570573 -0.689155 0.559848 0.460039 0.678767 0.276522 0.680302 0.253655 0.781092 -0.570573 -0.744035 0.484537 0.460039 0.646048 0.346139 0.680302 0.170394 0.803375 -0.570573 -0.790316 0.404678 0.460039 0.606623 0.411336 0.680302 0.086073 0.816724 -0.570573 -0.828377 0.319619 0.460039 0.560171 0.472650 0.680302 0.000000 0.821247 -0.570573 -0.857313 0.231039 0.460039 0.507549 0.528756 0.680302 -0.086073 0.816724 -0.570573 -0.876665 0.140790 0.460039 0.449915 0.578589 0.680302 -0.170394 0.803375 -0.570573 -0.886593 0.048134 0.460039 0.386797 0.622557 0.680302 -0.253655 0.781092 -0.570573 -0.886755 -0.045052 0.460039 0.319418 0.659668 0.680302 -0.334122 0.750206 -0.570573 -0.877149 -0.137742 0.460039 0.248521 0.689512 0.680302 -0.410909 0.711056 -0.570573 -0.858111 -0.228057 0.460039 0.175598 0.711586 0.680302 -0.482505 0.664556 -0.570573 -0.829483 -0.316737 0.460039 0.100052 0.726071 0.680302 -0.549498 0.610326 -0.570573 -0.791718 -0.401929 0.460039 0.023404 0.732558 0.680302 -0.610438 0.549374 -0.570573 -0.745715 -0.481947 0.460039 -0.052772 0.731030 0.680302 -0.664172 0.483034 -0.570573 -0.691096 -0.557449 0.460039 -0.129098 0.721473 0.680302 -0.711139 0.410764 -0.570573 -0.628866 -0.626811 0.460039 -0.204003 0.703969 0.680302 -0.750274 0.333969 -0.570573 -0.559708 -0.689269 0.460039 -0.276660 0.678711 0.680302 -0.781144 0.253496 -0.570573 -0.485129 -0.743649 0.460039 -0.345624 0.646323 0.680302 -0.803240 0.171033 -0.570573 -0.404517 -0.790399 0.460039 -0.411460 0.606540 0.680302 -0.816741 0.085906 -0.570573 0.187333 -0.961130 -0.202820 -0.651732 -0.276097 0.706410 -0.734950 -0.000150 -0.678122 0.287035 -0.936203 -0.202820 -0.619206 -0.342883 0.706410 -0.730886 -0.077177 -0.678122 0.382673 -0.901346 -0.202820 -0.580265 -0.405311 0.706410 -0.718925 -0.152635 -0.678122 0.475033 -0.856275 -0.202820 -0.534590 -0.463895 0.706410 -0.698969 -0.227143 -0.678122 0.562161 -0.801773 -0.202820 -0.483026 -0.517369 0.706410 -0.671313 -0.299149 -0.678122 0.642358 -0.739081 -0.202820 -0.426707 -0.564718 0.706410 -0.636630 -0.367223 -0.678122 0.716281 -0.667687 -0.202820 -0.365170 -0.606329 0.706410 -0.594637 -0.431924 -0.678122 0.782314 -0.588938 -0.202820 -0.299611 -0.641263 0.706410 -0.546093 -0.491868 -0.678122 0.839731 -0.503703 -0.202820 -0.230752 -0.669132 0.706410 -0.491534 -0.546393 -0.678122 0.887484 -0.413806 -0.202820 -0.160041 -0.689472 0.706410 -0.432156 -0.594468 -0.678122 0.925966 -0.318513 -0.202820 -0.086898 -0.702448 0.706410 -0.367471 -0.636487 -0.678122 0.954249 -0.219711 -0.202820 -0.012798 -0.707687 0.706410 -0.298739 -0.671496 -0.678122 0.971902 -0.119460 -0.202820 0.060738 -0.705192 0.706410 -0.227415 -0.698880 -0.678122 0.979070 -0.016940 -0.202820 0.134313 -0.694942 0.706410 -0.152915 -0.718866 -0.678122 0.975453 0.085767 -0.202820 0.206408 -0.677038 0.706410 -0.076730 -0.730933 -0.678122 0.961244 0.186746 -0.202820 0.275699 -0.651901 0.706410 -0.000299 -0.734950 -0.678122 0.936378 0.286463 -0.202820 0.342504 -0.619415 0.706410 0.076730 -0.730933 -0.678122 0.901197 0.383024 -0.202820 0.405537 -0.580107 0.706410 0.152915 -0.718866 -0.678122 0.856090 0.475366 -0.202820 0.464103 -0.534409 0.706410 0.227415 -0.698880 -0.678122 0.802116 0.561671 -0.202820 0.517074 -0.483342 0.706410 0.298739 -0.671496 -0.678122 0.738831 0.642645 -0.202820 0.564884 -0.426487 0.706410 0.367471 -0.636487 -0.678122 0.667408 0.716541 -0.202820 0.606471 -0.364934 0.706410 0.432156 -0.594468 -0.678122 0.589416 0.781954 -0.202820 0.641079 -0.300003 0.706410 0.491534 -0.546393 -0.678122 0.504216 0.839423 -0.202820 0.668991 -0.231161 0.706410 0.546093 -0.491868 -0.678122 0.413461 0.887645 -0.202820 0.689534 -0.159773 0.706410 0.594637 -0.431924 -0.678122 0.318153 0.926090 -0.202820 0.702482 -0.086625 0.706410 0.636630 -0.367223 -0.678122 0.220294 0.954115 -0.202820 0.707679 -0.013230 0.706410 0.671313 -0.299149 -0.678122 0.119082 0.971948 -0.202820 0.705168 0.061012 0.706410 0.698969 -0.227143 -0.678122 0.016559 0.979076 -0.202820 0.694890 0.134583 0.706410 0.718925 -0.152635 -0.678122 -0.085171 0.975505 -0.202820 0.677164 0.205994 0.706410 0.730886 -0.077177 -0.678122 -0.186941 0.961206 -0.202820 0.651845 0.275831 0.706410 0.734950 -0.000150 -0.678122 -0.286653 0.936319 -0.202820 0.619346 0.342630 0.706410 0.730918 0.076879 -0.678122 -0.383207 0.901119 -0.202820 0.580025 0.405655 0.706410 0.718835 0.153061 -0.678122 -0.474685 0.856469 -0.202820 0.534779 0.463677 0.706410 0.699061 0.226858 -0.678122 -0.561834 0.802001 -0.202820 0.483237 0.517172 0.706410 0.671435 0.298876 -0.678122 -0.642795 0.738700 -0.202820 0.426372 0.564970 0.706410 0.636413 0.367601 -0.678122 -0.716676 0.667262 -0.202820 0.364811 0.606546 0.706410 0.594380 0.432277 -0.678122 -0.782074 0.589257 -0.202820 0.299872 0.641141 0.706410 0.546293 0.491645 -0.678122 -0.839526 0.504045 -0.202820 0.231025 0.669038 0.706410 0.491756 0.546193 -0.678122 -0.887729 0.413280 -0.202820 0.159632 0.689567 0.706410 0.431803 0.594724 -0.678122 -0.925837 0.318890 -0.202820 0.087184 0.702413 0.706410 0.367730 0.636338 -0.678122 -0.954160 0.220099 -0.202820 0.013086 0.707682 0.706410 0.299012 0.671374 -0.678122 -0.971973 0.118884 -0.202820 -0.061156 0.705156 0.706410 0.227001 0.699015 -0.678122 -0.979079 0.016360 -0.202820 -0.134725 0.694863 0.706410 0.152489 0.718956 -0.678122 -0.975488 -0.085369 -0.202820 -0.206132 0.677122 0.706410 0.077028 0.730902 -0.678122 -0.961168 -0.187137 -0.202820 -0.275964 0.651789 0.706410 0.000000 0.734950 -0.678122 -0.936261 -0.286844 -0.202820 -0.342756 0.619276 0.706410 -0.077028 0.730902 -0.678122 -0.901424 -0.382490 -0.202820 -0.405193 0.580347 0.706410 -0.152489 0.718956 -0.678122 -0.856372 -0.474859 -0.202820 -0.463786 0.534684 0.706410 -0.227001 0.699015 -0.678122 -0.801887 -0.561998 -0.202820 -0.517271 0.483131 0.706410 -0.299012 0.671374 -0.678122 -0.738569 -0.642946 -0.202820 -0.565057 0.426257 0.706410 -0.367730 0.636338 -0.678122 -0.667833 -0.716145 -0.202820 -0.606255 0.365294 0.706410 -0.431803 0.594724 -0.678122 -0.589098 -0.782194 -0.202820 -0.641202 0.299742 0.706410 -0.491756 0.546193 -0.678122 -0.503874 -0.839628 -0.202820 -0.669085 0.230889 0.706410 -0.546293 0.491645 -0.678122 -0.413987 -0.887400 -0.202820 -0.689439 0.160182 0.706410 -0.594380 0.432277 -0.678122 -0.318701 -0.925902 -0.202820 -0.702430 0.087041 0.706410 -0.636413 0.367601 -0.678122 -0.219905 -0.954204 -0.202820 -0.707684 0.012942 0.706410 -0.671435 0.298876 -0.678122 -0.118686 -0.971997 -0.202820 -0.705143 -0.061300 0.706410 -0.699061 0.226858 -0.678122 -0.017140 -0.979066 -0.202820 -0.694970 -0.134171 0.706410 -0.718835 0.153061 -0.678122 0.085568 -0.975470 -0.202820 -0.677080 -0.206270 0.706410 -0.730918 0.076879 -0.678122 0.176852 -0.973036 -0.148068 -0.745706 -0.230653 0.625077 -0.642375 -0.000131 -0.766391 0.277859 -0.949142 -0.148068 -0.717425 -0.307538 0.625077 -0.638823 -0.067456 -0.766391 0.374891 -0.915168 -0.148068 -0.681623 -0.380354 0.625077 -0.628369 -0.133409 -0.766391 0.468742 -0.870837 -0.148068 -0.638005 -0.449699 0.625077 -0.610926 -0.198532 -0.766391 0.557431 -0.816913 -0.148068 -0.587360 -0.514089 0.625077 -0.586754 -0.261468 -0.766391 0.639225 -0.754631 -0.148068 -0.530817 -0.572287 0.625077 -0.556440 -0.320968 -0.766391 0.714795 -0.683479 -0.148068 -0.467914 -0.624768 0.625077 -0.519735 -0.377519 -0.766391 0.782492 -0.604800 -0.148068 -0.399857 -0.670368 0.625077 -0.477306 -0.429911 -0.766391 0.841570 -0.519458 -0.148068 -0.327395 -0.708584 0.625077 -0.429620 -0.477569 -0.766391 0.890949 -0.429286 -0.148068 -0.252066 -0.738743 0.625077 -0.377721 -0.519588 -0.766391 0.931034 -0.333543 -0.148068 -0.173252 -0.761093 0.625077 -0.321184 -0.556315 -0.766391 0.960864 -0.234127 -0.148068 -0.092530 -0.775060 0.625077 -0.261109 -0.586913 -0.766391 0.979978 -0.133113 -0.148068 -0.011569 -0.780478 0.625077 -0.198769 -0.610848 -0.766391 0.988532 -0.029671 -0.148068 0.070294 -0.777392 0.625077 -0.133653 -0.628317 -0.766391 0.986197 0.074098 -0.148068 0.151383 -0.765743 0.625077 -0.067065 -0.638864 -0.766391 0.973144 0.176258 -0.148068 0.230197 -0.745847 0.625077 -0.000262 -0.642375 -0.766391 0.949311 0.277279 -0.148068 0.307100 -0.717613 0.625077 0.067065 -0.638864 -0.766391 0.915022 0.375247 -0.148068 0.380619 -0.681475 0.625077 0.133653 -0.628317 -0.766391 0.870654 0.469081 -0.148068 0.449947 -0.637830 0.625077 0.198769 -0.610848 -0.766391 0.817253 0.556931 -0.148068 0.513730 -0.587674 0.625077 0.261109 -0.586913 -0.766391 0.754382 0.639518 -0.148068 0.572493 -0.530594 0.625077 0.321184 -0.556315 -0.766391 0.683201 0.715061 -0.148068 0.624951 -0.467671 0.625077 0.377721 -0.519588 -0.766391 0.605277 0.782122 -0.148068 0.670124 -0.400266 0.625077 0.429620 -0.477569 -0.766391 0.519972 0.841252 -0.148068 0.708384 -0.327828 0.625077 0.477306 -0.429911 -0.766391 0.428939 0.891116 -0.148068 0.738841 -0.251779 0.625077 0.519735 -0.377519 -0.766391 0.333181 0.931164 -0.148068 0.761160 -0.172956 0.625077 0.556440 -0.320968 -0.766391 0.234715 0.960721 -0.148068 0.775003 -0.093004 0.625077 0.586754 -0.261468 -0.766391 0.132731 0.980030 -0.148068 0.780482 -0.011265 0.625077 0.610926 -0.198532 -0.766391 0.029286 0.988543 -0.148068 0.777364 0.070597 0.625077 0.628369 -0.133409 -0.766391 -0.073495 0.986242 -0.148068 0.765835 0.150915 0.625077 0.638823 -0.067456 -0.766391 -0.176456 0.973108 -0.148068 0.745800 0.230349 0.625077 0.642375 -0.000131 -0.766391 -0.277473 0.949255 -0.148068 0.717551 0.307246 0.625077 0.638850 0.067195 -0.766391 -0.375433 0.914946 -0.148068 0.681397 0.380758 0.625077 0.628289 0.133781 -0.766391 -0.468388 0.871027 -0.148068 0.638188 0.449439 0.625077 0.611006 0.198283 -0.766391 -0.557098 0.817140 -0.148068 0.587569 0.513850 0.625077 0.586860 0.261229 -0.766391 -0.639672 0.754252 -0.148068 0.530478 0.572601 0.625077 0.556249 0.321297 -0.766391 -0.715200 0.683056 -0.148068 0.467543 0.625046 0.625077 0.519511 0.377827 -0.766391 -0.782245 0.605118 -0.148068 0.400130 0.670205 0.625077 0.477481 0.429717 -0.766391 -0.841358 0.519801 -0.148068 0.327684 0.708451 0.625077 0.429814 0.477394 -0.766391 -0.891203 0.428757 -0.148068 0.251628 0.738893 0.625077 0.377413 0.519812 -0.766391 -0.930898 0.333923 -0.148068 0.173562 0.761023 0.625077 0.321410 0.556184 -0.766391 -0.960769 0.234519 -0.148068 0.092846 0.775022 0.625077 0.261348 0.586807 -0.766391 -0.980057 0.132532 -0.148068 0.011107 0.780484 0.625077 0.198407 0.610966 -0.766391 -0.988549 0.029085 -0.148068 -0.070755 0.777350 0.625077 0.133281 0.628396 -0.766391 -0.986228 -0.073696 -0.148068 -0.151071 0.765804 0.625077 0.067325 0.638837 -0.766391 -0.973072 -0.176654 -0.148068 -0.230501 0.745753 0.625077 0.000000 0.642375 -0.766391 -0.949198 -0.277666 -0.148068 -0.307392 0.717488 0.625077 -0.067325 0.638837 -0.766391 -0.915244 -0.374705 -0.148068 -0.380215 0.681700 0.625077 -0.133281 0.628396 -0.766391 -0.870932 -0.468565 -0.148068 -0.449569 0.638097 0.625077 -0.198407 0.610966 -0.766391 -0.817026 -0.557264 -0.148068 -0.513970 0.587464 0.625077 -0.261348 0.586807 -0.766391 -0.754121 -0.639826 -0.148068 -0.572710 0.530361 0.625077 -0.321410 0.556184 -0.766391 -0.683625 -0.714656 -0.148068 -0.624673 0.468041 0.625077 -0.377413 0.519812 -0.766391 -0.604959 -0.782369 -0.148068 -0.670287 0.399993 0.625077 -0.429814 0.477394 -0.766391 -0.519629 -0.841464 -0.148068 -0.708518 0.327539 0.625077 -0.477481 0.429717 -0.766391 -0.429467 -0.890861 -0.148068 -0.738692 0.252216 0.625077 -0.519511 0.377827 -0.766391 -0.333733 -0.930966 -0.148068 -0.761058 0.173407 0.625077 -0.556249 0.321297 -0.766391 -0.234323 -0.960817 -0.148068 -0.775041 0.092688 0.625077 -0.586860 0.261229 -0.766391 -0.132332 -0.980084 -0.148068 -0.780487 0.010948 0.625077 -0.611006 0.198283 -0.766391 -0.029872 -0.988526 -0.148068 -0.777406 -0.070136 0.625077 -0.628289 0.133781 -0.766391 0.073897 -0.986212 -0.148068 -0.765774 -0.151227 0.625077 -0.638850 0.067195 -0.766391 -0.068759 0.982738 -0.171751 -0.364299 -0.185004 -0.912721 -0.928740 -0.000189 0.370731 -0.171379 0.970119 -0.171751 -0.342903 -0.222166 -0.912721 -0.923605 -0.097527 0.370731 -0.271163 0.947086 -0.171751 -0.317987 -0.256563 -0.912721 -0.908490 -0.192882 0.370731 -0.368931 0.913450 -0.171751 -0.289346 -0.288477 -0.912721 -0.883272 -0.287036 0.370731 -0.462635 0.869753 -0.171751 -0.257518 -0.317214 -0.912721 -0.848324 -0.378028 0.370731 -0.550427 0.817026 -0.171751 -0.223196 -0.342234 -0.912721 -0.804496 -0.464052 0.370731 -0.633026 0.754838 -0.171751 -0.186098 -0.363741 -0.912721 -0.751429 -0.545813 0.370731 -0.708652 0.684335 -0.171751 -0.146950 -0.381243 -0.912721 -0.690086 -0.621563 0.370731 -0.776472 0.606294 -0.171751 -0.106184 -0.394544 -0.912721 -0.621141 -0.690465 0.370731 -0.835218 0.522411 -0.171751 -0.064651 -0.403436 -0.912721 -0.546106 -0.751217 0.370731 -0.885370 0.431997 -0.171751 -0.022012 -0.407990 -0.912721 -0.464365 -0.804315 0.370731 -0.925770 0.336824 -0.171751 0.020869 -0.408050 -0.912721 -0.377510 -0.848554 0.370731 -0.955735 0.238898 -0.171751 0.063117 -0.403679 -0.912721 -0.287379 -0.883160 0.370731 -0.975510 0.137414 -0.171751 0.105078 -0.394840 -0.912721 -0.193235 -0.908415 0.370731 -0.984539 0.034417 -0.171751 0.145881 -0.381653 -0.912721 -0.096962 -0.923665 0.370731 -0.982780 -0.068159 -0.171751 0.184781 -0.364412 -0.912721 -0.000378 -0.928740 0.370731 -0.970224 -0.170786 -0.171751 0.221956 -0.343039 -0.912721 0.096962 -0.923665 0.370731 -0.946980 -0.271532 -0.171751 0.256687 -0.317887 -0.912721 0.193235 -0.908415 0.370731 -0.913307 -0.369287 -0.171751 0.288590 -0.289234 -0.912721 0.287379 -0.883160 0.370731 -0.870035 -0.462104 -0.171751 0.317057 -0.257712 -0.912721 0.377510 -0.848554 0.370731 -0.816812 -0.550745 -0.171751 0.342321 -0.223062 -0.912721 0.464365 -0.804315 0.370731 -0.754591 -0.633319 -0.171751 0.363814 -0.185956 -0.912721 0.546106 -0.751217 0.370731 -0.684768 -0.708234 -0.171751 0.381153 -0.147183 -0.912721 0.621141 -0.690465 0.370731 -0.606768 -0.776102 -0.171751 0.394479 -0.106425 -0.912721 0.690086 -0.621563 0.370731 -0.522085 -0.835421 -0.171751 0.403461 -0.064494 -0.912721 0.751429 -0.545813 0.370731 -0.431652 -0.885538 -0.171751 0.407998 -0.021854 -0.912721 0.804496 -0.464052 0.370731 -0.337390 -0.925564 -0.171751 0.408063 0.020620 -0.912721 0.848324 -0.378028 0.370731 -0.238526 -0.955828 -0.171751 0.403654 0.063274 -0.912721 0.883272 -0.287036 0.370731 -0.137035 -0.975563 -0.171751 0.394799 0.105231 -0.912721 0.908490 -0.192882 0.370731 -0.035018 -0.984518 -0.171751 0.381742 0.145648 -0.912721 0.923605 -0.097527 0.370731 0.068359 -0.982766 -0.171751 0.364375 0.184855 -0.912721 0.928740 -0.000189 0.370731 0.170983 -0.970189 -0.171751 0.342994 0.222026 -0.912721 0.923645 0.097151 0.370731 0.271724 -0.946925 -0.171751 0.317835 0.256752 -0.912721 0.908376 0.193420 0.370731 0.368559 -0.913600 -0.171751 0.289463 0.288360 -0.912721 0.883388 0.286676 0.370731 0.462281 -0.869941 -0.171751 0.257647 0.317109 -0.912721 0.848478 0.377683 0.370731 0.550911 -0.816700 -0.171751 0.222993 0.342366 -0.912721 0.804221 0.464529 0.370731 0.633473 -0.754462 -0.171751 0.185882 0.363852 -0.912721 0.751106 0.546259 0.370731 0.708373 -0.684623 -0.171751 0.147105 0.381183 -0.912721 0.690339 0.621281 0.370731 0.776225 -0.606610 -0.171751 0.106345 0.394501 -0.912721 0.621422 0.690212 0.370731 0.835527 -0.521915 -0.171751 0.064412 0.403474 -0.912721 0.545660 0.751540 0.370731 0.885194 -0.432357 -0.171751 0.022179 0.407981 -0.912721 0.464693 0.804126 0.370731 0.925633 -0.337201 -0.171751 -0.020703 0.408058 -0.912721 0.377855 0.848401 0.370731 0.955876 -0.238331 -0.171751 -0.063356 0.403641 -0.912721 0.286856 0.883330 0.370731 0.975591 -0.136836 -0.171751 -0.105312 0.394778 -0.912721 0.192697 0.908530 0.370731 0.984525 -0.034818 -0.171751 -0.145726 0.381712 -0.912721 0.097339 0.923625 0.370731 0.982752 0.068559 -0.171751 -0.184929 0.364337 -0.912721 0.000000 0.928740 0.370731 0.970154 0.171181 -0.171751 -0.222096 0.342948 -0.912721 -0.097339 0.923625 0.370731 0.947141 0.270970 -0.171751 -0.256498 0.318039 -0.912721 -0.192697 0.908530 0.370731 0.913525 0.368745 -0.171751 -0.288419 0.289405 -0.912721 -0.286856 0.883330 0.370731 0.869847 0.462458 -0.171751 -0.317162 0.257582 -0.912721 -0.377855 0.848401 0.370731 0.816587 0.551077 -0.171751 -0.342411 0.222923 -0.912721 -0.464693 0.804126 0.370731 0.754966 0.632872 -0.171751 -0.363704 0.186172 -0.912721 -0.545660 0.751540 0.370731 0.684479 0.708512 -0.171751 -0.381213 0.147028 -0.912721 -0.621422 0.690212 0.370731 0.606452 0.776349 -0.171751 -0.394523 0.106264 -0.912721 -0.690339 0.621281 0.370731 0.522581 0.835111 -0.171751 -0.403423 0.064734 -0.912721 -0.751106 0.546259 0.370731 0.432177 0.885282 -0.171751 -0.407985 0.022095 -0.912721 -0.804221 0.464529 0.370731 0.337013 0.925702 -0.171751 -0.408054 -0.020786 -0.912721 -0.848478 0.377683 0.370731 0.238137 0.955925 -0.171751 -0.403628 -0.063438 -0.912721 -0.883388 0.286676 0.370731 0.137613 0.975482 -0.171751 -0.394862 -0.104997 -0.912721 -0.908376 0.193420 0.370731 0.034617 0.984532 -0.171751 -0.381683 -0.145804 -0.912721 -0.923645 0.097151 0.370731 0.584858 -0.780217 -0.221815 -0.729472 -0.625508 0.276785 -0.354699 -0.000072 -0.934980 0.663409 -0.714623 -0.221815 -0.659897 -0.698517 0.276785 -0.352738 -0.037247 -0.934980 0.734012 -0.641892 -0.221815 -0.583816 -0.763249 0.276785 -0.346966 -0.073664 -0.934980 0.797244 -0.561427 -0.221815 -0.500607 -0.820233 0.276785 -0.337334 -0.109623 -0.934980 0.851695 -0.474778 -0.221815 -0.411884 -0.868183 0.276785 -0.323987 -0.144374 -0.934980 0.896381 -0.383796 -0.221815 -0.319530 -0.906251 0.276785 -0.307249 -0.177228 -0.934980 0.931669 -0.287735 -0.221815 -0.222788 -0.934749 0.276785 -0.286982 -0.208454 -0.934980 0.956694 -0.188505 -0.221815 -0.123593 -0.952951 0.276785 -0.263554 -0.237384 -0.934980 0.971182 -0.087198 -0.221815 -0.023036 -0.960656 0.276785 -0.237223 -0.263699 -0.934980 0.974987 0.014094 -0.221815 0.076816 -0.957857 0.276785 -0.208566 -0.286901 -0.934980 0.968140 0.116202 -0.221815 0.176784 -0.944530 0.276785 -0.177348 -0.307180 -0.934980 0.950629 0.217030 -0.221815 0.274804 -0.920800 0.276785 -0.144176 -0.324075 -0.934980 0.922963 0.314545 -0.221815 0.368909 -0.887297 0.276785 -0.109754 -0.337292 -0.934980 0.884913 0.409545 -0.221815 0.459873 -0.843746 0.276785 -0.073799 -0.346937 -0.934980 0.837116 0.500035 -0.221815 0.545771 -0.790901 0.276785 -0.037031 -0.352761 -0.934980 0.780575 0.584381 -0.221815 0.625063 -0.729854 0.276785 -0.000144 -0.354699 -0.934980 0.715028 0.662973 -0.221815 0.698114 -0.660323 0.276785 0.037031 -0.352761 -0.934980 0.641606 0.734262 -0.221815 0.763476 -0.583519 0.276785 0.073799 -0.346937 -0.934980 0.561117 0.797463 -0.221815 0.820428 -0.500288 0.276785 0.109754 -0.337292 -0.934980 0.475298 0.851405 -0.221815 0.867931 -0.412414 0.276785 0.144176 -0.324075 -0.934980 0.383447 0.896530 -0.221815 0.906375 -0.319177 0.276785 0.177348 -0.307180 -0.934980 0.287373 0.931781 -0.221815 0.934835 -0.222425 0.276785 0.208566 -0.286901 -0.934980 0.189089 0.956579 -0.221815 0.952875 -0.124175 0.276785 0.237223 -0.263699 -0.934980 0.087791 0.971129 -0.221815 0.960642 -0.023623 0.276785 0.263554 -0.237384 -0.934980 -0.014473 0.974981 -0.221815 0.957827 0.077189 0.276785 0.286982 -0.208454 -0.934980 -0.116578 0.968095 -0.221815 0.944462 0.177151 0.276785 0.307249 -0.177228 -0.934980 -0.216449 0.950762 -0.221815 0.920968 0.274241 0.276785 0.323987 -0.144374 -0.934980 -0.314904 0.922840 -0.221815 0.887153 0.369255 0.276785 0.337334 -0.109623 -0.934980 -0.409890 0.884753 -0.221815 0.843567 0.460201 0.276785 0.346966 -0.073664 -0.934980 -0.499524 0.837421 -0.221815 0.791234 0.545287 0.276785 0.352738 -0.037247 -0.934980 -0.584540 0.780456 -0.221815 0.729727 0.625211 0.276785 0.354699 -0.000072 -0.934980 -0.663118 0.714893 -0.221815 0.660181 0.698249 0.276785 0.352754 0.037103 -0.934980 -0.734392 0.641456 -0.221815 0.583364 0.763595 0.276785 0.346922 0.073870 -0.934980 -0.797015 0.561751 -0.221815 0.500941 0.820029 0.276785 0.337379 0.109486 -0.934980 -0.851501 0.475125 -0.221815 0.412237 0.868015 0.276785 0.324046 0.144242 -0.934980 -0.896608 0.383265 -0.221815 0.318993 0.906440 0.276785 0.307144 0.177410 -0.934980 -0.931839 0.287183 -0.221815 0.222234 0.934881 0.276785 0.286858 0.208624 -0.934980 -0.956618 0.188894 -0.221815 0.123981 0.952900 0.276785 0.263650 0.237276 -0.934980 -0.971147 0.087594 -0.221815 0.023428 0.960646 0.276785 0.237330 0.263602 -0.934980 -0.974978 -0.014672 -0.221815 -0.077384 0.957811 0.276785 0.208396 0.287024 -0.934980 -0.968187 -0.115808 -0.221815 -0.176399 0.944602 0.276785 0.177473 0.307108 -0.934980 -0.950718 -0.216643 -0.221815 -0.274428 0.920912 0.276785 0.144308 0.324017 -0.934980 -0.922776 -0.315092 -0.221815 -0.369435 0.887078 0.276785 0.109554 0.337357 -0.934980 -0.884670 -0.410070 -0.221815 -0.460373 0.843473 0.276785 0.073594 0.346981 -0.934980 -0.837320 -0.499694 -0.221815 -0.545448 0.791123 0.276785 0.037175 0.352746 -0.934980 -0.780336 -0.584699 -0.221815 -0.625360 0.729599 0.276785 0.000000 0.354699 -0.934980 -0.714758 -0.663264 -0.221815 -0.698383 0.660039 0.276785 -0.037175 0.352746 -0.934980 -0.642041 -0.733881 -0.221815 -0.763130 0.583972 0.276785 -0.073594 0.346981 -0.934980 -0.561589 -0.797130 -0.221815 -0.820131 0.500774 0.276785 -0.109554 0.337357 -0.934980 -0.474951 -0.851598 -0.221815 -0.868099 0.412060 0.276785 -0.144308 0.324017 -0.934980 -0.383082 -0.896686 -0.221815 -0.906505 0.318808 0.276785 -0.177473 0.307108 -0.934980 -0.287925 -0.931610 -0.221815 -0.934703 0.222979 0.276785 -0.208396 0.287024 -0.934980 -0.188700 -0.956656 -0.221815 -0.952925 0.123787 0.276785 -0.237330 0.263602 -0.934980 -0.087396 -0.971164 -0.221815 -0.960651 0.023232 0.276785 -0.263650 0.237276 -0.934980 0.013895 -0.974990 -0.221815 -0.957872 -0.076621 0.276785 -0.286858 0.208624 -0.934980 0.116005 -0.968164 -0.221815 -0.944566 -0.176591 0.276785 -0.307144 0.177410 -0.934980 0.216836 -0.950674 -0.221815 -0.920856 -0.274616 0.276785 -0.324046 0.144242 -0.934980 0.315280 -0.922712 -0.221815 -0.887003 -0.369616 0.276785 -0.337379 0.109486 -0.934980 0.409365 -0.884996 -0.221815 -0.843840 -0.459701 0.276785 -0.346922 0.073870 -0.934980 0.499865 -0.837218 -0.221815 -0.791012 -0.545610 0.276785 -0.352754 0.037103 -0.934980 0.409727 -0.852654 -0.324199 -0.668503 -0.522476 0.529266 -0.620667 -0.000126 -0.784074 0.496835 -0.805016 -0.324199 -0.610062 -0.589662 0.529266 -0.617235 -0.065176 -0.784074 0.577721 -0.749088 -0.324199 -0.545552 -0.649809 0.529266 -0.607134 -0.128901 -0.784074 0.653049 -0.684413 -0.324199 -0.474442 -0.703408 0.529266 -0.590281 -0.191823 -0.784074 0.721184 -0.612200 -0.324199 -0.398107 -0.749259 0.529266 -0.566925 -0.252632 -0.784074 0.780841 -0.534024 -0.324199 -0.318174 -0.786539 0.529266 -0.537636 -0.310121 -0.784074 0.832510 -0.449245 -0.324199 -0.233987 -0.815554 0.529266 -0.502172 -0.364761 -0.784074 0.875010 -0.359518 -0.324199 -0.147222 -0.835586 0.529266 -0.461177 -0.415383 -0.784074 0.907871 -0.265831 -0.324199 -0.058836 -0.846414 0.529266 -0.415102 -0.461430 -0.784074 0.930562 -0.170146 -0.324199 0.029351 -0.847948 0.529266 -0.364956 -0.502030 -0.784074 0.943269 -0.071679 -0.324199 0.118060 -0.840202 0.529266 -0.310330 -0.537515 -0.784074 0.945587 0.027577 -0.324199 0.205469 -0.823201 0.529266 -0.252286 -0.567080 -0.784074 0.937615 0.125592 -0.324199 0.289817 -0.797423 0.529266 -0.192052 -0.590206 -0.784074 0.919288 0.223169 -0.324199 0.371797 -0.762656 0.529266 -0.129137 -0.607084 -0.784074 0.890836 0.318288 -0.324199 0.449681 -0.719489 0.529266 -0.064799 -0.617275 -0.784074 0.852904 0.409206 -0.324199 0.522068 -0.668822 0.529266 -0.000253 -0.620667 -0.784074 0.805319 0.496343 -0.324199 0.589290 -0.610422 0.529266 0.064799 -0.617275 -0.784074 0.748864 0.578012 -0.324199 0.650021 -0.545299 0.529266 0.129137 -0.607084 -0.784074 0.684159 0.653315 -0.324199 0.703592 -0.474169 0.529266 0.192052 -0.590206 -0.784074 0.612640 0.720810 -0.324199 0.749015 -0.398565 0.529266 0.252286 -0.567080 -0.784074 0.533720 0.781049 -0.324199 0.786662 -0.317868 0.529266 0.310330 -0.537515 -0.784074 0.448921 0.832685 -0.324199 0.815645 -0.233669 0.529266 0.364956 -0.502030 -0.784074 0.360052 0.874790 -0.324199 0.835496 -0.147732 0.529266 0.415102 -0.461430 -0.784074 0.266385 0.907708 -0.324199 0.846378 -0.059353 0.529266 0.461177 -0.415383 -0.784074 0.169784 0.930628 -0.324199 0.847937 0.029680 0.529266 0.502172 -0.364761 -0.784074 0.071312 0.943297 -0.324199 0.840156 0.118387 0.529266 0.537636 -0.310121 -0.784074 -0.026999 0.945604 -0.324199 0.823327 0.204966 0.529266 0.566925 -0.252632 -0.784074 -0.125956 0.937566 -0.324199 0.797310 0.290128 0.529266 0.590281 -0.191823 -0.784074 -0.223526 0.919201 -0.324199 0.762512 0.372094 0.529266 0.607134 -0.128901 -0.784074 -0.317743 0.891030 -0.324199 0.719764 0.449241 0.529266 0.617235 -0.065176 -0.784074 -0.409380 0.852821 -0.324199 0.668716 0.522204 0.529266 0.620667 -0.000126 -0.784074 -0.496507 0.805218 -0.324199 0.610302 0.589414 0.529266 0.617262 0.064925 -0.784074 -0.578165 0.748746 -0.324199 0.545166 0.650132 0.529266 0.607058 0.129261 -0.784074 -0.652770 0.684679 -0.324199 0.474729 0.703214 0.529266 0.590359 0.191582 -0.784074 -0.720935 0.612494 -0.324199 0.398412 0.749096 0.529266 0.567028 0.252401 -0.784074 -0.781158 0.533561 -0.324199 0.317708 0.786727 0.529266 0.537452 0.310440 -0.784074 -0.832777 0.448752 -0.324199 0.233503 0.815692 0.529266 0.501956 0.365059 -0.784074 -0.874863 0.359874 -0.324199 0.147562 0.835526 0.529266 0.461346 0.415195 -0.784074 -0.907762 0.266200 -0.324199 0.059181 0.846390 0.529266 0.415289 0.461261 -0.784074 -0.930663 0.169594 -0.324199 -0.029853 0.847931 0.529266 0.364659 0.502246 -0.784074 -0.943240 0.072063 -0.324199 -0.117718 0.840250 0.529266 0.310549 0.537389 -0.784074 -0.945598 -0.027192 -0.324199 -0.205134 0.823285 0.529266 0.252517 0.566977 -0.784074 -0.937540 -0.126147 -0.324199 -0.290290 0.797251 0.529266 0.191703 0.590320 -0.784074 -0.919156 -0.223714 -0.324199 -0.372249 0.762436 0.529266 0.128777 0.607160 -0.784074 -0.890965 -0.317925 -0.324199 -0.449388 0.719672 0.529266 0.065050 0.617248 -0.784074 -0.852737 -0.409553 -0.324199 -0.522340 0.668610 0.529266 0.000000 0.620667 -0.784074 -0.805117 -0.496671 -0.324199 -0.589538 0.610182 0.529266 -0.065050 0.617248 -0.784074 -0.749206 -0.577569 -0.324199 -0.649698 0.545684 0.529266 -0.128777 0.607160 -0.784074 -0.684546 -0.652910 -0.324199 -0.703311 0.474586 0.529266 -0.191703 0.590320 -0.784074 -0.612347 -0.721059 -0.324199 -0.749177 0.398260 0.529266 -0.252517 0.566977 -0.784074 -0.533402 -0.781266 -0.324199 -0.786792 0.317547 0.529266 -0.310549 0.537389 -0.784074 -0.449415 -0.832419 -0.324199 -0.815506 0.234153 0.529266 -0.364659 0.502246 -0.784074 -0.359696 -0.874936 -0.324199 -0.835556 0.147392 0.529266 -0.415289 0.461261 -0.784074 -0.266016 -0.907816 -0.324199 -0.846402 0.059008 0.529266 -0.461346 0.415195 -0.784074 -0.170335 -0.930527 -0.324199 -0.847954 -0.029178 0.529266 -0.501956 0.365059 -0.784074 -0.071871 -0.943255 -0.324199 -0.840226 -0.117889 0.529266 -0.537452 0.310440 -0.784074 0.027384 -0.945592 -0.324199 -0.823243 -0.205301 0.529266 -0.567028 0.252401 -0.784074 0.126338 -0.937515 -0.324199 -0.797192 -0.290452 0.529266 -0.590359 0.191582 -0.784074 0.222982 -0.919334 -0.324199 -0.762732 -0.371642 0.529266 -0.607058 0.129261 -0.784074 0.318106 -0.890900 -0.324199 -0.719581 -0.449535 0.529266 -0.617262 0.064925 -0.784074 -0.044540 -0.967269 0.249812 -0.170558 0.253752 0.952114 -0.984340 -0.000200 -0.176278 0.057082 -0.966610 0.249812 -0.196214 0.234478 0.952114 -0.978898 -0.103365 -0.176278 0.157120 -0.955462 0.249812 -0.219495 0.212842 0.952114 -0.962879 -0.204429 -0.176278 0.256394 -0.933732 0.249812 -0.240594 0.188665 0.952114 -0.936150 -0.304219 -0.176278 0.352844 -0.901718 0.249812 -0.259042 0.162410 0.952114 -0.899110 -0.400659 -0.176278 0.444547 -0.860216 0.249812 -0.274503 0.134641 0.952114 -0.852658 -0.491833 -0.176278 0.532255 -0.808887 0.249812 -0.287102 0.105129 0.952114 -0.796415 -0.578489 -0.176278 0.614101 -0.748648 0.249812 -0.296539 0.074460 0.952114 -0.731399 -0.658773 -0.176278 0.689183 -0.680162 0.249812 -0.302710 0.042970 0.952114 -0.658326 -0.731801 -0.176278 0.756069 -0.604941 0.249812 -0.305535 0.011313 0.952114 -0.578799 -0.796190 -0.176278 0.815307 -0.522368 0.249812 -0.305038 -0.020772 0.952114 -0.492165 -0.852467 -0.176278 0.865565 -0.434042 0.249812 -0.301181 -0.052628 0.952114 -0.400110 -0.899354 -0.176278 0.905947 -0.341840 0.249812 -0.294091 -0.083610 0.952114 -0.304584 -0.936031 -0.176278 0.936785 -0.245008 0.249812 -0.283708 -0.113972 0.952114 -0.204803 -0.962799 -0.176278 0.957304 -0.145476 0.249812 -0.270201 -0.143079 0.952114 -0.102767 -0.978961 -0.176278 0.967242 -0.045131 0.249812 -0.253856 -0.170403 0.952114 -0.000401 -0.984340 -0.176278 0.966645 0.056492 0.249812 -0.234598 -0.196071 0.952114 0.102767 -0.978961 -0.176278 0.955401 0.157492 0.249812 -0.212756 -0.219578 0.952114 0.204803 -0.962799 -0.176278 0.933632 0.256757 0.249812 -0.188571 -0.240667 0.952114 0.304584 -0.936031 -0.176278 0.901933 0.352293 0.249812 -0.162568 -0.258943 0.952114 0.400110 -0.899354 -0.176278 0.860043 0.444882 0.249812 -0.134534 -0.274555 0.952114 0.492165 -0.852467 -0.176278 0.808680 0.532570 0.249812 -0.105017 -0.287143 0.952114 0.578799 -0.796190 -0.176278 0.749023 0.613644 0.249812 -0.074641 -0.296494 0.952114 0.658326 -0.731801 -0.176278 0.680583 0.688767 0.249812 -0.043155 -0.302684 0.952114 0.731399 -0.658773 -0.176278 0.604647 0.756304 0.249812 -0.011194 -0.305540 0.952114 0.796415 -0.578489 -0.176278 0.522051 0.815510 0.249812 0.020890 -0.305030 0.952114 0.852658 -0.491833 -0.176278 0.434570 0.865299 0.249812 0.052443 -0.301214 0.952114 0.899110 -0.400659 -0.176278 0.341487 0.906080 0.249812 0.083724 -0.294058 0.952114 0.936150 -0.304219 -0.176278 0.244643 0.936880 0.249812 0.114082 -0.283664 0.952114 0.962879 -0.204429 -0.176278 0.146061 0.957215 0.249812 0.142914 -0.270288 0.952114 0.978898 -0.103365 -0.176278 0.044934 0.967251 0.249812 0.170455 -0.253821 0.952114 0.984340 -0.000200 -0.176278 -0.056688 0.966633 0.249812 0.196118 -0.234558 0.952114 0.978940 0.102967 -0.176278 -0.157686 0.955368 0.249812 0.219622 -0.212712 0.952114 0.962757 0.204999 -0.176278 -0.256014 0.933837 0.249812 0.240517 -0.188763 0.952114 0.936274 0.303838 -0.176278 -0.352477 0.901862 0.249812 0.258976 -0.162515 0.952114 0.899273 0.400293 -0.176278 -0.445057 0.859953 0.249812 0.274583 -0.134478 0.952114 0.852367 0.492339 -0.176278 -0.532735 0.808571 0.249812 0.287165 -0.104959 0.952114 0.796072 0.578961 -0.176278 -0.613796 0.748898 0.249812 0.296509 -0.074581 0.952114 0.731667 0.658475 -0.176278 -0.688906 0.680443 0.249812 0.302693 -0.043094 0.952114 0.658624 0.731533 -0.176278 -0.756427 0.604493 0.249812 0.305542 -0.011132 0.952114 0.578327 0.796532 -0.176278 -0.815094 0.522700 0.249812 0.305047 0.020647 0.952114 0.492512 0.852266 -0.176278 -0.865388 0.434394 0.249812 0.301203 0.052505 0.952114 0.400476 0.899191 -0.176278 -0.906149 0.341303 0.249812 0.294041 0.083784 0.952114 0.304029 0.936212 -0.176278 -0.936930 0.244452 0.249812 0.283641 0.114140 0.952114 0.204233 0.962920 -0.176278 -0.957244 0.145866 0.249812 0.270259 0.142969 0.952114 0.103166 0.978919 -0.176278 -0.967260 0.044737 0.249812 0.253786 0.170506 0.952114 0.000000 0.984340 -0.176278 -0.966622 -0.056885 0.249812 0.234518 0.196166 0.952114 -0.103166 0.978919 -0.176278 -0.955494 -0.156926 0.249812 0.212887 0.219452 0.952114 -0.204233 0.962920 -0.176278 -0.933784 -0.256204 0.249812 0.188714 0.240556 0.952114 -0.304029 0.936212 -0.176278 -0.901790 -0.352660 0.249812 0.162463 0.259009 0.952114 -0.400476 0.899191 -0.176278 -0.859862 -0.445232 0.249812 0.134422 0.274610 0.952114 -0.492512 0.852266 -0.176278 -0.808995 -0.532091 0.249812 0.105188 0.287081 0.952114 -0.578327 0.796532 -0.176278 -0.748773 -0.613949 0.249812 0.074520 0.296524 0.952114 -0.658624 0.731533 -0.176278 -0.680303 -0.689044 0.249812 0.043032 0.302701 0.952114 -0.731667 0.658475 -0.176278 -0.605096 -0.755945 0.249812 0.011375 0.305533 0.952114 -0.796072 0.578961 -0.176278 -0.522534 -0.815200 0.249812 -0.020710 0.305043 0.952114 -0.852367 0.492339 -0.176278 -0.434218 -0.865476 0.249812 -0.052566 0.301192 0.952114 -0.899273 0.400293 -0.176278 -0.341118 -0.906219 0.249812 -0.083844 0.294024 0.952114 -0.936274 0.303838 -0.176278 -0.245198 -0.936735 0.249812 -0.113914 0.283731 0.952114 -0.962757 0.204999 -0.176278 -0.145671 -0.957274 0.249812 -0.143024 0.270230 0.952114 -0.978940 0.102967 -0.176278 -0.920024 0.125277 0.371297 0.116145 0.992122 -0.046956 -0.374255 -0.000076 -0.927326 -0.928087 0.028162 0.371297 0.011524 0.998830 -0.046956 -0.372185 -0.039300 -0.927326 -0.925996 -0.068337 0.371297 -0.092230 0.994630 -0.046956 -0.366095 -0.077726 -0.927326 -0.913734 -0.165012 0.371297 -0.195966 0.979486 -0.046956 -0.355932 -0.115667 -0.927326 -0.891407 -0.259869 0.371297 -0.297544 0.953553 -0.046956 -0.341849 -0.152334 -0.927326 -0.859613 -0.351004 0.371297 -0.394927 0.917512 -0.046956 -0.324188 -0.186999 -0.927326 -0.818091 -0.439164 0.371297 -0.488914 0.871067 -0.046956 -0.302804 -0.219946 -0.927326 -0.767558 -0.522487 0.371297 -0.577515 0.815028 -0.046956 -0.278084 -0.250471 -0.927326 -0.708570 -0.600055 0.371297 -0.659756 0.750012 -0.046956 -0.250301 -0.278237 -0.927326 -0.642448 -0.670372 0.371297 -0.734052 0.677468 -0.046956 -0.220064 -0.302718 -0.927326 -0.568650 -0.734013 0.371297 -0.801012 0.596803 -0.046956 -0.187125 -0.324115 -0.927326 -0.488589 -0.789569 0.371297 -0.859150 0.509565 -0.046956 -0.152125 -0.341942 -0.927326 -0.403982 -0.836025 0.371297 -0.907407 0.417621 -0.046956 -0.115805 -0.355887 -0.927326 -0.314135 -0.873760 0.371297 -0.946179 0.320218 -0.046956 -0.077868 -0.366064 -0.927326 -0.220829 -0.901872 0.371297 -0.974530 0.219288 -0.046956 -0.039073 -0.372209 -0.927326 -0.125839 -0.919947 0.371297 -0.992051 0.116751 -0.046956 -0.000152 -0.374254 -0.927326 -0.028729 -0.928070 0.371297 -0.998823 0.012134 -0.046956 0.039073 -0.372209 -0.927326 0.068697 -0.925969 0.371297 -0.994594 -0.092617 -0.046956 0.077868 -0.366064 -0.927326 0.165367 -0.913670 0.371297 -0.979409 -0.196347 -0.046956 0.115805 -0.355887 -0.927326 0.259324 -0.891566 0.371297 -0.953734 -0.296961 -0.046956 0.152125 -0.341942 -0.927326 0.351338 -0.859477 0.371297 -0.917358 -0.395284 -0.046956 0.187125 -0.324115 -0.927326 0.439483 -0.817920 0.371297 -0.870877 -0.489253 -0.046956 0.220064 -0.302718 -0.927326 0.522018 -0.767877 0.371297 -0.815381 -0.577017 -0.046956 0.250301 -0.278237 -0.927326 0.599623 -0.708937 0.371297 -0.750415 -0.659297 -0.046956 0.278084 -0.250471 -0.927326 0.670622 -0.642187 0.371297 -0.677183 -0.734315 -0.046956 0.302804 -0.219946 -0.927326 0.734234 -0.568365 0.371297 -0.596492 -0.801244 -0.046956 0.324188 -0.186999 -0.927326 0.789270 -0.489071 0.371297 -0.510090 -0.858839 -0.046956 0.341849 -0.152334 -0.927326 0.836182 -0.403656 0.371297 -0.417268 -0.907570 -0.046956 0.355932 -0.115667 -0.927326 0.873883 -0.313795 0.371297 -0.319850 -0.946304 -0.046956 0.366095 -0.077726 -0.927326 0.901737 -0.221380 0.371297 -0.219883 -0.974395 -0.046956 0.372185 -0.039300 -0.927326 0.919973 -0.125652 0.371297 -0.116549 -0.992074 -0.046956 0.374255 -0.000076 -0.927326 0.928075 -0.028540 0.371297 -0.011930 -0.998826 -0.046956 0.372201 0.039149 -0.927326 0.925955 0.068886 0.371297 0.092819 -0.994575 -0.046956 0.366048 0.077943 -0.927326 0.913801 0.164639 0.371297 0.195567 -0.979566 -0.046956 0.355979 0.115522 -0.927326 0.891513 0.259506 0.371297 0.297156 -0.953674 -0.046956 0.341911 0.152195 -0.927326 0.859405 0.351513 0.371297 0.395471 -0.917277 -0.046956 0.324077 0.187191 -0.927326 0.817831 0.439649 0.371297 0.489430 -0.870777 -0.046956 0.302673 0.220126 -0.927326 0.767771 0.522175 0.371297 0.577183 -0.815263 -0.046956 0.278186 0.250358 -0.927326 0.708815 0.599767 0.371297 0.659450 -0.750280 -0.046956 0.250415 0.278135 -0.927326 0.642051 0.670753 0.371297 0.734453 -0.677033 -0.046956 0.219885 0.302848 -0.927326 0.568949 0.733781 0.371297 0.800769 -0.597130 -0.046956 0.187257 0.324039 -0.927326 0.488910 0.789370 0.371297 0.858943 -0.509915 -0.046956 0.152264 0.341880 -0.927326 0.403486 0.836264 0.371297 0.907655 -0.417083 -0.046956 0.115594 0.355956 -0.927326 0.313617 0.873947 0.371297 0.946369 -0.319657 -0.046956 0.077651 0.366110 -0.927326 0.221196 0.901782 0.371297 0.974440 -0.219685 -0.046956 0.039225 0.372193 -0.927326 0.125465 0.919998 0.371297 0.992098 -0.116347 -0.046956 0.000000 0.374255 -0.927326 0.028351 0.928081 0.371297 0.998828 -0.011727 -0.046956 -0.039225 0.372193 -0.927326 -0.068148 0.926010 0.371297 0.994649 0.092027 -0.046956 -0.077651 0.366110 -0.927326 -0.164826 0.913767 0.371297 0.979526 0.195767 -0.046956 -0.115594 0.355956 -0.927326 -0.259687 0.891460 0.371297 0.953613 0.297350 -0.046956 -0.152264 0.341880 -0.927326 -0.351688 0.859333 0.371297 0.917197 0.395658 -0.046956 -0.187257 0.324039 -0.927326 -0.438998 0.818181 0.371297 0.871167 0.488737 -0.046956 -0.219885 0.302848 -0.927326 -0.522331 0.767664 0.371297 0.815146 0.577349 -0.046956 -0.250415 0.278135 -0.927326 -0.599911 0.708692 0.371297 0.750146 0.659603 -0.046956 -0.278186 0.250358 -0.927326 -0.670241 0.642585 0.371297 0.677618 0.733914 -0.046956 -0.302673 0.220126 -0.927326 -0.733897 0.568800 0.371297 0.596966 0.800891 -0.046956 -0.324077 0.187191 -0.927326 -0.789470 0.488750 0.371297 0.509740 0.859046 -0.046956 -0.341911 0.152195 -0.927326 -0.836346 0.403316 0.371297 0.416898 0.907740 -0.046956 -0.355979 0.115522 -0.927326 -0.873697 0.314313 0.371297 0.320411 0.946114 -0.046956 -0.366048 0.077943 -0.927326 -0.901827 0.221013 0.371297 0.219487 0.974485 -0.046956 -0.372201 0.039149 -0.927326 -0.365667 0.572626 0.733748 0.255213 0.819817 -0.512608 -0.895072 -0.000182 -0.445922 -0.423669 0.531148 0.733748 0.167884 0.842050 -0.512608 -0.890123 -0.093991 -0.445922 -0.476520 0.484296 0.733748 0.079562 0.854928 -0.512608 -0.875556 -0.185889 -0.445922 -0.524653 0.431686 0.733748 -0.010479 0.858559 -0.512608 -0.851252 -0.276630 -0.445922 -0.567007 0.374321 0.733748 -0.100404 0.852732 -0.512608 -0.817571 -0.364324 -0.445922 -0.602803 0.313436 0.733748 -0.188386 0.837701 -0.512608 -0.775332 -0.447230 -0.445922 -0.632333 0.248532 0.733748 -0.275146 0.813344 -0.512608 -0.724189 -0.526027 -0.445922 -0.654899 0.180890 0.733748 -0.358875 0.780027 -0.512608 -0.665069 -0.599030 -0.445922 -0.670250 0.111256 0.733748 -0.438651 0.738118 -0.512608 -0.598624 -0.665435 -0.445922 -0.678179 0.041074 0.733748 -0.512906 0.688593 -0.512608 -0.526309 -0.723984 -0.445922 -0.678748 -0.030230 0.733748 -0.582251 0.631044 -0.512608 -0.447531 -0.775158 -0.445922 -0.671842 -0.101201 0.733748 -0.645182 0.566544 -0.512608 -0.363824 -0.817793 -0.445922 -0.657706 -0.170400 0.733748 -0.700511 0.496505 -0.512608 -0.276961 -0.851144 -0.445922 -0.636224 -0.238394 0.733748 -0.748690 0.420352 -0.512608 -0.186230 -0.875484 -0.445922 -0.607735 -0.303762 0.733748 -0.788623 0.339569 -0.512608 -0.093447 -0.890181 -0.445922 -0.572849 -0.365318 0.733748 -0.819661 0.255713 -0.512608 -0.000365 -0.895072 -0.445922 -0.531407 -0.423344 0.733748 -0.841947 0.168399 -0.512608 0.093447 -0.890181 -0.445922 -0.484110 -0.476708 0.733748 -0.854959 0.079229 -0.512608 0.186230 -0.875484 -0.445922 -0.431482 -0.524821 0.733748 -0.858555 -0.010813 -0.512608 0.276961 -0.851144 -0.445922 -0.374667 -0.566778 0.733748 -0.852793 -0.099883 -0.512608 0.363824 -0.817793 -0.445922 -0.313201 -0.602925 0.733748 -0.837628 -0.188712 -0.512608 0.447531 -0.775158 -0.445922 -0.248286 -0.632430 0.733748 -0.813236 -0.275462 -0.512608 0.526309 -0.723984 -0.445922 -0.181290 -0.654788 0.733748 -0.780246 -0.358398 -0.512608 0.598624 -0.665435 -0.445922 -0.111665 -0.670182 0.733748 -0.738386 -0.438200 -0.512608 0.665069 -0.599030 -0.445922 -0.040810 -0.678195 0.733748 -0.688393 -0.513174 -0.512608 0.724189 -0.526027 -0.445922 0.030494 -0.678737 0.733748 -0.630817 -0.582497 -0.512608 0.775332 -0.447230 -0.445922 0.100791 -0.671904 0.733748 -0.566939 -0.644836 -0.512608 0.817571 -0.364324 -0.445922 0.170656 -0.657640 0.733748 -0.496233 -0.700704 -0.512608 0.851252 -0.276630 -0.445922 0.238642 -0.636132 0.733748 -0.420061 -0.748854 -0.512608 0.875556 -0.185889 -0.445922 0.303391 -0.607921 0.733748 -0.340051 -0.788415 -0.512608 0.890123 -0.093991 -0.445922 0.365434 -0.572775 0.733748 -0.255546 -0.819713 -0.512608 0.895072 -0.000182 -0.445922 0.423452 -0.531320 0.733748 -0.168227 -0.841981 -0.512608 0.890162 0.093629 -0.445922 0.476807 -0.484013 0.733748 -0.079055 -0.854976 -0.512608 0.875446 0.186408 -0.445922 0.524477 -0.431899 0.733748 0.010129 -0.858563 -0.512608 0.851364 0.276284 -0.445922 0.566855 -0.374552 0.733748 0.100057 -0.852773 -0.512608 0.817719 0.363991 -0.445922 0.602988 -0.313079 0.733748 0.188883 -0.837590 -0.512608 0.775067 0.447689 -0.445922 0.632480 -0.248157 0.733748 0.275628 -0.813180 -0.512608 0.723877 0.526456 -0.445922 0.654825 -0.181157 0.733748 0.358557 -0.780173 -0.512608 0.665313 0.598759 -0.445922 0.670205 -0.111529 0.733748 0.438350 -0.738297 -0.512608 0.598895 0.665191 -0.445922 0.678203 -0.040672 0.733748 0.513314 -0.688289 -0.512608 0.525879 0.724296 -0.445922 0.678761 0.029954 0.733748 0.581994 -0.631281 -0.512608 0.447847 0.774975 -0.445922 0.671883 0.100928 0.733748 0.644952 -0.566807 -0.512608 0.364157 0.817645 -0.445922 0.657605 0.170790 0.733748 0.700805 -0.496090 -0.512608 0.276457 0.851308 -0.445922 0.636083 0.238771 0.733748 0.748939 -0.419908 -0.512608 0.185711 0.875594 -0.445922 0.607859 0.303514 0.733748 0.788484 -0.339890 -0.512608 0.093810 0.890142 -0.445922 0.572701 0.365551 0.733748 0.819765 -0.255380 -0.512608 0.000000 0.895072 -0.445922 0.531234 0.423561 0.733748 0.842016 -0.168056 -0.512608 -0.093810 0.890142 -0.445922 0.484393 0.476421 0.733748 0.854912 -0.079736 -0.512608 -0.185711 0.875594 -0.445922 0.431793 0.524565 0.733748 0.858561 0.010304 -0.512608 -0.276457 0.851308 -0.445922 0.374436 0.566931 0.733748 0.852752 0.100231 -0.512608 -0.364157 0.817645 -0.445922 0.312956 0.603052 0.733748 0.837551 0.189053 -0.512608 -0.447847 0.774975 -0.445922 0.248660 0.632283 0.733748 0.813399 0.274980 -0.512608 -0.525879 0.724296 -0.445922 0.181023 0.654862 0.733748 0.780100 0.358716 -0.512608 -0.598895 0.665191 -0.445922 0.111392 0.670228 0.733748 0.738208 0.438500 -0.512608 -0.665313 0.598759 -0.445922 0.041212 0.678170 0.733748 0.688697 0.512766 -0.512608 -0.723877 0.526456 -0.445922 -0.030092 0.678755 0.733748 0.631162 0.582123 -0.512608 -0.775067 0.447689 -0.445922 -0.101065 0.671862 0.733748 0.566676 0.645067 -0.512608 -0.817719 0.363991 -0.445922 -0.170924 0.657570 0.733748 0.495947 0.700906 -0.512608 -0.851364 0.276284 -0.445922 -0.238264 0.636273 0.733748 0.420505 0.748604 -0.512608 -0.875446 0.186408 -0.445922 -0.303638 0.607797 0.733748 0.339730 0.788553 -0.512608 -0.890162 0.093629 -0.445922 -0.082346 0.991019 0.105362 0.609317 0.133723 -0.781569 -0.788639 -0.000161 -0.614856 -0.185759 0.976930 0.105362 0.591946 0.196848 -0.781569 -0.784279 -0.082815 -0.614856 -0.286173 0.952368 0.105362 0.568313 0.257236 -0.781569 -0.771444 -0.163785 -0.614856 -0.384411 0.917130 0.105362 0.538222 0.315382 -0.781569 -0.750030 -0.243736 -0.614856 -0.478416 0.871790 0.105362 0.502204 0.370055 -0.781569 -0.720354 -0.321002 -0.614856 -0.566334 0.817413 0.105362 0.461074 0.420191 -0.781569 -0.683137 -0.394050 -0.614856 -0.648886 0.753556 0.105362 0.414496 0.466200 -0.781569 -0.638076 -0.463477 -0.614856 -0.724290 0.681398 0.105362 0.363352 0.507075 -0.781569 -0.585986 -0.527799 -0.614856 -0.791716 0.601734 0.105362 0.308206 0.542364 -0.781569 -0.527441 -0.586308 -0.614856 -0.849906 0.516293 0.105362 0.250236 0.571429 -0.781569 -0.463725 -0.637895 -0.614856 -0.899337 0.424373 0.105362 0.188968 0.594509 -0.781569 -0.394315 -0.682984 -0.614856 -0.938861 0.327779 0.105362 0.125619 0.611040 -0.781569 -0.320562 -0.720550 -0.614856 -0.967816 0.228542 0.105362 0.061506 0.620779 -0.781569 -0.244028 -0.749935 -0.614856 -0.986438 0.125850 0.105362 -0.003894 0.623806 -0.781569 -0.164085 -0.771380 -0.614856 -0.994196 0.021771 0.105362 -0.069252 0.619962 -0.781569 -0.082336 -0.784329 -0.614856 -0.991069 -0.081741 0.105362 -0.133351 0.609399 -0.781569 -0.000321 -0.788639 -0.614856 -0.977044 -0.185162 0.105362 -0.196486 0.592066 -0.781569 0.082336 -0.784329 -0.614856 -0.952256 -0.286543 0.105362 -0.257457 0.568212 -0.781569 0.164085 -0.771380 -0.614856 -0.916980 -0.384768 0.105362 -0.315592 0.538100 -0.781569 0.244028 -0.749935 -0.614856 -0.872082 -0.477883 0.105362 -0.369748 0.502430 -0.781569 0.320562 -0.720550 -0.614856 -0.817193 -0.566652 0.105362 -0.420370 0.460911 -0.781569 0.394315 -0.682984 -0.614856 -0.753303 -0.649179 0.105362 -0.466361 0.414314 -0.781569 0.463725 -0.637895 -0.614856 -0.681840 -0.723874 0.105362 -0.506853 0.363662 -0.781569 0.527441 -0.586308 -0.614856 -0.602218 -0.791349 0.105362 -0.542176 0.308537 -0.781569 0.585986 -0.527799 -0.614856 -0.515962 -0.850107 0.105362 -0.571526 0.250014 -0.781569 0.638076 -0.463477 -0.614856 -0.424023 -0.899502 0.105362 -0.594582 0.188737 -0.781569 0.683137 -0.394050 -0.614856 -0.328353 -0.938661 0.105362 -0.610963 0.125992 -0.781569 0.720354 -0.321002 -0.614856 -0.228166 -0.967905 0.105362 -0.620803 0.061265 -0.781569 0.750030 -0.243736 -0.614856 -0.125466 -0.986487 0.105362 -0.623805 -0.004137 -0.781569 0.771444 -0.163785 -0.614856 -0.022378 -0.994182 0.105362 -0.620005 -0.068874 -0.781569 0.784279 -0.082815 -0.614856 0.081943 -0.991052 0.105362 -0.609372 -0.133475 -0.781569 0.788639 -0.000161 -0.614856 0.185361 -0.977006 0.105362 -0.592026 -0.196607 -0.781569 0.784313 0.082495 -0.614856 0.286737 -0.952198 0.105362 -0.568160 -0.257572 -0.781569 0.771347 0.164243 -0.614856 0.384038 -0.917286 0.105362 -0.538351 -0.315163 -0.781569 0.750129 0.243431 -0.614856 0.478061 -0.871984 0.105362 -0.502355 -0.369850 -0.781569 0.720484 0.320709 -0.614856 0.566818 -0.817078 0.105362 -0.460825 -0.420464 -0.781569 0.682904 0.394454 -0.614856 0.649332 -0.753171 0.105362 -0.414219 -0.466446 -0.781569 0.637801 0.463855 -0.614856 0.724012 -0.681693 0.105362 -0.363558 -0.506927 -0.781569 0.586201 0.527561 -0.614856 0.791471 -0.602057 0.105362 -0.308427 -0.542238 -0.781569 0.527680 0.586093 -0.614856 0.850212 -0.515789 0.105362 -0.249897 -0.571577 -0.781569 0.463347 0.638170 -0.614856 0.899164 -0.424739 0.105362 -0.189210 -0.594432 -0.781569 0.394594 0.682823 -0.614856 0.938727 -0.328161 0.105362 -0.125868 -0.610988 -0.781569 0.320856 0.720419 -0.614856 0.967951 -0.227969 0.105362 -0.061138 -0.620815 -0.781569 0.243583 0.750079 -0.614856 0.986513 -0.125265 0.105362 0.004264 -0.623804 -0.781569 0.163628 0.771478 -0.614856 0.994187 -0.022176 0.105362 0.069000 -0.619991 -0.781569 0.082655 0.784296 -0.614856 0.991035 0.082144 0.105362 0.133599 -0.609344 -0.781569 0.000000 0.788639 -0.614856 0.976968 0.185560 0.105362 0.196727 -0.591986 -0.781569 -0.082655 0.784296 -0.614856 0.952426 0.285979 0.105362 0.257120 -0.568365 -0.781569 -0.163628 0.771478 -0.614856 0.917208 0.384225 0.105362 0.315273 -0.538287 -0.781569 -0.243583 0.750079 -0.614856 0.871887 0.478239 0.105362 0.369953 -0.502279 -0.781569 -0.320856 0.720419 -0.614856 0.816962 0.566985 0.105362 0.420557 -0.460739 -0.781569 -0.394594 0.682823 -0.614856 0.753688 0.648732 0.105362 0.466116 -0.414591 -0.781569 -0.463347 0.638170 -0.614856 0.681545 0.724151 0.105362 0.507001 -0.363455 -0.781569 -0.527680 0.586093 -0.614856 0.601895 0.791594 0.105362 0.542301 -0.308316 -0.781569 -0.586201 0.527561 -0.614856 0.516466 0.849801 0.105362 0.571378 -0.250353 -0.781569 -0.637801 0.463855 -0.614856 0.424556 0.899250 0.105362 0.594470 -0.189089 -0.781569 -0.682904 0.394454 -0.614856 0.327970 0.938794 0.105362 0.611014 -0.125743 -0.781569 -0.720484 0.320709 -0.614856 0.227772 0.967997 0.105362 0.620828 -0.061012 -0.781569 -0.750129 0.243431 -0.614856 0.126051 0.986413 0.105362 0.623807 0.003767 -0.781569 -0.771347 0.164243 -0.614856 0.021973 0.994191 0.105362 0.619977 0.069126 -0.781569 -0.784313 0.082495 -0.614856 0.090153 0.944757 -0.315130 0.260428 -0.327772 -0.908154 -0.961275 -0.000196 -0.275590 -0.009361 0.949002 -0.315130 0.293346 -0.298672 -0.908154 -0.955961 -0.100943 -0.275590 -0.107829 0.942903 -0.315130 0.322767 -0.266605 -0.908154 -0.940316 -0.199639 -0.275590 -0.206058 0.926409 -0.315130 0.348931 -0.231308 -0.908154 -0.914214 -0.297091 -0.275590 -0.302017 0.899710 -0.315130 0.371253 -0.193464 -0.908154 -0.878042 -0.391271 -0.275590 -0.393787 0.863496 -0.315130 0.389331 -0.153878 -0.908154 -0.832679 -0.480309 -0.275590 -0.482119 0.817469 -0.315130 0.403314 -0.112226 -0.908154 -0.777753 -0.564934 -0.275590 -0.565140 0.762437 -0.315130 0.412855 -0.069338 -0.908154 -0.714260 -0.643337 -0.275590 -0.641936 0.699007 -0.315130 0.417848 -0.025686 -0.908154 -0.642900 -0.714653 -0.275590 -0.711034 0.628589 -0.315130 0.418257 0.017831 -0.908154 -0.565237 -0.777533 -0.275590 -0.772998 0.550606 -0.315130 0.414084 0.061569 -0.908154 -0.480632 -0.832492 -0.275590 -0.826449 0.466558 -0.315130 0.405351 0.104629 -0.908154 -0.390734 -0.878281 -0.275590 -0.870418 0.378241 -0.315130 0.392299 0.146144 -0.908154 -0.297447 -0.914098 -0.275590 -0.905266 0.284932 -0.315130 0.374821 0.186455 -0.908154 -0.200004 -0.940238 -0.275590 -0.930144 0.188484 -0.315130 0.353215 0.224712 -0.908154 -0.100359 -0.956022 -0.275590 -0.944702 0.090730 -0.315130 0.327931 0.260227 -0.908154 -0.000392 -0.961275 -0.275590 -0.949008 -0.008781 -0.315130 0.298851 0.293164 -0.908154 0.100359 -0.956022 -0.275590 -0.942861 -0.108196 -0.315130 0.266479 0.322871 -0.908154 0.200004 -0.940238 -0.275590 -0.926329 -0.206418 -0.315130 0.231173 0.349021 -0.908154 0.297447 -0.914098 -0.275590 -0.899895 -0.301468 -0.315130 0.193691 0.371134 -0.908154 0.390734 -0.878281 -0.275590 -0.863343 -0.394123 -0.315130 0.153726 0.389390 -0.908154 0.480632 -0.832492 -0.275590 -0.817281 -0.482437 -0.315130 0.112069 0.403357 -0.908154 0.565237 -0.777533 -0.275590 -0.762782 -0.564674 -0.315130 0.069590 0.412812 -0.908154 0.642900 -0.714653 -0.275590 -0.699399 -0.641509 -0.315130 0.025941 0.417832 -0.908154 0.714260 -0.643337 -0.275590 -0.628313 -0.711278 -0.315130 -0.017994 0.418250 -0.908154 0.777753 -0.564934 -0.275590 -0.550305 -0.773212 -0.315130 -0.061730 0.414060 -0.908154 0.832679 -0.480309 -0.275590 -0.467063 -0.826163 -0.315130 -0.104382 0.405415 -0.908154 0.878042 -0.391271 -0.275590 -0.377902 -0.870565 -0.315130 -0.146297 0.392242 -0.908154 0.914214 -0.297091 -0.275590 -0.284580 -0.905377 -0.315130 -0.186601 0.374749 -0.908154 0.940316 -0.199639 -0.275590 -0.189052 -0.930028 -0.315130 -0.224497 0.353353 -0.908154 0.955961 -0.100943 -0.275590 -0.090538 -0.944720 -0.315130 -0.260294 0.327878 -0.908154 0.961275 -0.000196 -0.275590 0.008974 -0.949006 -0.315130 -0.293224 0.298791 -0.908154 0.956002 0.100554 -0.275590 0.108388 -0.942839 -0.315130 -0.322925 0.266414 -0.908154 0.940198 0.200196 -0.275590 0.205681 -0.926493 -0.315130 -0.348837 0.231450 -0.908154 0.914335 0.296719 -0.275590 0.301651 -0.899833 -0.315130 -0.371174 0.193615 -0.908154 0.878201 0.390913 -0.275590 0.394299 -0.863262 -0.315130 -0.389422 0.153647 -0.908154 0.832394 0.480802 -0.275590 0.482603 -0.817183 -0.315130 -0.403380 0.111987 -0.908154 0.777418 0.565395 -0.275590 0.564829 -0.762667 -0.315130 -0.412826 0.069506 -0.908154 0.714522 0.643046 -0.275590 0.641652 -0.699269 -0.315130 -0.417838 0.025856 -0.908154 0.643191 0.714391 -0.275590 0.711406 -0.628168 -0.315130 -0.418246 -0.018079 -0.908154 0.564776 0.777868 -0.275590 0.772774 -0.550921 -0.315130 -0.414109 -0.061401 -0.908154 0.480972 0.832296 -0.275590 0.826258 -0.466894 -0.315130 -0.405394 -0.104464 -0.908154 0.391092 0.878121 -0.275590 0.870642 -0.377725 -0.315130 -0.392212 -0.146377 -0.908154 0.296905 0.914274 -0.275590 0.905435 -0.284395 -0.315130 -0.374711 -0.186677 -0.908154 0.199447 0.940357 -0.275590 0.930067 -0.188863 -0.315130 -0.353307 -0.224568 -0.908154 0.100749 0.955981 -0.275590 0.944739 -0.090345 -0.315130 -0.327825 -0.260361 -0.908154 0.000000 0.961275 -0.275590 0.949004 0.009168 -0.315130 -0.298731 -0.293285 -0.908154 -0.100749 0.955981 -0.275590 0.942925 0.107637 -0.315130 -0.266671 -0.322713 -0.908154 -0.199447 0.940357 -0.275590 0.926451 0.205869 -0.315130 -0.231379 -0.348884 -0.908154 -0.296905 0.914274 -0.275590 0.899772 0.301834 -0.315130 -0.193539 -0.371213 -0.908154 -0.391092 0.878121 -0.275590 0.863182 0.394474 -0.315130 -0.153568 -0.389453 -0.908154 -0.480972 0.832296 -0.275590 0.817567 0.481952 -0.315130 -0.112308 -0.403291 -0.908154 -0.564776 0.777868 -0.275590 0.762552 0.564985 -0.315130 -0.069422 -0.412841 -0.908154 -0.643191 0.714391 -0.275590 0.699138 0.641794 -0.315130 -0.025771 -0.417843 -0.908154 -0.714522 0.643046 -0.275590 0.628734 0.710906 -0.315130 0.017746 -0.418260 -0.908154 -0.777418 0.565395 -0.275590 0.550763 0.772886 -0.315130 0.061485 -0.414097 -0.908154 -0.832394 0.480802 -0.275590 0.466726 0.826353 -0.315130 0.104547 -0.405372 -0.908154 -0.878201 0.390913 -0.275590 0.377548 0.870719 -0.315130 0.146457 -0.392182 -0.908154 -0.914335 0.296719 -0.275590 0.285116 0.905208 -0.315130 0.186379 -0.374859 -0.908154 -0.940198 0.200196 -0.275590 0.188674 0.930105 -0.315130 0.224640 -0.353261 -0.908154 -0.956002 0.100554 -0.275590 0.901943 0.363473 0.233207 -0.351914 0.931605 -0.090935 -0.250310 -0.000051 0.968166 0.858881 0.456002 0.233207 -0.447615 0.889591 -0.090935 -0.248926 -0.026285 0.968166 0.806902 0.542700 0.233207 -0.537547 0.838316 -0.090935 -0.244852 -0.051985 0.968166 0.745579 0.624281 0.233207 -0.622448 0.777360 -0.090935 -0.238055 -0.077360 0.968166 0.676044 0.698985 0.233207 -0.700493 0.707842 -0.090935 -0.228636 -0.101884 0.968166 0.599827 0.765390 0.233207 -0.770191 0.631297 -0.090935 -0.216824 -0.125069 0.968166 0.516306 0.824040 0.233207 -0.832114 0.547099 -0.090935 -0.202522 -0.147105 0.968166 0.427097 0.873615 0.233207 -0.884871 0.456874 -0.090935 -0.185989 -0.167521 0.968166 0.333183 0.913566 0.233207 -0.927881 0.361617 -0.090935 -0.167407 -0.186091 0.968166 0.236543 0.943219 0.233207 -0.960408 0.263338 -0.090935 -0.147184 -0.202464 0.968166 0.136385 0.962815 0.233207 -0.982719 0.161230 -0.090935 -0.125153 -0.216775 0.968166 0.034724 0.971807 0.233207 -0.994204 0.057346 -0.090935 -0.101745 -0.228698 0.968166 -0.066350 0.970161 0.233207 -0.994786 -0.046175 -0.090935 -0.077453 -0.238025 0.968166 -0.167664 0.957864 0.233207 -0.984468 -0.150181 -0.090935 -0.052080 -0.244832 0.968166 -0.267132 0.935016 0.233207 -0.963306 -0.252533 -0.090935 -0.026133 -0.248942 0.968166 -0.362922 0.902165 0.233207 -0.931819 -0.351345 -0.090935 -0.000102 -0.250310 0.968166 -0.455477 0.859160 0.233207 -0.889864 -0.447071 -0.090935 0.026133 -0.248942 0.968166 -0.543014 0.806691 0.233207 -0.838107 -0.537873 -0.090935 0.052080 -0.244832 0.968166 -0.624571 0.745336 0.233207 -0.777118 -0.622751 -0.090935 0.077453 -0.238025 0.968166 -0.698571 0.676471 0.233207 -0.708270 -0.700060 -0.090935 0.101745 -0.228698 0.968166 -0.765623 0.599530 0.233207 -0.630998 -0.770437 -0.090935 0.125153 -0.216775 0.968166 -0.824241 0.515985 0.233207 -0.546775 -0.832327 -0.090935 0.147184 -0.202464 0.968166 -0.873354 0.427630 0.233207 -0.457415 -0.884592 -0.090935 0.167407 -0.186091 0.968166 -0.913362 0.333741 0.233207 -0.362184 -0.927660 -0.090935 0.185989 -0.167521 0.968166 -0.943311 0.236176 0.233207 -0.262964 -0.960511 -0.090935 0.202522 -0.147105 0.968166 -0.962868 0.136010 0.233207 -0.160848 -0.982781 -0.090935 0.216824 -0.125069 0.968166 -0.971785 0.035317 0.233207 -0.057953 -0.994169 -0.090935 0.228636 -0.101884 0.968166 -0.970135 -0.066727 0.233207 0.046562 -0.994768 -0.090935 0.238055 -0.077360 0.968166 -0.957798 -0.168037 0.233207 0.150564 -0.984409 -0.090935 0.244852 -0.051985 0.968166 -0.935179 -0.266560 0.233207 0.251945 -0.963460 -0.090935 0.248926 -0.026285 0.968166 -0.902091 -0.363106 0.233207 0.351535 -0.931748 -0.090935 0.250310 -0.000051 0.968166 -0.859067 -0.455652 0.233207 0.447253 -0.889773 -0.090935 0.248936 0.026184 0.968166 -0.806580 -0.543179 0.233207 0.538044 -0.837997 -0.090935 0.244821 0.052130 0.968166 -0.745833 -0.623977 0.233207 0.622132 -0.777614 -0.090935 0.238087 0.077264 0.968166 -0.676328 -0.698709 0.233207 0.700205 -0.708127 -0.090935 0.228678 0.101791 0.968166 -0.599374 -0.765745 0.233207 0.770565 -0.630841 -0.090935 0.216750 0.125198 0.968166 -0.515817 -0.824346 0.233207 0.832438 -0.546606 -0.090935 0.202434 0.147225 0.968166 -0.427453 -0.873441 0.233207 0.884685 -0.457235 -0.090935 0.186057 0.167445 0.968166 -0.333555 -0.913430 0.233207 0.927734 -0.361995 -0.090935 0.167483 0.186023 0.968166 -0.235984 -0.943359 0.233207 0.960564 -0.262768 -0.090935 0.147064 0.202552 0.968166 -0.136777 -0.962760 0.233207 0.982653 -0.161630 -0.090935 0.125242 0.216724 0.968166 -0.035119 -0.971793 0.233207 0.994181 -0.057751 -0.090935 0.101838 0.228657 0.968166 0.066925 -0.970121 0.233207 0.994758 0.046765 -0.090935 0.077312 0.238071 0.968166 0.168232 -0.957764 0.233207 0.984378 0.150765 -0.090935 0.051935 0.244863 0.968166 0.266751 -0.935125 0.233207 0.963408 0.252141 -0.090935 0.026234 0.248931 0.968166 0.363290 -0.902017 0.233207 0.931676 0.351725 -0.090935 0.000000 0.250310 0.968166 0.455827 -0.858974 0.233207 0.889682 0.447434 -0.090935 -0.026234 0.248931 0.968166 0.542536 -0.807012 0.233207 0.838426 0.537377 -0.090935 -0.051935 0.244863 0.968166 0.624129 -0.745706 0.233207 0.777487 0.622290 -0.090935 -0.077312 0.238071 0.968166 0.698847 -0.676186 0.233207 0.707985 0.700349 -0.090935 -0.101838 0.228657 0.968166 0.765867 -0.599218 0.233207 0.630684 0.770694 -0.090935 -0.125242 0.216724 0.968166 0.823935 -0.516473 0.233207 0.547268 0.832002 -0.090935 -0.147064 0.202552 0.968166 0.873528 -0.427275 0.233207 0.457055 0.884778 -0.090935 -0.167483 0.186023 0.968166 0.913498 -0.333369 0.233207 0.361806 0.927808 -0.090935 -0.186057 0.167445 0.968166 0.943170 -0.236736 0.233207 0.263533 0.960355 -0.090935 -0.202434 0.147225 0.968166 0.962788 -0.136581 0.233207 0.161430 0.982686 -0.090935 -0.216750 0.125198 0.968166 0.971800 -0.034922 0.233207 0.057548 0.994193 -0.090935 -0.228678 0.101791 0.968166 0.970108 0.067122 0.233207 -0.046967 0.994749 -0.090935 -0.238087 0.077264 0.968166 0.957898 0.167469 0.233207 -0.149981 0.984498 -0.090935 -0.244821 0.052130 0.968166 0.935070 0.266941 0.233207 -0.252337 0.963357 -0.090935 -0.248936 0.026184 0.968166 0.234923 0.688822 -0.685810 0.223473 -0.724931 -0.651564 -0.945976 -0.000193 -0.324236 0.161436 0.709650 -0.685810 0.298220 -0.697517 -0.651564 -0.940746 -0.099337 -0.324236 0.086893 0.722574 -0.685810 0.369020 -0.662789 -0.651564 -0.925351 -0.196461 -0.324236 0.010683 0.727702 -0.685810 0.436452 -0.620463 -0.651564 -0.899664 -0.292363 -0.324236 -0.065644 0.724814 -0.685810 0.499078 -0.571302 -0.651564 -0.864067 -0.385044 -0.324236 -0.140534 0.714083 -0.685810 0.555689 -0.516405 -0.651564 -0.819426 -0.472665 -0.324236 -0.214601 0.695421 -0.685810 0.606752 -0.455321 -0.651564 -0.765375 -0.555943 -0.324236 -0.286304 0.669099 -0.685810 0.651131 -0.389221 -0.651564 -0.702893 -0.633098 -0.324236 -0.354854 0.635408 -0.685810 0.688338 -0.318834 -0.651564 -0.632668 -0.703279 -0.324236 -0.418900 0.595136 -0.685810 0.717718 -0.245653 -0.651564 -0.556241 -0.765158 -0.324236 -0.478967 0.547955 -0.685810 0.739511 -0.169078 -0.651564 -0.472983 -0.819242 -0.324236 -0.533759 0.494738 -0.685810 0.753159 -0.090641 -0.651564 -0.384516 -0.864303 -0.324236 -0.582235 0.436654 -0.685810 0.758500 -0.011964 -0.651564 -0.292713 -0.899550 -0.324236 -0.624793 0.373226 -0.685810 0.755576 0.067598 -0.651564 -0.196821 -0.925274 -0.324236 -0.660469 0.305688 -0.685810 0.744330 0.146416 -0.651564 -0.098762 -0.940807 -0.324236 -0.688678 0.235344 -0.685810 0.725067 0.223030 -0.651564 -0.000385 -0.945976 -0.324236 -0.709551 0.161869 -0.685810 0.697699 0.297794 -0.651564 0.098762 -0.940807 -0.324236 -0.722608 0.086612 -0.685810 0.662645 0.369277 -0.651564 0.196821 -0.925274 -0.324236 -0.727706 0.010400 -0.685810 0.620293 0.436694 -0.651564 0.292713 -0.899550 -0.324236 -0.724854 -0.065201 -0.685810 0.571607 0.498728 -0.651564 0.384516 -0.864303 -0.324236 -0.714028 -0.140812 -0.685810 0.516189 0.555890 -0.651564 0.472983 -0.819242 -0.324236 -0.695338 -0.214872 -0.685810 0.455085 0.606929 -0.651564 0.556241 -0.765158 -0.324236 -0.669274 -0.285895 -0.685810 0.389619 0.650893 -0.651564 0.632668 -0.703279 -0.324236 -0.635624 -0.354466 -0.685810 0.319255 0.688143 -0.651564 0.702893 -0.633098 -0.324236 -0.594973 -0.419131 -0.685810 0.245374 0.717814 -0.651564 0.765375 -0.555943 -0.324236 -0.547768 -0.479180 -0.685810 0.168791 0.739577 -0.651564 0.819426 -0.472665 -0.324236 -0.495064 -0.533457 -0.685810 0.091101 0.753104 -0.651564 0.864067 -0.385044 -0.324236 -0.436427 -0.582405 -0.685810 0.011669 0.758504 -0.651564 0.899664 -0.292363 -0.324236 -0.372983 -0.624938 -0.685810 -0.067892 0.755550 -0.651564 0.925351 -0.196461 -0.324236 -0.306092 -0.660282 -0.685810 -0.145961 0.744419 -0.651564 0.940746 -0.099337 -0.324236 -0.235203 -0.688726 -0.685810 -0.223177 0.725022 -0.651564 0.945976 -0.000193 -0.324236 -0.161725 -0.709584 -0.685810 -0.297936 0.697638 -0.651564 0.940787 0.098954 -0.324236 -0.086465 -0.722626 -0.685810 -0.369412 0.662570 -0.651564 0.925234 0.197010 -0.324236 -0.010980 -0.727697 -0.685810 -0.436200 0.620641 -0.651564 0.899783 0.291996 -0.324236 0.065349 -0.724840 -0.685810 -0.498845 0.571506 -0.651564 0.864224 0.384692 -0.324236 0.140957 -0.713999 -0.685810 -0.555995 0.516076 -0.651564 0.819146 0.473150 -0.324236 0.215013 -0.695294 -0.685810 -0.607022 0.454961 -0.651564 0.765045 0.556397 -0.324236 0.286032 -0.669216 -0.685810 -0.650972 0.389486 -0.651564 0.703151 0.632812 -0.324236 0.354595 -0.635552 -0.685810 -0.688208 0.319115 -0.651564 0.632955 0.703022 -0.324236 0.419253 -0.594888 -0.685810 -0.717864 0.245228 -0.651564 0.555787 0.765488 -0.324236 0.478744 -0.548150 -0.685810 -0.739443 0.169380 -0.651564 0.473317 0.819050 -0.324236 0.533557 -0.494955 -0.685810 -0.753122 0.090948 -0.651564 0.384868 0.864146 -0.324236 0.582494 -0.436308 -0.685810 -0.758507 0.011514 -0.651564 0.292179 0.899723 -0.324236 0.625014 -0.372856 -0.685810 -0.755536 -0.068046 -0.651564 0.196273 0.925391 -0.324236 0.660344 -0.305957 -0.685810 -0.744390 -0.146112 -0.651564 0.099145 0.940766 -0.324236 0.688774 -0.235063 -0.685810 -0.724976 -0.223325 -0.651564 0.000000 0.945976 -0.324236 0.709617 -0.161580 -0.685810 -0.697577 -0.298078 -0.651564 -0.099145 0.940766 -0.324236 0.722557 -0.087040 -0.685810 -0.662864 -0.368885 -0.651564 -0.196273 0.925391 -0.324236 0.727700 -0.010831 -0.685810 -0.620552 -0.436326 -0.651564 -0.292179 0.899723 -0.324236 0.724827 0.065496 -0.685810 -0.571404 -0.498961 -0.651564 -0.384868 0.864146 -0.324236 0.713971 0.141103 -0.685810 -0.515962 -0.556100 -0.651564 -0.473317 0.819050 -0.324236 0.695465 0.214459 -0.685810 -0.455444 -0.606659 -0.651564 -0.555787 0.765488 -0.324236 0.669158 0.286168 -0.685810 -0.389354 -0.651052 -0.651564 -0.632955 0.703022 -0.324236 0.635480 0.354724 -0.685810 -0.318974 -0.688273 -0.651564 -0.703151 0.632812 -0.324236 0.595221 0.418779 -0.685810 -0.245800 -0.717668 -0.651564 -0.765045 0.556397 -0.324236 0.548052 0.478856 -0.685810 -0.169229 -0.739477 -0.651564 -0.819146 0.473150 -0.324236 0.494846 0.533658 -0.685810 -0.090795 -0.753141 -0.651564 -0.864224 0.384692 -0.324236 0.436190 0.582583 -0.685810 -0.011360 -0.758509 -0.651564 -0.899783 0.291996 -0.324236 0.373354 0.624717 -0.685810 0.067444 -0.755590 -0.651564 -0.925234 0.197010 -0.324236 0.305823 0.660406 -0.685810 0.146264 -0.744360 -0.651564 -0.940787 0.098954 -0.324236 -0.370208 0.457082 0.808716 0.190063 0.889425 -0.415692 -0.909297 -0.000185 -0.416147 -0.416075 0.415764 0.808716 0.095799 0.904446 -0.415692 -0.904270 -0.095485 -0.416147 -0.456988 0.370324 0.808716 0.001388 0.909504 -0.415692 -0.889472 -0.188844 -0.416147 -0.493284 0.320389 0.808716 -0.093942 0.904641 -0.415692 -0.864781 -0.281027 -0.416147 -0.524146 0.266925 0.808716 -0.188238 0.889813 -0.415692 -0.830564 -0.370114 -0.416147 -0.549024 0.211069 0.808716 -0.279594 0.865463 -0.415692 -0.787654 -0.454338 -0.416147 -0.568122 0.152365 0.808716 -0.368761 0.831394 -0.415692 -0.735699 -0.534387 -0.416147 -0.580962 0.091983 0.808716 -0.453866 0.788166 -0.415692 -0.675639 -0.608550 -0.416147 -0.587403 0.030587 0.808716 -0.533972 0.736257 -0.415692 -0.608138 -0.676011 -0.416147 -0.587405 -0.030558 0.808716 -0.607520 0.676846 -0.415692 -0.534673 -0.735491 -0.416147 -0.580967 -0.091954 0.808716 -0.675112 0.609445 -0.415692 -0.454644 -0.787477 -0.416147 -0.568130 -0.152337 0.808716 -0.735268 0.535332 -0.415692 -0.369607 -0.830790 -0.416147 -0.549246 -0.210493 0.808716 -0.786870 0.456110 -0.415692 -0.281363 -0.864671 -0.416147 -0.524160 -0.266899 0.808716 -0.830340 0.371128 -0.415692 -0.189190 -0.889398 -0.416147 -0.493300 -0.320364 0.808716 -0.864664 0.282059 -0.415692 -0.094933 -0.904328 -0.416147 -0.457308 -0.369929 0.808716 -0.889308 0.190607 -0.415692 -0.000370 -0.909297 -0.416147 -0.416018 -0.415821 0.808716 -0.904387 0.096351 -0.415692 0.094933 -0.904328 -0.416147 -0.370146 -0.457132 0.808716 -0.909505 0.001034 -0.415692 0.189190 -0.889398 -0.416147 -0.320197 -0.493409 0.808716 -0.904604 -0.094294 -0.415692 0.281363 -0.864671 -0.416147 -0.267245 -0.523983 0.808716 -0.889928 -0.187694 -0.415692 0.369607 -0.830790 -0.416147 -0.210856 -0.549106 0.808716 -0.865355 -0.279931 -0.415692 0.454644 -0.787477 -0.416147 -0.152144 -0.568181 0.808716 -0.831250 -0.369085 -0.415692 0.534673 -0.735491 -0.416147 -0.092338 -0.580906 0.808716 -0.788443 -0.453385 -0.415692 0.608138 -0.676011 -0.416147 -0.030946 -0.587384 0.808716 -0.736583 -0.533522 -0.415692 0.675639 -0.608550 -0.416147 0.030787 -0.587393 0.808716 -0.676609 -0.607783 -0.415692 0.735699 -0.534387 -0.416147 0.092180 -0.580931 0.808716 -0.609183 -0.675349 -0.415692 0.787654 -0.454338 -0.416147 0.151990 -0.568223 0.808716 -0.535782 -0.734941 -0.415692 0.830564 -0.370114 -0.416147 0.210707 -0.549164 0.808716 -0.455804 -0.787047 -0.415692 0.864781 -0.281027 -0.416147 0.267102 -0.524056 0.808716 -0.370805 -0.830484 -0.415692 0.889472 -0.188844 -0.416147 0.320063 -0.493495 0.808716 -0.282587 -0.864491 -0.415692 0.904270 -0.095485 -0.416147 0.370022 -0.457233 0.808716 -0.190426 -0.889347 -0.415692 0.909297 -0.000185 -0.416147 0.415905 -0.415934 0.808716 -0.096167 -0.904407 -0.415692 0.904309 0.095117 -0.416147 0.457208 -0.370053 0.808716 -0.000849 -0.909505 -0.415692 0.889360 0.189371 -0.416147 0.493153 -0.320590 0.808716 0.093574 -0.904679 -0.415692 0.864895 0.280674 -0.416147 0.524038 -0.267138 0.808716 0.187875 -0.889889 -0.415692 0.830715 0.369776 -0.416147 0.549149 -0.210744 0.808716 0.280107 -0.865298 -0.415692 0.787385 0.454804 -0.416147 0.568212 -0.152028 0.808716 0.369254 -0.831175 -0.415692 0.735382 0.534823 -0.416147 0.580925 -0.092219 0.808716 0.453545 -0.788351 -0.415692 0.675887 0.608275 -0.416147 0.587391 -0.030826 0.808716 0.533672 -0.736474 -0.415692 0.608413 0.675763 -0.416147 0.587386 0.030906 0.808716 0.607921 -0.676485 -0.415692 0.534237 0.735807 -0.416147 0.581004 0.091717 0.808716 0.674864 -0.609720 -0.415692 0.454965 0.787292 -0.416147 0.568192 0.152106 0.808716 0.735050 -0.535632 -0.415692 0.369945 0.830640 -0.416147 0.549121 0.210818 0.808716 0.787140 -0.455643 -0.415692 0.280851 0.864838 -0.416147 0.524001 0.267209 0.808716 0.830559 -0.370636 -0.415692 0.188663 0.889510 -0.416147 0.493430 0.320163 0.808716 0.864549 -0.282411 -0.415692 0.095301 0.904290 -0.416147 0.457157 0.370115 0.808716 0.889386 -0.190245 -0.415692 0.000000 0.909297 -0.416147 0.415849 0.415990 0.808716 0.904427 -0.095983 -0.415692 -0.095301 0.904290 -0.416147 0.370417 0.456913 0.808716 0.909504 -0.001573 -0.415692 -0.188663 0.889510 -0.416147 0.320489 0.493219 0.808716 0.904660 0.093758 -0.415692 -0.280851 0.864838 -0.416147 0.267031 0.524092 0.808716 0.889851 0.188056 -0.415692 -0.369945 0.830640 -0.416147 0.210632 0.549192 0.808716 0.865241 0.280283 -0.415692 -0.454965 0.787292 -0.416147 0.152481 0.568091 0.808716 0.831469 0.368592 -0.415692 -0.534237 0.735807 -0.416147 0.092101 0.580944 0.808716 0.788258 0.453706 -0.415692 -0.608413 0.675763 -0.416147 0.030707 0.587397 0.808716 0.736365 0.533822 -0.415692 -0.675887 0.608275 -0.416147 -0.030438 0.587411 0.808716 0.676969 0.607382 -0.415692 -0.735382 0.534823 -0.416147 -0.091836 0.580986 0.808716 0.609583 0.674988 -0.415692 -0.787385 0.454804 -0.416147 -0.152221 0.568161 0.808716 0.535482 0.735159 -0.415692 -0.830715 0.369776 -0.416147 -0.210930 0.549078 0.808716 0.455483 0.787233 -0.415692 -0.864895 0.280674 -0.416147 -0.266792 0.524214 0.808716 0.371297 0.830264 -0.415692 -0.889360 0.189371 -0.416147 -0.320264 0.493365 0.808716 0.282235 0.864606 -0.415692 -0.904309 0.095117 -0.416147 0.028254 0.999461 -0.016696 0.862044 -0.032818 -0.505769 -0.506045 -0.000103 -0.862507 -0.076652 0.996918 -0.016696 0.860736 0.057711 -0.505769 -0.503247 -0.053140 -0.862507 -0.179731 0.983574 -0.016696 0.850095 0.146754 -0.505769 -0.495011 -0.105096 -0.862507 -0.281827 0.959320 -0.016696 0.830032 0.235042 -0.505769 -0.481270 -0.156398 -0.862507 -0.380818 0.924499 -0.016696 0.800826 0.320741 -0.505769 -0.462228 -0.205977 -0.862507 -0.474735 0.879970 -0.016696 0.763202 0.402144 -0.505769 -0.438347 -0.252849 -0.862507 -0.564348 0.825368 -0.016696 0.716852 0.479918 -0.505769 -0.409433 -0.297398 -0.862507 -0.647744 0.761675 -0.016696 0.662605 0.552406 -0.505769 -0.376008 -0.338672 -0.862507 -0.724006 0.689592 -0.016696 0.601059 0.618809 -0.505769 -0.338442 -0.376215 -0.862507 -0.791682 0.610705 -0.016696 0.533572 0.677864 -0.505769 -0.297558 -0.409317 -0.862507 -0.851328 0.524368 -0.016696 0.459588 0.730052 -0.505769 -0.253020 -0.438249 -0.862507 -0.901597 0.432254 -0.016696 0.380542 0.774200 -0.505769 -0.205694 -0.462354 -0.862507 -0.941599 0.336322 -0.016696 0.298114 0.809522 -0.505769 -0.156585 -0.481209 -0.862507 -0.971662 0.235783 -0.016696 0.211629 0.836308 -0.505769 -0.105288 -0.494970 -0.862507 -0.991023 0.132647 -0.016696 0.122812 0.853882 -0.505769 -0.052832 -0.503279 -0.862507 -0.999444 0.028865 -0.016696 0.033345 0.862024 -0.505769 -0.000206 -0.506045 -0.862507 -0.996965 -0.076043 -0.016696 -0.057185 0.860771 -0.505769 0.052832 -0.503279 -0.862507 -0.983504 -0.180113 -0.016696 -0.147085 0.850037 -0.505769 0.105288 -0.494970 -0.862507 -0.959210 -0.282200 -0.016696 -0.235365 0.829940 -0.505769 0.156585 -0.481209 -0.862507 -0.924732 -0.380253 -0.016696 -0.320251 0.801022 -0.505769 0.205694 -0.462354 -0.862507 -0.879786 -0.475077 -0.016696 -0.402441 0.763046 -0.505769 0.253020 -0.438249 -0.862507 -0.825149 -0.564669 -0.016696 -0.480197 0.716665 -0.505769 0.297558 -0.409317 -0.862507 -0.762071 -0.647279 -0.016696 -0.552001 0.662942 -0.505769 0.338442 -0.376215 -0.862507 -0.690034 -0.723584 -0.016696 -0.618442 0.601437 -0.505769 0.376008 -0.338672 -0.862507 -0.610397 -0.791920 -0.016696 -0.678071 0.533308 -0.505769 0.409433 -0.297398 -0.862507 -0.524036 -0.851532 -0.016696 -0.730231 0.459304 -0.505769 0.438347 -0.252849 -0.862507 -0.432805 -0.901333 -0.016696 -0.773967 0.381015 -0.505769 0.462228 -0.205977 -0.862507 -0.335955 -0.941730 -0.016696 -0.809638 0.297799 -0.505769 0.481270 -0.156398 -0.862507 -0.235405 -0.971754 -0.016696 -0.836390 0.211303 -0.505769 0.495011 -0.105096 -0.862507 -0.133253 -0.990941 -0.016696 -0.853807 0.123334 -0.505769 0.503247 -0.053140 -0.862507 -0.028661 -0.999450 -0.016696 -0.862031 0.033170 -0.505769 0.506045 -0.000103 -0.862507 0.076246 -0.996949 -0.016696 -0.860760 -0.057360 -0.505769 0.503268 0.052935 -0.862507 0.180314 -0.983467 -0.016696 -0.850007 -0.147258 -0.505769 0.494949 0.105389 -0.862507 0.281436 -0.959435 -0.016696 -0.830128 -0.234704 -0.505769 0.481334 0.156202 -0.862507 0.380441 -0.924654 -0.016696 -0.800957 -0.320415 -0.505769 0.462312 0.205789 -0.862507 0.475257 -0.879689 -0.016696 -0.762964 -0.402596 -0.505769 0.438197 0.253109 -0.862507 0.564837 -0.825034 -0.016696 -0.716567 -0.480343 -0.505769 0.409256 0.297641 -0.862507 0.647434 -0.761939 -0.016696 -0.662830 -0.552136 -0.505769 0.376146 0.338519 -0.862507 0.723725 -0.689887 -0.016696 -0.601312 -0.618565 -0.505769 0.338595 0.376077 -0.862507 0.792044 -0.610236 -0.016696 -0.533170 -0.678180 -0.505769 0.297315 0.409493 -0.862507 0.851115 -0.524714 -0.016696 -0.459885 -0.729865 -0.505769 0.253198 0.438146 -0.862507 0.901421 -0.432622 -0.016696 -0.380858 -0.774045 -0.505769 0.205883 0.462270 -0.862507 0.941798 -0.335764 -0.016696 -0.297635 -0.809698 -0.505769 0.156300 0.481302 -0.862507 0.971802 -0.235207 -0.016696 -0.211133 -0.836433 -0.505769 0.104995 0.495032 -0.862507 0.990969 -0.133051 -0.016696 -0.123160 -0.853832 -0.505769 0.053037 0.503258 -0.862507 0.999456 -0.028458 -0.016696 -0.032994 -0.862038 -0.505769 0.000000 0.506045 -0.862507 0.996934 0.076449 -0.016696 0.057535 -0.860748 -0.505769 -0.053037 0.503258 -0.862507 0.983611 0.179531 -0.016696 0.146581 -0.850124 -0.505769 -0.104995 0.495032 -0.862507 0.959377 0.281631 -0.016696 0.234873 -0.830080 -0.505769 -0.156300 0.481302 -0.862507 0.924577 0.380630 -0.016696 0.320578 -0.800892 -0.505769 -0.205883 0.462270 -0.862507 0.879592 0.475436 -0.016696 0.402751 -0.762882 -0.505769 -0.253198 0.438146 -0.862507 0.825483 0.564180 -0.016696 0.479772 -0.716949 -0.505769 -0.297315 0.409493 -0.862507 0.761807 0.647589 -0.016696 0.552271 -0.662717 -0.505769 -0.338595 0.376077 -0.862507 0.689739 0.723865 -0.016696 0.618687 -0.601186 -0.505769 -0.376146 0.338519 -0.862507 0.610866 0.791558 -0.016696 0.677755 -0.533710 -0.505769 -0.409256 0.297641 -0.862507 0.524541 0.851222 -0.016696 0.729959 -0.459737 -0.505769 -0.438197 0.253109 -0.862507 0.432438 0.901509 -0.016696 0.774122 -0.380700 -0.505769 -0.462312 0.205789 -0.862507 0.335572 0.941867 -0.016696 0.809759 -0.297470 -0.505769 -0.481334 0.156202 -0.862507 0.235981 0.971614 -0.016696 0.836265 -0.211799 -0.505769 -0.494949 0.105389 -0.862507 0.132849 0.990996 -0.016696 0.853857 -0.122986 -0.505769 -0.503268 0.052935 -0.862507 0.067694 -0.368308 0.927236 0.026599 0.929704 0.367347 -0.997352 -0.000203 0.072732 0.105922 -0.359185 0.927236 -0.070987 0.927371 0.367347 -0.991837 -0.104732 0.072732 0.142638 -0.346248 0.927236 -0.166876 0.914991 0.367347 -0.975606 -0.207131 0.072732 0.178142 -0.329392 0.927236 -0.261854 0.892462 0.367347 -0.948524 -0.308241 0.072732 0.211683 -0.308907 0.927236 -0.353949 0.860103 0.367347 -0.910994 -0.405955 0.072732 0.242608 -0.285263 0.927236 -0.441326 0.818711 0.367347 -0.863929 -0.498335 0.072732 0.271169 -0.258265 0.927236 -0.524702 0.767948 0.367347 -0.806942 -0.586136 0.072732 0.296744 -0.228422 0.927236 -0.602299 0.708726 0.367347 -0.741066 -0.667481 0.072732 0.319050 -0.196063 0.927236 -0.673261 0.641698 0.367347 -0.667028 -0.741474 0.072732 0.337680 -0.161882 0.927236 -0.736240 0.568337 0.367347 -0.586450 -0.806714 0.072732 0.352787 -0.125599 0.927236 -0.791751 0.488044 0.367347 -0.498670 -0.863735 0.072732 0.364007 -0.087933 0.927236 -0.838541 0.402375 0.367347 -0.405398 -0.911242 0.072732 0.371169 -0.049669 0.927236 -0.875782 0.313150 0.367347 -0.308610 -0.948404 0.072732 0.374331 -0.010495 0.927236 -0.903779 0.219637 0.367347 -0.207511 -0.975525 0.072732 0.373369 0.028796 0.927236 -0.921821 0.123705 0.367347 -0.104126 -0.991901 0.072732 0.368350 0.067469 0.927236 -0.929687 0.027167 0.367347 -0.000406 -0.997351 0.072732 0.359250 0.105703 0.927236 -0.927414 -0.070420 0.367347 0.104126 -0.991901 0.072732 0.346193 0.142773 0.927236 -0.914926 -0.167232 0.367347 0.207511 -0.975525 0.072732 0.329323 0.178270 0.927236 -0.892360 -0.262202 0.367347 0.308610 -0.948404 0.072732 0.309037 0.211494 0.927236 -0.860319 -0.353423 0.367347 0.405398 -0.911242 0.072732 0.285168 0.242719 0.927236 -0.818539 -0.441644 0.367347 0.498670 -0.863735 0.072732 0.258159 0.271270 0.927236 -0.767744 -0.525001 0.367347 0.586450 -0.806714 0.072732 0.228603 0.296604 0.927236 -0.709094 -0.601866 0.367347 0.667028 -0.741474 0.072732 0.196258 0.318930 0.927236 -0.642109 -0.672869 0.367347 0.741066 -0.667481 0.072732 0.161751 0.337743 0.927236 -0.568051 -0.736461 0.367347 0.806942 -0.586136 0.072732 0.125462 0.352835 0.927236 -0.487736 -0.791941 0.367347 0.863929 -0.498335 0.072732 0.088155 0.363953 0.927236 -0.402887 -0.838295 0.367347 0.910994 -0.405955 0.072732 0.049525 0.371188 0.927236 -0.312809 -0.875903 0.367347 0.948524 -0.308241 0.072732 0.010349 0.374335 0.927236 -0.219285 -0.903864 0.367347 0.975606 -0.207131 0.072732 -0.028568 0.373386 0.927236 -0.124268 -0.921745 0.367347 0.991837 -0.104732 0.072732 -0.067544 0.368336 0.927236 -0.026978 -0.929693 0.367347 0.997352 -0.000203 0.072732 -0.105776 0.359228 0.927236 0.070609 -0.927400 0.367347 0.991880 0.104328 0.072732 -0.142843 0.346164 0.927236 0.167418 -0.914892 0.367347 0.975483 0.207709 0.072732 -0.178008 0.329464 0.927236 0.261491 -0.892569 0.367347 0.948649 0.307854 0.072732 -0.211557 0.308993 0.927236 0.353598 -0.860247 0.367347 0.911159 0.405584 0.072732 -0.242777 0.285119 0.927236 0.441811 -0.818449 0.367347 0.863633 0.498846 0.072732 -0.271322 0.258104 0.927236 0.525157 -0.767637 0.367347 0.806594 0.586614 0.072732 -0.296651 0.228543 0.927236 0.602010 -0.708971 0.367347 0.741338 0.667179 0.072732 -0.318970 0.196193 0.927236 0.673000 -0.641972 0.367347 0.667330 0.741202 0.072732 -0.337776 0.161682 0.927236 0.736576 -0.567901 0.367347 0.585971 0.807061 0.072732 -0.352735 0.125743 0.927236 0.791552 -0.488367 0.367347 0.499022 0.863532 0.072732 -0.363971 0.088081 0.927236 0.838377 -0.402717 0.367347 0.405770 0.911077 0.072732 -0.371198 0.049449 0.927236 0.875967 -0.312631 0.367347 0.308048 0.948587 0.072732 -0.374337 0.010273 0.927236 0.903909 -0.219101 0.367347 0.206932 0.975648 0.072732 -0.373381 -0.028644 0.927236 0.921770 -0.124080 0.367347 0.104530 0.991859 0.072732 -0.368322 -0.067619 0.927236 0.929698 -0.026789 0.367347 0.000000 0.997352 0.072732 -0.359207 -0.105849 0.927236 0.927386 0.070798 0.367347 -0.104530 0.991859 0.072732 -0.346277 -0.142568 0.927236 0.915025 0.166690 0.367347 -0.206932 0.975648 0.072732 -0.329428 -0.178075 0.927236 0.892515 0.261673 0.367347 -0.308048 0.948587 0.072732 -0.308950 -0.211620 0.927236 0.860175 0.353774 0.367347 -0.405770 0.911077 0.072732 -0.285069 -0.242835 0.927236 0.818359 0.441978 0.367347 -0.499022 0.863532 0.072732 -0.258320 -0.271117 0.927236 0.768055 0.524546 0.367347 -0.585971 0.807061 0.072732 -0.228482 -0.296697 0.927236 0.708849 0.602154 0.367347 -0.667330 0.741202 0.072732 -0.196128 -0.319010 0.927236 0.641835 0.673131 0.367347 -0.741338 0.667179 0.072732 -0.161951 -0.337647 0.927236 0.568487 0.736124 0.367347 -0.806594 0.586614 0.072732 -0.125671 -0.352761 0.927236 0.488205 0.791651 0.367347 -0.863633 0.498846 0.072732 -0.088007 -0.363989 0.927236 0.402546 0.838459 0.367347 -0.911159 0.405584 0.072732 -0.049374 -0.371208 0.927236 0.312452 0.876031 0.367347 -0.948649 0.307854 0.072732 -0.010571 -0.374328 0.927236 0.219821 0.903734 0.367347 -0.975483 0.207709 0.072732 0.028720 -0.373375 0.927236 0.123893 0.921796 0.367347 -0.991880 0.104328 0.072732 0.044193 0.970388 0.237473 -0.178353 0.241550 -0.953857 -0.982974 -0.000200 0.183746 -0.057754 0.969676 0.237473 -0.202687 0.221527 -0.953857 -0.977539 -0.103222 0.183746 -0.158107 0.958441 0.237473 -0.224589 0.199288 -0.953857 -0.961542 -0.204145 0.183746 -0.257687 0.936592 0.237473 -0.244239 0.174652 -0.953857 -0.934850 -0.303797 0.183746 -0.354430 0.904426 0.237473 -0.261198 0.148092 -0.953857 -0.897861 -0.400103 0.183746 -0.446406 0.862745 0.237473 -0.275161 0.120177 -0.953857 -0.851474 -0.491151 0.183746 -0.534369 0.811207 0.237473 -0.286241 0.090676 -0.953857 -0.795309 -0.577686 0.183746 -0.616446 0.750734 0.237473 -0.294168 0.060176 -0.953857 -0.730383 -0.657859 0.183746 -0.691733 0.681991 0.237473 -0.298855 0.029014 -0.953857 -0.657412 -0.730785 0.183746 -0.758795 0.606495 0.237473 -0.300252 -0.002168 -0.953857 -0.577995 -0.795084 0.183746 -0.818181 0.523628 0.237473 -0.298371 -0.033624 -0.953857 -0.491482 -0.851283 0.183746 -0.868555 0.434993 0.237473 -0.293204 -0.064711 -0.953857 -0.399554 -0.898106 0.183746 -0.909020 0.342476 0.237473 -0.284902 -0.094799 -0.953857 -0.304161 -0.934732 0.183746 -0.939907 0.245318 0.237473 -0.273397 -0.124137 -0.953857 -0.204519 -0.961462 0.183746 -0.960442 0.145458 0.237473 -0.258881 -0.152107 -0.953857 -0.102625 -0.977602 0.183746 -0.970361 0.044786 0.237473 -0.241659 -0.178205 -0.953857 -0.000400 -0.982974 0.183746 -0.969711 -0.057162 0.237473 -0.221651 -0.202551 -0.953857 0.102625 -0.977602 0.183746 -0.958379 -0.158480 0.237473 -0.199201 -0.224666 -0.953857 0.204519 -0.961462 0.183746 -0.936491 -0.258052 0.237473 -0.174557 -0.244307 -0.953857 0.304161 -0.934732 0.183746 -0.904642 -0.353877 0.237473 -0.148252 -0.261108 -0.953857 0.399554 -0.898106 0.183746 -0.862571 -0.446741 0.237473 -0.120070 -0.275208 -0.953857 0.491482 -0.851283 0.183746 -0.810999 -0.534684 0.237473 -0.090565 -0.286276 -0.953857 0.577995 -0.795084 0.183746 -0.751110 -0.615987 0.237473 -0.060356 -0.294131 -0.953857 0.657412 -0.730785 0.183746 -0.682413 -0.691317 0.237473 -0.029197 -0.298837 -0.953857 0.730383 -0.657859 0.183746 -0.606200 -0.759031 0.237473 0.002284 -0.300251 -0.953857 0.795309 -0.577686 0.183746 -0.523310 -0.818385 0.237473 0.033740 -0.298358 -0.953857 0.851474 -0.491151 0.183746 -0.435524 -0.868289 0.237473 0.064531 -0.293243 -0.953857 0.897861 -0.400103 0.183746 -0.342122 -0.909153 0.237473 0.094910 -0.284865 -0.953857 0.934850 -0.303797 0.183746 -0.244952 -0.940003 0.237473 0.124243 -0.273349 -0.953857 0.961542 -0.204145 0.183746 -0.146044 -0.960353 0.237473 0.151949 -0.258974 -0.953857 0.977539 -0.103222 0.183746 -0.044588 -0.970370 0.237473 0.178254 -0.241622 -0.953857 0.982974 -0.000200 0.183746 0.057359 -0.969699 0.237473 0.202596 -0.221609 -0.953857 0.977581 0.102824 0.183746 0.158675 -0.958347 0.237473 0.224707 -0.199155 -0.953857 0.961420 0.204715 0.183746 0.257306 -0.936697 0.237473 0.244168 -0.174752 -0.953857 0.934974 0.303416 0.183746 0.354061 -0.904570 0.237473 0.261138 -0.148199 -0.953857 0.898024 0.399737 0.183746 0.446917 -0.862480 0.237473 0.275232 -0.120014 -0.953857 0.851183 0.491655 0.183746 0.534850 -0.810890 0.237473 0.286295 -0.090506 -0.953857 0.794966 0.578157 0.183746 0.616140 -0.750985 0.237473 0.294143 -0.060296 -0.953857 0.730651 0.657561 0.183746 0.691455 -0.682273 0.237473 0.298843 -0.029136 -0.953857 0.657710 0.730517 0.183746 0.759154 -0.606046 0.237473 0.300251 0.002346 -0.953857 0.577524 0.795426 0.183746 0.817968 -0.523961 0.237473 0.298385 0.033503 -0.953857 0.491828 0.851083 0.183746 0.868378 -0.435347 0.237473 0.293230 0.064591 -0.953857 0.399920 0.897943 0.183746 0.909223 -0.341937 0.237473 0.284846 0.094968 -0.953857 0.303607 0.934912 0.183746 0.940053 -0.244761 0.237473 0.273324 0.124299 -0.953857 0.203949 0.961583 0.183746 0.960383 -0.145849 0.237473 0.258943 0.152002 -0.953857 0.103023 0.977560 0.183746 0.970379 -0.044391 0.237473 0.241586 0.178304 -0.953857 0.000000 0.982974 0.183746 0.969688 0.057557 0.237473 0.221568 0.202642 -0.953857 -0.103023 0.977560 0.183746 0.958473 0.157911 0.237473 0.199334 0.224548 -0.953857 -0.203949 0.961583 0.183746 0.936644 0.257497 0.237473 0.174702 0.244203 -0.953857 -0.303607 0.934912 0.183746 0.904498 0.354246 0.237473 0.148146 0.261168 -0.953857 -0.399920 0.897943 0.183746 0.862389 0.447092 0.237473 0.119957 0.275257 -0.953857 -0.491828 0.851083 0.183746 0.811316 0.534204 0.237473 0.090734 0.286222 -0.953857 -0.577524 0.795426 0.183746 0.750859 0.616293 0.237473 0.060236 0.294156 -0.953857 -0.657710 0.730517 0.183746 0.682132 0.691594 0.237473 0.029075 0.298849 -0.953857 -0.730651 0.657561 0.183746 0.606650 0.758672 0.237473 -0.002106 0.300253 -0.953857 -0.794966 0.578157 0.183746 0.523795 0.818075 0.237473 -0.033563 0.298378 -0.953857 -0.851183 0.491655 0.183746 0.435170 0.868466 0.237473 -0.064651 0.293217 -0.953857 -0.898024 0.399737 0.183746 0.341752 0.909292 0.237473 -0.095026 0.284826 -0.953857 -0.934974 0.303416 0.183746 0.245509 0.939857 0.237473 -0.124081 0.273423 -0.953857 -0.961420 0.204715 0.183746 0.145653 0.960412 0.237473 -0.152054 0.258912 -0.953857 -0.977581 0.102824 0.183746 -0.070268 0.966888 0.245337 0.265487 0.255201 -0.929725 -0.961550 -0.000196 -0.274629 -0.171218 0.954198 0.245337 0.237278 0.281621 -0.929725 -0.956234 -0.100972 -0.274629 -0.269350 0.931268 0.245337 0.206760 0.304732 -0.929725 -0.940585 -0.199696 -0.274629 -0.365470 0.897909 0.245337 0.173684 0.324723 -0.929725 -0.914476 -0.297176 -0.274629 -0.457565 0.854660 0.245337 0.138694 0.341138 -0.929725 -0.878293 -0.391383 -0.274629 -0.543817 0.802541 0.245337 0.102530 0.353693 -0.929725 -0.832917 -0.480446 -0.274629 -0.624934 0.741126 0.245337 0.064896 0.362491 -0.929725 -0.777975 -0.565096 -0.274629 -0.699168 0.671546 0.245337 0.026547 0.367296 -0.929725 -0.714465 -0.643521 -0.274629 -0.765700 0.594570 0.245337 -0.012095 0.368056 -0.929725 -0.643084 -0.714858 -0.274629 -0.823287 0.511868 0.245337 -0.050238 0.364811 -0.929725 -0.565398 -0.777756 -0.274629 -0.872400 0.422763 0.245337 -0.088197 0.357537 -0.929725 -0.480770 -0.832730 -0.274629 -0.911904 0.329001 0.245337 -0.125183 0.346324 -0.929725 -0.390846 -0.878532 -0.274629 -0.941131 0.232556 0.245337 -0.160460 0.331457 -0.929725 -0.297532 -0.914360 -0.274629 -0.960321 0.132638 0.245337 -0.194315 0.312814 -0.929725 -0.200062 -0.940507 -0.274629 -0.968934 0.031259 0.245337 -0.226030 0.290726 -0.929725 -0.100388 -0.956296 -0.274629 -0.966931 -0.069677 0.245337 -0.255039 0.265643 -0.929725 -0.000392 -0.961550 -0.274629 -0.954303 -0.170634 0.245337 -0.281476 0.237450 -0.929725 0.100388 -0.956296 -0.274629 -0.931163 -0.269713 0.245337 -0.304812 0.206642 -0.929725 0.200062 -0.940507 -0.274629 -0.897767 -0.365820 0.245337 -0.324791 0.173557 -0.929725 0.297532 -0.914360 -0.274629 -0.854940 -0.457043 0.245337 -0.341053 0.138902 -0.929725 0.390846 -0.878532 -0.274629 -0.802330 -0.544129 0.245337 -0.353733 0.102392 -0.929725 0.480770 -0.832730 -0.274629 -0.740882 -0.625222 0.245337 -0.362516 0.064755 -0.929725 0.565398 -0.777756 -0.274629 -0.671973 -0.698757 0.245337 -0.367280 0.026771 -0.929725 0.643084 -0.714858 -0.274629 -0.595038 -0.765337 0.245337 -0.368063 -0.011870 -0.929725 0.714465 -0.643521 -0.274629 -0.511548 -0.823486 0.245337 -0.364792 -0.050380 -0.929725 0.777975 -0.565096 -0.274629 -0.422423 -0.872564 0.245337 -0.357502 -0.088336 -0.929725 0.832917 -0.480446 -0.274629 -0.329558 -0.911703 0.245337 -0.346400 -0.124972 -0.929725 0.878293 -0.391383 -0.274629 -0.232190 -0.941221 0.245337 -0.331395 -0.160589 -0.929725 0.914476 -0.297176 -0.274629 -0.132264 -0.960373 0.245337 -0.312739 -0.194437 -0.929725 0.940585 -0.199696 -0.274629 -0.031851 -0.968915 0.245337 -0.290864 -0.225852 -0.929725 0.956234 -0.100972 -0.274629 0.069874 -0.966916 0.245337 -0.265591 -0.255093 -0.929725 0.961550 -0.000196 -0.274629 0.170829 -0.954268 0.245337 -0.237393 -0.281524 -0.929725 0.956275 0.100583 -0.274629 0.269902 -0.931108 0.245337 -0.206580 -0.304854 -0.929725 0.940467 0.200253 -0.274629 0.365105 -0.898058 0.245337 -0.173816 -0.324653 -0.929725 0.914596 0.296804 -0.274629 0.457217 -0.854847 0.245337 -0.138833 -0.341082 -0.929725 0.878452 0.391025 -0.274629 0.544293 -0.802219 0.245337 -0.102320 -0.353754 -0.929725 0.832632 0.480940 -0.274629 0.625373 -0.740755 0.245337 -0.064681 -0.362529 -0.929725 0.777640 0.565557 -0.274629 0.698894 -0.671831 0.245337 -0.026696 -0.367285 -0.929725 0.714727 0.643230 -0.274629 0.765458 -0.594882 0.245337 0.011945 -0.368060 -0.929725 0.643375 0.714596 -0.274629 0.823590 -0.511380 0.245337 0.050455 -0.364781 -0.929725 0.564937 0.778091 -0.274629 0.872228 -0.423118 0.245337 0.088051 -0.357573 -0.929725 0.481109 0.832534 -0.274629 0.911770 -0.329372 0.245337 0.125042 -0.346375 -0.929725 0.391204 0.878373 -0.274629 0.941269 -0.231998 0.245337 0.160656 -0.331362 -0.929725 0.296990 0.914536 -0.274629 0.960400 -0.132069 0.245337 0.194500 -0.312699 -0.929725 0.199504 0.940626 -0.274629 0.968921 -0.031653 0.245337 0.225912 -0.290818 -0.929725 0.100777 0.956255 -0.274629 0.966902 0.070071 0.245337 0.255147 -0.265539 -0.929725 0.000000 0.961550 -0.274629 0.954233 0.171023 0.245337 0.281572 -0.237336 -0.929725 -0.100777 0.956255 -0.274629 0.931323 0.269161 0.245337 0.304689 -0.206822 -0.929725 -0.199504 0.940626 -0.274629 0.897984 0.365287 0.245337 0.324688 -0.173750 -0.929725 -0.296990 0.914536 -0.274629 0.854753 0.457391 0.245337 0.341110 -0.138763 -0.929725 -0.391204 0.878373 -0.274629 0.802108 0.544456 0.245337 0.353775 -0.102248 -0.929725 -0.481109 0.832534 -0.274629 0.741253 0.624783 0.245337 0.362478 -0.064969 -0.929725 -0.564937 0.778091 -0.274629 0.671689 0.699031 0.245337 0.367291 -0.026621 -0.929725 -0.643375 0.714596 -0.274629 0.594726 0.765579 0.245337 0.368058 0.012020 -0.929725 -0.714727 0.643230 -0.274629 0.512036 0.823182 0.245337 0.364822 0.050164 -0.929725 -0.777640 0.565557 -0.274629 0.422940 0.872314 0.245337 0.357555 0.088124 -0.929725 -0.832632 0.480940 -0.274629 0.329186 0.911837 0.245337 0.346350 0.125113 -0.929725 -0.878452 0.391025 -0.274629 0.231806 0.941316 0.245337 0.331329 0.160724 -0.929725 -0.914596 0.296804 -0.274629 0.132833 0.960294 0.245337 0.312854 0.194251 -0.929725 -0.940467 0.200253 -0.274629 0.031456 0.968927 0.245337 0.290772 0.225971 -0.929725 -0.956275 0.100583 -0.274629 -0.199632 -0.515209 0.833491 -0.120230 0.857065 0.500984 -0.972467 -0.000198 -0.233041 -0.144535 -0.533294 0.833491 -0.209394 0.839744 0.500984 -0.967090 -0.102118 -0.233041 -0.088391 -0.545417 0.833491 -0.295439 0.813469 0.500984 -0.951264 -0.201963 -0.233041 -0.030741 -0.551677 0.833491 -0.379069 0.778024 0.500984 -0.924858 -0.300550 -0.233041 0.027248 -0.551861 0.833491 -0.458524 0.734010 0.500984 -0.888264 -0.395826 -0.233041 0.084391 -0.546050 0.833491 -0.532246 0.682444 0.500984 -0.842373 -0.485901 -0.233041 0.141156 -0.534198 0.833491 -0.600840 0.622902 0.500984 -0.786808 -0.571511 -0.233041 0.196367 -0.516462 0.833491 -0.662815 0.556499 0.500984 -0.722576 -0.650827 -0.233041 0.249414 -0.493037 0.833491 -0.717490 0.483967 0.500984 -0.650385 -0.722974 -0.233041 0.299250 -0.464481 0.833491 -0.763855 0.406867 0.500984 -0.571817 -0.786586 -0.233041 0.346283 -0.430559 0.833491 -0.802291 0.324569 0.500984 -0.486228 -0.842184 -0.233041 0.389501 -0.391895 0.833491 -0.831889 0.238695 0.500984 -0.395283 -0.888506 -0.233041 0.428080 -0.349342 0.833491 -0.852174 0.151045 0.500984 -0.300910 -0.924741 -0.233041 0.462336 -0.302553 0.833491 -0.863311 0.060899 0.500984 -0.202333 -0.951185 -0.233041 0.491500 -0.252430 0.833491 -0.864939 -0.029917 0.500984 -0.101528 -0.967153 -0.233041 0.515087 -0.199947 0.833491 -0.857138 -0.119706 0.500984 -0.000396 -0.972467 -0.233041 0.533206 -0.144861 0.833491 -0.839871 -0.208881 0.500984 0.101528 -0.967153 -0.233041 0.545452 -0.088179 0.833491 -0.813354 -0.295755 0.500984 0.202333 -0.951185 -0.233041 0.551689 -0.030526 0.833491 -0.777877 -0.379372 0.500984 0.300910 -0.924741 -0.233041 0.551877 0.026911 0.833491 -0.734290 -0.458075 0.500984 0.395283 -0.888506 -0.233041 0.546018 0.084603 0.833491 -0.682237 -0.532511 0.500984 0.486228 -0.842184 -0.233041 0.534143 0.141364 0.833491 -0.622668 -0.601082 0.500984 0.571817 -0.786586 -0.233041 0.516582 0.196051 0.833491 -0.556904 -0.662475 0.500984 0.650385 -0.722974 -0.233041 0.493189 0.249113 0.833491 -0.484405 -0.717194 0.500984 0.722576 -0.650827 -0.233041 0.464364 0.299431 0.833491 -0.406570 -0.764013 0.500984 0.786808 -0.571511 -0.233041 0.430424 0.346450 0.833491 -0.324257 -0.802417 0.500984 0.842373 -0.485901 -0.233041 0.392133 0.389262 0.833491 -0.239204 -0.831743 0.500984 0.888264 -0.395826 -0.233041 0.349176 0.428216 0.833491 -0.150714 -0.852233 0.500984 0.924858 -0.300550 -0.233041 0.302373 0.462454 0.833491 -0.060563 -0.863335 0.500984 0.951264 -0.201963 -0.233041 0.252730 0.491345 0.833491 0.029389 -0.864958 0.500984 0.967090 -0.102118 -0.233041 0.199842 0.515127 0.833491 0.119881 -0.857114 0.500984 0.972467 -0.000198 -0.233041 0.144752 0.533235 0.833491 0.209052 -0.839829 0.500984 0.967132 0.101725 -0.233041 0.088068 0.545469 0.833491 0.295921 -0.813293 0.500984 0.951144 0.202527 -0.233041 0.030966 0.551665 0.833491 0.378752 -0.778179 0.500984 0.924980 0.300173 -0.233041 -0.027023 0.551872 0.833491 0.458225 -0.734197 0.500984 0.888425 0.395465 -0.233041 -0.084715 0.546000 0.833491 0.532650 -0.682128 0.500984 0.842085 0.486400 -0.233041 -0.141473 0.534115 0.833491 0.601209 -0.622546 0.500984 0.786469 0.571978 -0.233041 -0.196156 0.516542 0.833491 0.662588 -0.556769 0.500984 0.722841 0.650532 -0.233041 -0.249213 0.493139 0.833491 0.717293 -0.484259 0.500984 0.650680 0.722709 -0.233041 -0.299525 0.464303 0.833491 0.764096 -0.406414 0.500984 0.571351 0.786924 -0.233041 -0.346107 0.430700 0.833491 0.802158 -0.324896 0.500984 0.486571 0.841986 -0.233041 -0.389342 0.392054 0.833491 0.831792 -0.239034 0.500984 0.395645 0.888345 -0.233041 -0.428287 0.349089 0.833491 0.852263 -0.150540 0.500984 0.300362 0.924919 -0.233041 -0.462516 0.302278 0.833491 0.863347 -0.060388 0.500984 0.201769 0.951305 -0.233041 -0.491397 0.252630 0.833491 0.864951 0.029565 0.500984 0.101921 0.967111 -0.233041 -0.515168 0.199737 0.833491 0.857089 0.120055 0.500984 0.000000 0.972467 -0.233041 -0.533265 0.144644 0.833491 0.839786 0.209223 0.500984 -0.101921 0.967111 -0.233041 -0.545399 0.088502 0.833491 0.813529 0.295273 0.500984 -0.201769 0.951305 -0.233041 -0.551671 0.030853 0.833491 0.778102 0.378911 0.500984 -0.300362 0.924919 -0.233041 -0.551866 -0.027136 0.833491 0.734104 0.458374 0.500984 -0.395645 0.888345 -0.233041 -0.545983 -0.084826 0.833491 0.682020 0.532789 0.500984 -0.486571 0.841986 -0.233041 -0.534227 -0.141047 0.833491 0.623024 0.600713 0.500984 -0.571351 0.786924 -0.233041 -0.516502 -0.196261 0.833491 0.556634 0.662702 0.500984 -0.650680 0.722709 -0.233041 -0.493088 -0.249314 0.833491 0.484113 0.717391 0.500984 -0.722841 0.650532 -0.233041 -0.464542 -0.299155 0.833491 0.407023 0.763772 0.500984 -0.786469 0.571978 -0.233041 -0.430630 -0.346195 0.833491 0.324732 0.802225 0.500984 -0.842085 0.486400 -0.233041 -0.391974 -0.389421 0.833491 0.238865 0.831841 0.500984 -0.888425 0.395465 -0.233041 -0.349001 -0.428358 0.833491 0.150366 0.852294 0.500984 -0.924980 0.300173 -0.233041 -0.302647 -0.462275 0.833491 0.061075 0.863299 0.500984 -0.951144 0.202527 -0.233041 -0.252530 -0.491448 0.833491 -0.029741 0.864945 0.500984 -0.967132 0.101725 -0.233041 0.017636 0.961335 0.274817 -0.062303 0.275382 -0.959314 -0.997901 -0.000203 0.064751 -0.083216 0.957889 0.274817 -0.090822 0.267335 -0.959314 -0.992384 -0.104789 0.064751 -0.182207 0.944074 0.274817 -0.118084 0.256462 -0.959314 -0.976144 -0.207245 0.064751 -0.280149 0.919778 0.274817 -0.144313 0.242674 -0.959314 -0.949047 -0.308411 0.064751 -0.375006 0.885351 0.274817 -0.168952 0.226212 -0.959314 -0.911497 -0.406179 0.064751 -0.464890 0.841637 0.274817 -0.191523 0.207451 -0.959314 -0.864405 -0.498609 0.064751 -0.550539 0.788278 0.274817 -0.212210 0.186235 -0.959314 -0.807387 -0.586459 0.064751 -0.630124 0.726236 0.274817 -0.230560 0.162968 -0.959314 -0.741475 -0.667849 0.064751 -0.702769 0.656195 0.274817 -0.246371 0.137906 -0.959314 -0.667396 -0.741883 0.064751 -0.767093 0.579693 0.274817 -0.259356 0.111585 -0.959314 -0.586773 -0.807158 0.064751 -0.823624 0.496104 0.274817 -0.269623 0.083788 -0.959314 -0.498945 -0.864211 0.064751 -0.871083 0.407050 0.274817 -0.276919 0.055068 -0.959314 -0.405622 -0.911745 0.064751 -0.908634 0.314421 0.274817 -0.281140 0.026023 -0.959314 -0.308780 -0.948927 0.064751 -0.936583 0.217458 0.274817 -0.282319 -0.003586 -0.959314 -0.207625 -0.976063 0.064751 -0.954216 0.118100 0.274817 -0.280388 -0.033155 -0.959314 -0.104183 -0.992448 0.064751 -0.961324 0.018224 0.274817 -0.275420 -0.062135 -0.959314 -0.000406 -0.997901 0.064751 -0.957940 -0.082630 0.274817 -0.267391 -0.090659 -0.959314 0.104183 -0.992448 0.064751 -0.944003 -0.182574 0.274817 -0.256416 -0.118184 -0.959314 0.207625 -0.976063 0.064751 -0.919669 -0.280507 0.274817 -0.242618 -0.144407 -0.959314 0.308780 -0.948927 0.064751 -0.885580 -0.374465 0.274817 -0.226316 -0.168814 -0.959314 0.405622 -0.911745 0.064751 -0.841456 -0.465217 0.274817 -0.207376 -0.191604 -0.959314 0.498945 -0.864211 0.064751 -0.788064 -0.550846 0.274817 -0.186153 -0.212283 -0.959314 0.586773 -0.807158 0.064751 -0.726621 -0.629681 0.274817 -0.163109 -0.230461 -0.959314 0.667396 -0.741883 0.064751 -0.656624 -0.702368 0.274817 -0.138057 -0.246287 -0.959314 0.741475 -0.667849 0.064751 -0.579395 -0.767319 0.274817 -0.111484 -0.259400 -0.959314 0.807387 -0.586459 0.064751 -0.495783 -0.823817 0.274817 -0.083683 -0.269655 -0.959314 0.864405 -0.498609 0.064751 -0.407582 -0.870835 0.274817 -0.055237 -0.276886 -0.959314 0.911497 -0.406179 0.064751 -0.314067 -0.908756 0.274817 -0.025914 -0.281150 -0.959314 0.949047 -0.308411 0.064751 -0.217093 -0.936668 0.274817 0.003696 -0.282317 -0.959314 0.976144 -0.207245 0.064751 -0.118683 -0.954144 0.274817 0.032984 -0.280408 -0.959314 0.992384 -0.104789 0.064751 -0.018028 -0.961328 0.274817 0.062191 -0.275407 -0.959314 0.997901 -0.000203 0.064751 0.082826 -0.957923 0.274817 0.090713 -0.267372 -0.959314 0.992427 0.104385 0.064751 0.182767 -0.943966 0.274817 0.118236 -0.256392 -0.959314 0.976021 0.207824 0.064751 0.279775 -0.919892 0.274817 0.144214 -0.242733 -0.959314 0.949173 0.308024 0.064751 0.374645 -0.885504 0.274817 0.168860 -0.226281 -0.959314 0.911662 0.405808 0.064751 0.465389 -0.841361 0.274817 0.191646 -0.207337 -0.959314 0.864109 0.499121 0.064751 0.551006 -0.787952 0.274817 0.212321 -0.186109 -0.959314 0.807039 0.586937 0.064751 0.629829 -0.726493 0.274817 0.230494 -0.163062 -0.959314 0.741747 0.667547 0.064751 0.702502 -0.656481 0.274817 0.246315 -0.138007 -0.959314 0.667698 0.741611 0.064751 0.767437 -0.579238 0.274817 0.259422 -0.111431 -0.959314 0.586295 0.807506 0.064751 0.823422 -0.496439 0.274817 0.269589 -0.083898 -0.959314 0.499297 0.864008 0.064751 0.870918 -0.407404 0.274817 0.276897 -0.055181 -0.959314 0.405993 0.911579 0.064751 0.908820 -0.313882 0.274817 0.281155 -0.025856 -0.959314 0.308217 0.949110 0.064751 0.936712 -0.216903 0.274817 0.282317 0.003753 -0.959314 0.207046 0.976186 0.064751 0.954168 -0.118488 0.274817 0.280402 0.033041 -0.959314 0.104587 0.992406 0.064751 0.961331 -0.017832 0.274817 0.275394 0.062247 -0.959314 0.000000 0.997901 0.064751 0.957906 0.083021 0.274817 0.267354 0.090768 -0.959314 -0.104587 0.992406 0.064751 0.944111 0.182015 0.274817 0.256486 0.118032 -0.959314 -0.207046 0.976186 0.064751 0.919835 0.279962 0.274817 0.242703 0.144263 -0.959314 -0.308217 0.949110 0.064751 0.885427 0.374825 0.274817 0.226247 0.168906 -0.959314 -0.405993 0.911579 0.064751 0.841267 0.465560 0.274817 0.207298 0.191688 -0.959314 -0.499297 0.864008 0.064751 0.788390 0.550379 0.274817 0.186278 0.212172 -0.959314 -0.586295 0.807506 0.064751 0.726364 0.629977 0.274817 0.163015 0.230527 -0.959314 -0.667698 0.741611 0.064751 0.656338 0.702635 0.274817 0.137957 0.246343 -0.959314 -0.741747 0.667547 0.064751 0.579849 0.766975 0.274817 0.111638 0.259333 -0.959314 -0.807039 0.586937 0.064751 0.496271 0.823523 0.274817 0.083843 0.269606 -0.959314 -0.864109 0.499121 0.064751 0.407227 0.871001 0.274817 0.055125 0.276908 -0.959314 -0.911662 0.405808 0.064751 0.313697 0.908884 0.274817 0.025799 0.281161 -0.959314 -0.949173 0.308024 0.064751 0.217649 0.936539 0.274817 -0.003528 0.282320 -0.959314 -0.976021 0.207824 0.064751 0.118294 0.954192 0.274817 -0.033098 0.280395 -0.959314 -0.992427 0.104385 0.064751 -0.259527 0.856626 -0.445913 -0.430604 -0.515938 -0.740532 -0.864422 -0.000176 0.502767 -0.347878 0.824708 -0.445913 -0.374159 -0.558227 -0.740532 -0.859643 -0.090773 0.502767 -0.431613 0.784138 -0.445913 -0.314186 -0.594053 -0.740532 -0.845575 -0.179524 0.502767 -0.511420 0.734583 -0.445913 -0.250195 -0.623711 -0.740532 -0.822103 -0.267158 0.502767 -0.585593 0.676937 -0.445913 -0.183447 -0.646498 -0.740532 -0.789575 -0.351849 0.502767 -0.652703 0.612487 -0.445913 -0.115342 -0.662049 -0.740532 -0.748782 -0.431915 0.502767 -0.713301 0.540706 -0.445913 -0.045319 -0.670491 -0.740532 -0.699391 -0.508014 0.502767 -0.766043 0.462969 -0.445913 0.025203 -0.671548 -0.740532 -0.642295 -0.578518 0.502767 -0.810346 0.380133 -0.445913 0.095447 -0.665208 -0.740532 -0.578125 -0.642649 0.502767 -0.845431 0.293954 -0.445913 0.163988 -0.651705 -0.740532 -0.508286 -0.699193 0.502767 -0.871583 0.203728 -0.445913 0.231389 -0.630929 -0.740532 -0.432207 -0.748614 0.502767 -0.888135 0.111258 -0.445913 0.296240 -0.603203 -0.740532 -0.351366 -0.789790 0.502767 -0.894886 0.018457 -0.445913 0.357260 -0.569190 -0.740532 -0.267478 -0.821999 0.502767 -0.891892 -0.075435 -0.445913 0.414947 -0.528612 -0.740532 -0.179853 -0.845505 0.502767 -0.879074 -0.168496 -0.445913 0.468064 -0.482212 -0.740532 -0.090248 -0.859698 0.502767 -0.856784 -0.259003 -0.445913 0.515675 -0.430919 -0.740532 -0.000352 -0.864422 0.502767 -0.824920 -0.347374 -0.445913 0.557998 -0.374500 -0.740532 0.090248 -0.859698 0.502767 -0.783970 -0.431919 -0.445913 0.594175 -0.313955 -0.740532 0.179853 -0.845505 0.502767 -0.734384 -0.511705 -0.445913 0.623808 -0.249952 -0.740532 0.267478 -0.821999 0.502767 -0.677294 -0.585179 -0.445913 0.646385 -0.183843 -0.740532 0.351366 -0.789790 0.502767 -0.612233 -0.652941 -0.445913 0.662094 -0.115084 -0.740532 0.432207 -0.748614 0.502767 -0.540429 -0.713512 -0.445913 0.670509 -0.045058 -0.740532 0.508286 -0.699193 0.502767 -0.463437 -0.765760 -0.445913 0.671564 0.024793 -0.740532 0.578125 -0.642649 0.502767 -0.380628 -0.810114 -0.445913 0.665266 0.095041 -0.740532 0.642295 -0.578518 0.502767 -0.293625 -0.845545 -0.445913 0.651642 0.164242 -0.740532 0.699391 -0.508014 0.502767 -0.203389 -0.871662 -0.445913 0.630839 0.231634 -0.740532 0.748782 -0.431915 0.502767 -0.111801 -0.888067 -0.445913 0.603384 0.295872 -0.740532 0.789575 -0.351849 0.502767 -0.018109 -0.894893 -0.445913 0.569051 0.357481 -0.740532 0.822103 -0.267158 0.502767 0.075782 -0.891863 -0.445913 0.528451 0.415153 -0.740532 0.845575 -0.179524 0.502767 0.167959 -0.879177 -0.445913 0.482497 0.467770 -0.740532 0.859643 -0.090773 0.502767 0.259178 -0.856731 -0.445913 0.430814 0.515763 -0.740532 0.864422 -0.000176 0.502767 0.347542 -0.824849 -0.445913 0.374386 0.558075 -0.740532 0.859680 0.090423 0.502767 0.432078 -0.783882 -0.445913 0.313834 0.594239 -0.740532 0.845468 0.180025 0.502767 0.511120 -0.734791 -0.445913 0.250449 0.623609 -0.740532 0.822211 0.266823 0.502767 0.585317 -0.677175 -0.445913 0.183711 0.646423 -0.740532 0.789718 0.351527 0.502767 0.653066 -0.612100 -0.445913 0.114949 0.662117 -0.740532 0.748526 0.432359 0.502767 0.713622 -0.540283 -0.445913 0.044922 0.670518 -0.740532 0.699089 0.508429 0.502767 0.765854 -0.463281 -0.445913 -0.024929 0.671558 -0.740532 0.642531 0.578256 0.502767 0.810192 -0.380463 -0.445913 -0.095176 0.665247 -0.740532 0.578387 0.642413 0.502767 0.845605 -0.293453 -0.445913 -0.164375 0.651608 -0.740532 0.507872 0.699494 0.502767 0.871500 -0.204083 -0.445913 -0.231132 0.631023 -0.740532 0.432511 0.748438 0.502767 0.888090 -0.111620 -0.445913 -0.295994 0.603324 -0.740532 0.351688 0.789646 0.502767 0.894897 -0.017927 -0.445913 -0.357597 0.568979 -0.740532 0.266990 0.822157 0.502767 0.891847 0.075963 -0.445913 -0.415261 0.528366 -0.740532 0.179352 0.845611 0.502767 0.879143 0.168138 -0.445913 -0.467868 0.482402 -0.740532 0.090598 0.859661 0.502767 0.856679 0.259352 -0.445913 -0.515850 0.430709 -0.740532 0.000000 0.864422 0.502767 0.824779 0.347710 -0.445913 -0.558151 0.374272 -0.740532 -0.090598 0.859661 0.502767 0.784226 0.431454 -0.445913 -0.593989 0.314307 -0.740532 -0.179352 0.845611 0.502767 0.734687 0.511270 -0.445913 -0.623660 0.250322 -0.740532 -0.266990 0.822157 0.502767 0.677056 0.585455 -0.445913 -0.646460 0.183579 -0.740532 -0.351688 0.789646 0.502767 0.611967 0.653191 -0.445913 -0.662140 0.114814 -0.740532 -0.432511 0.748438 0.502767 0.540851 0.713191 -0.445913 -0.670482 0.045456 -0.740532 -0.507872 0.699494 0.502767 0.463125 0.765949 -0.445913 -0.671553 -0.025066 -0.740532 -0.578387 0.642413 0.502767 0.380298 0.810269 -0.445913 -0.665228 -0.095312 -0.740532 -0.642531 0.578256 0.502767 0.294127 0.845371 -0.445913 -0.651739 -0.163856 -0.740532 -0.699089 0.508429 0.502767 0.203906 0.871541 -0.445913 -0.630976 -0.231260 -0.740532 -0.748526 0.432359 0.502767 0.111439 0.888112 -0.445913 -0.603263 -0.296117 -0.740532 -0.789718 0.351527 0.502767 0.017745 0.894901 -0.445913 -0.568906 -0.357713 -0.740532 -0.822211 0.266823 0.502767 -0.075253 0.891908 -0.445913 -0.528697 -0.414840 -0.740532 -0.845468 0.180025 0.502767 -0.168317 0.879108 -0.445913 -0.482307 -0.467966 -0.740532 -0.859680 0.090423 0.502767 -0.174801 0.908930 0.378537 0.380656 0.416948 -0.825382 -0.908045 -0.000185 -0.418873 -0.269101 0.885604 0.378537 0.334861 0.454548 -0.825382 -0.903024 -0.095354 -0.418873 -0.359584 0.852883 0.378537 0.285864 0.486854 -0.825382 -0.888246 -0.188584 -0.418873 -0.446991 0.810499 0.378537 0.233263 0.514134 -0.825382 -0.863590 -0.280640 -0.418873 -0.529476 0.759187 0.378537 0.178094 0.535750 -0.825382 -0.829420 -0.369604 -0.418873 -0.605428 0.700119 0.378537 0.121514 0.551343 -0.825382 -0.786569 -0.453712 -0.418873 -0.675471 0.632810 0.378537 0.063060 0.561042 -0.825382 -0.734685 -0.533651 -0.418873 -0.738074 0.558530 0.378537 0.003911 0.564562 -0.825382 -0.674708 -0.607712 -0.418873 -0.792547 0.478099 0.378537 -0.055280 0.561862 -0.825382 -0.607300 -0.675080 -0.418873 -0.837898 0.393239 0.378537 -0.113310 0.553088 -0.825382 -0.533937 -0.734477 -0.418873 -0.874497 0.303256 0.378537 -0.170653 0.538166 -0.825382 -0.454018 -0.786393 -0.418873 -0.901464 0.209932 0.378537 -0.226117 0.517316 -0.825382 -0.369098 -0.829646 -0.418873 -0.918387 0.115214 0.378537 -0.278599 0.491047 -0.825382 -0.280976 -0.863480 -0.418873 -0.925405 0.018326 0.378537 -0.328530 0.459144 -0.825382 -0.188929 -0.888173 -0.418873 -0.922229 -0.078764 0.378537 -0.374842 0.422183 -0.825382 -0.094802 -0.903083 -0.418873 -0.909037 -0.174246 0.378537 -0.416716 0.380911 -0.825382 -0.000370 -0.908045 -0.418873 -0.885768 -0.268560 0.378537 -0.454343 0.335138 -0.825382 0.094802 -0.903083 -0.418873 -0.852743 -0.359915 0.378537 -0.486965 0.285674 -0.825382 0.188929 -0.888173 -0.418873 -0.810325 -0.447307 0.378537 -0.514224 0.233063 -0.825382 0.280976 -0.863480 -0.418873 -0.759510 -0.529012 0.378537 -0.535641 0.178421 -0.825382 0.369098 -0.829646 -0.418873 -0.699883 -0.605700 0.378537 -0.551391 0.121299 -0.825382 0.454018 -0.786393 -0.418873 -0.632547 -0.675717 0.378537 -0.561067 0.062842 -0.825382 0.533937 -0.734477 -0.418873 -0.558981 -0.737733 0.378537 -0.564559 0.004256 -0.825382 0.607300 -0.675080 -0.418873 -0.478583 -0.792255 0.378537 -0.561896 -0.054937 -0.825382 0.674708 -0.607712 -0.418873 -0.392913 -0.838051 0.378537 -0.553043 -0.113525 -0.825382 0.734685 -0.533651 -0.418873 -0.302916 -0.874615 0.378537 -0.538099 -0.170863 -0.825382 0.786569 -0.453712 -0.418873 -0.210483 -0.901336 0.378537 -0.517454 -0.225801 -0.825382 0.829420 -0.369604 -0.418873 -0.114857 -0.918432 0.378537 -0.490939 -0.278790 -0.825382 0.863590 -0.280640 -0.418873 -0.017966 -0.925412 0.378537 -0.459016 -0.328709 -0.825382 0.888246 -0.188584 -0.418873 0.078200 -0.922277 0.378537 -0.422412 -0.374584 -0.825382 0.903024 -0.095354 -0.418873 0.174431 -0.909001 0.378537 -0.380826 -0.416793 -0.825382 0.908045 -0.000185 -0.418873 0.268740 -0.885713 0.378537 -0.335046 -0.454411 -0.825382 0.903063 0.094986 -0.418873 0.360089 -0.852670 0.378537 -0.285575 -0.487024 -0.825382 0.888134 0.189110 -0.418873 0.446661 -0.810681 0.378537 -0.233473 -0.514038 -0.825382 0.863704 0.280288 -0.418873 0.529166 -0.759403 0.378537 -0.178312 -0.535677 -0.825382 0.829571 0.369267 -0.418873 0.605843 -0.699760 0.378537 -0.121187 -0.551415 -0.825382 0.786300 0.454178 -0.418873 0.675846 -0.632409 0.378537 -0.062727 -0.561080 -0.825382 0.734369 0.534086 -0.418873 0.737846 -0.558831 0.378537 -0.004141 -0.564560 -0.825382 0.674956 0.607437 -0.418873 0.792352 -0.478422 0.378537 0.055051 -0.561885 -0.825382 0.607575 0.674832 -0.418873 0.838131 -0.392743 0.378537 0.113638 -0.553020 -0.825382 0.533501 0.734794 -0.418873 0.874374 -0.303612 0.378537 0.170434 -0.538235 -0.825382 0.454338 0.786208 -0.418873 0.901379 -0.210299 0.378537 0.225906 -0.517408 -0.825382 0.369435 0.829496 -0.418873 0.918455 -0.114670 0.378537 0.278890 -0.490882 -0.825382 0.280464 0.863647 -0.418873 0.925415 -0.017778 0.378537 0.328802 -0.458949 -0.825382 0.188403 0.888285 -0.418873 0.922261 0.078388 0.378537 0.374671 -0.422335 -0.825382 0.095170 0.903044 -0.418873 0.908966 0.174616 0.378537 0.416871 -0.380741 -0.825382 0.000000 0.908045 -0.418873 0.885659 0.268920 0.378537 0.454479 -0.334953 -0.825382 -0.095170 0.903044 -0.418873 0.852956 0.359410 0.378537 0.486796 -0.285963 -0.825382 -0.188403 0.888285 -0.418873 0.810590 0.446826 0.378537 0.514086 -0.233368 -0.825382 -0.280464 0.863647 -0.418873 0.759295 0.529321 0.378537 0.535713 -0.178203 -0.825382 -0.369435 0.829496 -0.418873 0.699636 0.605985 0.378537 0.551440 -0.121075 -0.825382 -0.454338 0.786208 -0.418873 0.632947 0.675342 0.378537 0.561029 -0.063174 -0.825382 -0.533501 0.734794 -0.418873 0.558681 0.737960 0.378537 0.564561 -0.004026 -0.825382 -0.607575 0.674832 -0.418873 0.478260 0.792450 0.378537 0.561873 0.055166 -0.825382 -0.674956 0.607437 -0.418873 0.393410 0.837817 0.378537 0.553111 0.113197 -0.825382 -0.734369 0.534086 -0.418873 0.303434 0.874435 0.378537 0.538201 0.170544 -0.825382 -0.786300 0.454178 -0.418873 0.210116 0.901422 0.378537 0.517362 0.226012 -0.825382 -0.829571 0.369267 -0.418873 0.114483 0.918479 0.378537 0.490825 0.278990 -0.825382 -0.863704 0.280288 -0.418873 0.018515 0.925401 0.378537 0.459211 0.328437 -0.825382 -0.888134 0.189110 -0.418873 -0.078576 0.922245 0.378537 0.422259 0.374757 -0.825382 -0.903063 0.094986 -0.418873 0.187069 -0.776532 -0.601667 -0.230257 -0.630077 0.741609 -0.954980 -0.000194 -0.296670 0.267425 -0.752649 -0.601667 -0.162952 -0.650740 0.741609 -0.949700 -0.100282 -0.296670 0.344115 -0.720821 -0.601667 -0.094516 -0.664140 0.741609 -0.934158 -0.198331 -0.296670 0.417767 -0.680785 -0.601667 -0.024389 -0.670389 0.741609 -0.908227 -0.295145 -0.296670 0.486817 -0.633251 -0.601667 0.046007 -0.669253 0.741609 -0.872292 -0.388709 -0.296670 0.549926 -0.579291 -0.601667 0.115235 -0.660861 0.741609 -0.827226 -0.477163 -0.296670 0.607611 -0.518465 -0.601667 0.183863 -0.645144 0.741609 -0.772660 -0.561234 -0.296670 0.658604 -0.451927 -0.601667 0.250466 -0.622320 0.741609 -0.709583 -0.639124 -0.296670 0.702342 -0.380412 -0.601667 0.314310 -0.592642 0.741609 -0.638690 -0.709973 -0.296670 0.738038 -0.305445 -0.601667 0.374136 -0.556811 0.741609 -0.561535 -0.772441 -0.296670 0.765987 -0.226411 -0.601667 0.430433 -0.514532 0.741609 -0.477485 -0.827040 -0.296670 0.785497 -0.144883 -0.601667 0.481989 -0.466586 0.741609 -0.388176 -0.872529 -0.296670 0.796294 -0.062556 -0.601667 0.527822 -0.414028 0.741609 -0.295499 -0.908112 -0.296670 0.798465 0.021246 -0.601667 0.568309 -0.356428 0.741609 -0.198695 -0.934081 -0.296670 0.791840 0.104814 -0.601667 0.602535 -0.294903 0.741609 -0.099702 -0.949761 -0.296670 0.776646 0.186595 -0.601667 0.629937 -0.230642 0.741609 -0.000389 -0.954980 -0.296670 0.752813 0.266965 -0.601667 0.650640 -0.163349 0.741609 0.099702 -0.949761 -0.296670 0.720687 0.344395 -0.601667 0.664177 -0.094258 0.741609 0.198695 -0.934081 -0.296670 0.680622 0.418032 -0.601667 0.670398 -0.024128 0.741609 0.295499 -0.908112 -0.296670 0.633548 0.486430 -0.601667 0.669281 0.045598 0.741609 0.388176 -0.872529 -0.296670 0.579077 0.550151 -0.601667 0.660816 0.115492 0.741609 0.477485 -0.827040 -0.296670 0.518228 0.607813 -0.601667 0.645072 0.184114 0.741609 0.561535 -0.772441 -0.296670 0.452330 0.658328 -0.601667 0.622473 0.250086 0.741609 0.638690 -0.709973 -0.296670 0.380841 0.702109 -0.601667 0.592834 0.313948 0.741609 0.709583 -0.639124 -0.296670 0.305157 0.738157 -0.601667 0.556665 0.374353 0.741609 0.772660 -0.561234 -0.296670 0.226113 0.766075 -0.601667 0.514365 0.430633 0.741609 0.827226 -0.477163 -0.296670 0.145363 0.785409 -0.601667 0.466880 0.481704 0.741609 0.872292 -0.388709 -0.296670 0.062246 0.796318 -0.601667 0.413823 0.527983 0.741609 0.908227 -0.295145 -0.296670 -0.021557 0.798456 -0.601667 0.356207 0.568447 0.741609 0.934158 -0.198331 -0.296670 -0.104330 0.791904 -0.601667 0.295271 0.602355 0.741609 0.949700 -0.100282 -0.296670 -0.186753 0.776608 -0.601667 0.230513 0.629984 0.741609 0.954980 -0.000194 -0.296670 -0.267119 0.752758 -0.601667 0.163217 0.650674 0.741609 0.949741 0.099895 -0.296670 -0.344542 0.720616 -0.601667 0.094123 0.664196 0.741609 0.934041 0.198885 -0.296670 -0.417489 0.680955 -0.601667 0.024662 0.670379 0.741609 0.908347 0.294775 -0.296670 -0.486559 0.633449 -0.601667 -0.045734 0.669271 0.741609 0.872450 0.388353 -0.296670 -0.550269 0.578965 -0.601667 -0.115627 0.660792 0.741609 0.826943 0.477653 -0.296670 -0.607918 0.518105 -0.601667 -0.184246 0.645034 0.741609 0.772327 0.561692 -0.296670 -0.658420 0.452196 -0.601667 -0.250213 0.622422 0.741609 0.709843 0.638835 -0.296670 -0.702187 0.380698 -0.601667 -0.314069 0.592770 0.741609 0.638979 0.709713 -0.296670 -0.738219 0.305007 -0.601667 -0.374466 0.556589 0.741609 0.561077 0.772774 -0.296670 -0.765894 0.226723 -0.601667 -0.430224 0.514707 0.741609 0.477822 0.826845 -0.296670 -0.785438 0.145203 -0.601667 -0.481799 0.466782 0.741609 0.388531 0.872371 -0.296670 -0.796331 0.062084 -0.601667 -0.528068 0.413715 0.741609 0.294960 0.908287 -0.296670 -0.798452 -0.021720 -0.601667 -0.568520 0.356091 0.741609 0.198141 0.934199 -0.296670 -0.791883 -0.104492 -0.601667 -0.602415 0.295148 0.741609 0.100089 0.949721 -0.296670 -0.776570 -0.186911 -0.601667 -0.630031 0.230385 0.741609 0.000000 0.954980 -0.296670 -0.752704 -0.267272 -0.601667 -0.650707 0.163084 0.741609 -0.100089 0.949721 -0.296670 -0.720891 -0.343968 -0.601667 -0.664121 0.094652 0.741609 -0.198141 0.934199 -0.296670 -0.680870 -0.417628 -0.601667 -0.670384 0.024526 0.741609 -0.294960 0.908287 -0.296670 -0.633350 -0.486688 -0.601667 -0.669262 -0.045870 0.741609 -0.388531 0.872371 -0.296670 -0.578853 -0.550387 -0.601667 -0.660769 -0.115761 0.741609 -0.477822 0.826845 -0.296670 -0.518588 -0.607506 -0.601667 -0.645181 -0.183732 0.741609 -0.561077 0.772774 -0.296670 -0.452061 -0.658512 -0.601667 -0.622371 -0.250339 0.741609 -0.638979 0.709713 -0.296670 -0.380555 -0.702264 -0.601667 -0.592706 -0.314190 0.741609 -0.709843 0.638835 -0.296670 -0.305595 -0.737976 -0.601667 -0.556887 -0.374022 0.741609 -0.772327 0.561692 -0.296670 -0.226567 -0.765940 -0.601667 -0.514620 -0.430328 0.741609 -0.826943 0.477653 -0.296670 -0.145043 -0.785468 -0.601667 -0.466684 -0.481894 0.741609 -0.872450 0.388353 -0.296670 -0.061921 -0.796344 -0.601667 -0.413608 -0.528152 0.741609 -0.908347 0.294775 -0.296670 0.021084 -0.798469 -0.601667 -0.356544 -0.568236 0.741609 -0.934041 0.198885 -0.296670 0.104653 -0.791862 -0.601667 -0.295025 -0.602475 0.741609 -0.949741 0.099895 -0.296670 0.058611 0.978664 -0.196931 0.280080 -0.205468 -0.937730 -0.958186 -0.000195 -0.286147 -0.044283 0.979417 -0.196931 0.300072 -0.174982 -0.937730 -0.952888 -0.100619 -0.286147 -0.145719 0.969528 -0.196931 0.316616 -0.142885 -0.937730 -0.937294 -0.198997 -0.286147 -0.246530 0.948916 -0.196931 0.329848 -0.108914 -0.937730 -0.911276 -0.296136 -0.286147 -0.344626 0.917852 -0.196931 0.339446 -0.073744 -0.937730 -0.875220 -0.390013 -0.286147 -0.438048 0.877116 -0.196931 0.345268 -0.038107 -0.937730 -0.830002 -0.478765 -0.286147 -0.527564 0.826375 -0.196931 0.347360 -0.001710 -0.937730 -0.775253 -0.563118 -0.286147 -0.611268 0.766531 -0.196931 0.345627 0.034705 -0.937730 -0.711965 -0.641269 -0.286147 -0.688239 0.698244 -0.196931 0.340086 0.070738 -0.937730 -0.640834 -0.712356 -0.286147 -0.757007 0.623023 -0.196931 0.330905 0.105661 -0.937730 -0.563420 -0.775034 -0.286147 -0.818135 0.540252 -0.196931 0.318008 0.139760 -0.937730 -0.479088 -0.829816 -0.286147 -0.870252 0.451530 -0.196931 0.301609 0.172320 -0.937730 -0.389478 -0.875458 -0.286147 -0.912424 0.358748 -0.196931 0.282090 0.202700 -0.937730 -0.296491 -0.911160 -0.286147 -0.944999 0.261143 -0.196931 0.259292 0.231148 -0.937730 -0.199362 -0.937216 -0.286147 -0.967164 0.160662 -0.196931 0.233638 0.257051 -0.937730 -0.100037 -0.952949 -0.286147 -0.978628 0.059209 -0.196931 0.205639 0.279955 -0.937730 -0.000390 -0.958186 -0.286147 -0.979444 -0.043684 -0.196931 0.175165 0.299966 -0.937730 0.100037 -0.952949 -0.286147 -0.969471 -0.146096 -0.196931 0.142762 0.316672 -0.937730 0.199362 -0.937216 -0.286147 -0.948820 -0.246899 -0.196931 0.108786 0.329890 -0.937730 0.296491 -0.911160 -0.286147 -0.918062 -0.344065 -0.196931 0.073952 0.339401 -0.937730 0.389478 -0.875458 -0.286147 -0.876945 -0.438389 -0.196931 0.037973 0.345283 -0.937730 0.479088 -0.829816 -0.286147 -0.826169 -0.527885 -0.196931 0.001575 0.347361 -0.937730 0.563420 -0.775034 -0.286147 -0.766904 -0.610800 -0.196931 -0.034494 0.345648 -0.937730 0.640834 -0.712356 -0.286147 -0.698664 -0.687813 -0.196931 -0.070530 0.340129 -0.937730 0.711965 -0.641269 -0.286147 -0.622729 -0.757250 -0.196931 -0.105790 0.330864 -0.937730 0.775253 -0.563118 -0.286147 -0.539934 -0.818346 -0.196931 -0.139884 0.317954 -0.937730 0.830002 -0.478765 -0.286147 -0.452062 -0.869976 -0.196931 -0.172136 0.301714 -0.937730 0.875220 -0.390013 -0.286147 -0.358393 -0.912564 -0.196931 -0.202809 0.282011 -0.937730 0.911276 -0.296136 -0.286147 -0.260776 -0.945100 -0.196931 -0.231249 0.259202 -0.937730 0.937294 -0.198997 -0.286147 -0.161253 -0.967065 -0.196931 -0.256908 0.233795 -0.937730 0.952888 -0.100619 -0.286147 -0.059010 -0.978640 -0.196931 -0.279997 0.205582 -0.937730 0.958186 -0.000195 -0.286147 0.043884 -0.979435 -0.196931 -0.300001 0.175104 -0.937730 0.952929 0.100231 -0.286147 0.146294 -0.969441 -0.196931 -0.316701 0.142697 -0.937730 0.937176 0.199552 -0.286147 0.246144 -0.949016 -0.196931 -0.329804 0.109049 -0.937730 0.911396 0.295765 -0.286147 0.344252 -0.917992 -0.196931 -0.339416 0.073882 -0.937730 0.875378 0.389657 -0.286147 0.438568 -0.876856 -0.196931 -0.345290 0.037902 -0.937730 0.829718 0.479257 -0.286147 0.528053 -0.826062 -0.196931 -0.347361 0.001505 -0.937730 0.774919 0.563578 -0.286147 0.610956 -0.766780 -0.196931 -0.345641 -0.034564 -0.937730 0.712226 0.640979 -0.286147 0.687955 -0.698524 -0.196931 -0.340114 -0.070599 -0.937730 0.641124 0.712095 -0.286147 0.757376 -0.622575 -0.196931 -0.330842 -0.105857 -0.937730 0.562960 0.775368 -0.286147 0.817915 -0.540585 -0.196931 -0.318065 -0.139631 -0.937730 0.479426 0.829621 -0.286147 0.870068 -0.451885 -0.196931 -0.301679 -0.172197 -0.937730 0.389835 0.875299 -0.286147 0.912637 -0.358207 -0.196931 -0.281970 -0.202867 -0.937730 0.295951 0.911336 -0.286147 0.945153 -0.260583 -0.196931 -0.259155 -0.231302 -0.937730 0.198806 0.937334 -0.286147 0.967098 -0.161056 -0.196931 -0.233743 -0.256956 -0.937730 0.100425 0.952908 -0.286147 0.978652 -0.058810 -0.196931 -0.205525 -0.280039 -0.937730 0.000000 0.958186 -0.286147 0.979426 0.044083 -0.196931 -0.175043 -0.300037 -0.937730 -0.100425 0.952908 -0.286147 0.969557 0.145522 -0.196931 -0.142950 -0.316587 -0.937730 -0.198806 0.937334 -0.286147 0.948966 0.246337 -0.196931 -0.108982 -0.329826 -0.937730 -0.295951 0.911336 -0.286147 0.917922 0.344439 -0.196931 -0.073813 -0.339431 -0.937730 -0.389835 0.875299 -0.286147 0.876767 0.438746 -0.196931 -0.037832 -0.345298 -0.937730 -0.479426 0.829621 -0.286147 0.826482 0.527395 -0.196931 -0.001781 -0.347360 -0.937730 -0.562960 0.775368 -0.286147 0.766655 0.611112 -0.196931 0.034634 -0.345634 -0.937730 -0.641124 0.712095 -0.286147 0.698384 0.688097 -0.196931 0.070669 -0.340100 -0.937730 -0.712226 0.640979 -0.286147 0.623177 0.756880 -0.196931 0.105593 -0.330926 -0.937730 -0.774919 0.563578 -0.286147 0.540419 0.818025 -0.196931 0.139695 -0.318037 -0.937730 -0.829718 0.479257 -0.286147 0.451708 0.870160 -0.196931 0.172258 -0.301644 -0.937730 -0.875378 0.389657 -0.286147 0.358021 0.912710 -0.196931 0.202924 -0.281929 -0.937730 -0.911396 0.295765 -0.286147 0.261336 0.944945 -0.196931 0.231096 -0.259339 -0.937730 -0.937176 0.199552 -0.286147 0.160859 0.967131 -0.196931 0.257003 -0.233691 -0.937730 -0.952929 0.100231 -0.286147 0.849908 -0.117756 -0.513605 -0.100728 -0.993043 0.060994 -0.517214 -0.000105 -0.855856 0.857569 -0.028031 -0.513605 0.003905 -0.998131 0.060994 -0.514355 -0.054313 -0.855856 0.855845 0.061147 -0.513605 0.107502 -0.992332 0.060994 -0.505937 -0.107416 -0.855856 0.844723 0.150509 -0.513605 0.210914 -0.975600 0.060994 -0.491893 -0.159850 -0.855856 0.824296 0.238213 -0.513605 0.312002 -0.948121 0.060994 -0.472430 -0.210523 -0.855856 0.795113 0.322499 -0.513605 0.408744 -0.910609 0.060994 -0.448023 -0.258430 -0.855856 0.756934 0.404056 -0.513605 0.501931 -0.862755 0.060994 -0.418470 -0.303963 -0.855856 0.710417 0.481163 -0.513605 0.589589 -0.805397 0.060994 -0.384308 -0.346147 -0.855856 0.656075 0.552970 -0.513605 0.670753 -0.739168 0.060994 -0.345912 -0.384519 -0.855856 0.595125 0.618091 -0.513605 0.743864 -0.665542 0.060994 -0.304125 -0.418352 -0.855856 0.527067 0.677060 -0.513605 0.809521 -0.583914 0.060994 -0.258604 -0.447922 -0.855856 0.453203 0.728572 -0.513605 0.866261 -0.495854 0.060994 -0.210235 -0.472559 -0.855856 0.375120 0.771683 -0.513605 0.913056 -0.403247 0.060994 -0.160041 -0.491830 -0.855856 0.292176 0.806748 -0.513605 0.950291 -0.305331 0.060994 -0.107612 -0.505895 -0.855856 0.206014 0.832927 -0.513605 0.977058 -0.204052 0.060994 -0.053998 -0.514388 -0.855856 0.118275 0.849836 -0.513605 0.992981 -0.101334 0.060994 -0.000211 -0.517214 -0.855856 0.028554 0.857552 -0.513605 0.998133 0.003295 0.060994 0.053998 -0.514388 -0.855856 -0.061480 0.855821 -0.513605 0.992290 0.107889 0.060994 0.107612 -0.505895 -0.855856 -0.150838 0.844664 -0.513605 0.975518 0.211294 0.060994 0.160041 -0.491830 -0.855856 -0.237710 0.824442 -0.513605 0.948312 0.311423 0.060994 0.210235 -0.472559 -0.855856 -0.322808 0.794987 -0.513605 0.910450 0.409098 0.060994 0.258604 -0.447922 -0.855856 -0.404350 0.756776 -0.513605 0.862559 0.502266 0.060994 0.304125 -0.418352 -0.855856 -0.480729 0.710711 -0.513605 0.805757 0.589097 0.060994 0.345912 -0.384519 -0.855856 -0.552569 0.656413 -0.513605 0.739578 0.670302 0.060994 0.384308 -0.346147 -0.855856 -0.618322 0.594884 -0.513605 0.665252 0.744123 0.060994 0.418470 -0.303963 -0.855856 -0.677265 0.526804 -0.513605 0.583599 0.809748 0.060994 0.448023 -0.258430 -0.855856 -0.728294 0.453649 -0.513605 0.496384 0.865958 0.060994 0.472430 -0.210523 -0.855856 -0.771829 0.374820 -0.513605 0.402891 0.913213 0.060994 0.491893 -0.159850 -0.855856 -0.806862 0.291862 -0.513605 0.304961 0.950410 0.060994 0.505937 -0.107416 -0.855856 -0.832801 0.206523 -0.513605 0.204649 0.976933 0.060994 0.514355 -0.054313 -0.855856 -0.849860 0.118102 -0.513605 0.101132 0.993002 0.060994 0.517214 -0.000105 -0.855856 -0.857557 0.028380 -0.513605 -0.003499 0.998132 0.060994 0.514377 0.054103 -0.855856 -0.855809 -0.061655 -0.513605 -0.108091 0.992268 0.060994 0.505873 0.107715 -0.855856 -0.844784 -0.150165 -0.513605 -0.210517 0.975686 0.060994 0.491958 0.159649 -0.855856 -0.824393 -0.237878 -0.513605 -0.311616 0.948248 0.060994 0.472516 0.210331 -0.855856 -0.794922 -0.322970 -0.513605 -0.409283 0.910366 0.060994 0.447869 0.258695 -0.855856 -0.756694 -0.404505 -0.513605 -0.502442 0.862457 0.060994 0.418290 0.304211 -0.855856 -0.710613 -0.480873 -0.513605 -0.589261 0.805637 0.060994 0.384449 0.345991 -0.855856 -0.656300 -0.552702 -0.513605 -0.670452 0.739441 0.060994 0.346069 0.384378 -0.855856 -0.594759 -0.618443 -0.513605 -0.744259 0.665101 0.060994 0.303878 0.418532 -0.855856 -0.527343 -0.676845 -0.513605 -0.809283 0.584244 0.060994 0.258787 0.447817 -0.855856 -0.453500 -0.728387 -0.513605 -0.866059 0.496207 0.060994 0.210427 0.472473 -0.855856 -0.374662 -0.771905 -0.513605 -0.913295 0.402705 0.060994 0.159750 0.491925 -0.855856 -0.291698 -0.806921 -0.513605 -0.950472 0.304768 0.060994 0.107312 0.505959 -0.855856 -0.206353 -0.832844 -0.513605 -0.976975 0.204450 0.060994 0.054208 0.514366 -0.855856 -0.117929 -0.849884 -0.513605 -0.993022 0.100930 0.060994 0.000000 0.517214 -0.855856 -0.028205 -0.857563 -0.513605 -0.998131 -0.003702 0.060994 -0.054208 0.514366 -0.855856 0.060973 -0.855858 -0.513605 -0.992354 -0.107300 0.060994 -0.107312 0.505959 -0.855856 0.150337 -0.844754 -0.513605 -0.975643 -0.210715 0.060994 -0.159750 0.491925 -0.855856 0.238046 -0.824345 -0.513605 -0.948185 -0.311809 0.060994 -0.210427 0.472473 -0.855856 0.323132 -0.794856 -0.513605 -0.910283 -0.409468 0.060994 -0.258787 0.447817 -0.855856 0.403902 -0.757016 -0.513605 -0.862857 -0.501755 0.060994 -0.303878 0.418532 -0.855856 0.481018 -0.710515 -0.513605 -0.805517 -0.589425 0.060994 -0.346069 0.384378 -0.855856 0.552836 -0.656188 -0.513605 -0.739305 -0.670603 0.060994 -0.384449 0.345991 -0.855856 0.617970 -0.595251 -0.513605 -0.665693 -0.743729 0.060994 -0.418290 0.304211 -0.855856 0.676953 -0.527205 -0.513605 -0.584079 -0.809402 0.060994 -0.447869 0.258695 -0.855856 0.728479 -0.453352 -0.513605 -0.496031 -0.866160 0.060994 -0.472516 0.210331 -0.855856 0.771982 -0.374505 -0.513605 -0.402519 -0.913377 0.060994 -0.491958 0.159649 -0.855856 0.806689 -0.292340 -0.513605 -0.305524 -0.950229 0.060994 -0.505873 0.107715 -0.855856 0.832886 -0.206183 -0.513605 -0.204251 -0.977017 0.060994 -0.514377 0.054103 -0.855856 -0.149618 -0.160537 0.975624 -0.024536 0.987030 0.158651 -0.988439 -0.000201 -0.151617 -0.131969 -0.175334 0.975624 -0.127849 0.979022 0.158651 -0.982974 -0.103796 -0.151617 -0.113054 -0.188086 0.975624 -0.228793 0.960460 0.158651 -0.966888 -0.205280 -0.151617 -0.092719 -0.198899 0.975624 -0.328196 0.931191 0.158651 -0.940048 -0.305486 -0.151617 -0.071362 -0.207522 0.975624 -0.423984 0.891665 0.158651 -0.902854 -0.402328 -0.151617 -0.049433 -0.213809 0.975624 -0.514260 0.842833 0.158651 -0.856209 -0.493882 -0.151617 -0.026752 -0.217812 0.975624 -0.599762 0.784293 0.158651 -0.799731 -0.580898 -0.151617 -0.003776 -0.219416 0.975624 -0.678658 0.717114 0.158651 -0.734444 -0.661516 -0.151617 0.019241 -0.218604 0.975624 -0.750080 0.642036 0.158651 -0.661068 -0.734848 -0.151617 0.041831 -0.215425 0.975624 -0.812678 0.560699 0.158651 -0.581209 -0.799505 -0.151617 0.064178 -0.209854 0.975624 -0.866968 0.472437 0.158651 -0.494214 -0.856017 -0.151617 0.085819 -0.201972 0.975624 -0.911708 0.378971 0.158651 -0.401776 -0.903099 -0.151617 0.106323 -0.191972 0.975624 -0.946124 0.282276 0.158651 -0.305852 -0.939929 -0.151617 0.125857 -0.179771 0.975624 -0.970498 0.181561 0.158651 -0.205656 -0.966808 -0.151617 0.144005 -0.165590 0.975624 -0.984182 0.078846 0.158651 -0.103195 -0.983038 -0.151617 0.160445 -0.149716 0.975624 -0.987045 -0.023933 0.158651 -0.000403 -0.988439 -0.151617 0.175253 -0.132076 0.975624 -0.979100 -0.127251 0.158651 0.103195 -0.983038 -0.151617 0.188130 -0.112981 0.975624 -0.960371 -0.229167 0.158651 0.205656 -0.966808 -0.151617 0.198936 -0.092641 0.975624 -0.931063 -0.328559 0.158651 0.305852 -0.939929 -0.151617 0.207478 -0.071489 0.975624 -0.891924 -0.423439 0.158651 0.401776 -0.903099 -0.151617 0.213828 -0.049350 0.975624 -0.842633 -0.514587 0.158651 0.494214 -0.856017 -0.151617 0.217822 -0.026667 0.975624 -0.784059 -0.600067 0.158651 0.581209 -0.799505 -0.151617 0.219414 -0.003910 0.975624 -0.717528 -0.678220 0.158651 0.661068 -0.734848 -0.151617 0.218615 0.019107 0.975624 -0.642494 -0.749687 0.158651 0.734444 -0.661516 -0.151617 0.215409 0.041915 0.975624 -0.560383 -0.812896 0.158651 0.799731 -0.580898 -0.151617 0.209829 0.064260 0.975624 -0.472100 -0.867151 0.158651 0.856209 -0.493882 -0.151617 0.202025 0.085696 0.975624 -0.379528 -0.911476 0.158651 0.902854 -0.402328 -0.151617 0.191930 0.106397 0.975624 -0.281908 -0.946233 0.158651 0.940048 -0.305486 -0.151617 0.179722 0.125927 0.975624 -0.181183 -0.970568 0.158651 0.966888 -0.205280 -0.151617 0.165678 0.143904 0.975624 -0.079447 -0.984133 0.158651 0.982974 -0.103796 -0.151617 0.149684 0.160476 0.975624 0.024134 -0.987040 0.158651 0.988439 -0.000201 -0.151617 0.132040 0.175280 0.975624 0.127450 -0.979074 0.158651 0.983017 0.103395 -0.151617 0.112942 0.188153 0.975624 0.229362 -0.960324 0.158651 0.966766 0.205853 -0.151617 0.092800 0.198862 0.975624 0.327817 -0.931325 0.158651 0.940172 0.305103 -0.151617 0.071446 0.207493 0.975624 0.423621 -0.891838 0.158651 0.903018 0.401960 -0.151617 0.049306 0.213838 0.975624 0.514759 -0.842528 0.158651 0.855916 0.494389 -0.151617 0.026623 0.217828 0.975624 0.600227 -0.783937 0.158651 0.799387 0.581372 -0.151617 0.003866 0.219415 0.975624 0.678366 -0.717390 0.158651 0.734714 0.661217 -0.151617 -0.019152 0.218611 0.975624 0.749818 -0.642342 0.158651 0.661367 0.734579 -0.151617 -0.041958 0.215400 0.975624 0.813010 -0.560218 0.158651 0.580735 0.799849 -0.151617 -0.064093 0.209881 0.975624 0.866775 -0.472790 0.158651 0.494563 0.855815 -0.151617 -0.085737 0.202007 0.975624 0.911553 -0.379342 0.158651 0.402144 0.902936 -0.151617 -0.106436 0.191909 0.975624 0.946291 -0.281715 0.158651 0.305295 0.940110 -0.151617 -0.125964 0.179697 0.975624 0.970605 -0.180986 0.158651 0.205083 0.966930 -0.151617 -0.143938 0.165649 0.975624 0.984149 -0.079247 0.158651 0.103596 0.982996 -0.151617 -0.160506 0.149651 0.975624 0.987035 0.024335 0.158651 0.000000 0.988439 -0.151617 -0.175307 0.132005 0.975624 0.979048 0.127650 0.158651 -0.103596 0.982996 -0.151617 -0.188063 0.113092 0.975624 0.960507 0.228598 0.158651 -0.205083 0.966930 -0.151617 -0.198881 0.092759 0.975624 0.931258 0.328007 0.158651 -0.305295 0.940110 -0.151617 -0.207507 0.071404 0.975624 0.891752 0.423803 0.158651 -0.402144 0.902936 -0.151617 -0.213848 0.049263 0.975624 0.842423 0.514931 0.158651 -0.494563 0.855815 -0.151617 -0.217807 0.026796 0.975624 0.784415 0.599602 0.158651 -0.580735 0.799849 -0.151617 -0.219415 0.003821 0.975624 0.717252 0.678513 0.158651 -0.661367 0.734579 -0.151617 -0.218607 -0.019196 0.975624 0.642189 0.749949 0.158651 -0.734714 0.661217 -0.151617 -0.215433 -0.041787 0.975624 0.560865 0.812564 0.158651 -0.799387 0.581372 -0.151617 -0.209867 -0.064136 0.975624 0.472613 0.866872 0.158651 -0.855916 0.494389 -0.151617 -0.201990 -0.085778 0.975624 0.379156 0.911631 0.158651 -0.903018 0.401960 -0.151617 -0.191887 -0.106476 0.975624 0.281523 0.946348 0.158651 -0.940172 0.305103 -0.151617 -0.179797 -0.125821 0.975624 0.181759 0.970461 0.158651 -0.966766 0.205853 -0.151617 -0.165620 -0.143972 0.975624 0.079046 0.984165 0.158651 -0.983017 0.103395 -0.151617 0.563069 -0.018088 -0.826212 -0.010047 -0.999836 0.015042 -0.826349 -0.000168 -0.563159 0.561864 0.041025 -0.826212 0.094798 -0.995383 0.015042 -0.821780 -0.086775 -0.563159 0.554569 0.099132 -0.826212 0.197619 -0.980163 0.015042 -0.808331 -0.171617 -0.563159 0.541125 0.156709 -0.826212 0.299259 -0.954053 0.015042 -0.785893 -0.255391 -0.563159 0.521721 0.212560 -0.826212 0.397602 -0.917435 0.015042 -0.754798 -0.336351 -0.563159 0.496835 0.265573 -0.826212 0.490695 -0.871201 0.015042 -0.715802 -0.412892 -0.563159 0.466265 0.316182 -0.826212 0.579301 -0.814975 0.015042 -0.668586 -0.485639 -0.563159 0.430559 0.363308 -0.826212 0.661526 -0.749772 0.015042 -0.614005 -0.553037 -0.563159 0.390111 0.406433 -0.826212 0.736464 -0.676310 0.015042 -0.552661 -0.614343 -0.563159 0.345810 0.444736 -0.826212 0.802694 -0.596201 0.015042 -0.485899 -0.668397 -0.563159 0.297294 0.478530 -0.826212 0.860760 -0.508789 0.015042 -0.413170 -0.715641 -0.563159 0.245503 0.507053 -0.826212 0.909344 -0.415774 0.015042 -0.335890 -0.755003 -0.563159 0.191538 0.529799 -0.826212 0.947593 -0.319126 0.015042 -0.255696 -0.785793 -0.563159 0.134957 0.546956 -0.826212 0.975821 -0.218054 0.015042 -0.171931 -0.808265 -0.563159 0.076888 0.558088 -0.826212 0.993300 -0.114580 0.015042 -0.086273 -0.821833 -0.563159 0.018432 0.563058 -0.826212 0.999830 -0.010658 0.015042 -0.000337 -0.826349 -0.563159 -0.040682 0.561889 -0.826212 0.995441 0.094190 0.015042 0.086273 -0.821833 -0.563159 -0.099348 0.554531 -0.826212 0.980087 0.198000 0.015042 0.171931 -0.808265 -0.563159 -0.156920 0.541064 -0.826212 0.953937 0.299630 0.015042 0.255696 -0.785793 -0.563159 -0.212241 0.521851 -0.826212 0.917677 0.397042 0.015042 0.335890 -0.755003 -0.563159 -0.265766 0.496732 -0.826212 0.871010 0.491034 0.015042 0.413170 -0.715641 -0.563159 -0.316363 0.466142 -0.826212 0.814749 0.579618 0.015042 0.485899 -0.668397 -0.563159 -0.363045 0.430781 -0.826212 0.750176 0.661068 0.015042 0.552661 -0.614343 -0.563159 -0.406195 0.390359 -0.826212 0.676759 0.736051 0.015042 0.614005 -0.553037 -0.563159 -0.444870 0.345637 -0.826212 0.595889 0.802926 0.015042 0.668586 -0.485639 -0.563159 -0.478645 0.297108 -0.826212 0.508455 0.860957 0.015042 0.715802 -0.412892 -0.563159 -0.506903 0.245813 -0.826212 0.416329 0.909090 0.015042 0.754798 -0.336351 -0.563159 -0.529874 0.191332 -0.826212 0.318757 0.947717 0.015042 0.785893 -0.255391 -0.563159 -0.547009 0.134744 -0.826212 0.217674 0.975906 0.015042 0.808331 -0.171617 -0.563159 -0.558041 0.077229 -0.826212 0.115187 0.993230 0.015042 0.821780 -0.086775 -0.563159 -0.563062 0.018317 -0.826212 0.010455 0.999832 0.015042 0.826349 -0.000168 -0.563159 -0.561881 -0.040796 -0.826212 -0.094393 0.995421 0.015042 0.821815 0.086440 -0.563159 -0.554510 -0.099461 -0.826212 -0.198200 0.980046 0.015042 0.808230 0.172096 -0.563159 -0.541189 -0.156489 -0.826212 -0.298870 0.954175 0.015042 0.785997 0.255071 -0.563159 -0.521807 -0.212347 -0.826212 -0.397229 0.917596 0.015042 0.754935 0.336044 -0.563159 -0.496678 -0.265867 -0.826212 -0.491212 0.870910 0.015042 0.715557 0.413316 -0.563159 -0.466078 -0.316458 -0.826212 -0.579784 0.814631 0.015042 0.668298 0.486035 -0.563159 -0.430707 -0.363133 -0.826212 -0.661220 0.750041 0.015042 0.614230 0.552787 -0.563159 -0.390276 -0.406274 -0.826212 -0.736188 0.676610 0.015042 0.552912 0.614118 -0.563159 -0.345546 -0.444940 -0.826212 -0.803047 0.595725 0.015042 0.485503 0.668685 -0.563159 -0.297489 -0.478408 -0.826212 -0.860552 0.509140 0.015042 0.413461 0.715473 -0.563159 -0.245710 -0.506953 -0.826212 -0.909174 0.416144 0.015042 0.336198 0.754866 -0.563159 -0.191224 -0.529913 -0.826212 -0.947782 0.318564 0.015042 0.255231 0.785945 -0.563159 -0.134632 -0.547036 -0.826212 -0.975950 0.217475 0.015042 0.171452 0.808366 -0.563159 -0.077116 -0.558057 -0.826212 -0.993253 0.114984 0.015042 0.086607 0.821798 -0.563159 -0.018203 -0.563066 -0.826212 -0.999834 0.010251 0.015042 0.000000 0.826349 -0.563159 0.040911 -0.561872 -0.826212 -0.995402 -0.094595 0.015042 -0.086607 0.821798 -0.563159 0.099019 -0.554589 -0.826212 -0.980204 -0.197419 0.015042 -0.171452 0.808366 -0.563159 0.156599 -0.541157 -0.826212 -0.954114 -0.299065 0.015042 -0.255231 0.785945 -0.563159 0.212454 -0.521764 -0.826212 -0.917515 -0.397416 0.015042 -0.336198 0.754866 -0.563159 0.265968 -0.496624 -0.826212 -0.870810 -0.491389 0.015042 -0.413461 0.715473 -0.563159 0.316087 -0.466330 -0.826212 -0.815093 -0.579135 0.015042 -0.485503 0.668685 -0.563159 0.363221 -0.430633 -0.826212 -0.749906 -0.661373 0.015042 -0.552912 0.614118 -0.563159 0.406354 -0.390193 -0.826212 -0.676460 -0.736326 0.015042 -0.614230 0.552787 -0.563159 0.444665 -0.345900 -0.826212 -0.596365 -0.802573 0.015042 -0.668298 0.486035 -0.563159 0.478469 -0.297391 -0.826212 -0.508965 -0.860656 0.015042 -0.715557 0.413316 -0.563159 0.507003 -0.245606 -0.826212 -0.415959 -0.909259 0.015042 -0.754935 0.336044 -0.563159 0.529952 -0.191116 -0.826212 -0.318371 -0.947847 0.015042 -0.785997 0.255071 -0.563159 0.546929 -0.135068 -0.826212 -0.218252 -0.975776 0.015042 -0.808230 0.172096 -0.563159 0.558073 -0.077002 -0.826212 -0.114782 -0.993277 0.015042 -0.821815 0.086440 -0.563159 0.644838 -0.254246 0.720793 0.169401 0.967140 0.189590 -0.745310 -0.000152 0.666718 0.667933 -0.185262 0.720793 0.067105 0.979568 0.189590 -0.741190 -0.078265 0.666718 0.683557 -0.114921 0.720793 -0.034949 0.981241 0.189590 -0.729060 -0.154787 0.666718 0.691837 -0.042646 0.720793 -0.137598 0.972174 0.189590 -0.708822 -0.230345 0.666718 0.692496 0.030098 0.720793 -0.238731 0.952399 0.189590 -0.680776 -0.303366 0.666718 0.685630 0.101825 0.720793 -0.336312 0.922469 0.189590 -0.645605 -0.372400 0.666718 0.671182 0.173123 0.720793 -0.431141 0.882141 0.189590 -0.603019 -0.438013 0.666718 0.649341 0.242514 0.720793 -0.521221 0.832096 0.189590 -0.553791 -0.498801 0.666718 0.620348 0.309234 0.720793 -0.605560 0.772886 0.189590 -0.498463 -0.554096 0.666718 0.584893 0.371964 0.720793 -0.682524 0.705845 0.189590 -0.438248 -0.602849 0.666718 0.542688 0.431216 0.720793 -0.752743 0.630424 0.189590 -0.372651 -0.645460 0.666718 0.494504 0.485719 0.720793 -0.814670 0.548059 0.189590 -0.302950 -0.680962 0.666718 0.441409 0.534430 0.720793 -0.867163 0.460525 0.189590 -0.230621 -0.708732 0.666718 0.382966 0.577749 0.720793 -0.910654 0.367104 0.189590 -0.155070 -0.729000 0.666718 0.320304 0.614705 0.720793 -0.944114 0.269639 0.189590 -0.077812 -0.741237 0.666718 0.254640 0.644683 0.720793 -0.967036 0.169992 0.189590 -0.000304 -0.745310 0.666718 0.185670 0.667820 0.720793 -0.979526 0.067703 0.189590 0.077812 -0.741237 0.666718 0.114655 0.683602 0.720793 -0.981228 -0.035331 0.189590 0.155070 -0.729000 0.666718 0.042377 0.691853 0.720793 -0.972120 -0.137976 0.189590 0.230621 -0.708732 0.666718 -0.029675 0.692515 0.720793 -0.952544 -0.238149 0.189590 0.302950 -0.680962 0.666718 -0.102092 0.685590 0.720793 -0.922339 -0.336671 0.189590 0.372651 -0.645460 0.666718 -0.173384 0.671115 0.720793 -0.881973 -0.431484 0.189590 0.438248 -0.602849 0.666718 -0.242118 0.649489 0.720793 -0.832414 -0.520713 0.189590 0.498463 -0.554096 0.666718 -0.308855 0.620536 0.720793 -0.773255 -0.605088 0.189590 0.553791 -0.498801 0.666718 -0.372191 0.584749 0.720793 -0.705579 -0.682799 0.189590 0.603019 -0.438013 0.666718 -0.431427 0.542520 0.720793 -0.630131 -0.752988 0.189590 0.645605 -0.372400 0.666718 -0.485416 0.494801 0.720793 -0.548557 -0.814335 0.189590 0.680776 -0.303366 0.666718 -0.534602 0.441201 0.720793 -0.460187 -0.867343 0.189590 0.708822 -0.230345 0.666718 -0.577898 0.382741 0.720793 -0.366749 -0.910797 0.189590 0.729060 -0.154787 0.666718 -0.614509 0.320680 0.720793 -0.270216 -0.943949 0.189590 0.741190 -0.078265 0.666718 -0.644734 0.254508 0.720793 -0.169795 -0.967071 0.189590 0.745310 -0.000152 0.666718 -0.667858 0.185534 0.720793 -0.067504 -0.979540 0.189590 0.741221 0.077963 0.666718 -0.683625 0.114516 0.720793 0.035531 -0.981220 0.189590 0.728968 0.155219 0.666718 -0.691819 0.042928 0.720793 0.137202 -0.972230 0.189590 0.708916 0.230056 0.666718 -0.692509 -0.029816 0.720793 0.238343 -0.952496 0.189590 0.680900 0.303089 0.666718 -0.685570 -0.102231 0.720793 0.336859 -0.922270 0.189590 0.645384 0.372783 0.666718 -0.671079 -0.173521 0.720793 0.431664 -0.881885 0.189590 0.602759 0.438370 0.666718 -0.649440 -0.242250 0.720793 0.520883 -0.832308 0.189590 0.553994 0.498576 0.666718 -0.620473 -0.308982 0.720793 0.605246 -0.773132 0.189590 0.498689 0.553893 0.666718 -0.584673 -0.372310 0.720793 0.682942 -0.705440 0.189590 0.437890 0.603108 0.666718 -0.542863 -0.430995 0.720793 0.752486 -0.630731 0.189590 0.372914 0.645308 0.666718 -0.494702 -0.485517 0.720793 0.814447 -0.548391 0.189590 0.303227 0.680838 0.666718 -0.441092 -0.534692 0.720793 0.867436 -0.460011 0.189590 0.230201 0.708869 0.666718 -0.382623 -0.577976 0.720793 0.910871 -0.366564 0.189590 0.154638 0.729091 0.666718 -0.320554 -0.614575 0.720793 0.944004 -0.270023 0.189590 0.078114 0.741205 0.666718 -0.254377 -0.644786 0.720793 0.967105 -0.169598 0.189590 0.000000 0.745310 0.666718 -0.185398 -0.667896 0.720793 0.979554 -0.067304 0.189590 -0.078114 0.741205 0.666718 -0.115060 -0.683534 0.720793 0.981248 0.034750 0.189590 -0.154638 0.729091 0.666718 -0.042787 -0.691828 0.720793 0.972202 0.137400 0.189590 -0.230201 0.708869 0.666718 0.029957 -0.692502 0.720793 0.952447 0.238537 0.189590 -0.303227 0.680838 0.666718 0.102371 -0.685549 0.720793 0.922201 0.337047 0.189590 -0.372914 0.645308 0.666718 0.172987 -0.671217 0.720793 0.882229 0.430962 0.189590 -0.437890 0.603108 0.666718 0.242382 -0.649390 0.720793 0.832202 0.521052 0.189590 -0.498689 0.553893 0.666718 0.309108 -0.620411 0.720793 0.773009 0.605403 0.189590 -0.553994 0.498576 0.666718 0.371844 -0.584969 0.720793 0.705984 0.682380 0.189590 -0.602759 0.438370 0.666718 0.431105 -0.542775 0.720793 0.630577 0.752614 0.189590 -0.645384 0.372783 0.666718 0.485618 -0.494603 0.720793 0.548225 0.814558 0.189590 -0.680900 0.303089 0.666718 0.534781 -0.440983 0.720793 0.459834 0.867530 0.189590 -0.708916 0.230056 0.666718 0.577671 -0.383083 0.720793 0.367289 0.910579 0.189590 -0.728968 0.155219 0.666718 0.614640 -0.320429 0.720793 0.269831 0.944059 0.189590 -0.741221 0.077963 0.666718 -0.717550 0.200283 -0.667090 -0.146589 -0.979738 -0.136474 -0.680907 -0.000139 0.732370 -0.734589 0.123976 -0.667090 -0.043098 -0.989706 -0.136474 -0.677142 -0.071502 0.732370 -0.743490 0.047047 -0.667090 0.059879 -0.988832 -0.136474 -0.666061 -0.141411 0.732370 -0.744326 -0.031136 -0.667090 0.163186 -0.977111 -0.136474 -0.647571 -0.210441 0.732370 -0.736964 -0.108975 -0.667090 0.264695 -0.954626 -0.136474 -0.621949 -0.277152 0.732370 -0.721669 -0.184892 -0.667090 0.362367 -0.921990 -0.136474 -0.589817 -0.340220 0.732370 -0.698316 -0.259510 -0.667090 0.457002 -0.878933 -0.136474 -0.550911 -0.400164 0.732370 -0.667272 -0.331269 -0.667090 0.546604 -0.826195 -0.136474 -0.505937 -0.455699 0.732370 -0.628878 -0.399380 -0.667090 0.630185 -0.764357 -0.136474 -0.455390 -0.506215 0.732370 -0.584019 -0.462507 -0.667090 0.706130 -0.694806 -0.136474 -0.400378 -0.550755 0.732370 -0.532328 -0.521169 -0.667090 0.775062 -0.616972 -0.136474 -0.340450 -0.589685 0.732370 -0.474774 -0.574091 -0.667090 0.835456 -0.532342 -0.136474 -0.276772 -0.622119 0.732370 -0.412611 -0.620277 -0.667090 0.886206 -0.442735 -0.136474 -0.210692 -0.647490 0.732370 -0.345329 -0.660105 -0.667090 0.927727 -0.347416 -0.136474 -0.141671 -0.666006 0.732370 -0.274244 -0.692663 -0.667090 0.959029 -0.248270 -0.136474 -0.071088 -0.677186 0.732370 -0.200722 -0.717427 -0.667090 0.979648 -0.147188 -0.136474 -0.000277 -0.680907 0.732370 -0.124425 -0.734513 -0.667090 0.989679 -0.043703 -0.136474 0.071088 -0.677186 0.732370 -0.046757 -0.743509 -0.667090 0.988809 0.060263 -0.136474 0.141671 -0.666006 0.732370 0.031425 -0.744314 -0.667090 0.977047 0.163566 -0.136474 0.210692 -0.647490 0.732370 0.108525 -0.737030 -0.667090 0.954788 0.264112 -0.136474 0.276772 -0.622119 0.732370 0.185173 -0.721597 -0.667090 0.921849 0.362726 -0.136474 0.340450 -0.589685 0.732370 0.259782 -0.698215 -0.667090 0.878755 0.457344 -0.136474 0.400378 -0.550755 0.732370 0.330862 -0.667474 -0.667090 0.826529 0.546099 -0.136474 0.455390 -0.506215 0.732370 0.398996 -0.629121 -0.667090 0.764742 0.629718 -0.136474 0.505937 -0.455699 0.732370 0.462735 -0.583839 -0.667090 0.694531 0.706400 -0.136474 0.550911 -0.400164 0.732370 0.521376 -0.532126 -0.667090 0.616671 0.775301 -0.136474 0.589817 -0.340220 0.732370 0.573801 -0.475125 -0.667090 0.532852 0.835131 -0.136474 0.621949 -0.277152 0.732370 0.620437 -0.412370 -0.667090 0.442390 0.886378 -0.136474 0.647571 -0.210441 0.732370 0.660239 -0.345072 -0.667090 0.347055 0.927862 -0.136474 0.666061 -0.141411 0.732370 0.692495 -0.274667 -0.667090 0.248856 0.958877 -0.136474 0.677142 -0.071502 0.732370 0.717468 -0.200576 -0.667090 0.146988 0.979678 -0.136474 0.680907 -0.000139 0.732370 0.734538 -0.124275 -0.667090 0.043501 0.989688 -0.136474 0.677171 0.071226 0.732370 0.743518 -0.046606 -0.667090 -0.060465 0.988797 -0.136474 0.665977 0.141806 0.732370 0.744339 0.030832 -0.667090 -0.162788 0.977177 -0.136474 0.647657 0.210177 0.732370 0.737008 0.108675 -0.667090 -0.264306 0.954734 -0.136474 0.622062 0.276898 0.732370 0.721559 0.185320 -0.667090 -0.362913 0.921775 -0.136474 0.589615 0.340570 0.732370 0.698162 0.259924 -0.667090 -0.457523 0.878662 -0.136474 0.550674 0.400490 0.732370 0.667407 0.330998 -0.667090 -0.546268 0.826418 -0.136474 0.506123 0.455493 0.732370 0.629040 0.399124 -0.667090 -0.629874 0.764614 -0.136474 0.455596 0.506030 0.732370 0.583745 0.462853 -0.667090 -0.706542 0.694387 -0.136474 0.400051 0.550993 0.732370 0.532541 0.520953 -0.667090 -0.774810 0.617288 -0.136474 0.340690 0.589546 0.732370 0.475008 0.573898 -0.667090 -0.835239 0.532682 -0.136474 0.277025 0.622006 0.732370 0.412243 0.620521 -0.667090 -0.886468 0.442210 -0.136474 0.210309 0.647614 0.732370 0.344938 0.660310 -0.667090 -0.927933 0.346866 -0.136474 0.141276 0.666089 0.732370 0.274526 0.692551 -0.667090 -0.958928 0.248661 -0.136474 0.071364 0.677157 0.732370 0.200430 0.717509 -0.667090 -0.979708 0.146789 -0.136474 0.000000 0.680907 0.732370 0.124126 0.734564 -0.667090 -0.989697 0.043300 -0.136474 -0.071364 0.677157 0.732370 0.047198 0.743481 -0.667090 -0.988845 -0.059677 -0.136474 -0.141276 0.666089 0.732370 -0.030984 0.744333 -0.667090 -0.977144 -0.162987 -0.136474 -0.210309 0.647614 0.732370 -0.108825 0.736986 -0.667090 -0.954680 -0.264501 -0.136474 -0.277025 0.622006 0.732370 -0.185467 0.721521 -0.667090 -0.921701 -0.363101 -0.136474 -0.340690 0.589546 0.732370 -0.259368 0.698369 -0.667090 -0.879026 -0.456824 -0.136474 -0.400051 0.550993 0.732370 -0.331133 0.667339 -0.667090 -0.826307 -0.546436 -0.136474 -0.455596 0.506030 0.732370 -0.399252 0.628959 -0.667090 -0.764485 -0.630029 -0.136474 -0.506123 0.455493 0.732370 -0.462388 0.584113 -0.667090 -0.694950 -0.705988 -0.136474 -0.550674 0.400490 0.732370 -0.521061 0.532435 -0.667090 -0.617130 -0.774936 -0.136474 -0.589615 0.340570 0.732370 -0.573994 0.474891 -0.667090 -0.532512 -0.835348 -0.136474 -0.622062 0.276898 0.732370 -0.620605 0.412117 -0.667090 -0.442029 -0.886558 -0.136474 -0.647657 0.210177 0.732370 -0.660035 0.345464 -0.667090 -0.347605 -0.927656 -0.136474 -0.665977 0.141806 0.732370 -0.692607 0.274385 -0.667090 -0.248465 -0.958979 -0.136474 -0.677171 0.071226 0.732370 0.507973 -0.848428 0.148773 0.814195 0.529311 0.238571 -0.281157 -0.000057 0.959662 0.594097 -0.790516 0.148773 0.754236 0.611729 0.238571 -0.279603 -0.029524 0.959662 0.672952 -0.724570 0.148773 0.686655 0.686723 0.238571 -0.275027 -0.058391 0.959662 0.745186 -0.650049 0.148773 0.610900 0.754907 0.238571 -0.267393 -0.086894 0.959662 0.809212 -0.568368 0.148773 0.528416 0.814776 0.238571 -0.256813 -0.114440 0.959662 0.863844 -0.481291 0.148773 0.440977 0.865230 0.238571 -0.243545 -0.140483 0.959662 0.909529 -0.388104 0.148773 0.347866 0.906683 0.238571 -0.227480 -0.165234 0.959662 0.945195 -0.290641 0.148773 0.250923 0.938148 0.238571 -0.208910 -0.188166 0.959662 0.970451 -0.189977 0.148773 0.151216 0.959280 0.238571 -0.188038 -0.209025 0.959662 0.984930 -0.088205 0.148773 0.050814 0.969795 0.238571 -0.165323 -0.227416 0.959662 0.988750 0.015508 0.148773 -0.051107 0.969779 0.238571 -0.140577 -0.243490 0.959662 0.981679 0.119051 0.148773 -0.152466 0.959082 0.238571 -0.114283 -0.256883 0.959662 0.964016 0.220318 0.148773 -0.251207 0.938072 0.238571 -0.086998 -0.267359 0.959662 0.935616 0.320140 0.148773 -0.348140 0.906577 0.238571 -0.058498 -0.275005 0.959662 0.896910 0.416437 0.148773 -0.441238 0.865097 0.238571 -0.029353 -0.279621 0.959662 0.848738 0.507454 0.148773 -0.528813 0.814519 0.238571 -0.000115 -0.281157 0.959662 0.790879 0.593614 0.148773 -0.611268 0.754609 0.238571 0.029353 -0.279621 0.959662 0.724308 0.673234 0.148773 -0.686990 0.686388 0.238571 0.058498 -0.275005 0.959662 0.649759 0.745439 0.148773 -0.755145 0.610606 0.238571 0.086998 -0.267359 0.959662 0.568863 0.808864 0.148773 -0.814453 0.528914 0.238571 0.114283 -0.256883 0.959662 0.480955 0.864031 0.148773 -0.865402 0.440640 0.238571 0.140577 -0.243490 0.959662 0.387750 0.909680 0.148773 -0.906818 0.347513 0.238571 0.165323 -0.227416 0.959662 0.291218 0.945018 0.148773 -0.937994 0.251496 0.238571 0.188038 -0.209025 0.959662 0.190570 0.970335 0.148773 -0.959187 0.151802 0.238571 0.208910 -0.188166 0.959662 0.087822 0.984964 0.148773 -0.969814 0.050437 0.238571 0.227480 -0.165234 0.959662 -0.015893 0.988744 0.148773 -0.969759 -0.051484 0.238571 0.243545 -0.140483 0.959662 -0.118451 0.981752 0.148773 -0.959175 -0.151880 0.238571 0.256813 -0.114440 0.959662 -0.220693 0.963930 0.148773 -0.937974 -0.251572 0.238571 0.267393 -0.086894 0.959662 -0.320504 0.935491 0.148773 -0.906442 -0.348493 0.238571 0.275027 -0.058391 0.959662 -0.415889 0.897164 0.148773 -0.865366 -0.440710 0.238571 0.279603 -0.029524 0.959662 -0.507627 0.848635 0.148773 -0.814411 -0.528979 0.238571 0.281157 -0.000057 0.959662 -0.593775 0.790758 0.148773 -0.754485 -0.611422 0.238571 0.279615 0.029410 0.959662 -0.673382 0.724171 0.148773 -0.686248 -0.687130 0.238571 0.274993 0.058554 0.959662 -0.744921 0.650353 0.148773 -0.611207 -0.754658 0.238571 0.267428 0.086785 0.959662 -0.808980 0.568698 0.148773 -0.528748 -0.814561 0.238571 0.256860 0.114336 0.959662 -0.864128 0.480779 0.148773 -0.440464 -0.865492 0.238571 0.243462 0.140627 0.959662 -0.909759 0.387564 0.148773 -0.347328 -0.906889 0.238571 0.227382 0.165369 0.959662 -0.945077 0.291026 0.148773 -0.251305 -0.938046 0.238571 0.208986 0.188080 0.959662 -0.970374 0.190372 0.148773 -0.151607 -0.959218 0.238571 0.188123 0.208948 0.959662 -0.984982 0.087622 0.148773 -0.050239 -0.969825 0.238571 0.165188 0.227514 0.959662 -0.988756 -0.015105 0.148773 0.050712 -0.969800 0.238571 0.140676 0.243433 0.959662 -0.981727 -0.118651 0.148773 0.152075 -0.959144 0.238571 0.114388 0.256836 0.959662 -0.963885 -0.220889 0.148773 0.251763 -0.937923 0.238571 0.086840 0.267410 0.959662 -0.935426 -0.320695 0.148773 0.348677 -0.906371 0.238571 0.058335 0.275039 0.959662 -0.897079 -0.416071 0.148773 0.440886 -0.865277 0.238571 0.029467 0.279609 0.959662 -0.848531 -0.507800 0.148773 0.529145 -0.814303 0.238571 0.000000 0.281157 0.959662 -0.790637 -0.593936 0.148773 0.611575 -0.754360 0.238571 -0.029467 0.279609 0.959662 -0.724707 -0.672805 0.148773 0.686583 -0.686795 0.238571 -0.058335 0.275039 0.959662 -0.650201 -0.745054 0.148773 0.754783 -0.611054 0.238571 -0.086840 0.267410 0.959662 -0.568533 -0.809096 0.148773 0.814669 -0.528582 0.238571 -0.114388 0.256836 0.959662 -0.480603 -0.864226 0.148773 0.865581 -0.440287 0.238571 -0.140676 0.243433 0.959662 -0.388289 -0.909450 0.148773 0.906612 -0.348050 0.238571 -0.165188 0.227514 0.959662 -0.290833 -0.945136 0.148773 0.938097 -0.251114 0.238571 -0.188123 0.208948 0.959662 -0.190175 -0.970412 0.148773 0.959249 -0.151412 0.238571 -0.208986 0.188080 0.959662 -0.088406 -0.984912 0.148773 0.969784 -0.051012 0.238571 -0.227382 0.165369 0.959662 0.015307 -0.988753 0.148773 0.969790 0.050910 0.238571 -0.243462 0.140627 0.959662 0.118851 -0.981703 0.148773 0.959113 0.152270 0.238571 -0.256860 0.114336 0.959662 0.221086 -0.963840 0.148773 0.937872 0.251954 0.238571 -0.267428 0.086785 0.959662 0.319950 -0.935681 0.148773 0.906648 0.347955 0.238571 -0.274993 0.058554 0.959662 0.416254 -0.896995 0.148773 0.865187 0.441062 0.238571 -0.279615 0.029410 0.959662 0.051725 -0.047176 0.997546 0.002240 0.998887 0.047123 -0.998659 -0.000203 0.051773 0.056385 -0.041495 0.997546 -0.102463 0.993620 0.047123 -0.993137 -0.104869 0.051773 0.060388 -0.035417 0.997546 -0.205060 0.977614 0.047123 -0.976885 -0.207402 0.051773 0.063767 -0.028893 0.997546 -0.306392 0.950738 0.047123 -0.949767 -0.308645 0.051773 0.066444 -0.022051 0.997546 -0.404348 0.913390 0.047123 -0.912188 -0.406487 0.051773 0.068374 -0.015034 0.997546 -0.496985 0.866479 0.047123 -0.865061 -0.498988 0.051773 0.069573 -0.007785 0.997546 -0.585061 0.809619 0.047123 -0.807999 -0.586904 0.051773 0.070006 -0.000450 0.997546 -0.666693 0.743842 0.047123 -0.742038 -0.668356 0.051773 0.069667 0.006889 0.997546 -0.740981 0.669871 0.047123 -0.667902 -0.742446 0.051773 0.068576 0.014085 0.997546 -0.806518 0.589328 0.047123 -0.587218 -0.807771 0.051773 0.066722 0.021194 0.997546 -0.863842 0.501553 0.047123 -0.499324 -0.864867 0.051773 0.064133 0.028070 0.997546 -0.911651 0.408254 0.047123 -0.405930 -0.912437 0.051773 0.060873 0.034577 0.997546 -0.949107 0.311408 0.047123 -0.309014 -0.949647 0.051773 0.056914 0.040766 0.997546 -0.976518 0.210219 0.047123 -0.207783 -0.976804 0.051773 0.052328 0.046506 0.997546 -0.993172 0.106715 0.047123 -0.104262 -0.993201 0.051773 0.047207 0.051696 0.997546 -0.998885 0.002850 0.047123 -0.000407 -0.998659 0.051773 0.041529 0.056359 0.997546 -0.993682 -0.101856 0.047123 0.104262 -0.993201 0.051773 0.035394 0.060401 0.997546 -0.977535 -0.205440 0.047123 0.207783 -0.976804 0.051773 0.028868 0.063778 0.997546 -0.950619 -0.306761 0.047123 0.309014 -0.949647 0.051773 0.022091 0.066430 0.997546 -0.913637 -0.403790 0.047123 0.405930 -0.912437 0.051773 0.015007 0.068380 0.997546 -0.866285 -0.497322 0.047123 0.499324 -0.864867 0.051773 0.007758 0.069576 0.997546 -0.809391 -0.585376 0.047123 0.587218 -0.807771 0.051773 0.000493 0.070006 0.997546 -0.744249 -0.666238 0.047123 0.667902 -0.742446 0.051773 -0.006847 0.069672 0.997546 -0.670323 -0.740572 0.047123 0.742038 -0.668356 0.051773 -0.014111 0.068570 0.997546 -0.589014 -0.806748 0.047123 0.807999 -0.586904 0.051773 -0.021220 0.066714 0.997546 -0.501217 -0.864037 0.047123 0.865061 -0.498988 0.051773 -0.028031 0.064150 0.997546 -0.408811 -0.911402 0.047123 0.912188 -0.406487 0.051773 -0.034600 0.060859 0.997546 -0.311038 -0.949228 0.047123 0.949767 -0.308645 0.051773 -0.040788 0.056898 0.997546 -0.209839 -0.976600 0.047123 0.976885 -0.207402 0.051773 -0.046475 0.052356 0.997546 -0.107322 -0.993107 0.047123 0.993137 -0.104869 0.051773 -0.051706 0.047197 0.997546 -0.002646 -0.998886 0.047123 0.998659 -0.000203 0.051773 -0.056368 0.041518 0.997546 0.102059 -0.993662 0.047123 0.993180 0.104464 0.051773 -0.060409 0.035381 0.997546 0.205639 -0.977493 0.047123 0.976762 0.207981 0.051773 -0.063755 0.028919 0.997546 0.306004 -0.950863 0.047123 0.949893 0.308258 0.051773 -0.066435 0.022078 0.997546 0.403976 -0.913555 0.047123 0.912354 0.406116 0.051773 -0.068383 0.014993 0.997546 0.497498 -0.866184 0.047123 0.864765 0.499500 0.051773 -0.069578 0.007744 0.997546 0.585541 -0.809272 0.047123 0.807651 0.587383 0.051773 -0.070006 0.000479 0.997546 0.666390 -0.744113 0.047123 0.742310 0.668054 0.051773 -0.069670 -0.006861 0.997546 0.740708 -0.670172 0.047123 0.668205 0.742174 0.051773 -0.068567 -0.014125 0.997546 0.806867 -0.588850 0.047123 0.586740 0.808119 0.051773 -0.066731 -0.021167 0.997546 0.863638 -0.501905 0.047123 0.499676 0.864664 0.051773 -0.064145 -0.028044 0.997546 0.911485 -0.408626 0.047123 0.406302 0.912271 0.051773 -0.060852 -0.034613 0.997546 0.949292 -0.310845 0.047123 0.308451 0.949830 0.051773 -0.056889 -0.040800 0.997546 0.976642 -0.209640 0.047123 0.207204 0.976927 0.051773 -0.052346 -0.046485 0.997546 0.993129 -0.107120 0.047123 0.104667 0.993159 0.051773 -0.047186 -0.051715 0.997546 0.998886 -0.002443 0.047123 0.000000 0.998659 0.051773 -0.041506 -0.056376 0.997546 0.993641 0.102261 0.047123 -0.104667 0.993159 0.051773 -0.035429 -0.060380 0.997546 0.977656 0.204861 0.047123 -0.207204 0.976927 0.051773 -0.028906 -0.063761 0.997546 0.950801 0.306198 0.047123 -0.308451 0.949830 0.051773 -0.022064 -0.066439 0.997546 0.913473 0.404162 0.047123 -0.406302 0.912271 0.051773 -0.014979 -0.068386 0.997546 0.866083 0.497675 0.047123 -0.499676 0.864664 0.051773 -0.007799 -0.069572 0.997546 0.809738 0.584896 0.047123 -0.586740 0.808119 0.051773 -0.000464 -0.070006 0.997546 0.743977 0.666541 0.047123 -0.668205 0.742174 0.051773 0.006875 -0.069669 0.997546 0.670022 0.740844 0.047123 -0.742310 0.668054 0.051773 0.014071 -0.068579 0.997546 0.589492 0.806398 0.047123 -0.807651 0.587383 0.051773 0.021181 -0.066726 0.997546 0.501729 0.863740 0.047123 -0.864765 0.499500 0.051773 0.028057 -0.064139 0.997546 0.408440 0.911568 0.047123 -0.912354 0.406116 0.051773 0.034625 -0.060845 0.997546 0.310652 0.949355 0.047123 -0.949893 0.308258 0.051773 0.040754 -0.056922 0.997546 0.210418 0.976475 0.047123 -0.976762 0.207981 0.051773 0.046496 -0.052337 0.997546 0.106918 0.993151 0.047123 -0.993180 0.104464 0.051773 -0.074380 0.963489 -0.257211 -0.266952 -0.267749 -0.925768 -0.960835 -0.000196 0.277121 -0.174951 0.950387 -0.257211 -0.237420 -0.294253 -0.925768 -0.955523 -0.100897 0.277121 -0.272668 0.927089 -0.257211 -0.205590 -0.317311 -0.925768 -0.939886 -0.199547 0.277121 -0.368332 0.893406 -0.257211 -0.171201 -0.337110 -0.925768 -0.913795 -0.296955 0.277121 -0.459939 0.849882 -0.257211 -0.134927 -0.353197 -0.925768 -0.877640 -0.391092 0.277121 -0.545682 0.797542 -0.257211 -0.097532 -0.365296 -0.925768 -0.832297 -0.480089 0.277121 -0.626265 0.735959 -0.257211 -0.058709 -0.373506 -0.925768 -0.777397 -0.564675 0.277121 -0.699949 0.666268 -0.257211 -0.019240 -0.377602 -0.925768 -0.713933 -0.643042 0.277121 -0.765924 0.589239 -0.257211 0.020442 -0.377539 -0.925768 -0.642606 -0.714326 0.277121 -0.822956 0.506543 -0.257211 0.059525 -0.373377 -0.925768 -0.564978 -0.777177 0.277121 -0.871513 0.417501 -0.257211 0.098329 -0.365082 -0.925768 -0.480412 -0.832111 0.277121 -0.910471 0.323861 -0.257211 0.136051 -0.352766 -0.925768 -0.390555 -0.877878 0.277121 -0.939172 0.227593 -0.257211 0.171937 -0.336736 -0.925768 -0.297310 -0.913680 0.277121 -0.957853 0.127908 -0.257211 0.206283 -0.316861 -0.925768 -0.199913 -0.939808 0.277121 -0.965983 0.026813 -0.257211 0.238356 -0.293496 -0.925768 -0.100313 -0.955584 0.277121 -0.963534 -0.073791 -0.257211 0.267586 -0.267116 -0.925768 -0.000391 -0.960835 0.277121 -0.950493 -0.174370 -0.257211 0.294108 -0.237600 -0.925768 0.100313 -0.955584 0.277121 -0.926983 -0.273029 -0.257211 0.317391 -0.205467 -0.925768 0.199913 -0.939808 0.277121 -0.893263 -0.368679 -0.257211 0.337177 -0.171070 -0.925768 0.297310 -0.913680 0.277121 -0.850163 -0.459419 -0.257211 0.353114 -0.135143 -0.925768 0.390555 -0.877878 0.277121 -0.797330 -0.545992 -0.257211 0.365334 -0.097390 -0.925768 0.480412 -0.832111 0.277121 -0.735715 -0.626551 -0.257211 0.373529 -0.058564 -0.925768 0.564978 -0.777177 0.277121 -0.666696 -0.699542 -0.257211 0.377590 -0.019470 -0.925768 0.642606 -0.714326 0.277121 -0.589707 -0.765564 -0.257211 0.377551 0.020211 -0.925768 0.713933 -0.643042 0.277121 -0.506223 -0.823153 -0.257211 0.373354 0.059670 -0.925768 0.777397 -0.564675 0.277121 -0.417162 -0.871675 -0.257211 0.365044 0.098471 -0.925768 0.832297 -0.480089 0.277121 -0.324417 -0.910272 -0.257211 0.352849 0.135836 -0.925768 0.877640 -0.391092 0.277121 -0.227228 -0.939260 -0.257211 0.336669 0.172068 -0.925768 0.913795 -0.296955 0.277121 -0.127535 -0.957903 -0.257211 0.316781 0.206406 -0.925768 0.939886 -0.199547 0.277121 -0.027403 -0.965967 -0.257211 0.293641 0.238177 -0.925768 0.955523 -0.100897 0.277121 0.073988 -0.963519 -0.257211 0.267062 0.267641 -0.925768 0.960835 -0.000196 0.277121 0.174564 -0.950458 -0.257211 0.237540 0.294157 -0.925768 0.955564 0.100508 0.277121 0.273217 -0.926928 -0.257211 0.205402 0.317432 -0.925768 0.939767 0.200104 0.277121 0.367968 -0.893556 -0.257211 0.171339 0.337041 -0.925768 0.913916 0.296583 0.277121 0.459592 -0.850069 -0.257211 0.135071 0.353142 -0.925768 0.877799 0.390734 0.277121 0.546154 -0.797219 -0.257211 0.097315 0.365353 -0.925768 0.832013 0.480582 0.277121 0.626701 -0.735587 -0.257211 0.058488 0.373541 -0.925768 0.777062 0.565136 0.277121 0.699678 -0.666553 -0.257211 0.019393 0.377594 -0.925768 0.714195 0.642751 0.277121 0.765684 -0.589551 -0.257211 -0.020288 0.377547 -0.925768 0.642897 0.714064 0.277121 0.823256 -0.506055 -0.257211 -0.059746 0.373341 -0.925768 0.564517 0.777512 0.277121 0.871343 -0.417856 -0.257211 -0.098181 0.365122 -0.925768 0.480751 0.831915 0.277121 0.910339 -0.324232 -0.257211 -0.135907 0.352821 -0.925768 0.390913 0.877719 0.277121 0.939307 -0.227036 -0.257211 -0.172137 0.336634 -0.925768 0.296769 0.913856 0.277121 0.957929 -0.127340 -0.257211 -0.206471 0.316738 -0.925768 0.199356 0.939926 0.277121 0.965972 -0.027207 -0.257211 -0.238237 0.293593 -0.925768 0.100702 0.955543 0.277121 0.963504 0.074184 -0.257211 -0.267695 0.267007 -0.925768 0.000000 0.960835 0.277121 0.950422 0.174757 -0.257211 -0.294205 0.237480 -0.925768 -0.100702 0.955543 0.277121 0.927145 0.272479 -0.257211 -0.317269 0.205655 -0.925768 -0.199356 0.939926 0.277121 0.893481 0.368150 -0.257211 -0.337076 0.171270 -0.925768 -0.296769 0.913856 0.277121 0.849975 0.459765 -0.257211 -0.353170 0.134999 -0.925768 -0.390913 0.877719 0.277121 0.797108 0.546317 -0.257211 -0.365373 0.097241 -0.925768 -0.480751 0.831915 0.277121 0.736086 0.626115 -0.257211 -0.373494 0.058785 -0.925768 -0.564517 0.777512 0.277121 0.666411 0.699814 -0.257211 -0.377598 0.019316 -0.925768 -0.642897 0.714064 0.277121 0.589395 0.765804 -0.257211 -0.377543 -0.020365 -0.925768 -0.714195 0.642751 0.277121 0.506710 0.822853 -0.257211 -0.373389 -0.059449 -0.925768 -0.777062 0.565136 0.277121 0.417679 0.871428 -0.257211 -0.365102 -0.098255 -0.925768 -0.832013 0.480582 0.277121 0.324047 0.910405 -0.257211 -0.352793 -0.135979 -0.925768 -0.877799 0.390734 0.277121 0.226845 0.939353 -0.257211 -0.336599 -0.172206 -0.925768 -0.913916 0.296583 0.277121 0.128103 0.957827 -0.257211 -0.316903 -0.206218 -0.925768 -0.939767 0.200104 0.277121 0.027010 0.965978 -0.257211 -0.293544 -0.238296 -0.925768 -0.955564 0.100508 0.277121 0.019605 0.999692 0.015247 -0.792196 0.024836 -0.609761 -0.609952 -0.000124 0.792438 -0.085278 0.996241 0.015247 -0.790436 -0.058329 -0.609761 -0.606580 -0.064051 0.792438 -0.188239 0.982005 0.015247 -0.780110 -0.140071 -0.609761 -0.596653 -0.126675 0.792438 -0.290124 0.956868 0.015247 -0.761133 -0.221060 -0.609761 -0.580090 -0.188511 0.792438 -0.388812 0.921191 0.015247 -0.733772 -0.299615 -0.609761 -0.557138 -0.248271 0.792438 -0.482343 0.875850 0.015247 -0.698704 -0.374171 -0.609761 -0.528354 -0.304767 0.792438 -0.571482 0.820473 0.015247 -0.655640 -0.445339 -0.609761 -0.493503 -0.358464 0.792438 -0.654326 0.756059 0.015247 -0.605354 -0.511602 -0.609761 -0.453215 -0.408212 0.792438 -0.729962 0.683317 0.015247 -0.548401 -0.572230 -0.609761 -0.407936 -0.453464 0.792438 -0.796955 0.603846 0.015247 -0.486033 -0.626069 -0.609761 -0.358656 -0.493363 0.792438 -0.855853 0.516994 0.015247 -0.417740 -0.673561 -0.609761 -0.304973 -0.528236 0.792438 -0.905325 0.424447 0.015247 -0.344845 -0.713634 -0.609761 -0.247930 -0.557290 0.792438 -0.944496 0.328169 0.015247 -0.268898 -0.745577 -0.609761 -0.188737 -0.580017 0.792438 -0.973689 0.227372 0.015247 -0.189275 -0.769653 -0.609761 -0.126908 -0.596604 0.792438 -0.992156 0.124070 0.015247 -0.107567 -0.785252 -0.609761 -0.063680 -0.606619 0.792438 -0.999679 0.020216 0.015247 -0.025320 -0.792180 -0.609761 -0.000248 -0.609952 0.792438 -0.996292 -0.084669 0.015247 0.057846 -0.790471 -0.609761 0.063680 -0.606619 0.792438 -0.981932 -0.188621 0.015247 0.140374 -0.780055 -0.609761 0.126908 -0.596604 0.792438 -0.956755 -0.290496 0.015247 0.221356 -0.761047 -0.609761 0.188737 -0.580017 0.792438 -0.921428 -0.388249 0.015247 0.299167 -0.733955 -0.609761 0.247930 -0.557290 0.792438 -0.875662 -0.482683 0.015247 0.374443 -0.698558 -0.609761 0.304973 -0.528236 0.792438 -0.820251 -0.571801 0.015247 0.445594 -0.655467 -0.609761 0.358656 -0.493363 0.792438 -0.756459 -0.653864 0.015247 0.511233 -0.605667 -0.609761 0.407936 -0.453464 0.792438 -0.683763 -0.729545 0.015247 0.571895 -0.548750 -0.609761 0.453215 -0.408212 0.792438 -0.603536 -0.797190 0.015247 0.626259 -0.485789 -0.609761 0.493503 -0.358464 0.792438 -0.516661 -0.856054 0.015247 0.673724 -0.417478 -0.609761 0.528354 -0.304767 0.792438 -0.425000 -0.905065 0.015247 0.713423 -0.345281 -0.609761 0.557138 -0.248271 0.792438 -0.327802 -0.944623 0.015247 0.745682 -0.268607 -0.609761 0.580090 -0.188511 0.792438 -0.226993 -0.973777 0.015247 0.769727 -0.188975 -0.609761 0.596653 -0.126675 0.792438 -0.124676 -0.992080 0.015247 0.785186 -0.108047 -0.609761 0.606580 -0.064051 0.792438 -0.020012 -0.999683 0.015247 0.792186 -0.025159 -0.609761 0.609952 -0.000124 0.792438 0.084872 -0.996275 0.015247 0.790460 0.058007 -0.609761 0.606606 0.063804 0.792438 0.188821 -0.981893 0.015247 0.780027 0.140533 -0.609761 0.596578 0.127029 0.792438 0.289734 -0.956986 0.015247 0.761223 0.220750 -0.609761 0.580167 0.188275 0.792438 0.388437 -0.921349 0.015247 0.733894 0.299316 -0.609761 0.557239 0.248044 0.792438 0.482862 -0.875564 0.015247 0.698482 0.374585 -0.609761 0.528174 0.305080 0.792438 0.571968 -0.820134 0.015247 0.655376 0.445728 -0.609761 0.493290 0.358757 0.792438 0.654018 -0.756326 0.015247 0.605563 0.511356 -0.609761 0.453381 0.408028 0.792438 0.729684 -0.683614 0.015247 0.548634 0.572007 -0.609761 0.408120 0.453298 0.792438 0.797313 -0.603373 0.015247 0.485662 0.626357 -0.609761 0.358364 0.493576 0.792438 0.855643 -0.517342 0.015247 0.418014 0.673391 -0.609761 0.305188 0.528112 0.792438 0.905152 -0.424815 0.015247 0.345136 0.713493 -0.609761 0.248157 0.557189 0.792438 0.944690 -0.327609 0.015247 0.268456 0.745736 -0.609761 0.188393 0.580129 0.792438 0.973823 -0.226795 0.015247 0.188819 0.769765 -0.609761 0.126554 0.596679 0.792438 0.992106 -0.124474 0.015247 0.107887 0.785208 -0.609761 0.063927 0.606593 0.792438 0.999687 -0.019809 0.015247 0.024997 0.792191 -0.609761 0.000000 0.609952 0.792438 0.996258 0.085075 0.015247 -0.058168 0.790448 -0.609761 -0.063927 0.606593 0.792438 0.982043 0.188039 0.015247 -0.139912 0.780138 -0.609761 -0.126554 0.596679 0.792438 0.956927 0.289929 0.015247 -0.220905 0.761178 -0.609761 -0.188393 0.580129 0.792438 0.921270 0.388625 0.015247 -0.299466 0.733833 -0.609761 -0.248157 0.557189 0.792438 0.875466 0.483040 0.015247 -0.374727 0.698406 -0.609761 -0.305188 0.528112 0.792438 0.820590 0.571315 0.015247 -0.445206 0.655731 -0.609761 -0.358364 0.493576 0.792438 0.756192 0.654172 0.015247 -0.511479 0.605459 -0.609761 -0.408120 0.453298 0.792438 0.683466 0.729823 0.015247 -0.572119 0.548517 -0.609761 -0.453381 0.408028 0.792438 0.604008 0.796832 0.015247 -0.625970 0.486161 -0.609761 -0.493290 0.358757 0.792438 0.517168 0.855748 0.015247 -0.673476 0.417877 -0.609761 -0.528174 0.305080 0.792438 0.424631 0.905238 0.015247 -0.713563 0.344990 -0.609761 -0.557239 0.248044 0.792438 0.327417 0.944757 0.015247 -0.745791 0.268304 -0.609761 -0.580167 0.188275 0.792438 0.227570 0.973642 0.015247 -0.769615 0.189432 -0.609761 -0.596578 0.127029 0.792438 0.124272 0.992131 0.015247 -0.785230 0.107727 -0.609761 -0.606606 0.063804 0.792438 -0.346211 0.671848 0.654796 0.313818 0.740689 -0.594052 -0.884113 -0.000180 -0.467273 -0.414719 0.631863 0.654796 0.234461 0.769500 -0.594052 -0.879225 -0.092840 -0.467273 -0.478073 0.585396 0.654796 0.153310 0.789682 -0.594052 -0.864837 -0.183613 -0.467273 -0.536794 0.532066 0.654796 0.069701 0.801401 -0.594052 -0.840829 -0.273243 -0.467273 -0.589602 0.472876 0.654796 -0.014675 0.804293 -0.594052 -0.807561 -0.359863 -0.467273 -0.635507 0.409113 0.654796 -0.098092 0.798423 -0.594052 -0.765839 -0.441754 -0.467273 -0.674884 0.340254 0.654796 -0.181232 0.783746 -0.594052 -0.715322 -0.519586 -0.467273 -0.706829 0.267647 0.654796 -0.262376 0.760435 -0.594052 -0.656926 -0.591696 -0.467273 -0.730987 0.192093 0.654796 -0.340630 0.728748 -0.594052 -0.591294 -0.657288 -0.467273 -0.746979 0.115169 0.654796 -0.414443 0.689449 -0.594052 -0.519865 -0.715120 -0.467273 -0.754936 0.036246 0.654796 -0.484419 0.642215 -0.594052 -0.442052 -0.765667 -0.467273 -0.754577 -0.043076 0.654796 -0.549060 0.587907 -0.594052 -0.359370 -0.807781 -0.467273 -0.746028 -0.121178 0.654796 -0.607126 0.527731 -0.594052 -0.273570 -0.840723 -0.467273 -0.729219 -0.198700 0.654796 -0.659092 0.461194 -0.594052 -0.183950 -0.864765 -0.467273 -0.704378 -0.274033 0.654796 -0.703799 0.389576 -0.594052 -0.092303 -0.879282 -0.467273 -0.672060 -0.345800 0.654796 -0.740497 0.314271 -0.594052 -0.000360 -0.884113 -0.467273 -0.632116 -0.414332 0.654796 -0.769357 0.234931 -0.594052 0.092303 -0.879282 -0.467273 -0.585210 -0.478301 0.654796 -0.789742 0.153003 -0.594052 0.183950 -0.864765 -0.467273 -0.531857 -0.537001 0.654796 -0.801428 0.069389 -0.594052 0.273570 -0.840723 -0.467273 -0.473236 -0.589313 0.654796 -0.804302 -0.014184 -0.594052 0.359370 -0.807781 -0.467273 -0.408866 -0.635666 0.654796 -0.798385 -0.098402 -0.594052 0.442052 -0.765667 -0.467273 -0.339991 -0.675017 0.654796 -0.783675 -0.181537 -0.594052 0.519865 -0.715120 -0.467273 -0.268079 -0.706665 0.654796 -0.760595 -0.261911 -0.594052 0.591294 -0.657288 -0.467273 -0.192539 -0.730870 0.654796 -0.728956 -0.340185 -0.594052 0.656926 -0.591696 -0.467273 -0.114878 -0.747024 0.654796 -0.689287 -0.414711 -0.594052 0.715322 -0.519586 -0.467273 -0.035952 -0.754950 0.654796 -0.642026 -0.484669 -0.594052 0.765839 -0.441754 -0.467273 0.042615 -0.754603 0.654796 -0.588243 -0.548701 -0.594052 0.807561 -0.359863 -0.467273 0.121468 -0.745981 0.654796 -0.527495 -0.607331 -0.594052 0.840829 -0.273243 -0.467273 0.198984 -0.729142 0.654796 -0.460937 -0.659271 -0.594052 0.864837 -0.183613 -0.467273 0.273603 -0.704545 0.654796 -0.390006 -0.703560 -0.594052 0.879225 -0.092840 -0.467273 0.345937 -0.671989 0.654796 -0.314120 -0.740561 -0.594052 0.884113 -0.000180 -0.467273 0.414461 -0.632032 0.654796 -0.234774 -0.769404 -0.594052 0.879263 0.092482 -0.467273 0.478420 -0.585112 0.654796 -0.152842 -0.789773 -0.594052 0.864728 0.184126 -0.467273 0.536577 -0.532285 0.654796 -0.070028 -0.801373 -0.594052 0.840941 0.272901 -0.467273 0.589409 -0.473116 0.654796 0.014348 -0.804299 -0.594052 0.807707 0.359534 -0.467273 0.635749 -0.408736 0.654796 0.098565 -0.798365 -0.594052 0.765577 0.442208 -0.467273 0.675086 -0.339854 0.654796 0.181696 -0.783638 -0.594052 0.715014 0.520010 -0.467273 0.706720 -0.267935 0.654796 0.262066 -0.760541 -0.594052 0.657167 0.591428 -0.467273 0.730909 -0.192390 0.654796 0.340333 -0.728886 -0.594052 0.591562 0.657047 -0.467273 0.747047 -0.114726 0.654796 0.414851 -0.689203 -0.594052 0.519441 0.715428 -0.467273 0.754921 -0.036553 0.654796 0.484158 -0.642412 -0.594052 0.442364 0.765487 -0.467273 0.754594 0.042769 0.654796 0.548821 -0.588131 -0.594052 0.359699 0.807634 -0.467273 0.745956 0.121620 0.654796 0.607438 -0.527372 -0.594052 0.273072 0.840885 -0.467273 0.729101 0.199132 0.654796 0.659365 -0.460803 -0.594052 0.183437 0.864874 -0.467273 0.704489 0.273746 0.654796 0.703640 -0.389863 -0.594052 0.092661 0.879244 -0.467273 0.671919 0.346074 0.654796 0.740625 -0.313969 -0.594052 0.000000 0.884113 -0.467273 0.631947 0.414590 0.654796 0.769452 -0.234617 -0.594052 -0.092661 0.879244 -0.467273 0.585493 0.477954 0.654796 0.789651 -0.153471 -0.594052 -0.183437 0.864874 -0.467273 0.532175 0.536685 0.654796 0.801387 -0.069864 -0.594052 -0.273072 0.840885 -0.467273 0.472996 0.589505 0.654796 0.804296 0.014511 -0.594052 -0.359699 0.807634 -0.467273 0.408607 0.635832 0.654796 0.798345 0.098727 -0.594052 -0.442364 0.765487 -0.467273 0.340391 0.674815 0.654796 0.783782 0.181072 -0.594052 -0.519441 0.715428 -0.467273 0.267791 0.706774 0.654796 0.760488 0.262221 -0.594052 -0.591562 0.657047 -0.467273 0.192241 0.730948 0.654796 0.728817 0.340481 -0.594052 -0.657167 0.591428 -0.467273 0.115321 0.746956 0.654796 0.689533 0.414302 -0.594052 -0.715014 0.520010 -0.467273 0.036400 0.754928 0.654796 0.642314 0.484289 -0.594052 -0.765577 0.442208 -0.467273 -0.042923 0.754586 0.654796 0.588019 0.548940 -0.594052 -0.807707 0.359534 -0.467273 -0.121772 0.745931 0.654796 0.527248 0.607546 -0.594052 -0.840941 0.272901 -0.467273 -0.198551 0.729259 0.654796 0.461328 0.658998 -0.594052 -0.864728 0.184126 -0.467273 -0.273889 0.704433 0.654796 0.389720 0.703719 -0.594052 -0.879263 0.092482 -0.467273 0.136017 -0.505681 -0.851930 -0.079496 -0.862720 0.499394 -0.987512 -0.000201 -0.157545 0.188267 -0.488641 -0.851930 0.011361 -0.866301 0.499394 -0.982052 -0.103698 -0.157545 0.237977 -0.466456 -0.851930 0.101233 -0.860440 0.499394 -0.965981 -0.205087 -0.157545 0.285554 -0.438945 -0.851930 0.190855 -0.845092 0.499394 -0.939166 -0.305200 -0.157545 0.329986 -0.406600 -0.851930 0.278376 -0.820434 0.499394 -0.902007 -0.401950 -0.157545 0.370414 -0.370146 -0.851930 0.362043 -0.787103 0.499394 -0.855405 -0.493418 -0.157545 0.407167 -0.329286 -0.851930 0.442543 -0.744823 0.499394 -0.798981 -0.580353 -0.157545 0.439437 -0.284798 -0.851930 0.518169 -0.694339 0.499394 -0.733755 -0.660896 -0.157545 0.466865 -0.237173 -0.851930 0.588087 -0.636207 0.499394 -0.660447 -0.734159 -0.157545 0.488964 -0.187425 -0.851930 0.650956 -0.571719 0.499394 -0.580664 -0.798755 -0.157545 0.505915 -0.135146 -0.851930 0.707291 -0.500345 0.499394 -0.493751 -0.855213 -0.157545 0.517293 -0.081378 -0.851930 0.755835 -0.423461 0.499394 -0.401399 -0.902252 -0.157545 0.522946 -0.027237 -0.851930 0.795712 -0.342707 0.499394 -0.305565 -0.939047 -0.157545 0.522921 0.027721 -0.851930 0.827248 -0.257424 0.499394 -0.205463 -0.965901 -0.157545 0.517135 0.082374 -0.851930 0.849672 -0.169304 0.499394 -0.103098 -0.982115 -0.157545 0.505764 0.135708 -0.851930 0.862672 -0.080023 0.499394 -0.000402 -0.987512 -0.157545 0.488756 0.187969 -0.851930 0.866307 0.010832 0.499394 0.103098 -0.982115 -0.157545 0.466363 0.238159 -0.851930 0.860401 0.101567 0.499394 0.205463 -0.965901 -0.157545 0.438834 0.285725 -0.851930 0.845017 0.191184 0.499394 0.305565 -0.939047 -0.157545 0.406801 0.329738 -0.851930 0.820604 0.277875 0.499394 0.401399 -0.902252 -0.157545 0.370002 0.370558 -0.851930 0.786962 0.362349 0.499394 0.493751 -0.855213 -0.157545 0.329127 0.407296 -0.851930 0.744651 0.442833 0.499394 0.580664 -0.798755 -0.157545 0.285066 0.439263 -0.851930 0.694656 0.517745 0.499394 0.660447 -0.734159 -0.157545 0.237459 0.466720 -0.851930 0.636566 0.587698 0.499394 0.733755 -0.660896 -0.157545 0.187235 0.489037 -0.851930 0.571466 0.651178 0.499394 0.798981 -0.580353 -0.157545 0.134949 0.505967 -0.851930 0.500070 0.707485 0.499394 0.855405 -0.493418 -0.157545 0.081694 0.517243 -0.851930 0.423922 0.755576 0.499394 0.902007 -0.401950 -0.157545 0.027034 0.522957 -0.851930 0.342398 0.795845 0.499394 0.939166 -0.305200 -0.157545 -0.027925 0.522910 -0.851930 0.257102 0.827348 0.499394 0.965981 -0.205087 -0.157545 -0.082058 0.517185 -0.851930 0.169824 0.849568 0.499394 0.982052 -0.103698 -0.157545 -0.135811 0.505737 -0.851930 0.079847 0.862688 0.499394 0.987512 -0.000201 -0.157545 -0.188068 0.488717 -0.851930 -0.011008 0.866305 0.499394 0.982094 0.103298 -0.157545 -0.238254 0.466315 -0.851930 -0.101743 0.860380 0.499394 0.965859 0.205660 -0.157545 -0.285376 0.439062 -0.851930 -0.190511 0.845169 0.499394 0.939290 0.304817 -0.157545 -0.329821 0.406734 -0.851930 -0.278042 0.820548 0.499394 0.902170 0.401583 -0.157545 -0.370633 0.369927 -0.851930 -0.362510 0.786888 0.499394 0.855113 0.493925 -0.157545 -0.407363 0.329044 -0.851930 -0.442985 0.744561 0.499394 0.798636 0.580827 -0.157545 -0.439321 0.284977 -0.851930 -0.517886 0.694550 0.499394 0.734024 0.660597 -0.157545 -0.466769 0.237364 -0.851930 -0.587828 0.636447 0.499394 0.660746 0.733890 -0.157545 -0.489075 0.187136 -0.851930 -0.651294 0.571333 0.499394 0.580190 0.799099 -0.157545 -0.505860 0.135352 -0.851930 -0.707087 0.500633 0.499394 0.494099 0.855012 -0.157545 -0.517260 0.081589 -0.851930 -0.755663 0.423768 0.499394 0.401766 0.902088 -0.157545 -0.522962 0.026927 -0.851930 -0.795915 0.342236 0.499394 0.305008 0.939228 -0.157545 -0.522904 -0.028031 -0.851930 -0.827400 0.256933 0.499394 0.204891 0.966023 -0.157545 -0.517169 -0.082164 -0.851930 -0.849603 0.169650 0.499394 0.103498 0.982073 -0.157545 -0.505709 -0.135914 -0.851930 -0.862704 0.079672 0.499394 0.000000 0.987512 -0.157545 -0.488679 -0.188168 -0.851930 -0.866303 -0.011185 0.499394 -0.103498 0.982073 -0.157545 -0.466505 -0.237882 -0.851930 -0.860461 -0.101057 0.499394 -0.204891 0.966023 -0.157545 -0.439004 -0.285465 -0.851930 -0.845131 -0.190683 0.499394 -0.305008 0.939228 -0.157545 -0.406667 -0.329904 -0.851930 -0.820491 -0.278209 0.499394 -0.401766 0.902088 -0.157545 -0.369851 -0.370708 -0.851930 -0.786814 -0.362670 0.499394 -0.494099 0.855012 -0.157545 -0.329369 -0.407100 -0.851930 -0.744913 -0.442392 0.499394 -0.580190 0.799099 -0.157545 -0.284888 -0.439379 -0.851930 -0.694445 -0.518027 0.499394 -0.660746 0.733890 -0.157545 -0.237268 -0.466817 -0.851930 -0.636327 -0.587957 0.499394 -0.734024 0.660597 -0.157545 -0.187525 -0.488926 -0.851930 -0.571852 -0.650839 0.499394 -0.798636 0.580827 -0.157545 -0.135249 -0.505887 -0.851930 -0.500489 -0.707189 0.499394 -0.855113 0.493925 -0.157545 -0.081484 -0.517276 -0.851930 -0.423615 -0.755749 0.499394 -0.902170 0.401583 -0.157545 -0.026821 -0.522968 -0.851930 -0.342074 -0.795985 0.499394 -0.939290 0.304817 -0.157545 0.027615 -0.522926 -0.851930 -0.257592 -0.827195 0.499394 -0.965859 0.205660 -0.157545 0.082269 -0.517152 -0.851930 -0.169477 -0.849637 0.499394 -0.982094 0.103298 -0.157545 -0.034866 -0.987772 -0.151960 0.222138 -0.155908 0.962469 -0.974392 -0.000198 0.224857 0.068851 -0.985986 -0.151960 0.237254 -0.131768 0.962469 -0.969005 -0.102321 0.224857 0.170837 -0.973511 -0.151960 0.249652 -0.106426 0.962469 -0.953147 -0.202363 0.224857 0.271927 -0.950244 -0.151960 0.259431 -0.079675 0.962469 -0.926688 -0.301145 0.224857 0.370022 -0.916511 -0.151960 0.266353 -0.052046 0.962469 -0.890022 -0.396610 0.224857 0.463168 -0.873146 -0.151960 0.270317 -0.024114 0.962469 -0.844040 -0.486863 0.224857 0.552129 -0.819794 -0.151960 0.271355 0.004350 0.962469 -0.788365 -0.572642 0.224857 0.635009 -0.757412 -0.151960 0.269405 0.032766 0.962469 -0.724006 -0.652115 0.224857 0.710893 -0.686687 -0.151960 0.264487 0.060821 0.962469 -0.651673 -0.724405 0.224857 0.778339 -0.609177 -0.151960 0.256744 0.087950 0.962469 -0.572949 -0.788142 0.224857 0.837899 -0.524246 -0.151960 0.246112 0.114374 0.962469 -0.487191 -0.843851 0.224857 0.888229 -0.433541 -0.151960 0.232769 0.139538 0.962469 -0.396066 -0.890265 0.224857 0.928437 -0.338989 -0.151960 0.217026 0.162949 0.962469 -0.301505 -0.926571 0.224857 0.958852 -0.239816 -0.151960 0.198752 0.184797 0.962469 -0.202733 -0.953068 0.224857 0.978705 -0.138000 -0.151960 0.178290 0.204610 0.962469 -0.101729 -0.969067 0.224857 0.987750 -0.035470 -0.151960 0.156044 0.222042 0.962469 -0.000397 -0.974392 0.224857 0.986028 0.068249 -0.151960 0.131913 0.237174 0.962469 0.101729 -0.969067 0.224857 0.973444 0.171216 -0.151960 0.106329 0.249693 0.962469 0.202733 -0.953068 0.224857 0.950138 0.272297 -0.151960 0.079574 0.259462 0.962469 0.301505 -0.926571 0.224857 0.916737 0.369462 -0.151960 0.052208 0.266321 0.962469 0.396066 -0.890265 0.224857 0.872966 0.463508 -0.151960 0.024009 0.270326 0.962469 0.487191 -0.843851 0.224857 0.819579 0.552448 -0.151960 -0.004456 0.271353 0.962469 0.572949 -0.788142 0.224857 0.757799 0.634546 -0.151960 -0.032602 0.269425 0.962469 0.651673 -0.724405 0.224857 0.687121 0.710474 -0.151960 -0.060660 0.264524 0.962469 0.724006 -0.652115 0.224857 0.608874 0.778576 -0.151960 -0.088050 0.256709 0.962469 0.788365 -0.572642 0.224857 0.523920 0.838102 -0.151960 -0.114470 0.246067 0.962469 0.844040 -0.486863 0.224857 0.434084 0.887964 -0.151960 -0.139396 0.232855 0.962469 0.890022 -0.396610 0.224857 0.338628 0.928568 -0.151960 -0.163033 0.216962 0.962469 0.926688 -0.301145 0.224857 0.239443 0.958945 -0.151960 -0.184875 0.198680 0.962469 0.953147 -0.202363 0.224857 0.138598 0.978621 -0.151960 -0.204501 0.178415 0.962469 0.969005 -0.102321 0.224857 0.035268 0.987757 -0.151960 -0.222074 0.155999 0.962469 0.974392 -0.000198 0.224857 -0.068450 0.986014 -0.151960 -0.237201 0.131865 0.962469 0.969046 0.101926 0.224857 -0.171414 0.973409 -0.151960 -0.249715 0.106278 0.962469 0.953027 0.202928 0.224857 -0.271540 0.950355 -0.151960 -0.259399 0.079780 0.962469 0.926811 0.300767 0.224857 -0.369649 0.916661 -0.151960 -0.266331 0.052154 0.962469 0.890184 0.396247 0.224857 -0.463685 0.872871 -0.151960 -0.270331 0.023953 0.962469 0.843752 0.487363 0.224857 -0.552615 0.819466 -0.151960 -0.271352 -0.004511 0.962469 0.788026 0.573110 0.224857 -0.634700 0.757670 -0.151960 -0.269418 -0.032657 0.962469 0.724272 0.651820 0.224857 -0.710614 0.686976 -0.151960 -0.264512 -0.060714 0.962469 0.651968 0.724139 0.224857 -0.778700 0.608715 -0.151960 -0.256692 -0.088102 0.962469 0.572482 0.788482 0.224857 -0.837685 0.524587 -0.151960 -0.246159 -0.114274 0.962469 0.487534 0.843652 0.224857 -0.888052 0.433903 -0.151960 -0.232826 -0.139444 0.962469 0.396429 0.890103 0.224857 -0.928637 0.338439 -0.151960 -0.216929 -0.163077 0.962469 0.300956 0.926750 0.224857 -0.958994 0.239247 -0.151960 -0.198643 -0.184915 0.962469 0.202169 0.953188 0.224857 -0.978649 0.138399 -0.151960 -0.178373 -0.204538 0.962469 0.102123 0.969025 0.224857 -0.987764 0.035067 -0.151960 -0.155954 -0.222106 0.962469 0.000000 0.974392 0.224857 -0.986000 -0.068651 -0.151960 -0.131816 -0.237228 0.962469 -0.102123 0.969025 0.224857 -0.973545 -0.170639 -0.151960 -0.106477 -0.249630 0.962469 -0.202169 0.953188 0.224857 -0.950299 -0.271734 -0.151960 -0.079728 -0.259415 0.962469 -0.300956 0.926750 0.224857 -0.916586 -0.369835 -0.151960 -0.052100 -0.266342 0.962469 -0.396429 0.890103 0.224857 -0.872777 -0.463863 -0.151960 -0.023898 -0.270336 0.962469 -0.487534 0.843652 0.224857 -0.819906 -0.551962 -0.151960 0.004295 -0.271356 0.962469 -0.572482 0.788482 0.224857 -0.757541 -0.634854 -0.151960 0.032711 -0.269411 0.962469 -0.651968 0.724139 0.224857 -0.686831 -0.710754 -0.151960 0.060767 -0.264499 0.962469 -0.724272 0.651820 0.224857 -0.609335 -0.778215 -0.151960 0.087897 -0.256762 0.962469 -0.788026 0.573110 0.224857 -0.524417 -0.837792 -0.151960 0.114324 -0.246135 0.962469 -0.843752 0.487363 0.224857 -0.433722 -0.888140 -0.151960 0.139491 -0.232798 0.962469 -0.890184 0.396247 0.224857 -0.338250 -0.928706 -0.151960 0.163122 -0.216896 0.962469 -0.926811 0.300767 0.224857 -0.240011 -0.958803 -0.151960 0.184757 -0.198790 0.962469 -0.953027 0.202928 0.224857 -0.138200 -0.978677 -0.151960 0.204574 -0.178331 0.962469 -0.969046 0.101926 0.224857 0.289366 -0.919989 -0.264361 -0.678979 -0.391943 0.620780 -0.674725 -0.000137 -0.738069 0.384194 -0.884595 -0.264361 -0.634161 -0.460947 0.620780 -0.670995 -0.070853 -0.738069 0.473950 -0.839931 -0.264361 -0.582883 -0.524290 0.620780 -0.660014 -0.140128 -0.738069 0.559371 -0.785632 -0.264361 -0.524723 -0.582493 0.620780 -0.641693 -0.208530 -0.738069 0.638630 -0.722679 -0.264361 -0.460784 -0.634279 0.620780 -0.616303 -0.274636 -0.738069 0.710203 -0.652476 -0.264361 -0.392448 -0.678688 0.620780 -0.584463 -0.337132 -0.738069 0.774676 -0.574449 -0.264361 -0.319155 -0.716081 0.620780 -0.545910 -0.396531 -0.738069 0.830615 -0.490093 -0.264361 -0.242347 -0.745587 0.620780 -0.501344 -0.451562 -0.738069 0.877406 -0.400340 -0.264361 -0.162870 -0.766881 0.620780 -0.451256 -0.501620 -0.738069 0.914226 -0.307091 -0.264361 -0.082378 -0.779645 0.620780 -0.396743 -0.545756 -0.738069 0.941376 -0.209582 -0.264361 -0.000212 -0.783985 0.620780 -0.337359 -0.584331 -0.738069 0.958157 -0.109765 -0.264361 0.081957 -0.779689 0.620780 -0.274259 -0.616471 -0.738069 0.964375 -0.009703 -0.264361 0.162455 -0.766968 0.620780 -0.208780 -0.641612 -0.738069 0.960081 0.091424 -0.264361 0.241945 -0.745718 0.620780 -0.140384 -0.659960 -0.738069 0.945211 0.191544 -0.264361 0.318769 -0.716253 0.620780 -0.070443 -0.671038 -0.738069 0.920166 0.288804 -0.264361 0.391528 -0.679218 0.620780 -0.000275 -0.674725 -0.738069 0.884830 0.383654 -0.264361 0.460559 -0.634443 0.620780 0.070443 -0.671038 -0.738069 0.839747 0.474277 -0.264361 0.524517 -0.582679 0.620780 0.140384 -0.659960 -0.738069 0.785414 0.559677 -0.264361 0.582697 -0.524497 0.620780 0.208780 -0.641612 -0.738069 0.723069 0.638188 -0.264361 0.633998 -0.461171 0.620780 0.274259 -0.616471 -0.738069 0.652200 0.710456 -0.264361 0.678840 -0.392184 0.620780 0.337359 -0.584331 -0.738069 0.574147 0.774899 -0.264361 0.716205 -0.318877 0.620780 0.396743 -0.545756 -0.738069 0.490601 0.830316 -0.264361 0.745439 -0.242803 0.620780 0.451256 -0.501620 -0.738069 0.400876 0.877161 -0.264361 0.766781 -0.163338 0.620780 0.501344 -0.451562 -0.738069 0.306735 0.914345 -0.264361 0.779677 -0.082074 0.620780 0.545910 -0.396531 -0.738069 0.209216 0.941457 -0.264361 0.783985 0.000093 0.620780 0.584463 -0.337132 -0.738069 0.110350 0.958090 -0.264361 0.779739 0.081480 0.620780 0.616303 -0.274636 -0.738069 0.009328 0.964379 -0.264361 0.766905 0.162754 0.620780 0.641693 -0.208530 -0.738069 -0.091797 0.960045 -0.264361 0.745624 0.242235 0.620780 0.660014 -0.140128 -0.738069 -0.190966 0.945328 -0.264361 0.716448 0.318331 0.620780 0.670995 -0.070853 -0.738069 -0.288992 0.920107 -0.264361 0.679139 0.391667 0.620780 0.674725 -0.000137 -0.738069 -0.383834 0.884751 -0.264361 0.634349 0.460688 0.620780 0.671024 0.070579 -0.738069 -0.474448 0.839650 -0.264361 0.582572 0.524635 0.620780 0.659931 0.140519 -0.738069 -0.559051 0.785860 -0.264361 0.524960 0.582279 0.620780 0.641778 0.208269 -0.738069 -0.638336 0.722939 -0.264361 0.461042 0.634092 0.620780 0.616415 0.274385 -0.738069 -0.710589 0.652055 -0.264361 0.392046 0.678920 0.620780 0.584263 0.337478 -0.738069 -0.775016 0.573989 -0.264361 0.318731 0.716270 0.620780 0.545675 0.396854 -0.738069 -0.830416 0.490432 -0.264361 0.242651 0.745488 0.620780 0.501528 0.451358 -0.738069 -0.877243 0.400697 -0.264361 0.163182 0.766814 0.620780 0.451460 0.501436 -0.738069 -0.914408 0.306549 -0.264361 0.081916 0.779694 0.620780 0.396420 0.545991 -0.738069 -0.941291 0.209965 -0.264361 0.000531 0.783985 0.620780 0.337597 0.584194 -0.738069 -0.958112 0.110155 -0.264361 -0.081639 0.779723 0.620780 0.274510 0.616359 -0.738069 -0.964381 0.009131 -0.264361 -0.162910 0.766872 0.620780 0.208399 0.641735 -0.738069 -0.960026 -0.091993 -0.264361 -0.242386 0.745574 0.620780 0.139993 0.660043 -0.738069 -0.945289 -0.191159 -0.264361 -0.318477 0.716383 0.620780 0.070716 0.671009 -0.738069 -0.920048 -0.289179 -0.264361 -0.391805 0.679059 0.620780 0.000000 0.674725 -0.738069 -0.884673 -0.384014 -0.264361 -0.460817 0.634255 0.620780 -0.070716 0.671009 -0.738069 -0.840028 -0.473779 -0.264361 -0.524171 0.582990 0.620780 -0.139993 0.660043 -0.738069 -0.785746 -0.559211 -0.264361 -0.582386 0.524842 0.620780 -0.208399 0.641735 -0.738069 -0.722809 -0.638483 -0.264361 -0.634186 0.460913 0.620780 -0.274510 0.616359 -0.738069 -0.651911 -0.710722 -0.264361 -0.679000 0.391907 0.620780 -0.337597 0.584194 -0.738069 -0.574606 -0.774559 -0.264361 -0.716016 0.319301 0.620780 -0.396420 0.545991 -0.738069 -0.490262 -0.830516 -0.264361 -0.745538 0.242499 0.620780 -0.451460 0.501436 -0.738069 -0.400518 -0.877325 -0.264361 -0.766847 0.163026 0.620780 -0.501528 0.451358 -0.738069 -0.307277 -0.914163 -0.264361 -0.779628 0.082537 0.620780 -0.545675 0.396854 -0.738069 -0.209774 -0.941333 -0.264361 -0.783985 0.000371 0.620780 -0.584263 0.337478 -0.738069 -0.109960 -0.958135 -0.264361 -0.779706 -0.081798 0.620780 -0.616415 0.274385 -0.738069 -0.008935 -0.964382 -0.264361 -0.766839 -0.163066 0.620780 -0.641778 0.208269 -0.738069 0.091228 -0.960099 -0.264361 -0.745767 -0.241793 0.620780 -0.659931 0.140519 -0.738069 0.191351 -0.945250 -0.264361 -0.716318 -0.318623 0.620780 -0.671024 0.070579 -0.738069 0.309550 -0.804657 -0.506662 -0.419263 -0.593740 0.686798 -0.853462 -0.000174 -0.521155 0.392179 -0.767782 -0.506662 -0.354726 -0.634412 0.686798 -0.848743 -0.089622 -0.521155 0.469765 -0.722921 -0.506662 -0.286949 -0.667809 0.686798 -0.834854 -0.177248 -0.521155 0.542945 -0.669705 -0.506662 -0.215378 -0.694205 0.686798 -0.811679 -0.263770 -0.521155 0.610145 -0.609112 -0.506662 -0.141434 -0.712955 0.686798 -0.779564 -0.347387 -0.521155 0.670082 -0.542480 -0.506662 -0.066656 -0.723786 0.686798 -0.739288 -0.426439 -0.521155 0.723247 -0.469263 -0.506662 0.009569 -0.726785 0.686798 -0.690523 -0.501573 -0.521155 0.768446 -0.390877 -0.506662 0.085689 -0.721780 0.686798 -0.634152 -0.571182 -0.521155 0.805181 -0.308185 -0.506662 0.160865 -0.708824 0.686798 -0.570795 -0.634500 -0.521155 0.832824 -0.222932 -0.506662 0.233580 -0.688294 0.686798 -0.501842 -0.690328 -0.521155 0.851602 -0.134419 -0.506662 0.304432 -0.660022 0.686798 -0.426726 -0.739122 -0.521155 0.861000 -0.044424 -0.506662 0.371930 -0.624481 0.686798 -0.346911 -0.779776 -0.521155 0.860959 0.045198 -0.506662 0.434750 -0.582496 0.686798 -0.264086 -0.811576 -0.521155 0.851481 0.135184 -0.506662 0.493405 -0.533723 0.686798 -0.177573 -0.834785 -0.521155 0.832623 0.223681 -0.506662 0.546626 -0.479071 0.686798 -0.089103 -0.848798 -0.521155 0.804846 0.309058 -0.506662 0.593484 -0.419626 0.686798 -0.000348 -0.853462 -0.521155 0.768022 0.391710 -0.506662 0.634195 -0.355113 0.686798 0.089103 -0.848798 -0.521155 0.722738 0.470047 -0.506662 0.667920 -0.286689 0.686798 0.177573 -0.834785 -0.521155 0.669493 0.543206 -0.506662 0.694289 -0.215107 0.686798 0.264086 -0.811576 -0.521155 0.609484 0.609773 -0.506662 0.712869 -0.141869 0.686798 0.346911 -0.779776 -0.521155 0.542219 0.670293 -0.506662 0.723811 -0.066374 0.686798 0.426726 -0.739122 -0.521155 0.468981 0.723430 -0.506662 0.726782 0.009852 0.686798 0.501842 -0.690328 -0.521155 0.391346 0.768207 -0.506662 0.721832 0.085248 0.686798 0.570795 -0.634500 -0.521155 0.308677 0.804992 -0.506662 0.708922 0.160432 0.686798 0.634152 -0.571182 -0.521155 0.222608 0.832910 -0.506662 0.688203 0.233848 0.686798 0.690523 -0.501573 -0.521155 0.134088 0.851654 -0.506662 0.659904 0.304689 0.686798 0.739288 -0.426439 -0.521155 0.044950 0.860972 -0.506662 0.624708 0.371549 0.686798 0.779564 -0.347387 -0.521155 -0.045533 0.860942 -0.506662 0.582326 0.434976 0.686798 0.811679 -0.263770 -0.521155 -0.135515 0.851428 -0.506662 0.533531 0.493613 0.686798 0.834854 -0.177248 -0.521155 -0.223172 0.832759 -0.506662 0.479405 0.546333 0.686798 0.848743 -0.089622 -0.521155 -0.309222 0.804783 -0.506662 0.419505 0.593569 0.686798 0.853462 -0.000174 -0.521155 -0.391866 0.767942 -0.506662 0.354984 0.634267 0.686798 0.848780 0.089276 -0.521155 -0.470194 0.722642 -0.506662 0.286553 0.667979 0.686798 0.834749 0.177743 -0.521155 -0.542673 0.669926 -0.506662 0.215660 0.694117 0.686798 0.811786 0.263440 -0.521155 -0.609897 0.609360 -0.506662 0.141724 0.712897 0.686798 0.779705 0.347070 -0.521155 -0.670403 0.542083 -0.506662 0.066227 0.723825 0.686798 0.739036 0.426877 -0.521155 -0.723525 0.468834 -0.506662 -0.010000 0.726780 0.686798 0.690226 0.501982 -0.521155 -0.768287 0.391190 -0.506662 -0.085395 0.721815 0.686798 0.634384 0.570924 -0.521155 -0.805055 0.308513 -0.506662 -0.160576 0.708889 0.686798 0.571053 0.634268 -0.521155 -0.832956 0.222439 -0.506662 -0.233988 0.688156 0.686798 0.501432 0.690625 -0.521155 -0.851547 0.134766 -0.506662 -0.304163 0.660146 0.686798 0.427028 0.738949 -0.521155 -0.860982 0.044775 -0.506662 -0.371676 0.624632 0.686798 0.347229 0.779634 -0.521155 -0.860932 -0.045708 -0.506662 -0.435095 0.582238 0.686798 0.263605 0.811733 -0.521155 -0.851400 -0.135689 -0.506662 -0.493721 0.533430 0.686798 0.177078 0.834890 -0.521155 -0.832714 -0.223342 -0.506662 -0.546431 0.479293 0.686798 0.089449 0.848762 -0.521155 -0.804720 -0.309386 -0.506662 -0.593655 0.419384 0.686798 0.000000 0.853462 -0.521155 -0.767862 -0.392022 -0.506662 -0.634339 0.354855 0.686798 -0.089449 0.848762 -0.521155 -0.723017 -0.469618 -0.506662 -0.667750 0.287085 0.686798 -0.177078 0.834890 -0.521155 -0.669815 -0.542809 -0.506662 -0.694161 0.215519 0.686798 -0.263605 0.811733 -0.521155 -0.609236 -0.610021 -0.506662 -0.712926 0.141579 0.686798 -0.347229 0.779634 -0.521155 -0.541946 -0.670514 -0.506662 -0.723838 0.066079 0.686798 -0.427028 0.738949 -0.521155 -0.469410 -0.723152 -0.506662 -0.726787 -0.009421 0.686798 -0.501432 0.690625 -0.521155 -0.391033 -0.768366 -0.506662 -0.721797 -0.085542 0.686798 -0.571053 0.634268 -0.521155 -0.308349 -0.805118 -0.506662 -0.708856 -0.160720 0.686798 -0.634384 0.570924 -0.521155 -0.223102 -0.832778 -0.506662 -0.688342 -0.233440 0.686798 -0.690226 0.501982 -0.521155 -0.134592 -0.851574 -0.506662 -0.660084 -0.304298 0.686798 -0.739036 0.426877 -0.521155 -0.044600 -0.860991 -0.506662 -0.624556 -0.371803 0.686798 -0.779705 0.347070 -0.521155 0.045884 -0.860923 -0.506662 -0.582149 -0.435214 0.686798 -0.811786 0.263440 -0.521155 0.135011 -0.851508 -0.506662 -0.533823 -0.493296 0.686798 -0.834749 0.177743 -0.521155 0.223511 -0.832668 -0.506662 -0.479182 -0.546528 0.686798 -0.848780 0.089276 -0.521155 0.178284 0.165074 0.970034 -0.030039 0.986281 -0.162318 -0.983521 -0.000200 0.180797 0.160001 0.182850 0.970034 -0.133243 0.977701 -0.162318 -0.978083 -0.103279 0.180797 0.140154 0.198473 0.970034 -0.234021 0.958586 -0.162318 -0.962076 -0.204259 0.180797 0.118581 0.212069 0.970034 -0.333199 0.928780 -0.162318 -0.935370 -0.303966 0.180797 0.095702 0.223329 0.970034 -0.428706 0.888743 -0.162318 -0.898361 -0.400326 0.180797 0.072000 0.232057 0.970034 -0.518653 0.839436 -0.162318 -0.851948 -0.491424 0.180797 0.047282 0.238325 0.970034 -0.603775 0.780454 -0.162318 -0.795751 -0.578007 0.180797 0.022044 0.241968 0.970034 -0.682247 0.712876 -0.162318 -0.730789 -0.658224 0.180797 -0.003438 0.242946 0.970034 -0.753204 0.637445 -0.162318 -0.657778 -0.731191 0.180797 -0.028640 0.241276 0.970034 -0.815309 0.555809 -0.162318 -0.578317 -0.795526 0.180797 -0.053770 0.236946 0.970034 -0.869072 0.467298 -0.162318 -0.491755 -0.851757 0.180797 -0.078307 0.230005 0.970034 -0.913262 0.373639 -0.162318 -0.399776 -0.898605 0.180797 -0.101762 0.220633 0.970034 -0.947116 0.276812 -0.162318 -0.304330 -0.935252 0.180797 -0.124325 0.208753 0.970034 -0.970911 0.176023 -0.162318 -0.204633 -0.961997 0.180797 -0.145519 0.194573 0.970034 -0.984013 0.073295 -0.162318 -0.102682 -0.978146 0.180797 -0.164965 0.178385 0.970034 -0.986299 -0.029437 -0.162318 -0.000401 -0.983520 0.180797 -0.182753 0.160113 0.970034 -0.977782 -0.132646 -0.162318 0.102682 -0.978146 0.180797 -0.198527 0.140077 0.970034 -0.958495 -0.234394 -0.162318 0.204633 -0.961997 0.180797 -0.212115 0.118498 0.970034 -0.928650 -0.333560 -0.162318 0.304330 -0.935252 0.180797 -0.223270 0.095838 0.970034 -0.889005 -0.428163 -0.162318 0.399776 -0.898605 0.180797 -0.232085 0.071910 0.970034 -0.839234 -0.518979 -0.162318 0.491755 -0.851757 0.180797 -0.238344 0.047190 0.970034 -0.780219 -0.604079 -0.162318 0.578317 -0.795526 0.180797 -0.241955 0.022192 0.970034 -0.713292 -0.681811 -0.162318 0.657778 -0.731191 0.180797 -0.242948 -0.003289 0.970034 -0.637905 -0.752815 -0.162318 0.730789 -0.658224 0.180797 -0.241265 -0.028734 0.970034 -0.555492 -0.815526 -0.162318 0.795751 -0.578007 0.180797 -0.236925 -0.053862 0.970034 -0.466960 -0.869253 -0.162318 0.851948 -0.491424 0.180797 -0.230053 -0.078167 0.970034 -0.374197 -0.913033 -0.162318 0.898361 -0.400326 0.180797 -0.220594 -0.101847 0.970034 -0.276444 -0.947223 -0.162318 0.935370 -0.303966 0.180797 -0.208705 -0.124406 0.970034 -0.175645 -0.970980 -0.162318 0.962076 -0.204259 0.180797 -0.194662 -0.145400 0.970034 -0.073896 -0.983968 -0.162318 0.978083 -0.103279 0.180797 -0.178351 -0.165001 0.970034 0.029637 -0.986293 -0.162318 0.983521 -0.000200 0.180797 -0.160075 -0.182785 0.970034 0.132845 -0.977755 -0.162318 0.978125 0.102881 0.180797 -0.140037 -0.198556 0.970034 0.234589 -0.958447 -0.162318 0.961955 0.204829 0.180797 -0.118667 -0.212020 0.970034 0.332820 -0.928915 -0.162318 0.935494 0.303585 0.180797 -0.095792 -0.223290 0.970034 0.428344 -0.888917 -0.162318 0.898524 0.399960 0.180797 -0.071863 -0.232100 0.970034 0.519150 -0.839128 -0.162318 0.851657 0.491928 0.180797 -0.047141 -0.238353 0.970034 0.604238 -0.780096 -0.162318 0.795408 0.578479 0.180797 -0.022142 -0.241959 0.970034 0.681957 -0.713154 -0.162318 0.731057 0.657927 0.180797 0.003339 -0.242947 0.970034 0.752944 -0.637752 -0.162318 0.658076 0.730923 0.180797 0.028783 -0.241259 0.970034 0.815639 -0.555326 -0.162318 0.577845 0.795869 0.180797 0.053673 -0.236968 0.970034 0.868881 -0.467652 -0.162318 0.492102 0.851556 0.180797 0.078214 -0.230037 0.970034 0.913109 -0.374011 -0.162318 0.400143 0.898442 0.180797 0.101892 -0.220573 0.970034 0.947279 -0.276251 -0.162318 0.303776 0.935432 0.180797 0.124449 -0.208679 0.970034 0.971015 -0.175448 -0.162318 0.204063 0.962118 0.180797 0.145440 -0.194632 0.970034 0.983983 -0.073696 -0.162318 0.103080 0.978104 0.180797 0.165038 -0.178317 0.970034 0.986287 0.029838 -0.162318 0.000000 0.983521 0.180797 0.182818 -0.160038 0.970034 0.977728 0.133044 -0.162318 -0.103080 0.978104 0.180797 0.198444 -0.140195 0.970034 0.958634 0.233826 -0.162318 -0.204063 0.962118 0.180797 0.212044 -0.118624 0.970034 0.928847 0.333009 -0.162318 -0.303776 0.935432 0.180797 0.223309 -0.095747 0.970034 0.888830 0.428525 -0.162318 -0.400143 0.898442 0.180797 0.232114 -0.071815 0.970034 0.839022 0.519321 -0.162318 -0.492102 0.851556 0.180797 0.238316 -0.047331 0.970034 0.780577 0.603616 -0.162318 -0.577845 0.795869 0.180797 0.241964 -0.022093 0.970034 0.713015 0.682102 -0.162318 -0.658076 0.730923 0.180797 0.242947 0.003388 0.970034 0.637599 0.753074 -0.162318 -0.731057 0.657927 0.180797 0.241282 0.028591 0.970034 0.555975 0.815196 -0.162318 -0.795408 0.578479 0.180797 0.236957 0.053721 0.970034 0.467475 0.868977 -0.162318 -0.851657 0.491928 0.180797 0.230021 0.078260 0.970034 0.373825 0.913185 -0.162318 -0.898524 0.399960 0.180797 0.220552 0.101937 0.970034 0.276058 0.947336 -0.162318 -0.935494 0.303585 0.180797 0.208778 0.124283 0.970034 0.176221 0.970875 -0.162318 -0.961955 0.204829 0.180797 0.194603 0.145480 0.970034 0.073496 0.983998 -0.162318 -0.978125 0.102881 0.180797 -0.195073 -0.628991 -0.752540 0.158076 -0.777412 0.608804 -0.967966 -0.000197 0.251080 -0.128076 -0.645972 -0.752540 0.238684 -0.756563 0.608804 -0.962615 -0.101646 0.251080 -0.060324 -0.655778 -0.752540 0.315935 -0.727697 0.608804 -0.946861 -0.201028 0.251080 0.008739 -0.658488 -0.752540 0.390463 -0.690577 0.608804 -0.920577 -0.299159 0.251080 0.077705 -0.653946 -0.752540 0.460690 -0.645851 0.608804 -0.884153 -0.393994 0.251080 0.145173 -0.642346 -0.752540 0.525248 -0.594536 0.608804 -0.838474 -0.483652 0.251080 0.211696 -0.623593 -0.752540 0.584667 -0.536212 0.608804 -0.783167 -0.568866 0.251080 0.275887 -0.597971 -0.752540 0.637646 -0.471981 0.608804 -0.719232 -0.647815 0.251080 0.337039 -0.565763 -0.752540 0.683601 -0.402552 0.608804 -0.647375 -0.719628 0.251080 0.393951 -0.527717 -0.752540 0.721697 -0.329411 0.608804 -0.569171 -0.782945 0.251080 0.447090 -0.483522 -0.752540 0.752247 -0.251957 0.608804 -0.483978 -0.838286 0.251080 0.495304 -0.434001 -0.752540 0.774511 -0.171729 0.608804 -0.393454 -0.884394 0.251080 0.537683 -0.380237 -0.752540 0.788154 -0.090397 0.608804 -0.299517 -0.920461 0.251080 0.574573 -0.321790 -0.752540 0.793287 -0.007295 0.608804 -0.201397 -0.946783 0.251080 0.605135 -0.259798 -0.752540 0.789683 0.075888 0.608804 -0.101058 -0.962676 0.251080 0.628872 -0.195457 -0.752540 0.777509 0.157601 0.608804 -0.000394 -0.967966 0.251080 0.645894 -0.128471 -0.752540 0.756709 0.238221 0.608804 0.101058 -0.962676 0.251080 0.655801 -0.060069 -0.752540 0.727574 0.316218 0.608804 0.201397 -0.946783 0.251080 0.658485 0.008995 -0.752540 0.690425 0.390731 0.608804 0.299517 -0.920461 0.251080 0.653993 0.077305 -0.752540 0.646132 0.460295 0.608804 0.393454 -0.884394 0.251080 0.642289 0.145423 -0.752540 0.594331 0.525479 0.608804 0.483978 -0.838286 0.251080 0.623511 0.211938 -0.752540 0.535984 0.584875 0.608804 0.569171 -0.782945 0.251080 0.598140 0.275521 -0.752540 0.472371 0.637357 0.608804 0.647375 -0.719628 0.251080 0.565969 0.336693 -0.752540 0.402970 0.683355 0.608804 0.719232 -0.647815 0.251080 0.527564 0.394157 -0.752540 0.329130 0.721825 0.608804 0.783167 -0.568866 0.251080 0.483348 0.447278 -0.752540 0.251665 0.752345 0.608804 0.838474 -0.483652 0.251080 0.434303 0.495039 -0.752540 0.172202 0.774406 0.608804 0.884153 -0.393994 0.251080 0.380028 0.537831 -0.752540 0.090090 0.788189 0.608804 0.920577 -0.299159 0.251080 0.321566 0.574699 -0.752540 0.006986 0.793290 0.608804 0.946861 -0.201028 0.251080 0.260168 0.604976 -0.752540 -0.075405 0.789729 0.608804 0.962615 -0.101646 0.251080 0.195329 0.628912 -0.752540 -0.157759 0.777477 0.608804 0.967966 -0.000197 0.251080 0.128339 0.645920 -0.752540 -0.238375 0.756661 0.608804 0.962656 0.101254 0.251080 0.059935 0.655813 -0.752540 -0.316366 0.727510 0.608804 0.946742 0.201589 0.251080 -0.008470 0.658492 -0.752540 -0.390181 0.690736 0.608804 0.920699 0.298784 0.251080 -0.077438 0.653978 -0.752540 -0.460427 0.646038 0.608804 0.884314 0.393634 0.251080 -0.145553 0.642260 -0.752540 -0.525600 0.594224 0.608804 0.838188 0.484149 0.251080 -0.212065 0.623467 -0.752540 -0.584984 0.535865 0.608804 0.782829 0.569330 0.251080 -0.275643 0.598084 -0.752540 -0.637453 0.472241 0.608804 0.719496 0.647522 0.251080 -0.336809 0.565900 -0.752540 -0.683437 0.402830 0.608804 0.647668 0.719364 0.251080 -0.394264 0.527484 -0.752540 -0.721892 0.328983 0.608804 0.568707 0.783282 0.251080 -0.446893 0.483704 -0.752540 -0.752144 0.252264 0.608804 0.484319 0.838089 0.251080 -0.495128 0.434203 -0.752540 -0.774441 0.172044 0.608804 0.393814 0.884234 0.251080 -0.537908 0.379918 -0.752540 -0.788207 0.089930 0.608804 0.298971 0.920638 0.251080 -0.574764 0.321449 -0.752540 -0.793292 0.006825 0.608804 0.200835 0.946902 0.251080 -0.605029 0.260045 -0.752540 -0.789714 -0.075566 0.608804 0.101450 0.962635 0.251080 -0.628951 0.195201 -0.752540 -0.777445 -0.157917 0.608804 0.000000 0.967966 0.251080 -0.645946 0.128207 -0.752540 -0.756612 -0.238529 0.608804 -0.101450 0.962635 0.251080 -0.655765 0.060457 -0.752540 -0.727762 -0.315787 0.608804 -0.200835 0.946902 0.251080 -0.658490 -0.008604 -0.752540 -0.690657 -0.390322 0.608804 -0.298971 0.920638 0.251080 -0.653962 -0.077572 -0.752540 -0.645945 -0.460558 0.608804 -0.393814 0.884234 0.251080 -0.642230 -0.145684 -0.752540 -0.594117 -0.525721 0.608804 -0.484319 0.838089 0.251080 -0.623636 -0.211569 -0.752540 -0.536331 -0.584558 0.608804 -0.568707 0.783282 0.251080 -0.598028 -0.275765 -0.752540 -0.472111 -0.637549 0.608804 -0.647668 0.719364 0.251080 -0.565832 -0.336924 -0.752540 -0.402691 -0.683519 0.608804 -0.719496 0.647522 0.251080 -0.527798 -0.393844 -0.752540 -0.329558 -0.721630 0.608804 -0.782829 0.569330 0.251080 -0.483613 -0.446992 -0.752540 -0.252110 -0.752196 0.608804 -0.838188 0.484149 0.251080 -0.434102 -0.495216 -0.752540 -0.171887 -0.774476 0.608804 -0.884314 0.393634 0.251080 -0.379809 -0.537986 -0.752540 -0.089769 -0.788226 0.608804 -0.920699 0.298784 0.251080 -0.321907 -0.574508 -0.752540 -0.007456 -0.793286 0.608804 -0.946742 0.201589 0.251080 -0.259921 -0.605082 -0.752540 0.075727 -0.789698 0.608804 -0.962656 0.101254 0.251080 -0.036710 0.990068 -0.135708 -0.257175 -0.140586 -0.956084 -0.965667 -0.000197 0.259782 -0.140274 0.980768 -0.135708 -0.241024 -0.166765 -0.956084 -0.960328 -0.101404 0.259782 -0.241332 0.960907 -0.135708 -0.222410 -0.190885 -0.956084 -0.944613 -0.200551 0.259782 -0.340713 0.930321 -0.135708 -0.201179 -0.213144 -0.956084 -0.918391 -0.298448 0.259782 -0.436341 0.889489 -0.135708 -0.177732 -0.233055 -0.956084 -0.882053 -0.393059 0.259782 -0.526323 0.839385 -0.135708 -0.152577 -0.250247 -0.956084 -0.836483 -0.482503 0.259782 -0.611398 0.779600 -0.135708 -0.125509 -0.264860 -0.956084 -0.781307 -0.567515 0.259782 -0.689738 0.711227 -0.135708 -0.097059 -0.276556 -0.956084 -0.717524 -0.646276 0.259782 -0.760481 0.635021 -0.135708 -0.067539 -0.285205 -0.956084 -0.645838 -0.717919 0.259782 -0.822296 0.552642 -0.135708 -0.037566 -0.290675 -0.956084 -0.567819 -0.781086 0.259782 -0.875688 0.463416 -0.135708 -0.006895 -0.293012 -0.956084 -0.482828 -0.836295 0.259782 -0.919434 0.369085 -0.135708 0.023853 -0.292121 -0.956084 -0.392520 -0.882293 0.259782 -0.952782 0.271642 -0.135708 0.054050 -0.288066 -0.956084 -0.298806 -0.918275 0.259782 -0.976005 0.170288 -0.135708 0.083944 -0.280815 -0.956084 -0.200918 -0.944534 0.259782 -0.988477 0.067058 -0.135708 0.112913 -0.270470 -0.956084 -0.100818 -0.960390 0.259782 -0.990091 -0.036105 -0.135708 0.140428 -0.257261 -0.956084 -0.000393 -0.965667 0.259782 -0.980854 -0.139675 -0.135708 0.166618 -0.241126 -0.956084 0.100818 -0.960390 0.259782 -0.960813 -0.241706 -0.135708 0.190972 -0.222336 -0.956084 0.200918 -0.944534 0.259782 -0.930189 -0.341075 -0.135708 0.213223 -0.201096 -0.956084 0.298806 -0.918275 0.259782 -0.889755 -0.435797 -0.135708 0.232947 -0.177874 -0.956084 0.392520 -0.882293 0.259782 -0.839180 -0.526650 -0.135708 0.250306 -0.152480 -0.956084 0.482828 -0.836295 0.259782 -0.779362 -0.611701 -0.135708 0.264909 -0.125406 -0.956084 0.567819 -0.781086 0.259782 -0.711648 -0.689304 -0.135708 0.276496 -0.097228 -0.956084 0.645838 -0.717919 0.259782 -0.635485 -0.760093 -0.135708 0.285164 -0.067714 -0.956084 0.717524 -0.646276 0.259782 -0.552322 -0.822511 -0.135708 0.290690 -0.037453 -0.956084 0.781307 -0.567515 0.259782 -0.463075 -0.875868 -0.135708 0.293014 -0.006781 -0.956084 0.836483 -0.482503 0.259782 -0.369647 -0.919209 -0.135708 0.292135 0.023674 -0.956084 0.882053 -0.393059 0.259782 -0.271271 -0.952888 -0.135708 0.288045 0.054162 -0.956084 0.918391 -0.298448 0.259782 -0.169908 -0.976071 -0.135708 0.280782 0.084053 -0.956084 0.944613 -0.200551 0.259782 -0.067661 -0.988436 -0.135708 0.270539 0.112747 -0.956084 0.960328 -0.101404 0.259782 0.036306 -0.990083 -0.135708 0.257232 0.140481 -0.956084 0.965667 -0.000197 0.259782 0.139874 -0.980825 -0.135708 0.241092 0.166667 -0.956084 0.960370 0.101013 0.259782 0.241901 -0.960764 -0.135708 0.222297 0.191017 -0.956084 0.944493 0.201111 0.259782 0.340334 -0.930460 -0.135708 0.201266 0.213062 -0.956084 0.918512 0.298074 0.259782 0.435978 -0.889666 -0.135708 0.177827 0.232983 -0.956084 0.882213 0.392699 0.259782 0.526821 -0.839073 -0.135708 0.152429 0.250337 -0.956084 0.836197 0.482999 0.259782 0.611860 -0.779237 -0.135708 0.125352 0.264934 -0.956084 0.780970 0.567978 0.259782 0.689449 -0.711508 -0.135708 0.097171 0.276516 -0.956084 0.717787 0.645984 0.259782 0.760223 -0.635330 -0.135708 0.067655 0.285177 -0.956084 0.646130 0.717655 0.259782 0.822623 -0.552154 -0.135708 0.037394 0.290698 -0.956084 0.567356 0.781422 0.259782 0.875499 -0.463772 -0.135708 0.007014 0.293009 -0.956084 0.483169 0.836099 0.259782 0.919284 -0.369460 -0.135708 -0.023734 0.292130 -0.956084 0.392879 0.882133 0.259782 0.952943 -0.271077 -0.135708 -0.054221 0.288034 -0.956084 0.298261 0.918452 0.259782 0.976106 -0.169709 -0.135708 -0.084110 0.280765 -0.956084 0.200358 0.944653 0.259782 0.988449 -0.067460 -0.135708 -0.112802 0.270516 -0.956084 0.101209 0.960349 0.259782 0.990076 0.036508 -0.135708 -0.140533 0.257204 -0.956084 0.000000 0.965667 0.259782 0.980797 0.140074 -0.135708 -0.166716 0.241058 -0.956084 -0.101209 0.960349 0.259782 0.960956 0.241136 -0.135708 -0.190840 0.222449 -0.956084 -0.200358 0.944653 0.259782 0.930391 0.340523 -0.135708 -0.213103 0.201222 -0.956084 -0.298261 0.918452 0.259782 0.889578 0.436160 -0.135708 -0.233019 0.177779 -0.956084 -0.392879 0.882133 0.259782 0.838966 0.526991 -0.135708 -0.250368 0.152378 -0.956084 -0.483169 0.836099 0.259782 0.779724 0.611239 -0.135708 -0.264834 0.125563 -0.956084 -0.567356 0.781422 0.259782 0.711368 0.689594 -0.135708 -0.276536 0.097115 -0.956084 -0.646130 0.717655 0.259782 0.635175 0.760352 -0.135708 -0.285191 0.067597 -0.956084 -0.717787 0.645984 0.259782 0.552809 0.822183 -0.135708 -0.290668 0.037626 -0.956084 -0.780970 0.567978 0.259782 0.463594 0.875593 -0.135708 -0.293010 0.006954 -0.956084 -0.836197 0.482999 0.259782 0.369272 0.919359 -0.135708 -0.292125 -0.023793 -0.956084 -0.882213 0.392699 0.259782 0.270883 0.952998 -0.135708 -0.288023 -0.054279 -0.956084 -0.918512 0.298074 0.259782 0.170486 0.975970 -0.135708 -0.280832 -0.083886 -0.956084 -0.944493 0.201111 0.259782 0.067259 0.988463 -0.135708 -0.270493 -0.112858 -0.956084 -0.960370 0.101013 0.259782 0.366455 0.918387 -0.149251 0.850621 -0.395683 -0.346236 -0.377035 -0.000077 -0.926199 0.268183 0.951736 -0.149251 0.887407 -0.304353 -0.346236 -0.374950 -0.039592 -0.926199 0.167932 0.974435 -0.149251 0.914207 -0.210584 -0.346236 -0.368814 -0.078303 -0.926199 0.064879 0.986668 -0.149251 0.931243 -0.113609 -0.346236 -0.358576 -0.116526 -0.926199 -0.038888 0.988034 -0.149251 0.938021 -0.015382 -0.346236 -0.344388 -0.153466 -0.926199 -0.141249 0.978659 -0.149251 0.934550 0.082079 -0.346236 -0.326596 -0.188388 -0.926199 -0.243041 0.958465 -0.149251 0.920801 0.179575 -0.346236 -0.305053 -0.221580 -0.926199 -0.342156 0.927714 -0.149251 0.896909 0.275092 -0.346236 -0.280150 -0.252332 -0.926199 -0.437503 0.886744 -0.149251 0.863137 0.367580 -0.346236 -0.252161 -0.280304 -0.926199 -0.527195 0.836534 -0.149251 0.820314 0.455198 -0.346236 -0.221699 -0.304967 -0.926199 -0.611966 0.776673 -0.149251 0.768088 0.538666 -0.346236 -0.188515 -0.326523 -0.926199 -0.689997 0.708258 -0.149251 0.707402 0.616201 -0.346236 -0.153255 -0.344482 -0.926199 -0.759794 0.632801 -0.149251 0.639611 0.686308 -0.346236 -0.116666 -0.358531 -0.926199 -0.821932 0.549684 -0.149251 0.564158 0.749564 -0.346236 -0.078446 -0.368784 -0.926199 -0.875016 0.460512 -0.149251 0.482491 0.804564 -0.346236 -0.039363 -0.374974 -0.926199 -0.918163 0.367016 -0.149251 0.396203 0.850379 -0.346236 -0.000154 -0.377035 -0.926199 -0.951572 0.268764 -0.149251 0.304895 0.887220 -0.346236 0.039363 -0.374974 -0.926199 -0.974500 0.167552 -0.149251 0.210228 0.914289 -0.346236 0.078446 -0.368784 -0.926199 -0.986694 0.064495 -0.149251 0.113247 0.931287 -0.346236 0.116666 -0.358531 -0.926199 -0.988058 -0.038285 -0.149251 0.015955 0.938012 -0.346236 0.153255 -0.344482 -0.926199 -0.978604 -0.141629 -0.149251 -0.082443 0.934518 -0.346236 0.188515 -0.326523 -0.926199 -0.958370 -0.243414 -0.149251 -0.179933 0.920731 -0.346236 0.221699 -0.304967 -0.926199 -0.927923 -0.341590 -0.149251 -0.274544 0.897076 -0.346236 0.252161 -0.280304 -0.926199 -0.887011 -0.436961 -0.149251 -0.367052 0.863362 -0.346236 0.280150 -0.252332 -0.926199 -0.836329 -0.527520 -0.149251 -0.455517 0.820137 -0.346236 0.305053 -0.221580 -0.926199 -0.776435 -0.612268 -0.149251 -0.538965 0.767879 -0.346236 0.326596 -0.188388 -0.926199 -0.708679 -0.689564 -0.149251 -0.615768 0.707778 -0.346236 0.344388 -0.153466 -0.926199 -0.632505 -0.760041 -0.149251 -0.686557 0.639344 -0.346236 0.358576 -0.116526 -0.926199 -0.549364 -0.822146 -0.149251 -0.749784 0.563866 -0.346236 0.368814 -0.078303 -0.926199 -0.461046 -0.874734 -0.149251 -0.804269 0.482983 -0.346236 0.374950 -0.039592 -0.926199 -0.366829 -0.918238 -0.149251 -0.850460 0.396029 -0.346236 0.377035 -0.000077 -0.926199 -0.268570 -0.951627 -0.149251 -0.887283 0.304714 -0.346236 0.374966 0.039440 -0.926199 -0.167354 -0.974534 -0.149251 -0.914332 0.210042 -0.346236 0.368767 0.078522 -0.926199 -0.065281 -0.986642 -0.149251 -0.931197 0.113988 -0.346236 0.358624 0.116380 -0.926199 0.038486 -0.988050 -0.149251 -0.938015 0.015764 -0.346236 0.344451 0.153325 -0.926199 0.141829 -0.978575 -0.149251 -0.934501 -0.082633 -0.346236 0.326484 0.188582 -0.926199 0.243609 -0.958321 -0.149251 -0.920694 -0.180121 -0.346236 0.304921 0.221761 -0.926199 0.341779 -0.927853 -0.149251 -0.897021 -0.274727 -0.346236 0.280252 0.252218 -0.926199 0.437142 -0.886922 -0.149251 -0.863287 -0.367228 -0.346236 0.252275 0.280201 -0.926199 0.527690 -0.836222 -0.149251 -0.820044 -0.455684 -0.346236 0.221518 0.305098 -0.926199 0.611649 -0.776923 -0.149251 -0.768308 -0.538353 -0.346236 0.188648 0.326446 -0.926199 0.689708 -0.708539 -0.149251 -0.707653 -0.615912 -0.346236 0.153395 0.344420 -0.926199 0.760169 -0.632350 -0.149251 -0.639204 -0.686687 -0.346236 0.116453 0.358600 -0.926199 0.822258 -0.549196 -0.149251 -0.563713 -0.749899 -0.346236 0.078228 0.368830 -0.926199 0.874828 -0.460868 -0.149251 -0.482819 -0.804367 -0.346236 0.039516 0.374958 -0.926199 0.918313 -0.366642 -0.149251 -0.395856 -0.850540 -0.346236 0.000000 0.377035 -0.926199 0.951682 -0.268377 -0.149251 -0.304533 -0.887345 -0.346236 -0.039516 0.374958 -0.926199 0.974400 -0.168130 -0.149251 -0.210770 -0.914165 -0.346236 -0.078228 0.368830 -0.926199 0.986655 -0.065080 -0.149251 -0.113798 -0.931220 -0.346236 -0.116453 0.358600 -0.926199 0.988042 0.038687 -0.149251 -0.015573 -0.938018 -0.346236 -0.153395 0.344420 -0.926199 0.978546 0.142028 -0.149251 0.082824 -0.934484 -0.346236 -0.188648 0.326446 -0.926199 0.958514 0.242846 -0.149251 0.179387 -0.920837 -0.346236 -0.221518 0.305098 -0.926199 0.927783 0.341968 -0.149251 0.274910 -0.896965 -0.346236 -0.252275 0.280201 -0.926199 0.886833 0.437323 -0.149251 0.367404 -0.863212 -0.346236 -0.280252 0.252218 -0.926199 0.836642 0.527024 -0.149251 0.455031 -0.820407 -0.346236 -0.304921 0.221761 -0.926199 0.776798 0.611808 -0.149251 0.538510 -0.768198 -0.346236 -0.326484 0.188582 -0.926199 0.708398 0.689852 -0.149251 0.616057 -0.707528 -0.346236 -0.344451 0.153325 -0.926199 0.632195 0.760298 -0.149251 0.686818 -0.639064 -0.346236 -0.358624 0.116380 -0.926199 0.549851 0.821820 -0.149251 0.749449 -0.564311 -0.346236 -0.368767 0.078522 -0.926199 0.460690 0.874922 -0.149251 0.804466 -0.482655 -0.346236 -0.374966 0.039440 -0.926199 0.009089 -0.865526 0.500781 0.015300 0.500863 0.865391 -0.999842 -0.000204 0.017795 0.099753 -0.859807 0.500781 -0.037278 0.499709 0.865391 -0.994314 -0.104993 0.017795 0.188472 -0.844806 0.500781 -0.088953 0.493139 0.865391 -0.978042 -0.207648 0.017795 0.275976 -0.820400 0.500781 -0.140147 0.481100 0.865391 -0.950892 -0.309010 0.017795 0.360440 -0.786957 0.500781 -0.189798 0.463762 0.865391 -0.913269 -0.406969 0.017795 0.440189 -0.745287 0.500781 -0.236917 0.441553 0.865391 -0.866086 -0.499579 0.017795 0.515876 -0.695047 0.500781 -0.281890 0.414290 0.865391 -0.808956 -0.587599 0.017795 0.585880 -0.637152 0.500781 -0.323758 0.382465 0.865391 -0.742917 -0.669147 0.017795 0.649432 -0.572238 0.500781 -0.362060 0.346426 0.865391 -0.668694 -0.743325 0.017795 0.705328 -0.501727 0.500781 -0.396067 0.306968 0.865391 -0.587914 -0.808728 0.017795 0.754028 -0.425041 0.500781 -0.426058 0.263766 0.865391 -0.499916 -0.865891 0.017795 0.794423 -0.343672 0.500781 -0.451356 0.217660 0.865391 -0.406411 -0.913517 0.017795 0.825808 -0.259344 0.500781 -0.471513 0.169627 0.865391 -0.309380 -0.950772 0.017795 0.848441 -0.171365 0.500781 -0.486695 0.119275 0.865391 -0.208029 -0.977961 0.017795 0.861729 -0.081499 0.500781 -0.496515 0.067609 0.865391 -0.104386 -0.994378 0.017795 0.865532 0.008560 0.500781 -0.500854 0.015606 0.865391 -0.000407 -0.999842 0.017795 0.859868 0.099227 0.500781 -0.499731 -0.036973 0.865391 0.104386 -0.994378 0.017795 0.844732 0.188801 0.500781 -0.493104 -0.089144 0.865391 0.208029 -0.977961 0.017795 0.820292 0.276295 0.500781 -0.481045 -0.140334 0.865391 0.309380 -0.950772 0.017795 0.787177 0.359959 0.500781 -0.463878 -0.189515 0.865391 0.406411 -0.913517 0.017795 0.745116 0.440478 0.500781 -0.441460 -0.237089 0.865391 0.499916 -0.865891 0.017795 0.694847 0.516146 0.500781 -0.414181 -0.282051 0.865391 0.587914 -0.808728 0.017795 0.637510 0.585491 0.500781 -0.382662 -0.323524 0.865391 0.668694 -0.743325 0.017795 0.572635 0.649082 0.500781 -0.346647 -0.361848 0.865391 0.742917 -0.669147 0.017795 0.501453 0.705524 0.500781 -0.306814 -0.396187 0.865391 0.808956 -0.587599 0.017795 0.424747 0.754194 0.500781 -0.263601 -0.426161 0.865391 0.866086 -0.499579 0.017795 0.344157 0.794213 0.500781 -0.217936 -0.451223 0.865391 0.913269 -0.406969 0.017795 0.259023 0.825909 0.500781 -0.169444 -0.471579 0.865391 0.950892 -0.309010 0.017795 0.171035 0.848508 0.500781 -0.119086 -0.486741 0.865391 0.978042 -0.207648 0.017795 0.082025 0.861679 0.500781 -0.067912 -0.496474 0.865391 0.994314 -0.104993 0.017795 -0.008737 0.865530 0.500781 -0.015504 -0.500857 0.865391 0.999842 -0.000204 0.017795 -0.099402 0.859847 0.500781 0.037074 -0.499724 0.865391 0.994356 0.104588 0.017795 -0.188973 0.844694 0.500781 0.089245 -0.493086 0.865391 0.977918 0.208228 0.017795 -0.275642 0.820512 0.500781 0.139951 -0.481157 0.865391 0.951018 0.308623 0.017795 -0.360119 0.787104 0.500781 0.189609 -0.463839 0.865391 0.913434 0.406597 0.017795 -0.440630 0.745026 0.500781 0.237178 -0.441412 0.865391 0.865790 0.500092 0.017795 -0.516287 0.694741 0.500781 0.282135 -0.414123 0.865391 0.808608 0.588079 0.017795 -0.585621 0.637390 0.500781 0.323602 -0.382596 0.865391 0.743189 0.668845 0.017795 -0.649199 0.572503 0.500781 0.361919 -0.346573 0.865391 0.668996 0.743053 0.017795 -0.705626 0.501309 0.500781 0.396249 -0.306733 0.865391 0.587435 0.809076 0.017795 -0.753855 0.425348 0.500781 0.425951 -0.263940 0.865391 0.500268 0.865688 0.017795 -0.794283 0.343996 0.500781 0.451268 -0.217844 0.865391 0.406783 0.913352 0.017795 -0.825962 0.258855 0.500781 0.471614 -0.169348 0.865391 0.308817 0.950955 0.017795 -0.848543 0.170862 0.500781 0.486765 -0.118987 0.865391 0.207449 0.978084 0.017795 -0.861695 0.081850 0.500781 0.496488 -0.067811 0.865391 0.104791 0.994335 0.017795 -0.865528 -0.008913 0.500781 0.500860 -0.015402 0.865391 0.000000 0.999842 0.017795 -0.859827 -0.099577 0.500781 0.499716 0.037176 0.865391 -0.104791 0.994335 0.017795 -0.844844 -0.188300 0.500781 0.493157 0.088852 0.865391 -0.207449 0.978084 0.017795 -0.820456 -0.275809 0.500781 0.481128 0.140049 0.865391 -0.308817 0.950955 0.017795 -0.787030 -0.360280 0.500781 0.463801 0.189704 0.865391 -0.406783 0.913352 0.017795 -0.744936 -0.440782 0.500781 0.441364 0.237268 0.865391 -0.500268 0.865688 0.017795 -0.695152 -0.515734 0.500781 0.414348 0.281806 0.865391 -0.587435 0.809076 0.017795 -0.637271 -0.585751 0.500781 0.382530 0.323680 0.865391 -0.668996 0.743053 0.017795 -0.572371 -0.649315 0.500781 0.346500 0.361989 0.865391 -0.743189 0.668845 0.017795 -0.501871 -0.705226 0.500781 0.307048 0.396005 0.865391 -0.808608 0.588079 0.017795 -0.425194 -0.753942 0.500781 0.263853 0.426004 0.865391 -0.865790 0.500092 0.017795 -0.343834 -0.794353 0.500781 0.217752 0.451312 0.865391 -0.913434 0.406597 0.017795 -0.258686 -0.826014 0.500781 0.169252 0.471648 0.865391 -0.951018 0.308623 0.017795 -0.171538 -0.848406 0.500781 0.119374 0.486670 0.865391 -0.977918 0.208228 0.017795 -0.081674 -0.861712 0.500781 0.067710 0.496501 0.865391 -0.994356 0.104588 0.017795 -0.754812 -0.180367 -0.630656 0.138499 -0.983599 0.115545 -0.641153 -0.000131 0.767413 -0.731751 -0.258484 -0.630656 0.240824 -0.963667 0.115545 -0.637608 -0.067327 0.767413 -0.700963 -0.333052 -0.630656 0.339564 -0.933459 0.115545 -0.627174 -0.133155 0.767413 -0.662197 -0.404684 -0.630656 0.435527 -0.892729 0.115545 -0.609764 -0.198154 0.767413 -0.616136 -0.471858 -0.630656 0.526693 -0.842166 0.115545 -0.585638 -0.260971 0.767413 -0.563822 -0.533271 -0.630656 0.611274 -0.782939 0.115545 -0.555382 -0.320357 0.767413 -0.504826 -0.589427 -0.630656 0.689965 -0.714561 0.115545 -0.518747 -0.376801 0.767413 -0.440270 -0.639090 -0.630656 0.761056 -0.638312 0.115545 -0.476399 -0.429094 0.767413 -0.370864 -0.681714 -0.630656 0.823765 -0.555033 0.115545 -0.428803 -0.476661 0.767413 -0.298089 -0.716531 -0.630656 0.876933 -0.466516 0.115545 -0.377003 -0.518600 0.767413 -0.221350 -0.743826 -0.630656 0.920998 -0.372038 0.115545 -0.320573 -0.555257 0.767413 -0.142173 -0.762929 -0.630656 0.954918 -0.273462 0.115545 -0.260613 -0.585797 0.767413 -0.062203 -0.773566 -0.630656 0.978147 -0.172852 0.115545 -0.198392 -0.609687 0.767413 0.019215 -0.775825 -0.630656 0.990876 -0.069383 0.115545 -0.133399 -0.627122 0.767413 0.100421 -0.769538 -0.630656 0.992691 0.034850 0.115545 -0.066938 -0.637649 0.767413 0.179906 -0.754922 -0.630656 0.983684 0.137898 0.115545 -0.000261 -0.641153 0.767413 0.258037 -0.731909 -0.630656 0.963813 0.240235 0.115545 0.066938 -0.637649 0.767413 0.333325 -0.700834 -0.630656 0.933327 0.339927 0.115545 0.133399 -0.627122 0.767413 0.404941 -0.662039 -0.630656 0.892560 0.435874 0.115545 0.198392 -0.609687 0.767413 0.471481 -0.616424 -0.630656 0.842488 0.526178 0.115545 0.260613 -0.585797 0.767413 0.533490 -0.563614 -0.630656 0.782701 0.611579 0.115545 0.320573 -0.555257 0.767413 0.589623 -0.504597 -0.630656 0.714292 0.690243 0.115545 0.377003 -0.518600 0.767413 0.638821 -0.440660 -0.630656 0.638777 0.760666 0.115545 0.428803 -0.476661 0.767413 0.681487 -0.371280 -0.630656 0.555536 0.823425 0.115545 0.476399 -0.429094 0.767413 0.716646 -0.297810 -0.630656 0.466175 0.877115 0.115545 0.518747 -0.376801 0.767413 0.743912 -0.221061 -0.630656 0.371680 0.921142 0.115545 0.555382 -0.320357 0.767413 0.762842 -0.142639 -0.630656 0.274046 0.954750 0.115545 0.585638 -0.260971 0.767413 0.773590 -0.061902 -0.630656 0.172472 0.978214 0.115545 0.609764 -0.198154 0.767413 0.775817 0.019517 -0.630656 0.068998 0.990903 0.115545 0.627174 -0.133155 0.767413 0.769599 0.099951 -0.630656 -0.034243 0.992712 0.115545 0.637608 -0.067327 0.767413 0.754885 0.180060 -0.630656 -0.138098 0.983656 0.115545 0.641153 -0.000131 0.767413 0.731856 0.258186 -0.630656 -0.240432 0.963765 0.115545 0.637636 0.067068 0.767413 0.700766 0.333467 -0.630656 -0.340117 0.933258 0.115545 0.627095 0.133527 0.767413 0.662361 0.404414 -0.630656 -0.435163 0.892907 0.115545 0.609845 0.197906 0.767413 0.616328 0.471607 -0.630656 -0.526349 0.842381 0.115545 0.585744 0.260732 0.767413 0.563506 0.533605 -0.630656 -0.611738 0.782576 0.115545 0.555192 0.320686 0.767413 0.504477 0.589726 -0.630656 -0.690389 0.714152 0.115545 0.518524 0.377108 0.767413 0.440530 0.638910 -0.630656 -0.760796 0.638622 0.115545 0.476573 0.428900 0.767413 0.371141 0.681562 -0.630656 -0.823539 0.555368 0.115545 0.428997 0.476486 0.767413 0.297665 0.716707 -0.630656 -0.877210 0.465997 0.115545 0.376695 0.518824 0.767413 0.221653 0.743736 -0.630656 -0.920846 0.372413 0.115545 0.320799 0.555126 0.767413 0.142483 0.762871 -0.630656 -0.954806 0.273851 0.115545 0.260851 0.585691 0.767413 0.061744 0.773602 -0.630656 -0.978249 0.172272 0.115545 0.198030 0.609804 0.767413 -0.019675 0.775813 -0.630656 -0.990917 0.068796 0.115545 0.133028 0.627201 0.767413 -0.100108 0.769579 -0.630656 -0.992705 -0.034445 0.115545 0.067197 0.637622 0.767413 -0.180214 0.754848 -0.630656 -0.983627 -0.138298 0.115545 0.000000 0.641153 0.767413 -0.258335 0.731804 -0.630656 -0.963716 -0.240628 0.115545 -0.067197 0.637622 0.767413 -0.332909 0.701031 -0.630656 -0.933528 -0.339374 0.115545 -0.133028 0.627201 0.767413 -0.404549 0.662279 -0.630656 -0.892818 -0.435345 0.115545 -0.198030 0.609804 0.767413 -0.471732 0.616232 -0.630656 -0.842274 -0.526521 0.115545 -0.260851 0.585691 0.767413 -0.533720 0.563397 -0.630656 -0.782452 -0.611898 0.115545 -0.320799 0.555126 0.767413 -0.589324 0.504946 -0.630656 -0.714701 -0.689820 0.115545 -0.376695 0.518824 0.767413 -0.639000 0.440400 -0.630656 -0.638467 -0.760926 0.115545 -0.428997 0.476486 0.767413 -0.681638 0.371002 -0.630656 -0.555200 -0.823652 0.115545 -0.476573 0.428900 0.767413 -0.716470 0.298235 -0.630656 -0.466695 -0.876838 0.115545 -0.518524 0.377108 0.767413 -0.743781 0.221502 -0.630656 -0.372226 -0.920922 0.115545 -0.555192 0.320686 0.767413 -0.762900 0.142328 -0.630656 -0.273657 -0.954862 0.115545 -0.585744 0.260732 0.767413 -0.773615 0.061587 -0.630656 -0.172073 -0.978284 0.115545 -0.609845 0.197906 0.767413 -0.775829 -0.019057 -0.630656 -0.069585 -0.990862 0.115545 -0.627095 0.133527 0.767413 -0.769558 -0.100264 -0.630656 0.034648 -0.992698 0.115545 -0.637636 0.067068 0.767413 0.085926 -0.686147 -0.722370 -0.080770 -0.727463 0.681377 -0.993022 -0.000202 -0.117929 0.157366 -0.673363 -0.722370 -0.004082 -0.731922 0.681377 -0.987532 -0.104277 -0.117929 0.226420 -0.653388 -0.722370 0.071923 -0.728391 0.681377 -0.971371 -0.206232 -0.117929 0.293652 -0.626059 -0.722370 0.147867 -0.716841 0.681377 -0.944407 -0.306903 -0.117929 0.357651 -0.591834 -0.722370 0.222183 -0.697396 0.681377 -0.907040 -0.404193 -0.117929 0.417158 -0.551508 -0.722370 0.293381 -0.670562 0.681377 -0.860178 -0.496171 -0.117929 0.472662 -0.504749 -0.722370 0.362045 -0.636121 0.681377 -0.803439 -0.583591 -0.117929 0.522961 -0.452431 -0.722370 0.426721 -0.594672 0.681377 -0.737849 -0.664583 -0.117929 0.567498 -0.395129 -0.722370 0.486697 -0.546674 0.681377 -0.664133 -0.738255 -0.117929 0.605452 -0.334081 -0.722370 0.540819 -0.493195 0.681377 -0.583904 -0.803212 -0.117929 0.637131 -0.268785 -0.722370 0.589530 -0.433797 0.681377 -0.496506 -0.859985 -0.117929 0.661793 -0.200529 -0.722370 0.631749 -0.369621 0.681377 -0.403639 -0.907286 -0.117929 0.679034 -0.130743 -0.722370 0.666706 -0.302040 0.681377 -0.307270 -0.944287 -0.117929 0.688997 -0.058855 -0.722370 0.694691 -0.230501 0.681377 -0.206610 -0.971291 -0.117929 0.691371 0.013681 -0.722370 0.715023 -0.156423 0.681377 -0.103674 -0.987595 -0.117929 0.686200 0.085507 -0.722370 0.727413 -0.081215 0.681377 -0.000404 -0.993022 -0.117929 0.673459 0.156955 -0.722370 0.731919 -0.004529 0.681377 0.103674 -0.987595 -0.117929 0.653300 0.226674 -0.722370 0.728363 0.072206 0.681377 0.206610 -0.971291 -0.117929 0.625944 0.293896 -0.722370 0.716783 0.148146 0.681377 0.307270 -0.944287 -0.117929 0.592052 0.357289 -0.722370 0.697531 0.221757 0.681377 0.403639 -0.907286 -0.117929 0.551345 0.417372 -0.722370 0.670448 0.293642 0.681377 0.496506 -0.859985 -0.117929 0.504565 0.472859 -0.722370 0.635980 0.362292 0.681377 0.583904 -0.803212 -0.117929 0.452750 0.522684 -0.722370 0.594933 0.426357 0.681377 0.664133 -0.738255 -0.117929 0.395476 0.567257 -0.722370 0.546971 0.486362 0.681377 0.737849 -0.664583 -0.117929 0.333845 0.605581 -0.722370 0.492984 0.541010 0.681377 0.803439 -0.583591 -0.117929 0.268537 0.637236 -0.722370 0.433568 0.589699 0.681377 0.860178 -0.496171 -0.117929 0.200933 0.661670 -0.722370 0.370007 0.631523 0.681377 0.907040 -0.404193 -0.117929 0.130479 0.679085 -0.722370 0.301781 0.666824 0.681377 0.944407 -0.306903 -0.117929 0.058587 0.689020 -0.722370 0.230231 0.694780 0.681377 0.971371 -0.206232 -0.117929 -0.013258 0.691379 -0.722370 0.156860 0.714927 0.681377 0.987532 -0.104277 -0.117929 -0.085647 0.686182 -0.722370 0.081067 0.727430 0.681377 0.993022 -0.000202 -0.117929 -0.157092 0.673427 -0.722370 0.004380 0.731920 0.681377 0.987574 0.103875 -0.117929 -0.226807 0.653253 -0.722370 -0.072354 0.728348 0.681377 0.971248 0.206808 -0.117929 -0.293397 0.626178 -0.722370 -0.147575 0.716901 0.681377 0.944531 0.306518 -0.117929 -0.357409 0.591980 -0.722370 -0.221899 0.697486 0.681377 0.907204 0.403823 -0.117929 -0.417485 0.551260 -0.722370 -0.293778 0.670388 0.681377 0.859884 0.496681 -0.117929 -0.472962 0.504469 -0.722370 -0.362422 0.635906 0.681377 0.803093 0.584068 -0.117929 -0.522776 0.452644 -0.722370 -0.426478 0.594846 0.681377 0.738120 0.664283 -0.117929 -0.567337 0.395360 -0.722370 -0.486474 0.546872 0.681377 0.664433 0.737985 -0.117929 -0.605649 0.333722 -0.722370 -0.541111 0.492874 0.681377 0.583428 0.803558 -0.117929 -0.637022 0.269044 -0.722370 -0.589354 0.434037 0.681377 0.496856 0.859783 -0.117929 -0.661711 0.200798 -0.722370 -0.631598 0.369878 0.681377 0.404008 0.907122 -0.117929 -0.679112 0.130340 -0.722370 -0.666885 0.301645 0.681377 0.306710 0.944469 -0.117929 -0.689032 0.058447 -0.722370 -0.694827 0.230089 0.681377 0.206034 0.971413 -0.117929 -0.691377 -0.013399 -0.722370 -0.714959 0.156714 0.681377 0.104076 0.987553 -0.117929 -0.686165 -0.085787 -0.722370 -0.727446 0.080918 0.681377 0.000000 0.993022 -0.117929 -0.673395 -0.157229 -0.722370 -0.731921 0.004231 0.681377 -0.104076 0.987553 -0.117929 -0.653434 -0.226287 -0.722370 -0.728405 -0.071774 0.681377 -0.206034 0.971413 -0.117929 -0.626119 -0.293525 -0.722370 -0.716871 -0.147721 0.681377 -0.306710 0.944469 -0.117929 -0.591907 -0.357530 -0.722370 -0.697441 -0.222041 0.681377 -0.404008 0.907122 -0.117929 -0.551175 -0.417597 -0.722370 -0.670328 -0.293915 0.681377 -0.496856 0.859783 -0.117929 -0.504845 -0.472560 -0.722370 -0.636194 -0.361915 0.681377 -0.583428 0.803558 -0.117929 -0.452537 -0.522868 -0.722370 -0.594759 -0.426600 0.681377 -0.664433 0.737985 -0.117929 -0.395245 -0.567418 -0.722370 -0.546773 -0.486585 0.681377 -0.738120 0.664283 -0.117929 -0.334204 -0.605383 -0.722370 -0.493305 -0.540718 0.681377 -0.803093 0.584068 -0.117929 -0.268915 -0.637076 -0.722370 -0.433917 -0.589442 0.681377 -0.859884 0.496681 -0.117929 -0.200664 -0.661752 -0.722370 -0.369750 -0.631673 0.681377 -0.907204 0.403823 -0.117929 -0.130202 -0.679138 -0.722370 -0.301509 -0.666947 0.681377 -0.944531 0.306518 -0.117929 -0.058995 -0.688985 -0.722370 -0.230643 -0.694644 0.681377 -0.971248 0.206808 -0.117929 0.013540 -0.691374 -0.722370 -0.156569 -0.714991 0.681377 -0.987574 0.103875 -0.117929 0.417388 0.906110 -0.068928 0.894015 -0.423041 -0.147559 -0.162864 -0.000033 -0.986648 0.320123 0.944865 -0.068928 0.933429 -0.327012 -0.147559 -0.161964 -0.017102 -0.986648 0.220304 0.972993 -0.068928 0.962333 -0.228344 -0.147559 -0.159313 -0.033824 -0.986648 0.117114 0.990724 -0.068928 0.980965 -0.126227 -0.147559 -0.154891 -0.050335 -0.986648 0.012634 0.997542 -0.068928 0.988792 -0.022719 -0.147559 -0.148762 -0.066291 -0.986648 -0.090992 0.993463 -0.068928 0.985808 0.080053 -0.147559 -0.141077 -0.081376 -0.986648 -0.194613 0.978455 -0.068928 0.971989 0.182931 -0.147559 -0.131771 -0.095714 -0.986648 -0.296090 0.952670 -0.068928 0.947463 0.283795 -0.147559 -0.121014 -0.108997 -0.986648 -0.394306 0.916391 -0.068928 0.912501 0.381533 -0.147559 -0.108923 -0.121080 -0.986648 -0.487308 0.870505 -0.068928 0.867963 0.474201 -0.147559 -0.095765 -0.131734 -0.986648 -0.575860 0.814638 -0.068928 0.813483 0.562558 -0.147559 -0.081431 -0.141045 -0.986648 -0.658068 0.749797 -0.068928 0.750043 0.644719 -0.147559 -0.066200 -0.148803 -0.986648 -0.732351 0.677430 -0.068928 0.679060 0.719099 -0.147559 -0.050395 -0.154871 -0.986648 -0.799317 0.596943 -0.068928 0.599954 0.786309 -0.147559 -0.033886 -0.159300 -0.986648 -0.857479 0.509882 -0.068928 0.514238 0.844858 -0.147559 -0.017003 -0.161974 -0.986648 -0.905855 0.417942 -0.068928 0.423587 0.893756 -0.147559 -0.000066 -0.162864 -0.986648 -0.944670 0.320700 -0.068928 0.327582 0.933229 -0.147559 0.017003 -0.161974 -0.986648 -0.973079 0.219925 -0.068928 0.227969 0.962422 -0.147559 0.033886 -0.159300 -0.986648 -0.990769 0.116728 -0.068928 0.125845 0.981014 -0.147559 0.050395 -0.154871 -0.986648 -0.997534 0.013244 -0.068928 0.023323 0.988778 -0.147559 0.066200 -0.148803 -0.986648 -0.993428 -0.091378 -0.068928 -0.080436 0.985777 -0.147559 0.081431 -0.141045 -0.986648 -0.978380 -0.194993 -0.068928 -0.183310 0.971918 -0.147559 0.095765 -0.131734 -0.986648 -0.952850 -0.295508 -0.068928 -0.283217 0.947636 -0.147559 0.108923 -0.121080 -0.986648 -0.916631 -0.393746 -0.068928 -0.380976 0.912734 -0.147559 0.121014 -0.108997 -0.986648 -0.870316 -0.487647 -0.068928 -0.474539 0.867778 -0.147559 0.131771 -0.095714 -0.986648 -0.814414 -0.576176 -0.068928 -0.562875 0.813264 -0.147559 0.141077 -0.081376 -0.986648 -0.750199 -0.657610 -0.068928 -0.644260 0.750436 -0.147559 0.148762 -0.066291 -0.986648 -0.677145 -0.732614 -0.068928 -0.719363 0.678780 -0.147559 0.154891 -0.050335 -0.986648 -0.596632 -0.799549 -0.068928 -0.786543 0.599648 -0.147559 0.159313 -0.033824 -0.986648 -0.510405 -0.857167 -0.068928 -0.844544 0.514755 -0.147559 0.161964 -0.017102 -0.986648 -0.417757 -0.905940 -0.068928 -0.893842 0.423405 -0.147559 0.162864 -0.000033 -0.986648 -0.320507 -0.944735 -0.068928 -0.933296 0.327392 -0.147559 0.161971 0.017036 -0.986648 -0.219727 -0.973123 -0.068928 -0.962469 0.227773 -0.147559 0.159293 0.033918 -0.986648 -0.117517 -0.990676 -0.068928 -0.980914 0.126626 -0.147559 0.154911 0.050272 -0.986648 -0.013040 -0.997536 -0.068928 -0.988783 0.023122 -0.147559 0.148789 0.066230 -0.986648 0.091580 -0.993409 -0.068928 -0.985761 -0.080637 -0.147559 0.141028 0.081460 -0.986648 0.195193 -0.978340 -0.068928 -0.971880 -0.183508 -0.147559 0.131714 0.095792 -0.986648 0.295702 -0.952790 -0.068928 -0.947579 -0.283410 -0.147559 0.121058 0.108948 -0.986648 0.393933 -0.916551 -0.068928 -0.912657 -0.381162 -0.147559 0.108973 0.121036 -0.986648 0.487824 -0.870216 -0.068928 -0.867682 -0.474715 -0.147559 0.095687 0.131790 -0.986648 0.575528 -0.814872 -0.068928 -0.813712 -0.562227 -0.147559 0.081489 0.141012 -0.986648 0.657763 -0.750065 -0.068928 -0.750305 -0.644413 -0.147559 0.066261 0.148776 -0.986648 0.732752 -0.676996 -0.068928 -0.678634 -0.719502 -0.147559 0.050303 0.154901 -0.986648 0.799671 -0.596470 -0.068928 -0.599487 -0.786665 -0.147559 0.033791 0.159320 -0.986648 0.857271 -0.510231 -0.068928 -0.514583 -0.844649 -0.147559 0.017069 0.161967 -0.986648 0.906025 -0.417573 -0.068928 -0.423223 -0.893929 -0.147559 0.000000 0.162864 -0.986648 0.944800 -0.320315 -0.068928 -0.327202 -0.933362 -0.147559 -0.017069 0.161967 -0.986648 0.972948 -0.220502 -0.068928 -0.228540 -0.962287 -0.147559 -0.033791 0.159320 -0.986648 0.990700 -0.117316 -0.068928 -0.126426 -0.980940 -0.147559 -0.050303 0.154901 -0.986648 0.997539 -0.012837 -0.068928 -0.022921 -0.988788 -0.147559 -0.066261 0.148776 -0.986648 0.993391 0.091783 -0.068928 0.080838 -0.985744 -0.147559 -0.081489 0.141012 -0.986648 0.978495 0.194413 -0.068928 0.182734 -0.972026 -0.147559 -0.095687 0.131790 -0.986648 0.952730 0.295896 -0.068928 0.283603 -0.947521 -0.147559 -0.108973 0.121036 -0.986648 0.916471 0.394119 -0.068928 0.381348 -0.912579 -0.147559 -0.121058 0.108948 -0.986648 0.870605 0.487131 -0.068928 0.474024 -0.868060 -0.147559 -0.131714 0.095792 -0.986648 0.814755 0.575694 -0.068928 0.562393 -0.813598 -0.147559 -0.141028 0.081460 -0.986648 0.749931 0.657915 -0.068928 0.644566 -0.750174 -0.147559 -0.148789 0.066230 -0.986648 0.676847 0.732890 -0.068928 0.719640 -0.678487 -0.147559 -0.154911 0.050272 -0.986648 0.597106 0.799195 -0.068928 0.786187 -0.600114 -0.147559 -0.159293 0.033918 -0.986648 0.510056 0.857375 -0.068928 0.844753 -0.514411 -0.147559 -0.161971 0.017036 -0.986648 0.344137 -0.752663 0.561309 0.393179 0.658406 0.641804 -0.852631 -0.000174 0.522514 0.421127 -0.712450 0.561309 0.322008 0.695988 0.641804 -0.847917 -0.089535 0.522514 0.492813 -0.664882 0.561309 0.248016 0.725656 0.641804 -0.834041 -0.177075 0.522514 0.559783 -0.609570 0.561309 0.170596 0.747653 0.641804 -0.810889 -0.263513 0.522514 0.620587 -0.547543 0.561309 0.091297 0.761415 0.641804 -0.778805 -0.347049 0.522514 0.674076 -0.480160 0.561309 0.011759 0.766779 0.641804 -0.738568 -0.426024 0.522514 0.720688 -0.406868 0.561309 -0.068669 0.763788 0.641804 -0.689851 -0.501085 0.522514 0.759361 -0.329094 0.561309 -0.148342 0.752385 0.641804 -0.633534 -0.570626 0.522514 0.789670 -0.247695 0.561309 -0.226380 0.732694 0.641804 -0.570239 -0.633882 0.522514 0.811118 -0.164379 0.561309 -0.301220 0.705234 0.641804 -0.501353 -0.689656 0.522514 0.823879 -0.078462 0.561309 -0.373474 0.669780 0.641804 -0.426311 -0.738403 0.522514 0.827564 0.008318 0.561309 -0.441615 0.626948 0.641804 -0.346573 -0.779016 0.522514 0.822230 0.094185 0.561309 -0.504314 0.577716 0.641804 -0.263829 -0.810786 0.522514 0.807830 0.179842 0.561309 -0.562086 0.521678 0.641804 -0.177400 -0.833972 0.522514 0.784532 0.263517 0.561309 -0.613666 0.459894 0.641804 -0.089016 -0.847971 0.522514 0.752873 0.343678 0.561309 -0.658166 0.393581 0.641804 -0.000347 -0.852631 0.522514 0.712707 0.420691 0.561309 -0.695791 0.322433 0.641804 0.089016 -0.847971 0.522514 0.664690 0.493071 0.561309 -0.725752 0.247734 0.641804 0.177400 -0.833972 0.522514 0.609352 0.560020 0.561309 -0.747719 0.170305 0.641804 0.263829 -0.810786 0.522514 0.547923 0.620252 0.561309 -0.761359 0.091762 0.641804 0.346573 -0.779016 0.522514 0.479898 0.674263 0.561309 -0.766783 0.011461 0.641804 0.426311 -0.738403 0.522514 0.406587 0.720846 0.561309 -0.763762 -0.068967 0.641804 0.501353 -0.689656 0.522514 0.329558 0.759160 0.561309 -0.752475 -0.147882 0.641804 0.570239 -0.633882 0.522514 0.248177 0.789519 0.561309 -0.732832 -0.225932 0.641804 0.633534 -0.570626 0.522514 0.164063 0.811182 0.561309 -0.705117 -0.301494 0.641804 0.689851 -0.501085 0.522514 0.078142 0.823909 0.561309 -0.669635 -0.373735 0.641804 0.738568 -0.426024 0.522514 -0.007812 0.827569 0.561309 -0.627218 -0.441232 0.641804 0.778805 -0.347049 0.522514 -0.094505 0.822193 0.561309 -0.577519 -0.504539 0.641804 0.810889 -0.263513 0.522514 -0.180156 0.807760 0.561309 -0.521459 -0.562288 0.641804 0.834041 -0.177075 0.522514 -0.263038 0.784693 0.561309 -0.460269 -0.613384 0.641804 0.847917 -0.089535 0.522514 -0.343831 0.752803 0.561309 -0.393447 -0.658246 0.641804 0.852631 -0.000174 0.522514 -0.420836 0.712621 0.561309 -0.322291 -0.695857 0.641804 0.847953 0.089189 0.522514 -0.493207 0.664590 0.561309 -0.247586 -0.725803 0.641804 0.833936 0.177570 0.522514 -0.559534 0.609798 0.561309 -0.170901 -0.747584 0.641804 0.810996 0.263183 0.522514 -0.620364 0.547796 0.561309 -0.091607 -0.761378 0.641804 0.778946 0.346732 0.522514 -0.674360 0.479761 0.561309 -0.011305 -0.766786 0.641804 0.738316 0.426461 0.522514 -0.720929 0.406441 0.561309 0.069122 -0.763748 0.641804 0.689553 0.501493 0.522514 -0.759227 0.329403 0.561309 0.148035 -0.752445 0.641804 0.633766 0.570368 0.522514 -0.789569 0.248016 0.561309 0.226082 -0.732786 0.641804 0.570497 0.633650 0.522514 -0.811215 0.163898 0.561309 0.301638 -0.705055 0.641804 0.500944 0.689953 0.522514 -0.823846 0.078798 0.561309 0.373202 -0.669932 0.641804 0.426612 0.738229 0.522514 -0.827568 -0.007981 0.561309 0.441360 -0.627128 0.641804 0.346890 0.778875 0.522514 -0.822174 -0.094672 0.561309 0.504657 -0.577417 0.641804 0.263348 0.810942 0.522514 -0.807723 -0.180320 0.561309 0.562395 -0.521345 0.641804 0.176905 0.834077 0.522514 -0.784639 -0.263198 0.561309 0.613478 -0.460144 0.641804 0.089362 0.847935 0.522514 -0.752733 -0.343984 0.561309 0.658326 -0.393313 0.641804 0.000000 0.852631 0.522514 -0.712535 -0.420982 0.561309 0.695922 -0.322150 0.641804 -0.089362 0.847935 0.522514 -0.664982 -0.492677 0.561309 0.725605 -0.248164 0.641804 -0.176905 0.834077 0.522514 -0.609684 -0.559659 0.561309 0.747618 -0.170748 0.641804 -0.263348 0.810942 0.522514 -0.547670 -0.620476 0.561309 0.761397 -0.091452 0.641804 -0.346890 0.778875 0.522514 -0.479623 -0.674458 0.561309 0.766788 -0.011149 0.641804 -0.426612 0.738229 0.522514 -0.407015 -0.720605 0.561309 0.763802 0.068514 0.641804 -0.500944 0.689953 0.522514 -0.329248 -0.759294 0.561309 0.752415 0.148189 0.641804 -0.570497 0.633650 0.522514 -0.247856 -0.789620 0.561309 0.732740 0.226231 0.641804 -0.633766 0.570368 0.522514 -0.164544 -0.811084 0.561309 0.705295 0.301076 0.641804 -0.689553 0.501493 0.522514 -0.078630 -0.823862 0.561309 0.669856 0.373338 0.641804 -0.738316 0.426461 0.522514 0.008149 -0.827566 0.561309 0.627038 0.441488 0.641804 -0.778946 0.346732 0.522514 0.094839 -0.822154 0.561309 0.577314 0.504774 0.641804 -0.810996 0.263183 0.522514 0.179677 -0.807867 0.561309 0.521793 0.561979 0.641804 -0.833936 0.177570 0.522514 0.263358 -0.784586 0.561309 0.460019 0.613572 0.641804 -0.847953 0.089189 0.522514 0.078391 0.988787 0.127102 -0.520045 0.149332 -0.840984 -0.850534 -0.000173 0.525920 -0.025673 0.991557 0.127102 -0.532832 0.094005 -0.840984 -0.845832 -0.089314 0.525920 -0.128470 0.983535 0.127102 -0.539712 0.038183 -0.840984 -0.831990 -0.176640 0.525920 -0.230844 0.964653 0.127102 -0.540741 -0.018593 -0.840984 -0.808894 -0.262865 0.525920 -0.330675 0.935146 0.127102 -0.535814 -0.075164 -0.840984 -0.776889 -0.346196 0.525920 -0.425969 0.895765 0.127102 -0.525116 -0.130383 -0.840984 -0.736752 -0.424976 0.525920 -0.517505 0.846188 0.127102 -0.508559 -0.184700 -0.840984 -0.688154 -0.499852 0.525920 -0.603342 0.787289 0.127102 -0.486401 -0.236984 -0.840984 -0.631976 -0.569223 0.525920 -0.682532 0.719719 0.127102 -0.458884 -0.286657 -0.840984 -0.568837 -0.632324 0.525920 -0.753560 0.644974 0.127102 -0.426646 -0.332746 -0.840984 -0.500120 -0.687959 0.525920 -0.817008 0.562444 0.127102 -0.389422 -0.375629 -0.840984 -0.425263 -0.736587 0.525920 -0.871457 0.473718 0.127102 -0.347909 -0.414375 -0.840984 -0.345721 -0.777101 0.525920 -0.915926 0.380690 0.127102 -0.303012 -0.448253 -0.840984 -0.263180 -0.808792 0.525920 -0.950780 0.282598 0.127102 -0.254363 -0.477542 -0.840984 -0.176963 -0.831921 0.525920 -0.975162 0.181393 0.127102 -0.202912 -0.501571 -0.840984 -0.088798 -0.845886 0.525920 -0.988739 0.078995 0.127102 -0.149650 -0.519954 -0.840984 -0.000346 -0.850534 0.525920 -0.991573 -0.025067 0.127102 -0.094331 -0.532774 -0.840984 0.088798 -0.845886 0.525920 -0.983485 -0.128853 0.127102 -0.037973 -0.539727 -0.840984 0.176963 -0.831921 0.525920 -0.964563 -0.231219 0.127102 0.018804 -0.540734 -0.840984 0.263180 -0.808792 0.525920 -0.935348 -0.330104 0.127102 0.074837 -0.535860 -0.840984 0.345721 -0.777101 0.525920 -0.895600 -0.426317 0.127102 0.130587 -0.525066 -0.840984 0.425263 -0.736587 0.525920 -0.845986 -0.517834 0.127102 0.184898 -0.508487 -0.840984 0.500120 -0.687959 0.525920 -0.787657 -0.602861 0.127102 0.236687 -0.486545 -0.840984 0.568837 -0.632324 0.525920 -0.720135 -0.682092 0.127102 0.286377 -0.459059 -0.840984 0.631976 -0.569223 0.525920 -0.644681 -0.753811 0.127102 0.332912 -0.426517 -0.840984 0.688154 -0.499852 0.525920 -0.562126 -0.817227 0.127102 0.375780 -0.389276 -0.840984 0.736752 -0.424976 0.525920 -0.474250 -0.871167 0.127102 0.414162 -0.348162 -0.840984 0.776889 -0.346196 0.525920 -0.380334 -0.916074 0.127102 0.448371 -0.302837 -0.840984 0.808894 -0.262865 0.525920 -0.282228 -0.950890 0.127102 0.477641 -0.254177 -0.840984 0.831990 -0.176640 0.525920 -0.181989 -0.975051 0.127102 0.501447 -0.203218 -0.840984 0.845832 -0.089314 0.525920 -0.078794 -0.988755 0.127102 0.519984 -0.149544 -0.840984 0.850534 -0.000173 0.525920 0.025269 -0.991568 0.127102 0.532794 -0.094222 -0.840984 0.845868 0.088970 0.525920 0.129053 -0.983458 0.127102 0.539734 -0.037863 -0.840984 0.831885 0.177133 0.525920 0.230451 -0.964747 0.127102 0.540749 0.018373 -0.840984 0.809001 0.262536 0.525920 0.330294 -0.935281 0.127102 0.535845 0.074946 -0.840984 0.777030 0.345879 0.525920 0.426499 -0.895513 0.127102 0.525039 0.130694 -0.840984 0.736500 0.425413 0.525920 0.518007 -0.845881 0.127102 0.508450 0.185002 -0.840984 0.687858 0.500260 0.525920 0.603021 -0.787535 0.127102 0.486497 0.236786 -0.840984 0.632208 0.568965 0.525920 0.682239 -0.719996 0.127102 0.459001 0.286470 -0.840984 0.569094 0.632092 0.525920 0.753942 -0.644528 0.127102 0.426449 0.332999 -0.840984 0.499712 0.688256 0.525920 0.816779 -0.562776 0.127102 0.389575 0.375470 -0.840984 0.425563 0.736413 0.525920 0.871264 -0.474073 0.127102 0.348078 0.414233 -0.840984 0.346037 0.776960 0.525920 0.916151 -0.380147 0.127102 0.302746 0.448432 -0.840984 0.262701 0.808948 0.525920 0.950948 -0.282034 0.127102 0.254080 0.477693 -0.840984 0.176470 0.832026 0.525920 0.975088 -0.181790 0.127102 0.203116 0.501488 -0.840984 0.089142 0.845850 0.525920 0.988771 -0.078593 0.127102 0.149438 0.520014 -0.840984 0.000000 0.850534 0.525920 0.991563 0.025471 0.127102 0.094114 0.532813 -0.840984 -0.089142 0.845850 0.525920 0.983561 0.128270 0.127102 0.038293 0.539704 -0.840984 -0.176470 0.832026 0.525920 0.964700 0.230648 0.127102 -0.018483 0.540745 -0.840984 -0.262701 0.808948 0.525920 0.935214 0.330485 0.127102 -0.075055 0.535830 -0.840984 -0.346037 0.776960 0.525920 0.895426 0.426682 0.127102 -0.130801 0.525012 -0.840984 -0.425563 0.736413 0.525920 0.846293 0.517333 0.127102 -0.184597 0.508597 -0.840984 -0.499712 0.688256 0.525920 0.787412 0.603181 0.127102 -0.236885 0.486449 -0.840984 -0.569094 0.632092 0.525920 0.719858 0.682386 0.127102 -0.286563 0.458942 -0.840984 -0.632208 0.568965 0.525920 0.645128 0.753429 0.127102 -0.332659 0.426714 -0.840984 -0.687858 0.500260 0.525920 0.562610 0.816894 0.127102 -0.375550 0.389499 -0.840984 -0.736500 0.425413 0.525920 0.473895 0.871360 0.127102 -0.414304 0.347993 -0.840984 -0.777030 0.345879 0.525920 0.379961 0.916229 0.127102 -0.448494 0.302655 -0.840984 -0.809001 0.262536 0.525920 0.282791 0.950723 0.127102 -0.477490 0.254460 -0.840984 -0.831885 0.177133 0.525920 0.181591 0.975125 0.127102 -0.501530 0.203014 -0.840984 -0.845868 0.088970 0.525920 -0.184661 -0.402499 0.896602 -0.081406 0.915421 0.394180 -0.979425 -0.000199 -0.201808 -0.141459 -0.419636 0.896602 -0.176901 0.901847 0.394180 -0.974010 -0.102849 -0.201808 -0.097131 -0.432054 0.896602 -0.269568 0.878610 0.394180 -0.958070 -0.203408 -0.201808 -0.051314 -0.439854 0.896602 -0.360168 0.845518 0.394180 -0.931475 -0.302700 -0.201808 -0.004931 -0.442810 0.896602 -0.446801 0.803113 0.394180 -0.894620 -0.398659 -0.201808 0.041065 -0.440929 0.896602 -0.527760 0.752390 0.394180 -0.848400 -0.489377 -0.201808 0.087051 -0.434197 0.896602 -0.603709 0.692934 0.394180 -0.792438 -0.575601 -0.201808 0.132078 -0.422682 0.896602 -0.673009 0.625844 0.394180 -0.727746 -0.655484 -0.201808 0.175651 -0.406511 0.896602 -0.734895 0.551861 0.394180 -0.655039 -0.728147 -0.201808 0.216903 -0.386080 0.896602 -0.788215 0.472588 0.394180 -0.575909 -0.792214 -0.201808 0.256172 -0.361221 0.896602 -0.833404 0.387375 0.394180 -0.489707 -0.848210 -0.201808 0.292620 -0.332383 0.896602 -0.869414 0.297895 0.394180 -0.398112 -0.894863 -0.201808 0.325545 -0.300209 0.896602 -0.895642 0.206029 0.394180 -0.303063 -0.931357 -0.201808 0.355216 -0.264436 0.896602 -0.912302 0.111025 0.394180 -0.203781 -0.957991 -0.201808 0.380974 -0.225751 0.896602 -0.918914 0.014797 0.394180 -0.102254 -0.974073 -0.201808 0.402386 -0.184907 0.896602 -0.915470 -0.080847 0.394180 -0.000399 -0.979425 -0.201808 0.419549 -0.141715 0.896602 -0.901955 -0.176350 0.394180 0.102254 -0.974073 -0.201808 0.432091 -0.096963 0.896602 -0.878505 -0.269910 0.394180 0.203781 -0.957991 -0.201808 0.439874 -0.051143 0.896602 -0.845378 -0.360497 0.394180 0.303063 -0.931357 -0.201808 0.442807 -0.005202 0.896602 -0.803386 -0.446310 0.394180 0.398112 -0.894863 -0.201808 0.440913 0.041236 0.896602 -0.752185 -0.528052 0.394180 0.489707 -0.848210 -0.201808 0.434163 0.087220 0.896602 -0.692699 -0.603979 0.394180 0.575909 -0.792214 -0.201808 0.422763 0.131820 0.896602 -0.626255 -0.672626 0.394180 0.655039 -0.728147 -0.201808 0.406619 0.175403 0.896602 -0.552310 -0.734558 0.394180 0.727746 -0.655484 -0.201808 0.385996 0.217053 0.896602 -0.472281 -0.788398 0.394180 0.792438 -0.575601 -0.201808 0.361121 0.256313 0.896602 -0.387051 -0.833555 0.394180 0.848400 -0.489377 -0.201808 0.332561 0.292417 0.896602 -0.298426 -0.869232 0.394180 0.894620 -0.398659 -0.201808 0.300083 0.325661 0.896602 -0.205681 -0.895722 0.394180 0.931475 -0.302700 -0.201808 0.264298 0.355319 0.896602 -0.110670 -0.912345 0.394180 0.958070 -0.203408 -0.201808 0.225984 0.380836 0.896602 -0.015359 -0.918905 0.394180 0.974010 -0.102849 -0.201808 0.184825 0.402423 0.896602 0.081033 -0.915454 0.394180 0.979425 -0.000199 -0.201808 0.141630 0.419578 0.896602 0.176533 -0.901919 0.394180 0.974052 0.102452 -0.201808 0.096875 0.432111 0.896602 0.270089 -0.878450 0.394180 0.957950 0.203976 -0.201808 0.051493 0.439833 0.896602 0.359823 -0.845665 0.394180 0.931598 0.302321 -0.201808 0.005112 0.442808 0.896602 0.446474 -0.803295 0.394180 0.894782 0.398294 -0.201808 -0.041326 0.440905 0.896602 0.528206 -0.752078 0.394180 0.848110 0.489880 -0.201808 -0.087308 0.434145 0.896602 0.604120 -0.692576 0.394180 0.792096 0.576070 -0.201808 -0.131906 0.422736 0.896602 0.672754 -0.626118 0.394180 0.728013 0.655187 -0.201808 -0.175485 0.406583 0.896602 0.734670 -0.552161 0.394180 0.655335 0.727880 -0.201808 -0.217132 0.385952 0.896602 0.788494 -0.472121 0.394180 0.575439 0.792555 -0.201808 -0.256025 0.361325 0.896602 0.833246 -0.387714 0.394180 0.490053 0.848010 -0.201808 -0.292485 0.332502 0.896602 0.869292 -0.298249 0.394180 0.398476 0.894701 -0.201808 -0.325722 0.300016 0.896602 0.895764 -0.205498 0.394180 0.302511 0.931537 -0.201808 -0.355372 0.264226 0.896602 0.912368 -0.110484 0.394180 0.203213 0.958112 -0.201808 -0.380882 0.225906 0.896602 0.918908 -0.015172 0.394180 0.102651 0.974031 -0.201808 -0.402461 0.184743 0.896602 0.915437 0.081220 0.394180 0.000000 0.979425 -0.201808 -0.419607 0.141544 0.896602 0.901883 0.176717 0.394180 -0.102651 0.974031 -0.201808 -0.432034 0.097219 0.896602 0.878664 0.269389 0.394180 -0.203213 0.958112 -0.201808 -0.439844 0.051403 0.896602 0.845591 0.359996 0.394180 -0.302511 0.931537 -0.201808 -0.442809 0.005022 0.896602 0.803204 0.446637 0.394180 -0.398476 0.894701 -0.201808 -0.440896 -0.041416 0.896602 0.751970 0.528359 0.394180 -0.490053 0.848010 -0.201808 -0.434215 -0.086962 0.896602 0.693057 0.603568 0.394180 -0.575439 0.792555 -0.201808 -0.422709 -0.131992 0.896602 0.625981 0.672881 0.394180 -0.655335 0.727880 -0.201808 -0.406547 -0.175568 0.896602 0.552011 0.734783 0.394180 -0.728013 0.655187 -0.201808 -0.386124 -0.216824 0.896602 0.472749 0.788118 0.394180 -0.792096 0.576070 -0.201808 -0.361273 -0.256099 0.896602 0.387545 0.833325 0.394180 -0.848110 0.489880 -0.201808 -0.332442 -0.292552 0.896602 0.298072 0.869353 0.394180 -0.894782 0.398294 -0.201808 -0.299950 -0.325783 0.896602 0.205316 0.895805 0.394180 -0.931598 0.302321 -0.201808 -0.264509 -0.355162 0.896602 0.111211 0.912280 0.394180 -0.957950 0.203976 -0.201808 -0.225828 -0.380928 0.896602 0.014985 0.918911 0.394180 -0.974052 0.102452 -0.201808 -0.099079 -0.478747 0.872344 -0.054257 0.877953 0.475662 -0.993599 -0.000202 -0.112962 -0.048357 -0.486494 0.872344 -0.145974 0.867431 0.475662 -0.988106 -0.104338 -0.112962 0.002408 -0.488886 0.872344 -0.235235 0.847591 0.475662 -0.971935 -0.206352 -0.112962 0.053634 -0.485941 0.872344 -0.322773 0.818268 0.475662 -0.944955 -0.307081 -0.112962 0.104268 -0.477643 0.872344 -0.406756 0.779933 0.475662 -0.907567 -0.404428 -0.112962 0.153290 -0.464238 0.872344 -0.485525 0.733492 0.475662 -0.860678 -0.496460 -0.112962 0.201102 -0.445616 0.872344 -0.559726 0.678566 0.475662 -0.803906 -0.583931 -0.112962 0.246698 -0.422084 0.872344 -0.627762 0.616166 0.475662 -0.738278 -0.664970 -0.112962 0.289577 -0.393904 0.872344 -0.688883 0.546978 0.475662 -0.664519 -0.738684 -0.112962 0.328904 -0.361714 0.872344 -0.741945 0.472508 0.475662 -0.584243 -0.803679 -0.112962 0.365003 -0.325250 0.872344 -0.787381 0.392144 0.475662 -0.496794 -0.860485 -0.112962 0.397081 -0.285204 0.872344 -0.824144 0.307462 0.475662 -0.403873 -0.907814 -0.112962 0.424544 -0.242441 0.872344 -0.851609 0.220244 0.475662 -0.307449 -0.944836 -0.112962 0.447615 -0.196611 0.872344 -0.870002 0.129776 0.475662 -0.206730 -0.971855 -0.112962 0.465756 -0.148615 0.872344 -0.878812 0.037879 0.475662 -0.103734 -0.988169 -0.112962 0.478686 -0.099372 0.872344 -0.877986 -0.053720 0.475662 -0.000405 -0.993599 -0.112962 0.486465 -0.048655 0.872344 -0.867520 -0.145444 0.475662 0.103734 -0.988169 -0.112962 0.488885 0.002598 0.872344 -0.847499 -0.235565 0.475662 0.206730 -0.971855 -0.112962 0.485920 0.053823 0.872344 -0.818142 -0.323092 0.475662 0.307449 -0.944836 -0.112962 0.477707 0.103976 0.872344 -0.780181 -0.406279 0.475662 0.403873 -0.907814 -0.112962 0.464179 0.153471 0.872344 -0.733303 -0.485810 0.475662 0.496794 -0.860485 -0.112962 0.445537 0.201275 0.872344 -0.678348 -0.559990 0.475662 0.584243 -0.803679 -0.112962 0.422235 0.246440 0.872344 -0.616549 -0.627386 0.475662 0.664519 -0.738684 -0.112962 0.394081 0.289336 0.872344 -0.547399 -0.688549 0.475662 0.738278 -0.664970 -0.112962 0.361586 0.329045 0.872344 -0.472219 -0.742128 0.475662 0.803906 -0.583931 -0.112962 0.325109 0.365129 0.872344 -0.391838 -0.787533 0.475662 0.860678 -0.496460 -0.112962 0.285447 0.396907 0.872344 -0.307965 -0.823956 0.475662 0.907567 -0.404428 -0.112962 0.242276 0.424638 0.872344 -0.219912 -0.851695 0.475662 0.944955 -0.307081 -0.112962 0.196437 0.447692 0.872344 -0.129438 -0.870052 0.475662 0.971935 -0.206352 -0.112962 0.148899 0.465665 0.872344 -0.038416 -0.878789 0.475662 0.988106 -0.104338 -0.112962 0.099274 0.478706 0.872344 0.053899 -0.877975 0.475662 0.993599 -0.000202 -0.112962 0.048556 0.486474 0.872344 0.145620 -0.867491 0.475662 0.988148 0.103935 -0.112962 -0.002698 0.488884 0.872344 0.235738 -0.847451 0.475662 0.971813 0.206928 -0.112962 -0.053436 0.485963 0.872344 0.322440 -0.818400 0.475662 0.945080 0.306696 -0.112962 -0.104074 0.477686 0.872344 0.406438 -0.780098 0.475662 0.907732 0.404058 -0.112962 -0.153565 0.464147 0.872344 0.485960 -0.733204 0.475662 0.860384 0.496970 -0.112962 -0.201366 0.445496 0.872344 0.560128 -0.678234 0.475662 0.803560 0.584407 -0.112962 -0.246526 0.422185 0.872344 0.627511 -0.616421 0.475662 0.738549 0.664669 -0.112962 -0.289416 0.394022 0.872344 0.688661 -0.547259 0.475662 0.664819 0.738414 -0.112962 -0.329118 0.361519 0.872344 0.742224 -0.472068 0.475662 0.583767 0.804025 -0.112962 -0.364870 0.325399 0.872344 0.787221 -0.392465 0.475662 0.497145 0.860283 -0.112962 -0.396965 0.285366 0.872344 0.824018 -0.307797 0.475662 0.404243 0.907649 -0.112962 -0.424687 0.242190 0.872344 0.851739 -0.219739 0.475662 0.306889 0.945018 -0.112962 -0.447732 0.196345 0.872344 0.870079 -0.129260 0.475662 0.206154 0.971977 -0.112962 -0.465696 0.148804 0.872344 0.878797 -0.038237 0.475662 0.104136 0.988127 -0.112962 -0.478726 0.099177 0.872344 0.877964 0.054078 0.475662 0.000000 0.993599 -0.112962 -0.486484 0.048456 0.872344 0.867461 0.145797 0.475662 -0.104136 0.988127 -0.112962 -0.488886 -0.002309 0.872344 0.847638 0.235063 0.475662 -0.206154 0.971977 -0.112962 -0.485952 -0.053535 0.872344 0.818334 0.322607 0.475662 -0.306889 0.945018 -0.112962 -0.477665 -0.104171 0.872344 0.780015 0.406597 0.475662 -0.404243 0.907649 -0.112962 -0.464116 -0.153660 0.872344 0.733105 0.486109 0.475662 -0.497145 0.860283 -0.112962 -0.445656 -0.201011 0.872344 0.678680 0.559588 0.475662 -0.583767 0.804025 -0.112962 -0.422135 -0.246612 0.872344 0.616293 0.627637 0.475662 -0.664819 0.738414 -0.112962 -0.393963 -0.289496 0.872344 0.547118 0.688772 0.475662 -0.738549 0.664669 -0.112962 -0.361781 -0.328830 0.872344 0.472659 0.741848 0.475662 -0.803560 0.584407 -0.112962 -0.325325 -0.364937 0.872344 0.392305 0.787301 0.475662 -0.860384 0.496970 -0.112962 -0.285285 -0.397023 0.872344 0.307629 0.824081 0.475662 -0.907732 0.404058 -0.112962 -0.242103 -0.424737 0.872344 0.219566 0.851784 0.475662 -0.945080 0.306696 -0.112962 -0.196702 -0.447575 0.872344 0.129953 0.869976 0.475662 -0.971813 0.206928 -0.112962 -0.148710 -0.465726 0.872344 0.038058 0.878804 0.475662 -0.988148 0.103935 -0.112962 -0.157850 0.409368 -0.898611 -0.070609 -0.912369 -0.403233 -0.984935 -0.000201 0.172923 -0.199886 0.390569 -0.898611 0.025403 -0.914745 -0.403233 -0.979490 -0.103428 0.172923 -0.239352 0.367708 -0.898611 0.120228 -0.907165 -0.403233 -0.963460 -0.204552 0.172923 -0.276572 0.340598 -0.898611 0.214643 -0.889568 -0.403233 -0.936716 -0.304403 0.172923 -0.310746 0.309735 -0.898611 0.306694 -0.862173 -0.403233 -0.899653 -0.400901 0.172923 -0.341221 0.275802 -0.898611 0.394542 -0.825676 -0.403233 -0.853174 -0.492131 0.172923 -0.368248 0.238521 -0.898611 0.478905 -0.779778 -0.403233 -0.796896 -0.578839 0.172923 -0.391219 0.198612 -0.898611 0.557994 -0.725290 -0.403233 -0.731841 -0.659171 0.172923 -0.409880 0.156516 -0.898611 0.630937 -0.662814 -0.403233 -0.658724 -0.732243 0.172923 -0.423914 0.113119 -0.898611 0.696336 -0.593734 -0.403233 -0.579149 -0.796671 0.172923 -0.433435 0.068067 -0.898611 0.754728 -0.517483 -0.403233 -0.492462 -0.852982 0.172923 -0.438181 0.022265 -0.898611 0.804808 -0.435532 -0.403233 -0.400352 -0.899898 0.172923 -0.438125 -0.023344 -0.898611 0.845673 -0.349629 -0.403233 -0.304768 -0.936597 0.172923 -0.433266 -0.069134 -0.898611 0.877659 -0.259071 -0.403233 -0.204927 -0.963381 0.172923 -0.423634 -0.114163 -0.898611 0.899978 -0.165659 -0.403233 -0.102829 -0.979553 0.172923 -0.409464 -0.157600 -0.898611 0.912326 -0.071166 -0.403233 -0.000401 -0.984935 0.172923 -0.390691 -0.199647 -0.898611 0.914760 0.024844 -0.403233 0.102829 -0.979553 0.172923 -0.367615 -0.239495 -0.898611 0.907118 0.120581 -0.403233 0.204927 -0.963381 0.172923 -0.340490 -0.276704 -0.898611 0.889485 0.214989 -0.403233 0.304768 -0.936597 0.172923 -0.309925 -0.310557 -0.898611 0.862360 0.306167 -0.403233 0.400352 -0.899898 0.172923 -0.275669 -0.341328 -0.898611 0.825522 0.394863 -0.403233 0.492462 -0.852982 0.172923 -0.238377 -0.368341 -0.898611 0.779591 0.479209 -0.403233 0.579149 -0.796671 0.172923 -0.198851 -0.391097 -0.898611 0.725631 0.557551 -0.403233 0.658724 -0.732243 0.172923 -0.156766 -0.409784 -0.898611 0.663200 0.630531 -0.403233 0.731841 -0.659171 0.172923 -0.112954 -0.423958 -0.898611 0.593463 0.696567 -0.403233 0.796896 -0.578839 0.172923 -0.067899 -0.433461 -0.898611 0.517189 0.754930 -0.403233 0.853174 -0.492131 0.172923 -0.022533 -0.438168 -0.898611 0.436024 0.804542 -0.403233 0.899653 -0.400901 0.172923 0.023514 -0.438116 -0.898611 0.349300 0.845809 -0.403233 0.936716 -0.304403 0.172923 0.069303 -0.433239 -0.898611 0.258730 0.877760 -0.403233 0.963460 -0.204552 0.172923 0.113904 -0.423704 -0.898611 0.166209 0.899877 -0.403233 0.979490 -0.103428 0.172923 0.157684 -0.409432 -0.898611 0.070980 0.912341 -0.403233 0.984935 -0.000201 0.172923 0.199727 -0.390651 -0.898611 -0.025030 0.914755 -0.403233 0.979532 0.103029 0.172923 0.239570 -0.367567 -0.898611 -0.120765 0.907094 -0.403233 0.963339 0.205123 0.172923 0.276433 -0.340710 -0.898611 -0.214281 0.889656 -0.403233 0.936840 0.304022 0.172923 0.310620 -0.309862 -0.898611 -0.306343 0.862298 -0.403233 0.899816 0.400535 0.172923 0.341385 -0.275600 -0.898611 -0.395031 0.825442 -0.403233 0.852882 0.492636 0.172923 0.368389 -0.238302 -0.898611 -0.479367 0.779494 -0.403233 0.796553 0.579311 0.172923 0.391138 -0.198771 -0.898611 -0.557698 0.725518 -0.403233 0.732109 0.658873 0.172923 0.409816 -0.156683 -0.898611 -0.630666 0.663071 -0.403233 0.659022 0.731975 0.172923 0.423981 -0.112868 -0.898611 -0.696688 0.593321 -0.403233 0.578677 0.797014 0.172923 0.433407 -0.068244 -0.898611 -0.754518 0.517790 -0.403233 0.492810 0.852781 0.172923 0.438172 -0.022444 -0.898611 -0.804630 0.435860 -0.403233 0.400718 0.899735 0.172923 0.438111 0.023604 -0.898611 -0.845880 0.349128 -0.403233 0.304213 0.936778 0.172923 0.433225 0.069391 -0.898611 -0.877813 0.258551 -0.403233 0.204356 0.963502 0.172923 0.423680 0.113990 -0.898611 -0.899911 0.166026 -0.403233 0.103228 0.979511 0.172923 0.409400 0.157767 -0.898611 -0.912355 0.070795 -0.403233 0.000000 0.984935 0.172923 0.390610 0.199806 -0.898611 -0.914750 -0.025217 -0.403233 -0.103228 0.979511 0.172923 0.367757 0.239277 -0.898611 -0.907190 -0.120043 -0.403233 -0.204356 0.963502 0.172923 0.340654 0.276503 -0.898611 -0.889612 -0.214462 -0.403233 -0.304213 0.936778 0.172923 0.309798 0.310683 -0.898611 -0.862235 -0.306518 -0.403233 -0.400718 0.899735 0.172923 0.275530 0.341441 -0.898611 -0.825361 -0.395199 -0.403233 -0.492810 0.852781 0.172923 0.238596 0.368199 -0.898611 -0.779875 -0.478746 -0.403233 -0.578677 0.797014 0.172923 0.198692 0.391178 -0.898611 -0.725404 -0.557846 -0.403233 -0.659022 0.731975 0.172923 0.156599 0.409848 -0.898611 -0.662943 -0.630801 -0.403233 -0.732109 0.658873 0.172923 0.113206 0.423891 -0.898611 -0.593876 -0.696215 -0.403233 -0.796553 0.579311 0.172923 0.068155 0.433421 -0.898611 -0.517636 -0.754623 -0.403233 -0.852882 0.492636 0.172923 0.022354 0.438177 -0.898611 -0.435696 -0.804719 -0.403233 -0.899816 0.400535 0.172923 -0.023693 0.438107 -0.898611 -0.348956 -0.845951 -0.403233 -0.936840 0.304022 0.172923 -0.069046 0.433280 -0.898611 -0.259250 -0.877606 -0.403233 -0.963339 0.205123 0.172923 -0.114076 0.423657 -0.898611 -0.165843 -0.899944 -0.403233 -0.979532 0.103029 0.172923 0.310691 -0.926512 -0.212240 -0.764872 -0.376264 0.522872 -0.564306 -0.000115 -0.825566 0.406085 -0.888847 -0.212240 -0.721225 -0.454356 0.522872 -0.561186 -0.059258 -0.825566 0.496164 -0.841888 -0.212240 -0.670160 -0.526773 0.522872 -0.552002 -0.117196 -0.825566 0.581668 -0.785250 -0.212240 -0.611260 -0.594110 0.522872 -0.536679 -0.174404 -0.825566 0.660764 -0.719962 -0.212240 -0.545626 -0.654902 0.522872 -0.515445 -0.229691 -0.825566 0.731935 -0.647476 -0.212240 -0.474691 -0.708006 0.522872 -0.488815 -0.281960 -0.825566 0.795764 -0.567198 -0.212240 -0.397873 -0.753858 0.522872 -0.456571 -0.331638 -0.825566 0.850828 -0.480673 -0.212240 -0.316672 -0.791406 0.522872 -0.419299 -0.377664 -0.825566 0.896520 -0.388853 -0.212240 -0.231982 -0.820237 0.522872 -0.377408 -0.419529 -0.825566 0.932044 -0.293682 -0.212240 -0.145578 -0.839888 0.522872 -0.331816 -0.456442 -0.825566 0.957690 -0.194379 -0.212240 -0.056750 -0.850520 0.522872 -0.282150 -0.488705 -0.825566 0.972788 -0.092936 -0.212240 0.032703 -0.851783 0.522872 -0.229376 -0.515585 -0.825566 0.977180 0.008554 -0.212240 0.120952 -0.843786 0.522872 -0.174613 -0.536611 -0.825566 0.970902 0.110922 -0.212240 0.208721 -0.826462 0.522872 -0.117410 -0.551957 -0.825566 0.953929 0.212069 -0.212240 0.294191 -0.800035 0.522872 -0.058915 -0.561222 -0.825566 0.926702 0.310125 -0.212240 0.375797 -0.765102 0.522872 -0.000230 -0.564306 -0.825566 0.889095 0.405542 -0.212240 0.453915 -0.721502 0.522872 0.058915 -0.561222 -0.825566 0.841695 0.496492 -0.212240 0.527034 -0.669955 0.522872 0.117410 -0.551957 -0.825566 0.785023 0.581973 -0.212240 0.594347 -0.611028 0.522872 0.174613 -0.536611 -0.825566 0.720366 0.660324 -0.212240 0.654568 -0.546026 0.522872 0.229376 -0.515585 -0.825566 0.647192 0.732187 -0.212240 0.708191 -0.474415 0.522872 0.282150 -0.488705 -0.825566 0.566889 0.795984 -0.212240 0.754013 -0.397579 0.522872 0.331816 -0.456442 -0.825566 0.481192 0.850534 -0.212240 0.791212 -0.317155 0.522872 0.377408 -0.419529 -0.825566 0.389400 0.896282 -0.212240 0.820095 -0.232483 0.522872 0.419299 -0.377664 -0.825566 0.293319 0.932158 -0.212240 0.839944 -0.145251 0.522872 0.456571 -0.331638 -0.825566 0.194007 0.957766 -0.212240 0.850542 -0.056419 0.522872 0.488815 -0.281960 -0.825566 0.093530 0.972731 -0.212240 0.851803 0.032183 0.522872 0.515445 -0.229691 -0.825566 -0.008934 0.977177 -0.212240 0.843739 0.121281 0.522872 0.536679 -0.174404 -0.825566 -0.111300 0.970859 -0.212240 0.826381 0.209043 0.522872 0.552002 -0.117196 -0.825566 -0.211486 0.954059 -0.212240 0.800215 0.293702 0.522872 0.561186 -0.059258 -0.825566 -0.310313 0.926639 -0.212240 0.765026 0.375953 0.522872 0.564306 -0.000115 -0.825566 -0.405723 0.889012 -0.212240 0.721410 0.454062 0.522872 0.561210 0.059029 -0.825566 -0.496663 0.841594 -0.212240 0.669848 0.527170 0.522872 0.551933 0.117523 -0.825566 -0.581348 0.785486 -0.212240 0.611501 0.593861 0.522872 0.536750 0.174185 -0.825566 -0.660471 0.720231 -0.212240 0.545893 0.654680 0.522872 0.515538 0.229481 -0.825566 -0.732318 0.647042 -0.212240 0.474271 0.708288 0.522872 0.488648 0.282250 -0.825566 -0.796100 0.566727 -0.212240 0.397426 0.754094 0.522872 0.456375 0.331909 -0.825566 -0.850632 0.481019 -0.212240 0.316994 0.791277 0.522872 0.419453 0.377493 -0.825566 -0.896361 0.389218 -0.212240 0.232316 0.820142 0.522872 0.377578 0.419376 -0.825566 -0.932217 0.293129 -0.212240 0.145080 0.839974 0.522872 0.331545 0.456639 -0.825566 -0.957611 0.194769 -0.212240 0.057096 0.850497 0.522872 0.282349 0.488590 -0.825566 -0.972750 0.093332 -0.212240 -0.032356 0.851797 0.522872 0.229586 0.515492 -0.825566 -0.977175 -0.009133 -0.212240 -0.121452 0.843714 0.522872 0.174295 0.536715 -0.825566 -0.970836 -0.111498 -0.212240 -0.209211 0.826338 0.522872 0.117083 0.552026 -0.825566 -0.954015 -0.211680 -0.212240 -0.293865 0.800155 0.522872 0.059143 0.561198 -0.825566 -0.926576 -0.310502 -0.212240 -0.376108 0.764949 0.522872 0.000000 0.564306 -0.825566 -0.888930 -0.405904 -0.212240 -0.454209 0.721317 0.522872 -0.059143 0.561198 -0.825566 -0.841989 -0.495993 -0.212240 -0.526637 0.670267 0.522872 -0.117083 0.552026 -0.825566 -0.785368 -0.581508 -0.212240 -0.593985 0.611381 0.522872 -0.174295 0.536715 -0.825566 -0.720097 -0.660617 -0.212240 -0.654791 0.545759 0.522872 -0.229586 0.515492 -0.825566 -0.646893 -0.732450 -0.212240 -0.708384 0.474127 0.522872 -0.282349 0.488590 -0.825566 -0.567360 -0.795648 -0.212240 -0.753777 0.398026 0.522872 -0.331545 0.456639 -0.825566 -0.480846 -0.850730 -0.212240 -0.791342 0.316833 0.522872 -0.377578 0.419376 -0.825566 -0.389035 -0.896441 -0.212240 -0.820190 0.232149 0.522872 -0.419453 0.377493 -0.825566 -0.293871 -0.931984 -0.212240 -0.839858 0.145749 0.522872 -0.456375 0.331909 -0.825566 -0.194574 -0.957651 -0.212240 -0.850508 0.056923 0.522872 -0.488648 0.282250 -0.825566 -0.093134 -0.972769 -0.212240 -0.851790 -0.032530 0.522872 -0.515538 0.229481 -0.825566 0.009332 -0.977173 -0.212240 -0.843690 -0.121624 0.522872 -0.536750 0.174185 -0.825566 0.110724 -0.970924 -0.212240 -0.826505 -0.208553 0.522872 -0.551933 0.117523 -0.825566 0.211874 -0.953972 -0.212240 -0.800095 -0.294028 0.522872 -0.561210 0.059029 -0.825566 0.209056 -0.886679 0.412428 0.400538 0.462386 0.791055 -0.892113 -0.000182 0.451813 0.300835 -0.859885 0.412428 0.349870 0.501819 0.791055 -0.887180 -0.093681 0.451813 0.388476 -0.824008 0.412428 0.295885 0.535429 0.791055 -0.872662 -0.185275 0.451813 0.472699 -0.778755 0.412428 0.238139 0.563491 0.791055 -0.848437 -0.275716 0.451813 0.551714 -0.724924 0.412428 0.177769 0.585346 0.791055 -0.814868 -0.363120 0.451813 0.623990 -0.663732 0.412428 0.116042 0.600638 0.791055 -0.772768 -0.445751 0.451813 0.690117 -0.594678 0.412428 0.052452 0.609492 0.791055 -0.721795 -0.524288 0.451813 0.748643 -0.519074 0.412428 -0.011716 0.611633 0.791055 -0.662870 -0.597050 0.451813 0.798922 -0.437752 0.412428 -0.075755 0.607036 0.791055 -0.596645 -0.663235 0.451813 0.840050 -0.352448 0.412428 -0.138364 0.595892 0.791055 -0.524569 -0.721591 0.451813 0.872362 -0.262464 0.412428 -0.200055 0.578109 0.791055 -0.446052 -0.772595 0.451813 0.895066 -0.169589 0.412428 -0.259543 0.553957 0.791055 -0.362622 -0.815089 0.451813 0.907835 -0.075753 0.412428 -0.315649 0.524021 0.791055 -0.276046 -0.848330 0.451813 0.910775 0.019812 0.412428 -0.368831 0.488052 0.791055 -0.185614 -0.872590 0.451813 0.903682 0.115158 0.412428 -0.417952 0.446708 0.791055 -0.093138 -0.887238 0.451813 0.886806 0.208514 0.412428 -0.462142 0.400820 0.791055 -0.000363 -0.892113 0.451813 0.860068 0.300309 0.412428 -0.501605 0.350177 0.791055 0.093138 -0.887238 0.451813 0.823857 0.388797 0.412428 -0.535544 0.295677 0.791055 0.185614 -0.872590 0.451813 0.778571 0.473002 0.412428 -0.563583 0.237919 0.791055 0.276046 -0.848330 0.451813 0.725261 0.551271 0.412428 -0.585237 0.178127 0.791055 0.362622 -0.815089 0.451813 0.663489 0.624248 0.412428 -0.600683 0.115809 0.791055 0.446052 -0.772595 0.451813 0.594409 0.690348 0.412428 -0.609512 0.052215 0.791055 0.524569 -0.721591 0.451813 0.519531 0.748325 0.412428 -0.611640 -0.011342 0.791055 0.596645 -0.663235 0.451813 0.438240 0.798655 0.412428 -0.607082 -0.075384 0.791055 0.662870 -0.597050 0.451813 0.352121 0.840187 0.412428 -0.595838 -0.138595 0.791055 0.721795 -0.524288 0.451813 0.262125 0.872464 0.412428 -0.578031 -0.200280 0.791055 0.772768 -0.445751 0.451813 0.170136 0.894962 0.412428 -0.554116 -0.259205 0.791055 0.814868 -0.363120 0.451813 0.075400 0.907865 0.412428 -0.523898 -0.315853 0.791055 0.848437 -0.275716 0.451813 -0.020166 0.910767 0.412428 -0.487909 -0.369021 0.791055 0.872662 -0.185275 0.451813 -0.114606 0.903753 0.412428 -0.446963 -0.417679 0.791055 0.887180 -0.093681 0.451813 -0.208695 0.886764 0.412428 -0.400726 -0.462223 0.791055 0.892113 -0.000182 0.451813 -0.300484 0.860007 0.412428 -0.350075 -0.501676 0.791055 0.887219 0.093319 0.451813 -0.388964 0.823778 0.412428 -0.295567 -0.535604 0.791055 0.872552 0.185792 0.451813 -0.472381 0.778947 0.412428 -0.238368 -0.563394 0.791055 0.848550 0.275370 0.451813 -0.551419 0.725148 0.412428 -0.178008 -0.585273 0.791055 0.815016 0.362788 0.451813 -0.624383 0.663362 0.412428 -0.115686 -0.600707 0.791055 0.772504 0.446209 0.451813 -0.690469 0.594269 0.412428 -0.052091 -0.609523 0.791055 0.721484 0.524716 0.451813 -0.748431 0.519378 0.412428 0.011467 -0.611637 0.791055 0.663113 0.596780 0.451813 -0.798744 0.438077 0.412428 0.075508 -0.607067 0.791055 0.596915 0.662992 0.451813 -0.840258 0.351950 0.412428 0.138717 -0.595810 0.791055 0.524141 0.721901 0.451813 -0.872255 0.262819 0.412428 0.199820 -0.578190 0.791055 0.446366 0.772413 0.451813 -0.894997 0.169953 0.412428 0.259318 -0.554063 0.791055 0.362954 0.814942 0.451813 -0.907880 0.075215 0.412428 0.315959 -0.523833 0.791055 0.275543 0.848494 0.451813 -0.910763 -0.020351 0.412428 0.369121 -0.487834 0.791055 0.185097 0.872699 0.451813 -0.903729 -0.114790 0.412428 0.417770 -0.446878 0.791055 0.093500 0.887200 0.451813 -0.886721 -0.208875 0.412428 0.462305 -0.400632 0.791055 0.000000 0.892113 0.451813 -0.859946 -0.300660 0.412428 0.501748 -0.349973 0.791055 -0.093500 0.887200 0.451813 -0.824087 -0.388308 0.412428 0.535368 -0.295994 0.791055 -0.185097 0.872699 0.451813 -0.778851 -0.472540 0.412428 0.563442 -0.238253 0.791055 -0.275543 0.848494 0.451813 -0.725036 -0.551567 0.412428 0.585310 -0.177888 0.791055 -0.362954 0.814942 0.451813 -0.663235 -0.624518 0.412428 0.600730 -0.115564 0.791055 -0.446366 0.772413 0.451813 -0.594818 -0.689996 0.412428 0.609481 -0.052576 0.791055 -0.524141 0.721901 0.451813 -0.519226 -0.748537 0.412428 0.611635 0.011591 0.791055 -0.596915 0.662992 0.451813 -0.437914 -0.798833 0.412428 0.607052 0.075631 0.791055 -0.663113 0.596780 0.451813 -0.352619 -0.839978 0.412428 0.595920 0.138242 0.791055 -0.721484 0.524716 0.451813 -0.262642 -0.872309 0.412428 0.578149 0.199938 0.791055 -0.772504 0.446209 0.451813 -0.169771 -0.895031 0.412428 0.554010 0.259430 0.791055 -0.815016 0.362788 0.451813 -0.075030 -0.907895 0.412428 0.523769 0.316066 0.791055 -0.848550 0.275370 0.451813 0.019626 -0.910779 0.412428 0.488127 0.368732 0.791055 -0.872552 0.185792 0.451813 0.114974 -0.903706 0.412428 0.446793 0.417861 0.791055 -0.887219 0.093319 0.451813 0.608046 -0.723614 0.326592 0.637413 0.690205 0.342524 -0.473271 -0.000096 0.880917 0.680537 -0.655901 0.326592 0.561564 0.753209 0.342524 -0.470654 -0.049698 0.880917 0.744951 -0.581709 0.326592 0.480337 0.807437 0.342524 -0.462952 -0.098289 0.880917 0.801816 -0.500429 0.326592 0.393066 0.853332 0.342524 -0.450101 -0.146269 0.880917 0.849848 -0.413637 0.326592 0.301466 0.889829 0.342524 -0.432292 -0.192637 0.880917 0.888197 -0.323177 0.326592 0.207462 0.916317 0.342524 -0.409958 -0.236473 0.880917 0.917177 -0.228308 0.326592 0.110283 0.933014 0.342524 -0.382916 -0.278138 0.880917 0.936054 -0.130924 0.326592 0.011889 0.939434 0.342524 -0.351656 -0.316738 0.880917 0.944620 -0.032098 0.326592 -0.086636 0.935506 0.342524 -0.316523 -0.351850 0.880917 0.942848 0.066139 0.326592 -0.183285 0.921457 0.342524 -0.278287 -0.382808 0.880917 0.930724 0.164592 0.326592 -0.278851 0.897173 0.342524 -0.236633 -0.409866 0.880917 0.908347 0.261233 0.326592 -0.371346 0.863006 0.342524 -0.192373 -0.432409 0.880917 0.876320 0.354119 0.326592 -0.458930 0.819793 0.342524 -0.146444 -0.450044 0.880917 0.834380 0.444013 0.326592 -0.542323 0.767179 0.342524 -0.098469 -0.462914 0.880917 0.783249 0.529017 0.326592 -0.619742 0.706114 0.342524 -0.049410 -0.470684 0.880917 0.723985 0.607604 0.326592 -0.689815 0.637834 0.342524 -0.000193 -0.473271 0.880917 0.656317 0.680136 0.326592 -0.752866 0.562024 0.342524 0.049410 -0.470684 0.880917 0.581419 0.745177 0.326592 -0.807623 0.480023 0.342524 0.098469 -0.462914 0.880917 0.500117 0.802010 0.326592 -0.853485 0.392734 0.342524 0.146444 -0.450044 0.880917 0.414156 0.849595 0.326592 -0.889645 0.302010 0.342524 0.192373 -0.432409 0.880917 0.322832 0.888323 0.326592 -0.916398 0.207105 0.342524 0.236633 -0.409866 0.880917 0.227951 0.917265 0.326592 -0.933057 0.109920 0.342524 0.278287 -0.382808 0.880917 0.131496 0.935974 0.326592 -0.939426 0.012463 0.342524 0.316523 -0.351850 0.880917 0.032675 0.944600 0.326592 -0.935559 -0.086065 0.342524 0.351656 -0.316738 0.880917 -0.066506 0.942823 0.326592 -0.921386 -0.183644 0.342524 0.382916 -0.278138 0.880917 -0.164954 0.930660 0.326592 -0.897064 -0.279200 0.342524 0.409958 -0.236473 0.880917 -0.260677 0.908507 0.326592 -0.863233 -0.370818 0.342524 0.432292 -0.192637 0.880917 -0.354460 0.876182 0.326592 -0.819614 -0.459249 0.342524 0.450101 -0.146269 0.880917 -0.444338 0.834207 0.326592 -0.766968 -0.542621 0.342524 0.462952 -0.098289 0.880917 -0.528538 0.783572 0.326592 -0.706493 -0.619310 0.342524 0.470654 -0.049698 0.880917 -0.607751 0.723862 0.326592 -0.637694 -0.689945 0.342524 0.473271 -0.000096 0.880917 -0.680270 0.656178 0.326592 -0.561870 -0.752980 0.342524 0.470674 0.049506 0.880917 -0.745296 0.581267 0.326592 -0.479858 -0.807721 0.342524 0.462894 0.098564 0.880917 -0.801612 0.500756 0.326592 -0.393414 -0.853172 0.342524 0.450160 0.146085 0.880917 -0.849680 0.413983 0.326592 -0.301829 -0.889706 0.342524 0.432370 0.192461 0.880917 -0.888388 0.322651 0.326592 -0.206919 -0.916440 0.342524 0.409818 0.236716 0.880917 -0.917312 0.227764 0.326592 -0.109730 -0.933079 0.342524 0.382751 0.278365 0.880917 -0.936000 0.131305 0.326592 -0.012271 -0.939429 0.342524 0.351785 0.316595 0.880917 -0.944607 0.032482 0.326592 0.086255 -0.935541 0.342524 0.316666 0.351721 0.880917 -0.942809 -0.066698 0.326592 0.183831 -0.921349 0.342524 0.278060 0.382973 0.880917 -0.930791 -0.164213 0.326592 0.278486 -0.897286 0.342524 0.236800 0.409770 0.880917 -0.908454 -0.260862 0.326592 0.370994 -0.863157 0.342524 0.192549 0.432331 0.880917 -0.876110 -0.354638 0.326592 0.459416 -0.819521 0.342524 0.146177 0.450131 0.880917 -0.834117 -0.444508 0.326592 0.542777 -0.766857 0.342524 0.098195 0.462972 0.880917 -0.783464 -0.528698 0.326592 0.619454 -0.706367 0.342524 0.049602 0.470664 0.880917 -0.723738 -0.607899 0.326592 0.690075 -0.637553 0.342524 0.000000 0.473271 0.880917 -0.656040 -0.680404 0.326592 0.753094 -0.561717 0.342524 -0.049602 0.470664 0.880917 -0.581861 -0.744833 0.326592 0.807339 -0.480501 0.342524 -0.098195 0.462972 0.880917 -0.500592 -0.801714 0.326592 0.853252 -0.393240 0.342524 -0.146177 0.450131 0.880917 -0.413810 -0.849764 0.326592 0.889767 -0.301647 0.342524 -0.192549 0.432331 0.880917 -0.322470 -0.888454 0.326592 0.916482 -0.206732 0.342524 -0.236800 0.409770 0.880917 -0.228495 -0.917130 0.326592 0.932992 -0.110473 0.342524 -0.278060 0.382973 0.880917 -0.131114 -0.936027 0.326592 0.939431 -0.012080 0.342524 -0.316666 0.351721 0.880917 -0.032290 -0.944614 0.326592 0.935524 0.086446 0.342524 -0.351785 0.316595 0.880917 0.065947 -0.942862 0.326592 0.921495 0.183098 0.342524 -0.382751 0.278365 0.880917 0.164403 -0.930757 0.326592 0.897230 0.278669 0.342524 -0.409818 0.236716 0.880917 0.261047 -0.908401 0.326592 0.863082 0.371170 0.342524 -0.432370 0.192461 0.880917 0.354817 -0.876038 0.326592 0.819427 0.459583 0.342524 -0.450160 0.146085 0.880917 0.443843 -0.834470 0.326592 0.767289 0.542167 0.342524 -0.462894 0.098564 0.880917 0.528857 -0.783356 0.326592 0.706240 0.619598 0.342524 -0.470674 0.049506 0.880917 -0.400165 -0.886340 -0.232959 0.766105 -0.463035 0.445737 -0.502943 -0.000102 0.864320 -0.305066 -0.923399 -0.232959 0.810415 -0.380192 0.445737 -0.500162 -0.052814 0.864320 -0.207557 -0.950079 -0.232959 0.845505 -0.294006 0.445737 -0.491977 -0.104452 0.864320 -0.106839 -0.966600 -0.232959 0.871662 -0.203772 0.445737 -0.478320 -0.155439 0.864320 -0.004944 -0.972474 -0.232959 0.888219 -0.111293 0.445737 -0.459395 -0.204714 0.864320 0.096038 -0.967733 -0.232959 0.894973 -0.018484 0.445737 -0.435660 -0.251299 0.864320 0.196934 -0.952338 -0.232959 0.891981 0.075418 0.445737 -0.406923 -0.295575 0.864320 0.295661 -0.926453 -0.232959 0.879164 0.168488 0.445737 -0.373704 -0.336596 0.864320 0.391132 -0.890363 -0.232959 0.856664 0.259703 0.445737 -0.336368 -0.373909 0.864320 0.481449 -0.844948 -0.232959 0.825074 0.347233 0.445737 -0.295734 -0.406808 0.864320 0.567355 -0.789835 -0.232959 0.784138 0.431794 0.445737 -0.251469 -0.435563 0.864320 0.647010 -0.726022 -0.232959 0.734564 0.511599 0.445737 -0.204434 -0.459520 0.864320 0.718884 -0.654932 -0.232959 0.677485 0.585092 0.445737 -0.155625 -0.478259 0.864320 0.783567 -0.575980 -0.232959 0.612432 0.652875 0.445737 -0.104643 -0.491936 0.864320 0.839618 -0.490685 -0.232959 0.540633 0.713466 0.445737 -0.052508 -0.500194 0.864320 0.886095 -0.400706 -0.232959 0.463503 0.765822 0.445737 -0.000205 -0.502943 0.864320 0.923212 -0.305630 -0.232959 0.380687 0.810183 0.445737 0.052508 -0.500194 0.864320 0.950160 -0.207188 -0.232959 0.293677 0.845619 0.445737 0.104643 -0.491936 0.864320 0.966642 -0.106463 -0.232959 0.203433 0.871742 0.445737 0.155625 -0.478259 0.864320 0.972471 -0.005538 -0.232959 0.111836 0.888150 0.445737 0.204434 -0.459520 0.864320 0.967696 0.096414 -0.232959 0.018136 0.894980 0.445737 0.251469 -0.435563 0.864320 0.952261 0.197304 -0.232959 -0.075765 0.891952 0.445737 0.295734 -0.406808 0.864320 0.926633 0.295095 -0.232959 -0.167951 0.879267 0.445737 0.336368 -0.373909 0.864320 0.890602 0.390588 -0.232959 -0.259180 0.856822 0.445737 0.373704 -0.336596 0.864320 0.844760 0.481778 -0.232959 -0.347554 0.824939 0.445737 0.406923 -0.295575 0.864320 0.789614 0.567662 -0.232959 -0.432099 0.783970 0.445737 0.435660 -0.251299 0.864320 0.726417 0.646566 -0.232959 -0.511150 0.734877 0.445737 0.459395 -0.204714 0.864320 0.654652 0.719139 -0.232959 -0.585355 0.677257 0.445737 0.478320 -0.155439 0.864320 0.575675 0.783791 -0.232959 -0.653113 0.612178 0.445737 0.491977 -0.104452 0.864320 0.491198 0.839318 -0.232959 -0.713136 0.541069 0.445737 0.500162 -0.052814 0.864320 0.400526 0.886177 -0.232959 -0.765916 0.463347 0.445737 0.502943 -0.000102 0.864320 0.305442 0.923274 -0.232959 -0.810260 0.380522 0.445737 0.500183 0.052610 0.864320 0.206994 0.950202 -0.232959 -0.845679 0.293505 0.445737 0.491915 0.104743 0.864320 0.107233 0.966556 -0.232959 -0.871579 0.204127 0.445737 0.478383 0.155244 0.864320 0.005340 0.972472 -0.232959 -0.888173 0.111655 0.445737 0.459478 0.204527 0.864320 -0.096611 0.967676 -0.232959 -0.894984 0.017953 0.445737 0.435511 0.251557 0.864320 -0.197498 0.952221 -0.232959 -0.891936 -0.075946 0.445737 0.406748 0.295817 0.864320 -0.295284 0.926573 -0.232959 -0.879233 -0.168130 0.445737 0.373841 0.336444 0.864320 -0.390769 0.890522 -0.232959 -0.856769 -0.259354 0.445737 0.336520 0.373772 0.864320 -0.481950 0.844662 -0.232959 -0.824869 -0.347721 0.445737 0.295493 0.406983 0.864320 -0.567033 0.790066 -0.232959 -0.784314 -0.431474 0.445737 0.251646 0.435460 0.864320 -0.646714 0.726286 -0.232959 -0.734773 -0.511300 0.445737 0.204621 0.459436 0.864320 -0.719273 0.654505 -0.232959 -0.677138 -0.585493 0.445737 0.155342 0.478352 0.864320 -0.783908 0.575516 -0.232959 -0.612045 -0.653238 0.445737 0.104351 0.491998 0.864320 -0.839418 0.491027 -0.232959 -0.540924 -0.713246 0.445737 0.052712 0.500173 0.864320 -0.886258 0.400345 -0.232959 -0.463191 -0.766011 0.445737 0.000000 0.502943 0.864320 -0.923336 0.305254 -0.232959 -0.380357 -0.810338 0.445737 -0.052712 0.500173 0.864320 -0.950037 0.207751 -0.232959 -0.294178 -0.845445 0.445737 -0.104351 0.491998 0.864320 -0.966578 0.107036 -0.232959 -0.203949 -0.871621 0.445737 -0.155342 0.478352 0.864320 -0.972473 0.005142 -0.232959 -0.111474 -0.888196 0.445737 -0.204621 0.459436 0.864320 -0.967656 -0.096808 -0.232959 -0.017771 -0.894987 0.445737 -0.251646 0.435460 0.864320 -0.952378 -0.196740 -0.232959 0.075236 -0.891997 0.445737 -0.295493 0.406983 0.864320 -0.926513 -0.295473 -0.232959 0.168309 -0.879199 0.445737 -0.336520 0.373772 0.864320 -0.890443 -0.390951 -0.232959 0.259529 -0.856717 0.445737 -0.373841 0.336444 0.864320 -0.845046 -0.481277 -0.232959 0.347064 -0.825145 0.445737 -0.406748 0.295817 0.864320 -0.789950 -0.567194 -0.232959 0.431634 -0.784226 0.445737 -0.435511 0.251557 0.864320 -0.726154 -0.646862 -0.232959 0.511449 -0.734669 0.445737 -0.459478 0.204527 0.864320 -0.654359 -0.719406 -0.232959 0.585631 -0.677019 0.445737 -0.478383 0.155244 0.864320 -0.576140 -0.783449 -0.232959 0.652750 -0.612565 0.445737 -0.491915 0.104743 0.864320 -0.490856 -0.839518 -0.232959 0.713356 -0.540778 0.445737 -0.500183 0.052610 0.864320 0.183020 -0.387726 0.903423 0.076772 0.921775 0.380049 -0.980107 -0.000200 0.198470 0.222649 -0.366409 0.903423 -0.020260 0.924744 0.380049 -0.974688 -0.102921 0.198470 0.259483 -0.341315 0.903423 -0.116151 0.917645 0.380049 -0.958737 -0.203550 0.198470 0.293827 -0.312240 0.903423 -0.211687 0.900417 0.380049 -0.932124 -0.302911 0.198470 0.324933 -0.279725 0.903423 -0.304891 0.873272 0.380049 -0.895243 -0.398936 0.198470 0.352217 -0.244481 0.903423 -0.393900 0.836902 0.380049 -0.848991 -0.489718 0.198470 0.375900 -0.206220 0.903423 -0.479444 0.791009 0.380049 -0.792989 -0.576001 0.198470 0.395443 -0.165687 0.903423 -0.559707 0.736404 0.380049 -0.728253 -0.655940 0.198470 0.410631 -0.123329 0.903423 -0.633805 0.673687 0.380049 -0.655495 -0.728654 0.198470 0.421215 -0.080034 0.903423 -0.700318 0.604250 0.380049 -0.576310 -0.792765 0.198470 0.427284 -0.035447 0.903423 -0.759790 0.527524 0.380049 -0.490048 -0.848801 0.198470 0.428645 0.009530 0.903423 -0.810894 0.444987 0.380049 -0.398389 -0.895486 0.198470 0.425340 0.053978 0.903423 -0.852708 0.358401 0.380049 -0.303274 -0.932006 0.198470 0.417340 0.098259 0.903423 -0.885575 0.267058 0.380049 -0.203923 -0.958658 0.198470 0.404744 0.141458 0.903423 -0.908687 0.172772 0.380049 -0.102325 -0.974751 0.198470 0.387838 0.182783 0.903423 -0.921728 0.077335 0.380049 -0.000399 -0.980107 0.198470 0.366545 0.222425 0.903423 -0.924756 -0.019695 0.380049 0.102325 -0.974751 0.198470 0.341214 0.259616 0.903423 -0.917599 -0.116508 0.380049 0.203923 -0.958658 0.198470 0.312125 0.293948 0.903423 -0.900335 -0.212037 0.380049 0.303274 -0.932006 0.198470 0.279923 0.324762 0.903423 -0.873458 -0.304357 0.380049 0.398389 -0.895486 0.198470 0.244344 0.352312 0.903423 -0.836749 -0.394226 0.380049 0.490048 -0.848801 0.198470 0.206074 0.375981 0.903423 -0.790823 -0.479752 0.380049 0.576310 -0.792765 0.198470 0.165929 0.395342 0.903423 -0.736745 -0.559257 0.380049 0.655495 -0.728654 0.198470 0.123580 0.410555 0.903423 -0.674074 -0.633393 0.380049 0.728253 -0.655940 0.198470 0.079870 0.421246 0.903423 -0.603977 -0.700553 0.380049 0.792989 -0.576001 0.198470 0.035281 0.427297 0.903423 -0.527228 -0.759995 0.380049 0.848991 -0.489718 0.198470 -0.009268 0.428651 0.903423 -0.445482 -0.810622 0.380049 0.895243 -0.398936 0.198470 -0.054143 0.425319 0.903423 -0.358070 -0.852847 0.380049 0.932124 -0.302911 0.198470 -0.098421 0.417302 0.903423 -0.266713 -0.885679 0.380049 0.958737 -0.203550 0.198470 -0.141211 0.404830 0.903423 -0.173327 -0.908581 0.380049 0.974688 -0.102921 0.198470 -0.182862 0.387800 0.903423 -0.077147 -0.921743 0.380049 0.980107 -0.000200 0.198470 -0.222499 0.366499 0.903423 0.019883 -0.924752 0.380049 0.974730 0.102524 0.198470 -0.259686 0.341161 0.903423 0.116694 -0.917576 0.380049 0.958617 0.204118 0.198470 -0.293700 0.312359 0.903423 0.211320 -0.900503 0.380049 0.932247 0.302531 0.198470 -0.324819 0.279857 0.903423 0.304535 -0.873396 0.380049 0.895405 0.398571 0.198470 -0.352362 0.244273 0.903423 0.394396 -0.836668 0.380049 0.848701 0.490221 0.198470 -0.376022 0.205997 0.903423 0.479913 -0.790725 0.380049 0.792648 0.576471 0.198470 -0.395376 0.165848 0.903423 0.559407 -0.736632 0.380049 0.728520 0.655643 0.198470 -0.410580 0.123497 0.903423 0.633530 -0.673945 0.380049 0.655792 0.728387 0.198470 -0.421263 0.079785 0.903423 0.700676 -0.603835 0.380049 0.575840 0.793107 0.198470 -0.427269 0.035621 0.903423 0.759575 -0.527833 0.380049 0.490394 0.848601 0.198470 -0.428649 -0.009356 0.903423 0.810713 -0.445317 0.380049 0.398754 0.895324 0.198470 -0.425308 -0.054230 0.903423 0.852920 -0.357896 0.380049 0.302721 0.932185 0.198470 -0.417282 -0.098506 0.903423 0.885733 -0.266533 0.380049 0.203354 0.958779 0.198470 -0.404801 -0.141293 0.903423 0.908617 -0.173142 0.380049 0.102722 0.974709 0.198470 -0.387763 -0.182941 0.903423 0.921759 -0.076959 0.380049 0.000000 0.980107 0.198470 -0.366454 -0.222574 0.903423 0.924748 0.020072 0.380049 -0.102722 0.974709 0.198470 -0.341368 -0.259414 0.903423 0.917668 0.115964 0.380049 -0.203354 0.958779 0.198470 -0.312300 -0.293763 0.903423 0.900460 0.211503 0.380049 -0.302721 0.932185 0.198470 -0.279791 -0.324876 0.903423 0.873334 0.304713 0.380049 -0.398754 0.895324 0.198470 -0.244201 -0.352411 0.903423 0.836588 0.394567 0.380049 -0.490394 0.848601 0.198470 -0.206297 -0.375858 0.903423 0.791107 0.479283 0.380049 -0.575840 0.793107 0.198470 -0.165768 -0.395410 0.903423 0.736518 0.559557 0.380049 -0.655792 0.728387 0.198470 -0.123413 -0.410606 0.903423 0.673816 0.633668 0.380049 -0.728520 0.655643 0.198470 -0.080120 -0.421199 0.903423 0.604392 0.700195 0.380049 -0.792648 0.576471 0.198470 -0.035534 -0.427276 0.903423 0.527678 0.759683 0.380049 -0.848701 0.490221 0.198470 0.009443 -0.428647 0.903423 0.445152 0.810803 0.380049 -0.895405 0.398571 0.198470 0.054316 -0.425297 0.903423 0.357722 0.852993 0.380049 -0.932247 0.302531 0.198470 0.098174 -0.417360 0.903423 0.267238 0.885520 0.380049 -0.958617 0.204118 0.198470 0.141376 -0.404772 0.903423 0.172957 0.908652 0.380049 -0.974730 0.102524 0.198470 -0.484956 -0.752173 0.446154 -0.553692 0.658966 0.509107 -0.676937 -0.000138 -0.736041 -0.403452 -0.798857 0.446154 -0.619707 0.597306 0.509107 -0.673194 -0.071085 -0.736041 -0.318340 -0.836424 0.446154 -0.678366 0.529745 0.509107 -0.662177 -0.140587 -0.736041 -0.228924 -0.865182 0.446154 -0.730151 0.455730 0.509107 -0.643796 -0.209213 -0.736041 -0.136986 -0.884410 0.446154 -0.773894 0.376695 0.509107 -0.618323 -0.275536 -0.736041 -0.044433 -0.893852 0.446154 -0.808818 0.294319 0.509107 -0.586378 -0.338237 -0.736041 0.049494 -0.893586 0.446154 -0.835210 0.207929 0.509107 -0.547699 -0.397830 -0.736041 0.142876 -0.883478 0.446154 -0.852403 0.119247 0.509107 -0.502987 -0.453042 -0.736041 0.234684 -0.863638 0.446154 -0.860206 0.029253 0.509107 -0.452735 -0.503264 -0.736041 0.323072 -0.834608 0.446154 -0.858595 -0.060206 0.509107 -0.398043 -0.547544 -0.736041 0.408766 -0.796151 0.446154 -0.847557 -0.149861 0.509107 -0.338465 -0.586246 -0.736041 0.489957 -0.748925 0.446154 -0.827182 -0.237866 0.509107 -0.275158 -0.618491 -0.736041 0.565057 -0.694015 0.446154 -0.798019 -0.322452 0.509107 -0.209464 -0.643714 -0.736041 0.634683 -0.630970 0.446154 -0.759829 -0.404315 0.509107 -0.140844 -0.662122 -0.736041 0.697318 -0.560976 0.446154 -0.713269 -0.481723 0.509107 -0.070674 -0.673237 -0.736041 0.751877 -0.485415 0.446154 -0.659304 -0.553289 0.509107 -0.000276 -0.676937 -0.736041 0.798611 -0.403940 0.446154 -0.597684 -0.619342 0.509107 0.070674 -0.673237 -0.736041 0.836548 -0.318015 0.446154 -0.529481 -0.678572 0.509107 0.140844 -0.662122 -0.736041 0.865271 -0.228587 0.446154 -0.455446 -0.730329 0.509107 0.209464 -0.643714 -0.736041 0.884326 -0.137526 0.446154 -0.377167 -0.773663 0.509107 0.275158 -0.618491 -0.736041 0.893870 -0.044085 0.446154 -0.294005 -0.808932 0.509107 0.338465 -0.586246 -0.736041 0.893567 0.049842 0.446154 -0.207604 -0.835291 0.509107 0.398043 -0.547544 -0.736041 0.883565 0.142336 0.446154 -0.119768 -0.852330 0.509107 0.452735 -0.503264 -0.736041 0.863781 0.234156 0.446154 -0.029778 -0.860188 0.509107 0.502987 -0.453042 -0.736041 0.834482 0.323397 0.446154 0.060540 -0.858572 0.509107 0.547699 -0.397830 -0.736041 0.795992 0.409075 0.446154 0.150191 -0.847498 0.509107 0.586378 -0.338237 -0.736041 0.749224 0.489499 0.446154 0.237360 -0.827327 0.509107 0.618323 -0.275536 -0.736041 0.693795 0.565327 0.446154 0.322763 -0.797894 0.509107 0.643796 -0.209213 -0.736041 0.630723 0.634929 0.446154 0.404610 -0.759672 0.509107 0.662177 -0.140587 -0.736041 0.561402 0.696975 0.446154 0.481288 -0.713563 0.509107 0.673194 -0.071085 -0.736041 0.485262 0.751975 0.446154 0.553423 -0.659191 0.509107 0.676937 -0.000138 -0.736041 0.403777 0.798693 0.446154 0.619464 -0.597558 0.509107 0.673223 0.070811 -0.736041 0.317845 0.836613 0.446154 0.678680 -0.529343 0.509107 0.662094 0.140979 -0.736041 0.229276 0.865089 0.446154 0.729966 -0.456027 0.509107 0.643881 0.208951 -0.736041 0.137346 0.884354 0.446154 0.773740 -0.377010 0.509107 0.618435 0.275284 -0.736041 0.043903 0.893879 0.446154 0.808992 -0.293840 0.509107 0.586177 0.338584 -0.736041 -0.050024 0.893557 0.446154 0.835333 -0.207433 0.509107 0.547463 0.398155 -0.736041 -0.142516 0.883536 0.446154 0.852354 -0.119595 0.509107 0.503172 0.452837 -0.736041 -0.234332 0.863733 0.446154 0.860194 -0.029603 0.509107 0.452940 0.503079 -0.736041 -0.323567 0.834417 0.446154 0.858559 0.060714 0.509107 0.397719 0.547780 -0.736041 -0.408441 0.796318 0.446154 0.847618 0.149516 0.509107 0.338703 0.586108 -0.736041 -0.489652 0.749124 0.446154 0.827279 0.237529 0.509107 0.275410 0.618379 -0.736041 -0.565469 0.693680 0.446154 0.797828 0.322925 0.509107 0.209082 0.643838 -0.736041 -0.635057 0.630594 0.446154 0.759589 0.404765 0.509107 0.140452 0.662206 -0.736041 -0.697089 0.561260 0.446154 0.713465 0.481433 0.509107 0.070948 0.673208 -0.736041 -0.752074 0.485109 0.446154 0.659078 0.553558 0.509107 0.000000 0.676937 -0.736041 -0.798775 0.403614 0.446154 0.597432 0.619585 0.509107 -0.070948 0.673208 -0.736041 -0.836360 0.318511 0.446154 0.529883 0.678258 0.509107 -0.140452 0.662206 -0.736041 -0.865136 0.229100 0.446154 0.455878 0.730058 0.509107 -0.209082 0.643838 -0.736041 -0.884382 0.137166 0.446154 0.376852 0.773817 0.509107 -0.275410 0.618379 -0.736041 -0.893887 0.043721 0.446154 0.293675 0.809052 0.509107 -0.338703 0.586108 -0.736041 -0.893596 -0.049312 0.446154 0.208099 0.835168 0.509107 -0.397719 0.547780 -0.736041 -0.883507 -0.142696 0.446154 0.119421 0.852378 0.509107 -0.452940 0.503079 -0.736041 -0.863685 -0.234508 0.446154 0.029428 0.860200 0.509107 -0.503172 0.452837 -0.736041 -0.834674 -0.322902 0.446154 -0.060031 0.858607 0.509107 -0.547463 0.398155 -0.736041 -0.796234 -0.408604 0.446154 -0.149688 0.847587 0.509107 -0.586177 0.338584 -0.736041 -0.749025 -0.489804 0.446154 -0.237697 0.827231 0.509107 -0.618435 0.275284 -0.736041 -0.693565 -0.565610 0.446154 -0.323088 0.797762 0.509107 -0.643881 0.208951 -0.736041 -0.631100 -0.634555 0.446154 -0.404160 0.759911 0.509107 -0.662094 0.140979 -0.736041 -0.561118 -0.697204 0.446154 -0.481578 0.713367 0.509107 -0.673223 0.070811 -0.736041 -0.002672 0.999927 0.011743 0.205707 0.012042 -0.978540 -0.978610 -0.000199 -0.205724 -0.107457 0.994140 0.011743 0.203312 0.033535 -0.978540 -0.973199 -0.102764 -0.205724 -0.210081 0.977614 0.011743 0.198732 0.054460 -0.978540 -0.957273 -0.203239 -0.205724 -0.311385 0.950211 0.011743 0.191930 0.074989 -0.978540 -0.930700 -0.302448 -0.205724 -0.409259 0.912343 0.011743 0.183013 0.094691 -0.978540 -0.893875 -0.398327 -0.205724 -0.501760 0.864927 0.011743 0.172194 0.113179 -0.978540 -0.847694 -0.488970 -0.205724 -0.589647 0.807576 0.011743 0.159384 0.130603 -0.978540 -0.791778 -0.575122 -0.205724 -0.671040 0.741329 0.011743 0.144818 0.146588 -0.978540 -0.727141 -0.654938 -0.205724 -0.745040 0.666916 0.011743 0.128657 0.160959 -0.978540 -0.654494 -0.727541 -0.205724 -0.810249 0.585968 0.011743 0.111253 0.173445 -0.978540 -0.575430 -0.791554 -0.205724 -0.867200 0.497821 0.011743 0.092462 0.184150 -0.978540 -0.489300 -0.847504 -0.205724 -0.914600 0.404190 0.011743 0.072652 0.192826 -0.978540 -0.397780 -0.894119 -0.205724 -0.951618 0.307059 0.011743 0.052242 0.199327 -0.978540 -0.302811 -0.930582 -0.205724 -0.978559 0.205632 0.011743 0.031063 0.203704 -0.978540 -0.203611 -0.957194 -0.205724 -0.994721 0.101939 0.011743 0.009542 0.205838 -0.978540 -0.102169 -0.973262 -0.205724 -0.999929 -0.002061 0.011743 -0.011916 0.205714 -0.978540 -0.000399 -0.978610 -0.205724 -0.994206 -0.106850 0.011743 -0.033411 0.203332 -0.978540 0.102169 -0.973262 -0.205724 -0.977532 -0.210461 0.011743 -0.054537 0.198711 -0.978540 0.203611 -0.957194 -0.205724 -0.950090 -0.311754 0.011743 -0.075063 0.191901 -0.978540 0.302811 -0.930582 -0.205724 -0.912593 -0.408701 0.011743 -0.094579 0.183071 -0.978540 0.397780 -0.894119 -0.205724 -0.864732 -0.502097 0.011743 -0.113246 0.172150 -0.978540 0.489300 -0.847504 -0.205724 -0.807346 -0.589961 0.011743 -0.130665 0.159333 -0.978540 0.575430 -0.791554 -0.205724 -0.741738 -0.670587 0.011743 -0.146499 0.144908 -0.978540 0.654494 -0.727541 -0.205724 -0.667371 -0.744633 0.011743 -0.160880 0.128756 -0.978540 0.727141 -0.654938 -0.205724 -0.585653 -0.810477 0.011743 -0.173488 0.111185 -0.978540 0.791778 -0.575122 -0.205724 -0.497484 -0.867394 0.011743 -0.184186 0.092390 -0.978540 0.847694 -0.488970 -0.205724 -0.404749 -0.914352 0.011743 -0.192782 0.072770 -0.978540 0.893875 -0.398327 -0.205724 -0.306689 -0.951737 0.011743 -0.199347 0.052164 -0.978540 0.930700 -0.302448 -0.205724 -0.205251 -0.978639 0.011743 -0.203716 0.030984 -0.978540 0.957273 -0.203239 -0.205724 -0.102547 -0.994659 0.011743 -0.205832 0.009668 -0.978540 0.973199 -0.102764 -0.205724 0.002265 -0.999928 0.011743 -0.205712 -0.011958 -0.978540 0.978610 -0.000199 -0.205724 0.107052 -0.994184 0.011743 -0.203326 -0.033452 -0.978540 0.973241 0.102367 -0.205724 0.210660 -0.977489 0.011743 -0.198700 -0.054578 -0.978540 0.957152 0.203806 -0.205724 0.310998 -0.950338 0.011743 -0.191960 -0.074910 -0.978540 0.930823 0.302069 -0.205724 0.408887 -0.912509 0.011743 -0.183052 -0.094617 -0.978540 0.894038 0.397963 -0.205724 0.502273 -0.864630 0.011743 -0.172127 -0.113281 -0.978540 0.847404 0.489472 -0.205724 0.590126 -0.807226 0.011743 -0.159307 -0.130697 -0.978540 0.791437 0.575591 -0.205724 0.670738 -0.741602 0.011743 -0.144878 -0.146529 -0.978540 0.727407 0.654642 -0.205724 0.744769 -0.667219 0.011743 -0.128723 -0.160906 -0.978540 0.654790 0.727274 -0.205724 0.810596 -0.585488 0.011743 -0.111150 -0.173511 -0.978540 0.574960 0.791895 -0.205724 0.866998 -0.498174 0.011743 -0.092537 -0.184112 -0.978540 0.489645 0.847305 -0.205724 0.914435 -0.404563 0.011743 -0.072731 -0.192797 -0.978540 0.398145 0.893957 -0.205724 0.951800 -0.306495 0.011743 -0.052124 -0.199358 -0.978540 0.302259 0.930762 -0.205724 0.978681 -0.205052 0.011743 -0.030942 -0.203723 -0.978540 0.203044 0.957314 -0.205724 0.994680 -0.102345 0.011743 -0.009626 -0.205834 -0.978540 0.102565 0.973220 -0.205724 0.999928 0.002469 0.011743 0.012000 -0.205709 -0.978540 0.000000 0.978610 -0.205724 0.994162 0.107255 0.011743 0.033493 -0.203319 -0.978540 -0.102565 0.973220 -0.205724 0.977656 0.209882 0.011743 0.054420 -0.198743 -0.978540 -0.203044 0.957314 -0.205724 0.950275 0.311191 0.011743 0.074950 -0.191945 -0.978540 -0.302259 0.930762 -0.205724 0.912426 0.409073 0.011743 0.094654 -0.183033 -0.978540 -0.398145 0.893957 -0.205724 0.864527 0.502449 0.011743 0.113316 -0.172104 -0.978540 -0.489645 0.847305 -0.205724 0.807696 0.589483 0.011743 0.130570 -0.159411 -0.978540 -0.574960 0.791895 -0.205724 0.741465 0.670889 0.011743 0.146558 -0.144848 -0.978540 -0.654790 0.727274 -0.205724 0.667068 0.744905 0.011743 0.160932 -0.128690 -0.978540 -0.727407 0.654642 -0.205724 0.586133 0.810130 0.011743 0.173422 -0.111288 -0.978540 -0.791437 0.575591 -0.205724 0.497997 0.867099 0.011743 0.184131 -0.092499 -0.978540 -0.847404 0.489472 -0.205724 0.404377 0.914517 0.011743 0.192812 -0.072691 -0.978540 -0.894038 0.397963 -0.205724 0.306302 0.951862 0.011743 0.199368 -0.052083 -0.978540 -0.930823 0.302069 -0.205724 0.205831 0.978517 0.011743 0.203698 -0.031105 -0.978540 -0.957152 0.203806 -0.205724 0.102142 0.994700 0.011743 0.205836 -0.009584 -0.978540 -0.973241 0.102367 -0.205724 -0.358191 -0.916558 0.177823 -0.821059 0.399902 0.407358 -0.444479 -0.000091 -0.895789 -0.260157 -0.949051 0.177823 -0.858449 0.311647 0.407358 -0.442022 -0.046675 -0.895789 -0.160228 -0.970931 0.177823 -0.886164 0.220845 0.407358 -0.434788 -0.092310 -0.895789 -0.057585 -0.982376 0.177823 -0.904430 0.126753 0.407358 -0.422719 -0.137370 -0.895789 0.045693 -0.983001 0.177823 -0.912733 0.031264 0.407358 -0.405993 -0.180918 -0.895789 0.147494 -0.972946 0.177823 -0.911047 -0.063658 0.407358 -0.385018 -0.222087 -0.895789 0.248653 -0.952130 0.177823 -0.899358 -0.158792 0.407358 -0.359621 -0.261217 -0.895789 0.347074 -0.920825 0.177823 -0.877762 -0.252177 0.407358 -0.330263 -0.297469 -0.895789 0.441671 -0.879378 0.177823 -0.846498 -0.342783 0.407358 -0.297267 -0.330445 -0.895789 0.530575 -0.828776 0.177823 -0.806339 -0.428809 0.407358 -0.261357 -0.359520 -0.895789 0.614515 -0.768603 0.177823 -0.756956 -0.510957 0.407358 -0.222237 -0.384932 -0.895789 0.691686 -0.699964 0.177823 -0.699235 -0.587477 0.407358 -0.180670 -0.406104 -0.895789 0.760613 -0.624377 0.177823 -0.634469 -0.656893 0.407358 -0.137535 -0.422665 -0.895789 0.821864 -0.541220 0.177823 -0.562128 -0.719772 0.407358 -0.092479 -0.434752 -0.895789 0.874061 -0.452102 0.177823 -0.483595 -0.774723 0.407358 -0.046405 -0.442050 -0.895789 0.916339 -0.358751 0.177823 -0.400404 -0.820814 0.407358 -0.000181 -0.444479 -0.895789 0.948892 -0.260736 0.177823 -0.312171 -0.858259 0.407358 0.046405 -0.442050 -0.895789 0.970993 -0.159850 0.177823 -0.220500 -0.886250 0.407358 0.092479 -0.434752 -0.895789 0.982399 -0.057202 0.177823 -0.126401 -0.904479 0.407358 0.137535 -0.422665 -0.895789 0.983029 0.045092 0.177823 -0.031822 -0.912714 0.407358 0.180670 -0.406104 -0.895789 0.972889 0.147872 0.177823 0.064013 -0.911022 0.407358 0.222237 -0.384932 -0.895789 0.952033 0.249023 0.177823 0.159142 -0.899296 0.407358 0.261357 -0.359520 -0.895789 0.921037 0.346511 0.177823 0.251640 -0.877916 0.407358 0.297267 -0.330445 -0.895789 0.879648 0.441134 0.177823 0.342266 -0.846707 0.407358 0.330263 -0.297469 -0.895789 0.828569 0.530898 0.177823 0.429122 -0.806172 0.407358 0.359621 -0.261217 -0.895789 0.768364 0.614814 0.177823 0.511251 -0.756757 0.407358 0.385018 -0.222087 -0.895789 0.700387 0.691258 0.177823 0.587050 -0.699594 0.407358 0.405993 -0.180918 -0.895789 0.624081 0.760856 0.177823 0.657139 -0.634214 0.407358 0.422719 -0.137370 -0.895789 0.540901 0.822074 0.177823 0.719990 -0.561848 0.407358 0.434788 -0.092310 -0.895789 0.452636 0.873785 0.177823 0.774427 -0.484068 0.407358 0.442022 -0.046675 -0.895789 0.358565 0.916412 0.177823 0.820896 -0.400237 0.407358 0.444479 -0.000091 -0.895789 0.260543 0.948945 0.177823 0.858322 -0.311997 0.407358 0.442041 0.046495 -0.895789 0.159652 0.971025 0.177823 0.886295 -0.220320 0.407358 0.434733 0.092568 -0.895789 0.057985 0.982353 0.177823 0.904378 -0.127121 0.407358 0.422775 0.137198 -0.895789 -0.045292 0.983020 0.177823 0.912720 -0.031636 0.407358 0.406067 0.180752 -0.895789 -0.148070 0.972859 0.177823 0.911009 0.064198 0.407358 0.384886 0.222316 -0.895789 -0.249217 0.951982 0.177823 0.899263 0.159325 0.407358 0.359466 0.261430 -0.895789 -0.346699 0.920967 0.177823 0.877865 0.251819 0.407358 0.330384 0.297335 -0.895789 -0.441313 0.879558 0.177823 0.846637 0.342439 0.407358 0.297402 0.330324 -0.895789 -0.531066 0.828461 0.177823 0.806085 0.429286 0.407358 0.261144 0.359674 -0.895789 -0.614202 0.768853 0.177823 0.757164 0.510649 0.407358 0.222394 0.384841 -0.895789 -0.691400 0.700246 0.177823 0.699474 0.587192 0.407358 0.180835 0.406030 -0.895789 -0.760983 0.623926 0.177823 0.634080 0.657268 0.407358 0.137284 0.422747 -0.895789 -0.822184 0.540733 0.177823 0.561701 0.720105 0.407358 0.092221 0.434807 -0.895789 -0.873877 0.452458 0.177823 0.483910 0.774526 0.407358 0.046585 0.442031 -0.895789 -0.916485 0.358378 0.177823 0.400069 0.820977 0.407358 0.000000 0.444479 -0.895789 -0.948998 0.260350 0.177823 0.311822 0.858386 0.407358 -0.046585 0.442031 -0.895789 -0.970898 0.160425 0.177823 0.221026 0.886119 0.407358 -0.092221 0.434807 -0.895789 -0.982365 0.057785 0.177823 0.126937 0.904404 0.407358 -0.137284 0.422747 -0.895789 -0.983010 -0.045492 0.177823 0.031450 0.912727 0.407358 -0.180835 0.406030 -0.895789 -0.972829 -0.148268 0.177823 -0.064384 0.910996 0.407358 -0.222394 0.384841 -0.895789 -0.952180 -0.248459 0.177823 -0.158609 0.899390 0.407358 -0.261144 0.359674 -0.895789 -0.920896 -0.346886 0.177823 -0.251998 0.877813 0.407358 -0.297402 0.330324 -0.895789 -0.879468 -0.441492 0.177823 -0.342611 0.846568 0.407358 -0.330384 0.297335 -0.895789 -0.828884 -0.530407 0.177823 -0.428644 0.806426 0.407358 -0.359466 0.261430 -0.895789 -0.768728 -0.614358 0.177823 -0.510803 0.757060 0.407358 -0.384886 0.222316 -0.895789 -0.700105 -0.691543 0.177823 -0.587335 0.699355 0.407358 -0.406067 0.180752 -0.895789 -0.623771 -0.761110 0.177823 -0.657398 0.633946 0.407358 -0.422775 0.137198 -0.895789 -0.541388 -0.821753 0.177823 -0.719657 0.562275 0.407358 -0.434733 0.092568 -0.895789 -0.452280 -0.873969 0.177823 -0.774624 0.483753 0.407358 -0.442041 0.046495 -0.895789 -0.069137 -0.928830 0.363999 -0.173852 0.370507 0.912415 -0.982342 -0.000200 -0.187095 0.028592 -0.930960 0.363999 -0.211726 0.350245 0.912415 -0.976911 -0.103155 -0.187095 0.125082 -0.922962 0.363999 -0.246942 0.326373 0.912415 -0.960924 -0.204014 -0.187095 0.221127 -0.904769 0.363999 -0.279788 0.298694 0.912415 -0.934249 -0.303602 -0.187095 0.314735 -0.876611 0.363999 -0.309553 0.267725 0.912415 -0.897284 -0.399846 -0.187095 0.404038 -0.839201 0.363999 -0.335673 0.234143 0.912415 -0.850927 -0.490835 -0.187095 0.489767 -0.792233 0.363999 -0.358364 0.197673 0.912415 -0.794798 -0.577315 -0.187095 0.570101 -0.736539 0.363999 -0.377108 0.159025 0.912415 -0.729914 -0.657436 -0.187095 0.644156 -0.672732 0.363999 -0.391698 0.118626 0.912415 -0.656990 -0.730315 -0.187095 0.710514 -0.602225 0.363999 -0.401897 0.077321 0.912415 -0.577624 -0.794573 -0.187095 0.769718 -0.524442 0.363999 -0.407787 0.034774 0.912415 -0.491166 -0.850736 -0.187095 0.820444 -0.440881 0.363999 -0.409186 -0.008157 0.912415 -0.399297 -0.897528 -0.187095 0.861780 -0.353327 0.363999 -0.406128 -0.050591 0.912415 -0.303965 -0.934131 -0.187095 0.894065 -0.261060 0.363999 -0.398589 -0.092878 0.912415 -0.204388 -0.960844 -0.187095 0.916502 -0.165918 0.363999 -0.386660 -0.134141 0.912415 -0.102559 -0.976974 -0.187095 0.928787 -0.069705 0.363999 -0.370613 -0.173625 0.912415 -0.000400 -0.982342 -0.187095 0.930978 0.028023 0.363999 -0.350374 -0.211512 0.912415 0.102559 -0.976974 -0.187095 0.922913 0.125442 0.363999 -0.326277 -0.247069 0.912415 0.204388 -0.960844 -0.187095 0.904683 0.221479 0.363999 -0.298585 -0.279904 0.912415 0.303965 -0.934131 -0.187095 0.876803 0.314199 0.363999 -0.267914 -0.309389 0.912415 0.399297 -0.897528 -0.187095 0.839044 0.404364 0.363999 -0.234013 -0.335764 0.912415 0.491166 -0.850736 -0.187095 0.792042 0.490075 0.363999 -0.197533 -0.358441 0.912415 0.577624 -0.794573 -0.187095 0.736887 0.569651 0.363999 -0.159255 -0.377011 0.912415 0.656990 -0.730315 -0.187095 0.673125 0.643745 0.363999 -0.118865 -0.391626 0.912415 0.729914 -0.657436 -0.187095 0.601949 0.710748 0.363999 -0.077165 -0.401927 0.912415 0.794798 -0.577315 -0.187095 0.524142 0.769922 0.363999 -0.034615 -0.407801 0.912415 0.850927 -0.490835 -0.187095 0.441382 0.820175 0.363999 0.007907 -0.409191 0.912415 0.897284 -0.399846 -0.187095 0.352991 0.861917 0.363999 0.050749 -0.406109 0.912415 0.934249 -0.303602 -0.187095 0.260712 0.894167 0.363999 0.093033 -0.398553 0.912415 0.960924 -0.204014 -0.187095 0.166478 0.916400 0.363999 0.133905 -0.386742 0.912415 0.976911 -0.103155 -0.187095 0.069516 0.928802 0.363999 0.173701 -0.370577 0.912415 0.982342 -0.000200 -0.187095 -0.028212 0.930972 0.363999 0.211583 -0.350331 0.912415 0.976953 0.102758 -0.187095 -0.125630 0.922888 0.363999 0.247135 -0.326227 0.912415 0.960802 0.204583 -0.187095 -0.220758 0.904859 0.363999 0.279666 -0.298808 0.912415 0.934373 0.303221 -0.187095 -0.314378 0.876739 0.363999 0.309443 -0.267851 0.912415 0.897447 0.399480 -0.187095 -0.404535 0.838961 0.363999 0.335812 -0.233944 0.912415 0.850636 0.491339 -0.187095 -0.490236 0.791943 0.363999 0.358482 -0.197460 0.912415 0.794455 0.577786 -0.187095 -0.569801 0.736771 0.363999 0.377044 -0.159179 0.912415 0.730181 0.657138 -0.187095 -0.643882 0.672994 0.363999 0.391650 -0.118785 0.912415 0.657287 0.730047 -0.187095 -0.710870 0.601804 0.363999 0.401943 -0.077083 0.912415 0.577153 0.794915 -0.187095 -0.769504 0.524755 0.363999 0.407773 -0.034940 0.912415 0.491512 0.850536 -0.187095 -0.820264 0.441215 0.363999 0.409189 0.007990 0.912415 0.399663 0.897366 -0.187095 -0.861989 0.352816 0.363999 0.406098 0.050832 0.912415 0.303412 0.934311 -0.187095 -0.894220 0.260530 0.363999 0.398534 0.093114 0.912415 0.203818 0.960965 -0.187095 -0.916434 0.166291 0.363999 0.386714 0.133984 0.912415 0.102956 0.976932 -0.187095 -0.928816 0.069326 0.363999 0.370542 0.173776 0.912415 0.000000 0.982342 -0.187095 -0.930966 -0.028402 0.363999 0.350288 0.211655 0.912415 -0.102956 0.976932 -0.187095 -0.922988 -0.124895 0.363999 0.326423 0.246875 0.912415 -0.203818 0.960965 -0.187095 -0.904814 -0.220942 0.363999 0.298751 0.279727 0.912415 -0.303412 0.934311 -0.187095 -0.876675 -0.314557 0.363999 0.267788 0.309498 0.912415 -0.399663 0.897366 -0.187095 -0.838879 -0.404706 0.363999 0.233876 0.335860 0.912415 -0.491512 0.850536 -0.187095 -0.792333 -0.489606 0.363999 0.197746 0.358324 0.912415 -0.577153 0.794915 -0.187095 -0.736655 -0.569951 0.363999 0.159102 0.377076 0.912415 -0.657287 0.730047 -0.187095 -0.672863 -0.644019 0.363999 0.118705 0.391674 0.912415 -0.730181 0.657138 -0.187095 -0.602370 -0.710391 0.363999 0.077403 0.401881 0.912415 -0.794455 0.577786 -0.187095 -0.524598 -0.769611 0.363999 0.034857 0.407780 0.912415 -0.850636 0.491339 -0.187095 -0.441048 -0.820354 0.363999 -0.008073 0.409188 0.912415 -0.897447 0.399480 -0.187095 -0.352640 -0.862061 0.363999 -0.050915 0.406088 0.912415 -0.934373 0.303221 -0.187095 -0.261242 -0.894012 0.363999 -0.092797 0.398608 0.912415 -0.960802 0.204583 -0.187095 -0.166105 -0.916468 0.363999 -0.134063 0.386687 0.912415 -0.976953 0.102758 -0.187095 0.043975 -0.997970 0.046072 0.687369 0.063690 0.723511 -0.724976 -0.000148 0.688774 0.148327 -0.987865 0.046072 0.676908 0.135380 0.723511 -0.720968 -0.076130 0.688774 0.250078 -0.967129 0.046072 0.659196 0.204920 0.723511 -0.709169 -0.150564 0.688774 0.350063 -0.935592 0.046072 0.634089 0.272880 0.723511 -0.689483 -0.224061 0.688774 0.446192 -0.893751 0.046072 0.601997 0.337834 0.723511 -0.662203 -0.295089 0.688774 0.536564 -0.842601 0.046072 0.563672 0.398504 0.723511 -0.627991 -0.362240 0.688774 0.621919 -0.781725 0.046072 0.518802 0.455386 0.723511 -0.586567 -0.426063 0.688774 0.700424 -0.712238 0.046072 0.468217 0.507252 0.723511 -0.538682 -0.485193 0.688774 0.771214 -0.634906 0.046072 0.412475 0.553531 0.723511 -0.484864 -0.538978 0.688774 0.832959 -0.551414 0.046072 0.352783 0.593360 0.723511 -0.426291 -0.586401 0.688774 0.886163 -0.461077 0.046072 0.288651 0.627067 0.723511 -0.362484 -0.627850 0.688774 0.929607 -0.365661 0.046072 0.221340 0.653866 0.723511 -0.294685 -0.662383 0.688774 0.962545 -0.267181 0.046072 0.152265 0.673311 0.723511 -0.224329 -0.689396 0.688774 0.985246 -0.164828 0.046072 0.080859 0.685561 0.723511 -0.150840 -0.709111 0.688774 0.997095 -0.060659 0.046072 0.008562 0.690260 0.723511 -0.075689 -0.721014 0.688774 0.997996 0.043365 0.046072 -0.063270 0.687407 0.723511 -0.000295 -0.724976 0.688774 0.987955 0.147723 0.046072 -0.134967 0.676990 0.723511 0.075689 -0.721014 0.688774 0.967031 0.250454 0.046072 -0.205177 0.659116 0.723511 0.150840 -0.709111 0.688774 0.935456 0.350427 0.046072 -0.273127 0.633982 0.723511 0.224329 -0.689396 0.688774 0.894023 0.445646 0.046072 -0.337466 0.602203 0.723511 0.294685 -0.662383 0.688774 0.842393 0.536891 0.046072 -0.398723 0.563518 0.723511 0.362484 -0.627850 0.688774 0.781483 0.622223 0.046072 -0.455588 0.518625 0.723511 0.426291 -0.586401 0.688774 0.712666 0.699989 0.046072 -0.506966 0.468527 0.723511 0.484864 -0.538978 0.688774 0.635377 0.770826 0.046072 -0.553279 0.412813 0.723511 0.538682 -0.485193 0.688774 0.551090 0.833173 0.046072 -0.593498 0.352552 0.723511 0.586567 -0.426063 0.688774 0.460732 0.886343 0.046072 -0.627179 0.288407 0.723511 0.627991 -0.362240 0.688774 0.366229 0.929383 0.046072 -0.653730 0.221740 0.723511 0.662203 -0.295089 0.688774 0.266806 0.962648 0.046072 -0.673370 0.152003 0.723511 0.689483 -0.224061 0.688774 0.164444 0.985310 0.046072 -0.685592 0.080592 0.723511 0.709169 -0.150564 0.688774 0.061268 0.997057 0.046072 -0.690255 0.008983 0.723511 0.720968 -0.076130 0.688774 -0.043568 0.997988 0.046072 -0.687394 -0.063410 0.723511 0.724976 -0.000148 0.688774 -0.147924 0.987925 0.046072 -0.676963 -0.135104 0.723511 0.720999 0.075836 0.688774 -0.250651 0.966980 0.046072 -0.659075 -0.205311 0.723511 0.709080 0.150984 0.688774 -0.349682 0.935735 0.046072 -0.634200 -0.272622 0.723511 0.689575 0.223780 0.688774 -0.445828 0.893932 0.046072 -0.602134 -0.337589 0.723511 0.662323 0.294820 0.688774 -0.537063 0.842283 0.046072 -0.563436 -0.398838 0.723511 0.627776 0.362612 0.688774 -0.622382 0.781356 0.046072 -0.518532 -0.455693 0.723511 0.586314 0.426411 0.688774 -0.700134 0.712523 0.046072 -0.468424 -0.507061 0.723511 0.538880 0.484973 0.688774 -0.770956 0.635220 0.046072 -0.412700 -0.553363 0.723511 0.485083 0.538781 0.688774 -0.833285 0.550920 0.046072 -0.352431 -0.593569 0.723511 0.425944 0.586654 0.688774 -0.885976 0.461438 0.046072 -0.288907 -0.626949 0.723511 0.362740 0.627702 0.688774 -0.929458 0.366040 0.046072 -0.221607 -0.653776 0.723511 0.294955 0.662263 0.688774 -0.962703 0.266610 0.046072 -0.151866 -0.673401 0.723511 0.223920 0.689529 0.688774 -0.985343 0.164244 0.046072 -0.080452 -0.685609 0.723511 0.150419 0.709200 0.688774 -0.997070 0.061065 0.046072 -0.008843 -0.690256 0.723511 0.075983 0.720984 0.688774 -0.997979 -0.043771 0.046072 0.063550 -0.687382 0.723511 0.000000 0.724976 0.688774 -0.987895 -0.148126 0.046072 0.135242 -0.676935 0.723511 -0.075983 0.720984 0.688774 -0.967180 -0.249881 0.046072 0.204786 -0.659238 0.723511 -0.150419 0.709200 0.688774 -0.935664 -0.349872 0.046072 0.272751 -0.634144 0.723511 -0.223920 0.689529 0.688774 -0.893842 -0.446010 0.046072 0.337712 -0.602065 0.723511 -0.294955 0.662263 0.688774 -0.842174 -0.537234 0.046072 0.398953 -0.563355 0.723511 -0.362740 0.627702 0.688774 -0.781852 -0.621760 0.046072 0.455280 -0.518895 0.723511 -0.425944 0.586654 0.688774 -0.712381 -0.700279 0.046072 0.507157 -0.468320 0.723511 -0.485083 0.538781 0.688774 -0.635063 -0.771085 0.046072 0.553447 -0.412587 0.723511 -0.538880 0.484973 0.688774 -0.551583 -0.832846 0.046072 0.593288 -0.352903 0.723511 -0.586314 0.426411 0.688774 -0.461257 -0.886069 0.046072 0.627008 -0.288779 0.723511 -0.627776 0.362612 0.688774 -0.365851 -0.929533 0.046072 0.653821 -0.221474 0.723511 -0.662323 0.294820 0.688774 -0.266414 -0.962757 0.046072 0.673432 -0.151729 0.723511 -0.689575 0.223780 0.688774 -0.165028 -0.985212 0.046072 0.685544 -0.080998 0.723511 -0.709080 0.150984 0.688774 -0.060862 -0.997082 0.046072 0.690258 -0.008702 0.723511 -0.720999 0.075836 0.688774 0.123219 0.481903 -0.867518 0.067995 -0.876225 -0.477082 -0.990047 -0.000202 -0.140735 0.072034 0.492163 -0.867518 0.159456 -0.864272 -0.477082 -0.984574 -0.103965 -0.140735 0.020552 0.496982 -0.867518 0.248316 -0.843049 -0.477082 -0.968461 -0.205614 -0.140735 -0.031649 0.496399 -0.867518 0.335306 -0.812381 -0.477082 -0.941577 -0.305983 -0.140735 -0.083501 0.490348 -0.867518 0.418603 -0.772764 -0.477082 -0.904322 -0.402982 -0.140735 -0.133954 0.479030 -0.867518 0.496564 -0.725132 -0.477082 -0.857602 -0.494685 -0.140735 -0.183422 0.462352 -0.867518 0.569828 -0.669096 -0.477082 -0.801032 -0.581843 -0.140735 -0.230869 0.440582 -0.867518 0.636816 -0.605688 -0.477082 -0.735639 -0.662593 -0.140735 -0.275774 0.413959 -0.867518 0.696789 -0.535610 -0.477082 -0.662143 -0.736044 -0.140735 -0.317258 0.383093 -0.867518 0.748627 -0.460380 -0.477082 -0.582155 -0.800806 -0.140735 -0.355662 0.347733 -0.867518 0.792756 -0.379383 -0.477082 -0.495018 -0.857409 -0.140735 -0.390148 0.308542 -0.867518 0.828152 -0.294207 -0.477082 -0.402429 -0.904569 -0.140735 -0.420070 0.266372 -0.867518 0.854219 -0.206645 -0.477082 -0.306350 -0.941458 -0.140735 -0.445675 0.220879 -0.867518 0.871173 -0.115979 -0.477082 -0.205991 -0.968381 -0.140735 -0.466370 0.172953 -0.867518 0.878530 -0.024035 -0.477082 -0.103363 -0.984637 -0.140735 -0.481827 0.123514 -0.867518 0.876266 0.067460 -0.477082 -0.000403 -0.990047 -0.140735 -0.492119 0.072334 -0.867518 0.864370 0.158928 -0.477082 0.103363 -0.984637 -0.140735 -0.496990 0.020358 -0.867518 0.842953 0.248644 -0.477082 0.205991 -0.968381 -0.140735 -0.496386 -0.031842 -0.867518 0.812250 0.335623 -0.477082 0.306350 -0.941458 -0.140735 -0.490399 -0.083201 -0.867518 0.773020 0.418131 -0.477082 0.402429 -0.904569 -0.140735 -0.478978 -0.134140 -0.867518 0.724939 0.496846 -0.477082 0.495018 -0.857409 -0.140735 -0.462281 -0.183601 -0.867518 0.668874 0.570089 -0.477082 0.582155 -0.800806 -0.140735 -0.440723 -0.230600 -0.867518 0.606077 0.636446 -0.477082 0.662143 -0.736044 -0.140735 -0.414127 -0.275521 -0.867518 0.536035 0.696462 -0.477082 0.735639 -0.662593 -0.140735 -0.382970 -0.317407 -0.867518 0.460089 0.748807 -0.477082 0.801032 -0.581843 -0.140735 -0.347594 -0.355797 -0.867518 0.379075 0.792903 -0.477082 0.857602 -0.494685 -0.140735 -0.308780 -0.389959 -0.867518 0.294713 0.827972 -0.477082 0.904322 -0.402982 -0.140735 -0.266209 -0.420174 -0.867518 0.206313 0.854300 -0.477082 0.941577 -0.305983 -0.140735 -0.220705 -0.445760 -0.867518 0.115640 0.871218 -0.477082 0.968461 -0.205614 -0.140735 -0.173237 -0.466264 -0.867518 0.024571 0.878515 -0.477082 0.984574 -0.103965 -0.140735 -0.123415 -0.481853 -0.867518 -0.067639 0.876252 -0.477082 0.990047 -0.000202 -0.140735 -0.072234 -0.492134 -0.867518 -0.159104 0.864337 -0.477082 0.984616 0.103564 -0.140735 -0.020257 -0.496994 -0.867518 -0.248816 0.842902 -0.477082 0.968339 0.206188 -0.140735 0.031446 -0.496412 -0.867518 -0.334976 0.812517 -0.477082 0.941702 0.305600 -0.140735 0.083301 -0.490382 -0.867518 -0.418288 0.772935 -0.477082 0.904486 0.402614 -0.140735 0.134237 -0.478951 -0.867518 -0.496994 0.724838 -0.477082 0.857308 0.495193 -0.140735 0.183696 -0.462244 -0.867518 -0.570225 0.668758 -0.477082 0.800687 0.582318 -0.140735 0.230690 -0.440676 -0.867518 -0.636569 0.605948 -0.477082 0.735909 0.662293 -0.140735 0.275605 -0.414071 -0.867518 -0.696571 0.535893 -0.477082 0.662443 0.735774 -0.140735 0.317485 -0.382905 -0.867518 -0.748900 0.459936 -0.477082 0.581680 0.801150 -0.140735 0.355520 -0.347877 -0.867518 -0.792601 0.379706 -0.477082 0.495368 0.857207 -0.140735 0.390022 -0.308701 -0.867518 -0.828032 0.294545 -0.477082 0.402798 0.904405 -0.140735 0.420228 -0.266123 -0.867518 -0.854342 0.206139 -0.477082 0.305791 0.941640 -0.140735 0.445805 -0.220615 -0.867518 -0.871241 0.115462 -0.477082 0.205417 0.968503 -0.140735 0.466299 -0.173142 -0.867518 -0.878520 0.024393 -0.477082 0.103764 0.984595 -0.140735 0.481878 -0.123317 -0.867518 -0.876238 -0.067817 -0.477082 0.000000 0.990047 -0.140735 0.492148 -0.072134 -0.867518 -0.864305 -0.159280 -0.477082 -0.103764 0.984595 -0.140735 0.496978 -0.020653 -0.867518 -0.843100 -0.248145 -0.477082 -0.205417 0.968503 -0.140735 0.496405 0.031548 -0.867518 -0.812449 -0.335141 -0.477082 -0.305791 0.941640 -0.140735 0.490365 0.083401 -0.867518 -0.772849 -0.418446 -0.477082 -0.402798 0.904405 -0.140735 0.478923 0.134335 -0.867518 -0.724737 -0.497141 -0.477082 -0.495368 0.857207 -0.140735 0.462390 0.183328 -0.867518 -0.669211 -0.569692 -0.477082 -0.581680 0.801150 -0.140735 0.440629 0.230780 -0.867518 -0.605818 -0.636693 -0.477082 -0.662443 0.735774 -0.140735 0.414015 0.275690 -0.867518 -0.535752 -0.696680 -0.477082 -0.735909 0.662293 -0.140735 0.383158 0.317180 -0.867518 -0.460533 -0.748534 -0.477082 -0.800687 0.582318 -0.140735 0.347805 0.355591 -0.867518 -0.379545 -0.792678 -0.477082 -0.857308 0.495193 -0.140735 0.308621 0.390085 -0.867518 -0.294376 -0.828092 -0.477082 -0.904486 0.402614 -0.140735 0.266038 0.420282 -0.867518 -0.205965 -0.854384 -0.477082 -0.941702 0.305600 -0.140735 0.220970 0.445630 -0.867518 -0.116156 -0.871149 -0.477082 -0.968339 0.206188 -0.140735 0.173047 0.466334 -0.867518 -0.024214 -0.878525 -0.477082 -0.984616 0.103564 -0.140735 0.301618 0.153252 -0.941031 0.046963 -0.988187 -0.145879 -0.952271 -0.000194 -0.305253 0.283895 0.184020 -0.941031 0.150274 -0.977823 -0.145879 -0.947006 -0.099998 -0.305253 0.263258 0.212498 -0.941031 0.250972 -0.956939 -0.145879 -0.931509 -0.197769 -0.305253 0.239537 0.238918 -0.941031 0.349884 -0.925365 -0.145879 -0.905651 -0.294308 -0.305253 0.213177 0.262708 -0.941031 0.444942 -0.883598 -0.145879 -0.869817 -0.387606 -0.305253 0.184753 0.283419 -0.941031 0.534266 -0.832634 -0.145879 -0.824879 -0.475810 -0.305253 0.154031 0.301221 -0.941031 0.618590 -0.772053 -0.145879 -0.770468 -0.559642 -0.305253 0.121613 0.315706 -0.941031 0.696100 -0.702968 -0.145879 -0.707570 -0.637311 -0.305253 0.087855 0.326713 -0.941031 0.765942 -0.626141 -0.145879 -0.636879 -0.707959 -0.305253 0.053463 0.334068 -0.941031 0.826805 -0.543243 -0.145879 -0.559942 -0.770250 -0.305253 0.018156 0.337832 -0.941031 0.879187 -0.453596 -0.145879 -0.476131 -0.824694 -0.305253 -0.017351 0.337874 -0.941031 0.921885 -0.358953 -0.145879 -0.387075 -0.870054 -0.305253 -0.052333 0.334247 -0.941031 0.954168 -0.261310 -0.145879 -0.294661 -0.905536 -0.305253 -0.087077 0.326921 -0.941031 0.976300 -0.159867 -0.145879 -0.198131 -0.931432 -0.305253 -0.120861 0.315995 -0.941031 0.987678 -0.056664 -0.145879 -0.099419 -0.947067 -0.305253 -0.153068 0.301712 -0.941031 0.988216 0.046359 -0.145879 -0.000388 -0.952271 -0.305253 -0.183846 0.284008 -0.941031 0.977914 0.149676 -0.145879 0.099419 -0.947067 -0.305253 -0.212600 0.263175 -0.941031 0.956841 0.251344 -0.145879 0.198131 -0.931432 -0.305253 -0.239012 0.239444 -0.941031 0.925229 0.350244 -0.145879 0.294661 -0.905536 -0.305253 -0.262578 0.213338 -0.941031 0.883870 0.444402 -0.145879 0.387075 -0.870054 -0.305253 -0.283491 0.184643 -0.941031 0.832426 0.534590 -0.145879 0.476131 -0.824694 -0.305253 -0.301281 0.153914 -0.941031 0.771812 0.618890 -0.145879 0.559942 -0.770250 -0.305253 -0.315632 0.121805 -0.941031 0.703393 0.695670 -0.145879 0.636879 -0.707959 -0.305253 -0.326659 0.088054 -0.941031 0.626608 0.765559 -0.145879 0.707570 -0.637311 -0.305253 -0.334089 0.053333 -0.941031 0.542921 0.827016 -0.145879 0.770468 -0.559642 -0.305253 -0.337839 0.018024 -0.941031 0.453254 0.879363 -0.145879 0.824879 -0.475810 -0.305253 -0.337885 -0.017145 -0.941031 0.359516 0.921666 -0.145879 0.869817 -0.387606 -0.305253 -0.334227 -0.052463 -0.941031 0.260939 0.954269 -0.145879 0.905651 -0.294308 -0.305253 -0.326887 -0.087204 -0.941031 0.159487 0.976362 -0.145879 0.931509 -0.197769 -0.305253 -0.316068 -0.120668 -0.941031 0.057267 0.987644 -0.145879 0.947006 -0.099998 -0.305253 -0.301681 -0.153129 -0.941031 -0.046561 0.988206 -0.145879 0.952271 -0.000194 -0.305253 -0.283970 -0.183904 -0.941031 -0.149875 0.977884 -0.145879 0.947047 0.099612 -0.305253 -0.263132 -0.212654 -0.941031 -0.251539 0.956790 -0.145879 0.931391 0.198321 -0.305253 -0.239634 -0.238821 -0.941031 -0.349507 0.925508 -0.145879 0.905771 0.293939 -0.305253 -0.213284 -0.262621 -0.941031 -0.444582 0.883780 -0.145879 0.869975 0.387252 -0.305253 -0.184585 -0.283528 -0.941031 -0.534760 0.832317 -0.145879 0.824597 0.476299 -0.305253 -0.153852 -0.301313 -0.941031 -0.619047 0.771686 -0.145879 0.770136 0.560099 -0.305253 -0.121741 -0.315656 -0.941031 -0.695813 0.703252 -0.145879 0.707830 0.637023 -0.305253 -0.087988 -0.326677 -0.941031 -0.765687 0.626452 -0.145879 0.637167 0.707700 -0.305253 -0.053265 -0.334100 -0.941031 -0.827127 0.542753 -0.145879 0.559486 0.770582 -0.305253 -0.018293 -0.337824 -0.941031 -0.879002 0.453954 -0.145879 0.476467 0.824500 -0.305253 0.017214 -0.337881 -0.941031 -0.921739 0.359328 -0.145879 0.387429 0.869896 -0.305253 0.052531 -0.334216 -0.941031 -0.954323 0.260744 -0.145879 0.294124 0.905711 -0.305253 0.087270 -0.326870 -0.941031 -0.976395 0.159289 -0.145879 0.197579 0.931549 -0.305253 0.120732 -0.316044 -0.941031 -0.987655 0.057066 -0.145879 0.099805 0.947027 -0.305253 0.153191 -0.301650 -0.941031 -0.988197 -0.046762 -0.145879 0.000000 0.952271 -0.305253 0.183962 -0.283933 -0.941031 -0.977853 -0.150074 -0.145879 -0.099805 0.947027 -0.305253 0.212444 -0.263301 -0.941031 -0.956990 -0.250777 -0.145879 -0.197579 0.931549 -0.305253 0.238870 -0.239585 -0.941031 -0.925436 -0.349695 -0.145879 -0.294124 0.905711 -0.305253 0.262664 -0.213231 -0.941031 -0.883689 -0.444762 -0.145879 -0.387429 0.869896 -0.305253 0.283566 -0.184527 -0.941031 -0.832208 -0.534929 -0.145879 -0.476467 0.824500 -0.305253 0.301190 -0.154092 -0.941031 -0.772179 -0.618433 -0.145879 -0.559486 0.770582 -0.305253 0.315681 -0.121677 -0.941031 -0.703110 -0.695957 -0.145879 -0.637167 0.707700 -0.305253 0.326695 -0.087921 -0.941031 -0.626297 -0.765815 -0.145879 -0.707830 0.637023 -0.305253 0.334057 -0.053531 -0.941031 -0.543411 -0.826694 -0.145879 -0.770136 0.560099 -0.305253 0.337828 -0.018225 -0.941031 -0.453775 -0.879095 -0.145879 -0.824597 0.476299 -0.305253 0.337877 0.017283 -0.941031 -0.359141 -0.921812 -0.145879 -0.869975 0.387252 -0.305253 0.334205 0.052599 -0.941031 -0.260550 -0.954376 -0.145879 -0.905771 0.293939 -0.305253 0.326939 0.087010 -0.941031 -0.160066 -0.976267 -0.145879 -0.931391 0.198321 -0.305253 0.316019 0.120796 -0.941031 -0.056865 -0.987667 -0.145879 -0.947047 0.099612 -0.305253 -0.097002 -0.654280 -0.750006 0.084187 -0.756253 0.648841 -0.991717 -0.000202 0.128440 -0.027895 -0.660843 -0.750006 0.162985 -0.743264 0.648841 -0.986234 -0.104140 0.128440 0.040860 -0.660168 -0.750006 0.239264 -0.722328 0.648841 -0.970094 -0.205961 0.128440 0.109825 -0.652250 -0.750006 0.313652 -0.693274 0.648841 -0.943166 -0.306499 0.128440 0.177580 -0.637147 -0.750006 0.384584 -0.656582 0.648841 -0.905848 -0.403662 0.128440 0.242765 -0.615269 -0.750006 0.450668 -0.613110 0.648841 -0.859048 -0.495519 0.128440 0.305912 -0.586437 -0.750006 0.512444 -0.562500 0.648841 -0.802383 -0.582825 0.128440 0.365691 -0.551146 -0.750006 0.568576 -0.505695 0.648841 -0.736880 -0.663710 0.128440 0.421441 -0.509783 -0.750006 0.618445 -0.443319 0.648841 -0.663260 -0.737285 0.128440 0.472086 -0.463278 -0.750006 0.661125 -0.376721 0.648841 -0.583137 -0.802156 0.128440 0.518040 -0.411249 -0.750006 0.696967 -0.305355 0.648841 -0.495853 -0.858855 0.128440 0.558289 -0.354689 -0.750006 0.725132 -0.230627 0.648841 -0.403108 -0.906094 0.128440 0.592094 -0.294816 -0.750006 0.745156 -0.154103 0.648841 -0.306866 -0.943046 0.128440 0.619732 -0.231136 -0.750006 0.757204 -0.075156 0.648841 -0.206338 -0.970014 0.128440 0.640543 -0.164911 -0.750006 0.760910 0.004618 0.648841 -0.103537 -0.986298 0.128440 0.654220 -0.097402 -0.750006 0.756304 0.083725 0.648841 -0.000404 -0.991717 0.128440 0.660826 -0.028299 -0.750006 0.743364 0.162530 0.648841 0.103537 -0.986298 0.128440 0.660152 0.041116 -0.750006 0.722235 0.239545 0.648841 0.206338 -0.970014 0.128440 0.652207 0.110079 -0.750006 0.693152 0.313921 0.648841 0.306866 -0.943046 0.128440 0.637256 0.177191 -0.750006 0.656817 0.384183 0.648841 0.403108 -0.906094 0.128440 0.615175 0.243004 -0.750006 0.612935 0.450906 0.648841 0.495853 -0.858855 0.128440 0.586318 0.306141 -0.750006 0.562301 0.512663 0.648841 0.583137 -0.802156 0.128440 0.551369 0.365354 -0.750006 0.506042 0.568267 0.648841 0.663260 -0.737285 0.128440 0.510041 0.421129 -0.750006 0.443696 0.618174 0.648841 0.736880 -0.663710 0.128440 0.463094 0.472266 -0.750006 0.376464 0.661272 0.648841 0.802383 -0.582825 0.128440 0.411047 0.518200 -0.750006 0.305084 0.697086 0.648841 0.859048 -0.495519 0.128440 0.355031 0.558072 -0.750006 0.231070 0.724991 0.648841 0.905848 -0.403662 0.128440 0.294585 0.592209 -0.750006 0.153813 0.745216 0.648841 0.943166 -0.306499 0.128440 0.230895 0.619822 -0.750006 0.074862 0.757233 0.648841 0.970094 -0.205961 0.128440 0.165302 0.640442 -0.750006 -0.004153 0.760913 0.648841 0.986234 -0.104140 0.128440 0.097269 0.654240 -0.750006 -0.083879 0.756287 0.648841 0.991717 -0.000202 0.128440 0.028164 0.660831 -0.750006 -0.162682 0.743330 0.648841 0.986277 0.103738 0.128440 -0.041251 0.660144 -0.750006 -0.239692 0.722186 0.648841 0.969972 0.206536 0.128440 -0.109559 0.652295 -0.750006 -0.313369 0.693401 0.648841 0.943290 0.306115 0.128440 -0.177321 0.637219 -0.750006 -0.384317 0.656739 0.648841 0.906012 0.403293 0.128440 -0.243129 0.615126 -0.750006 -0.451031 0.612843 0.648841 0.858754 0.496028 0.128440 -0.306260 0.586256 -0.750006 -0.512777 0.562196 0.648841 0.802037 0.583300 0.128440 -0.365466 0.551295 -0.750006 -0.568370 0.505926 0.648841 0.737150 0.663410 0.128440 -0.421233 0.509955 -0.750006 -0.618264 0.443571 0.648841 0.663560 0.737015 0.128440 -0.472360 0.462998 -0.750006 -0.661349 0.376329 0.648841 0.582661 0.802502 0.128440 -0.517873 0.411460 -0.750006 -0.696843 0.305639 0.648841 0.496203 0.858653 0.128440 -0.558145 0.354917 -0.750006 -0.725038 0.230922 0.648841 0.403477 0.905930 0.128440 -0.592268 0.294465 -0.750006 -0.745248 0.153661 0.648841 0.306307 0.943228 0.128440 -0.619869 0.230769 -0.750006 -0.757248 0.074707 0.648841 0.205763 0.970136 0.128440 -0.640476 0.165172 -0.750006 -0.760912 -0.004308 0.648841 0.103939 0.986255 0.128440 -0.654260 0.097136 -0.750006 -0.756270 -0.084033 0.648841 0.000000 0.991717 0.128440 -0.660837 0.028030 -0.750006 -0.743297 -0.162833 0.648841 -0.103939 0.986255 0.128440 -0.660176 -0.040725 -0.750006 -0.722377 -0.239117 0.648841 -0.205763 0.970136 0.128440 -0.652272 -0.109692 -0.750006 -0.693337 -0.313510 0.648841 -0.306307 0.943228 0.128440 -0.637183 -0.177451 -0.750006 -0.656661 -0.384450 0.648841 -0.403477 0.905930 0.128440 -0.615076 -0.243255 -0.750006 -0.612751 -0.451156 0.648841 -0.496203 0.858653 0.128440 -0.586500 -0.305793 -0.750006 -0.562605 -0.512330 0.648841 -0.582661 0.802502 0.128440 -0.551220 -0.365578 -0.750006 -0.505810 -0.568473 0.648841 -0.663560 0.737015 0.128440 -0.509869 -0.421337 -0.750006 -0.443445 -0.618355 0.648841 -0.737150 0.663410 0.128440 -0.463374 -0.471991 -0.750006 -0.376856 -0.661049 0.648841 -0.802037 0.583300 0.128440 -0.411354 -0.517957 -0.750006 -0.305497 -0.696905 0.648841 -0.858754 0.496028 0.128440 -0.354803 -0.558217 -0.750006 -0.230774 -0.725085 0.648841 -0.906012 0.403293 0.128440 -0.294344 -0.592328 -0.750006 -0.153509 -0.745279 0.648841 -0.943290 0.306115 0.128440 -0.231262 -0.619685 -0.750006 -0.075310 -0.757188 0.648841 -0.969972 0.206536 0.128440 -0.165041 -0.640510 -0.750006 0.004463 -0.760911 0.648841 -0.986277 0.103738 0.128440 -0.288090 -0.321455 0.902037 -0.097994 0.946925 0.306154 -0.952576 -0.000194 -0.304300 -0.252813 -0.349879 0.902037 -0.196699 0.931439 0.306154 -0.947310 -0.100030 -0.304300 -0.215125 -0.374233 0.902037 -0.292331 0.905987 0.306154 -0.931807 -0.197832 -0.304300 -0.174718 -0.394719 0.902037 -0.385675 0.870359 0.306154 -0.905941 -0.294402 -0.304300 -0.132386 -0.410857 0.902037 -0.474771 0.825144 0.306154 -0.870096 -0.387730 -0.304300 -0.089019 -0.422380 0.902037 -0.557866 0.771398 0.306154 -0.825143 -0.475962 -0.304300 -0.044260 -0.429384 0.902037 -0.635641 0.708682 0.306154 -0.770715 -0.559822 -0.304300 0.000986 -0.431657 0.902037 -0.706415 0.638159 0.306154 -0.707797 -0.637515 -0.304300 0.046222 -0.429177 0.902037 -0.769409 0.560607 0.306154 -0.637082 -0.708186 -0.304300 0.090526 -0.422060 0.902037 -0.823449 0.477703 0.306154 -0.560121 -0.770497 -0.304300 0.134262 -0.410247 0.902037 -0.868981 0.388769 0.306154 -0.476283 -0.824958 -0.304300 0.176520 -0.393916 0.902037 -0.904941 0.295552 0.306154 -0.387198 -0.870333 -0.304300 0.216459 -0.373463 0.902037 -0.930734 0.200011 0.306154 -0.294755 -0.905826 -0.304300 0.254409 -0.348720 0.902037 -0.946570 0.101362 0.306154 -0.198194 -0.931730 -0.304300 0.289556 -0.320135 0.902037 -0.951981 0.001597 0.306154 -0.099451 -0.947371 -0.304300 0.321279 -0.288286 0.902037 -0.946985 -0.097415 0.306154 -0.000388 -0.952576 -0.304300 0.349724 -0.253026 0.902037 -0.931559 -0.196130 0.306154 0.099451 -0.947371 -0.304300 0.374317 -0.214979 0.902037 -0.905873 -0.292683 0.306154 0.198194 -0.931730 -0.304300 0.394787 -0.174564 0.902037 -0.870209 -0.386014 0.306154 0.294755 -0.905826 -0.304300 0.410776 -0.132637 0.902037 -0.825434 -0.474266 0.306154 0.387198 -0.870333 -0.304300 0.422415 -0.088854 0.902037 -0.771181 -0.558166 0.306154 0.476283 -0.824958 -0.304300 0.429401 -0.044093 0.902037 -0.708434 -0.635917 0.306154 0.560121 -0.770497 -0.304300 0.431658 0.000723 0.902037 -0.638590 -0.706026 0.306154 0.637082 -0.708186 -0.304300 0.429205 0.045959 0.902037 -0.561077 -0.769066 0.306154 0.707797 -0.637515 -0.304300 0.422024 0.090690 0.902037 -0.477383 -0.823635 0.306154 0.770715 -0.559822 -0.304300 0.410195 0.134422 0.902037 -0.388431 -0.869132 0.306154 0.825143 -0.475962 -0.304300 0.394024 0.176279 0.902037 -0.296105 -0.904760 0.306154 0.870096 -0.387730 -0.304300 0.373379 0.216605 0.902037 -0.199649 -0.930811 0.306154 0.905941 -0.294402 -0.304300 0.348621 0.254544 0.902037 -0.100994 -0.946610 0.306154 0.931807 -0.197832 -0.304300 0.320312 0.289360 0.902037 -0.002178 -0.951979 0.306154 0.947310 -0.100030 -0.304300 0.288221 0.321338 0.902037 0.097608 -0.946965 0.306154 0.952576 -0.000194 -0.304300 0.252955 0.349775 0.902037 0.196319 -0.931519 0.306154 0.947350 0.099644 -0.304300 0.214903 0.374361 0.902037 0.292868 -0.905813 0.306154 0.931689 0.198384 -0.304300 0.174878 0.394648 0.902037 0.385320 -0.870516 0.306154 0.906061 0.294033 -0.304300 0.132553 0.410803 0.902037 0.474435 -0.825337 0.306154 0.870254 0.387376 -0.304300 0.088768 0.422433 0.902037 0.558323 -0.771068 0.306154 0.824861 0.476451 -0.304300 0.044005 0.429410 0.902037 0.636061 -0.708305 0.306154 0.770383 0.560278 -0.304300 -0.000810 0.431658 0.902037 0.706156 -0.638446 0.306154 0.708056 0.637227 -0.304300 -0.046047 0.429196 0.902037 0.769180 -0.560920 0.306154 0.637371 0.707927 -0.304300 -0.090776 0.422006 0.902037 0.823732 -0.477215 0.306154 0.559665 0.770829 -0.304300 -0.134095 0.410302 0.902037 0.868823 -0.389123 0.306154 0.476619 0.824764 -0.304300 -0.176359 0.393988 0.902037 0.904821 -0.295921 0.306154 0.387553 0.870175 -0.304300 -0.216681 0.373335 0.902037 0.930852 -0.199460 0.306154 0.294218 0.906001 -0.304300 -0.254615 0.348569 0.902037 0.946630 -0.100801 0.306154 0.197642 0.931847 -0.304300 -0.289425 0.320253 0.902037 0.951980 -0.001984 0.306154 0.099837 0.947330 -0.304300 -0.321396 0.288155 0.902037 0.946945 0.097801 0.306154 0.000000 0.952576 -0.304300 -0.349827 0.252884 0.902037 0.931479 0.196509 0.306154 -0.099837 0.947330 -0.304300 -0.374189 0.215201 0.902037 0.906046 0.292146 0.306154 -0.197642 0.931847 -0.304300 -0.394683 0.174798 0.902037 0.870437 0.385498 0.306154 -0.294218 0.906001 -0.304300 -0.410830 0.132470 0.902037 0.825240 0.474603 0.306154 -0.387553 0.870175 -0.304300 -0.422451 0.088682 0.902037 0.770954 0.558480 0.306154 -0.476619 0.824764 -0.304300 -0.429375 0.044347 0.902037 0.708811 0.635497 0.306154 -0.559665 0.770829 -0.304300 -0.431658 -0.000898 0.902037 0.638303 0.706286 0.306154 -0.637371 0.707927 -0.304300 -0.429186 -0.046134 0.902037 0.560763 0.769294 0.306154 -0.708056 0.637227 -0.304300 -0.422078 -0.090440 0.902037 0.477871 0.823352 0.306154 -0.770383 0.560278 -0.304300 -0.410275 -0.134179 0.902037 0.388946 0.868902 0.306154 -0.824861 0.476451 -0.304300 -0.393952 -0.176439 0.902037 0.295737 0.904881 0.306154 -0.870254 0.387376 -0.304300 -0.373290 -0.216757 0.902037 0.199270 0.930893 0.306154 -0.906061 0.294033 -0.304300 -0.348771 -0.254338 0.902037 0.101555 0.946550 0.306154 -0.931689 0.198384 -0.304300 -0.320194 -0.289491 0.902037 0.001790 0.951980 0.306154 -0.947350 0.099644 -0.304300 0.524442 0.594730 0.609309 -0.388118 0.803926 -0.450630 -0.757843 -0.000154 0.652437 0.459222 0.646419 0.609309 -0.470238 0.758821 -0.450630 -0.753653 -0.079581 0.652437 0.389634 0.690600 0.609309 -0.546472 0.705904 -0.450630 -0.741319 -0.157389 0.652437 0.315108 0.727633 0.609309 -0.617446 0.644742 -0.450630 -0.720741 -0.234218 0.652437 0.237112 0.756651 0.609309 -0.681619 0.576479 -0.450630 -0.692224 -0.308467 0.652437 0.157280 0.777178 0.609309 -0.737782 0.502603 -0.450630 -0.656461 -0.378662 0.652437 0.074961 0.789382 0.609309 -0.786395 0.422510 -0.450630 -0.613159 -0.445378 0.652437 -0.008185 0.792891 0.609309 -0.826346 0.337763 -0.450630 -0.563103 -0.507189 0.652437 -0.091241 0.787666 0.609309 -0.857195 0.249296 -0.450630 -0.506845 -0.563413 0.652437 -0.172517 0.773938 0.609309 -0.878444 0.158962 -0.450630 -0.445617 -0.612985 0.652437 -0.252682 0.751595 0.609309 -0.890266 0.066019 -0.450630 -0.378917 -0.656313 0.652437 -0.330062 0.720972 0.609309 -0.892282 -0.027651 -0.450630 -0.308044 -0.692412 0.652437 -0.403125 0.682812 0.609309 -0.884591 -0.120132 -0.450630 -0.234499 -0.720650 0.652437 -0.472468 0.636801 0.609309 -0.867128 -0.212182 -0.450630 -0.157678 -0.741258 0.652437 -0.536608 0.583776 0.609309 -0.840114 -0.301894 -0.450630 -0.079120 -0.753701 0.652437 -0.594409 0.524805 0.609309 -0.804163 -0.387627 -0.450630 -0.000309 -0.757842 0.652437 -0.646139 0.459616 0.609309 -0.759108 -0.469774 -0.450630 0.079120 -0.753701 0.652437 -0.690751 0.389365 0.609309 -0.705691 -0.546747 -0.450630 0.157678 -0.741258 0.652437 -0.727755 0.314825 0.609309 -0.644502 -0.617697 -0.450630 0.234499 -0.720650 0.652437 -0.756506 0.237574 0.609309 -0.576895 -0.681267 -0.450630 0.308044 -0.692412 0.652437 -0.777239 0.156978 0.609309 -0.502316 -0.737978 -0.450630 0.378917 -0.656313 0.652437 -0.789411 0.074653 0.609309 -0.422204 -0.786559 -0.450630 0.445617 -0.612985 0.652437 -0.792895 -0.007701 0.609309 -0.338268 -0.826140 -0.450630 0.506845 -0.563413 0.652437 -0.787721 -0.090760 0.609309 -0.249820 -0.857043 -0.450630 0.563103 -0.507189 0.652437 -0.773871 -0.172819 0.609309 -0.158620 -0.878506 -0.450630 0.613159 -0.445378 0.652437 -0.751496 -0.252974 0.609309 -0.065673 -0.890292 -0.450630 0.656461 -0.378662 0.652437 -0.721174 -0.329622 0.609309 0.027106 -0.892299 -0.450630 0.692224 -0.308467 0.652437 -0.682655 -0.403391 0.609309 0.120476 -0.884544 -0.450630 0.720741 -0.234218 0.652437 -0.636617 -0.472716 0.609309 0.212519 -0.867046 -0.450630 0.741319 -0.157389 0.652437 -0.584104 -0.536251 0.609309 0.301381 -0.840299 -0.450630 0.753653 -0.079581 0.652437 -0.524684 -0.594516 0.609309 0.387790 -0.804084 -0.450630 0.757843 -0.000154 0.652437 -0.459485 -0.646232 0.609309 0.469928 -0.759012 -0.450630 0.753685 0.079274 0.652437 -0.389224 -0.690830 0.609309 0.546890 -0.705580 -0.450630 0.741226 0.157829 0.652437 -0.315404 -0.727504 0.609309 0.617183 -0.644994 -0.450630 0.720836 0.233925 0.652437 -0.237420 -0.756554 0.609309 0.681384 -0.576756 -0.450630 0.692349 0.308185 0.652437 -0.156820 -0.777271 0.609309 0.738080 -0.502166 -0.450630 0.656236 0.379051 0.652437 -0.074493 -0.789426 0.609309 0.786645 -0.422044 -0.450630 0.612895 0.445742 0.652437 0.007862 -0.792894 0.609309 0.826209 -0.338100 -0.450630 0.563309 0.506959 0.652437 0.090920 -0.787703 0.609309 0.857094 -0.249645 -0.450630 0.507074 0.563206 0.652437 0.172976 -0.773836 0.609309 0.878538 -0.158441 -0.450630 0.445253 0.613249 0.652437 0.252375 -0.751697 0.609309 0.890239 -0.066381 -0.450630 0.379185 0.656159 0.652437 0.329769 -0.721107 0.609309 0.892293 0.027288 -0.450630 0.308326 0.692286 0.652437 0.403530 -0.682573 0.609309 0.884519 0.120656 -0.450630 0.234071 0.720788 0.652437 0.472846 -0.636521 0.609309 0.867002 0.212695 -0.450630 0.157239 0.741351 0.652437 0.536370 -0.583995 0.609309 0.840237 0.301552 -0.450630 0.079427 0.753669 0.652437 0.594623 -0.524563 0.609309 0.804005 0.387954 -0.450630 0.000000 0.757843 0.652437 0.646326 -0.459353 0.609309 0.758916 0.470083 -0.450630 -0.079427 0.753669 0.652437 0.690520 -0.389774 0.609309 0.706015 0.546328 -0.450630 -0.157239 0.741351 0.652437 0.727568 -0.315256 0.609309 0.644868 0.617315 -0.450630 -0.234071 0.720788 0.652437 0.756603 -0.237266 0.609309 0.576617 0.681502 -0.450630 -0.308326 0.692286 0.652437 0.777303 -0.156662 0.609309 0.502015 0.738182 -0.450630 -0.379185 0.656159 0.652437 0.789366 -0.075121 0.609309 0.422670 0.786309 -0.450630 -0.445253 0.613249 0.652437 0.792892 0.008024 0.609309 0.337932 0.826277 -0.450630 -0.507074 0.563206 0.652437 0.787684 0.091080 0.609309 0.249471 0.857144 -0.450630 -0.563309 0.506959 0.652437 0.773973 0.172360 0.609309 0.159140 0.878411 -0.450630 -0.612895 0.445742 0.652437 0.751646 0.252528 0.609309 0.066200 0.890253 -0.450630 -0.656236 0.379051 0.652437 0.721040 0.329916 0.609309 -0.027469 0.892288 -0.450630 -0.692349 0.308185 0.652437 0.682491 0.403669 0.609309 -0.120836 0.884495 -0.450630 -0.720836 0.233925 0.652437 0.636898 0.472339 0.609309 -0.212005 0.867171 -0.450630 -0.741226 0.157829 0.652437 0.583885 0.536489 0.609309 -0.301723 0.840176 -0.450630 -0.753685 0.079274 0.652437 0.021168 -0.999089 0.037061 0.491902 0.042680 0.869604 -0.870393 -0.000177 0.492358 0.125763 -0.991368 0.037061 0.484720 0.094000 0.869604 -0.865581 -0.091400 0.492358 0.228000 -0.972956 0.037061 0.472343 0.143812 0.869604 -0.851416 -0.180764 0.492358 0.328717 -0.943701 0.037061 0.454669 0.192525 0.869604 -0.827781 -0.269003 0.492358 0.425813 -0.904052 0.037061 0.431987 0.239117 0.869604 -0.795029 -0.354279 0.492358 0.517365 -0.854962 0.037061 0.404829 0.282671 0.869604 -0.753954 -0.434899 0.492358 0.604121 -0.796030 0.037061 0.372974 0.323543 0.869604 -0.704222 -0.511523 0.492358 0.684224 -0.728330 0.037061 0.337010 0.360851 0.869604 -0.646732 -0.582514 0.492358 0.756790 -0.652607 0.037061 0.297334 0.394185 0.869604 -0.582118 -0.647088 0.492358 0.820450 -0.570516 0.037061 0.254806 0.422922 0.869604 -0.511797 -0.704022 0.492358 0.875725 -0.481385 0.037061 0.209078 0.447299 0.869604 -0.435192 -0.753785 0.492358 0.921355 -0.386952 0.037061 0.161046 0.466748 0.869604 -0.353793 -0.795245 0.492358 0.956547 -0.289213 0.037061 0.111722 0.480945 0.869604 -0.269325 -0.827676 0.492358 0.981591 -0.187367 0.037061 0.060700 0.490005 0.869604 -0.181095 -0.851345 0.492358 0.995822 -0.083458 0.037061 0.009009 0.493668 0.869604 -0.090871 -0.865636 0.492358 0.999102 0.020558 0.037061 -0.042379 0.491928 0.869604 -0.000355 -0.870393 0.492358 0.991444 0.125157 0.037061 -0.093704 0.484777 0.869604 0.090871 -0.865636 0.492358 0.972867 0.228379 0.037061 -0.143996 0.472287 0.869604 0.181095 -0.851345 0.492358 0.943573 0.329084 0.037061 -0.192702 0.454594 0.869604 0.269325 -0.827676 0.492358 0.904312 0.425261 0.037061 -0.238853 0.432133 0.869604 0.353793 -0.795245 0.492358 0.854761 0.517697 0.037061 -0.282828 0.404719 0.869604 0.435192 -0.753785 0.492358 0.795795 0.604431 0.037061 -0.323688 0.372848 0.869604 0.511797 -0.704022 0.492358 0.728748 0.683779 0.037061 -0.360645 0.337230 0.869604 0.582118 -0.647088 0.492358 0.653069 0.756391 0.037061 -0.394003 0.297575 0.869604 0.646732 -0.582514 0.492358 0.570197 0.820671 0.037061 -0.423021 0.254642 0.869604 0.704222 -0.511523 0.492358 0.481045 0.875912 0.037061 -0.447380 0.208904 0.869604 0.753954 -0.434899 0.492358 0.387515 0.921118 0.037061 -0.466650 0.161331 0.869604 0.795029 -0.354279 0.492358 0.288841 0.956660 0.037061 -0.480988 0.111534 0.869604 0.827781 -0.269003 0.492358 0.186985 0.981663 0.037061 -0.490029 0.060509 0.869604 0.851416 -0.180764 0.492358 0.084066 0.995771 0.037061 -0.493663 0.009311 0.869604 0.865581 -0.091400 0.492358 -0.020761 0.999097 0.037061 -0.491920 -0.042480 0.869604 0.870393 -0.000177 0.492358 -0.125359 0.991419 0.037061 -0.484758 -0.093802 0.869604 0.865618 0.091047 0.492358 -0.228577 0.972820 0.037061 -0.472257 -0.144092 0.869604 0.851308 0.181269 0.492358 -0.328333 0.943835 0.037061 -0.454747 -0.192340 0.869604 0.827891 0.268666 0.492358 -0.425445 0.904225 0.037061 -0.432084 -0.238941 0.869604 0.795173 0.353955 0.492358 -0.517871 0.854655 0.037061 -0.404662 -0.282911 0.869604 0.753697 0.435345 0.492358 -0.604593 0.795672 0.037061 -0.372782 -0.323764 0.869604 0.703918 0.511941 0.492358 -0.683927 0.728608 0.037061 -0.337157 -0.360714 0.869604 0.646969 0.582250 0.492358 -0.756524 0.652915 0.037061 -0.297495 -0.394064 0.869604 0.582382 0.646850 0.492358 -0.820787 0.570030 0.037061 -0.254556 -0.423073 0.869604 0.511380 0.704326 0.492358 -0.875529 0.481742 0.037061 -0.209260 -0.447213 0.869604 0.435499 0.753608 0.492358 -0.921197 0.387327 0.037061 -0.161236 -0.466682 0.869604 0.354117 0.795101 0.492358 -0.956718 0.288646 0.037061 -0.111436 -0.481011 0.869604 0.268834 0.827836 0.492358 -0.981701 0.186785 0.037061 -0.060409 -0.490041 0.869604 0.180591 0.851452 0.492358 -0.995788 0.083863 0.037061 -0.009211 -0.493665 0.869604 0.091223 0.865599 0.492358 -0.999093 -0.020964 0.037061 0.042580 -0.491911 0.869604 0.000000 0.870393 0.492358 -0.991393 -0.125561 0.037061 0.093901 -0.484739 0.869604 -0.091223 0.865599 0.492358 -0.973002 -0.227802 0.037061 0.143716 -0.472372 0.869604 -0.180591 0.851452 0.492358 -0.943768 -0.328525 0.037061 0.192432 -0.454708 0.869604 -0.268834 0.827836 0.492358 -0.904138 -0.425629 0.037061 0.239029 -0.432035 0.869604 -0.354117 0.795101 0.492358 -0.854550 -0.518045 0.037061 0.282993 -0.404604 0.869604 -0.435499 0.753608 0.492358 -0.796153 -0.603959 0.037061 0.323467 -0.373040 0.869604 -0.511380 0.704326 0.492358 -0.728469 -0.684075 0.037061 0.360783 -0.337084 0.869604 -0.582382 0.646850 0.492358 -0.652761 -0.756657 0.037061 0.394125 -0.297414 0.869604 -0.646969 0.582250 0.492358 -0.570684 -0.820333 0.037061 0.422870 -0.254892 0.869604 -0.703918 0.511941 0.492358 -0.481564 -0.875627 0.037061 0.447256 -0.209169 0.869604 -0.753697 0.435345 0.492358 -0.387140 -0.921276 0.037061 0.466715 -0.161141 0.869604 -0.795173 0.353955 0.492358 -0.288451 -0.956777 0.037061 0.481034 -0.111339 0.869604 -0.827891 0.268666 0.492358 -0.187567 -0.981552 0.037061 0.489993 -0.060800 0.869604 -0.851308 0.181269 0.492358 -0.083660 -0.995805 0.037061 0.493666 -0.009110 0.869604 -0.865618 0.091047 0.492358 -0.139516 0.984348 -0.107678 -0.778819 -0.176236 -0.601981 -0.611536 -0.000125 0.791217 -0.241914 0.964304 -0.107678 -0.756059 -0.256891 -0.601981 -0.608155 -0.064217 0.791217 -0.340714 0.933980 -0.107678 -0.725306 -0.333992 -0.601981 -0.598202 -0.127004 0.791217 -0.436725 0.893127 -0.107678 -0.686306 -0.408169 -0.601981 -0.581597 -0.189001 0.791217 -0.527926 0.842437 -0.107678 -0.639747 -0.477851 -0.601981 -0.558585 -0.248915 0.791217 -0.612529 0.783079 -0.107678 -0.586684 -0.541683 -0.601981 -0.529726 -0.305559 0.791217 -0.691228 0.714569 -0.107678 -0.526680 -0.600189 -0.601981 -0.494784 -0.359395 0.791217 -0.762313 0.638188 -0.107678 -0.460876 -0.652083 -0.601981 -0.454392 -0.409272 0.791217 -0.825002 0.554777 -0.107678 -0.389995 -0.696795 -0.601981 -0.408995 -0.454642 0.791217 -0.878137 0.466134 -0.107678 -0.315551 -0.733516 -0.601981 -0.359587 -0.494644 0.791217 -0.922155 0.371532 -0.107678 -0.236936 -0.762548 -0.601981 -0.305765 -0.529607 0.791217 -0.956015 0.272837 -0.107678 -0.155710 -0.783181 -0.601981 -0.248574 -0.558737 0.791217 -0.979174 0.172117 -0.107678 -0.073565 -0.795114 -0.601981 -0.189227 -0.581523 0.791217 -0.991820 0.068544 -0.107678 0.010174 -0.798445 -0.601981 -0.127237 -0.598153 0.791217 -0.993542 -0.035783 -0.107678 0.093801 -0.792982 -0.601981 -0.063846 -0.608194 0.791217 -0.984433 -0.138914 -0.107678 0.175760 -0.778927 -0.601981 -0.000249 -0.611536 0.791217 -0.964452 -0.241325 -0.107678 0.256429 -0.756216 -0.601981 0.063846 -0.608194 0.791217 -0.933848 -0.341077 -0.107678 0.334274 -0.725176 -0.601981 0.127237 -0.598153 0.791217 -0.892957 -0.437073 -0.107678 0.408436 -0.686147 -0.601981 0.189227 -0.581523 0.791217 -0.842759 -0.527411 -0.107678 0.477460 -0.640039 -0.601981 0.248574 -0.558737 0.791217 -0.782841 -0.612834 -0.107678 0.541911 -0.586473 -0.601981 0.305765 -0.529607 0.791217 -0.714300 -0.691506 -0.107678 0.600393 -0.526447 -0.601981 0.359587 -0.494644 0.791217 -0.638654 -0.761923 -0.107678 0.651801 -0.461274 -0.601981 0.408995 -0.454642 0.791217 -0.555281 -0.824663 -0.107678 0.696556 -0.390420 -0.601981 0.454392 -0.409272 0.791217 -0.465792 -0.878318 -0.107678 0.733639 -0.315266 -0.601981 0.494784 -0.359395 0.791217 -0.371173 -0.922299 -0.107678 0.762641 -0.236639 -0.601981 0.529726 -0.305559 0.791217 -0.273421 -0.955848 -0.107678 0.783086 -0.156189 -0.601981 0.558585 -0.248915 0.791217 -0.171736 -0.979241 -0.107678 0.795143 -0.073255 -0.601981 0.581597 -0.189001 0.791217 -0.068158 -0.991847 -0.107678 0.798441 0.010485 -0.601981 0.598202 -0.127004 0.791217 0.035176 -0.993563 -0.107678 0.793039 0.093316 -0.601981 0.608155 -0.064217 0.791217 0.139115 -0.984405 -0.107678 0.778891 0.175919 -0.601981 0.611536 -0.000125 0.791217 0.241521 -0.964403 -0.107678 0.756164 0.256583 -0.601981 0.608181 0.063969 0.791217 0.341268 -0.933778 -0.107678 0.725108 0.334421 -0.601981 0.598127 0.127359 0.791217 0.436362 -0.893305 -0.107678 0.686473 0.407890 -0.601981 0.581674 0.188764 0.791217 0.527583 -0.842652 -0.107678 0.639942 0.477591 -0.601981 0.558686 0.248688 0.791217 0.612993 -0.782716 -0.107678 0.586363 0.542031 -0.601981 0.529545 0.305872 0.791217 0.691652 -0.714159 -0.107678 0.526325 0.600501 -0.601981 0.494571 0.359688 0.791217 0.762053 -0.638498 -0.107678 0.461141 0.651895 -0.601981 0.454559 0.409087 0.791217 0.824776 -0.555113 -0.107678 0.390278 0.696636 -0.601981 0.409180 0.454475 0.791217 0.878413 -0.465614 -0.107678 0.315116 0.733703 -0.601981 0.359294 0.494857 0.791217 0.922003 -0.371908 -0.107678 0.237246 0.762452 -0.601981 0.305980 0.529483 0.791217 0.955904 -0.273227 -0.107678 0.156029 0.783118 -0.601981 0.248802 0.558636 0.791217 0.979276 -0.171536 -0.107678 0.073093 0.795158 -0.601981 0.188882 0.581635 0.791217 0.991861 -0.067957 -0.107678 -0.010647 0.798439 -0.601981 0.126882 0.598228 0.791217 0.993556 0.035378 -0.107678 -0.093478 0.793020 -0.601981 0.064093 0.608168 0.791217 0.984376 0.139315 -0.107678 -0.176077 0.778855 -0.601981 0.000000 0.611536 0.791217 0.964354 0.241718 -0.107678 -0.256737 0.756112 -0.601981 -0.064093 0.608168 0.791217 0.934050 0.340524 -0.107678 -0.333844 0.725374 -0.601981 -0.126882 0.598228 0.791217 0.893216 0.436543 -0.107678 -0.408030 0.686389 -0.601981 -0.188882 0.581635 0.791217 0.842544 0.527755 -0.107678 -0.477721 0.639845 -0.601981 -0.248802 0.558636 0.791217 0.782591 0.613153 -0.107678 -0.542150 0.586252 -0.601981 -0.305980 0.529483 0.791217 0.714710 0.691083 -0.107678 -0.600081 0.526803 -0.601981 -0.359294 0.494857 0.791217 0.638343 0.762183 -0.107678 -0.651989 0.461009 -0.601981 -0.409180 0.454475 0.791217 0.554945 0.824889 -0.107678 -0.696715 0.390136 -0.601981 -0.454559 0.409087 0.791217 0.466313 0.878042 -0.107678 -0.733452 0.315701 -0.601981 -0.494571 0.359688 0.791217 0.371720 0.922079 -0.107678 -0.762500 0.237091 -0.601981 -0.529545 0.305872 0.791217 0.273032 0.955960 -0.107678 -0.783150 0.155870 -0.601981 -0.558686 0.248688 0.791217 0.171337 0.979311 -0.107678 -0.795173 0.072932 -0.601981 -0.581674 0.188764 0.791217 0.068746 0.991806 -0.107678 -0.798447 -0.010011 -0.601981 -0.598127 0.127359 0.791217 -0.035581 0.993549 -0.107678 -0.793001 -0.093639 -0.601981 -0.608181 0.063969 0.791217 0.185686 0.380038 -0.906141 0.076503 -0.924971 -0.372258 -0.979626 -0.000200 -0.200829 0.144833 0.397406 -0.906141 0.173026 -0.911859 -0.372258 -0.974210 -0.102870 -0.200829 0.102795 0.410294 -0.906141 0.266753 -0.888969 -0.372258 -0.958267 -0.203450 -0.200829 0.059227 0.418808 -0.906141 0.358454 -0.856116 -0.372258 -0.931667 -0.302763 -0.200829 0.015006 0.422709 -0.906141 0.446207 -0.813832 -0.372258 -0.894804 -0.398740 -0.200829 -0.028957 0.421983 -0.906141 0.528282 -0.763113 -0.372258 -0.848575 -0.489478 -0.200829 -0.073024 0.416624 -0.906141 0.605353 -0.703543 -0.372258 -0.792601 -0.575719 -0.200829 -0.116288 0.406676 -0.906141 0.675755 -0.636223 -0.372258 -0.727896 -0.655618 -0.200829 -0.158270 0.392249 -0.906141 0.738714 -0.561895 -0.372258 -0.655174 -0.728296 -0.200829 -0.198135 0.373699 -0.906141 0.793054 -0.482171 -0.372258 -0.576027 -0.792377 -0.200829 -0.236210 0.350875 -0.906141 0.839222 -0.396397 -0.372258 -0.489808 -0.848384 -0.200829 -0.271683 0.324186 -0.906141 0.876145 -0.306258 -0.372258 -0.398194 -0.895047 -0.200829 -0.303870 0.294230 -0.906141 0.903205 -0.213648 -0.372258 -0.303125 -0.931549 -0.200829 -0.333034 0.260762 -0.906141 0.920622 -0.117809 -0.372258 -0.203823 -0.958188 -0.200829 -0.358529 0.224421 -0.906141 0.927899 -0.020673 -0.372258 -0.102275 -0.974273 -0.200829 -0.379924 0.185918 -0.906141 0.925017 0.075938 -0.372258 -0.000399 -0.979626 -0.200829 -0.397318 0.145076 -0.906141 0.911964 0.172468 -0.372258 0.102275 -0.974273 -0.200829 -0.410334 0.102635 -0.906141 0.888866 0.267099 -0.372258 0.203823 -0.958188 -0.200829 -0.418831 0.059064 -0.906141 0.855976 0.358787 -0.372258 0.303125 -0.931549 -0.200829 -0.422700 0.015265 -0.906141 0.814105 0.445710 -0.372258 0.398194 -0.895047 -0.200829 -0.421972 -0.029121 -0.906141 0.762908 0.528579 -0.372258 0.489808 -0.848384 -0.200829 -0.416596 -0.073187 -0.906141 0.703307 0.605626 -0.372258 0.576027 -0.792377 -0.200829 -0.406747 -0.116039 -0.906141 0.636635 0.675366 -0.372258 0.655174 -0.728296 -0.200829 -0.392345 -0.158030 -0.906141 0.562346 0.738371 -0.372258 0.727896 -0.655618 -0.200829 -0.373622 -0.198280 -0.906141 0.481862 0.793242 -0.372258 0.792601 -0.575719 -0.200829 -0.350783 -0.236346 -0.906141 0.396071 0.839376 -0.372258 0.848575 -0.489478 -0.200829 -0.324352 -0.271485 -0.906141 0.306793 0.875958 -0.372258 0.894804 -0.398740 -0.200829 -0.294112 -0.303984 -0.906141 0.213297 0.903288 -0.372258 0.931667 -0.302763 -0.200829 -0.260632 -0.333135 -0.906141 0.117451 0.920668 -0.372258 0.958267 -0.203450 -0.200829 -0.224640 -0.358392 -0.906141 0.021240 0.927886 -0.372258 0.974210 -0.102870 -0.200829 -0.185841 -0.379962 -0.906141 -0.076126 0.925002 -0.372258 0.979626 -0.000200 -0.200829 -0.144995 -0.397347 -0.906141 -0.172654 0.911929 -0.372258 0.974252 0.102473 -0.200829 -0.102551 -0.410355 -0.906141 -0.267280 0.888811 -0.372258 0.958146 0.204018 -0.200829 -0.059397 -0.418784 -0.906141 -0.358106 0.856262 -0.372258 0.931790 0.302383 -0.200829 -0.015179 -0.422703 -0.906141 -0.445876 0.814014 -0.372258 0.894966 0.398376 -0.200829 0.029207 -0.421966 -0.906141 -0.528735 0.762800 -0.372258 0.848285 0.489981 -0.200829 0.073271 -0.416581 -0.906141 -0.605770 0.703184 -0.372258 0.792259 0.576189 -0.200829 0.116122 -0.406723 -0.906141 -0.675496 0.636498 -0.372258 0.728163 0.655322 -0.200829 0.158110 -0.392313 -0.906141 -0.738485 0.562195 -0.372258 0.655470 0.728029 -0.200829 0.198356 -0.373581 -0.906141 -0.793340 0.481701 -0.372258 0.575557 0.792718 -0.200829 0.236067 -0.350971 -0.906141 -0.839060 0.396739 -0.372258 0.490154 0.848185 -0.200829 0.271551 -0.324296 -0.906141 -0.876020 0.306615 -0.372258 0.398558 0.894885 -0.200829 0.304044 -0.294050 -0.906141 -0.903331 0.213113 -0.372258 0.302573 0.931728 -0.200829 0.333188 -0.260564 -0.906141 -0.920692 0.117264 -0.372258 0.203255 0.958309 -0.200829 0.358438 -0.224567 -0.906141 -0.927891 0.021051 -0.372258 0.102672 0.974231 -0.200829 0.380000 -0.185764 -0.906141 -0.924986 -0.076315 -0.372258 0.000000 0.979626 -0.200829 0.397377 -0.144914 -0.906141 -0.911894 -0.172840 -0.372258 -0.102672 0.974231 -0.200829 0.410273 -0.102878 -0.906141 -0.889024 -0.266572 -0.372258 -0.203255 0.958309 -0.200829 0.418796 -0.059312 -0.906141 -0.856189 -0.358280 -0.372258 -0.302573 0.931728 -0.200829 0.422706 -0.015093 -0.906141 -0.813923 -0.446041 -0.372258 -0.398558 0.894885 -0.200829 0.421960 0.029293 -0.906141 -0.762692 -0.528890 -0.372258 -0.490154 0.848185 -0.200829 0.416639 0.072940 -0.906141 -0.703666 -0.605209 -0.372258 -0.575557 0.792718 -0.200829 0.406700 0.116205 -0.906141 -0.636360 -0.675625 -0.372258 -0.655470 0.728029 -0.200829 0.392281 0.158190 -0.906141 -0.562045 -0.738600 -0.372258 -0.728163 0.655322 -0.200829 0.373739 0.198059 -0.906141 -0.482332 -0.792956 -0.372258 -0.792259 0.576189 -0.200829 0.350923 0.236139 -0.906141 -0.396568 -0.839141 -0.372258 -0.848285 0.489981 -0.200829 0.324241 0.271617 -0.906141 -0.306436 -0.876083 -0.372258 -0.894966 0.398376 -0.200829 0.293988 0.304104 -0.906141 -0.212929 -0.903374 -0.372258 -0.931790 0.302383 -0.200829 0.260830 0.332981 -0.906141 -0.117997 -0.920598 -0.372258 -0.958146 0.204018 -0.200829 0.224494 0.358484 -0.906141 -0.020862 -0.927895 -0.372258 -0.974252 0.102473 -0.200829 0.055487 -0.159508 -0.985636 -0.008760 -0.987197 0.159267 -0.998421 -0.000203 -0.056174 0.071899 -0.152814 -0.985636 0.094754 -0.982678 0.159267 -0.992901 -0.104844 -0.056174 0.087375 -0.144524 -0.985636 0.196256 -0.967532 0.159267 -0.976652 -0.207353 -0.056174 0.102041 -0.134571 -0.985636 0.296580 -0.941634 0.159267 -0.949541 -0.308571 -0.056174 0.115583 -0.123135 -0.985636 0.393636 -0.905364 0.159267 -0.911971 -0.406391 -0.056174 0.127741 -0.110471 -0.985636 0.485498 -0.859608 0.159267 -0.864855 -0.498869 -0.056174 0.138616 -0.096474 -0.985636 0.572917 -0.803990 0.159267 -0.807807 -0.586764 -0.056174 0.147964 -0.081415 -0.985636 0.654025 -0.739517 0.159267 -0.741861 -0.668197 -0.056174 0.155682 -0.065459 -0.985636 0.727930 -0.666897 0.159267 -0.667743 -0.742269 -0.056174 0.161636 -0.048944 -0.985636 0.793229 -0.587725 0.159267 -0.587079 -0.807579 -0.056174 0.165875 -0.031733 -0.985636 0.850458 -0.501352 0.159267 -0.499205 -0.864661 -0.056174 0.168288 -0.014174 -0.985636 0.898320 -0.409457 0.159267 -0.405833 -0.912219 -0.056174 0.168850 0.003373 -0.985636 0.935973 -0.313988 0.159267 -0.308941 -0.949421 -0.056174 0.167566 0.021051 -0.985636 0.963726 -0.214162 0.159267 -0.207733 -0.976571 -0.056174 0.164437 0.038498 -0.985636 0.980864 -0.111977 0.159267 -0.104237 -0.992965 -0.056174 0.159542 0.055390 -0.985636 0.987191 -0.009363 0.159267 -0.000407 -0.998421 -0.056174 0.152858 0.071806 -0.985636 0.982736 0.094153 0.159267 0.104237 -0.992965 -0.056174 0.144490 0.087431 -0.985636 0.967455 0.196633 0.159267 0.207733 -0.976571 -0.056174 0.134531 0.102093 -0.985636 0.941518 0.296946 0.159267 0.308941 -0.949421 -0.056174 0.123206 0.115507 -0.985636 0.905605 0.393083 0.159267 0.405833 -0.912219 -0.056174 0.110421 0.127784 -0.985636 0.859419 0.485832 0.159267 0.499205 -0.864661 -0.056174 0.096420 0.138653 -0.985636 0.803767 0.573229 0.159267 0.587079 -0.807579 -0.056174 0.081505 0.147914 -0.985636 0.739916 0.653573 0.159267 0.667743 -0.742269 -0.056174 0.065554 0.155642 -0.985636 0.667342 0.727522 0.159267 0.741861 -0.668197 -0.056174 0.048881 0.161655 -0.985636 0.587417 0.793458 0.159267 0.807807 -0.586764 -0.056174 0.031669 0.165888 -0.985636 0.501022 0.850653 0.159267 0.864855 -0.498869 -0.056174 0.014277 0.168279 -0.985636 0.410006 0.898070 0.159267 0.911971 -0.406391 -0.056174 -0.003439 0.168848 -0.985636 0.313624 0.936095 0.159267 0.949541 -0.308571 -0.056174 -0.021117 0.167558 -0.985636 0.213787 0.963810 0.159267 0.976652 -0.207353 -0.056174 -0.038397 0.164461 -0.985636 0.112576 0.980796 0.159267 0.992901 -0.104844 -0.056174 -0.055422 0.159531 -0.985636 0.009162 0.987193 0.159267 0.998421 -0.000203 -0.056174 -0.071837 0.152843 -0.985636 -0.094353 0.982716 0.159267 0.992944 0.104439 -0.056174 -0.087460 0.144472 -0.985636 -0.196830 0.967415 0.159267 0.976529 0.207932 -0.056174 -0.101986 0.134612 -0.985636 -0.296196 0.941755 0.159267 0.949667 0.308184 -0.056174 -0.115533 0.123182 -0.985636 -0.393267 0.905525 0.159267 0.912136 0.406019 -0.056174 -0.127807 0.110395 -0.985636 -0.486007 0.859320 0.159267 0.864559 0.499381 -0.056174 -0.138673 0.096392 -0.985636 -0.573393 0.803651 0.159267 0.807459 0.587243 -0.056174 -0.147930 0.081475 -0.985636 -0.653724 0.739783 0.159267 0.742133 0.667894 -0.056174 -0.155655 0.065522 -0.985636 -0.727658 0.667194 0.159267 0.668046 0.741997 -0.056174 -0.161665 0.048848 -0.985636 -0.793577 0.587255 0.159267 0.586600 0.807926 -0.056174 -0.165862 0.031801 -0.985636 -0.850254 0.501699 0.159267 0.499557 0.864458 -0.056174 -0.168282 0.014242 -0.985636 -0.898153 0.409823 0.159267 0.406205 0.912054 -0.056174 -0.168848 -0.003473 -0.985636 -0.936159 0.313433 0.159267 0.308378 0.949604 -0.056174 -0.167554 -0.021151 -0.985636 -0.963853 0.213591 0.159267 0.207154 0.976694 -0.056174 -0.164453 -0.038431 -0.985636 -0.980819 0.112377 0.159267 0.104642 0.992922 -0.056174 -0.159519 -0.055455 -0.985636 -0.987195 0.008961 0.159267 0.000000 0.998421 -0.056174 -0.152829 -0.071868 -0.985636 -0.982697 -0.094554 0.159267 -0.104642 0.992922 -0.056174 -0.144542 -0.087345 -0.985636 -0.967572 -0.196059 0.159267 -0.207154 0.976694 -0.056174 -0.134592 -0.102013 -0.985636 -0.941694 -0.296388 0.159267 -0.308378 0.949604 -0.056174 -0.123159 -0.115558 -0.985636 -0.905444 -0.393452 0.159267 -0.406205 0.912054 -0.056174 -0.110369 -0.127829 -0.985636 -0.859221 -0.486182 0.159267 -0.499557 0.864458 -0.056174 -0.096502 -0.138596 -0.985636 -0.804107 -0.572753 0.159267 -0.586600 0.807926 -0.056174 -0.081445 -0.147947 -0.985636 -0.739650 -0.653875 0.159267 -0.668046 0.741997 -0.056174 -0.065491 -0.155668 -0.985636 -0.667045 -0.727794 0.159267 -0.742133 0.667894 -0.056174 -0.048976 -0.161626 -0.985636 -0.587887 -0.793110 0.159267 -0.807459 0.587243 -0.056174 -0.031767 -0.165869 -0.985636 -0.501526 -0.850356 0.159267 -0.864559 0.499381 -0.056174 -0.014208 -0.168285 -0.985636 -0.409640 -0.898237 0.159267 -0.912136 0.406019 -0.056174 0.003508 -0.168847 -0.985636 -0.313242 -0.936223 0.159267 -0.949667 0.308184 -0.056174 0.021017 -0.167571 -0.985636 -0.214358 -0.963683 0.159267 -0.976529 0.207932 -0.056174 0.038464 -0.164445 -0.985636 -0.112177 -0.980842 0.159267 -0.992944 0.104439 -0.056174 -0.248383 0.967360 0.050205 0.948153 0.253406 -0.191809 -0.198270 -0.000040 -0.980147 -0.348401 0.936000 0.050205 0.916373 0.351384 -0.191809 -0.197174 -0.020820 -0.980147 -0.443687 0.894774 0.050205 0.874943 0.444616 -0.191809 -0.193947 -0.041177 -0.980147 -0.535023 0.843345 0.050205 0.823526 0.533868 -0.191809 -0.188563 -0.061277 -0.980147 -0.620465 0.782626 0.050205 0.763037 0.617239 -0.191809 -0.181103 -0.080703 -0.980147 -0.698359 0.713985 0.050205 0.694837 0.693117 -0.191809 -0.171746 -0.099067 -0.980147 -0.769343 0.636860 0.050205 0.618367 0.762123 -0.191809 -0.160417 -0.116522 -0.980147 -0.831854 0.552720 0.050205 0.535085 0.822735 -0.191809 -0.147322 -0.132693 -0.980147 -0.885201 0.462492 0.050205 0.445910 0.874285 -0.191809 -0.132603 -0.147403 -0.980147 -0.928431 0.368097 0.050205 0.352738 0.915852 -0.191809 -0.116584 -0.160372 -0.980147 -0.961897 0.268764 0.050205 0.254808 0.947778 -0.191809 -0.099134 -0.171708 -0.980147 -0.984768 0.166470 0.050205 0.154071 0.969263 -0.191809 -0.080592 -0.181152 -0.980147 -0.996728 0.063339 0.050205 0.052616 0.980021 -0.191809 -0.061351 -0.188540 -0.980147 -0.997877 -0.041474 0.050205 -0.050387 0.980138 -0.191809 -0.041252 -0.193931 -0.980147 -0.988035 -0.145830 0.050205 -0.152835 0.969459 -0.191809 -0.020700 -0.197187 -0.980147 -0.967512 -0.247792 0.050205 -0.252827 0.948308 -0.191809 -0.000081 -0.198270 -0.980147 -0.936213 -0.347829 0.050205 -0.350824 0.916587 -0.191809 0.020700 -0.197187 -0.980147 -0.894602 -0.444036 0.050205 -0.444957 0.874770 -0.191809 0.041252 -0.193931 -0.980147 -0.843136 -0.535351 0.050205 -0.534188 0.823318 -0.191809 0.061351 -0.188540 -0.980147 -0.783005 -0.619986 0.050205 -0.616773 0.763414 -0.191809 0.080592 -0.181152 -0.980147 -0.713713 -0.698636 0.050205 -0.693387 0.694567 -0.191809 0.099134 -0.171708 -0.980147 -0.636561 -0.769591 0.050205 -0.762364 0.618070 -0.191809 0.116584 -0.160372 -0.980147 -0.553228 -0.831516 0.050205 -0.822408 0.535588 -0.191809 0.132603 -0.147403 -0.980147 -0.463032 -0.884919 0.050205 -0.874012 0.446444 -0.191809 0.147322 -0.132693 -0.980147 -0.367736 -0.928574 0.050205 -0.915989 0.352382 -0.191809 0.160417 -0.116522 -0.980147 -0.268390 -0.962001 0.050205 -0.947877 0.254439 -0.191809 0.171746 -0.099067 -0.980147 -0.167072 -0.984666 0.050205 -0.969169 0.154663 -0.191809 0.181103 -0.080703 -0.980147 -0.062952 -0.996753 0.050205 -0.980041 0.052235 -0.191809 0.188563 -0.061277 -0.980147 0.041862 -0.997861 0.050205 -0.980118 -0.050768 -0.191809 0.193947 -0.041177 -0.980147 0.145226 -0.988124 0.050205 -0.969552 -0.152242 -0.191809 0.197174 -0.020820 -0.980147 0.247989 -0.967461 0.050205 -0.948256 -0.253020 -0.191809 0.198270 -0.000040 -0.980147 0.348020 -0.936142 0.050205 -0.916516 -0.351010 -0.191809 0.197182 0.020740 -0.980147 0.444218 -0.894511 0.050205 -0.874680 -0.445135 -0.191809 0.193923 0.041292 -0.980147 0.534679 -0.843563 0.050205 -0.823743 -0.533532 -0.191809 0.188588 0.061200 -0.980147 0.620146 -0.782878 0.050205 -0.763288 -0.616928 -0.191809 0.181135 0.080629 -0.980147 0.698782 -0.713571 0.050205 -0.694426 -0.693528 -0.191809 0.171687 0.099169 -0.980147 0.769721 -0.636404 0.050205 -0.617915 -0.762490 -0.191809 0.160348 0.116617 -0.980147 0.831628 -0.553059 0.050205 -0.535420 -0.822517 -0.191809 0.147376 0.132633 -0.980147 0.885013 -0.462852 0.050205 -0.446266 -0.874103 -0.191809 0.132663 0.147349 -0.980147 0.928649 -0.367547 0.050205 -0.352196 -0.916061 -0.191809 0.116489 0.160441 -0.980147 0.961787 -0.269156 0.050205 -0.255194 -0.947674 -0.191809 0.099204 0.171667 -0.980147 0.984700 -0.166871 0.050205 -0.154465 -0.969201 -0.191809 0.080666 0.181119 -0.980147 0.996766 -0.062749 0.050205 -0.052036 -0.980052 -0.191809 0.061239 0.188576 -0.980147 0.997853 0.042065 0.050205 0.050968 -0.980108 -0.191809 0.041137 0.193956 -0.980147 0.988094 0.145428 0.050205 0.152440 -0.969521 -0.191809 0.020780 0.197178 -0.980147 0.967411 0.248186 0.050205 0.253213 -0.948205 -0.191809 0.000000 0.198270 -0.980147 0.936071 0.348211 0.050205 0.351197 -0.916444 -0.191809 -0.020780 0.197178 -0.980147 0.894865 0.443505 0.050205 0.444438 -0.875034 -0.191809 -0.041137 0.193956 -0.980147 0.843454 0.534851 0.050205 0.533700 -0.823634 -0.191809 -0.061239 0.188576 -0.980147 0.782752 0.620305 0.050205 0.617084 -0.763163 -0.191809 -0.080666 0.181119 -0.980147 0.713429 0.698927 0.050205 0.693670 -0.694285 -0.191809 -0.099204 0.171667 -0.980147 0.637017 0.769213 0.050205 0.761998 -0.618522 -0.191809 -0.116489 0.160441 -0.980147 0.552889 0.831741 0.050205 0.822626 -0.535253 -0.191809 -0.132663 0.147349 -0.980147 0.462672 0.885107 0.050205 0.874194 -0.446088 -0.191809 -0.147376 0.132633 -0.980147 0.368287 0.928356 0.050205 0.915780 -0.352925 -0.191809 -0.160348 0.116617 -0.980147 0.268960 0.961842 0.050205 0.947726 -0.255001 -0.191809 -0.171687 0.099169 -0.980147 0.166671 0.984734 0.050205 0.969232 -0.154268 -0.191809 -0.181135 0.080629 -0.980147 0.062546 0.996779 0.050205 0.980062 -0.051836 -0.191809 -0.188588 0.061200 -0.980147 -0.041270 0.997886 0.050205 0.980148 0.050187 -0.191809 -0.193923 0.041292 -0.980147 -0.145629 0.988065 0.050205 0.969490 0.152637 -0.191809 -0.197182 0.020740 -0.980147 -0.720333 0.359413 -0.593247 -0.277348 -0.933178 -0.228596 -0.635766 -0.000129 0.771882 -0.754035 0.281938 -0.593247 -0.178017 -0.957107 -0.228596 -0.632251 -0.066762 0.771882 -0.779230 0.202136 -0.593247 -0.077695 -0.970416 -0.228596 -0.621904 -0.132036 0.771882 -0.796124 0.119354 -0.593247 0.024439 -0.973215 -0.228596 -0.604640 -0.196489 0.771882 -0.804248 0.035257 -0.593247 0.126305 -0.965293 -0.228596 -0.580717 -0.258778 0.771882 -0.803563 -0.048425 -0.593247 0.225832 -0.946966 -0.228596 -0.550715 -0.317665 0.771882 -0.794062 -0.132377 -0.593247 0.323837 -0.918081 -0.228596 -0.514388 -0.373635 0.771882 -0.775815 -0.214871 -0.593247 0.418275 -0.879085 -0.228596 -0.472396 -0.425488 0.771882 -0.749022 -0.294999 -0.593247 0.508106 -0.830405 -0.228596 -0.425200 -0.472655 0.771882 -0.714350 -0.371163 -0.593247 0.591567 -0.773170 -0.228596 -0.373835 -0.514243 0.771882 -0.671516 -0.443988 -0.593247 0.669343 -0.706912 -0.228596 -0.317879 -0.550591 0.771882 -0.621284 -0.511922 -0.593247 0.739746 -0.632867 -0.228596 -0.258423 -0.580875 0.771882 -0.564783 -0.573653 -0.593247 0.801448 -0.552652 -0.228596 -0.196724 -0.604564 0.771882 -0.501550 -0.629687 -0.593247 0.854956 -0.465611 -0.228596 -0.132278 -0.621852 0.771882 -0.432792 -0.678785 -0.593247 0.899047 -0.373441 -0.228596 -0.066375 -0.632291 0.771882 -0.359853 -0.720114 -0.593247 0.933009 -0.277918 -0.228596 -0.000259 -0.635766 0.771882 -0.282398 -0.753863 -0.593247 0.956998 -0.178601 -0.228596 0.066375 -0.632291 0.771882 -0.201833 -0.779308 -0.593247 0.970446 -0.077317 -0.228596 0.132278 -0.621852 0.771882 -0.119044 -0.796170 -0.593247 0.973205 0.024818 -0.228596 0.196724 -0.604564 0.771882 -0.035749 -0.804226 -0.593247 0.965370 0.125715 -0.228596 0.258423 -0.580875 0.771882 0.048737 -0.803544 -0.593247 0.946878 0.226200 -0.228596 0.317879 -0.550591 0.771882 0.132686 -0.794010 -0.593247 0.917955 0.324194 -0.228596 0.373835 -0.514243 0.771882 0.214397 -0.775946 -0.593247 0.879340 0.417738 -0.228596 0.425200 -0.472655 0.771882 0.294541 -0.749202 -0.593247 0.830715 0.507598 -0.228596 0.472396 -0.425488 0.771882 0.371441 -0.714206 -0.593247 0.772940 0.591868 -0.228596 0.514388 -0.373635 0.771882 0.444249 -0.671343 -0.593247 0.706652 0.669617 -0.228596 0.550715 -0.317665 0.771882 0.511542 -0.621597 -0.593247 0.633319 0.739359 -0.228596 0.580717 -0.258778 0.771882 0.573873 -0.564560 -0.593247 0.552340 0.801663 -0.228596 0.604640 -0.196489 0.771882 0.629882 -0.501305 -0.593247 0.465278 0.855137 -0.228596 0.621904 -0.132036 0.771882 0.678521 -0.433206 -0.593247 0.373990 0.898819 -0.228596 0.632251 -0.066762 0.771882 0.720187 -0.359707 -0.593247 0.277728 0.933065 -0.228596 0.635766 -0.000129 0.771882 0.753920 -0.282245 -0.593247 0.178406 0.957034 -0.228596 0.632278 0.066504 0.771882 0.779350 -0.201674 -0.593247 0.077120 0.970462 -0.228596 0.621825 0.132405 0.771882 0.796075 -0.119678 -0.593247 -0.024043 0.973224 -0.228596 0.604720 0.196243 0.771882 0.804234 -0.035585 -0.593247 -0.125912 0.965345 -0.228596 0.580822 0.258541 0.771882 0.803534 0.048901 -0.593247 -0.226393 0.946832 -0.228596 0.550526 0.317992 0.771882 0.793983 0.132848 -0.593247 -0.324381 0.917889 -0.228596 0.514167 0.373939 0.771882 0.775902 0.214555 -0.593247 -0.417917 0.879255 -0.228596 0.472569 0.425296 0.771882 0.749142 0.294694 -0.593247 -0.507767 0.830612 -0.228596 0.425392 0.472482 0.771882 0.714130 0.371586 -0.593247 -0.592025 0.772820 -0.228596 0.373530 0.514464 0.771882 0.671696 0.443714 -0.593247 -0.669055 0.707184 -0.228596 0.318104 0.550462 0.771882 0.621493 0.511669 -0.593247 -0.739488 0.633168 -0.228596 0.258659 0.580770 0.771882 0.564443 0.573988 -0.593247 -0.801776 0.552177 -0.228596 0.196366 0.604680 0.771882 0.501176 0.629984 -0.593247 -0.855232 0.465104 -0.228596 0.131910 0.621931 0.771882 0.433068 0.678609 -0.593247 -0.898895 0.373807 -0.228596 0.066633 0.632264 0.771882 0.359560 0.720260 -0.593247 -0.933122 0.277538 -0.228596 0.000000 0.635766 0.771882 0.282091 0.753978 -0.593247 -0.957071 0.178212 -0.228596 -0.066633 0.632264 0.771882 0.202295 0.779189 -0.593247 -0.970400 0.077893 -0.228596 -0.131910 0.621931 0.771882 0.119516 0.796099 -0.593247 -0.973220 -0.024241 -0.228596 -0.196366 0.604680 0.771882 0.035421 0.804241 -0.593247 -0.965319 -0.126108 -0.228596 -0.258659 0.580770 0.771882 -0.049064 0.803524 -0.593247 -0.946785 -0.226586 -0.228596 -0.318104 0.550462 0.771882 -0.132215 0.794089 -0.593247 -0.918147 -0.323650 -0.228596 -0.373530 0.514464 0.771882 -0.214713 0.775859 -0.593247 -0.879170 -0.418096 -0.228596 -0.425392 0.472482 0.771882 -0.294846 0.749082 -0.593247 -0.830509 -0.507937 -0.228596 -0.472569 0.425296 0.771882 -0.371017 0.714426 -0.593247 -0.773291 -0.591409 -0.228596 -0.514167 0.373939 0.771882 -0.443851 0.671606 -0.593247 -0.707048 -0.669199 -0.228596 -0.550526 0.317992 0.771882 -0.511796 0.621388 -0.593247 -0.633017 -0.739617 -0.228596 -0.580822 0.258541 0.771882 -0.574103 0.564326 -0.593247 -0.552014 -0.801888 -0.228596 -0.604720 0.196243 0.771882 -0.629585 0.501678 -0.593247 -0.465785 -0.854861 -0.228596 -0.621825 0.132405 0.771882 -0.678697 0.432930 -0.593247 -0.373624 -0.898971 -0.228596 -0.632278 0.066504 0.771882 0.168868 0.976150 0.136439 -0.759658 0.217099 -0.613015 -0.628015 -0.000128 0.778201 0.065631 0.988472 0.136439 -0.778228 0.136286 -0.613015 -0.624543 -0.065948 0.778201 -0.037340 0.989945 0.136439 -0.788171 0.054759 -0.613015 -0.614322 -0.130427 0.778201 -0.140887 0.980579 0.136439 -0.789570 -0.028148 -0.613015 -0.597269 -0.194094 0.778201 -0.242883 0.960413 0.136439 -0.782271 -0.110746 -0.613015 -0.573637 -0.255623 0.778201 -0.341274 0.930009 0.136439 -0.766547 -0.191357 -0.613015 -0.544001 -0.313793 0.778201 -0.436866 0.889119 0.136439 -0.742270 -0.270643 -0.613015 -0.508117 -0.369080 0.778201 -0.527646 0.838436 0.136439 -0.709817 -0.346947 -0.613015 -0.466637 -0.420301 0.778201 -0.612614 0.778517 0.136439 -0.669545 -0.419430 -0.613015 -0.420016 -0.466893 0.778201 -0.690124 0.710713 0.136439 -0.622385 -0.486672 -0.613015 -0.369277 -0.507974 0.778201 -0.760811 0.634469 0.136439 -0.567951 -0.549222 -0.613015 -0.314004 -0.543879 0.778201 -0.823118 0.551236 0.136439 -0.507260 -0.605722 -0.613015 -0.255272 -0.573794 0.778201 -0.875896 0.462808 0.136439 -0.441638 -0.655109 -0.613015 -0.194326 -0.597194 0.778201 -0.919577 0.368459 0.136439 -0.370546 -0.697788 -0.613015 -0.130666 -0.614272 0.778201 -0.953130 0.270052 0.136439 -0.295372 -0.732781 -0.613015 -0.065566 -0.624583 0.778201 -0.976046 0.169465 0.136439 -0.217563 -0.759525 -0.613015 -0.000256 -0.628015 0.778201 -0.988432 0.066235 0.136439 -0.136761 -0.778144 -0.613015 0.065566 -0.624583 0.778201 -0.989930 -0.037725 0.136439 -0.054453 -0.788192 -0.613015 0.130666 -0.614272 0.778201 -0.980524 -0.141269 0.136439 0.028455 -0.789559 -0.613015 0.194326 -0.597194 0.778201 -0.960561 -0.242296 0.136439 0.110268 -0.782339 -0.613015 0.255272 -0.573794 0.778201 -0.929876 -0.341636 0.136439 0.191655 -0.766473 -0.613015 0.314004 -0.543879 0.778201 -0.888949 -0.437212 0.136439 0.270931 -0.742165 -0.613015 0.369277 -0.507974 0.778201 -0.838758 -0.527134 0.136439 0.346514 -0.710029 -0.613015 0.420016 -0.466893 0.778201 -0.778891 -0.612138 0.136439 0.419021 -0.669801 -0.613015 0.466637 -0.420301 0.778201 -0.710445 -0.690400 0.136439 0.486914 -0.622196 -0.613015 0.508117 -0.369080 0.778201 -0.634173 -0.761058 0.136439 0.549442 -0.567737 -0.613015 0.544001 -0.313793 0.778201 -0.551739 -0.822781 0.136439 0.605412 -0.507630 -0.613015 0.573637 -0.255623 0.778201 -0.462467 -0.876076 0.136439 0.655281 -0.441383 -0.613015 0.597269 -0.194094 0.778201 -0.368101 -0.919721 0.136439 0.697932 -0.370274 -0.613015 0.614322 -0.130427 0.778201 -0.270634 -0.952965 0.136439 0.732600 -0.295819 -0.613015 0.624543 -0.065948 0.778201 -0.169266 -0.976081 0.136439 0.759570 -0.217408 -0.613015 0.628015 -0.000128 0.778201 -0.066033 -0.988445 0.136439 0.778172 -0.136603 -0.613015 0.624570 0.065693 0.778201 0.037927 -0.989922 0.136439 0.788204 -0.054292 -0.613015 0.614245 0.130791 0.778201 0.140488 -0.980636 0.136439 0.789581 0.027827 -0.613015 0.597348 0.193851 0.778201 0.242492 -0.960511 0.136439 0.782316 0.110427 -0.613015 0.573741 0.255389 0.778201 0.341825 -0.929807 0.136439 0.766434 0.191811 -0.613015 0.543815 0.314115 0.778201 0.437393 -0.888860 0.136439 0.742110 0.271083 -0.613015 0.507899 0.369381 0.778201 0.527304 -0.838650 0.136439 0.709958 0.346658 -0.613015 0.466808 0.420111 0.778201 0.612297 -0.778766 0.136439 0.669716 0.419158 -0.613015 0.420206 0.466722 0.778201 0.690545 -0.710304 0.136439 0.622097 0.487040 -0.613015 0.368976 0.508192 0.778201 0.760552 -0.634779 0.136439 0.568174 0.548990 -0.613015 0.314226 0.543751 0.778201 0.822893 -0.551572 0.136439 0.507507 0.605515 -0.613015 0.255506 0.573689 0.778201 0.876170 -0.462289 0.136439 0.441250 0.655371 -0.613015 0.193972 0.597309 0.778201 0.919796 -0.367914 0.136439 0.370132 0.698008 -0.613015 0.130302 0.614349 0.778201 0.953020 -0.270440 0.136439 0.295670 0.732661 -0.613015 0.065820 0.624556 0.778201 0.976115 -0.169067 0.136439 0.217254 0.759614 -0.613015 0.000000 0.628015 0.778201 0.988459 -0.065832 0.136439 0.136444 0.778200 -0.613015 -0.065820 0.624556 0.778201 0.989952 0.037138 0.136439 0.054920 0.788160 -0.613015 -0.130302 0.614349 0.778201 0.980608 0.140688 0.136439 -0.027987 0.789575 -0.613015 -0.193972 0.597309 0.778201 0.960462 0.242688 0.136439 -0.110586 0.782293 -0.613015 -0.255506 0.573689 0.778201 0.929737 0.342014 0.136439 -0.191967 0.766395 -0.613015 -0.314226 0.543751 0.778201 0.889208 0.436685 0.136439 -0.270492 0.742325 -0.613015 -0.368976 0.508192 0.778201 0.838543 0.527475 0.136439 -0.346803 0.709888 -0.613015 -0.420206 0.466722 0.778201 0.778642 0.612455 0.136439 -0.419294 0.669630 -0.613015 -0.466808 0.420111 0.778201 0.710854 0.689979 0.136439 -0.486545 0.622484 -0.613015 -0.507899 0.369381 0.778201 0.634624 0.760682 0.136439 -0.549106 0.568063 -0.613015 -0.543815 0.314115 0.778201 0.551404 0.823005 0.136439 -0.605619 0.507384 -0.613015 -0.573741 0.255389 0.778201 0.462110 0.876264 0.136439 -0.655461 0.441116 -0.613015 -0.597348 0.193851 0.778201 0.368646 0.919502 0.136439 -0.697713 0.370688 -0.613015 -0.614245 0.130791 0.778201 0.270246 0.953075 0.136439 -0.732721 0.295521 -0.613015 -0.624570 0.065693 0.778201 -0.047585 -0.993901 -0.099486 0.430357 -0.110280 0.895897 -0.901403 -0.000184 0.432980 0.056845 -0.993414 -0.099486 0.439545 -0.064568 0.895897 -0.896420 -0.094656 0.432980 0.159667 -0.982145 -0.099486 0.443873 -0.018589 0.895897 -0.881750 -0.187204 0.432980 0.261724 -0.960002 -0.099486 0.443377 0.028035 0.895897 -0.857273 -0.278587 0.432980 0.360897 -0.927284 -0.099486 0.437997 0.074350 0.895897 -0.823354 -0.366901 0.432980 0.455211 -0.884808 -0.099486 0.427912 0.119417 0.895897 -0.780816 -0.450393 0.432980 0.545438 -0.832226 -0.099486 0.413040 0.163608 0.895897 -0.729312 -0.529748 0.432980 0.629658 -0.770476 -0.099486 0.393617 0.205996 0.895897 -0.669774 -0.603267 0.432980 0.706941 -0.700240 -0.099486 0.369860 0.246116 0.895897 -0.602858 -0.670142 0.432980 0.775815 -0.623067 -0.099486 0.342311 0.283182 0.895897 -0.530032 -0.729105 0.432980 0.836845 -0.538325 -0.099486 0.310747 0.317499 0.895897 -0.450697 -0.780641 0.432980 0.888656 -0.447653 -0.099486 0.275759 0.348319 0.895897 -0.366398 -0.823578 0.432980 0.930326 -0.352981 -0.099486 0.238109 0.375064 0.895897 -0.278921 -0.857165 0.432980 0.962198 -0.253532 -0.099486 0.197488 0.397954 0.895897 -0.187547 -0.881677 0.432980 0.983470 -0.151290 -0.099486 0.154692 0.416461 0.895897 -0.094108 -0.896477 0.432980 0.993871 -0.048192 -0.099486 0.110543 0.430290 0.895897 -0.000367 -0.901403 0.432980 0.993448 0.056239 -0.099486 0.064836 0.439506 0.895897 0.094108 -0.896477 0.432980 0.982083 0.160049 -0.099486 0.018416 0.443881 0.895897 0.187547 -0.881677 0.432980 0.959900 0.262097 -0.099486 -0.028207 0.443366 0.895897 0.278921 -0.857165 0.432980 0.927504 0.360331 -0.099486 -0.074082 0.438042 0.895897 0.366398 -0.823578 0.432980 0.884631 0.455555 -0.099486 -0.119584 0.427866 0.895897 0.450697 -0.780641 0.432980 0.832013 0.545762 -0.099486 -0.163769 0.412976 0.895897 0.530032 -0.729105 0.432980 0.770861 0.629187 -0.099486 -0.205756 0.393743 0.895897 0.602858 -0.670142 0.432980 0.700672 0.706513 -0.099486 -0.245890 0.370010 0.895897 0.669774 -0.603267 0.432980 0.622766 0.776058 -0.099486 -0.283315 0.342201 0.895897 0.729312 -0.529748 0.432980 0.538000 0.837054 -0.099486 -0.317620 0.310623 0.895897 0.780816 -0.450393 0.432980 0.448196 0.888382 -0.099486 -0.348151 0.275972 0.895897 0.823354 -0.366901 0.432980 0.352619 0.930464 -0.099486 -0.375157 0.237963 0.895897 0.857273 -0.278587 0.432980 0.253157 0.962296 -0.099486 -0.398031 0.197333 0.895897 0.881750 -0.187204 0.432980 0.151891 0.983378 -0.099486 -0.416366 0.154947 0.895897 0.896420 -0.094656 0.432980 0.047989 0.993881 -0.099486 -0.430313 0.110455 0.895897 0.901403 -0.000184 0.432980 -0.056441 0.993437 -0.099486 -0.439519 0.064747 0.895897 0.896458 0.094291 0.432980 -0.160249 0.982050 -0.099486 -0.443884 0.018326 0.895897 0.881639 0.187727 0.432980 -0.261333 0.960108 -0.099486 -0.443388 -0.027854 0.895897 0.857387 0.278238 0.432980 -0.360520 0.927431 -0.099486 -0.438027 -0.074171 0.895897 0.823503 0.366566 0.432980 -0.455735 0.884538 -0.099486 -0.427841 -0.119671 0.895897 0.780549 0.450856 0.432980 -0.545932 0.831902 -0.099486 -0.412942 -0.163853 0.895897 0.728997 0.530180 0.432980 -0.629344 0.770733 -0.099486 -0.393701 -0.205836 0.895897 0.670019 0.602995 0.432980 -0.706656 0.700528 -0.099486 -0.369960 -0.245965 0.895897 0.603131 0.669896 0.432980 -0.776184 0.622608 -0.099486 -0.342143 -0.283385 0.895897 0.529599 0.729419 0.432980 -0.836625 0.538666 -0.099486 -0.310876 -0.317373 0.895897 0.451015 0.780457 0.432980 -0.888474 0.448015 -0.099486 -0.275901 -0.348207 0.895897 0.366733 0.823429 0.432980 -0.930536 0.352429 -0.099486 -0.237887 -0.375205 0.895897 0.278412 0.857330 0.432980 -0.962348 0.252961 -0.099486 -0.197252 -0.398071 0.895897 0.187025 0.881788 0.432980 -0.983409 0.151691 -0.099486 -0.154862 -0.416398 0.895897 0.094474 0.896439 0.432980 -0.993891 0.047787 -0.099486 -0.110367 -0.430335 0.895897 0.000000 0.901403 0.432980 -0.993425 -0.056643 -0.099486 -0.064657 -0.439532 0.895897 -0.094474 0.896439 0.432980 -0.982178 -0.159467 -0.099486 -0.018679 -0.443870 0.895897 -0.187025 0.881788 0.432980 -0.960055 -0.261528 -0.099486 0.027945 -0.443383 0.895897 -0.278412 0.857330 0.432980 -0.927358 -0.360709 -0.099486 0.074260 -0.438012 0.895897 -0.366733 0.823429 0.432980 -0.884445 -0.455916 -0.099486 0.119758 -0.427817 0.895897 -0.451015 0.780457 0.432980 -0.832337 -0.545269 -0.099486 0.163524 -0.413073 0.895897 -0.529599 0.729419 0.432980 -0.770605 -0.629501 -0.099486 0.205916 -0.393659 0.895897 -0.603131 0.669896 0.432980 -0.700384 -0.706799 -0.099486 0.246041 -0.369910 0.895897 -0.670019 0.602995 0.432980 -0.623226 -0.775688 -0.099486 0.283112 -0.342369 0.895897 -0.728997 0.530180 0.432980 -0.538495 -0.836735 -0.099486 0.317436 -0.310811 0.895897 -0.780549 0.450856 0.432980 -0.447834 -0.888565 -0.099486 0.348263 -0.275830 0.895897 -0.823503 0.366566 0.432980 -0.352240 -0.930607 -0.099486 0.375254 -0.237810 0.895897 -0.857387 0.278238 0.432980 -0.253728 -0.962146 -0.099486 0.397914 -0.197569 0.895897 -0.881639 0.187727 0.432980 -0.151490 -0.983440 -0.099486 0.416429 -0.154777 0.895897 -0.896458 0.094291 0.432980 -0.112958 0.921038 -0.372732 -0.266649 -0.389473 -0.881595 -0.957151 -0.000195 0.289588 -0.208868 0.904127 -0.372732 -0.224361 -0.415274 -0.881595 -0.951859 -0.100510 0.289588 -0.301599 0.877558 -0.372732 -0.180038 -0.436322 -0.881595 -0.936282 -0.198782 0.289588 -0.391912 0.841116 -0.372732 -0.133317 -0.452788 -0.881595 -0.910292 -0.295816 0.289588 -0.477909 0.795408 -0.372732 -0.085127 -0.464267 -0.881595 -0.874275 -0.389592 0.289588 -0.557900 0.741497 -0.372732 -0.036470 -0.470596 -0.881595 -0.829106 -0.478248 0.289588 -0.632542 0.678942 -0.372732 0.013052 -0.471826 -0.881595 -0.774416 -0.562510 0.289588 -0.700216 0.608908 -0.372732 0.062431 -0.467860 -0.881595 -0.711196 -0.640577 0.289588 -0.760177 0.532166 -0.372732 0.111123 -0.458740 -0.881595 -0.640142 -0.711587 0.289588 -0.811316 0.450375 -0.372732 0.158145 -0.444725 -0.881595 -0.562812 -0.774198 0.289588 -0.854050 0.362863 -0.372732 0.203885 -0.425701 -0.881595 -0.478571 -0.828920 0.289588 -0.887377 0.271354 -0.372732 0.247378 -0.401988 -0.881595 -0.389058 -0.874513 0.289588 -0.910752 0.177767 -0.372732 0.287773 -0.374135 -0.881595 -0.296171 -0.910177 0.289588 -0.924368 0.081334 -0.372732 0.325400 -0.341914 -0.881595 -0.199146 -0.936205 0.289588 -0.927801 -0.015994 -0.372732 0.359443 -0.305927 -0.881595 -0.099929 -0.951921 0.289588 -0.921107 -0.112396 -0.372732 0.389310 -0.266887 -0.881595 -0.000390 -0.957151 0.289588 -0.904254 -0.208315 -0.372732 0.415137 -0.224615 -0.881595 0.099929 -0.951921 0.289588 -0.877441 -0.301940 -0.372732 0.436392 -0.179868 -0.881595 0.199146 -0.936205 0.289588 -0.840963 -0.392240 -0.372732 0.452840 -0.133140 -0.881595 0.296171 -0.910177 0.289588 -0.795700 -0.477423 -0.372732 0.464215 -0.085411 -0.881595 0.389058 -0.874513 0.289588 -0.741280 -0.558188 -0.372732 0.470610 -0.036287 -0.881595 0.478571 -0.828920 0.289588 -0.678695 -0.632806 -0.372732 0.471821 0.013236 -0.881595 0.562812 -0.774198 0.289588 -0.609335 -0.699844 -0.372732 0.467898 0.062146 -0.881595 0.640142 -0.711587 0.289588 -0.532631 -0.759852 -0.372732 0.458808 0.110842 -0.881595 0.711196 -0.640577 0.289588 -0.450059 -0.811491 -0.372732 0.444664 0.158318 -0.881595 0.774416 -0.562510 0.289588 -0.362531 -0.854191 -0.372732 0.425622 0.204050 -0.881595 0.829106 -0.478248 0.289588 -0.271896 -0.887211 -0.372732 0.402139 0.247133 -0.881595 0.874275 -0.389592 0.289588 -0.177412 -0.910821 -0.372732 0.374023 0.287919 -0.881595 0.910292 -0.295816 0.289588 -0.080975 -0.924399 -0.372732 0.341787 0.325533 -0.881595 0.936282 -0.198782 0.289588 0.015427 -0.927811 -0.372732 0.306146 0.359256 -0.881595 0.951859 -0.100510 0.289588 0.112583 -0.921084 -0.372732 0.266808 0.389364 -0.881595 0.957151 -0.000195 0.289588 0.208499 -0.904212 -0.372732 0.224530 0.415183 -0.881595 0.951900 0.100122 0.289588 0.302119 -0.877379 -0.372732 0.179779 0.436429 -0.881595 0.936164 0.199337 0.289588 0.391570 -0.841275 -0.372732 0.133501 0.452734 -0.881595 0.910412 0.295446 0.289588 0.477585 -0.795603 -0.372732 0.085316 0.464232 -0.881595 0.874433 0.389236 0.289588 0.558339 -0.741167 -0.372732 0.036191 0.470617 -0.881595 0.828823 0.478739 0.289588 0.632944 -0.678567 -0.372732 -0.013332 0.471819 -0.881595 0.774083 0.562969 0.289588 0.699968 -0.609193 -0.372732 -0.062241 0.467885 -0.881595 0.711457 0.640287 0.289588 0.759961 -0.532476 -0.372732 -0.110936 0.458785 -0.881595 0.640432 0.711327 0.289588 0.811582 -0.449894 -0.372732 -0.158409 0.444632 -0.881595 0.562353 0.774531 0.289588 0.853902 -0.363211 -0.372732 -0.203711 0.425784 -0.881595 0.478908 0.828725 0.289588 0.887266 -0.271715 -0.372732 -0.247215 0.402089 -0.881595 0.389414 0.874354 0.289588 0.910857 -0.177227 -0.372732 -0.287995 0.373965 -0.881595 0.295631 0.910352 0.289588 0.924416 -0.080787 -0.372732 -0.325603 0.341721 -0.881595 0.198591 0.936323 0.289588 0.927808 0.015616 -0.372732 -0.359319 0.306073 -0.881595 0.100316 0.951880 0.289588 0.921061 0.112771 -0.372732 -0.389418 0.266728 -0.881595 0.000000 0.957151 0.289588 0.904169 0.208684 -0.372732 -0.415229 0.224445 -0.881595 -0.100316 0.951880 0.289588 0.877620 0.301420 -0.372732 -0.436285 0.180127 -0.881595 -0.198591 0.936323 0.289588 0.841195 0.391741 -0.372732 -0.452761 0.133409 -0.881595 -0.295631 0.910352 0.289588 0.795505 0.477747 -0.372732 -0.464250 0.085221 -0.881595 -0.389414 0.874354 0.289588 0.741053 0.558490 -0.372732 -0.470625 0.036095 -0.881595 -0.478908 0.828725 0.289588 0.679070 0.632403 -0.372732 -0.471829 -0.012956 -0.881595 -0.562353 0.774531 0.289588 0.609050 0.700092 -0.372732 -0.467873 -0.062336 -0.881595 -0.640432 0.711327 0.289588 0.532321 0.760069 -0.372732 -0.458763 -0.111029 -0.881595 -0.711457 0.640287 0.289588 0.450540 0.811224 -0.372732 -0.444758 -0.158055 -0.881595 -0.774083 0.562969 0.289588 0.363037 0.853976 -0.372732 -0.425743 -0.203798 -0.881595 -0.828823 0.478739 0.289588 0.271535 0.887322 -0.372732 -0.402039 -0.247296 -0.881595 -0.874433 0.389236 0.289588 0.177041 0.910893 -0.372732 -0.373906 -0.288071 -0.881595 -0.910412 0.295446 0.289588 0.081523 0.924351 -0.372732 -0.341980 -0.325331 -0.881595 -0.936164 0.199337 0.289588 -0.015805 0.927804 -0.372732 -0.306000 -0.359381 -0.881595 -0.951900 0.100122 0.289588 -0.675658 0.626161 0.389112 0.542547 0.779694 -0.312604 -0.499128 -0.000102 -0.866528 -0.737563 0.551899 0.389112 0.457841 0.832262 -0.312604 -0.496369 -0.052413 -0.866528 -0.790872 0.472348 0.389112 0.368968 0.875295 -0.312604 -0.488246 -0.103659 -0.866528 -0.836022 0.386858 0.389112 0.275199 0.909145 -0.312604 -0.474693 -0.154260 -0.866528 -0.871963 0.297106 0.389112 0.178398 0.932981 -0.312604 -0.455911 -0.203162 -0.866528 -0.898095 0.204980 0.389112 0.080579 0.946460 -0.312604 -0.432356 -0.249393 -0.866528 -0.914632 0.109725 0.389112 -0.019060 0.949692 -0.312604 -0.403837 -0.293334 -0.866528 -0.921095 0.013260 0.389112 -0.118490 0.942464 -0.312604 -0.370870 -0.334043 -0.866528 -0.917412 -0.083350 0.389112 -0.216615 0.924855 -0.312604 -0.333817 -0.371073 -0.866528 -0.903802 -0.178139 0.389112 -0.311456 0.897371 -0.312604 -0.293491 -0.403723 -0.866528 -0.880154 -0.271883 0.389112 -0.403791 0.859786 -0.312604 -0.249562 -0.432259 -0.866528 -0.846812 -0.362632 0.389112 -0.491679 0.812730 -0.312604 -0.202883 -0.456035 -0.866528 -0.804590 -0.448582 0.389112 -0.573394 0.757297 -0.312604 -0.154445 -0.474632 -0.866528 -0.753145 -0.530438 0.389112 -0.649606 0.693030 -0.312604 -0.103849 -0.488205 -0.866528 -0.693403 -0.606452 0.389112 -0.718663 0.621130 -0.312604 -0.052110 -0.496401 -0.866528 -0.626574 -0.675276 0.389112 -0.779362 0.543023 -0.312604 -0.000203 -0.499128 -0.866528 -0.552349 -0.737226 0.389112 -0.831982 0.458349 -0.312604 0.052110 -0.496401 -0.866528 -0.472041 -0.791056 0.389112 -0.875439 0.368627 -0.312604 0.103849 -0.488205 -0.866528 -0.386533 -0.836172 0.389112 -0.909252 0.274845 -0.312604 0.154445 -0.474632 -0.866528 -0.297639 -0.871781 0.389112 -0.932872 0.178968 -0.312604 0.202883 -0.456035 -0.866528 -0.204631 -0.898175 0.389112 -0.946491 0.080211 -0.312604 0.249562 -0.432259 -0.866528 -0.109369 -0.914675 0.389112 -0.949685 -0.019430 -0.312604 0.293491 -0.403723 -0.866528 -0.013823 -0.921087 0.389112 -0.942537 -0.117914 -0.312604 0.333817 -0.371073 -0.866528 0.082790 -0.917463 0.389112 -0.924987 -0.216050 -0.312604 0.370870 -0.334043 -0.866528 0.178491 -0.903733 0.389112 -0.897250 -0.311805 -0.312604 0.403837 -0.293334 -0.866528 0.272225 -0.880048 0.389112 -0.859629 -0.404126 -0.312604 0.432356 -0.249393 -0.866528 0.362114 -0.847033 0.389112 -0.813031 -0.491183 -0.312604 0.455911 -0.203162 -0.866528 0.448895 -0.804416 0.389112 -0.757073 -0.573689 -0.312604 0.474693 -0.154260 -0.866528 0.530731 -0.752938 0.389112 -0.692777 -0.649876 -0.312604 0.488246 -0.103659 -0.866528 0.606028 -0.693773 0.389112 -0.621569 -0.718284 -0.312604 0.496369 -0.052413 -0.866528 0.675403 -0.626436 0.389112 -0.542864 -0.779473 -0.312604 0.499128 -0.000102 -0.866528 0.737338 -0.552199 0.389112 -0.458180 -0.832076 -0.312604 0.496390 0.052211 -0.866528 0.791152 -0.471880 0.389112 -0.368449 -0.875514 -0.312604 0.488184 0.103949 -0.866528 0.835864 -0.387198 0.389112 -0.275569 -0.909033 -0.312604 0.474755 0.154067 -0.866528 0.871842 -0.297461 0.389112 -0.178778 -0.932908 -0.312604 0.455993 0.202976 -0.866528 0.898216 -0.204448 0.389112 -0.080018 -0.946507 -0.312604 0.432209 0.249650 -0.866528 0.914697 -0.109182 0.389112 0.019623 -0.949681 -0.312604 0.403663 0.293573 -0.866528 0.921089 -0.013635 0.389112 0.118106 -0.942513 -0.312604 0.371006 0.333892 -0.866528 0.917446 0.082977 0.389112 0.216238 -0.924943 -0.312604 0.333968 0.370938 -0.866528 0.903696 0.178674 0.389112 0.311988 -0.897186 -0.312604 0.293252 0.403897 -0.866528 0.880265 0.271524 0.389112 0.403441 -0.859950 -0.312604 0.249738 0.432158 -0.866528 0.846959 0.362287 0.389112 0.491348 -0.812931 -0.312604 0.203069 0.455952 -0.866528 0.804324 0.449059 0.389112 0.573843 -0.756957 -0.312604 0.154164 0.474724 -0.866528 0.752830 0.530885 0.389112 0.650017 -0.692645 -0.312604 0.103560 0.488267 -0.866528 0.693650 0.606170 0.389112 0.718410 -0.621422 -0.312604 0.052312 0.496380 -0.866528 0.626299 0.675531 0.389112 0.779583 -0.542705 -0.312604 0.000000 0.499128 -0.866528 0.552049 0.737451 0.389112 0.832169 -0.458011 -0.312604 -0.052312 0.496380 -0.866528 0.472509 0.790776 0.389112 0.875220 -0.369146 -0.312604 -0.103560 0.488267 -0.866528 0.387028 0.835943 0.389112 0.909089 -0.275384 -0.312604 -0.154164 0.474724 -0.866528 0.297284 0.871903 0.389112 0.932944 -0.178588 -0.312604 -0.203069 0.455952 -0.866528 0.204265 0.898258 0.389112 0.946524 -0.079825 -0.312604 -0.249738 0.432158 -0.866528 0.109911 0.914610 0.389112 0.949696 0.018867 -0.312604 -0.293252 0.403897 -0.866528 0.013448 0.921092 0.389112 0.942488 0.118298 -0.312604 -0.333968 0.370938 -0.866528 -0.083163 0.917429 0.389112 0.924899 0.216426 -0.312604 -0.371006 0.333892 -0.866528 -0.177955 0.903838 0.389112 0.897434 0.311273 -0.312604 -0.403663 0.293573 -0.866528 -0.271704 0.880210 0.389112 0.859868 0.403616 -0.312604 -0.432209 0.249650 -0.866528 -0.362459 0.846885 0.389112 0.812830 0.491514 -0.312604 -0.455993 0.202976 -0.866528 -0.449223 0.804233 0.389112 0.756840 0.573997 -0.312604 -0.474755 0.154067 -0.866528 -0.530285 0.753253 0.389112 0.693162 0.649465 -0.312604 -0.488184 0.103949 -0.866528 -0.606311 0.693526 0.389112 0.621276 0.718537 -0.312604 -0.496390 0.052211 -0.866528 -0.594165 0.103489 0.797658 0.061690 0.994631 -0.083093 -0.801974 -0.000163 -0.597359 -0.601739 0.040646 0.797658 -0.042894 0.995618 -0.083093 -0.797540 -0.084215 -0.597359 -0.602707 -0.022041 0.797658 -0.146020 0.985786 -0.083093 -0.784488 -0.166555 -0.597359 -0.597078 -0.085088 0.797658 -0.248534 0.965053 -0.083093 -0.762712 -0.247857 -0.597359 -0.584872 -0.147197 0.797658 -0.348309 0.933690 -0.083093 -0.732534 -0.326430 -0.597359 -0.566431 -0.207119 0.797658 -0.443356 0.892486 -0.083093 -0.694688 -0.400713 -0.597359 -0.541603 -0.265344 0.797658 -0.534453 0.841104 -0.083093 -0.648865 -0.471314 -0.597359 -0.510811 -0.320647 0.797658 -0.619663 0.780457 -0.083093 -0.595894 -0.536724 -0.597359 -0.474391 -0.372418 0.797658 -0.698048 0.711213 -0.083093 -0.536360 -0.596222 -0.597359 -0.433166 -0.419653 0.797658 -0.768109 0.634904 -0.083093 -0.471566 -0.648681 -0.597359 -0.386798 -0.462741 0.797658 -0.830422 0.550904 -0.083093 -0.400983 -0.694532 -0.597359 -0.336169 -0.500732 0.797658 -0.883587 0.460836 -0.083093 -0.325982 -0.732733 -0.597359 -0.282371 -0.532925 0.797658 -0.926653 0.366619 -0.083093 -0.248154 -0.762615 -0.597359 -0.224961 -0.559584 0.797658 -0.959974 0.267480 -0.083093 -0.166860 -0.784424 -0.597359 -0.165074 -0.580080 0.797658 -0.982721 0.165394 -0.083093 -0.083728 -0.797591 -0.597359 -0.103852 -0.594102 0.797658 -0.994593 0.062297 -0.083093 -0.000327 -0.801974 -0.597359 -0.041014 -0.601714 0.797658 -0.995644 -0.042286 -0.083093 0.083728 -0.797591 -0.597359 0.022276 -0.602699 0.797658 -0.985729 -0.146404 -0.083093 0.166860 -0.784424 -0.597359 0.085320 -0.597045 0.797658 -0.964956 -0.248909 -0.083093 0.248154 -0.762615 -0.597359 0.146840 -0.584961 0.797658 -0.933902 -0.347739 -0.083093 0.325982 -0.732733 -0.597359 0.207339 -0.566350 0.797658 -0.892313 -0.443703 -0.083093 0.400983 -0.694532 -0.597359 0.265555 -0.541500 0.797658 -0.840896 -0.534780 -0.083093 0.471566 -0.648681 -0.597359 0.320335 -0.511006 0.797658 -0.780835 -0.619187 -0.083093 0.536360 -0.596222 -0.597359 0.372128 -0.474619 0.797658 -0.711640 -0.697614 -0.083093 0.595894 -0.536724 -0.597359 0.419822 -0.433003 0.797658 -0.634605 -0.768356 -0.083093 0.648865 -0.471314 -0.597359 0.462891 -0.386618 0.797658 -0.550581 -0.830636 -0.083093 0.694688 -0.400713 -0.597359 0.500526 -0.336475 0.797658 -0.461376 -0.883305 -0.083093 0.732534 -0.326430 -0.597359 0.533035 -0.282163 0.797658 -0.366258 -0.926796 -0.083093 0.762712 -0.247857 -0.597359 0.559672 -0.224743 0.797658 -0.267106 -0.960078 -0.083093 0.784488 -0.166555 -0.597359 0.579979 -0.165428 0.797658 -0.165995 -0.982620 -0.083093 0.797540 -0.084215 -0.597359 0.594123 -0.103731 0.797658 -0.062095 -0.994605 -0.083093 0.801974 -0.000163 -0.597359 0.601722 -0.040891 0.797658 0.042489 -0.995636 -0.083093 0.797574 0.083890 -0.597359 0.602694 0.022399 0.797658 0.146605 -0.985699 -0.083093 0.784389 0.167020 -0.597359 0.597112 0.084845 0.797658 0.248140 -0.965154 -0.083093 0.762813 0.247547 -0.597359 0.584931 0.146959 0.797658 0.347929 -0.933831 -0.083093 0.732667 0.326132 -0.597359 0.566308 0.207455 0.797658 0.443885 -0.892223 -0.083093 0.694451 0.401124 -0.597359 0.541446 0.265665 0.797658 0.534952 -0.840787 -0.083093 0.648585 0.471699 -0.597359 0.510941 0.320439 0.797658 0.619345 -0.780709 -0.083093 0.596113 0.536481 -0.597359 0.474543 0.372224 0.797658 0.697758 -0.711498 -0.083093 0.536603 0.596003 -0.597359 0.432918 0.419910 0.797658 0.768486 -0.634449 -0.083093 0.471182 0.648961 -0.597359 0.386986 0.462583 0.797658 0.830197 -0.551242 -0.083093 0.401266 0.694369 -0.597359 0.336373 0.500595 0.797658 0.883399 -0.461196 -0.083093 0.326281 0.732600 -0.597359 0.282055 0.533092 0.797658 0.926870 -0.366069 -0.083093 0.247702 0.762762 -0.597359 0.224629 0.559717 0.797658 0.960132 -0.266911 -0.083093 0.166395 0.784522 -0.597359 0.165310 0.580013 0.797658 0.982653 -0.165795 -0.083093 0.084053 0.797557 -0.597359 0.103610 0.594144 0.797658 0.994618 -0.061892 -0.083093 0.000000 0.801974 -0.597359 0.040769 0.601731 0.797658 0.995627 0.042692 -0.083093 -0.084053 0.797557 -0.597359 -0.021919 0.602712 0.797658 0.985816 0.145820 -0.083093 -0.166395 0.784522 -0.597359 -0.084966 0.597095 0.797658 0.965103 0.248337 -0.083093 -0.247702 0.762762 -0.597359 -0.147078 0.584902 0.797658 0.933761 0.348119 -0.083093 -0.326281 0.732600 -0.597359 -0.207570 0.566265 0.797658 0.892133 0.444067 -0.083093 -0.401266 0.694369 -0.597359 -0.265234 0.541657 0.797658 0.841213 0.534282 -0.083093 -0.471182 0.648961 -0.597359 -0.320543 0.510876 0.797658 0.780583 0.619504 -0.083093 -0.536603 0.596003 -0.597359 -0.372321 0.474467 0.797658 0.711356 0.697903 -0.083093 -0.596113 0.536481 -0.597359 -0.419565 0.433252 0.797658 0.635061 0.767980 -0.083093 -0.648585 0.471699 -0.597359 -0.462662 0.386892 0.797658 0.551073 0.830309 -0.083093 -0.694451 0.401124 -0.597359 -0.500663 0.336271 0.797658 0.461016 0.883493 -0.083093 -0.732667 0.326132 -0.597359 -0.533149 0.281946 0.797658 0.365881 0.926945 -0.083093 -0.762813 0.247547 -0.597359 -0.559538 0.225075 0.797658 0.267675 0.959920 -0.083093 -0.784389 0.167020 -0.597359 -0.580046 0.165192 0.797658 0.165594 0.982687 -0.083093 -0.797574 0.083890 -0.597359 0.469038 -0.859871 0.201557 0.789954 0.510512 0.339633 -0.394938 -0.000080 0.918708 0.556576 -0.805977 0.201557 0.732098 0.590493 0.339633 -0.392754 -0.041472 0.918708 0.637239 -0.743842 0.201557 0.666842 0.663303 0.339633 -0.386327 -0.082021 0.918708 0.711690 -0.672958 0.201557 0.593650 0.729540 0.339633 -0.375603 -0.122059 0.918708 0.778301 -0.594662 0.201557 0.513920 0.787741 0.339633 -0.360741 -0.160753 0.918708 0.835829 -0.510651 0.201557 0.429365 0.836836 0.339633 -0.342104 -0.197334 0.918708 0.884746 -0.420238 0.201557 0.339294 0.877228 0.339633 -0.319538 -0.232102 0.918708 0.923917 -0.325196 0.201557 0.245486 0.907957 0.339633 -0.293452 -0.264313 0.918708 0.952911 -0.226572 0.201557 0.148974 0.928685 0.339633 -0.264134 -0.293614 0.918708 0.971284 -0.126423 0.201557 0.051759 0.939133 0.339633 -0.232226 -0.319448 0.918708 0.979185 -0.023930 0.201557 -0.046954 0.939385 0.339633 -0.197467 -0.342027 0.918708 0.976300 0.078828 0.201557 -0.145149 0.929291 0.339633 -0.160532 -0.360839 0.918708 0.962841 0.179754 0.201557 -0.240837 0.909201 0.339633 -0.122205 -0.375555 0.918708 0.938699 0.279677 0.201557 -0.334802 0.878952 0.339633 -0.082171 -0.386295 0.918708 0.904217 0.376519 0.201557 -0.425078 0.839022 0.339633 -0.041232 -0.392779 0.918708 0.860157 0.468513 0.201557 -0.510029 0.790266 0.339633 -0.000161 -0.394938 0.918708 0.806316 0.556083 0.201557 -0.590046 0.732459 0.339633 0.041232 -0.392779 0.918708 0.743594 0.637529 0.201557 -0.663563 0.666584 0.339633 0.082171 -0.386295 0.918708 0.672681 0.711951 0.201557 -0.729771 0.593366 0.339633 0.122205 -0.375555 0.918708 0.595137 0.777937 0.201557 -0.787427 0.514401 0.339633 0.160532 -0.360839 0.918708 0.510326 0.836028 0.201557 -0.837003 0.429040 0.339633 0.197467 -0.342027 0.918708 0.419894 0.884909 0.201557 -0.877360 0.338953 0.339633 0.232226 -0.319448 0.918708 0.325760 0.923718 0.201557 -0.907807 0.246041 0.339633 0.264134 -0.293614 0.918708 0.227154 0.952773 0.201557 -0.928594 0.149541 0.339633 0.293452 -0.264313 0.918708 0.126045 0.971333 0.201557 -0.939153 0.051394 0.339633 0.319538 -0.232102 0.918708 0.023549 0.979194 0.201557 -0.939367 -0.047319 0.339633 0.342104 -0.197334 0.918708 -0.078231 0.976348 0.201557 -0.929379 -0.144581 0.339633 0.360741 -0.160753 0.918708 -0.180129 0.962771 0.201557 -0.909107 -0.241191 0.339633 0.375603 -0.122059 0.918708 -0.280042 0.938590 0.201557 -0.878822 -0.335143 0.339633 0.386327 -0.082021 0.918708 -0.375966 0.904447 0.201557 -0.839282 -0.424565 0.339633 0.392754 -0.041472 0.918708 -0.468688 0.860062 0.201557 -0.790162 -0.510190 0.339633 0.394938 -0.000080 0.918708 -0.556248 0.806203 0.201557 -0.732338 -0.590195 0.339633 0.392771 0.041312 0.918708 -0.637680 0.743464 0.201557 -0.666448 -0.663699 0.339633 0.386278 0.082250 0.918708 -0.711415 0.673248 0.201557 -0.593947 -0.729298 0.339633 0.375652 0.121906 0.918708 -0.778059 0.594979 0.201557 -0.514240 -0.787532 0.339633 0.360807 0.160606 0.918708 -0.836132 0.510156 0.201557 -0.428869 -0.837090 0.339633 0.341987 0.197536 0.918708 -0.884995 0.419714 0.201557 -0.338774 -0.877429 0.339633 0.319400 0.232291 0.918708 -0.923784 0.325572 0.201557 -0.245856 -0.907857 0.339633 0.293560 0.264194 0.918708 -0.952819 0.226960 0.201557 -0.149352 -0.928625 0.339633 0.264254 0.293506 0.918708 -0.971358 0.125848 0.201557 -0.051203 -0.939163 0.339633 0.232037 0.319585 0.918708 -0.979175 0.024328 0.201557 0.046571 -0.939404 0.339633 0.197606 0.341947 0.918708 -0.976332 -0.078430 0.201557 0.144771 -0.929350 0.339633 0.160679 0.360774 0.918708 -0.962735 -0.180325 0.201557 0.241376 -0.909058 0.339633 0.121983 0.375627 0.918708 -0.938533 -0.280233 0.201557 0.335322 -0.878754 0.339633 0.081942 0.386343 0.918708 -0.904370 -0.376150 0.201557 0.424736 -0.839195 0.339633 0.041392 0.392763 0.918708 -0.859966 -0.468863 0.201557 0.510351 -0.790058 0.339633 0.000000 0.394938 0.918708 -0.806090 -0.556412 0.201557 0.590344 -0.732218 0.339633 -0.041392 0.392763 0.918708 -0.743972 -0.637088 0.201557 0.663168 -0.666977 0.339633 -0.081942 0.386343 0.918708 -0.673103 -0.711553 0.201557 0.729419 -0.593799 0.339633 -0.121983 0.375627 0.918708 -0.594820 -0.778180 0.201557 0.787636 -0.514080 0.339633 -0.160679 0.360774 0.918708 -0.509986 -0.836235 0.201557 0.837178 -0.428699 0.339633 -0.197606 0.341947 0.918708 -0.420418 -0.884660 0.201557 0.877159 -0.339473 0.339633 -0.232037 0.319585 0.918708 -0.325384 -0.923851 0.201557 0.907907 -0.245671 0.339633 -0.264254 0.293506 0.918708 -0.226766 -0.952865 0.201557 0.928655 -0.149163 0.339633 -0.293560 0.264194 0.918708 -0.126621 -0.971258 0.201557 0.939122 -0.051951 0.339633 -0.319400 0.232291 0.918708 -0.024129 -0.979180 0.201557 0.939395 0.046762 0.339633 -0.341987 0.197536 0.918708 0.078629 -0.976316 0.201557 0.929320 0.144960 0.339633 -0.360807 0.160606 0.918708 0.180521 -0.962698 0.201557 0.909009 0.241561 0.339633 -0.375652 0.121906 0.918708 0.279486 -0.938756 0.201557 0.879021 0.334623 0.339633 -0.386278 0.082250 0.918708 0.376335 -0.904294 0.201557 0.839109 0.424907 0.339633 -0.392771 0.041312 0.918708 0.111145 -0.761853 -0.638143 -0.130418 -0.647750 0.750607 -0.985210 -0.000201 -0.171354 0.190381 -0.746008 -0.638143 -0.061811 -0.657851 0.750607 -0.979762 -0.103457 -0.171354 0.266797 -0.722214 -0.638143 0.006816 -0.660714 0.750607 -0.963729 -0.204609 -0.171354 0.341021 -0.690274 -0.638143 0.076026 -0.656361 0.750607 -0.936976 -0.304488 -0.171354 0.411488 -0.650731 -0.638143 0.144399 -0.644778 0.750607 -0.899904 -0.401013 -0.171354 0.476819 -0.604497 -0.638143 0.210554 -0.626303 0.750607 -0.853411 -0.492268 -0.171354 0.537549 -0.551194 -0.638143 0.275036 -0.600787 0.750607 -0.797118 -0.579000 -0.171354 0.592357 -0.491819 -0.638143 0.336488 -0.568652 0.750607 -0.732044 -0.659355 -0.171354 0.640641 -0.427027 -0.638143 0.394233 -0.530254 0.750607 -0.658908 -0.732447 -0.171354 0.681510 -0.358213 -0.638143 0.447150 -0.486462 0.750607 -0.579310 -0.796893 -0.171354 0.715300 -0.284813 -0.638143 0.495673 -0.436919 0.750607 -0.492600 -0.853220 -0.171354 0.741211 -0.208276 -0.638143 0.538735 -0.382562 0.750607 -0.400463 -0.900148 -0.171354 0.758828 -0.130204 -0.638143 0.575539 -0.324568 0.750607 -0.304853 -0.936858 -0.171354 0.768295 -0.049956 -0.638143 0.606386 -0.262460 0.750607 -0.204984 -0.963649 -0.171354 0.769300 0.030842 -0.638143 0.630554 -0.197461 0.750607 -0.102858 -0.979826 -0.171354 0.761921 0.110680 -0.638143 0.647670 -0.130814 0.750607 -0.000401 -0.985209 -0.171354 0.746124 0.189925 -0.638143 0.657814 -0.062213 0.750607 0.102858 -0.979826 -0.171354 0.722110 0.267078 -0.638143 0.660711 0.007073 0.750607 0.204984 -0.963649 -0.171354 0.690141 0.341289 -0.638143 0.656331 0.076281 0.750607 0.304853 -0.936858 -0.171354 0.650982 0.411091 -0.638143 0.644866 0.144005 0.750607 0.400463 -0.900148 -0.171354 0.604311 0.477054 -0.638143 0.626221 0.210798 0.750607 0.492600 -0.853220 -0.171354 0.550985 0.537763 -0.638143 0.600679 0.275270 0.750607 0.579310 -0.796893 -0.171354 0.492181 0.592057 -0.638143 0.568857 0.336140 0.750607 0.658908 -0.732447 -0.171354 0.427418 0.640380 -0.638143 0.530495 0.393909 0.750607 0.732044 -0.659355 -0.171354 0.357948 0.681650 -0.638143 0.486288 0.447340 0.750607 0.797118 -0.579000 -0.171354 0.284535 0.715411 -0.638143 0.436726 0.495842 0.750607 0.853411 -0.492268 -0.171354 0.208729 0.741084 -0.638143 0.382891 0.538501 0.750607 0.899904 -0.401013 -0.171354 0.129908 0.758879 -0.638143 0.324344 0.575665 0.750607 0.936976 -0.304488 -0.171354 0.049657 0.768315 -0.638143 0.262224 0.606488 0.750607 0.963729 -0.204609 -0.171354 -0.030372 0.769318 -0.638143 0.197846 0.630433 0.750607 0.979762 -0.103457 -0.171354 -0.110835 0.761898 -0.638143 0.130682 0.647697 0.750607 0.985210 -0.000201 -0.171354 -0.190077 0.746086 -0.638143 0.062079 0.657826 0.750607 0.979805 0.103058 -0.171354 -0.267225 0.722055 -0.638143 -0.007208 0.660710 0.750607 0.963607 0.205180 -0.171354 -0.340740 0.690413 -0.638143 -0.075759 0.656391 0.750607 0.937100 0.304106 -0.171354 -0.411223 0.650898 -0.638143 -0.144136 0.644836 0.750607 0.900067 0.400646 -0.171354 -0.477177 0.604214 -0.638143 -0.210926 0.626179 0.750607 0.853119 0.492773 -0.171354 -0.537875 0.550875 -0.638143 -0.275392 0.600623 0.750607 0.796774 0.579472 -0.171354 -0.592157 0.492060 -0.638143 -0.336256 0.568789 0.750607 0.732313 0.659057 -0.171354 -0.640467 0.427288 -0.638143 -0.394017 0.530414 0.750607 0.659206 0.732179 -0.171354 -0.681722 0.357809 -0.638143 -0.447439 0.486197 0.750607 0.578838 0.797236 -0.171354 -0.715184 0.285105 -0.638143 -0.495495 0.437120 0.750607 0.492947 0.853019 -0.171354 -0.741126 0.208578 -0.638143 -0.538579 0.382782 0.750607 0.400830 0.899985 -0.171354 -0.758905 0.129754 -0.638143 -0.575731 0.324227 0.750607 0.304297 0.937038 -0.171354 -0.768325 0.049501 -0.638143 -0.606542 0.262100 0.750607 0.204413 0.963770 -0.171354 -0.769312 -0.030529 -0.638143 -0.630474 0.197717 0.750607 0.103257 0.979784 -0.171354 -0.761876 -0.110990 -0.638143 -0.647723 0.130550 0.750607 0.000000 0.985210 -0.171354 -0.746047 -0.190229 -0.638143 -0.657839 0.061945 0.750607 -0.103257 0.979784 -0.171354 -0.722268 -0.266650 -0.638143 -0.660715 -0.006681 0.750607 -0.204413 0.963770 -0.171354 -0.690343 -0.340880 -0.638143 -0.656376 -0.075892 0.750607 -0.304297 0.937038 -0.171354 -0.650814 -0.411356 -0.638143 -0.644807 -0.144267 0.750607 -0.400830 0.899985 -0.171354 -0.604117 -0.477300 -0.638143 -0.626136 -0.211053 0.750607 -0.492947 0.853019 -0.171354 -0.551303 -0.537436 -0.638143 -0.600842 -0.274914 0.750607 -0.578838 0.797236 -0.171354 -0.491940 -0.592257 -0.638143 -0.568720 -0.336372 0.750607 -0.659206 0.732179 -0.171354 -0.427158 -0.640554 -0.638143 -0.530334 -0.394125 0.750607 -0.732313 0.659057 -0.171354 -0.358352 -0.681437 -0.638143 -0.486553 -0.447051 0.750607 -0.796774 0.579472 -0.171354 -0.284959 -0.715242 -0.638143 -0.437020 -0.495584 0.750607 -0.853119 0.492773 -0.171354 -0.208427 -0.741169 -0.638143 -0.382672 -0.538657 0.750607 -0.900067 0.400646 -0.171354 -0.129599 -0.758932 -0.638143 -0.324109 -0.575797 0.750607 -0.937100 0.304106 -0.171354 -0.050112 -0.768285 -0.638143 -0.262583 -0.606333 0.750607 -0.963607 0.205180 -0.171354 0.030685 -0.769306 -0.638143 -0.197589 -0.630514 0.750607 -0.979805 0.103058 -0.171354 0.548711 0.454599 0.701610 -0.280196 0.890696 -0.357981 -0.787659 -0.000160 0.616112 0.498044 0.509604 0.701610 -0.372004 0.856424 -0.357981 -0.783304 -0.082712 0.616112 0.442449 0.558554 0.701610 -0.458902 0.813178 -0.357981 -0.770485 -0.163582 0.616112 0.381472 0.601849 0.701610 -0.541602 0.760603 -0.357981 -0.749097 -0.243433 0.616112 0.316293 0.638516 0.701610 -0.618335 0.699651 -0.357981 -0.719458 -0.320603 0.616112 0.248298 0.667901 0.701610 -0.687627 0.631679 -0.357981 -0.682288 -0.393560 0.616112 0.176930 0.690246 0.701610 -0.750044 0.556132 -0.357981 -0.637283 -0.462901 0.616112 0.103613 0.704988 0.701610 -0.804200 0.474459 -0.357981 -0.585258 -0.527143 0.616112 0.029154 0.711965 0.701610 -0.849498 0.387560 -0.357981 -0.526786 -0.585579 0.616112 -0.044914 0.711144 0.701610 -0.885142 0.297278 -0.357981 -0.463149 -0.637103 0.616112 -0.119200 0.702520 0.701610 -0.911424 0.202871 -0.357981 -0.393825 -0.682135 0.616112 -0.192173 0.686158 0.701610 -0.927666 0.106230 -0.357981 -0.320164 -0.719654 0.616112 -0.262366 0.662501 0.701610 -0.933682 0.009353 -0.357981 -0.243725 -0.749003 0.616112 -0.330356 0.631355 0.701610 -0.929520 -0.088555 -0.357981 -0.163882 -0.770422 0.616112 -0.394707 0.593254 0.701610 -0.915120 -0.185488 -0.357981 -0.082233 -0.783355 0.616112 -0.454264 0.548988 0.701610 -0.890867 -0.279652 -0.357981 -0.000321 -0.787659 0.616112 -0.509300 0.498355 0.701610 -0.856651 -0.371481 -0.357981 0.082233 -0.783355 0.616112 -0.558726 0.442232 0.701610 -0.813000 -0.459218 -0.357981 0.163882 -0.770422 0.616112 -0.601998 0.381238 0.701610 -0.760393 -0.541897 -0.357981 0.243725 -0.749003 0.616112 -0.638322 0.316683 0.701610 -0.700028 -0.617908 -0.357981 0.320164 -0.719654 0.616112 -0.667998 0.248038 0.701610 -0.631412 -0.687873 -0.357981 0.393825 -0.682135 0.616112 -0.690315 0.176661 0.701610 -0.555840 -0.750261 -0.357981 0.463149 -0.637103 0.616112 -0.704925 0.104043 0.701610 -0.474951 -0.803910 -0.357981 0.526786 -0.585579 0.616112 -0.711947 0.029589 0.701610 -0.388079 -0.849261 -0.357981 0.585258 -0.527143 0.616112 -0.711127 -0.045191 0.701610 -0.296933 -0.885257 -0.357981 0.637283 -0.462901 0.616112 -0.702474 -0.119473 0.701610 -0.202517 -0.911502 -0.357981 0.682288 -0.393560 0.616112 -0.686276 -0.191753 0.701610 -0.106797 -0.927601 -0.357981 0.719458 -0.320603 0.616112 -0.662399 -0.262624 0.701610 -0.008990 -0.933686 -0.357981 0.749097 -0.243433 0.616112 -0.631226 -0.330602 0.701610 0.088917 -0.929486 -0.357981 0.770485 -0.163582 0.616112 -0.593495 -0.394345 0.701610 0.184929 -0.915233 -0.357981 0.783304 -0.082712 0.616112 -0.548896 -0.454375 0.701610 0.279833 -0.890810 -0.357981 0.787659 -0.000160 0.616112 -0.498251 -0.509401 0.701610 0.371655 -0.856576 -0.357981 0.783338 0.082393 0.616112 -0.442118 -0.558816 0.701610 0.459384 -0.812906 -0.357981 0.770388 0.164038 0.616112 -0.381717 -0.601694 0.701610 0.541292 -0.760824 -0.357981 0.749196 0.243128 0.616112 -0.316553 -0.638387 0.701610 0.618050 -0.699902 -0.357981 0.719589 0.320310 0.616112 -0.247902 -0.668048 0.701610 0.688001 -0.631272 -0.357981 0.682055 0.393964 0.616112 -0.176521 -0.690351 0.701610 0.750374 -0.555688 -0.357981 0.637008 0.463279 0.616112 -0.103900 -0.704946 0.701610 0.804007 -0.474787 -0.357981 0.585472 0.526905 0.616112 -0.029444 -0.711953 0.701610 0.849340 -0.387906 -0.357981 0.527024 0.585365 0.616112 0.045336 -0.711118 0.701610 0.885318 -0.296753 -0.357981 0.462771 0.637377 0.616112 0.118914 -0.702569 0.701610 0.911341 -0.203242 -0.357981 0.394103 0.681975 0.616112 0.191893 -0.686237 0.701610 0.927623 -0.106608 -0.357981 0.320457 0.719523 0.616112 0.262759 -0.662345 0.701610 0.933687 -0.008799 -0.357981 0.243281 0.749147 0.616112 0.330730 -0.631159 0.701610 0.929467 0.089106 -0.357981 0.163425 0.770519 0.616112 0.394466 -0.593414 0.701610 0.915195 0.185115 -0.357981 0.082552 0.783321 0.616112 0.454487 -0.548803 0.701610 0.890753 0.280015 -0.357981 0.000000 0.787659 0.616112 0.509503 -0.498147 0.701610 0.856500 0.371830 -0.357981 -0.082552 0.783321 0.616112 0.558464 -0.442563 0.701610 0.813272 0.458736 -0.357981 -0.163425 0.770519 0.616112 0.601772 -0.381595 0.701610 0.760714 0.541447 -0.357981 -0.243281 0.749147 0.616112 0.638451 -0.316423 0.701610 0.699777 0.618193 -0.357981 -0.320457 0.719523 0.616112 0.668099 -0.247766 0.701610 0.631132 0.688130 -0.357981 -0.394103 0.681975 0.616112 0.690210 -0.177070 0.701610 0.556285 0.749931 -0.357981 -0.462771 0.637377 0.616112 0.704967 -0.103756 0.701610 0.474623 0.804104 -0.357981 -0.527024 0.585365 0.616112 0.711959 -0.029299 0.701610 0.387733 0.849419 -0.357981 -0.585472 0.526905 0.616112 0.711154 0.044769 0.701610 0.297458 0.885081 -0.357981 -0.637008 0.463279 0.616112 0.702545 0.119057 0.701610 0.203057 0.911382 -0.357981 -0.682055 0.393964 0.616112 0.686198 0.192033 0.701610 0.106419 0.927645 -0.357981 -0.719589 0.320310 0.616112 0.662292 0.262894 0.701610 0.008609 0.933689 -0.357981 -0.749196 0.243128 0.616112 0.631422 0.330228 0.701610 -0.088366 0.929538 -0.357981 -0.770388 0.164038 0.616112 0.593334 0.394586 0.701610 -0.185302 0.915157 -0.357981 -0.783338 0.082393 0.616112 0.433280 -0.686076 0.584437 0.408412 0.727529 0.551271 -0.803410 -0.000164 0.595426 0.502800 -0.636887 0.584437 0.329913 0.766327 0.551271 -0.798968 -0.084366 0.595426 0.566200 -0.581249 0.584437 0.248576 0.796436 0.551271 -0.785893 -0.166853 0.595426 0.624001 -0.518706 0.584437 0.163735 0.818102 0.551271 -0.764077 -0.248301 0.595426 0.674928 -0.450449 0.584437 0.077090 0.830757 0.551271 -0.733845 -0.327015 0.595426 0.718044 -0.377949 0.584437 -0.009570 0.834271 0.551271 -0.695932 -0.401430 0.595426 0.753701 -0.300612 0.584437 -0.096954 0.828673 0.551271 -0.650027 -0.472158 0.595426 0.781056 -0.219963 0.584437 -0.183271 0.813948 0.551271 -0.596961 -0.537685 0.595426 0.799809 -0.136891 0.584437 -0.267570 0.790257 0.551271 -0.537320 -0.597289 0.595426 0.809698 -0.053121 0.584437 -0.348163 0.758210 0.551271 -0.472411 -0.649843 0.595426 0.810806 0.032033 0.584437 -0.425711 0.717544 0.551271 -0.401701 -0.695776 0.595426 0.802983 0.116835 0.584437 -0.498570 0.668975 0.551271 -0.326566 -0.734045 0.595426 0.786516 0.199564 0.584437 -0.565324 0.613603 0.551271 -0.248599 -0.763981 0.595426 0.761268 0.280897 0.584437 -0.626521 0.550973 0.551271 -0.167159 -0.785828 0.595426 0.727636 0.359137 0.584437 -0.680816 0.482275 0.551271 -0.083878 -0.799019 0.595426 0.686341 0.432861 0.584437 -0.727280 0.408857 0.551271 -0.000327 -0.803410 0.595426 0.637194 0.502411 0.584437 -0.766125 0.330381 0.551271 0.083878 -0.799019 0.595426 0.581029 0.566426 0.584437 -0.796532 0.248266 0.551271 0.167159 -0.785828 0.595426 0.518463 0.624203 0.584437 -0.818166 0.163416 0.551271 0.248599 -0.763981 0.595426 0.450862 0.674653 0.584437 -0.830710 0.077598 0.551271 0.326566 -0.734045 0.595426 0.377670 0.718191 0.584437 -0.834267 -0.009894 0.551271 0.401701 -0.695776 0.595426 0.300319 0.753818 0.584437 -0.828636 -0.097277 0.551271 0.472411 -0.649843 0.595426 0.220440 0.780922 0.584437 -0.814060 -0.182774 0.551271 0.537320 -0.597289 0.595426 0.137380 0.799725 0.584437 -0.790420 -0.267087 0.551271 0.596961 -0.537685 0.595426 0.052806 0.809719 0.584437 -0.758075 -0.348458 0.551271 0.650027 -0.472158 0.595426 -0.032349 0.810794 0.584437 -0.717379 -0.425990 0.551271 0.695932 -0.401430 0.595426 -0.116345 0.803055 0.584437 -0.669279 -0.498161 0.551271 0.733845 -0.327015 0.595426 -0.199870 0.786438 0.584437 -0.613383 -0.565563 0.551271 0.764077 -0.248301 0.595426 -0.281193 0.761159 0.584437 -0.550729 -0.626735 0.551271 0.785893 -0.166853 0.595426 -0.358692 0.727855 0.584437 -0.482691 -0.680521 0.551271 0.798968 -0.084366 0.595426 -0.433001 0.686253 0.584437 -0.408709 -0.727363 0.551271 0.803410 -0.000164 0.595426 -0.502540 0.637092 0.584437 -0.330225 -0.766193 0.551271 0.799002 0.084040 0.595426 -0.566545 0.580913 0.584437 -0.248104 -0.796583 0.551271 0.785794 0.167319 0.595426 -0.623790 0.518960 0.584437 -0.164068 -0.818035 0.551271 0.764178 0.247990 0.595426 -0.674745 0.450724 0.584437 -0.077428 -0.830725 0.551271 0.733978 0.326716 0.595426 -0.718268 0.377524 0.584437 0.010064 -0.834265 0.551271 0.695694 0.401842 0.595426 -0.753879 0.300165 0.584437 0.097446 -0.828616 0.551271 0.649746 0.472543 0.595426 -0.780967 0.220281 0.584437 0.182940 -0.814023 0.551271 0.597180 0.537442 0.595426 -0.799753 0.137217 0.584437 0.267248 -0.790366 0.551271 0.537563 0.597070 0.595426 -0.809729 0.052641 0.584437 0.348612 -0.758004 0.551271 0.472025 0.650123 0.595426 -0.810819 -0.031703 0.584437 0.425419 -0.717718 0.551271 0.401984 0.695612 0.595426 -0.803031 -0.116508 0.584437 0.498298 -0.669178 0.551271 0.326865 0.733912 0.595426 -0.786397 -0.200030 0.584437 0.565688 -0.613267 0.551271 0.248146 0.764128 0.595426 -0.761102 -0.281348 0.584437 0.626847 -0.550602 0.551271 0.166693 0.785927 0.595426 -0.727782 -0.358840 0.584437 0.680620 -0.482552 0.551271 0.084203 0.798985 0.595426 -0.686165 -0.433141 0.584437 0.727446 -0.408561 0.551271 0.000000 0.803410 0.595426 -0.636989 -0.502670 0.584437 0.766260 -0.330069 0.551271 -0.084203 0.798985 0.595426 -0.581364 -0.566082 0.584437 0.796385 -0.248738 0.551271 -0.166693 0.785927 0.595426 -0.518833 -0.623895 0.584437 0.818069 -0.163901 0.551271 -0.248146 0.764128 0.595426 -0.450587 -0.674837 0.584437 0.830741 -0.077259 0.551271 -0.326865 0.733912 0.595426 -0.377378 -0.718345 0.584437 0.834263 0.010234 0.551271 -0.401984 0.695612 0.595426 -0.300765 -0.753640 0.584437 0.828693 0.096786 0.551271 -0.472025 0.650123 0.595426 -0.220122 -0.781012 0.584437 0.813985 0.183106 0.551271 -0.537563 0.597070 0.595426 -0.137054 -0.799781 0.584437 0.790312 0.267409 0.551271 -0.597180 0.537442 0.595426 -0.053286 -0.809687 0.584437 0.758281 0.348008 0.551271 -0.649746 0.472543 0.595426 0.031868 -0.810813 0.584437 0.717631 0.425565 0.551271 -0.695694 0.401842 0.595426 0.116672 -0.803007 0.584437 0.669077 0.498434 0.551271 -0.733978 0.326716 0.595426 0.200190 -0.786357 0.584437 0.613152 0.565813 0.551271 -0.764178 0.247990 0.595426 0.280742 -0.761326 0.584437 0.551101 0.626409 0.551271 -0.785794 0.167319 0.595426 0.358988 -0.727709 0.584437 0.482413 0.680718 0.551271 -0.799002 0.084040 0.595426 0.575653 0.800418 -0.167196 0.768679 -0.599442 -0.223161 -0.278846 -0.000057 -0.960336 0.488593 0.856342 -0.167196 0.827272 -0.515578 -0.223161 -0.277305 -0.029282 -0.960336 0.397054 0.902437 -0.167196 0.876325 -0.426911 -0.223161 -0.272767 -0.057911 -0.960336 0.300286 0.939081 -0.167196 0.916242 -0.332715 -0.223161 -0.265195 -0.086180 -0.960336 0.200209 0.965382 -0.167196 0.946067 -0.234853 -0.223161 -0.254702 -0.113500 -0.960336 0.098909 0.980950 -0.167196 0.965336 -0.135371 -0.223161 -0.241543 -0.139328 -0.960336 -0.004446 0.985914 -0.167196 0.974207 -0.033451 -0.223161 -0.225610 -0.163876 -0.960336 -0.107753 0.980018 -0.167196 0.972348 0.068837 -0.223161 -0.207192 -0.186619 -0.960336 -0.209872 0.963327 -0.167196 0.959778 0.170367 -0.223161 -0.186492 -0.207306 -0.960336 -0.308744 0.936335 -0.167196 0.936906 0.269084 -0.223161 -0.163964 -0.225547 -0.960336 -0.405178 0.898819 -0.167196 0.903544 0.365796 -0.223161 -0.139422 -0.241489 -0.960336 -0.497149 0.851404 -0.167196 0.860230 0.458479 -0.223161 -0.113344 -0.254771 -0.960336 -0.582849 0.795193 -0.167196 0.807986 0.545305 -0.223161 -0.086283 -0.265161 -0.960336 -0.662981 0.729727 -0.167196 0.746384 0.626984 -0.223161 -0.058017 -0.272744 -0.960336 -0.735811 0.656223 -0.167196 0.676561 0.701758 -0.223161 -0.029112 -0.277323 -0.960336 -0.800066 0.576142 -0.167196 0.599912 0.768313 -0.223161 -0.000114 -0.278846 -0.960336 -0.856044 0.489117 -0.167196 0.516083 0.826957 -0.223161 0.029112 -0.277323 -0.960336 -0.902592 0.396703 -0.167196 0.426570 0.876491 -0.223161 0.058017 -0.272744 -0.960336 -0.939198 0.299920 -0.167196 0.332358 0.916372 -0.223161 0.086283 -0.265161 -0.960336 -0.965259 0.200799 -0.167196 0.235432 0.945923 -0.223161 0.113344 -0.254771 -0.960336 -0.980988 0.098527 -0.167196 0.134995 0.965389 -0.223161 0.139422 -0.241489 -0.960336 -0.985912 -0.004830 -0.167196 0.033072 0.974220 -0.223161 0.163964 -0.225547 -0.960336 -0.980083 -0.107154 -0.167196 -0.068243 0.972390 -0.223161 0.186492 -0.207306 -0.960336 -0.963455 -0.209284 -0.167196 -0.169781 0.959882 -0.223161 0.207192 -0.186619 -0.960336 -0.936215 -0.309108 -0.167196 -0.269448 0.936801 -0.223161 0.225610 -0.163876 -0.960336 -0.898662 -0.405527 -0.167196 -0.366147 0.903402 -0.223161 0.241543 -0.139328 -0.960336 -0.851707 -0.496629 -0.167196 -0.457954 0.860510 -0.223161 0.254702 -0.113500 -0.960336 -0.794966 -0.583159 -0.167196 -0.545619 0.807774 -0.223161 0.265195 -0.086180 -0.960336 -0.729469 -0.663265 -0.167196 -0.627275 0.746140 -0.223161 0.272767 -0.057911 -0.960336 -0.656672 -0.735410 -0.167196 -0.701344 0.676990 -0.223161 0.277305 -0.029282 -0.960336 -0.575979 -0.800183 -0.167196 -0.768435 0.599756 -0.223161 0.278846 -0.000057 -0.960336 -0.488942 -0.856143 -0.167196 -0.827062 0.515915 -0.223161 0.277317 0.029169 -0.960336 -0.396519 -0.902673 -0.167196 -0.876578 0.426392 -0.223161 0.272732 0.058073 -0.960336 -0.300668 -0.938959 -0.167196 -0.916107 0.333088 -0.223161 0.265230 0.086072 -0.960336 -0.200603 -0.965300 -0.167196 -0.945971 0.235239 -0.223161 0.254748 0.113396 -0.960336 -0.098328 -0.981008 -0.167196 -0.965416 0.134799 -0.223161 0.241461 0.139471 -0.960336 0.005031 -0.985911 -0.167196 -0.974227 0.032874 -0.223161 0.225513 0.164010 -0.960336 0.107354 -0.980062 -0.167196 -0.972376 -0.068441 -0.223161 0.207268 0.186535 -0.960336 0.209480 -0.963413 -0.167196 -0.959848 -0.169976 -0.223161 0.186577 0.207230 -0.960336 0.309299 -0.936152 -0.167196 -0.936747 -0.269639 -0.223161 0.163830 0.225644 -0.960336 0.404812 -0.898984 -0.167196 -0.903693 -0.365428 -0.223161 0.139520 0.241432 -0.960336 0.496802 -0.851606 -0.167196 -0.860417 -0.458129 -0.223161 0.113448 0.254725 -0.960336 0.583321 -0.794847 -0.167196 -0.807663 -0.545784 -0.223161 0.086126 0.265212 -0.960336 0.663414 -0.729334 -0.167196 -0.746013 -0.627427 -0.223161 0.057856 0.272778 -0.960336 0.735543 -0.656522 -0.167196 -0.676847 -0.701482 -0.223161 0.029225 0.277311 -0.960336 0.800301 -0.575816 -0.167196 -0.599599 -0.768557 -0.223161 0.000000 0.278846 -0.960336 0.856243 -0.488768 -0.167196 -0.515746 -0.827167 -0.223161 -0.029225 0.277311 -0.960336 0.902357 -0.397238 -0.167196 -0.427089 -0.876238 -0.223161 -0.057856 0.272778 -0.960336 0.939020 -0.300477 -0.167196 -0.332901 -0.916175 -0.223161 -0.086126 0.265212 -0.960336 0.965341 -0.200406 -0.167196 -0.235046 -0.946019 -0.223161 -0.113448 0.254725 -0.960336 0.981028 -0.098128 -0.167196 -0.134602 -0.965444 -0.223161 -0.139520 0.241432 -0.960336 0.985915 0.004246 -0.167196 -0.033650 -0.974201 -0.223161 -0.163830 0.225644 -0.960336 0.980040 0.107553 -0.167196 0.068639 -0.972362 -0.223161 -0.186577 0.207230 -0.960336 0.963370 0.209676 -0.167196 0.170171 -0.959813 -0.223161 -0.207268 0.186535 -0.960336 0.936398 0.308553 -0.167196 0.268893 -0.936961 -0.223161 -0.225513 0.164010 -0.960336 0.898902 0.404995 -0.167196 0.365612 -0.903619 -0.223161 -0.241461 0.139471 -0.960336 0.851505 0.496976 -0.167196 0.458304 -0.860323 -0.223161 -0.254748 0.113396 -0.960336 0.794729 0.583482 -0.167196 0.545948 -0.807552 -0.223161 -0.265230 0.086072 -0.960336 0.729862 0.662833 -0.167196 0.626832 -0.746512 -0.223161 -0.272732 0.058073 -0.960336 0.656373 0.735677 -0.167196 0.701620 -0.676704 -0.223161 -0.277317 0.029169 -0.960336 0.416478 0.501122 -0.758567 0.241354 -0.865377 -0.439171 -0.876524 -0.000179 -0.481358 0.361663 0.542012 -0.758567 0.330723 -0.835315 -0.439171 -0.871678 -0.092044 -0.481358 0.303441 0.576628 -0.758567 0.415652 -0.796469 -0.439171 -0.857413 -0.182037 -0.481358 0.241335 0.605255 -0.758567 0.496839 -0.748519 -0.439171 -0.833612 -0.270898 -0.481358 0.176571 0.627216 -0.758567 0.572553 -0.692324 -0.439171 -0.800629 -0.356774 -0.481358 0.110504 0.642157 -0.758567 0.641331 -0.629145 -0.439171 -0.759265 -0.437962 -0.481358 0.042593 0.650202 -0.758567 0.703738 -0.558464 -0.439171 -0.709182 -0.515126 -0.481358 -0.025787 0.651085 -0.758567 0.758393 -0.481632 -0.439171 -0.651287 -0.586617 -0.481358 -0.093884 0.644796 -0.758567 0.804695 -0.399494 -0.439171 -0.586219 -0.651645 -0.481358 -0.160315 0.631566 -0.758567 0.841819 -0.313798 -0.439171 -0.515402 -0.708982 -0.481358 -0.225624 0.611286 -0.758567 0.870071 -0.223841 -0.439171 -0.438257 -0.759095 -0.481358 -0.288449 0.584272 -0.758567 0.888740 -0.131419 -0.439171 -0.356285 -0.800847 -0.481358 -0.347545 0.551171 -0.758567 0.897581 -0.038446 -0.439171 -0.271222 -0.833506 -0.481358 -0.403398 0.511710 -0.758567 0.896667 0.055838 -0.439171 -0.182371 -0.857342 -0.481358 -0.454807 0.466613 -0.758567 0.885876 0.149508 -0.439171 -0.091511 -0.871734 -0.481358 -0.500867 0.416784 -0.758567 0.865524 0.240826 -0.439171 -0.000357 -0.876524 -0.481358 -0.541790 0.361994 -0.758567 0.835517 0.330212 -0.439171 0.091511 -0.871734 -0.481358 -0.576746 0.303217 -0.758567 0.796307 0.415962 -0.439171 0.182371 -0.857342 -0.481358 -0.605349 0.241100 -0.758567 0.748325 0.497130 -0.439171 0.271222 -0.833506 -0.481358 -0.627108 0.176954 -0.758567 0.692674 0.572129 -0.439171 0.356285 -0.800847 -0.481358 -0.642200 0.110254 -0.758567 0.628896 0.641576 -0.439171 0.438257 -0.759095 -0.481358 -0.650218 0.042340 -0.758567 0.558190 0.703955 -0.439171 0.515402 -0.708982 -0.481358 -0.651101 -0.025390 -0.758567 0.482095 0.758099 -0.439171 0.586219 -0.651645 -0.481358 -0.644854 -0.093490 -0.758567 0.399986 0.804450 -0.439171 0.651287 -0.586617 -0.481358 -0.631504 -0.160560 -0.758567 0.313471 0.841941 -0.439171 0.709182 -0.515126 -0.481358 -0.611198 -0.225862 -0.758567 0.223503 0.870158 -0.439171 0.759265 -0.437962 -0.481358 -0.584448 -0.288092 -0.758567 0.131962 0.888659 -0.439171 0.800629 -0.356774 -0.481358 -0.551035 -0.347760 -0.758567 0.038097 0.897596 -0.439171 0.833612 -0.270898 -0.481358 -0.511553 -0.403597 -0.758567 -0.056187 0.896645 -0.439171 0.857413 -0.182037 -0.481358 -0.466890 -0.454522 -0.758567 -0.148967 0.885967 -0.439171 0.871678 -0.092044 -0.481358 -0.416682 -0.500952 -0.758567 -0.241002 0.865475 -0.439171 0.876524 -0.000179 -0.481358 -0.361884 -0.541864 -0.758567 -0.330383 0.835450 -0.439171 0.871715 0.091688 -0.481358 -0.303099 -0.576808 -0.758567 -0.416124 0.796222 -0.439171 0.857305 0.182546 -0.481358 -0.241582 -0.605157 -0.758567 -0.496534 0.748721 -0.439171 0.833722 0.270558 -0.481358 -0.176827 -0.627144 -0.758567 -0.572270 0.692557 -0.439171 0.800774 0.356448 -0.481358 -0.110124 -0.642222 -0.758567 -0.641704 0.628765 -0.439171 0.759005 0.438412 -0.481358 -0.042208 -0.650227 -0.758567 -0.704069 0.558047 -0.439171 0.708876 0.515547 -0.481358 0.025522 -0.651095 -0.758567 -0.758197 0.481941 -0.439171 0.651526 0.586351 -0.481358 0.093621 -0.644835 -0.758567 -0.804532 0.399822 -0.439171 0.586484 0.651407 -0.481358 0.160689 -0.631471 -0.758567 -0.842005 0.313299 -0.439171 0.514982 0.709287 -0.481358 0.225375 -0.611378 -0.758567 -0.869980 0.224196 -0.439171 0.438567 0.758916 -0.481358 0.288211 -0.584390 -0.758567 -0.888686 0.131781 -0.439171 0.356611 0.800701 -0.481358 0.347872 -0.550965 -0.758567 -0.897603 0.037914 -0.439171 0.270728 0.833667 -0.481358 0.403701 -0.511471 -0.758567 -0.896633 -0.056370 -0.439171 0.181863 0.857450 -0.481358 0.454617 -0.466798 -0.758567 -0.885937 -0.149147 -0.439171 0.091866 0.871697 -0.481358 0.501037 -0.416580 -0.758567 -0.865426 -0.241178 -0.439171 0.000000 0.876524 -0.481358 0.541938 -0.361773 -0.758567 -0.835383 -0.330553 -0.439171 -0.091866 0.871697 -0.481358 0.576566 -0.303559 -0.758567 -0.796553 -0.415490 -0.439171 -0.181863 0.857450 -0.481358 0.605206 -0.241459 -0.758567 -0.748620 -0.496686 -0.439171 -0.270728 0.833667 -0.481358 0.627180 -0.176699 -0.758567 -0.692441 -0.572411 -0.439171 -0.356611 0.800701 -0.481358 0.642245 -0.109993 -0.758567 -0.628634 -0.641832 -0.439171 -0.438567 0.758916 -0.481358 0.650193 -0.042725 -0.758567 -0.558608 -0.703624 -0.439171 -0.514982 0.709287 -0.481358 0.651090 0.025655 -0.758567 -0.481786 -0.758295 -0.439171 -0.586484 0.651407 -0.481358 0.644816 0.093753 -0.758567 -0.399658 -0.804613 -0.439171 -0.651526 0.586351 -0.481358 0.631599 0.160186 -0.758567 -0.313970 -0.841755 -0.439171 -0.708876 0.515547 -0.481358 0.611332 0.225500 -0.758567 -0.224018 -0.870026 -0.439171 -0.759005 0.438412 -0.481358 0.584331 0.288330 -0.758567 -0.131600 -0.888713 -0.439171 -0.800774 0.356448 -0.481358 0.550894 0.347984 -0.758567 -0.037732 -0.897611 -0.439171 -0.833722 0.270558 -0.481358 0.511792 0.403293 -0.758567 0.055656 -0.896678 -0.439171 -0.857305 0.182546 -0.481358 0.466705 0.454712 -0.758567 0.149327 -0.885907 -0.439171 -0.871715 0.091688 -0.481358 0.291438 -0.407887 0.865270 0.129996 0.913032 0.386617 -0.947716 -0.000193 0.319116 0.332582 -0.375096 0.865270 0.033588 0.921628 0.386617 -0.942476 -0.099519 0.319116 0.369725 -0.338543 0.865270 -0.062270 0.920136 0.386617 -0.927052 -0.196823 0.319116 0.403170 -0.297929 0.865270 -0.158364 0.908542 0.386617 -0.901318 -0.292900 0.319116 0.432175 -0.254033 0.865270 -0.252714 0.886940 0.386617 -0.865656 -0.385752 0.319116 0.456212 -0.207795 0.865270 -0.343424 0.855913 0.386617 -0.820933 -0.473534 0.319116 0.475477 -0.158836 0.865270 -0.431238 0.815206 0.386617 -0.766782 -0.556965 0.319116 0.489506 -0.108128 0.865270 -0.514302 0.765519 0.386617 -0.704185 -0.634262 0.319116 0.498143 -0.056229 0.865270 -0.591702 0.707401 0.386617 -0.633832 -0.704573 0.319116 0.501288 -0.004212 0.865270 -0.661942 0.642152 0.386617 -0.557263 -0.766565 0.319116 0.498969 0.048350 0.865270 -0.725599 0.569239 0.386617 -0.473853 -0.820749 0.319116 0.491153 0.100379 0.865270 -0.781263 0.490056 0.386617 -0.385223 -0.865892 0.319116 0.478079 0.150825 0.865270 -0.827916 0.406304 0.386617 -0.293251 -0.901204 0.319116 0.459639 0.200100 0.865270 -0.865939 0.317295 0.386617 -0.197183 -0.926976 0.319116 0.436135 0.247172 0.865270 -0.894425 0.224790 0.386617 -0.098944 -0.942537 0.319116 0.408065 0.291188 0.865270 -0.912953 0.130554 0.386617 -0.000386 -0.947716 0.319116 0.375299 0.332353 0.865270 -0.921608 0.034151 0.386617 0.098944 -0.942537 0.319116 0.338399 0.369856 0.865270 -0.920111 -0.062628 0.386617 0.197183 -0.926976 0.319116 0.297772 0.403286 0.865270 -0.908480 -0.158718 0.386617 0.293251 -0.901204 0.319116 0.254297 0.432020 0.865270 -0.887094 -0.252172 0.386617 0.385223 -0.865892 0.319116 0.207618 0.456292 0.865270 -0.855779 -0.343757 0.386617 0.473853 -0.820749 0.319116 0.158651 0.475539 0.865270 -0.815038 -0.431555 0.386617 0.557263 -0.766565 0.319116 0.108427 0.489440 0.865270 -0.765833 -0.513835 0.386617 0.633832 -0.704573 0.319116 0.056533 0.498108 0.865270 -0.707762 -0.591270 0.386617 0.704185 -0.634262 0.319116 0.004017 0.501290 0.865270 -0.641895 -0.662192 0.386617 0.766782 -0.556965 0.319116 -0.048544 0.498950 0.865270 -0.568957 -0.725820 0.386617 0.820933 -0.473534 0.319116 -0.100079 0.491215 0.865270 -0.490534 -0.780963 0.386617 0.865656 -0.385752 0.319116 -0.151011 0.478020 0.865270 -0.405982 -0.828074 0.386617 0.901318 -0.292900 0.319116 -0.200279 0.459561 0.865270 -0.316958 -0.866063 0.386617 0.927052 -0.196823 0.319116 -0.246905 0.436286 0.865270 -0.225337 -0.894288 0.386617 0.942476 -0.099519 0.319116 -0.291271 0.408006 0.865270 -0.130368 -0.912979 0.386617 0.947716 -0.000193 0.319116 -0.332429 0.375231 0.865270 -0.033963 -0.921615 0.386617 0.942517 0.099135 0.319116 -0.369925 0.338324 0.865270 0.062816 -0.920098 0.386617 0.926935 0.197372 0.319116 -0.403049 0.298093 0.865270 0.157994 -0.908606 0.386617 0.901437 0.292533 0.319116 -0.432071 0.254209 0.865270 0.252352 -0.887043 0.386617 0.865813 0.385399 0.319116 -0.456335 0.207525 0.865270 0.343931 -0.855709 0.386617 0.820652 0.474020 0.319116 -0.475571 0.158555 0.865270 0.431721 -0.814950 0.386617 0.766452 0.557420 0.319116 -0.489462 0.108328 0.865270 0.513991 -0.765729 0.386617 0.704443 0.633975 0.319116 -0.498120 0.056432 0.865270 0.591414 -0.707642 0.386617 0.634119 0.704314 0.319116 -0.501291 0.003914 0.865270 0.662323 -0.641760 0.386617 0.556809 0.766896 0.319116 -0.498989 -0.048147 0.865270 0.725367 -0.569535 0.386617 0.474187 0.820556 0.319116 -0.491194 -0.100179 0.865270 0.781063 -0.490375 0.386617 0.385575 0.865735 0.319116 -0.477990 -0.151108 0.865270 0.828156 -0.405813 0.386617 0.292717 0.901378 0.319116 -0.459520 -0.200373 0.865270 0.866127 -0.316781 0.386617 0.196634 0.927092 0.319116 -0.436236 -0.246994 0.865270 0.894333 -0.225155 0.386617 0.099327 0.942496 0.319116 -0.407946 -0.291355 0.865270 0.913006 -0.130182 0.386617 0.000000 0.947716 0.319116 -0.375164 -0.332506 0.865270 0.921622 -0.033776 0.386617 -0.099327 0.942496 0.319116 -0.338618 -0.369656 0.865270 0.920148 0.062083 0.386617 -0.196634 0.927092 0.319116 -0.298011 -0.403110 0.865270 0.908574 0.158179 0.386617 -0.292717 0.901378 0.319116 -0.254121 -0.432123 0.865270 0.886992 0.252533 0.386617 -0.385575 0.865735 0.319116 -0.207432 -0.456377 0.865270 0.855639 0.344105 0.386617 -0.474187 0.820556 0.319116 -0.158933 -0.475445 0.865270 0.815294 0.431072 0.386617 -0.556809 0.766896 0.319116 -0.108228 -0.489484 0.865270 0.765624 0.514147 0.386617 -0.634119 0.704314 0.319116 -0.056330 -0.498131 0.865270 0.707521 0.591558 0.386617 -0.704443 0.633975 0.319116 -0.004314 -0.501288 0.865270 0.642287 0.661811 0.386617 -0.766452 0.557420 0.319116 0.048249 -0.498979 0.865270 0.569387 0.725483 0.386617 -0.820652 0.474020 0.319116 0.100279 -0.491174 0.865270 0.490216 0.781163 0.386617 -0.865813 0.385399 0.319116 0.151206 -0.477959 0.865270 0.405644 0.828239 0.386617 -0.901437 0.292533 0.319116 0.200007 -0.459679 0.865270 0.317471 0.865875 0.386617 -0.926935 0.197372 0.319116 0.247083 -0.436185 0.865270 0.224973 0.894379 0.386617 -0.942517 0.099135 0.319116 0.088895 0.943769 0.318430 -0.254338 0.330606 -0.908852 -0.963021 -0.000196 0.269425 -0.010508 0.947888 0.318430 -0.287587 0.302128 -0.908852 -0.957697 -0.101127 0.269425 -0.108854 0.941676 0.318430 -0.317398 0.270641 -0.908852 -0.942024 -0.200001 0.269425 -0.206949 0.925081 0.318430 -0.344015 0.235885 -0.908852 -0.915874 -0.297631 0.269425 -0.302764 0.898296 0.318430 -0.366843 0.198530 -0.908852 -0.879636 -0.391982 0.269425 -0.394383 0.862012 0.318430 -0.385470 0.159375 -0.908852 -0.834191 -0.481181 0.269425 -0.482556 0.815930 0.318430 -0.400051 0.118097 -0.908852 -0.779166 -0.565960 0.269425 -0.565413 0.760861 0.318430 -0.410225 0.075518 -0.908852 -0.715558 -0.644505 0.269425 -0.642043 0.697412 0.318430 -0.415881 0.032108 -0.908852 -0.644068 -0.715951 0.269425 -0.710974 0.626991 0.318430 -0.416967 -0.011239 -0.908852 -0.566263 -0.778945 0.269425 -0.772772 0.549023 0.318430 -0.413493 -0.054879 -0.908852 -0.481505 -0.834004 0.269425 -0.826057 0.465007 0.318430 -0.405464 -0.097913 -0.908852 -0.391444 -0.879876 0.269425 -0.869868 0.376739 0.318430 -0.393108 -0.139476 -0.908852 -0.297987 -0.915759 0.269425 -0.904562 0.283496 0.318430 -0.376325 -0.179909 -0.908852 -0.200368 -0.941946 0.269425 -0.929293 0.187130 0.318430 -0.355397 -0.218360 -0.908852 -0.100541 -0.957758 0.269425 -0.943714 0.089472 0.318430 -0.330761 -0.254136 -0.908852 -0.000392 -0.963021 0.269425 -0.947894 -0.009929 0.318430 -0.302304 -0.287402 -0.908852 0.100541 -0.957758 0.269425 -0.941633 -0.109220 0.318430 -0.270517 -0.317503 -0.908852 0.200368 -0.941946 0.269425 -0.925000 -0.207309 0.318430 -0.235751 -0.344107 -0.908852 0.297987 -0.915759 0.269425 -0.898481 -0.302215 0.318430 -0.198754 -0.366721 -0.908852 0.391444 -0.879876 0.269425 -0.861858 -0.394718 0.318430 -0.159225 -0.385532 -0.908852 0.481505 -0.834004 0.269425 -0.815742 -0.482873 0.318430 -0.117941 -0.400097 -0.908852 0.566263 -0.778945 0.269425 -0.761207 -0.564949 0.318430 -0.075769 -0.410179 -0.908852 0.644068 -0.715951 0.269425 -0.697804 -0.641617 0.318430 -0.032362 -0.415861 -0.908852 0.715558 -0.644505 0.269425 -0.626714 -0.711218 0.318430 0.011402 -0.416963 -0.908852 0.779166 -0.565960 0.269425 -0.548722 -0.772985 0.318430 0.055039 -0.413471 -0.908852 0.834191 -0.481181 0.269425 -0.465512 -0.825773 0.318430 0.097666 -0.405523 -0.908852 0.879636 -0.391982 0.269425 -0.376401 -0.870014 0.318430 0.139629 -0.393054 -0.908852 0.915874 -0.297631 0.269425 -0.283144 -0.904672 0.318430 0.180055 -0.376255 -0.908852 0.942024 -0.200001 0.269425 -0.187698 -0.929178 0.318430 0.218142 -0.355530 -0.908852 0.957697 -0.101127 0.269425 -0.089280 -0.943733 0.318430 0.254203 -0.330709 -0.908852 0.963021 -0.000196 0.269425 0.010122 -0.947892 0.318430 0.287464 -0.302245 -0.908852 0.957738 0.100737 0.269425 0.109412 -0.941611 0.318430 0.317558 -0.270453 -0.908852 0.941905 0.200560 0.269425 0.206572 -0.925165 0.318430 0.343919 -0.236025 -0.908852 0.915996 0.297258 0.269425 0.302398 -0.898419 0.318430 0.366762 -0.198680 -0.908852 0.879796 0.391623 0.269425 0.394894 -0.861778 0.318430 0.385565 -0.159146 -0.908852 0.833906 0.481675 0.269425 0.483039 -0.815644 0.318430 0.400121 -0.117860 -0.908852 0.778830 0.566422 0.269425 0.565104 -0.761092 0.318430 0.410194 -0.075685 -0.908852 0.715820 0.644214 0.269425 0.641759 -0.697673 0.318430 0.415868 -0.032277 -0.908852 0.644360 0.715689 0.269425 0.711346 -0.626570 0.318430 0.416960 0.011486 -0.908852 0.565802 0.779281 0.269425 0.772548 -0.549337 0.318430 0.413515 0.054710 -0.908852 0.481845 0.833808 0.269425 0.825868 -0.465343 0.318430 0.405503 0.097748 -0.908852 0.391802 0.879716 0.269425 0.870091 -0.376224 0.318430 0.393025 0.139709 -0.908852 0.297444 0.915935 0.269425 0.904730 -0.282960 0.318430 0.376218 0.180132 -0.908852 0.199809 0.942065 0.269425 0.929216 -0.187509 0.318430 0.355486 0.218215 -0.908852 0.100932 0.957717 0.269425 0.943751 -0.089087 0.318430 0.330657 0.254270 -0.908852 0.000000 0.963021 0.269425 0.947890 0.010315 0.318430 0.302187 0.287525 -0.908852 -0.100932 0.957717 0.269425 0.941698 0.108662 0.318430 0.270705 0.317343 -0.908852 -0.199809 0.942065 0.269425 0.925123 0.206760 0.318430 0.235955 0.343967 -0.908852 -0.297444 0.915935 0.269425 0.898358 0.302581 0.318430 0.198605 0.366802 -0.908852 -0.391802 0.879716 0.269425 0.861698 0.395069 0.318430 0.159068 0.385597 -0.908852 -0.481845 0.833808 0.269425 0.816028 0.482390 0.318430 0.118178 0.400027 -0.908852 -0.565802 0.779281 0.269425 0.760976 0.565259 0.318430 0.075602 0.410210 -0.908852 -0.644360 0.715689 0.269425 0.697542 0.641901 0.318430 0.032193 0.415874 -0.908852 -0.715820 0.644214 0.269425 0.627136 0.710847 0.318430 -0.011154 0.416969 -0.908852 -0.778830 0.566422 0.269425 0.549180 0.772660 0.318430 -0.054794 0.413504 -0.908852 -0.833906 0.481675 0.269425 0.465175 0.825963 0.318430 -0.097831 0.405484 -0.908852 -0.879796 0.391623 0.269425 0.376047 0.870167 0.318430 -0.139789 0.392997 -0.908852 -0.915996 0.297258 0.269425 0.283680 0.904504 0.318430 -0.179832 0.376362 -0.908852 -0.941905 0.200560 0.269425 0.187319 0.929254 0.318430 -0.218287 0.355441 -0.908852 -0.957738 0.100737 0.269425 -0.283731 -0.399771 -0.871596 0.123947 -0.916615 0.380071 -0.950859 -0.000194 0.309623 -0.240270 -0.427306 -0.871596 0.219332 -0.898576 0.380071 -0.945602 -0.099849 0.309623 -0.194612 -0.449940 -0.871596 0.311431 -0.870952 0.380071 -0.930128 -0.197475 0.309623 -0.146383 -0.467859 -0.871596 0.400997 -0.833515 0.380071 -0.904308 -0.293872 0.309623 -0.096542 -0.480624 -0.871596 0.486147 -0.786897 0.380071 -0.868528 -0.387031 0.309623 -0.046125 -0.488050 -0.871596 0.565211 -0.732177 0.380071 -0.823656 -0.475104 0.309623 0.005280 -0.490196 -0.871596 0.638835 -0.668907 0.380071 -0.769326 -0.558813 0.309623 0.056627 -0.486943 -0.871596 0.705423 -0.598268 0.380071 -0.706521 -0.636366 0.309623 0.107350 -0.478326 -0.871596 0.764241 -0.521040 0.380071 -0.635934 -0.706910 0.309623 0.156426 -0.464598 -0.871596 0.814202 -0.438887 0.380071 -0.559112 -0.769108 0.309623 0.204258 -0.445644 -0.871596 0.855716 -0.351135 0.380071 -0.475425 -0.823471 0.309623 0.249840 -0.421782 -0.871596 0.887805 -0.259516 0.380071 -0.386501 -0.868764 0.309623 0.292276 -0.393567 -0.871596 0.909949 -0.165949 0.380071 -0.294224 -0.904194 0.309623 0.331915 -0.360767 -0.871596 0.922330 -0.069666 0.380071 -0.197837 -0.930051 0.309623 0.367898 -0.323993 -0.871596 0.924552 0.027385 0.380071 -0.099272 -0.945663 0.309623 0.399597 -0.283976 -0.871596 0.916691 0.123387 0.380071 -0.000387 -0.950859 0.309623 0.427159 -0.240531 -0.871596 0.898710 0.218783 0.380071 0.099272 -0.945663 0.309623 0.450016 -0.194437 -0.871596 0.870831 0.311769 0.380071 0.197837 -0.930051 0.309623 0.467916 -0.146201 -0.871596 0.833359 0.401322 0.380071 0.294224 -0.904194 0.309623 0.480565 -0.096836 -0.871596 0.787194 0.485666 0.380071 0.386501 -0.868764 0.309623 0.488068 -0.045936 -0.871596 0.731957 0.565495 0.380071 0.475425 -0.823471 0.309623 0.490194 0.005470 -0.871596 0.668658 0.639095 0.380071 0.559112 -0.769108 0.309623 0.486978 0.056329 -0.871596 0.598699 0.705057 0.380071 0.635934 -0.706910 0.309623 0.478392 0.107058 -0.871596 0.521507 0.763922 0.380071 0.706521 -0.636366 0.309623 0.464537 0.156607 -0.871596 0.438570 0.814372 0.380071 0.769326 -0.558813 0.309623 0.445565 0.204431 -0.871596 0.350803 0.855853 0.380071 0.823656 -0.475104 0.309623 0.421935 0.249582 -0.871596 0.260059 0.887646 0.380071 0.868528 -0.387031 0.309623 0.393453 0.292429 -0.871596 0.165595 0.910013 0.380071 0.904308 -0.293872 0.309623 0.360637 0.332055 -0.871596 0.069307 0.922357 0.380071 0.930128 -0.197475 0.309623 0.324217 0.367700 -0.871596 -0.026820 0.924568 0.380071 0.945602 -0.099849 0.309623 0.283894 0.399655 -0.871596 -0.123574 0.916666 0.380071 0.950859 -0.000194 0.309623 0.240444 0.427208 -0.871596 -0.218966 0.898666 0.380071 0.945643 0.099464 0.309623 0.194345 0.450056 -0.871596 -0.311947 0.870767 0.380071 0.930010 0.198027 0.309623 0.146574 0.467799 -0.871596 -0.400658 0.833678 0.380071 0.904428 0.293504 0.309623 0.096738 0.480585 -0.871596 -0.485827 0.787095 0.380071 0.868685 0.386678 0.309623 0.045836 0.488077 -0.871596 -0.565644 0.731842 0.380071 0.823375 0.475592 0.309623 -0.005570 0.490193 -0.871596 -0.639231 0.668528 0.380071 0.768994 0.559269 0.309623 -0.056428 0.486966 -0.871596 -0.705179 0.598555 0.380071 0.706780 0.636078 0.309623 -0.107155 0.478370 -0.871596 -0.764028 0.521351 0.380071 0.636222 0.706651 0.309623 -0.156702 0.464505 -0.871596 -0.814462 0.438404 0.380071 0.558656 0.769439 0.309623 -0.204076 0.445727 -0.871596 -0.855573 0.351484 0.380071 0.475760 0.823278 0.309623 -0.249668 0.421884 -0.871596 -0.887699 0.259878 0.380071 0.386854 0.868607 0.309623 -0.292509 0.393393 -0.871596 -0.910047 0.165410 0.380071 0.293688 0.904368 0.309623 -0.332129 0.360570 -0.871596 -0.922371 0.069119 0.380071 0.197286 0.930168 0.309623 -0.367766 0.324142 -0.871596 -0.924563 -0.027008 0.380071 0.099657 0.945623 0.309623 -0.399713 0.283813 -0.871596 -0.916640 -0.123760 0.380071 0.000000 0.950859 0.309623 -0.427257 0.240357 -0.871596 -0.898621 -0.219149 0.380071 -0.099657 0.945623 0.309623 -0.449901 0.194704 -0.871596 -0.871015 -0.311253 0.380071 -0.197286 0.930168 0.309623 -0.467829 0.146478 -0.871596 -0.833597 -0.400828 0.380071 -0.293688 0.904368 0.309623 -0.480605 0.096640 -0.871596 -0.786996 -0.485987 0.380071 -0.386854 0.868607 0.309623 -0.488086 0.045737 -0.871596 -0.731727 -0.565793 0.380071 -0.475760 0.823278 0.309623 -0.490197 -0.005180 -0.871596 -0.669037 -0.638699 0.380071 -0.558656 0.769439 0.309623 -0.486955 -0.056528 -0.871596 -0.598412 -0.705301 0.380071 -0.636222 0.706651 0.309623 -0.478348 -0.107253 -0.871596 -0.521195 -0.764134 0.380071 -0.706780 0.636078 0.309623 -0.464629 -0.156332 -0.871596 -0.439053 -0.814112 0.380071 -0.768994 0.559269 0.309623 -0.445686 -0.204167 -0.871596 -0.351310 -0.855645 0.380071 -0.823375 0.475592 0.309623 -0.421833 -0.249754 -0.871596 -0.259697 -0.887752 0.380071 -0.868685 0.386678 0.309623 -0.393334 -0.292589 -0.871596 -0.165224 -0.910081 0.380071 -0.904428 0.293504 0.309623 -0.360834 -0.331842 -0.871596 -0.069854 -0.922316 0.380071 -0.930010 0.198027 0.309623 -0.324068 -0.367832 -0.871596 0.027196 -0.924557 0.380071 -0.945643 0.099464 0.309623 -0.122500 -0.246657 -0.961329 0.031386 -0.969103 0.244652 -0.991972 -0.000202 0.126457 -0.095974 -0.258138 -0.961329 0.132782 -0.960476 0.244652 -0.986488 -0.104167 0.126457 -0.068658 -0.266706 -0.961329 0.231774 -0.941502 0.244652 -0.970344 -0.206014 0.126457 -0.040327 -0.272433 -0.961329 0.329174 -0.912025 0.244652 -0.943408 -0.306578 0.126457 -0.011552 -0.275159 -0.961329 0.422947 -0.872503 0.244652 -0.906081 -0.403766 0.126457 0.017076 -0.274872 -0.961329 0.511239 -0.823881 0.244652 -0.859269 -0.495647 0.126457 0.045790 -0.271568 -0.961329 0.594772 -0.765762 0.244652 -0.802589 -0.582974 0.126457 0.074000 -0.265274 -0.961329 0.671754 -0.699208 0.244652 -0.737069 -0.663881 0.126457 0.101395 -0.256057 -0.961329 0.741336 -0.624953 0.244652 -0.663430 -0.737475 0.126457 0.127429 -0.244147 -0.961329 0.802209 -0.544616 0.244652 -0.583287 -0.802362 0.126457 0.152316 -0.229447 -0.961329 0.854870 -0.457539 0.244652 -0.495981 -0.859076 0.126457 0.175525 -0.212220 -0.961329 0.898115 -0.365423 0.244652 -0.403212 -0.906327 0.126457 0.196608 -0.192851 -0.961329 0.931198 -0.270213 0.244652 -0.306945 -0.943289 0.126457 0.215737 -0.171183 -0.961329 0.954390 -0.171129 0.244652 -0.206391 -0.970264 0.126457 0.232490 -0.147630 -0.961329 0.967069 -0.070159 0.244652 -0.103564 -0.986551 0.126457 0.246582 -0.122651 -0.961329 0.969122 0.030794 0.244652 -0.000404 -0.991972 0.126457 0.258079 -0.096132 -0.961329 0.960557 0.132195 0.244652 0.103564 -0.986551 0.126457 0.266733 -0.068554 -0.961329 0.941412 0.232140 0.244652 0.206391 -0.970264 0.126457 0.272449 -0.040221 -0.961329 0.911897 0.329528 0.244652 0.306945 -0.943289 0.126457 0.275152 -0.011720 -0.961329 0.872761 0.422414 0.244652 0.403212 -0.906327 0.126457 0.274865 0.017183 -0.961329 0.823682 0.511559 0.244652 0.495981 -0.859076 0.126457 0.271551 0.045896 -0.961329 0.765531 0.595070 0.244652 0.583287 -0.802362 0.126457 0.265319 0.073838 -0.961329 0.699619 0.671326 0.244652 0.663430 -0.737475 0.126457 0.256119 0.101239 -0.961329 0.625406 0.740954 0.244652 0.737069 -0.663881 0.126457 0.244098 0.127524 -0.961329 0.544304 0.802420 0.244652 0.802589 -0.582974 0.126457 0.229388 0.152405 -0.961329 0.457207 0.855048 0.244652 0.859269 -0.495647 0.126457 0.212327 0.175395 -0.961329 0.365972 0.897892 0.244652 0.906081 -0.403766 0.126457 0.192775 0.196683 -0.961329 0.269851 0.931303 0.244652 0.943408 -0.306578 0.126457 0.171099 0.215804 -0.961329 0.170757 0.954457 0.244652 0.970344 -0.206014 0.126457 0.147772 0.232400 -0.961329 0.070750 0.967026 0.244652 0.986488 -0.104167 0.126457 0.122601 0.246607 -0.961329 -0.030991 0.969115 0.244652 0.991972 -0.000202 0.126457 0.096079 0.258099 -0.961329 -0.132391 0.960530 0.244652 0.986530 0.103765 0.126457 0.068500 0.266747 -0.961329 -0.232332 0.941364 0.244652 0.970221 0.206589 0.126457 0.040438 0.272417 -0.961329 -0.328802 0.912159 0.244652 0.943533 0.306194 0.126457 0.011664 0.275155 -0.961329 -0.422592 0.872675 0.244652 0.906245 0.403397 0.126457 -0.017239 0.274862 -0.961329 -0.511727 0.823578 0.244652 0.858975 0.496156 0.126457 -0.045951 0.271541 -0.961329 -0.595226 0.765409 0.244652 0.802244 0.583450 0.126457 -0.073892 0.265304 -0.961329 -0.671469 0.699482 0.244652 0.737339 0.663581 0.126457 -0.101291 0.256098 -0.961329 -0.741081 0.625255 0.244652 0.663731 0.737204 0.126457 -0.127574 0.244072 -0.961329 -0.802531 0.544141 0.244652 0.582811 0.802708 0.126457 -0.152223 0.229509 -0.961329 -0.854684 0.457888 0.244652 0.496331 0.858874 0.126457 -0.175438 0.212291 -0.961329 -0.897966 0.365789 0.244652 0.403581 0.906163 0.126457 -0.196722 0.192735 -0.961329 -0.931358 0.269661 0.244652 0.306386 0.943470 0.126457 -0.215838 0.171055 -0.961329 -0.954491 0.170563 0.244652 0.205816 0.970386 0.126457 -0.232430 0.147724 -0.961329 -0.967041 0.070553 0.244652 0.103966 0.986509 0.126457 -0.246632 0.122550 -0.961329 -0.969109 -0.031188 0.244652 0.000000 0.991972 0.126457 -0.258118 0.096027 -0.961329 -0.960503 -0.132586 0.244652 -0.103966 0.986509 0.126457 -0.266692 0.068712 -0.961329 -0.941549 -0.231582 0.244652 -0.205816 0.970386 0.126457 -0.272425 0.040382 -0.961329 -0.912092 -0.328988 0.244652 -0.306386 0.943470 0.126457 -0.275157 0.011608 -0.961329 -0.872589 -0.422770 0.244652 -0.403581 0.906163 0.126457 -0.274858 -0.017295 -0.961329 -0.823474 -0.511895 0.244652 -0.496331 0.858874 0.126457 -0.271578 -0.045735 -0.961329 -0.765883 -0.594616 0.244652 -0.582811 0.802708 0.126457 -0.265289 -0.073946 -0.961329 -0.699345 -0.671611 0.244652 -0.663731 0.737204 0.126457 -0.256077 -0.101343 -0.961329 -0.625104 -0.741209 0.244652 -0.737339 0.663581 0.126457 -0.244173 -0.127380 -0.961329 -0.544779 -0.802098 0.244652 -0.802244 0.583450 0.126457 -0.229478 -0.152269 -0.961329 -0.457713 -0.854777 0.244652 -0.858975 0.496156 0.126457 -0.212255 -0.175482 -0.961329 -0.365606 -0.898041 0.244652 -0.906245 0.403397 0.126457 -0.192695 -0.196761 -0.961329 -0.269471 -0.931413 0.244652 -0.943533 0.306194 0.126457 -0.171227 -0.215702 -0.961329 -0.171323 -0.954355 0.244652 -0.970221 0.206589 0.126457 -0.147677 -0.232460 -0.961329 -0.070356 -0.967055 0.244652 -0.986530 0.103765 0.126457 0.469451 -0.326977 0.820184 0.162265 0.945032 0.283873 -0.867920 -0.000177 0.496703 0.501135 -0.275974 0.820184 0.062326 0.956834 0.283873 -0.863122 -0.091140 0.496703 0.527077 -0.222459 0.820184 -0.037343 0.958135 0.283873 -0.848997 -0.180251 0.496703 0.547489 -0.165992 0.820184 -0.137556 0.948944 0.283873 -0.825429 -0.268239 0.496703 0.561871 -0.107697 0.820184 -0.236255 0.929301 0.283873 -0.792770 -0.353272 0.496703 0.570016 -0.048786 0.820184 -0.331452 0.899753 0.283873 -0.751812 -0.433663 0.496703 0.571989 0.011224 0.820184 -0.423927 0.860060 0.283873 -0.702221 -0.510070 0.496703 0.567663 0.071111 0.820184 -0.511732 0.810892 0.283873 -0.644895 -0.580859 0.496703 0.557083 0.130215 0.820184 -0.593901 0.752793 0.283873 -0.580465 -0.645249 0.496703 0.540556 0.187344 0.820184 -0.668842 0.687071 0.283873 -0.510343 -0.702022 0.496703 0.517944 0.242966 0.820184 -0.737168 0.613188 0.283873 -0.433956 -0.751644 0.496703 0.489626 0.295912 0.820184 -0.797375 0.532550 0.283873 -0.352788 -0.792986 0.496703 0.456262 0.345142 0.820184 -0.848352 0.446895 0.283873 -0.268560 -0.825325 0.496703 0.417575 0.391061 0.820184 -0.890517 0.355521 0.283873 -0.180581 -0.848927 0.496703 0.374290 0.432672 0.820184 -0.922874 0.260230 0.283873 -0.090613 -0.863177 0.496703 0.327263 0.469251 0.820184 -0.944933 0.162843 0.283873 -0.000354 -0.867920 0.496703 0.276280 0.500966 0.820184 -0.956796 0.062910 0.283873 0.090613 -0.863177 0.496703 0.222254 0.527163 0.820184 -0.958120 -0.037715 0.283873 0.180581 -0.848927 0.496703 0.165779 0.547554 0.820184 -0.948890 -0.137926 0.283873 0.268560 -0.825325 0.496703 0.108040 0.561805 0.820184 -0.929445 -0.235687 0.283873 0.352788 -0.792986 0.496703 0.048564 0.570035 0.820184 -0.899624 -0.331802 0.283873 0.433956 -0.751644 0.496703 -0.011447 0.571985 0.820184 -0.859895 -0.424261 0.283873 0.510343 -0.702022 0.496703 -0.070764 0.567706 0.820184 -0.811205 -0.511237 0.283873 0.580465 -0.645249 0.496703 -0.129874 0.557163 0.820184 -0.753156 -0.593441 0.283873 0.644895 -0.580859 0.496703 -0.187554 0.540483 0.820184 -0.686811 -0.669109 0.283873 0.702221 -0.510070 0.496703 -0.243167 0.517849 0.820184 -0.612901 -0.737407 0.283873 0.751812 -0.433663 0.496703 -0.295613 0.489807 0.820184 -0.533037 -0.797049 0.283873 0.792770 -0.353272 0.496703 -0.345320 0.456127 0.820184 -0.446565 -0.848526 0.283873 0.825429 -0.268239 0.496703 -0.391224 0.417423 0.820184 -0.355174 -0.890656 0.283873 0.848997 -0.180251 0.496703 -0.432443 0.374554 0.820184 -0.260794 -0.922715 0.283873 0.863122 -0.091140 0.496703 -0.469318 0.327168 0.820184 -0.162650 -0.944966 0.283873 0.867920 -0.000177 0.496703 -0.501023 0.276178 0.820184 -0.062715 -0.956809 0.283873 0.863159 0.090789 0.496703 -0.527209 0.222146 0.820184 0.037911 -0.958112 0.283873 0.848890 0.180754 0.496703 -0.547422 0.166215 0.820184 0.137170 -0.949000 0.283873 0.825539 0.267903 0.496703 -0.561827 0.107926 0.820184 0.235876 -0.929397 0.283873 0.792914 0.352950 0.496703 -0.570044 0.048448 0.820184 0.331985 -0.899557 0.283873 0.751555 0.434109 0.496703 -0.571983 -0.011564 0.820184 0.424436 -0.859808 0.283873 0.701918 0.510486 0.496703 -0.567692 -0.070880 0.820184 0.511402 -0.811101 0.283873 0.645131 0.580596 0.496703 -0.557136 -0.129988 0.820184 0.593595 -0.753035 0.283873 0.580727 0.645013 0.496703 -0.540444 -0.187664 0.820184 0.669249 -0.686675 0.283873 0.509927 0.702325 0.496703 -0.518042 -0.242755 0.820184 0.736918 -0.613488 0.283873 0.434262 0.751467 0.496703 -0.489747 -0.295712 0.820184 0.797158 -0.532875 0.283873 0.353111 0.792842 0.496703 -0.456057 -0.345413 0.820184 0.848617 -0.446392 0.283873 0.268071 0.825484 0.496703 -0.417343 -0.391309 0.820184 0.890728 -0.354993 0.283873 0.180078 0.849033 0.496703 -0.374466 -0.432520 0.820184 0.922768 -0.260606 0.283873 0.090964 0.863140 0.496703 -0.327072 -0.469384 0.820184 0.944999 -0.162458 0.283873 0.000000 0.867920 0.496703 -0.276076 -0.501079 0.820184 0.956822 -0.062520 0.283873 -0.090964 0.863140 0.496703 -0.222566 -0.527032 0.820184 0.958142 0.037148 0.283873 -0.180078 0.849033 0.496703 -0.166104 -0.547455 0.820184 0.948972 0.137363 0.283873 -0.268071 0.825484 0.496703 -0.107812 -0.561849 0.820184 0.929349 0.236066 0.283873 -0.353111 0.792842 0.496703 -0.048332 -0.570054 0.820184 0.899489 0.332168 0.283873 -0.434262 0.751467 0.496703 0.011108 -0.571992 0.820184 0.860146 0.423752 0.283873 -0.509927 0.702325 0.496703 0.070996 -0.567677 0.820184 0.810997 0.511567 0.283873 -0.580727 0.645013 0.496703 0.130101 -0.557110 0.820184 0.752914 0.593748 0.283873 -0.645131 0.580596 0.496703 0.187233 -0.540594 0.820184 0.687207 0.668702 0.283873 -0.701918 0.510486 0.496703 0.242860 -0.517993 0.820184 0.613338 0.737043 0.283873 -0.751555 0.434109 0.496703 0.295812 -0.489687 0.820184 0.532713 0.797266 0.283873 -0.792914 0.352950 0.496703 0.345506 -0.455987 0.820184 0.446220 0.848708 0.283873 -0.825539 0.267903 0.496703 0.390976 -0.417655 0.820184 0.355702 0.890445 0.283873 -0.848890 0.180754 0.496703 0.432596 -0.374378 0.820184 0.260418 0.922821 0.283873 -0.863159 0.090789 0.496703 -0.538451 -0.659647 -0.524343 0.472723 -0.751575 0.460074 -0.697570 -0.000142 0.716517 -0.466350 -0.712448 -0.524343 0.548890 -0.697891 0.460074 -0.693713 -0.073252 0.716517 -0.389869 -0.757011 -0.524343 0.618374 -0.637139 0.460074 -0.682360 -0.144872 0.716517 -0.308382 -0.793703 -0.524343 0.681745 -0.568820 0.460074 -0.663419 -0.215590 0.716517 -0.223497 -0.821653 -0.524343 0.737607 -0.494235 0.460074 -0.637169 -0.283934 0.716517 -0.136992 -0.840415 -0.524343 0.784929 -0.414992 0.460074 -0.604251 -0.348546 0.716517 -0.048156 -0.850144 -0.524343 0.824101 -0.330440 0.460074 -0.564393 -0.409956 0.716517 0.041211 -0.850509 -0.524343 0.854194 -0.242249 0.460074 -0.518318 -0.466851 0.716517 0.130123 -0.841506 -0.524343 0.874879 -0.151389 0.460074 -0.466534 -0.518603 0.716517 0.216779 -0.823451 -0.524343 0.885868 -0.059747 0.460074 -0.410176 -0.564233 0.716517 0.301889 -0.796196 -0.524343 0.887251 0.033427 0.460074 -0.348781 -0.604115 0.716517 0.383673 -0.760171 -0.524343 0.878861 0.126234 0.460074 -0.283545 -0.637343 0.716517 0.460515 -0.716233 -0.524343 0.861008 0.216788 0.460074 -0.215848 -0.663335 0.716517 0.533045 -0.664023 -0.524343 0.833545 0.305834 0.460074 -0.145137 -0.682304 0.716517 0.599704 -0.604499 -0.524343 0.796901 0.391511 0.460074 -0.072828 -0.693758 0.716517 0.659318 -0.538854 -0.524343 0.751864 0.472264 0.460074 -0.000284 -0.697570 0.716517 0.712163 -0.466785 -0.524343 0.698226 0.548464 0.460074 0.072828 -0.693758 0.716517 0.757163 -0.389574 -0.524343 0.636898 0.618622 0.460074 0.145137 -0.682304 0.716517 0.793823 -0.308073 -0.524343 0.568554 0.681966 0.460074 0.215848 -0.663335 0.716517 0.821516 -0.223999 -0.524343 0.494686 0.737305 0.460074 0.283545 -0.637343 0.716517 0.840468 -0.136665 -0.524343 0.414686 0.785091 0.460074 0.348781 -0.604115 0.716517 0.850163 -0.047825 -0.524343 0.330119 0.824229 0.460074 0.410176 -0.564233 0.716517 0.850534 0.040691 -0.524343 0.242770 0.854046 0.460074 0.466534 -0.518603 0.716517 0.841585 0.129609 -0.524343 0.151923 0.874787 0.460074 0.518318 -0.466851 0.716517 0.823366 0.217099 -0.524343 0.059402 0.885891 0.460074 0.564393 -0.409956 0.716517 0.796078 0.302198 -0.524343 -0.033772 0.887238 0.460074 0.604251 -0.348546 0.716517 0.760405 0.383208 -0.524343 -0.125696 0.878938 0.460074 0.637169 -0.283934 0.716517 0.716054 0.460794 -0.524343 -0.217123 0.860924 0.460074 0.663419 -0.215590 0.716517 0.663816 0.533304 -0.524343 -0.306158 0.833426 0.460074 0.682360 -0.144872 0.716517 0.604865 0.599335 -0.524343 -0.391024 0.797140 0.460074 0.693713 -0.073252 0.716517 0.538720 0.659428 -0.524343 -0.472417 0.751768 0.460074 0.697570 -0.000142 0.716517 0.466640 0.712258 -0.524343 -0.548606 0.698115 0.460074 0.693743 0.072969 0.716517 0.389420 0.757242 -0.524343 -0.618752 0.636772 0.460074 0.682274 0.145276 0.716517 0.308705 0.793578 -0.524343 -0.681513 0.569097 0.460074 0.663506 0.215320 0.716517 0.223832 0.821562 -0.524343 -0.737406 0.494536 0.460074 0.637285 0.283674 0.716517 0.136494 0.840496 -0.524343 -0.785175 0.414527 0.460074 0.604044 0.348904 0.716517 0.047652 0.850173 -0.524343 -0.824296 0.329952 0.460074 0.564150 0.410291 0.716517 -0.040864 0.850526 -0.524343 -0.854096 0.242596 0.460074 0.518508 0.466640 0.716517 -0.129780 0.841559 -0.524343 -0.874818 0.151745 0.460074 0.466745 0.518413 0.716517 -0.217267 0.823322 -0.524343 -0.885904 0.059222 0.460074 0.409841 0.564476 0.716517 -0.301564 0.796319 -0.524343 -0.887265 -0.033066 0.460074 0.349027 0.603973 0.716517 -0.383363 0.760327 -0.524343 -0.878913 -0.125875 0.460074 0.283804 0.637227 0.716517 -0.460940 0.715960 -0.524343 -0.860880 -0.217299 0.460074 0.215455 0.663463 0.716517 -0.533439 0.663707 -0.524343 -0.833364 -0.306328 0.460074 0.144733 0.682390 0.716517 -0.599458 0.604743 -0.524343 -0.797060 -0.391187 0.460074 0.073110 0.693728 0.716517 -0.659538 0.538585 -0.524343 -0.751671 -0.472570 0.460074 0.000000 0.697570 0.716517 -0.712353 0.466495 -0.524343 -0.698003 -0.548748 0.460074 -0.073110 0.693728 0.716517 -0.756932 0.390023 -0.524343 -0.637265 -0.618244 0.460074 -0.144733 0.682390 0.716517 -0.793641 0.308543 -0.524343 -0.568958 -0.681629 0.460074 -0.215455 0.663463 0.716517 -0.821607 0.223665 -0.524343 -0.494385 -0.737506 0.460074 -0.283804 0.637227 0.716517 -0.840524 0.136323 -0.524343 -0.414367 -0.785260 0.460074 -0.349027 0.603973 0.716517 -0.850134 0.048329 -0.524343 -0.330608 -0.824033 0.460074 -0.409841 0.564476 0.716517 -0.850518 -0.041037 -0.524343 -0.242422 -0.854145 0.460074 -0.466745 0.518413 0.716517 -0.841532 -0.129952 -0.524343 -0.151567 -0.874848 0.460074 -0.518508 0.466640 0.716517 -0.823495 -0.216611 -0.524343 -0.059928 -0.885856 0.460074 -0.564150 0.410291 0.716517 -0.796257 -0.301726 -0.524343 0.033247 -0.887258 0.460074 -0.604044 0.348904 0.716517 -0.760249 -0.383518 -0.524343 0.126054 -0.878887 0.460074 -0.637285 0.283674 0.716517 -0.715866 -0.461085 -0.524343 0.217474 -0.860835 0.460074 -0.663506 0.215320 0.716517 -0.664132 -0.532910 -0.524343 0.305664 -0.833608 0.460074 -0.682274 0.145276 0.716517 -0.604621 -0.599581 -0.524343 0.391349 -0.796981 0.460074 -0.693743 0.072969 0.716517 -0.025457 0.244293 0.969367 0.006203 0.969701 -0.244215 -0.999657 -0.000204 -0.026201 -0.050920 0.240280 0.969367 -0.095463 0.965011 -0.244215 -0.994130 -0.104974 -0.026201 -0.075589 0.233696 0.969367 -0.195127 0.949887 -0.244215 -0.977861 -0.207610 -0.026201 -0.099666 0.224486 0.969367 -0.293607 0.924204 -0.244215 -0.950716 -0.308953 -0.026201 -0.122645 0.212804 0.969367 -0.388854 0.888342 -0.244215 -0.913100 -0.406893 -0.026201 -0.144074 0.198922 0.969367 -0.478974 0.843175 -0.244215 -0.865925 -0.499486 -0.026201 -0.164129 0.182727 0.969367 -0.564706 0.788331 -0.244215 -0.808807 -0.587490 -0.026201 -0.182376 0.164519 0.969367 -0.644219 0.724804 -0.244215 -0.742779 -0.669024 -0.026201 -0.198614 0.144498 0.969367 -0.716636 0.653293 -0.244215 -0.668570 -0.743188 -0.026201 -0.212542 0.123099 0.969367 -0.780584 0.575368 -0.244215 -0.587805 -0.808578 -0.026201 -0.224273 0.100145 0.969367 -0.836587 0.490388 -0.244215 -0.499823 -0.865731 -0.026201 -0.233534 0.076088 0.969367 -0.883376 0.400007 -0.244215 -0.406335 -0.913348 -0.026201 -0.240171 0.051433 0.969367 -0.920129 0.306140 -0.244215 -0.309323 -0.950596 -0.026201 -0.244238 0.025978 0.969367 -0.947147 0.208018 -0.244215 -0.207990 -0.977780 -0.026201 -0.245616 0.000237 0.969367 -0.963733 0.107605 -0.244215 -0.104366 -0.994194 -0.026201 -0.244309 -0.025307 0.969367 -0.969697 0.006796 -0.244215 -0.000407 -0.999657 -0.026201 -0.240311 -0.050773 0.969367 -0.965069 -0.094873 -0.244215 0.104366 -0.994194 -0.026201 -0.233666 -0.075680 0.969367 -0.949811 -0.195497 -0.244215 0.207990 -0.977780 -0.026201 -0.224447 -0.099753 0.969367 -0.924090 -0.293967 -0.244215 0.309323 -0.950596 -0.026201 -0.212879 -0.122514 0.969367 -0.888580 -0.388311 -0.244215 0.406335 -0.913348 -0.026201 -0.198866 -0.144151 0.969367 -0.842988 -0.479302 -0.244215 0.499823 -0.865731 -0.026201 -0.182663 -0.164200 0.969367 -0.788111 -0.565013 -0.244215 0.587805 -0.808578 -0.026201 -0.164630 -0.182275 0.969367 -0.725197 -0.643776 -0.244215 0.668570 -0.743188 -0.026201 -0.144620 -0.198526 0.969367 -0.653731 -0.716237 -0.244215 0.742779 -0.669024 -0.026201 -0.123016 -0.212590 0.969367 -0.575064 -0.780808 -0.244215 0.808807 -0.587490 -0.026201 -0.100058 -0.224312 0.969367 -0.490063 -0.836778 -0.244215 0.865925 -0.499486 -0.026201 -0.076231 -0.233487 0.969367 -0.400547 -0.883132 -0.244215 0.913100 -0.406893 -0.026201 -0.051340 -0.240191 0.969367 -0.305782 -0.920248 -0.244215 0.950716 -0.308953 -0.026201 -0.025883 -0.244249 0.969367 -0.207649 -0.947228 -0.244215 0.977861 -0.207610 -0.026201 -0.000387 -0.245616 0.969367 -0.108193 -0.963667 -0.244215 0.994130 -0.104974 -0.026201 0.025357 -0.244304 0.969367 -0.006598 -0.969699 -0.244215 0.999657 -0.000204 -0.026201 0.050822 -0.240301 0.969367 0.095069 -0.965050 -0.244215 0.994172 0.104569 -0.026201 0.075728 -0.233651 0.969367 0.195690 -0.949771 -0.244215 0.977738 0.208189 -0.026201 0.099574 -0.224527 0.969367 0.293231 -0.924324 -0.244215 0.950842 0.308566 -0.026201 0.122558 -0.212854 0.969367 0.388492 -0.888501 -0.244215 0.913265 0.406522 -0.026201 0.144192 -0.198837 0.969367 0.479473 -0.842891 -0.244215 0.865629 0.499999 -0.026201 0.164237 -0.182630 0.969367 0.565174 -0.787996 -0.244215 0.808458 0.587970 -0.026201 0.182309 -0.164593 0.969367 0.643924 -0.725066 -0.244215 0.743052 0.668721 -0.026201 0.198555 -0.144579 0.969367 0.716370 -0.653585 -0.244215 0.668872 0.742915 -0.026201 0.212615 -0.122973 0.969367 0.780925 -0.574905 -0.244215 0.587326 0.808926 -0.026201 0.224232 -0.100236 0.969367 0.836388 -0.490729 -0.244215 0.500176 0.865528 -0.026201 0.233503 -0.076183 0.969367 0.883213 -0.400367 -0.244215 0.406707 0.913183 -0.026201 0.240201 -0.051291 0.969367 0.920310 -0.305595 -0.244215 0.308760 0.950779 -0.026201 0.244254 -0.025834 0.969367 0.947270 -0.207457 -0.244215 0.207411 0.977903 -0.026201 0.245616 -0.000337 0.969367 0.963689 -0.107997 -0.244215 0.104771 0.994151 -0.026201 0.244299 0.025407 0.969367 0.969700 -0.006401 -0.244215 0.000000 0.999657 -0.026201 0.240290 0.050871 0.969367 0.965030 0.095266 -0.244215 -0.104771 0.994151 -0.026201 0.233711 0.075541 0.969367 0.949926 0.194934 -0.244215 -0.207411 0.977903 -0.026201 0.224507 0.099620 0.969367 0.924264 0.293419 -0.244215 -0.308760 0.950779 -0.026201 0.212829 0.122601 0.969367 0.888421 0.388673 -0.244215 -0.406707 0.913183 -0.026201 0.198808 0.144232 0.969367 0.842793 0.479645 -0.244215 -0.500176 0.865528 -0.026201 0.182760 0.164091 0.969367 0.788446 0.564546 -0.244215 -0.587326 0.808926 -0.026201 0.164556 0.182342 0.969367 0.724935 0.644072 -0.244215 -0.668872 0.742915 -0.026201 0.144539 0.198585 0.969367 0.653439 0.716503 -0.244215 -0.743052 0.668721 -0.026201 0.123142 0.212517 0.969367 0.575527 0.780467 -0.244215 -0.808458 0.587970 -0.026201 0.100191 0.224252 0.969367 0.490558 0.836488 -0.244215 -0.865629 0.499999 -0.026201 0.076136 0.233518 0.969367 0.400187 0.883295 -0.244215 -0.913265 0.406522 -0.026201 0.051242 0.240212 0.969367 0.305407 0.920372 -0.244215 -0.950842 0.308566 -0.026201 0.026028 0.244233 0.969367 0.208211 0.947105 -0.244215 -0.977738 0.208189 -0.026201 0.000287 0.245616 0.969367 0.107801 0.963711 -0.244215 -0.994172 0.104569 -0.026201 -0.422645 0.852438 0.307766 0.688961 0.522828 -0.501980 -0.588816 -0.000120 -0.808267 -0.509659 0.803447 0.307766 0.630371 0.592156 -0.501980 -0.585560 -0.061831 -0.808267 -0.590313 0.746197 0.307766 0.565492 0.654397 -0.501980 -0.575977 -0.122286 -0.808267 -0.665269 0.680219 0.307766 0.493792 0.710061 -0.501980 -0.559989 -0.181979 -0.808267 -0.732897 0.606748 0.307766 0.416653 0.757903 -0.501980 -0.537832 -0.239667 -0.808267 -0.791925 0.527385 0.307766 0.335721 0.797062 -0.501980 -0.510045 -0.294206 -0.808267 -0.842837 0.441481 0.307766 0.250335 0.827858 -0.501980 -0.476402 -0.346042 -0.808267 -0.884465 0.350715 0.307766 0.162191 0.849536 -0.501980 -0.437510 -0.394067 -0.808267 -0.916352 0.256085 0.307766 0.072260 0.861856 -0.501980 -0.393799 -0.437751 -0.808267 -0.937985 0.159572 0.307766 -0.017602 0.864700 -0.501980 -0.346228 -0.476267 -0.808267 -0.949544 0.060386 0.307766 -0.108132 0.858093 -0.501980 -0.294405 -0.509931 -0.808267 -0.950643 -0.039466 0.307766 -0.197471 0.842034 -0.501980 -0.239339 -0.537978 -0.808267 -0.941410 -0.137941 0.307766 -0.283817 0.816985 -0.501980 -0.182197 -0.559918 -0.808267 -0.921768 -0.235848 0.307766 -0.367880 0.782739 -0.501980 -0.122510 -0.575930 -0.808267 -0.891972 -0.331157 0.307766 -0.447891 0.739872 -0.501980 -0.061474 -0.585598 -0.808267 -0.852697 -0.422124 0.307766 -0.522407 0.689281 -0.501980 -0.000240 -0.588815 -0.808267 -0.803759 -0.509168 0.307766 -0.591771 0.630733 -0.501980 0.061474 -0.585598 -0.808267 -0.745968 -0.590603 0.307766 -0.654617 0.565237 -0.501980 0.122510 -0.575930 -0.808267 -0.679960 -0.665533 0.307766 -0.710253 0.493515 -0.501980 0.182197 -0.559918 -0.808267 -0.607195 -0.732526 0.307766 -0.757648 0.417116 -0.501980 0.239339 -0.537978 -0.808267 -0.527077 -0.792130 0.307766 -0.797192 0.335412 -0.501980 0.294405 -0.509931 -0.808267 -0.441153 -0.843009 0.307766 -0.827955 0.250013 -0.501980 0.346228 -0.476267 -0.808267 -0.351255 -0.884251 0.307766 -0.849436 0.162710 -0.501980 0.393799 -0.437751 -0.808267 -0.256644 -0.916195 0.307766 -0.861811 0.072787 -0.501980 0.437510 -0.394067 -0.808267 -0.159207 -0.938047 0.307766 -0.864693 -0.017938 -0.501980 0.476402 -0.346042 -0.808267 -0.060016 -0.949567 0.307766 -0.858051 -0.108465 -0.501980 0.510045 -0.294206 -0.808267 0.038885 -0.950667 0.307766 -0.842155 -0.196956 -0.501980 0.537832 -0.239667 -0.808267 0.138308 -0.941356 0.307766 -0.816874 -0.284135 -0.501980 0.559989 -0.181979 -0.808267 0.236207 -0.921676 0.307766 -0.782596 -0.368185 -0.501980 0.575977 -0.122286 -0.808267 0.330612 -0.892175 0.307766 -0.740145 -0.447439 -0.501980 0.585560 -0.061831 -0.808267 0.422297 -0.852611 0.307766 -0.689174 -0.522547 -0.501980 0.588816 -0.000120 -0.808267 0.509331 -0.803655 0.307766 -0.630612 -0.591899 -0.501980 0.585585 0.061593 -0.808267 0.590755 -0.745847 0.307766 -0.565104 -0.654732 -0.501980 0.575905 0.122627 -0.808267 0.664992 -0.680490 0.307766 -0.494081 -0.709859 -0.501980 0.560063 0.181751 -0.808267 0.732649 -0.607046 0.307766 -0.416961 -0.757733 -0.501980 0.537930 0.239448 -0.808267 0.792237 -0.526916 0.307766 -0.335249 -0.797261 -0.501980 0.509871 0.294508 -0.808267 0.843098 -0.440982 0.307766 -0.249844 -0.828006 -0.501980 0.476196 0.346325 -0.808267 0.884323 -0.351075 0.307766 -0.162537 -0.849469 -0.501980 0.437670 0.393889 -0.808267 0.916247 -0.256458 0.307766 -0.072611 -0.861826 -0.501980 0.393978 0.437590 -0.808267 0.938080 -0.159016 0.307766 0.018114 -0.864690 -0.501980 0.345945 0.476472 -0.808267 0.949519 -0.060773 0.307766 0.107782 -0.858137 -0.501980 0.294612 0.509811 -0.808267 0.950659 0.039079 0.307766 0.197128 -0.842115 -0.501980 0.239558 0.537881 -0.808267 0.941328 0.138499 0.307766 0.284302 -0.816816 -0.501980 0.181865 0.560026 -0.808267 0.921628 0.236394 0.307766 0.368344 -0.782521 -0.501980 0.122168 0.576002 -0.808267 0.892107 0.330794 0.307766 0.447589 -0.740054 -0.501980 0.061712 0.585573 -0.808267 0.852525 0.422471 0.307766 0.522687 -0.689068 -0.501980 0.000000 0.588816 -0.808267 0.803551 0.509495 0.307766 0.592028 -0.630491 -0.501980 -0.061712 0.585573 -0.808267 0.746318 0.590161 0.307766 0.654282 -0.565625 -0.501980 -0.122168 0.576002 -0.808267 0.680354 0.665130 0.307766 0.709960 -0.493936 -0.501980 -0.181865 0.560026 -0.808267 0.606897 0.732773 0.307766 0.757818 -0.416807 -0.501980 -0.239558 0.537881 -0.808267 0.526754 0.792344 0.307766 0.797329 -0.335087 -0.501980 -0.294612 0.509811 -0.808267 0.441653 0.842747 0.307766 0.827807 -0.250503 -0.501980 -0.345945 0.476472 -0.808267 0.350895 0.884394 0.307766 0.849503 -0.162364 -0.501980 -0.393978 0.437590 -0.808267 0.256271 0.916300 0.307766 0.861841 -0.072436 -0.501980 -0.437670 0.393889 -0.808267 0.159763 0.937953 0.307766 0.864704 0.017426 -0.501980 -0.476196 0.346325 -0.808267 0.060579 0.949531 0.307766 0.858115 0.107957 -0.501980 -0.509871 0.294508 -0.808267 -0.039272 0.950651 0.307766 0.842075 0.197299 -0.501980 -0.537930 0.239448 -0.808267 -0.138691 0.941299 0.307766 0.816759 0.284468 -0.501980 -0.560063 0.181751 -0.808267 -0.235660 0.921816 0.307766 0.782814 0.367721 -0.501980 -0.575905 0.122627 -0.808267 -0.330975 0.892040 0.307766 0.739963 0.447740 -0.501980 -0.585585 0.061593 -0.808267 -0.035587 -0.578764 -0.814718 0.025505 -0.815495 0.578202 -0.999041 -0.000203 0.043782 0.025268 -0.579306 -0.814718 0.110835 -0.808330 0.578202 -0.993518 -0.104909 0.043782 0.085271 -0.573553 -0.814718 0.194151 -0.792457 0.578202 -0.977259 -0.207482 0.043782 0.144914 -0.561457 -0.814718 0.276137 -0.767744 0.578202 -0.950131 -0.308763 0.043782 0.202960 -0.543177 -0.814718 0.355081 -0.734575 0.578202 -0.912537 -0.406643 0.043782 0.258252 -0.519173 -0.814718 0.429421 -0.693744 0.578202 -0.865392 -0.499179 0.043782 0.311243 -0.489247 -0.814718 0.499765 -0.644917 0.578202 -0.808309 -0.587129 0.043782 0.360805 -0.453932 -0.814718 0.564604 -0.588986 0.578202 -0.742322 -0.668612 0.043782 0.406394 -0.413617 -0.814718 0.623225 -0.526568 0.578202 -0.668158 -0.742730 0.043782 0.447136 -0.369193 -0.814718 0.674522 -0.459024 0.578202 -0.587443 -0.808080 0.043782 0.483368 -0.320297 -0.814718 0.718916 -0.385801 0.578202 -0.499515 -0.865198 0.043782 0.514275 -0.267872 -0.814718 0.755391 -0.308329 0.578202 -0.406085 -0.912786 0.043782 0.539305 -0.213037 -0.814718 0.783318 -0.228244 0.578202 -0.309133 -0.950011 0.043782 0.558663 -0.155340 -0.814718 0.802926 -0.144889 0.578202 -0.207862 -0.977178 0.043782 0.571867 -0.095933 -0.814718 0.813689 -0.059939 0.578202 -0.104302 -0.993581 0.043782 0.578742 -0.035940 -0.814718 0.815510 0.025007 0.578202 -0.000407 -0.999041 0.043782 0.579322 0.024914 -0.814718 0.808398 0.110341 0.578202 0.104302 -0.993581 0.043782 0.573520 0.085494 -0.814718 0.792381 0.194459 0.578202 0.207862 -0.977178 0.043782 0.561401 0.145132 -0.814718 0.767637 0.276435 0.578202 0.309133 -0.950011 0.043782 0.543301 0.202628 -0.814718 0.734792 0.354632 0.578202 0.406085 -0.912786 0.043782 0.519072 0.258454 -0.814718 0.693577 0.429690 0.578202 0.499515 -0.865198 0.043782 0.489125 0.311433 -0.814718 0.644722 0.500016 0.578202 0.587443 -0.808080 0.043782 0.454152 0.360528 -0.814718 0.589331 0.564244 0.578202 0.668158 -0.742730 0.043782 0.413865 0.406141 -0.814718 0.526948 0.622903 0.578202 0.742322 -0.668612 0.043782 0.369019 0.447280 -0.814718 0.458761 0.674700 0.578202 0.808309 -0.587129 0.043782 0.320109 0.483492 -0.814718 0.385522 0.719066 0.578202 0.865392 -0.499179 0.043782 0.268186 0.514111 -0.814718 0.308790 0.755203 0.578202 0.912537 -0.406643 0.043782 0.212827 0.539388 -0.814718 0.227939 0.783407 0.578202 0.950131 -0.308763 0.043782 0.155123 0.558723 -0.814718 0.144577 0.802982 0.578202 0.977259 -0.207482 0.043782 0.096282 0.571808 -0.814718 0.060436 0.813652 0.578202 0.993518 -0.104909 0.043782 0.035822 0.578750 -0.814718 -0.025173 0.815505 0.578202 0.999041 -0.000203 0.043782 -0.025032 0.579317 -0.814718 -0.110505 0.808376 0.578202 0.993560 0.104504 0.043782 -0.085611 0.573503 -0.814718 -0.194620 0.792342 0.578202 0.977135 0.208061 0.043782 -0.144685 0.561516 -0.814718 -0.275824 0.767856 0.578202 0.950257 0.308376 0.043782 -0.202739 0.543260 -0.814718 -0.354782 0.734719 0.578202 0.912703 0.406271 0.043782 -0.258560 0.519019 -0.814718 -0.429832 0.693489 0.578202 0.865096 0.499691 0.043782 -0.311533 0.489062 -0.814718 -0.500147 0.644620 0.578202 0.807961 0.587608 0.043782 -0.360621 0.454079 -0.814718 -0.564364 0.589216 0.578202 0.742594 0.668309 0.043782 -0.406225 0.413782 -0.814718 -0.623010 0.526821 0.578202 0.668461 0.742458 0.043782 -0.447355 0.368928 -0.814718 -0.674794 0.458624 0.578202 0.586964 0.808428 0.043782 -0.483237 0.320493 -0.814718 -0.718759 0.386094 0.578202 0.499868 0.864994 0.043782 -0.514166 0.268082 -0.814718 -0.755265 0.308636 0.578202 0.406457 0.912620 0.043782 -0.539431 0.212717 -0.814718 -0.783453 0.227779 0.578202 0.308569 0.950194 0.043782 -0.558755 0.155009 -0.814718 -0.803011 0.144413 0.578202 0.207283 0.977301 0.043782 -0.571827 0.096166 -0.814718 -0.813664 0.060270 0.578202 0.104707 0.993539 0.043782 -0.578757 0.035705 -0.814718 -0.815500 -0.025339 0.578202 0.000000 0.999041 0.043782 -0.579312 -0.025150 -0.814718 -0.808353 -0.110670 0.578202 -0.104707 0.993539 0.043782 -0.573571 -0.085154 -0.814718 -0.792496 -0.193989 0.578202 -0.207283 0.977301 0.043782 -0.561487 -0.144799 -0.814718 -0.767800 -0.275980 0.578202 -0.308569 0.950194 0.043782 -0.543219 -0.202850 -0.814718 -0.734647 -0.354931 0.578202 -0.406457 0.912620 0.043782 -0.518967 -0.258666 -0.814718 -0.693402 -0.429973 0.578202 -0.499868 0.864994 0.043782 -0.489310 -0.311143 -0.814718 -0.645018 -0.499633 0.578202 -0.586964 0.808428 0.043782 -0.454005 -0.360713 -0.814718 -0.589101 -0.564484 0.578202 -0.668461 0.742458 0.043782 -0.413699 -0.406309 -0.814718 -0.526694 -0.623117 0.578202 -0.742594 0.668309 0.043782 -0.369284 -0.447061 -0.814718 -0.459161 -0.674428 0.578202 -0.807961 0.587608 0.043782 -0.320395 -0.483303 -0.814718 -0.385947 -0.718837 0.578202 -0.865096 0.499691 0.043782 -0.267977 -0.514221 -0.814718 -0.308483 -0.755328 0.578202 -0.912703 0.406271 0.043782 -0.212607 -0.539474 -0.814718 -0.227620 -0.783500 0.578202 -0.950257 0.308376 0.043782 -0.155454 -0.558631 -0.814718 -0.145053 -0.802896 0.578202 -0.977135 0.208061 0.043782 -0.096049 -0.571847 -0.814718 -0.060105 -0.813677 0.578202 -0.993560 0.104504 0.043782 -0.822995 -0.391615 0.411481 -0.350318 0.920129 0.175041 -0.447164 -0.000091 -0.894452 -0.777419 -0.475714 0.411481 -0.444825 0.878346 0.175041 -0.444692 -0.046957 -0.894452 -0.723833 -0.553849 0.411481 -0.533605 0.827422 0.175041 -0.437415 -0.092868 -0.894452 -0.661799 -0.626662 0.411481 -0.617386 0.766939 0.175041 -0.425273 -0.138200 -0.894452 -0.592476 -0.692572 0.411481 -0.694366 0.698009 0.175041 -0.408446 -0.182011 -0.894452 -0.517377 -0.750336 0.411481 -0.763077 0.622153 0.175041 -0.387344 -0.223429 -0.894452 -0.435887 -0.800429 0.411481 -0.824080 0.538751 0.175041 -0.361794 -0.262795 -0.894452 -0.349596 -0.841704 0.411481 -0.876006 0.449414 0.175041 -0.332258 -0.299266 -0.894452 -0.259454 -0.873709 0.411481 -0.918284 0.355128 0.175041 -0.299063 -0.332441 -0.894452 -0.167350 -0.895923 0.411481 -0.950189 0.257879 0.175041 -0.262936 -0.361692 -0.894452 -0.072529 -0.908528 0.411481 -0.971983 0.156872 0.175041 -0.223580 -0.387257 -0.894452 0.023091 -0.911126 0.411481 -0.983072 0.054138 0.175041 -0.181761 -0.408557 -0.894452 0.117552 -0.903806 0.411481 -0.983380 -0.048210 0.175041 -0.138366 -0.425219 -0.894452 0.211630 -0.886508 0.411481 -0.972911 -0.151010 0.175041 -0.093038 -0.437379 -0.894452 0.303377 -0.859445 0.411481 -0.951726 -0.252146 0.175041 -0.046685 -0.444721 -0.894452 0.391112 -0.823234 0.411481 -0.920343 -0.349756 0.175041 -0.000182 -0.447164 -0.894452 0.475239 -0.777709 0.411481 -0.878617 -0.444288 0.175041 0.046685 -0.444721 -0.894452 0.554131 -0.723618 0.411481 -0.827214 -0.533927 0.175041 0.093038 -0.437379 -0.894452 0.626919 -0.661555 0.411481 -0.766699 -0.617684 0.175041 0.138366 -0.425219 -0.894452 0.692210 -0.592899 0.411481 -0.698433 -0.693940 0.175041 0.181761 -0.408557 -0.894452 0.750538 -0.517085 0.411481 -0.621857 -0.763318 0.175041 0.223580 -0.387257 -0.894452 0.800598 -0.435575 0.411481 -0.538430 -0.824290 0.175041 0.262936 -0.361692 -0.894452 0.841491 -0.350110 0.411481 -0.449949 -0.875732 0.175041 0.299063 -0.332441 -0.894452 0.873550 -0.259987 0.411481 -0.355688 -0.918067 0.175041 0.332258 -0.299266 -0.894452 0.895988 -0.167001 0.411481 -0.257509 -0.950289 0.175041 0.361794 -0.262795 -0.894452 0.908556 -0.072175 0.411481 -0.156494 -0.972044 0.175041 0.387344 -0.223429 -0.894452 0.911140 0.022534 0.411481 -0.054738 -0.983038 0.175041 0.408446 -0.182011 -0.894452 0.903760 0.117904 0.411481 0.048593 -0.983361 0.175041 0.425273 -0.138200 -0.894452 0.886425 0.211975 0.411481 0.151388 -0.972853 0.175041 0.437415 -0.092868 -0.894452 0.859630 0.302852 0.411481 0.251565 -0.951880 0.175041 0.444692 -0.046957 -0.894452 0.823155 0.391280 0.411481 0.349943 -0.920272 0.175041 0.447164 -0.000091 -0.894452 0.777612 0.475397 0.411481 0.444467 -0.878527 0.175041 0.444711 0.046775 -0.894452 0.723505 0.554278 0.411481 0.534095 -0.827105 0.175041 0.437360 0.093127 -0.894452 0.662054 0.626392 0.411481 0.617073 -0.767190 0.175041 0.425329 0.138027 -0.894452 0.592758 0.692331 0.411481 0.694082 -0.698291 0.175041 0.408520 0.181844 -0.894452 0.516932 0.750643 0.411481 0.763445 -0.621701 0.175041 0.387212 0.223659 -0.894452 0.435412 0.800687 0.411481 0.824399 -0.538262 0.175041 0.361638 0.263010 -0.894452 0.349938 0.841562 0.411481 0.875823 -0.449771 0.175041 0.332380 0.299131 -0.894452 0.259809 0.873603 0.411481 0.918139 -0.355501 0.175041 0.299199 0.332319 -0.894452 0.166819 0.896022 0.411481 0.950342 -0.257316 0.175041 0.262721 0.361847 -0.894452 0.072899 0.908498 0.411481 0.971919 -0.157268 0.175041 0.223738 0.387166 -0.894452 -0.022720 0.911135 0.411481 0.983049 -0.054538 0.175041 0.181928 0.408483 -0.894452 -0.118088 0.903736 0.411481 0.983351 0.048793 0.175041 0.138114 0.425301 -0.894452 -0.212156 0.886382 0.411481 0.972822 0.151587 0.175041 0.092778 0.437434 -0.894452 -0.303027 0.859568 0.411481 0.951829 0.251759 0.175041 0.046866 0.444702 -0.894452 -0.391447 0.823075 0.411481 0.920201 0.350131 0.175041 0.000000 0.447164 -0.894452 -0.475555 0.777516 0.411481 0.878436 0.444646 0.175041 -0.046866 0.444702 -0.894452 -0.553702 0.723946 0.411481 0.827530 0.533436 0.175041 -0.092778 0.437434 -0.894452 -0.626527 0.661927 0.411481 0.767065 0.617229 0.175041 -0.138114 0.425301 -0.894452 -0.692451 0.592617 0.411481 0.698150 0.694224 0.175041 -0.181928 0.408483 -0.894452 -0.750748 0.516779 0.411481 0.621545 0.763572 0.175041 -0.223738 0.387166 -0.894452 -0.800340 0.436050 0.411481 0.538919 0.823970 0.175041 -0.262721 0.361847 -0.894452 -0.841633 0.349767 0.411481 0.449593 0.875915 0.175041 -0.299199 0.332319 -0.894452 -0.873656 0.259631 0.411481 0.355314 0.918211 0.175041 -0.332380 0.299131 -0.894452 -0.895889 0.167532 0.411481 0.258073 0.950136 0.175041 -0.361638 0.263010 -0.894452 -0.908513 0.072714 0.411481 0.157070 0.971951 0.175041 -0.387212 0.223659 -0.894452 -0.911130 -0.022905 0.411481 0.054338 0.983060 0.175041 -0.408520 0.181844 -0.894452 -0.903712 -0.118272 0.411481 -0.048993 0.983341 0.175041 -0.425329 0.138027 -0.894452 -0.886551 -0.211450 0.411481 -0.150812 0.972942 0.175041 -0.437360 0.093127 -0.894452 -0.859507 -0.303202 0.411481 -0.251952 0.951778 0.175041 -0.444711 0.046775 -0.894452 -0.044296 0.715111 0.697606 0.045026 0.699010 -0.713693 -0.998003 -0.000203 -0.063162 -0.119000 0.706530 0.697606 -0.028484 0.699880 -0.713693 -0.992486 -0.104800 -0.063162 -0.191704 0.690359 0.697606 -0.100986 0.693141 -0.713693 -0.976243 -0.207266 -0.063162 -0.263003 0.666465 0.697606 -0.173076 0.678740 -0.713693 -0.949144 -0.308442 -0.063162 -0.331405 0.635230 0.697606 -0.243260 0.656862 -0.713693 -0.911590 -0.406220 -0.063162 -0.395559 0.597394 0.697606 -0.310136 0.628060 -0.713693 -0.864493 -0.498660 -0.063162 -0.455992 0.552646 0.697606 -0.374253 0.592096 -0.713693 -0.807469 -0.586519 -0.063162 -0.511402 0.501811 0.697606 -0.434248 0.549611 -0.713693 -0.741551 -0.667917 -0.063162 -0.561179 0.445449 0.697606 -0.489459 0.501072 -0.713693 -0.667464 -0.741958 -0.063162 -0.604390 0.384785 0.697606 -0.538832 0.447552 -0.713693 -0.586833 -0.807241 -0.063162 -0.641389 0.319321 0.697606 -0.582771 0.388614 -0.713693 -0.498996 -0.864299 -0.063162 -0.671324 0.250340 0.697606 -0.620291 0.325395 -0.713693 -0.405663 -0.911838 -0.063162 -0.693685 0.179296 0.697606 -0.650720 0.259243 -0.713693 -0.308811 -0.949024 -0.063162 -0.708656 0.105605 0.697606 -0.674306 0.189615 -0.713693 -0.207646 -0.976163 -0.063162 -0.715822 0.030751 0.697606 -0.690466 0.117898 -0.713693 -0.104194 -0.992549 -0.063162 -0.715138 -0.043859 0.697606 -0.698983 0.045453 -0.713693 -0.000406 -0.998003 -0.063162 -0.706603 -0.118569 0.697606 -0.699897 -0.028056 -0.713693 0.104194 -0.992549 -0.063162 -0.690285 -0.191973 0.697606 -0.693102 -0.101256 -0.713693 0.207646 -0.976163 -0.063162 -0.666363 -0.263262 0.697606 -0.678672 -0.173340 -0.713693 0.308811 -0.949024 -0.063162 -0.635432 -0.331017 0.697606 -0.657011 -0.242858 -0.713693 0.405663 -0.911838 -0.063162 -0.597240 -0.395792 0.697606 -0.627939 -0.310380 -0.713693 0.498996 -0.864299 -0.063162 -0.552469 -0.456207 0.697606 -0.591950 -0.374483 -0.713693 0.586833 -0.807241 -0.063162 -0.502124 -0.511095 0.697606 -0.549876 -0.433912 -0.713693 0.667464 -0.741958 -0.063162 -0.445792 -0.560906 0.697606 -0.501370 -0.489153 -0.713693 0.741551 -0.667917 -0.063162 -0.384550 -0.604540 0.697606 -0.447342 -0.539006 -0.713693 0.807469 -0.586519 -0.063162 -0.319072 -0.641514 0.697606 -0.388387 -0.582922 -0.713693 0.864493 -0.498660 -0.063162 -0.250751 -0.671171 0.697606 -0.325774 -0.620092 -0.713693 0.911590 -0.406220 -0.063162 -0.179026 -0.693755 0.697606 -0.258990 -0.650821 -0.713693 0.949144 -0.308442 -0.063162 -0.105330 -0.708697 0.697606 -0.189353 -0.674380 -0.713693 0.976243 -0.207266 -0.063162 -0.031189 -0.715803 0.697606 -0.118320 -0.690394 -0.713693 0.992486 -0.104800 -0.063162 0.044004 -0.715129 0.697606 -0.045310 -0.698992 -0.713693 0.998003 -0.000203 -0.063162 0.118713 -0.706579 0.697606 0.028198 -0.699891 -0.713693 0.992528 0.104396 -0.063162 0.192113 -0.690246 0.697606 0.101397 -0.693081 -0.713693 0.976120 0.207845 -0.063162 0.262732 -0.666572 0.697606 0.172800 -0.678810 -0.713693 0.949269 0.308056 -0.063162 0.331146 -0.635365 0.697606 0.242992 -0.656961 -0.713693 0.911755 0.405849 -0.063162 0.395913 -0.597159 0.697606 0.310508 -0.627876 -0.713693 0.864198 0.499172 -0.063162 0.456319 -0.552376 0.697606 0.374604 -0.591874 -0.713693 0.807121 0.586997 -0.063162 0.511197 -0.502020 0.697606 0.434024 -0.549788 -0.713693 0.741823 0.667615 -0.063162 0.560997 -0.445678 0.697606 0.489255 -0.501271 -0.713693 0.667766 0.741687 -0.063162 0.604618 -0.384427 0.697606 0.539097 -0.447233 -0.713693 0.586354 0.807588 -0.063162 0.641259 -0.319582 0.697606 0.582613 -0.388851 -0.713693 0.499348 0.864096 -0.063162 0.671222 -0.250614 0.697606 0.620159 -0.325648 -0.713693 0.406035 0.911672 -0.063162 0.693792 -0.178885 0.697606 0.650873 -0.258857 -0.713693 0.308249 0.949207 -0.063162 0.708719 -0.105185 0.697606 0.674419 -0.189215 -0.713693 0.207067 0.976286 -0.063162 0.715809 -0.031043 0.697606 0.690418 -0.118180 -0.713693 0.104598 0.992507 -0.063162 0.715120 0.044150 0.697606 0.699001 -0.045168 -0.713693 0.000000 0.998003 -0.063162 0.706555 0.118857 0.697606 0.699886 0.028341 -0.713693 -0.104598 0.992507 -0.063162 0.690398 0.191564 0.697606 0.693162 0.100845 -0.713693 -0.207067 0.976286 -0.063162 0.666519 0.262867 0.697606 0.678775 0.172938 -0.713693 -0.308249 0.949207 -0.063162 0.635297 0.331276 0.697606 0.656912 0.243126 -0.713693 -0.406035 0.911672 -0.063162 0.597079 0.396035 0.697606 0.627812 0.310636 -0.713693 -0.499348 0.864096 -0.063162 0.552739 0.455879 0.697606 0.592172 0.374132 -0.713693 -0.586354 0.807588 -0.063162 0.501916 0.511300 0.697606 0.549699 0.434136 -0.713693 -0.667766 0.741687 -0.063162 0.445563 0.561088 0.697606 0.501171 0.489357 -0.713693 -0.741823 0.667615 -0.063162 0.384908 0.604311 0.697606 0.447662 0.538741 -0.713693 -0.807121 0.586997 -0.063162 0.319452 0.641324 0.697606 0.388732 0.582692 -0.713693 -0.864198 0.499172 -0.063162 0.250477 0.671273 0.697606 0.325521 0.620225 -0.713693 -0.911755 0.405849 -0.063162 0.178743 0.693828 0.697606 0.258724 0.650926 -0.713693 -0.949269 0.308056 -0.063162 0.105750 0.708635 0.697606 0.189752 0.674268 -0.713693 -0.976120 0.207845 -0.063162 0.030897 0.715815 0.697606 0.118039 0.690442 -0.713693 -0.992528 0.104396 -0.063162 -0.787123 -0.541646 0.295053 -0.507214 0.840607 0.190038 -0.350957 -0.000071 -0.936392 -0.726020 -0.621159 0.295053 -0.592522 0.782817 0.190038 -0.349016 -0.036854 -0.936392 -0.657613 -0.693173 0.295053 -0.670587 0.717076 0.190038 -0.343305 -0.072887 -0.936392 -0.581342 -0.758278 0.295053 -0.742049 0.642845 0.190038 -0.333775 -0.108466 -0.936392 -0.498667 -0.815031 0.295053 -0.805337 0.561532 0.190038 -0.320569 -0.142851 -0.936392 -0.411362 -0.862395 0.295053 -0.859279 0.474894 0.190038 -0.304007 -0.175358 -0.936392 -0.318712 -0.900759 0.295053 -0.904319 0.382220 0.190038 -0.283954 -0.206255 -0.936392 -0.222550 -0.929201 0.295053 -0.939398 0.285336 0.190038 -0.260773 -0.234879 -0.936392 -0.123938 -0.947409 0.295053 -0.964130 0.185309 0.190038 -0.234720 -0.260916 -0.936392 -0.024915 -0.955156 0.295053 -0.978158 0.084219 0.190038 -0.206365 -0.283873 -0.936392 0.075330 -0.952507 0.295053 -0.981597 -0.018763 0.190038 -0.175477 -0.303939 -0.936392 0.174744 -0.939366 0.295053 -0.974225 -0.121538 0.190038 -0.142655 -0.320656 -0.936392 0.271318 -0.916150 0.295053 -0.956344 -0.222018 0.190038 -0.108596 -0.333733 -0.936392 0.365843 -0.882668 0.295053 -0.927808 -0.321027 0.190038 -0.073021 -0.343276 -0.936392 0.456338 -0.839464 0.295053 -0.889052 -0.416500 0.190038 -0.036641 -0.349039 -0.936392 0.541165 -0.787454 0.295053 -0.840916 -0.506700 0.190038 -0.000143 -0.350957 -0.936392 0.620716 -0.726399 0.295053 -0.783179 -0.592044 0.190038 0.036641 -0.349039 -0.936392 0.693429 -0.657343 0.295053 -0.716815 -0.670866 0.190038 0.073021 -0.343276 -0.936392 0.758504 -0.581047 0.295053 -0.642556 -0.742299 0.190038 0.108596 -0.333733 -0.936392 0.814726 -0.499165 0.295053 -0.562024 -0.804993 0.190038 0.142655 -0.320656 -0.936392 0.862555 -0.411027 0.295053 -0.474560 -0.859464 0.190038 0.175477 -0.303939 -0.936392 0.900883 -0.318361 0.295053 -0.381868 -0.904468 0.190038 0.206365 -0.283873 -0.936392 0.929065 -0.223118 0.295053 -0.285910 -0.939224 0.190038 0.234720 -0.260916 -0.936392 0.947333 -0.124516 0.295053 -0.185898 -0.964016 0.190038 0.260773 -0.234879 -0.936392 0.955166 -0.024543 0.295053 -0.083838 -0.978191 0.190038 0.283954 -0.206255 -0.936392 0.952478 0.075700 0.295053 0.019145 -0.981590 0.190038 0.304007 -0.175358 -0.936392 0.939472 0.174170 0.295053 0.120943 -0.974299 0.190038 0.320569 -0.142851 -0.936392 0.916044 0.271674 0.295053 0.222390 -0.956257 0.190038 0.333775 -0.108466 -0.936392 0.882526 0.366186 0.295053 0.321388 -0.927683 0.190038 0.343305 -0.072887 -0.936392 0.839742 0.455825 0.295053 0.415957 -0.889306 0.190038 0.349016 -0.036854 -0.936392 0.787344 0.541326 0.295053 0.506872 -0.840813 0.190038 0.350957 -0.000071 -0.936392 0.726273 0.620864 0.295053 0.592203 -0.783059 0.190038 0.349031 0.036712 -0.936392 0.657202 0.693563 0.295053 0.671012 -0.716679 0.190038 0.343261 0.073091 -0.936392 0.581650 0.758041 0.295053 0.741787 -0.643147 0.190038 0.333819 0.108330 -0.936392 0.498999 0.814828 0.295053 0.805108 -0.561860 0.190038 0.320627 0.142720 -0.936392 0.410851 0.862639 0.295053 0.859561 -0.474385 0.190038 0.303903 0.175538 -0.936392 0.318178 0.900948 0.295053 0.904546 -0.381684 0.190038 0.283831 0.206423 -0.936392 0.222929 0.929111 0.295053 0.939282 -0.285719 0.190038 0.260869 0.234773 -0.936392 0.124323 0.947358 0.295053 0.964054 -0.185701 0.190038 0.234826 0.260821 -0.936392 0.024349 0.955171 0.295053 0.978208 -0.083639 0.190038 0.206197 0.283996 -0.936392 -0.074942 0.952537 0.295053 0.981605 0.018363 0.190038 0.175600 0.303867 -0.936392 -0.174362 0.939437 0.295053 0.974274 0.121141 0.190038 0.142786 0.320598 -0.936392 -0.271861 0.915989 0.295053 0.956212 0.222585 0.190038 0.108398 0.333797 -0.936392 -0.366366 0.882451 0.295053 0.927617 0.321577 0.190038 0.072817 0.343320 -0.936392 -0.455996 0.839650 0.295053 0.889221 0.416138 0.190038 0.036783 0.349024 -0.936392 -0.541486 0.787234 0.295053 0.840710 0.507043 0.190038 0.000000 0.350957 -0.936392 -0.621011 0.726146 0.295053 0.782938 0.592363 0.190038 -0.036783 0.349024 -0.936392 -0.693039 0.657754 0.295053 0.717213 0.670441 0.190038 -0.072817 0.343320 -0.936392 -0.758160 0.581496 0.295053 0.642996 0.741918 0.190038 -0.108398 0.333797 -0.936392 -0.814929 0.498833 0.295053 0.561696 0.805222 0.190038 -0.142786 0.320598 -0.936392 -0.862722 0.410675 0.295053 0.474210 0.859657 0.190038 -0.175600 0.303867 -0.936392 -0.900694 0.318895 0.295053 0.382404 0.904241 0.190038 -0.206197 0.283996 -0.936392 -0.929156 0.222739 0.295053 0.285527 0.939340 0.190038 -0.234826 0.260821 -0.936392 -0.947383 0.124130 0.295053 0.185505 0.964092 0.190038 -0.260869 0.234773 -0.936392 -0.955151 0.025109 0.295053 0.084418 0.978141 0.190038 -0.283831 0.206423 -0.936392 -0.952522 -0.075136 0.295053 -0.018563 0.981601 0.190038 -0.303903 0.175538 -0.936392 -0.939402 -0.174553 0.295053 -0.121340 0.974250 0.190038 -0.320627 0.142720 -0.936392 -0.915933 -0.272048 0.295053 -0.222780 0.956167 0.190038 -0.333819 0.108330 -0.936392 -0.882743 -0.365663 0.295053 -0.320838 0.927873 0.190038 -0.343261 0.073091 -0.936392 -0.839557 -0.456167 0.295053 -0.416319 0.889137 0.190038 -0.349031 0.036712 -0.936392 0.012298 0.488002 -0.872756 0.007109 -0.872842 -0.487950 -0.999899 -0.000204 -0.014203 -0.038916 0.486603 -0.872756 0.098550 -0.867290 -0.487950 -0.994371 -0.104999 -0.014203 -0.089221 0.479934 -0.872756 0.188053 -0.852373 -0.487950 -0.978098 -0.207660 -0.014203 -0.139030 0.467940 -0.872756 0.276352 -0.827970 -0.487950 -0.950947 -0.309028 -0.014203 -0.187308 0.450791 -0.872756 0.361607 -0.794446 -0.487950 -0.913321 -0.406992 -0.014203 -0.233094 0.428911 -0.872756 0.442127 -0.752614 -0.487950 -0.866135 -0.499607 -0.014203 -0.276763 0.402119 -0.872756 0.518571 -0.702131 -0.487950 -0.809003 -0.587633 -0.014203 -0.317384 0.370897 -0.872756 0.589304 -0.643914 -0.487950 -0.742959 -0.669186 -0.014203 -0.354509 0.335590 -0.872756 0.653545 -0.578605 -0.487950 -0.668732 -0.743368 -0.014203 -0.387432 0.296975 -0.872756 0.710081 -0.507632 -0.487950 -0.587948 -0.808774 -0.014203 -0.416423 0.254733 -0.872756 0.759373 -0.430415 -0.487950 -0.499944 -0.865941 -0.014203 -0.440827 0.209686 -0.872756 0.800302 -0.348456 -0.487950 -0.406434 -0.913570 -0.014203 -0.460214 0.162790 -0.872756 0.832152 -0.263492 -0.487950 -0.309398 -0.950827 -0.014203 -0.474741 0.113660 -0.872756 0.855184 -0.174826 -0.487950 -0.208041 -0.978017 -0.014203 -0.484038 0.063278 -0.872756 0.868798 -0.084233 -0.487950 -0.104392 -0.994435 -0.014203 -0.487994 0.012596 -0.872756 0.872847 0.006576 -0.487950 -0.000407 -0.999899 -0.014203 -0.486627 -0.038619 -0.872756 0.867350 0.098020 -0.487950 0.104392 -0.994435 -0.014203 -0.479899 -0.089408 -0.872756 0.852300 0.188385 -0.487950 0.208041 -0.978017 -0.014203 -0.467886 -0.139213 -0.872756 0.827862 0.276674 -0.487950 0.309398 -0.950827 -0.014203 -0.450906 -0.187033 -0.872756 0.794667 0.361122 -0.487950 0.406434 -0.913570 -0.014203 -0.428820 -0.233261 -0.872756 0.752442 0.442420 -0.487950 0.499944 -0.865941 -0.014203 -0.402011 -0.276920 -0.872756 0.701929 0.518845 -0.487950 0.587948 -0.808774 -0.014203 -0.371091 -0.317157 -0.872756 0.644274 0.588910 -0.487950 0.668732 -0.743368 -0.014203 -0.335807 -0.354303 -0.872756 0.579004 0.653192 -0.487950 0.742959 -0.669186 -0.014203 -0.296824 -0.387547 -0.872756 0.507356 0.710278 -0.487950 0.809003 -0.587633 -0.014203 -0.254572 -0.416522 -0.872756 0.430119 0.759541 -0.487950 0.866135 -0.499607 -0.014203 -0.209956 -0.440699 -0.872756 0.348945 0.800089 -0.487950 0.913321 -0.406992 -0.014203 -0.162611 -0.460277 -0.872756 0.263169 0.832254 -0.487950 0.950947 -0.309028 -0.014203 -0.113475 -0.474785 -0.872756 0.174493 0.855252 -0.487950 0.978098 -0.207660 -0.014203 -0.063573 -0.484000 -0.872756 0.084764 0.868746 -0.487950 0.994371 -0.104999 -0.014203 -0.012497 -0.487997 -0.872756 -0.006753 0.872845 -0.487950 0.999899 -0.000204 -0.014203 0.038718 -0.486619 -0.872756 -0.098197 0.867330 -0.487950 0.994414 0.104594 -0.014203 0.089506 -0.479881 -0.872756 -0.188558 0.852262 -0.487950 0.977975 0.208240 -0.014203 0.138840 -0.467996 -0.872756 -0.276015 0.828082 -0.487950 0.951073 0.308641 -0.014203 0.187125 -0.450868 -0.872756 -0.361284 0.794593 -0.487950 0.913487 0.406620 -0.014203 0.233348 -0.428772 -0.872756 -0.442573 0.752352 -0.487950 0.865839 0.500121 -0.014203 0.277001 -0.401954 -0.872756 -0.518988 0.701824 -0.487950 0.808654 0.588112 -0.014203 0.317233 -0.371026 -0.872756 -0.589042 0.644154 -0.487950 0.743232 0.668883 -0.014203 0.354372 -0.335735 -0.872756 -0.653309 0.578871 -0.487950 0.669035 0.743096 -0.014203 0.387608 -0.296745 -0.872756 -0.710381 0.507211 -0.487950 0.587468 0.809123 -0.014203 0.416319 -0.254903 -0.872756 -0.759198 0.430724 -0.487950 0.500297 0.865737 -0.014203 0.440742 -0.209866 -0.872756 -0.800160 0.348782 -0.487950 0.406806 0.913404 -0.014203 0.460310 -0.162517 -0.872756 -0.832308 0.262999 -0.487950 0.308834 0.951010 -0.014203 0.474808 -0.113378 -0.872756 -0.855288 0.174319 -0.487950 0.207461 0.978140 -0.014203 0.484013 -0.063475 -0.872756 -0.868763 0.084587 -0.487950 0.104797 0.994392 -0.014203 0.487999 -0.012397 -0.872756 -0.872844 -0.006931 -0.487950 0.000000 0.999899 -0.014203 0.486611 0.038817 -0.872756 -0.867310 -0.098373 -0.487950 -0.104797 0.994392 -0.014203 0.479952 0.089124 -0.872756 -0.852412 -0.187880 -0.487950 -0.207461 0.978140 -0.014203 0.467968 0.138935 -0.872756 -0.828026 -0.276184 -0.487950 -0.308834 0.951010 -0.014203 0.450829 0.187216 -0.872756 -0.794520 -0.361446 -0.487950 -0.406806 0.913404 -0.014203 0.428725 0.233435 -0.872756 -0.752262 -0.442726 -0.487950 -0.500297 0.865737 -0.014203 0.402175 0.276681 -0.872756 -0.702237 -0.518429 -0.487950 -0.587468 0.809123 -0.014203 0.370962 0.317308 -0.872756 -0.644034 -0.589173 -0.487950 -0.669035 0.743096 -0.014203 0.335663 0.354440 -0.872756 -0.578738 -0.653427 -0.487950 -0.743232 0.668883 -0.014203 0.297054 0.387371 -0.872756 -0.507777 -0.709977 -0.487950 -0.808654 0.588112 -0.014203 0.254818 0.416371 -0.872756 -0.430569 -0.759286 -0.487950 -0.865839 0.500121 -0.014203 0.209776 0.440785 -0.872756 -0.348620 -0.800231 -0.487950 -0.913487 0.406620 -0.014203 0.162424 0.460343 -0.872756 -0.262830 -0.832361 -0.487950 -0.951073 0.308641 -0.014203 0.113757 0.474717 -0.872756 -0.175000 -0.855149 -0.487950 -0.977975 0.208240 -0.014203 0.063376 0.484025 -0.872756 -0.084410 -0.868780 -0.487950 -0.994414 0.104594 -0.014203 0.258763 0.893425 -0.367196 0.514949 -0.449212 -0.730093 -0.817233 -0.000166 -0.576308 0.163700 0.915625 -0.367196 0.559194 -0.392767 -0.730093 -0.812714 -0.085817 -0.576308 0.067762 0.927672 -0.367196 0.596947 -0.332594 -0.730093 -0.799414 -0.169724 -0.576308 -0.029838 0.929665 -0.367196 0.628517 -0.268198 -0.730093 -0.777223 -0.252573 -0.576308 -0.127109 0.921418 -0.367196 0.653165 -0.200847 -0.730093 -0.746471 -0.332641 -0.576308 -0.222077 0.903244 -0.367196 0.670486 -0.131955 -0.730093 -0.707906 -0.408337 -0.576308 -0.315520 0.874994 -0.367196 0.680623 -0.060957 -0.730093 -0.661210 -0.480281 -0.576308 -0.405488 0.837106 -0.367196 0.683263 0.010713 -0.730093 -0.607232 -0.546936 -0.576308 -0.490990 0.789998 -0.367196 0.678378 0.082265 -0.730093 -0.546565 -0.607566 -0.576308 -0.570349 0.734758 -0.367196 0.666172 0.152244 -0.730093 -0.480539 -0.661023 -0.576308 -0.644215 0.670935 -0.367196 0.646547 0.221226 -0.730093 -0.408612 -0.707747 -0.576308 -0.710986 0.599721 -0.367196 0.619800 0.287770 -0.730093 -0.332185 -0.746674 -0.576308 -0.769403 0.522672 -0.367196 0.586577 0.350558 -0.730093 -0.252876 -0.777125 -0.576308 -0.819945 0.439154 -0.367196 0.546606 0.410105 -0.730093 -0.170035 -0.799348 -0.576308 -0.861456 0.350799 -0.367196 0.500613 0.465135 -0.730093 -0.085321 -0.812767 -0.576308 -0.893267 0.259308 -0.367196 0.449526 0.514675 -0.730093 -0.000333 -0.817233 -0.576308 -0.915525 0.164259 -0.367196 0.393109 0.558954 -0.730093 0.085321 -0.812767 -0.576308 -0.927698 0.067401 -0.367196 0.332361 0.597076 -0.730093 0.170035 -0.799348 -0.576308 -0.929653 -0.030199 -0.367196 0.267953 0.628621 -0.730093 0.252876 -0.777125 -0.576308 -0.921495 -0.126546 -0.367196 0.201247 0.653042 -0.730093 0.332185 -0.746674 -0.576308 -0.903157 -0.222428 -0.367196 0.131695 0.670537 -0.730093 0.408612 -0.707747 -0.576308 -0.874871 -0.315861 -0.367196 0.060692 0.680647 -0.730093 0.480539 -0.661023 -0.576308 -0.837354 -0.404977 -0.367196 -0.010295 0.683270 -0.730093 0.546565 -0.607566 -0.576308 -0.790297 -0.490507 -0.367196 -0.081850 0.678428 -0.730093 0.607232 -0.546936 -0.576308 -0.734536 -0.570634 -0.367196 -0.152504 0.666113 -0.730093 0.661210 -0.480281 -0.576308 -0.670684 -0.644476 -0.367196 -0.221477 0.646461 -0.730093 0.707906 -0.408337 -0.576308 -0.600156 -0.710620 -0.367196 -0.287391 0.619976 -0.730093 0.746471 -0.332641 -0.576308 -0.522372 -0.769606 -0.367196 -0.350786 0.586441 -0.730093 0.777223 -0.252573 -0.576308 -0.438835 -0.820116 -0.367196 -0.410318 0.546446 -0.730093 0.799414 -0.169724 -0.576308 -0.351326 -0.861242 -0.367196 -0.464829 0.500897 -0.730093 0.812714 -0.085817 -0.576308 -0.259127 -0.893320 -0.367196 -0.514766 0.449421 -0.730093 0.817233 -0.000166 -0.576308 -0.164073 -0.915558 -0.367196 -0.559034 0.392995 -0.730093 0.812749 0.085486 -0.576308 -0.067212 -0.927712 -0.367196 -0.597144 0.332240 -0.730093 0.799313 0.170197 -0.576308 0.029459 -0.929677 -0.367196 -0.628408 0.268454 -0.730093 0.777326 0.252257 -0.576308 0.126734 -0.921469 -0.367196 -0.653083 0.201113 -0.730093 0.746607 0.332337 -0.576308 0.222612 -0.903112 -0.367196 -0.670564 0.131558 -0.730093 0.707664 0.408756 -0.576308 0.316039 -0.874807 -0.367196 -0.680659 0.060554 -0.730093 0.660926 0.480673 -0.576308 0.405147 -0.837271 -0.367196 -0.683268 -0.010435 -0.730093 0.607455 0.546688 -0.576308 0.490668 -0.790198 -0.367196 -0.678411 -0.081988 -0.730093 0.546812 0.607343 -0.576308 0.570784 -0.734420 -0.367196 -0.666082 -0.152639 -0.730093 0.480147 0.661308 -0.576308 0.643942 -0.671197 -0.367196 -0.646637 -0.220962 -0.730093 0.408900 0.707580 -0.576308 0.710742 -0.600011 -0.367196 -0.619917 -0.287517 -0.730093 0.332489 0.746539 -0.576308 0.769713 -0.522216 -0.367196 -0.586369 -0.350906 -0.730093 0.252415 0.777275 -0.576308 0.820206 -0.438668 -0.367196 -0.546362 -0.410429 -0.730093 0.169561 0.799449 -0.576308 0.861313 -0.351150 -0.367196 -0.500803 -0.464931 -0.730093 0.085652 0.812732 -0.576308 0.893373 -0.258945 -0.367196 -0.449316 -0.514858 -0.730093 0.000000 0.817233 -0.576308 0.915592 -0.163887 -0.367196 -0.392881 -0.559114 -0.730093 -0.085652 0.812732 -0.576308 0.927658 -0.067951 -0.367196 -0.332715 -0.596879 -0.730093 -0.169561 0.799449 -0.576308 0.929671 0.029648 -0.367196 -0.268326 -0.628462 -0.730093 -0.252415 0.777275 -0.576308 0.921443 0.126921 -0.367196 -0.200980 -0.653124 -0.730093 -0.332489 0.746539 -0.576308 0.903066 0.222796 -0.367196 -0.131422 -0.670591 -0.730093 -0.408900 0.707580 -0.576308 0.875058 0.315342 -0.367196 -0.061096 -0.680611 -0.730093 -0.480147 0.661308 -0.576308 0.837189 0.405318 -0.367196 0.010574 -0.683266 -0.730093 -0.546812 0.607343 -0.576308 0.790098 0.490829 -0.367196 0.082127 -0.678394 -0.730093 -0.607455 0.546688 -0.576308 0.734874 0.570199 -0.367196 0.152109 -0.666203 -0.730093 -0.660926 0.480673 -0.576308 0.671066 0.644079 -0.367196 0.221094 -0.646592 -0.730093 -0.707664 0.408756 -0.576308 0.599866 0.710864 -0.367196 0.287644 -0.619859 -0.730093 -0.746607 0.332337 -0.576308 0.522059 0.769819 -0.367196 0.351025 -0.586298 -0.730093 -0.777326 0.252257 -0.576308 0.439321 0.819856 -0.367196 0.409994 -0.546689 -0.730093 -0.799313 0.170197 -0.576308 0.350975 0.861385 -0.367196 0.465033 -0.500708 -0.730093 -0.812749 0.085486 -0.576308 -0.431024 -0.732054 0.527555 -0.463350 0.681246 0.566754 -0.774290 -0.000158 -0.632831 -0.351926 -0.773197 0.527555 -0.532197 0.628932 0.566754 -0.770009 -0.081308 -0.632831 -0.269757 -0.805554 0.527555 -0.594613 0.570285 0.566754 -0.757408 -0.160805 -0.632831 -0.183843 -0.829390 0.527555 -0.651108 0.504825 0.566754 -0.736383 -0.239302 -0.632831 -0.095905 -0.844090 0.527555 -0.700431 0.433803 0.566754 -0.707247 -0.315162 -0.632831 -0.007759 -0.849485 0.527555 -0.741681 0.358746 0.566754 -0.670708 -0.386880 -0.632831 0.081315 -0.845620 0.527555 -0.775195 0.279037 0.566754 -0.626466 -0.455044 -0.632831 0.169495 -0.832440 0.527555 -0.800171 0.196254 0.566754 -0.575324 -0.518196 -0.632831 0.255807 -0.810091 0.527555 -0.816333 0.111309 0.566754 -0.517845 -0.575640 -0.632831 0.338522 -0.779158 0.527555 -0.823478 0.025962 0.566754 -0.455288 -0.626289 -0.632831 0.418319 -0.739388 0.527555 -0.821663 -0.060487 0.566754 -0.387141 -0.670557 -0.632831 0.493509 -0.691473 0.527555 -0.810799 -0.146270 0.566754 -0.314730 -0.707439 -0.632831 0.562626 -0.636504 0.527555 -0.791233 -0.229651 0.566754 -0.239588 -0.736290 -0.632831 0.626237 -0.574032 0.527555 -0.762806 -0.311313 0.566754 -0.161100 -0.757345 -0.632831 0.682951 -0.505236 0.527555 -0.725977 -0.389546 0.566754 -0.080838 -0.770059 -0.632831 0.731791 -0.431471 0.527555 -0.681529 -0.462933 0.566754 -0.000315 -0.774290 -0.632831 0.772982 -0.352398 0.527555 -0.629257 -0.531813 0.566754 0.080838 -0.770059 -0.632831 0.805659 -0.269443 0.527555 -0.570054 -0.594835 0.566754 0.161100 -0.757345 -0.632831 0.829461 -0.183521 0.527555 -0.504571 -0.651304 0.566754 0.239588 -0.736290 -0.632831 0.844031 -0.096421 0.527555 -0.434231 -0.700166 0.566754 0.314730 -0.707439 -0.632831 0.849488 -0.007429 0.527555 -0.358457 -0.741821 0.566754 0.387141 -0.670557 -0.632831 0.845588 0.081644 0.527555 -0.278735 -0.775304 0.566754 0.455288 -0.626289 -0.632831 0.832544 0.168986 0.527555 -0.196743 -0.800051 0.566754 0.517845 -0.575640 -0.632831 0.810248 0.255312 0.527555 -0.111808 -0.816265 0.566754 0.575324 -0.518196 -0.632831 0.779027 0.338826 0.527555 -0.025642 -0.823488 0.566754 0.626466 -0.455044 -0.632831 0.739225 0.418607 0.527555 0.060807 -0.821640 0.566754 0.670708 -0.386880 -0.632831 0.691774 0.493086 0.527555 0.145775 -0.810888 0.566754 0.707247 -0.315162 -0.632831 0.636285 0.562873 0.527555 0.229959 -0.791144 0.566754 0.736383 -0.239302 -0.632831 0.573788 0.626461 0.527555 0.311610 -0.762685 0.566754 0.757408 -0.160805 -0.632831 0.505653 0.682642 0.527555 0.389102 -0.726215 0.566754 0.770009 -0.081308 -0.632831 0.431322 0.731879 0.527555 0.463072 -0.681435 0.566754 0.774290 -0.000158 -0.632831 0.352241 0.773054 0.527555 0.531941 -0.629149 0.566754 0.770042 0.080994 -0.632831 0.269279 0.805713 0.527555 0.594951 -0.569933 0.566754 0.757313 0.161254 -0.632831 0.184181 0.829315 0.527555 0.650902 -0.505090 0.566754 0.736480 0.239002 -0.632831 0.096249 0.844051 0.527555 0.700255 -0.434089 0.566754 0.707375 0.314874 -0.632831 0.007256 0.849490 0.527555 0.741894 -0.358306 0.566754 0.670478 0.387278 -0.632831 -0.081817 0.845572 0.527555 0.775361 -0.278577 0.566754 0.626196 0.455416 -0.632831 -0.169155 0.832509 0.527555 0.800091 -0.196580 0.566754 0.575535 0.517962 -0.632831 -0.255477 0.810196 0.527555 0.816288 -0.111642 0.566754 0.518079 0.575430 -0.632831 -0.338984 0.778958 0.527555 0.823493 -0.025474 0.566754 0.454917 0.626559 -0.632831 -0.418018 0.739558 0.527555 0.821688 0.060152 0.566754 0.387414 0.670400 -0.632831 -0.493227 0.691674 0.527555 0.810858 0.145940 0.566754 0.315018 0.707311 -0.632831 -0.563003 0.636171 0.527555 0.791097 0.230120 0.566754 0.239152 0.736432 -0.632831 -0.626577 0.573660 0.527555 0.762622 0.311765 0.566754 0.160651 0.757441 -0.632831 -0.682745 0.505514 0.527555 0.726136 0.389250 0.566754 0.081151 0.770026 -0.632831 -0.731966 0.431173 0.527555 0.681341 0.463211 0.566754 0.000000 0.774290 -0.632831 -0.773125 0.352083 0.527555 0.629040 0.532069 0.566754 -0.081151 0.770026 -0.632831 -0.805499 0.269921 0.527555 0.570406 0.594497 0.566754 -0.160651 0.757441 -0.632831 -0.829352 0.184012 0.527555 0.504957 0.651005 0.566754 -0.239152 0.736432 -0.632831 -0.844070 0.096077 0.527555 0.433946 0.700343 0.566754 -0.315018 0.707311 -0.632831 -0.849491 0.007083 0.527555 0.358155 0.741966 0.566754 -0.387414 0.670400 -0.632831 -0.845636 -0.081143 0.527555 0.279195 0.775139 0.566754 -0.454917 0.626559 -0.632831 -0.832475 -0.169325 0.527555 0.196417 0.800131 0.566754 -0.518079 0.575430 -0.632831 -0.810144 -0.255642 0.527555 0.111476 0.816310 0.566754 -0.575535 0.517962 -0.632831 -0.779227 -0.338364 0.527555 0.026130 0.823472 0.566754 -0.626196 0.455416 -0.632831 -0.739473 -0.418169 0.527555 -0.060320 0.821676 0.566754 -0.670478 0.387278 -0.632831 -0.691573 -0.493368 0.527555 -0.146105 0.810828 0.566754 -0.707375 0.314874 -0.632831 -0.636056 -0.563132 0.527555 -0.230281 0.791050 0.566754 -0.736480 0.239002 -0.632831 -0.574159 -0.626120 0.527555 -0.311158 0.762870 0.566754 -0.757313 0.161254 -0.632831 -0.505375 -0.682848 0.527555 -0.389398 0.726057 0.566754 -0.770042 0.080994 -0.632831 -0.344513 0.852454 0.393234 0.561525 0.522802 -0.641380 -0.752331 -0.000153 -0.658786 -0.431958 0.811652 0.393234 0.503639 0.578774 -0.641380 -0.748171 -0.079002 -0.658786 -0.513884 0.762424 0.393234 0.440833 0.627931 -0.641380 -0.735927 -0.156245 -0.658786 -0.590962 0.704366 0.393234 0.372594 0.670675 -0.641380 -0.715499 -0.232515 -0.658786 -0.661530 0.638550 0.393234 0.300250 0.706032 -0.641380 -0.687189 -0.306224 -0.658786 -0.724245 0.566425 0.393234 0.225333 0.733387 -0.641380 -0.651686 -0.375908 -0.658786 -0.779621 0.487399 0.393234 0.147228 0.752964 -0.641380 -0.608699 -0.442139 -0.658786 -0.826411 0.403005 0.393234 0.067501 0.764248 -0.641380 -0.559007 -0.503500 -0.658786 -0.864097 0.314172 0.393234 -0.012970 0.767114 -0.641380 -0.503158 -0.559315 -0.658786 -0.892043 0.222770 0.393234 -0.092536 0.761622 -0.641380 -0.442376 -0.608527 -0.658786 -0.910478 0.128050 0.393234 -0.171850 0.747729 -0.641380 -0.376161 -0.651540 -0.658786 -0.918884 0.031921 0.393234 -0.249270 0.725600 -0.641380 -0.305804 -0.687376 -0.658786 -0.917233 -0.063644 0.393234 -0.323250 0.695802 -0.641380 -0.232793 -0.715408 -0.658786 -0.905511 -0.159426 0.393234 -0.394395 0.658091 -0.641380 -0.156531 -0.735866 -0.658786 -0.883815 -0.253452 0.393234 -0.461195 0.613131 -0.641380 -0.078545 -0.748219 -0.658786 -0.852665 -0.343992 0.393234 -0.522458 0.561844 -0.641380 -0.000306 -0.752331 -0.658786 -0.811916 -0.431463 0.393234 -0.578466 0.503992 -0.641380 0.078545 -0.748219 -0.658786 -0.762224 -0.514181 0.393234 -0.628102 0.440589 -0.641380 0.156531 -0.735866 -0.658786 -0.704136 -0.591236 0.393234 -0.670820 0.372333 -0.641380 0.232793 -0.715408 -0.658786 -0.638954 -0.661139 0.393234 -0.705848 0.300682 -0.641380 0.305804 -0.687376 -0.658786 -0.566143 -0.724465 0.393234 -0.733475 0.225048 -0.641380 0.376161 -0.651540 -0.658786 -0.487096 -0.779811 0.393234 -0.753022 0.146935 -0.641380 0.442376 -0.608527 -0.658786 -0.403510 -0.826164 0.393234 -0.764207 0.067968 -0.641380 0.503158 -0.559315 -0.658786 -0.314699 -0.863905 0.393234 -0.767121 -0.012501 -0.641380 0.559007 -0.503500 -0.658786 -0.222423 -0.892130 0.393234 -0.761586 -0.092832 -0.641380 0.608699 -0.442139 -0.658786 -0.127696 -0.910528 0.393234 -0.747662 -0.172140 -0.641380 0.651686 -0.375908 -0.658786 -0.032482 -0.918865 0.393234 -0.725752 -0.248827 -0.641380 0.687189 -0.306224 -0.658786 0.064000 -0.917208 0.393234 -0.695676 -0.323521 -0.641380 0.715499 -0.232515 -0.658786 0.159778 -0.905449 0.393234 -0.657938 -0.394651 -0.641380 0.735927 -0.156245 -0.658786 0.252912 -0.883970 0.393234 -0.613413 -0.460821 -0.641380 0.748171 -0.079002 -0.658786 0.344165 -0.852595 0.393234 -0.561737 -0.522573 -0.641380 0.752331 -0.000153 -0.658786 0.431628 -0.811828 0.393234 -0.503874 -0.578569 -0.641380 0.748203 0.078697 -0.658786 0.514336 -0.762119 0.393234 -0.440461 -0.628192 -0.641380 0.735834 0.156681 -0.658786 0.590675 -0.704607 0.393234 -0.372867 -0.670523 -0.641380 0.715593 0.232223 -0.658786 0.661269 -0.638819 0.393234 -0.300538 -0.705910 -0.641380 0.687313 0.305944 -0.658786 0.724580 -0.565995 0.393234 -0.224898 -0.733520 -0.641380 0.651463 0.376294 -0.658786 0.779910 -0.486937 0.393234 -0.146781 -0.753052 -0.641380 0.608437 0.442500 -0.658786 0.826246 -0.403341 0.393234 -0.067812 -0.764220 -0.641380 0.559212 0.503272 -0.658786 0.863969 -0.314523 0.393234 0.012657 -0.767119 -0.641380 0.503386 0.559110 -0.658786 0.892175 -0.222241 0.393234 0.092987 -0.761567 -0.641380 0.442015 0.608789 -0.658786 0.910426 -0.128421 0.393234 0.171545 -0.747799 -0.641380 0.376427 0.651386 -0.658786 0.918871 -0.032295 0.393234 0.248975 -0.725702 -0.641380 0.306084 0.687251 -0.658786 0.917195 0.064187 0.393234 0.323662 -0.695611 -0.641380 0.232369 0.715546 -0.658786 0.905417 0.159962 0.393234 0.394785 -0.657857 -0.641380 0.156095 0.735959 -0.658786 0.883918 0.253092 0.393234 0.460946 -0.613319 -0.641380 0.078850 0.748187 -0.658786 0.852525 0.344339 0.393234 0.522687 -0.561631 -0.641380 0.000000 0.752331 -0.658786 0.811740 0.431793 0.393234 0.578672 -0.503756 -0.641380 -0.078850 0.748187 -0.658786 0.762529 0.513729 0.393234 0.627841 -0.440961 -0.641380 -0.156095 0.735959 -0.658786 0.704487 0.590818 0.393234 0.670599 -0.372730 -0.641380 -0.232369 0.715546 -0.658786 0.638685 0.661399 0.393234 0.705971 -0.300394 -0.641380 -0.306084 0.687251 -0.658786 0.565848 0.724696 0.393234 0.733566 -0.224749 -0.641380 -0.376427 0.651386 -0.658786 0.487558 0.779522 0.393234 0.752934 -0.147381 -0.641380 -0.442015 0.608789 -0.658786 0.403173 0.826328 0.393234 0.764234 -0.067656 -0.641380 -0.503386 0.559110 -0.658786 0.314348 0.864033 0.393234 0.767116 0.012813 -0.641380 -0.559212 0.503272 -0.658786 0.222952 0.891998 0.393234 0.761641 0.092381 -0.641380 -0.608437 0.442500 -0.658786 0.128236 0.910452 0.393234 0.747764 0.171697 -0.641380 -0.651463 0.376294 -0.658786 0.032108 0.918878 0.393234 0.725651 0.249123 -0.641380 -0.687313 0.305944 -0.658786 -0.064374 0.917182 0.393234 0.695545 0.323804 -0.641380 -0.715593 0.232223 -0.658786 -0.159241 0.905544 0.393234 0.658172 0.394261 -0.641380 -0.735834 0.156681 -0.658786 -0.253272 0.883867 0.393234 0.613225 0.461071 -0.641380 -0.748203 0.078697 -0.658786 -0.069162 -0.475225 -0.877142 0.037585 -0.879864 0.473736 -0.996897 -0.000203 0.078715 -0.018974 -0.479856 -0.877142 0.129594 -0.871079 0.473736 -0.991386 -0.104684 0.078715 0.030943 -0.479233 -0.877142 0.219323 -0.852919 0.473736 -0.975161 -0.207037 0.078715 0.081000 -0.473351 -0.877142 0.307507 -0.825235 0.473736 -0.948092 -0.308100 0.078715 0.130165 -0.462255 -0.877142 0.392304 -0.788461 0.473736 -0.910579 -0.405770 0.078715 0.177449 -0.446244 -0.877142 0.472037 -0.743475 0.473736 -0.863535 -0.498108 0.078715 0.223241 -0.425189 -0.877142 0.547359 -0.689907 0.473736 -0.806574 -0.585869 0.078715 0.266575 -0.399450 -0.877142 0.616651 -0.628741 0.473736 -0.740729 -0.667177 0.078715 0.306972 -0.369311 -0.877142 0.679152 -0.560649 0.473736 -0.666724 -0.741136 0.078715 0.343652 -0.335448 -0.877142 0.733685 -0.487115 0.473736 -0.586183 -0.806346 0.078715 0.376917 -0.297583 -0.877142 0.780697 -0.407537 0.473736 -0.498443 -0.863341 0.078715 0.406030 -0.256441 -0.877142 0.819110 -0.323469 0.473736 -0.405214 -0.910827 0.078715 0.430458 -0.212904 -0.877142 0.848265 -0.236688 0.473736 -0.308469 -0.947972 0.078715 0.450401 -0.166616 -0.877142 0.868399 -0.146480 0.473736 -0.207416 -0.975081 0.078715 0.465383 -0.118493 -0.877142 0.878969 -0.054659 0.473736 -0.104078 -0.991449 0.078715 0.475183 -0.069453 -0.877142 0.879887 0.037048 0.473736 -0.000406 -0.996897 0.078715 0.479845 -0.019267 -0.877142 0.871158 0.129062 0.473736 0.104078 -0.991449 0.078715 0.479221 0.031130 -0.877142 0.852834 0.219655 0.473736 0.207416 -0.975081 0.078715 0.473319 0.081184 -0.877142 0.825115 0.307828 0.473736 0.308469 -0.947972 0.078715 0.462334 0.129882 -0.877142 0.788701 0.391822 0.473736 0.405214 -0.910827 0.078715 0.446175 0.177623 -0.877142 0.743291 0.472326 0.473736 0.498443 -0.863341 0.078715 0.425102 0.223407 -0.877142 0.689695 0.547627 0.473736 0.586183 -0.806346 0.078715 0.399612 0.266331 -0.877142 0.629117 0.616267 0.473736 0.666724 -0.741136 0.078715 0.369498 0.306746 -0.877142 0.561063 0.678809 0.473736 0.740729 -0.667177 0.078715 0.335314 0.343783 -0.877142 0.486829 0.733874 0.473736 0.806574 -0.585869 0.078715 0.297437 0.377033 -0.877142 0.407233 0.780855 0.473736 0.863535 -0.498108 0.078715 0.256689 0.405873 -0.877142 0.323970 0.818912 0.473736 0.910579 -0.405770 0.078715 0.212737 0.430541 -0.877142 0.236358 0.848357 0.473736 0.948092 -0.308100 0.078715 0.166441 0.450466 -0.877142 0.146142 0.868456 0.473736 0.975161 -0.207037 0.078715 0.118778 0.465311 -0.877142 0.055196 0.878935 0.473736 0.991386 -0.104684 0.078715 0.069356 0.475197 -0.877142 -0.037227 0.879880 0.473736 0.996897 -0.000203 0.078715 0.019170 0.479849 -0.877142 -0.129240 0.871132 0.473736 0.991428 0.104280 0.078715 -0.031227 0.479215 -0.877142 -0.219829 0.852789 0.473736 0.975039 0.207615 0.078715 -0.080807 0.473384 -0.877142 -0.307171 0.825360 0.473736 0.948217 0.307714 0.078715 -0.129976 0.462308 -0.877142 -0.391983 0.788621 0.473736 0.910744 0.405399 0.078715 -0.177714 0.446139 -0.877142 -0.472477 0.743195 0.473736 0.863240 0.498619 0.078715 -0.223493 0.425056 -0.877142 -0.547768 0.689583 0.473736 0.806227 0.586347 0.078715 -0.266412 0.399558 -0.877142 -0.616395 0.628992 0.473736 0.741000 0.666875 0.078715 -0.306821 0.369436 -0.877142 -0.678923 0.560925 0.473736 0.667026 0.740865 0.078715 -0.343851 0.335244 -0.877142 -0.733973 0.486680 0.473736 0.585705 0.806693 0.078715 -0.376796 0.297737 -0.877142 -0.780531 0.407854 0.473736 0.498795 0.863138 0.078715 -0.405926 0.256606 -0.877142 -0.818978 0.323803 0.473736 0.405585 0.910662 0.078715 -0.430584 0.212649 -0.877142 -0.848405 0.236185 0.473736 0.307907 0.948155 0.078715 -0.450500 0.166349 -0.877142 -0.868486 0.145965 0.473736 0.206838 0.975204 0.078715 -0.465335 0.118683 -0.877142 -0.878947 0.055017 0.473736 0.104482 0.991407 0.078715 -0.475211 0.069259 -0.877142 -0.879872 -0.037406 0.473736 0.000000 0.996897 0.078715 -0.479852 0.019072 -0.877142 -0.871106 -0.129417 0.473736 -0.104482 0.991407 0.078715 -0.479240 -0.030846 -0.877142 -0.852964 -0.219150 0.473736 -0.206838 0.975204 0.078715 -0.473367 -0.080904 -0.877142 -0.825298 -0.307339 0.473736 -0.307907 0.948155 0.078715 -0.462281 -0.130070 -0.877142 -0.788541 -0.392144 0.473736 -0.405585 0.910662 0.078715 -0.446103 -0.177804 -0.877142 -0.743099 -0.472629 0.473736 -0.498795 0.863138 0.078715 -0.425234 -0.223155 -0.877142 -0.690019 -0.547218 0.473736 -0.585705 0.806693 0.078715 -0.399504 -0.266493 -0.877142 -0.628866 -0.616523 0.473736 -0.667026 0.740865 0.078715 -0.369373 -0.306897 -0.877142 -0.560787 -0.679038 0.473736 -0.741000 0.666875 0.078715 -0.335518 -0.343584 -0.877142 -0.487264 -0.733585 0.473736 -0.806227 0.586347 0.078715 -0.297660 -0.376856 -0.877142 -0.407695 -0.780614 0.473736 -0.863240 0.498619 0.078715 -0.256523 -0.405978 -0.877142 -0.323636 -0.819044 0.473736 -0.910744 0.405399 0.078715 -0.212561 -0.430627 -0.877142 -0.236012 -0.848453 0.473736 -0.948217 0.307714 0.078715 -0.166708 -0.450367 -0.877142 -0.146657 -0.868370 0.473736 -0.975039 0.207615 0.078715 -0.118588 -0.465359 -0.877142 -0.054838 -0.878958 0.473736 -0.991428 0.104280 0.078715 0.495519 -0.128744 -0.859003 -0.064176 -0.991678 0.111608 -0.866223 -0.000176 -0.499658 0.506284 -0.076101 -0.859003 0.040112 -0.992942 0.111608 -0.861434 -0.090962 -0.499658 0.511448 -0.023131 -0.859003 0.142975 -0.983413 0.111608 -0.847336 -0.179898 -0.499658 0.511056 0.030600 -0.859003 0.245257 -0.963012 0.111608 -0.823815 -0.267714 -0.499658 0.505034 0.083994 -0.859003 0.344837 -0.932004 0.111608 -0.791220 -0.352581 -0.499658 0.493586 0.135969 -0.859003 0.439727 -0.891170 0.111608 -0.750342 -0.432815 -0.499658 0.476617 0.186951 -0.859003 0.530706 -0.840175 0.111608 -0.700848 -0.509072 -0.499658 0.454398 0.235875 -0.859003 0.615840 -0.779926 0.111608 -0.643633 -0.579723 -0.499658 0.427174 0.282200 -0.859003 0.694190 -0.711086 0.111608 -0.579329 -0.643987 -0.499658 0.395570 0.325021 -0.859003 0.764259 -0.635179 0.111608 -0.509345 -0.700649 -0.499658 0.359327 0.364690 -0.859003 0.826621 -0.551580 0.111608 -0.433107 -0.750174 -0.499658 0.319126 0.400341 -0.859003 0.879878 -0.461907 0.111608 -0.352098 -0.791435 -0.499658 0.275841 0.431307 -0.859003 0.923076 -0.368069 0.111608 -0.268035 -0.823711 -0.499658 0.229118 0.457842 -0.859003 0.956568 -0.269297 0.111608 -0.180228 -0.847266 -0.499658 0.179871 0.479334 -0.859003 0.979524 -0.167558 0.111608 -0.090435 -0.861489 -0.499658 0.129046 0.495441 -0.859003 0.991638 -0.064782 0.111608 -0.000353 -0.866223 -0.499658 0.076410 0.506237 -0.859003 0.992967 0.039506 0.111608 0.090435 -0.861489 -0.499658 0.022932 0.511457 -0.859003 0.983358 0.143358 0.111608 0.180228 -0.847266 -0.499658 -0.030799 0.511044 -0.859003 0.962917 0.245631 0.111608 0.268035 -0.823711 -0.499658 -0.083685 0.505085 -0.859003 0.932214 0.344267 0.111608 0.352098 -0.791435 -0.499658 -0.136161 0.493533 -0.859003 0.890999 0.440074 0.111608 0.433107 -0.750174 -0.499658 -0.187137 0.476544 -0.859003 0.839969 0.531033 0.111608 0.509345 -0.700649 -0.499658 -0.235597 0.454542 -0.859003 0.780302 0.615363 0.111608 0.579329 -0.643987 -0.499658 -0.281939 0.427346 -0.859003 0.711510 0.693756 0.111608 0.643633 -0.579723 -0.499658 -0.325175 0.395444 -0.859003 0.634881 0.764506 0.111608 0.700848 -0.509072 -0.499658 -0.364829 0.359185 -0.859003 0.551259 0.826836 0.111608 0.750342 -0.432815 -0.499658 -0.400146 0.319370 -0.859003 0.462444 0.879596 0.111608 0.791220 -0.352581 -0.499658 -0.431415 0.275673 -0.859003 0.367710 0.923219 0.111608 0.823815 -0.267714 -0.499658 -0.457931 0.228940 -0.859003 0.268924 0.956673 0.111608 0.847336 -0.179898 -0.499658 -0.479224 0.180164 -0.859003 0.168157 0.979422 0.111608 0.861434 -0.090962 -0.499658 -0.495467 0.128945 -0.859003 0.064580 0.991652 0.111608 0.866223 -0.000176 -0.499658 -0.506253 0.076307 -0.859003 -0.039708 0.992959 0.111608 0.861471 0.090611 -0.499658 -0.511462 0.022828 -0.859003 -0.143558 0.983328 0.111608 0.847229 0.180400 -0.499658 -0.511068 -0.030392 -0.859003 -0.244864 0.963112 0.111608 0.823924 0.267379 -0.499658 -0.505068 -0.083788 -0.859003 -0.344457 0.932144 0.111608 0.791363 0.352259 -0.499658 -0.493505 -0.136261 -0.859003 -0.440255 0.890909 0.111608 0.750085 0.433260 -0.499658 -0.476506 -0.187234 -0.859003 -0.531204 0.839860 0.111608 0.700546 0.509488 -0.499658 -0.454494 -0.235690 -0.859003 -0.615522 0.780177 0.111608 0.643869 0.579460 -0.499658 -0.427289 -0.282026 -0.859003 -0.693900 0.711369 0.111608 0.579592 0.643751 -0.499658 -0.395377 -0.325255 -0.859003 -0.764635 0.634726 0.111608 0.508930 0.700951 -0.499658 -0.359475 -0.364543 -0.859003 -0.826396 0.551917 0.111608 0.433412 0.749997 -0.499658 -0.319289 -0.400211 -0.859003 -0.879690 0.462265 0.111608 0.352420 0.791291 -0.499658 -0.275586 -0.431471 -0.859003 -0.923294 0.367522 0.111608 0.267546 0.823869 -0.499658 -0.228847 -0.457978 -0.859003 -0.956728 0.268730 0.111608 0.179725 0.847373 -0.499658 -0.180066 -0.479260 -0.859003 -0.979456 0.167957 0.111608 0.090786 0.861452 -0.499658 -0.128845 -0.495493 -0.859003 -0.991665 0.064378 0.111608 0.000000 0.866223 -0.499658 -0.076204 -0.506268 -0.859003 -0.992951 -0.039910 0.111608 -0.090786 0.861452 -0.499658 -0.023235 -0.511444 -0.859003 -0.983442 -0.142775 0.111608 -0.179725 0.847373 -0.499658 0.030496 -0.511062 -0.859003 -0.963062 -0.245061 0.111608 -0.267546 0.823869 -0.499658 0.083891 -0.505051 -0.859003 -0.932074 -0.344647 0.111608 -0.352420 0.791291 -0.499658 0.136362 -0.493477 -0.859003 -0.890819 -0.440437 0.111608 -0.433412 0.749997 -0.499658 0.186854 -0.476655 -0.859003 -0.840283 -0.530535 0.111608 -0.508930 0.700951 -0.499658 0.235782 -0.454446 -0.859003 -0.780052 -0.615681 0.111608 -0.579592 0.643751 -0.499658 0.282113 -0.427232 -0.859003 -0.711228 -0.694045 0.111608 -0.643869 0.579460 -0.499658 0.324940 -0.395636 -0.859003 -0.635334 -0.764130 0.111608 -0.700546 0.509488 -0.499658 0.364616 -0.359401 -0.859003 -0.551749 -0.826509 0.111608 -0.750085 0.433260 -0.499658 0.400276 -0.319207 -0.859003 -0.462086 -0.879784 0.111608 -0.791363 0.352259 -0.499658 0.431527 -0.275498 -0.859003 -0.367334 -0.923369 0.111608 -0.823924 0.267379 -0.499658 0.457795 -0.229211 -0.859003 -0.269491 -0.956513 0.111608 -0.847229 0.180400 -0.499658 0.479297 -0.179969 -0.859003 -0.167758 -0.979490 0.111608 -0.861471 0.090611 -0.499658 0.301254 0.941475 0.151233 -0.841524 0.337084 -0.422151 -0.448423 -0.000091 0.893822 0.200922 0.967863 0.151233 -0.872218 0.247030 -0.422151 -0.445944 -0.047089 0.893822 0.099360 0.983492 0.151233 -0.893150 0.155148 -0.422151 -0.438646 -0.093129 0.893822 -0.004264 0.988489 0.151233 -0.904492 0.060685 -0.422151 -0.426469 -0.138589 0.893822 -0.107841 0.982598 0.151233 -0.905871 -0.034447 -0.422151 -0.409595 -0.182523 0.893822 -0.209265 0.966094 0.151233 -0.897400 -0.128301 -0.422151 -0.388434 -0.224058 0.893822 -0.309366 0.938840 0.151233 -0.879011 -0.221649 -0.422151 -0.362812 -0.263535 0.893822 -0.406059 0.901246 0.151233 -0.850940 -0.312555 -0.422151 -0.333193 -0.300108 0.893822 -0.498280 0.853725 0.151233 -0.813495 -0.400018 -0.422151 -0.299905 -0.333377 0.893822 -0.584215 0.797384 0.151233 -0.767573 -0.482308 -0.422151 -0.263676 -0.362709 0.893822 -0.664569 0.731763 0.151233 -0.712796 -0.560098 -0.422151 -0.224209 -0.388347 0.893822 -0.737603 0.658081 0.151233 -0.650168 -0.631720 -0.422151 -0.182273 -0.409707 0.893822 -0.801935 0.577953 0.151233 -0.581075 -0.695802 -0.422151 -0.138755 -0.426415 0.893822 -0.858092 0.490721 0.151233 -0.504949 -0.752871 -0.422151 -0.093300 -0.438609 0.893822 -0.904797 0.398084 0.151233 -0.423262 -0.801647 -0.422151 -0.046816 -0.445972 0.893822 -0.941290 0.301830 0.151233 -0.337598 -0.841318 -0.422151 -0.000183 -0.448423 0.893822 -0.967740 0.201513 0.151233 -0.247563 -0.872067 -0.422151 0.046816 -0.445972 0.893822 -0.983530 0.098977 0.151233 -0.154800 -0.893211 -0.422151 0.093300 -0.438609 0.893822 -0.988487 -0.004649 0.151233 -0.060333 -0.904516 -0.422151 0.138755 -0.426415 0.893822 -0.982664 -0.107241 0.151233 0.033893 -0.905892 -0.422151 0.182273 -0.409707 0.893822 -0.966012 -0.209641 0.151233 0.128650 -0.897350 -0.422151 0.224209 -0.388347 0.893822 -0.938720 -0.309731 0.151233 0.221991 -0.878925 -0.422151 0.263676 -0.362709 0.893822 -0.901494 -0.405509 0.151233 0.312035 -0.851130 -0.422151 0.299905 -0.333377 0.893822 -0.854029 -0.497758 0.151233 0.399521 -0.813739 -0.422151 0.333193 -0.300108 0.893822 -0.797157 -0.584525 0.151233 0.482606 -0.767385 -0.422151 0.362812 -0.263535 0.893822 -0.731504 -0.664854 0.151233 0.560376 -0.712578 -0.422151 0.388434 -0.224058 0.893822 -0.658531 -0.737201 0.151233 0.631322 -0.650554 -0.422151 0.409595 -0.182523 0.893822 -0.577641 -0.802159 0.151233 0.696028 -0.580804 -0.422151 0.426469 -0.138589 0.893822 -0.490387 -0.858283 0.151233 0.753067 -0.504656 -0.422151 0.438646 -0.093129 0.893822 -0.398637 -0.904554 0.151233 0.801388 -0.423752 -0.422151 0.445944 -0.047089 0.893822 -0.301638 -0.941352 0.151233 0.841387 -0.337427 -0.422151 0.448423 -0.000091 0.893822 -0.201316 -0.967781 0.151233 0.872118 -0.247385 -0.422151 0.445963 0.046907 0.893822 -0.098777 -0.983551 0.151233 0.893242 -0.154618 -0.422151 0.438590 0.093389 0.893822 0.003862 -0.988491 0.151233 0.904467 -0.061053 -0.422151 0.426526 0.138415 0.893822 0.107441 -0.982642 0.151233 0.905885 0.034078 -0.422151 0.409670 0.182356 0.893822 0.209837 -0.965969 0.151233 0.897324 0.128833 -0.422151 0.388301 0.224288 0.893822 0.309922 -0.938657 0.151233 0.878879 0.222170 -0.422151 0.362656 0.263750 0.893822 0.405692 -0.901411 0.151233 0.851067 0.312208 -0.422151 0.333316 0.299973 0.893822 0.497932 -0.853927 0.151233 0.813658 0.399686 -0.422151 0.300041 0.333255 0.893822 0.584688 -0.797038 0.151233 0.767287 0.482762 -0.422151 0.263461 0.362866 0.893822 0.664271 -0.732033 0.151233 0.713024 0.559808 -0.422151 0.224367 0.388256 0.893822 0.737335 -0.658381 0.151233 0.650425 0.631455 -0.422151 0.182440 0.409633 0.893822 0.802277 -0.577477 0.151233 0.580662 0.696146 -0.422151 0.138502 0.426497 0.893822 0.858382 -0.490212 0.151233 0.504503 0.753170 -0.422151 0.093040 0.438665 0.893822 0.904635 -0.398453 0.151233 0.423589 0.801474 -0.422151 0.046998 0.445953 0.893822 0.941413 -0.301446 0.151233 0.337255 0.841455 -0.422151 0.000000 0.448423 0.893822 0.967822 -0.201119 0.151233 0.247207 0.872168 -0.422151 -0.046998 0.445953 0.893822 0.983472 -0.099560 0.151233 0.155330 0.893119 -0.422151 -0.093040 0.438665 0.893822 0.988490 0.004063 0.151233 0.060869 0.904480 -0.422151 -0.138502 0.426497 0.893822 0.982620 0.107641 0.151233 -0.034262 0.905878 -0.422151 -0.182440 0.409633 0.893822 0.965927 0.210034 0.151233 -0.129016 0.897298 -0.422151 -0.224367 0.388256 0.893822 0.938903 0.309175 0.151233 -0.221470 0.879056 -0.422151 -0.263461 0.362866 0.893822 0.901329 0.405876 0.151233 -0.312381 0.851003 -0.422151 -0.300041 0.333255 0.893822 0.853826 0.498106 0.151233 -0.399852 0.813576 -0.422151 -0.333316 0.299973 0.893822 0.797503 0.584053 0.151233 -0.482151 0.767671 -0.422151 -0.362656 0.263750 0.893822 0.731898 0.664420 0.151233 -0.559953 0.712910 -0.422151 -0.388301 0.224288 0.893822 0.658231 0.737469 0.151233 -0.631587 0.650297 -0.422151 -0.409670 0.182356 0.893822 0.577314 0.802395 0.151233 -0.696265 0.580520 -0.422151 -0.426526 0.138415 0.893822 0.490896 0.857992 0.151233 -0.752768 0.505103 -0.422151 -0.438590 0.093389 0.893822 0.398269 0.904716 0.151233 -0.801561 0.423425 -0.422151 -0.445963 0.046907 0.893822 0.080065 0.991707 0.100529 -0.618799 0.128516 -0.774965 -0.781459 -0.000159 0.623957 -0.024314 0.994637 0.100529 -0.628860 0.062954 -0.774965 -0.777138 -0.082061 0.623957 -0.127438 0.986739 0.100529 -0.631998 -0.002670 -0.774965 -0.764420 -0.162294 0.623957 -0.230154 0.967948 0.100529 -0.628237 -0.068893 -0.774965 -0.743201 -0.241517 0.623957 -0.330334 0.938495 0.100529 -0.617557 -0.134357 -0.774965 -0.713795 -0.318080 0.623957 -0.425977 0.899132 0.100529 -0.600272 -0.197742 -0.774965 -0.676917 -0.390462 0.623957 -0.517866 0.849534 0.100529 -0.576242 -0.259565 -0.774965 -0.632266 -0.459257 0.623957 -0.604051 0.790580 0.100529 -0.545864 -0.318530 -0.774965 -0.580650 -0.522994 0.623957 -0.683583 0.722917 0.100529 -0.509473 -0.373986 -0.774965 -0.522639 -0.580970 0.623957 -0.754937 0.648046 0.100529 -0.467896 -0.424855 -0.774965 -0.459503 -0.632087 0.623957 -0.818699 0.565354 0.100529 -0.420791 -0.471554 -0.774965 -0.390725 -0.676765 0.623957 -0.873444 0.476435 0.100529 -0.369051 -0.513059 -0.774965 -0.317643 -0.713989 0.623957 -0.918184 0.383186 0.100529 -0.313795 -0.548599 -0.774965 -0.241806 -0.743106 0.623957 -0.953288 0.284844 0.100529 -0.254570 -0.578466 -0.774965 -0.162591 -0.764357 0.623957 -0.977892 0.183363 0.100529 -0.192541 -0.601961 -0.774965 -0.081586 -0.777188 0.623957 -0.991658 0.080671 0.100529 -0.128895 -0.618720 -0.774965 -0.000318 -0.781458 0.623957 -0.994652 -0.023706 0.100529 -0.063338 -0.628822 -0.774965 0.081586 -0.777188 0.623957 -0.986689 -0.127822 0.100529 0.002916 -0.631997 -0.774965 0.162591 -0.764357 0.623957 -0.967858 -0.230530 0.100529 0.069137 -0.628211 -0.774965 0.241806 -0.743106 0.623957 -0.938697 -0.329760 0.100529 0.133980 -0.617639 -0.774965 0.317643 -0.713989 0.623957 -0.898966 -0.426326 0.100529 0.197975 -0.600195 -0.774965 0.390725 -0.676765 0.623957 -0.849333 -0.518197 0.100529 0.259789 -0.576141 -0.774965 0.459503 -0.632087 0.623957 -0.790948 -0.603568 0.100529 0.318196 -0.546058 -0.774965 0.522639 -0.580970 0.623957 -0.723334 -0.683141 0.100529 0.373675 -0.509702 -0.774965 0.580650 -0.522994 0.623957 -0.647752 -0.755189 0.100529 0.425037 -0.467731 -0.774965 0.632266 -0.459257 0.623957 -0.565036 -0.818919 0.100529 0.471718 -0.420608 -0.774965 0.676917 -0.390462 0.623957 -0.476969 -0.873152 0.100529 0.512833 -0.369365 -0.774965 0.713795 -0.318080 0.623957 -0.382829 -0.918333 0.100529 0.548721 -0.313582 -0.774965 0.743201 -0.241517 0.623957 -0.284473 -0.953399 0.100529 0.578565 -0.254345 -0.774965 0.764420 -0.162294 0.623957 -0.183961 -0.977779 0.100529 0.601843 -0.192908 -0.774965 0.777138 -0.082061 0.623957 -0.080469 -0.991675 0.100529 0.618746 -0.128769 -0.774965 0.781459 -0.000159 0.623957 0.023908 -0.994647 0.100529 0.628835 -0.063210 -0.774965 0.777171 0.081744 0.623957 0.128023 -0.986663 0.100529 0.631996 0.003044 -0.774965 0.764324 0.162747 0.623957 0.229759 -0.968042 0.100529 0.628266 0.068637 -0.774965 0.743299 0.241214 0.623957 0.329952 -0.938630 0.100529 0.617612 0.134106 -0.774965 0.713924 0.317789 0.623957 0.426509 -0.898879 0.100529 0.600155 0.198097 -0.774965 0.676686 0.390863 0.623957 0.518369 -0.849227 0.100529 0.576088 0.259907 -0.774965 0.631994 0.459632 0.623957 0.603729 -0.790826 0.100529 0.545993 0.318308 -0.774965 0.580863 0.522757 0.623957 0.683288 -0.723195 0.100529 0.509625 0.373779 -0.774965 0.522876 0.580757 0.623957 0.755321 -0.647599 0.100529 0.467644 0.425132 -0.774965 0.459128 0.632360 0.623957 0.818469 -0.565688 0.100529 0.420983 0.471383 -0.774965 0.391001 0.676606 0.623957 0.873249 -0.476791 0.100529 0.369260 0.512909 -0.774965 0.317934 0.713859 0.623957 0.918411 -0.382642 0.100529 0.313470 0.548785 -0.774965 0.241366 0.743250 0.623957 0.953457 -0.284279 0.100529 0.254227 0.578617 -0.774965 0.162138 0.764453 0.623957 0.977817 -0.183762 0.100529 0.192786 0.601882 -0.774965 0.081902 0.777155 0.623957 0.991691 -0.080267 0.100529 0.128643 0.618773 -0.774965 0.000000 0.781459 0.623957 0.994642 0.024111 0.100529 0.063082 0.628847 -0.774965 -0.081902 0.777155 0.623957 0.986765 0.127237 0.100529 -0.002541 0.631998 -0.774965 -0.162138 0.764453 0.623957 0.967995 0.229956 0.100529 -0.068765 0.628251 -0.774965 -0.241366 0.743250 0.623957 0.938563 0.330143 0.100529 -0.134231 0.617584 -0.774965 -0.317934 0.713859 0.623957 0.898792 0.426693 0.100529 -0.198219 0.600115 -0.774965 -0.391001 0.676606 0.623957 0.849640 0.517693 0.100529 -0.259448 0.576294 -0.774965 -0.459128 0.632360 0.623957 0.790703 0.603890 0.100529 -0.318419 0.545929 -0.774965 -0.522876 0.580757 0.623957 0.723056 0.683436 0.100529 -0.373882 0.509549 -0.774965 -0.580863 0.522757 0.623957 0.648200 0.754805 0.100529 -0.424760 0.467982 -0.774965 -0.631994 0.459632 0.623957 0.565521 0.818584 0.100529 -0.471469 0.420887 -0.774965 -0.676686 0.390863 0.623957 0.476613 0.873347 0.100529 -0.512984 0.369156 -0.774965 -0.713924 0.317789 0.623957 0.382455 0.918489 0.100529 -0.548849 0.313358 -0.774965 -0.743299 0.241214 0.623957 0.285038 0.953230 0.100529 -0.578414 0.254688 -0.774965 -0.764324 0.162747 0.623957 0.183563 0.977854 0.100529 -0.601921 0.192663 -0.774965 -0.777171 0.081744 0.623957 0.395429 -0.912767 -0.102436 -0.883569 -0.408482 0.229018 -0.250883 -0.000051 -0.968017 0.488916 -0.866296 -0.102436 -0.835891 -0.498836 0.229018 -0.249496 -0.026345 -0.968017 0.576206 -0.810860 -0.102436 -0.779589 -0.582917 0.229018 -0.245413 -0.052104 -0.968017 0.658017 -0.746003 -0.102436 -0.714201 -0.661413 0.229018 -0.238601 -0.077538 -0.968017 0.732579 -0.672930 -0.102436 -0.640947 -0.732624 0.229018 -0.229160 -0.102118 -0.968017 0.798480 -0.593243 -0.102436 -0.561428 -0.795204 0.229018 -0.217321 -0.125356 -0.968017 0.856258 -0.506289 -0.102436 -0.474993 -0.849666 0.229018 -0.202986 -0.147442 -0.968017 0.904605 -0.413759 -0.102436 -0.383326 -0.894769 0.229018 -0.186415 -0.167905 -0.968017 0.942988 -0.316671 -0.102436 -0.287437 -0.930017 0.229018 -0.167791 -0.186517 -0.968017 0.970767 -0.217066 -0.102436 -0.189336 -0.954831 0.229018 -0.147521 -0.202928 -0.968017 0.988171 -0.114127 -0.102436 -0.088220 -0.969416 0.229018 -0.125440 -0.217272 -0.968017 0.994690 -0.009931 -0.102436 0.013867 -0.973323 0.229018 -0.101978 -0.229223 -0.968017 0.990347 0.093384 -0.102436 0.114835 -0.966625 0.229018 -0.077631 -0.238571 -0.968017 0.975105 0.196665 -0.102436 0.215512 -0.949266 0.229018 -0.052199 -0.245393 -0.968017 0.949123 0.297780 -0.102436 0.313815 -0.921450 0.229018 -0.026193 -0.249512 -0.968017 0.913008 0.394871 -0.102436 0.407942 -0.883818 0.229018 -0.000102 -0.250883 -0.968017 0.866594 0.488386 -0.102436 0.498325 -0.836195 0.229018 0.026193 -0.249512 -0.968017 0.810635 0.576522 -0.102436 0.583220 -0.779362 0.229018 0.052199 -0.245393 -0.968017 0.745747 0.658307 -0.102436 0.661691 -0.713944 0.229018 0.077631 -0.238571 -0.968017 0.673377 0.732168 -0.102436 0.732232 -0.641395 0.229018 0.101978 -0.229223 -0.968017 0.592932 0.798710 -0.102436 0.795422 -0.561119 0.229018 0.125440 -0.217272 -0.968017 0.505956 0.856455 -0.102436 0.849851 -0.474663 0.229018 0.147521 -0.202928 -0.968017 0.414311 0.904352 -0.102436 0.894535 -0.383873 0.229018 0.167791 -0.186517 -0.968017 0.317247 0.942794 -0.102436 0.929841 -0.288005 0.229018 0.186415 -0.167905 -0.968017 0.216688 0.970852 -0.102436 0.954905 -0.188965 0.229018 0.202986 -0.147442 -0.968017 0.113743 0.988215 -0.102436 0.969450 -0.087843 0.229018 0.217321 -0.125356 -0.968017 0.010539 0.994684 -0.102436 0.973332 0.013272 0.229018 0.229160 -0.102118 -0.968017 -0.093769 0.990310 -0.102436 0.966580 0.115212 0.229018 0.238601 -0.077538 -0.968017 -0.197044 0.975028 -0.102436 0.949182 0.215882 0.229018 0.245413 -0.052104 -0.968017 -0.297200 0.949305 -0.102436 0.921642 0.313252 0.229018 0.249496 -0.026345 -0.968017 -0.395057 0.912928 -0.102436 0.883735 0.408122 0.229018 0.250883 -0.000051 -0.968017 -0.488563 0.866495 -0.102436 0.836094 0.498496 0.229018 0.249507 0.026244 -0.968017 -0.576687 0.810518 -0.102436 0.779243 0.583379 0.229018 0.245382 0.052249 -0.968017 -0.657713 0.746271 -0.102436 0.714471 0.661122 0.229018 0.238632 0.077441 -0.968017 -0.732305 0.673228 -0.102436 0.641245 0.732363 0.229018 0.229202 0.102024 -0.968017 -0.798831 0.592770 -0.102436 0.560957 0.795536 0.229018 0.217247 0.125485 -0.968017 -0.856558 0.505782 -0.102436 0.474490 0.849947 0.229018 0.202898 0.147562 -0.968017 -0.904437 0.414127 -0.102436 0.383691 0.894613 0.229018 0.186483 0.167829 -0.968017 -0.942859 0.317055 -0.102436 0.287816 0.929899 0.229018 0.167867 0.186449 -0.968017 -0.970896 0.216491 -0.102436 0.188770 0.954943 0.229018 0.147401 0.203016 -0.968017 -0.988124 0.114530 -0.102436 0.088615 0.969380 0.229018 0.125529 0.217221 -0.968017 -0.994686 0.010336 -0.102436 -0.013471 0.973329 0.229018 0.102071 0.229181 -0.968017 -0.990291 -0.093971 -0.102436 -0.115408 0.966557 0.229018 0.077489 0.238617 -0.968017 -0.974988 -0.197243 -0.102436 -0.216075 0.949138 0.229018 0.052054 0.245424 -0.968017 -0.949244 -0.297393 -0.102436 -0.313440 0.921578 0.229018 0.026294 0.249502 -0.968017 -0.912847 -0.395243 -0.102436 -0.408302 0.883652 0.229018 0.000000 0.250883 -0.968017 -0.866395 -0.488739 -0.102436 -0.498666 0.835992 0.229018 -0.026294 0.249502 -0.968017 -0.810977 -0.576041 -0.102436 -0.582758 0.779707 0.229018 -0.052054 0.245424 -0.968017 -0.746137 -0.657865 -0.102436 -0.661268 0.714336 0.229018 -0.077489 0.238617 -0.968017 -0.673079 -0.732442 -0.102436 -0.732493 0.641096 0.229018 -0.102071 0.229181 -0.968017 -0.592607 -0.798952 -0.102436 -0.795650 0.560795 0.229018 -0.125529 0.217221 -0.968017 -0.506464 -0.856155 -0.102436 -0.849569 0.475166 0.229018 -0.147401 0.203016 -0.968017 -0.413943 -0.904521 -0.102436 -0.894691 0.383508 0.229018 -0.167867 0.186449 -0.968017 -0.316863 -0.942923 -0.102436 -0.929958 0.287626 0.229018 -0.186483 0.167829 -0.968017 -0.217264 -0.970723 -0.102436 -0.954792 0.189531 0.229018 -0.202898 0.147562 -0.968017 -0.114328 -0.988148 -0.102436 -0.969398 0.088418 0.229018 -0.217247 0.125485 -0.968017 -0.010134 -0.994688 -0.102436 -0.973326 -0.013669 0.229018 -0.229202 0.102024 -0.968017 0.094173 -0.990272 -0.102436 -0.966533 -0.115605 0.229018 -0.238632 0.077441 -0.968017 0.196466 -0.975145 -0.102436 -0.949309 -0.215319 0.229018 -0.245382 0.052249 -0.968017 0.297587 -0.949183 -0.102436 -0.921514 -0.313627 0.229018 -0.249507 0.026244 -0.968017 0.034807 -0.999323 -0.011875 -0.945210 -0.036777 0.324386 -0.324604 -0.000066 -0.945850 0.139352 -0.990172 -0.011875 -0.936149 -0.135639 0.324386 -0.322809 -0.034087 -0.945850 0.241391 -0.970355 -0.011875 -0.917010 -0.232090 0.324386 -0.317526 -0.067414 -0.945850 0.341762 -0.939712 -0.011875 -0.887635 -0.326921 0.324386 -0.308712 -0.100322 -0.945850 0.438368 -0.898717 -0.011875 -0.848483 -0.418151 0.324386 -0.296497 -0.132124 -0.945850 0.529298 -0.848353 -0.011875 -0.800489 -0.503975 0.324386 -0.281179 -0.162191 -0.945850 0.615296 -0.788207 -0.011875 -0.743260 -0.585097 0.324386 -0.262632 -0.190767 -0.945850 0.694517 -0.719378 -0.011875 -0.677844 -0.659773 0.324386 -0.241192 -0.217242 -0.945850 0.766088 -0.642626 -0.011875 -0.604962 -0.727183 0.324386 -0.217095 -0.241324 -0.945850 0.828661 -0.559624 -0.011875 -0.526203 -0.786056 0.324386 -0.190869 -0.262557 -0.945850 0.882750 -0.469692 -0.011875 -0.440920 -0.836877 0.324386 -0.162300 -0.281116 -0.945850 0.927116 -0.374587 -0.011875 -0.350781 -0.878479 0.324386 -0.131943 -0.296578 -0.945850 0.960993 -0.276317 -0.011875 -0.257689 -0.910148 0.324386 -0.100442 -0.308673 -0.945850 0.984661 -0.174076 -0.011875 -0.160879 -0.932143 0.324386 -0.067538 -0.317500 -0.945850 0.997482 -0.069918 -0.011875 -0.062298 -0.943871 0.324386 -0.033889 -0.322830 -0.945850 0.999345 0.034196 -0.011875 0.036199 -0.945232 0.324386 -0.000132 -0.324604 -0.945850 0.990257 0.138747 -0.011875 0.135067 -0.936232 0.324386 0.033889 -0.322830 -0.945850 0.970261 0.241768 -0.011875 0.232447 -0.916920 0.324386 0.067538 -0.317500 -0.945850 0.939579 0.342127 -0.011875 0.327267 -0.887508 0.324386 0.100442 -0.308673 -0.945850 0.898985 0.437819 -0.011875 0.417633 -0.848738 0.324386 0.131943 -0.296578 -0.945850 0.848147 0.529628 -0.011875 0.504287 -0.800293 0.324386 0.162300 -0.281116 -0.945850 0.787967 0.615603 -0.011875 0.585386 -0.743032 0.324386 0.190869 -0.262557 -0.945850 0.719802 0.694077 -0.011875 0.659359 -0.678247 0.324386 0.217095 -0.241324 -0.945850 0.643094 0.765695 -0.011875 0.726813 -0.605406 0.324386 0.241192 -0.217242 -0.945850 0.559302 0.828879 -0.011875 0.786261 -0.525897 0.324386 0.262632 -0.190767 -0.945850 0.469349 0.882933 -0.011875 0.837048 -0.440595 0.324386 0.281179 -0.162191 -0.945850 0.375154 0.926887 -0.011875 0.878265 -0.351318 0.324386 0.296497 -0.132124 -0.945850 0.275943 0.961101 -0.011875 0.910249 -0.257335 0.324386 0.308712 -0.100322 -0.945850 0.173693 0.984728 -0.011875 0.932206 -0.160517 0.324386 0.317526 -0.067414 -0.945850 0.070527 0.997439 -0.011875 0.943833 -0.062875 0.324386 0.322809 -0.034087 -0.945850 -0.034400 0.999338 -0.011875 0.945224 0.036392 0.324386 0.324604 -0.000066 -0.945850 -0.138948 0.990228 -0.011875 0.936204 0.135258 0.324386 0.322823 0.033955 -0.945850 -0.241966 0.970212 -0.011875 0.916872 0.232634 0.324386 0.317486 0.067602 -0.945850 -0.341379 0.939851 -0.011875 0.887768 0.326560 0.324386 0.308753 0.100196 -0.945850 -0.438002 0.898896 -0.011875 0.848653 0.417806 0.324386 0.296551 0.132004 -0.945850 -0.529800 0.848039 -0.011875 0.800190 0.504450 0.324386 0.281083 0.162357 -0.945850 -0.615763 0.787842 -0.011875 0.742913 0.585537 0.324386 0.262519 0.190923 -0.945850 -0.694224 0.719661 -0.011875 0.678113 0.659497 0.324386 0.241280 0.217144 -0.945850 -0.765826 0.642938 -0.011875 0.605258 0.726936 0.324386 0.217193 0.241236 -0.945850 -0.828993 0.559133 -0.011875 0.525737 0.786368 0.324386 0.190714 0.262671 -0.945850 -0.882559 0.470052 -0.011875 0.441261 0.836697 0.324386 0.162415 0.281050 -0.945850 -0.926963 0.374965 -0.011875 0.351139 0.878336 0.324386 0.132064 0.296524 -0.945850 -0.961157 0.275747 -0.011875 0.257149 0.910301 0.324386 0.100259 0.308732 -0.945850 -0.984764 0.173492 -0.011875 0.160327 0.932239 0.324386 0.067349 0.317540 -0.945850 -0.997454 0.070324 -0.011875 0.062683 0.943846 0.324386 0.034021 0.322816 -0.945850 -0.999331 -0.034603 -0.011875 -0.036584 0.945217 0.324386 0.000000 0.324604 -0.945850 -0.990200 -0.139150 -0.011875 -0.135449 0.936177 0.324386 -0.034021 0.322816 -0.945850 -0.970404 -0.241193 -0.011875 -0.231904 0.917057 0.324386 -0.067349 0.317540 -0.945850 -0.939781 -0.341570 -0.011875 -0.326741 0.887702 0.324386 -0.100259 0.308732 -0.945850 -0.898806 -0.438185 -0.011875 -0.417979 0.848568 0.324386 -0.132064 0.296524 -0.945850 -0.847931 -0.529973 -0.011875 -0.504613 0.800087 0.324386 -0.162415 0.281050 -0.945850 -0.788332 -0.615135 -0.011875 -0.584945 0.743379 0.324386 -0.190714 0.262671 -0.945850 -0.719520 -0.694370 -0.011875 -0.659635 0.677979 0.324386 -0.217193 0.241236 -0.945850 -0.642782 -0.765957 -0.011875 -0.727059 0.605110 0.324386 -0.241280 0.217144 -0.945850 -0.559793 -0.828547 -0.011875 -0.785949 0.526363 0.324386 -0.262519 0.190923 -0.945850 -0.469872 -0.882655 -0.011875 -0.836787 0.441091 0.324386 -0.281083 0.162357 -0.945850 -0.374776 -0.927039 -0.011875 -0.878408 0.350960 0.324386 -0.296551 0.132004 -0.945850 -0.275551 -0.961213 -0.011875 -0.910353 0.256964 0.324386 -0.308753 0.100196 -0.945850 -0.174277 -0.984625 -0.011875 -0.932111 0.161069 0.324386 -0.317486 0.067602 -0.945850 -0.070121 -0.997468 -0.011875 -0.943858 0.062490 0.324386 -0.322823 0.033955 -0.945850 -0.231609 -0.961765 0.146168 -0.813549 0.273876 0.512962 -0.533381 -0.000109 -0.845875 -0.129533 -0.980743 0.146168 -0.837773 0.187101 0.512962 -0.530432 -0.056010 -0.845875 -0.027020 -0.988891 0.146168 -0.852669 0.099119 0.512962 -0.521752 -0.110773 -0.845875 0.076772 -0.986276 0.146168 -0.858362 0.009207 0.512962 -0.507268 -0.164846 -0.845875 0.179718 -0.972798 0.146168 -0.854599 -0.080806 0.512962 -0.487197 -0.217104 -0.845875 0.279736 -0.948885 0.146168 -0.841593 -0.169088 0.512962 -0.462027 -0.266508 -0.845875 0.377645 -0.914341 0.146168 -0.819237 -0.256361 0.512962 -0.431550 -0.313464 -0.845875 0.471394 -0.869725 0.146168 -0.787856 -0.340811 0.512962 -0.396320 -0.356967 -0.845875 0.559952 -0.815530 0.146168 -0.747798 -0.421507 0.512962 -0.356725 -0.396538 -0.845875 0.641588 -0.752993 0.146168 -0.700000 -0.496861 0.512962 -0.313632 -0.431428 -0.845875 0.716974 -0.681603 0.146168 -0.644070 -0.567489 0.512962 -0.266688 -0.461923 -0.845875 0.784462 -0.602705 0.146168 -0.581046 -0.631867 0.512962 -0.216806 -0.487330 -0.845875 0.842792 -0.518012 0.146168 -0.512311 -0.688773 0.512962 -0.165044 -0.507204 -0.845875 0.892442 -0.426828 0.146168 -0.437301 -0.738673 0.512962 -0.110976 -0.521708 -0.845875 0.932261 -0.330943 0.146168 -0.357474 -0.780437 0.512962 -0.055686 -0.530466 -0.845875 0.961623 -0.232196 0.146168 -0.274372 -0.813382 0.512962 -0.000217 -0.533381 -0.845875 0.980663 -0.130132 0.146168 -0.187613 -0.837658 0.512962 0.055686 -0.530466 -0.845875 0.988901 -0.026635 0.146168 -0.098787 -0.852708 0.512962 0.110976 -0.521708 -0.845875 0.986246 0.077155 0.146168 -0.008873 -0.858365 0.512962 0.165044 -0.507204 -0.845875 0.972908 0.179123 0.146168 0.080284 -0.854649 0.512962 0.216806 -0.487330 -0.845875 0.948776 0.280104 0.146168 0.169415 -0.841527 0.512962 0.266688 -0.461923 -0.845875 0.914194 0.378000 0.146168 0.256680 -0.819137 0.512962 0.313632 -0.431428 -0.845875 0.870013 0.470863 0.146168 0.340330 -0.788064 0.512962 0.356725 -0.396538 -0.845875 0.815872 0.559453 0.146168 0.421050 -0.748055 0.512962 0.396320 -0.356967 -0.845875 0.752744 0.641881 0.146168 0.497133 -0.699806 0.512962 0.431550 -0.313464 -0.845875 0.681324 0.717239 0.146168 0.567740 -0.643849 0.512962 0.462027 -0.266508 -0.845875 0.603185 0.784094 0.146168 0.631512 -0.581432 0.512962 0.487197 -0.217104 -0.845875 0.517684 0.842994 0.146168 0.688972 -0.512042 0.512962 0.507268 -0.164846 -0.845875 0.426481 0.892608 0.146168 0.738843 -0.437013 0.512962 0.521752 -0.110773 -0.845875 0.331513 0.932059 0.146168 0.780219 -0.357951 0.512962 0.530432 -0.056010 -0.845875 0.232000 0.961671 0.146168 0.813437 -0.274207 0.512962 0.533381 -0.000109 -0.845875 0.129933 0.980690 0.146168 0.837696 -0.187443 0.512962 0.530455 0.055794 -0.845875 0.026434 0.988907 0.146168 0.852728 -0.098614 0.512962 0.521686 0.111082 -0.845875 -0.076370 0.986308 0.146168 0.858358 -0.009557 0.512962 0.507335 0.164640 -0.845875 -0.179321 0.972871 0.146168 0.854632 0.080458 0.512962 0.487286 0.216905 -0.845875 -0.280298 0.948719 0.146168 0.841493 0.169586 0.512962 0.461869 0.266782 -0.845875 -0.378187 0.914117 0.146168 0.819085 0.256847 0.512962 0.431364 0.313720 -0.845875 -0.471040 0.869917 0.146168 0.787995 0.340490 0.512962 0.396466 0.356806 -0.845875 -0.559619 0.815758 0.146168 0.747969 0.421203 0.512962 0.356886 0.396393 -0.845875 -0.642035 0.752613 0.146168 0.699705 0.497275 0.512962 0.313376 0.431614 -0.845875 -0.716696 0.681895 0.146168 0.644301 0.567227 0.512962 0.266876 0.461814 -0.845875 -0.784217 0.603025 0.146168 0.581303 0.631630 0.512962 0.217005 0.487242 -0.845875 -0.843099 0.517512 0.146168 0.511902 0.689076 0.512962 0.164743 0.507302 -0.845875 -0.892695 0.426299 0.146168 0.436863 0.738932 0.512962 0.110667 0.521774 -0.845875 -0.932127 0.331323 0.146168 0.357792 0.780291 0.512962 0.055902 0.530443 -0.845875 -0.961718 0.231805 0.146168 0.274041 0.813493 0.512962 0.000000 0.533381 -0.845875 -0.980716 0.129733 0.146168 0.187272 0.837734 0.512962 -0.055902 0.530443 -0.845875 -0.988885 0.027221 0.146168 0.099293 0.852649 0.512962 -0.110667 0.521774 -0.845875 -0.986292 -0.076571 0.146168 0.009382 0.858360 0.512962 -0.164743 0.507302 -0.845875 -0.972835 -0.179520 0.146168 -0.080632 0.854616 0.512962 -0.217005 0.487242 -0.845875 -0.948662 -0.280491 0.146168 -0.169758 0.841458 0.512962 -0.266876 0.461814 -0.845875 -0.914418 -0.377459 0.146168 -0.256194 0.819289 0.512962 -0.313376 0.431614 -0.845875 -0.869821 -0.471217 0.146168 -0.340651 0.787926 0.512962 -0.356886 0.396393 -0.845875 -0.815644 -0.559786 0.146168 -0.421355 0.747884 0.512962 -0.396466 0.356806 -0.845875 -0.753124 -0.641435 0.146168 -0.496718 0.700101 0.512962 -0.431364 0.313720 -0.845875 -0.681749 -0.716835 0.146168 -0.567358 0.644185 0.512962 -0.461869 0.266782 -0.845875 -0.602865 -0.784339 0.146168 -0.631748 0.581174 0.512962 -0.487286 0.216905 -0.845875 -0.517340 -0.843204 0.146168 -0.689180 0.511762 0.512962 -0.507335 0.164640 -0.845875 -0.427010 -0.892355 0.146168 -0.738584 0.437451 0.512962 -0.521686 0.111082 -0.845875 -0.331133 -0.932194 0.146168 -0.780364 0.357633 0.512962 -0.530455 0.055794 -0.845875 0.211219 -0.602915 0.769337 0.159384 0.797805 0.581466 -0.964356 -0.000196 0.264607 0.273246 -0.577457 0.769337 0.074891 0.810116 0.581466 -0.959025 -0.101267 0.264607 0.331717 -0.545971 0.769337 -0.009614 0.813514 0.581466 -0.943330 -0.200278 0.264607 0.387111 -0.508197 0.769337 -0.094823 0.808026 0.581466 -0.917144 -0.298043 0.264607 0.438242 -0.464827 0.769337 -0.178988 0.793637 0.581466 -0.880856 -0.392525 0.264607 0.484129 -0.416820 0.769337 -0.260410 0.770768 0.581466 -0.835347 -0.481848 0.264607 0.525148 -0.363784 0.769337 -0.339758 0.739230 0.581466 -0.780246 -0.566745 0.264607 0.560383 -0.306741 0.769337 -0.415364 0.699550 0.581466 -0.716550 -0.645399 0.264607 0.589446 -0.246320 0.769337 -0.486394 0.652164 0.581466 -0.644961 -0.716944 0.264607 0.611832 -0.183797 0.769337 -0.551469 0.598146 0.581466 -0.567048 -0.780025 0.264607 0.627726 -0.118660 0.769337 -0.611122 0.537054 0.581466 -0.482173 -0.835160 0.264607 0.636705 -0.052217 0.769337 -0.664043 0.470047 0.581466 -0.391987 -0.881096 0.264607 0.638686 0.014163 0.769337 -0.709252 0.398571 0.581466 -0.298400 -0.917028 0.264607 0.633684 0.081024 0.769337 -0.747119 0.322041 0.581466 -0.200645 -0.943252 0.264607 0.621702 0.146993 0.769337 -0.776756 0.241964 0.581466 -0.100681 -0.959086 0.264607 0.603044 0.210851 0.769337 -0.797708 0.159872 0.581466 -0.000393 -0.964356 0.264607 0.577624 0.272893 0.769337 -0.810070 0.075386 0.581466 0.100681 -0.959086 0.264607 0.545842 0.331929 0.769337 -0.813510 -0.009931 0.581466 0.200645 -0.943252 0.264607 0.508047 0.387309 0.769337 -0.807989 -0.095138 0.581466 0.298400 -0.917028 0.264607 0.465094 0.437958 0.769337 -0.793747 -0.178503 0.581466 0.391987 -0.881096 0.264607 0.416632 0.484291 0.769337 -0.770667 -0.260710 0.581466 0.482173 -0.835160 0.264607 0.363580 0.525290 0.769337 -0.739098 -0.340046 0.581466 0.567048 -0.780025 0.264607 0.307084 0.560196 0.769337 -0.699804 -0.414936 0.581466 0.644961 -0.716944 0.264607 0.246680 0.589295 0.769337 -0.652461 -0.485995 0.581466 0.716550 -0.645399 0.264607 0.183559 0.611904 0.769337 -0.597932 -0.551701 0.581466 0.780246 -0.566745 0.264607 0.118416 0.627772 0.769337 -0.536817 -0.611330 0.581466 0.835347 -0.481848 0.264607 0.052606 0.636673 0.769337 -0.470452 -0.663756 0.581466 0.880856 -0.392525 0.264607 -0.014412 0.638680 0.769337 -0.398295 -0.709407 0.581466 0.917144 -0.298043 0.264607 -0.081271 0.633652 0.769337 -0.321750 -0.747244 0.581466 0.943330 -0.200278 0.264607 -0.146613 0.621791 0.769337 -0.242439 -0.776608 0.581466 0.959025 -0.101267 0.264607 -0.210974 0.603001 0.769337 -0.159709 -0.797741 0.581466 0.964356 -0.000196 0.264607 -0.273010 0.577568 0.769337 -0.075221 -0.810086 0.581466 0.959066 0.100876 0.264607 -0.332040 0.545774 0.769337 0.010096 -0.813508 0.581466 0.943211 0.200838 0.264607 -0.386904 0.508355 0.769337 0.094494 -0.808064 0.581466 0.917265 0.297670 0.264607 -0.438053 0.465005 0.769337 0.178665 -0.793710 0.581466 0.881016 0.392166 0.264607 -0.484376 0.416533 0.769337 0.260867 -0.770614 0.581466 0.835062 0.482343 0.264607 -0.525364 0.363473 0.769337 0.340196 -0.739029 0.581466 0.779910 0.567207 0.264607 -0.560258 0.306970 0.769337 0.415079 -0.699719 0.581466 0.716813 0.645107 0.264607 -0.589345 0.246560 0.769337 0.486128 -0.652362 0.581466 0.645253 0.716681 0.264607 -0.611941 0.183434 0.769337 0.551823 -0.597820 0.581466 0.566586 0.780361 0.264607 -0.627677 0.118916 0.769337 0.610903 -0.537303 0.581466 0.482513 0.834964 0.264607 -0.636684 0.052476 0.769337 0.663851 -0.470317 0.581466 0.392346 0.880936 0.264607 -0.638677 -0.014542 0.769337 0.709488 -0.398151 0.581466 0.297856 0.917205 0.264607 -0.633635 -0.081400 0.769337 0.747310 -0.321598 0.581466 0.200086 0.943371 0.264607 -0.621762 -0.146739 0.769337 0.776658 -0.242280 0.581466 0.101071 0.959045 0.264607 -0.602958 -0.211096 0.769337 0.797773 -0.159547 0.581466 0.000000 0.964356 0.264607 -0.577513 -0.273128 0.769337 0.810101 -0.075056 0.581466 -0.101071 0.959045 0.264607 -0.546038 -0.331605 0.769337 0.813516 0.009448 0.581466 -0.200086 0.943371 0.264607 -0.508276 -0.387008 0.769337 0.808045 0.094659 0.581466 -0.297856 0.917205 0.264607 -0.464916 -0.438147 0.769337 0.793674 0.178826 0.581466 -0.392346 0.880936 0.264607 -0.416434 -0.484461 0.769337 0.770560 0.261024 0.581466 -0.482513 0.834964 0.264607 -0.363891 -0.525074 0.769337 0.739299 0.339608 0.581466 -0.566586 0.780361 0.264607 -0.306855 -0.560321 0.769337 0.699634 0.415221 0.581466 -0.645253 0.716681 0.264607 -0.246440 -0.589396 0.769337 0.652263 0.486261 0.581466 -0.716813 0.645107 0.264607 -0.183922 -0.611795 0.769337 0.598259 0.551347 0.581466 -0.779910 0.567207 0.264607 -0.118788 -0.627702 0.769337 0.537179 0.611012 0.581466 -0.835062 0.482343 0.264607 -0.052346 -0.636694 0.769337 0.470182 0.663947 0.581466 -0.881016 0.392166 0.264607 0.014672 -0.638674 0.769337 0.398006 0.709569 0.581466 -0.917265 0.297670 0.264607 0.080895 -0.633700 0.769337 0.322193 0.747053 0.581466 -0.943211 0.200838 0.264607 0.146866 -0.621732 0.769337 0.242122 0.776707 0.581466 -0.959066 0.100876 0.264607 -0.064005 0.984714 0.161996 0.360829 0.174182 -0.916222 -0.930433 -0.000189 -0.366462 -0.166857 0.972582 0.161996 0.340587 0.211040 -0.916222 -0.925289 -0.097705 -0.366462 -0.266922 0.950005 0.161996 0.316838 0.245257 -0.916222 -0.910146 -0.193233 -0.366462 -0.365019 0.916798 0.161996 0.289388 0.277113 -0.916222 -0.884882 -0.287559 -0.366462 -0.459096 0.873492 0.161996 0.258751 0.305917 -0.916222 -0.849870 -0.378717 -0.366462 -0.547295 0.821112 0.161996 0.225595 0.331125 -0.916222 -0.805962 -0.464898 -0.366462 -0.630339 0.759230 0.161996 0.189648 0.352946 -0.916222 -0.752799 -0.546808 -0.366462 -0.706440 0.688984 0.161996 0.151612 0.370878 -0.916222 -0.691344 -0.622696 -0.366462 -0.774760 0.611150 0.161996 0.111907 0.384726 -0.916222 -0.622273 -0.691724 -0.366462 -0.834019 0.527418 0.161996 0.071363 0.394264 -0.916222 -0.547101 -0.752586 -0.366462 -0.884703 0.437102 0.161996 0.029648 0.399572 -0.916222 -0.465212 -0.805781 -0.366462 -0.925642 0.341971 0.161996 -0.012393 0.400479 -0.916222 -0.378198 -0.850101 -0.366462 -0.956141 0.244031 0.161996 -0.053901 0.397029 -0.916222 -0.287903 -0.884770 -0.366462 -0.976452 0.142476 0.161996 -0.095216 0.389193 -0.916222 -0.193587 -0.910071 -0.366462 -0.986006 0.039352 0.161996 -0.135482 0.377070 -0.916222 -0.097139 -0.925348 -0.366462 -0.984752 -0.063403 0.161996 -0.173961 0.360936 -0.916222 -0.000379 -0.930433 -0.366462 -0.972684 -0.166263 0.161996 -0.210832 0.340716 -0.916222 0.097139 -0.925348 -0.366462 -0.949901 -0.267291 0.161996 -0.245380 0.316742 -0.916222 0.193587 -0.910071 -0.366462 -0.916656 -0.365376 0.161996 -0.277225 0.289280 -0.916222 0.287903 -0.884770 -0.366462 -0.873772 -0.458562 0.161996 -0.305759 0.258938 -0.916222 0.378198 -0.850101 -0.366462 -0.820900 -0.547614 0.161996 -0.331213 0.225466 -0.916222 0.465212 -0.805781 -0.366462 -0.758985 -0.630634 0.161996 -0.353019 0.189511 -0.916222 0.547101 -0.752586 -0.366462 -0.689416 -0.706019 0.161996 -0.370786 0.151839 -0.916222 0.622273 -0.691724 -0.366462 -0.611623 -0.774387 0.161996 -0.384657 0.112142 -0.916222 0.691344 -0.622696 -0.366462 -0.527093 -0.834224 0.161996 -0.394292 0.071209 -0.916222 0.752799 -0.546808 -0.366462 -0.436758 -0.884873 0.161996 -0.399584 0.029493 -0.916222 0.805962 -0.464898 -0.366462 -0.342537 -0.925433 0.161996 -0.400487 -0.012149 -0.916222 0.849870 -0.378717 -0.366462 -0.243658 -0.956236 0.161996 -0.397008 -0.054056 -0.916222 0.884882 -0.287559 -0.366462 -0.142096 -0.976507 0.161996 -0.389156 -0.095367 -0.916222 0.910146 -0.193233 -0.366462 -0.039955 -0.985982 0.161996 -0.377153 -0.135251 -0.916222 0.925289 -0.097705 -0.366462 0.063603 -0.984740 0.161996 -0.360900 -0.174035 -0.916222 0.930433 -0.000189 -0.366462 0.166461 -0.972650 0.161996 -0.340673 -0.210901 -0.916222 0.925329 0.097328 -0.366462 0.267485 -0.949847 0.161996 -0.316692 -0.245445 -0.916222 0.910032 0.193773 -0.366462 0.364646 -0.916946 0.161996 -0.289501 -0.276995 -0.916222 0.884999 0.287198 -0.366462 0.458740 -0.873679 0.161996 -0.258876 -0.305811 -0.916222 0.850024 0.378371 -0.366462 0.547781 -0.820788 0.161996 -0.225399 -0.331259 -0.916222 0.805687 0.465376 -0.366462 0.630789 -0.758856 0.161996 -0.189439 -0.353058 -0.916222 0.752475 0.547254 -0.366462 0.706160 -0.689272 0.161996 -0.151764 -0.370817 -0.916222 0.691597 0.622414 -0.366462 0.774511 -0.611465 0.161996 -0.112063 -0.384680 -0.916222 0.622555 0.691470 -0.366462 0.834331 -0.526923 0.161996 -0.071129 -0.394307 -0.916222 0.546655 0.752910 -0.366462 0.884525 -0.437462 0.161996 -0.029811 -0.399560 -0.916222 0.465540 0.805592 -0.366462 0.925502 -0.342348 0.161996 0.012230 -0.400484 -0.916222 0.378544 0.849947 -0.366462 0.956286 -0.243464 0.161996 0.054137 -0.396997 -0.916222 0.287379 0.884940 -0.366462 0.976536 -0.141897 0.161996 0.095446 -0.389136 -0.916222 0.193048 0.910186 -0.366462 0.985990 -0.039754 0.161996 0.135328 -0.377125 -0.916222 0.097516 0.925309 -0.366462 0.984727 0.063804 0.161996 0.174108 -0.360865 -0.916222 0.000000 0.930433 -0.366462 0.972616 0.166659 0.161996 0.210970 -0.340630 -0.916222 -0.097516 0.925309 -0.366462 0.950060 0.266728 0.161996 0.245192 -0.316888 -0.916222 -0.193048 0.910186 -0.366462 0.916872 0.364832 0.161996 0.277054 -0.289445 -0.916222 -0.287379 0.884940 -0.366462 0.873586 0.458918 0.161996 0.305864 -0.258813 -0.916222 -0.378544 0.849947 -0.366462 0.820676 0.547948 0.161996 0.331305 -0.225331 -0.916222 -0.465540 0.805592 -0.366462 0.759358 0.630184 0.161996 0.352907 -0.189720 -0.916222 -0.546655 0.752910 -0.366462 0.689128 0.706300 0.161996 0.370847 -0.151688 -0.916222 -0.622555 0.691470 -0.366462 0.611308 0.774636 0.161996 0.384703 -0.111985 -0.916222 -0.691597 0.622414 -0.366462 0.527588 0.833912 0.161996 0.394250 -0.071443 -0.916222 -0.752475 0.547254 -0.366462 0.437282 0.884614 0.161996 0.399566 -0.029729 -0.916222 -0.805687 0.465376 -0.366462 0.342160 0.925572 0.161996 0.400482 0.012312 -0.916222 -0.850024 0.378371 -0.366462 0.243269 0.956335 0.161996 0.396986 0.054217 -0.916222 -0.884999 0.287198 -0.366462 0.142675 0.976423 0.161996 0.389212 0.095137 -0.916222 -0.910032 0.193773 -0.366462 0.039553 0.985998 0.161996 0.377098 0.135405 -0.916222 -0.925329 0.097328 -0.366462 -0.000497 -0.983011 -0.183545 0.003769 -0.183545 0.983004 -0.999993 -0.000204 0.003796 0.102533 -0.977649 -0.183545 0.022985 -0.182139 0.983004 -0.994464 -0.105009 0.003796 0.203471 -0.961723 -0.183545 0.041769 -0.178769 0.983004 -0.978190 -0.207679 0.003796 0.303146 -0.935101 -0.183545 0.060276 -0.173407 0.983004 -0.951036 -0.309057 0.003796 0.399482 -0.898179 -0.183545 0.078118 -0.166135 0.983004 -0.913407 -0.407030 0.003796 0.490566 -0.851855 -0.183545 0.094943 -0.157127 0.983004 -0.866217 -0.499654 0.003796 0.577144 -0.795749 -0.183545 0.110888 -0.146311 0.983004 -0.809079 -0.587688 0.003796 0.657366 -0.730877 -0.183545 0.125612 -0.133884 0.983004 -0.743029 -0.669249 0.003796 0.730347 -0.657955 -0.183545 0.138952 -0.119981 0.983004 -0.668795 -0.743438 0.003796 0.794705 -0.578581 -0.183545 0.150657 -0.104908 0.983004 -0.588003 -0.808850 0.003796 0.850967 -0.492104 -0.183545 0.160822 -0.088540 0.983004 -0.499991 -0.866022 0.003796 0.897857 -0.400206 -0.183545 0.169216 -0.071197 0.983004 -0.406472 -0.913655 0.003796 0.934552 -0.304835 -0.183545 0.175693 -0.053246 0.983004 -0.309427 -0.950916 0.003796 0.961354 -0.205208 -0.183545 0.180306 -0.034539 0.983004 -0.208060 -0.978109 0.003796 0.977566 -0.103321 -0.183545 0.182933 -0.015451 0.983004 -0.104401 -0.994528 0.003796 0.983011 -0.001097 -0.183545 0.183548 0.003657 0.983004 -0.000407 -0.999993 0.003796 0.977712 0.101935 -0.183545 0.182153 0.022874 0.983004 0.104401 -0.994528 0.003796 0.961644 0.203845 -0.183545 0.178753 0.041839 0.983004 0.208060 -0.978109 0.003796 0.934983 0.303510 -0.183545 0.173383 0.060343 0.983004 0.309427 -0.950916 0.003796 0.898423 0.398933 -0.183545 0.166182 0.078016 0.983004 0.406472 -0.913655 0.003796 0.851664 0.490897 -0.183545 0.157090 0.095004 0.983004 0.499991 -0.866022 0.003796 0.795524 0.577454 -0.183545 0.146268 0.110945 0.983004 0.588003 -0.808850 0.003796 0.731279 0.656919 -0.183545 0.133960 0.125530 0.983004 0.668795 -0.743438 0.003796 0.658401 0.729945 -0.183545 0.120066 0.138879 0.983004 0.743029 -0.669249 0.003796 0.578272 0.794930 -0.183545 0.104849 0.150697 0.983004 0.809079 -0.587688 0.003796 0.491773 0.851158 -0.183545 0.088478 0.160856 0.983004 0.866217 -0.499654 0.003796 0.400755 0.897612 -0.183545 0.071301 0.169172 0.983004 0.913407 -0.407030 0.003796 0.304471 0.934670 -0.183545 0.053178 0.175714 0.983004 0.951036 -0.309057 0.003796 0.204834 0.961433 -0.183545 0.034469 0.180319 0.983004 0.978190 -0.207679 0.003796 0.103919 0.977503 -0.183545 0.015563 0.182923 0.983004 0.994464 -0.105009 0.003796 0.000897 0.983011 -0.183545 -0.003694 0.183547 0.983004 0.999993 -0.000204 0.003796 -0.102135 0.977691 -0.183545 -0.022911 0.182149 0.983004 0.994507 0.104604 0.003796 -0.204041 0.961602 -0.183545 -0.041875 0.178744 0.983004 0.978066 0.208259 0.003796 -0.302765 0.935224 -0.183545 -0.060205 0.173431 0.983004 0.951162 0.308670 0.003796 -0.399116 0.898342 -0.183545 -0.078050 0.166166 0.983004 0.913572 0.406658 0.003796 -0.491070 0.851564 -0.183545 -0.095036 0.157071 0.983004 0.865920 0.500167 0.003796 -0.577616 0.795406 -0.183545 -0.110975 0.146245 0.983004 0.808730 0.588167 0.003796 -0.657068 0.731145 -0.183545 -0.125557 0.133935 0.983004 0.743301 0.668946 0.003796 -0.730079 0.658253 -0.183545 -0.138903 0.120038 0.983004 0.669097 0.743165 0.003796 -0.795047 0.578110 -0.183545 -0.150719 0.104819 0.983004 0.587523 0.809198 0.003796 -0.850767 0.492450 -0.183545 -0.160786 0.088606 0.983004 0.500344 0.865819 0.003796 -0.897693 0.400572 -0.183545 -0.169187 0.071266 0.983004 0.406844 0.913490 0.003796 -0.934732 0.304281 -0.183545 -0.175724 0.053142 0.983004 0.308863 0.951099 0.003796 -0.961475 0.204639 -0.183545 -0.180326 0.034432 0.983004 0.207480 0.978232 0.003796 -0.977524 0.103720 -0.183545 -0.182926 0.015526 0.983004 0.104806 0.994485 0.003796 -0.983011 0.000697 -0.183545 -0.183546 -0.003732 0.983004 0.000000 0.999993 0.003796 -0.977670 -0.102334 -0.183545 -0.182144 -0.022948 0.983004 -0.104806 0.994485 0.003796 -0.961764 -0.203275 -0.183545 -0.178778 -0.041733 0.983004 -0.207480 0.978232 0.003796 -0.935163 -0.302956 -0.183545 -0.173419 -0.060240 0.983004 -0.308863 0.951099 0.003796 -0.898260 -0.399299 -0.183545 -0.166150 -0.078084 0.983004 -0.406844 0.913490 0.003796 -0.851464 -0.491244 -0.183545 -0.157052 -0.095068 0.983004 -0.500344 0.865819 0.003796 -0.795866 -0.576982 -0.183545 -0.146334 -0.110858 0.983004 -0.587523 0.809198 0.003796 -0.731011 -0.657217 -0.183545 -0.133909 -0.125584 0.983004 -0.669097 0.743165 0.003796 -0.658104 -0.730213 -0.183545 -0.120009 -0.138927 0.983004 -0.743301 0.668946 0.003796 -0.578743 -0.794587 -0.183545 -0.104939 -0.150635 0.983004 -0.808730 0.588167 0.003796 -0.492277 -0.850867 -0.183545 -0.088573 -0.160804 0.983004 -0.865920 0.500167 0.003796 -0.400389 -0.897775 -0.183545 -0.071232 -0.169201 0.983004 -0.913572 0.406658 0.003796 -0.304091 -0.934794 -0.183545 -0.053106 -0.175735 0.983004 -0.951162 0.308670 0.003796 -0.205404 -0.961312 -0.183545 -0.034575 -0.180299 0.983004 -0.978066 0.208259 0.003796 -0.103521 -0.977545 -0.183545 -0.015488 -0.182930 0.983004 -0.994507 0.104604 0.003796 0.041854 -0.996905 -0.066553 -0.528858 -0.078620 0.845061 -0.847678 -0.000173 -0.530511 0.146107 -0.987028 -0.066553 -0.517705 -0.133615 0.845061 -0.842991 -0.089014 -0.530511 0.247783 -0.966527 -0.066553 -0.501037 -0.186637 0.845061 -0.829196 -0.176047 -0.530511 0.347717 -0.935234 -0.066553 -0.478717 -0.238121 0.845061 -0.806178 -0.261983 -0.530511 0.443822 -0.893640 -0.066553 -0.451124 -0.286983 0.845061 -0.774280 -0.345033 -0.530511 0.534195 -0.842737 -0.066553 -0.418894 -0.332265 0.845061 -0.734278 -0.423549 -0.530511 0.619578 -0.782109 -0.066553 -0.381763 -0.374338 0.845061 -0.685843 -0.498174 -0.530511 0.698136 -0.712865 -0.066553 -0.340427 -0.412288 0.845061 -0.629854 -0.567311 -0.530511 0.769004 -0.635770 -0.066553 -0.295341 -0.445696 0.845061 -0.566926 -0.630200 -0.530511 0.830850 -0.552502 -0.066553 -0.247477 -0.473948 0.845061 -0.498440 -0.685649 -0.530511 0.884181 -0.462380 -0.066553 -0.196441 -0.497275 0.845061 -0.423834 -0.734113 -0.530511 0.927772 -0.367165 -0.066553 -0.143241 -0.515125 0.845061 -0.344560 -0.774491 -0.530511 0.960875 -0.268867 -0.066553 -0.088990 -0.527212 0.845061 -0.262296 -0.806076 -0.530511 0.983763 -0.166679 -0.066553 -0.033245 -0.533635 0.845061 -0.176369 -0.829127 -0.530511 0.995814 -0.062656 -0.066553 0.022867 -0.534180 0.845061 -0.088499 -0.843045 -0.530511 0.996930 0.041245 -0.066553 0.078296 -0.528906 0.845061 -0.000345 -0.847678 -0.530511 0.987117 0.145504 -0.066553 0.133298 -0.517787 0.845061 0.088499 -0.843045 -0.530511 0.966430 0.248159 -0.066553 0.186832 -0.500965 0.845061 0.176369 -0.829127 -0.530511 0.935099 0.348081 -0.066553 0.238308 -0.478624 0.845061 0.262296 -0.806076 -0.530511 0.893911 0.443276 -0.066553 0.286707 -0.451299 0.845061 0.344560 -0.774491 -0.530511 0.842530 0.534523 -0.066553 0.332428 -0.418764 0.845061 0.423834 -0.734113 -0.530511 0.781868 0.619882 -0.066553 0.374486 -0.381617 0.845061 0.498440 -0.685649 -0.530511 0.713292 0.697700 -0.066553 0.412080 -0.340679 0.845061 0.566926 -0.630200 -0.530511 0.636239 0.768616 -0.066553 0.445516 -0.295614 0.845061 0.629854 -0.567311 -0.530511 0.552179 0.831065 -0.066553 0.474044 -0.247292 0.845061 0.685843 -0.498174 -0.530511 0.462036 0.884360 -0.066553 0.497352 -0.196247 0.845061 0.734278 -0.423549 -0.530511 0.367732 0.927547 -0.066553 0.515037 -0.143555 0.845061 0.774280 -0.345033 -0.530511 0.268493 0.960980 -0.066553 0.527246 -0.088785 0.845061 0.806178 -0.261983 -0.530511 0.166297 0.983827 -0.066553 0.533648 -0.033037 0.845061 0.829196 -0.176047 -0.530511 0.063264 0.995775 -0.066553 0.534194 0.022541 0.845061 0.842991 -0.089014 -0.530511 -0.041448 0.996922 -0.066553 0.528890 0.078404 0.845061 0.847678 -0.000173 -0.530511 -0.145705 0.987087 -0.066553 0.517760 0.133404 0.845061 0.843027 0.088671 -0.530511 -0.248356 0.966380 -0.066553 0.500926 0.186934 0.845061 0.829091 0.176538 -0.530511 -0.347337 0.935376 -0.066553 0.478814 0.237926 0.845061 0.806284 0.261654 -0.530511 -0.443458 0.893821 -0.066553 0.451240 0.286799 0.845061 0.774421 0.344718 -0.530511 -0.534694 0.842421 -0.066553 0.418697 0.332513 0.845061 0.734027 0.423984 -0.530511 -0.620041 0.781741 -0.066553 0.381541 0.374564 0.845061 0.685548 0.498580 -0.530511 -0.697846 0.713149 -0.066553 0.340595 0.412149 0.845061 0.630085 0.567055 -0.530511 -0.768745 0.636083 -0.066553 0.295523 0.445576 0.845061 0.567183 0.629969 -0.530511 -0.831178 0.552009 -0.066553 0.247196 0.474095 0.845061 0.498034 0.685944 -0.530511 -0.883992 0.462740 -0.066553 0.196643 0.497195 0.845061 0.424133 0.733940 -0.530511 -0.927622 0.367543 -0.066553 0.143451 0.515067 0.845061 0.344875 0.774350 -0.530511 -0.961035 0.268297 -0.066553 0.088678 0.527265 0.845061 0.261818 0.806231 -0.530511 -0.983861 0.166096 -0.066553 0.032928 0.533655 0.845061 0.175878 0.829231 -0.530511 -0.995788 0.063062 -0.066553 -0.022650 0.534190 0.845061 0.088843 0.843009 -0.530511 -0.996913 -0.041651 -0.066553 -0.078512 0.528874 0.845061 0.000000 0.847678 -0.530511 -0.987057 -0.145906 -0.066553 -0.133509 0.517733 0.845061 -0.088843 0.843009 -0.530511 -0.966577 -0.247586 -0.066553 -0.186535 0.501075 0.845061 -0.175878 0.829231 -0.530511 -0.935305 -0.347527 -0.066553 -0.238024 0.478765 0.845061 -0.261818 0.806231 -0.530511 -0.893731 -0.443640 -0.066553 -0.286891 0.451182 0.845061 -0.344875 0.774350 -0.530511 -0.842312 -0.534866 -0.066553 -0.332598 0.418629 0.845061 -0.424133 0.733940 -0.530511 -0.782235 -0.619418 -0.066553 -0.374260 0.381839 0.845061 -0.498034 0.685944 -0.530511 -0.713007 -0.697991 -0.066553 -0.412218 0.340511 0.845061 -0.567183 0.629969 -0.530511 -0.635926 -0.768875 -0.066553 -0.445636 0.295432 0.845061 -0.630085 0.567055 -0.530511 -0.552671 -0.830738 -0.066553 -0.473898 0.247573 0.845061 -0.685548 0.498580 -0.530511 -0.462560 -0.884086 -0.066553 -0.497235 0.196542 0.845061 -0.734027 0.423984 -0.530511 -0.367354 -0.927697 -0.066553 -0.515096 0.143346 0.845061 -0.774421 0.344718 -0.530511 -0.268102 -0.961089 -0.066553 -0.527283 0.088570 0.845061 -0.806284 0.261654 -0.530511 -0.166880 -0.983729 -0.066553 -0.533628 0.033353 0.845061 -0.829091 0.176538 -0.530511 -0.062859 -0.995801 -0.066553 -0.534185 -0.022758 0.845061 -0.843027 0.088671 -0.530511 0.417275 0.142397 -0.897555 0.060199 -0.989810 -0.129046 -0.906784 -0.000185 -0.421595 0.400053 0.185346 -0.897555 0.163607 -0.978049 -0.129046 -0.901771 -0.095221 -0.421595 0.378650 0.225875 -0.897555 0.264257 -0.955780 -0.129046 -0.887013 -0.188322 -0.421595 0.352891 0.264316 -0.897555 0.362974 -0.922820 -0.129046 -0.862391 -0.280250 -0.421595 0.323246 0.299846 -0.897555 0.457693 -0.879695 -0.129046 -0.828269 -0.369091 -0.421595 0.290371 0.331783 -0.897555 0.546544 -0.827428 -0.129046 -0.785477 -0.453082 -0.421595 0.253999 0.360388 -0.897555 0.630254 -0.765589 -0.129046 -0.733665 -0.532910 -0.421595 0.214829 0.385025 -0.897555 0.707022 -0.695318 -0.129046 -0.673772 -0.606868 -0.421595 0.173292 0.405420 -0.897555 0.776003 -0.617387 -0.129046 -0.606457 -0.674142 -0.421595 0.130268 0.421219 -0.897555 0.835902 -0.533493 -0.129046 -0.533195 -0.733458 -0.421595 0.085404 0.432552 -0.897555 0.887213 -0.442946 -0.129046 -0.453387 -0.785301 -0.421595 0.039599 0.439121 -0.897555 0.928750 -0.347520 -0.129046 -0.368585 -0.828494 -0.421595 -0.006201 0.440859 -0.897555 0.959809 -0.249227 -0.129046 -0.280586 -0.862281 -0.421595 -0.052372 0.437781 -0.897555 0.980644 -0.147259 -0.129046 -0.188667 -0.886940 -0.421595 -0.097966 0.429881 -0.897555 0.990677 -0.043670 -0.129046 -0.094670 -0.901829 -0.421595 -0.142142 0.417362 -0.897555 0.989846 0.059595 -0.129046 -0.000369 -0.906784 -0.421595 -0.185101 0.400166 -0.897555 0.978149 0.163009 -0.129046 0.094670 -0.901829 -0.421595 -0.226022 0.378562 -0.897555 0.955677 0.264629 -0.129046 0.188667 -0.886940 -0.421595 -0.264453 0.352789 -0.897555 0.922679 0.363333 -0.129046 0.280586 -0.862281 -0.421595 -0.299648 0.323429 -0.897555 0.879975 0.457156 -0.129046 0.368585 -0.828494 -0.421595 -0.331896 0.290242 -0.897555 0.827215 0.546866 -0.129046 0.453387 -0.785301 -0.421595 -0.360487 0.253859 -0.897555 0.765344 0.630552 -0.129046 0.533195 -0.733458 -0.421595 -0.384893 0.215064 -0.897555 0.695750 0.706597 -0.129046 0.606457 -0.674142 -0.421595 -0.405314 0.173540 -0.897555 0.617861 0.775625 -0.129046 0.673772 -0.606868 -0.421595 -0.421270 0.130104 -0.897555 0.533167 0.836110 -0.129046 0.733665 -0.532910 -0.421595 -0.432585 0.085236 -0.897555 0.442601 0.887385 -0.129046 0.785477 -0.453082 -0.421595 -0.439097 0.039867 -0.897555 0.348088 0.928538 -0.129046 0.828269 -0.369091 -0.421595 -0.440857 -0.006373 -0.897555 0.248853 0.959906 -0.129046 0.862391 -0.280250 -0.421595 -0.437761 -0.052543 -0.897555 0.146877 0.980701 -0.129046 0.887013 -0.188322 -0.421595 -0.429941 -0.097704 -0.897555 0.044275 0.990650 -0.129046 0.901771 -0.095221 -0.421595 -0.417333 -0.142227 -0.897555 -0.059796 0.989834 -0.129046 0.906784 -0.000185 -0.421595 -0.400128 -0.185183 -0.897555 -0.163209 0.978116 -0.129046 0.901809 0.094854 -0.421595 -0.378516 -0.226099 -0.897555 -0.264823 0.955623 -0.129046 0.886901 0.188848 -0.421595 -0.352999 -0.264172 -0.897555 -0.362598 0.922968 -0.129046 0.862505 0.279899 -0.421595 -0.323368 -0.299714 -0.897555 -0.457335 0.879882 -0.129046 0.828419 0.368754 -0.421595 -0.290175 -0.331955 -0.897555 -0.547034 0.827104 -0.129046 0.785209 0.453547 -0.421595 -0.253785 -0.360539 -0.897555 -0.630708 0.765216 -0.129046 0.733349 0.533345 -0.421595 -0.214986 -0.384937 -0.897555 -0.706739 0.695606 -0.129046 0.674019 0.606594 -0.421595 -0.173457 -0.405349 -0.897555 -0.775751 0.617703 -0.129046 0.606731 0.673895 -0.421595 -0.130019 -0.421296 -0.897555 -0.836218 0.532997 -0.129046 0.532761 0.733774 -0.421595 -0.085580 -0.432517 -0.897555 -0.887032 0.443307 -0.129046 0.453707 0.785116 -0.421595 -0.039778 -0.439105 -0.897555 -0.928609 0.347898 -0.129046 0.368923 0.828344 -0.421595 0.006462 -0.440855 -0.897555 -0.959957 0.248658 -0.129046 0.280074 0.862448 -0.421595 0.052632 -0.437750 -0.897555 -0.980731 0.146678 -0.129046 0.188141 0.887052 -0.421595 0.097791 -0.429921 -0.897555 -0.990659 0.044073 -0.129046 0.095037 0.901790 -0.421595 0.142312 -0.417304 -0.897555 -0.989822 -0.059998 -0.129046 0.000000 0.906784 -0.421595 0.185264 -0.400091 -0.897555 -0.978082 -0.163408 -0.129046 -0.095037 0.901790 -0.421595 0.225798 -0.378696 -0.897555 -0.955834 -0.264062 -0.129046 -0.188141 0.887052 -0.421595 0.264244 -0.352945 -0.897555 -0.922894 -0.362786 -0.129046 -0.280074 0.862448 -0.421595 0.299780 -0.323307 -0.897555 -0.879789 -0.457514 -0.129046 -0.368923 0.828344 -0.421595 0.332014 -0.290107 -0.897555 -0.826993 -0.547202 -0.129046 -0.453707 0.785116 -0.421595 0.360337 -0.254072 -0.897555 -0.765718 -0.630098 -0.129046 -0.532761 0.733774 -0.421595 0.384981 -0.214907 -0.897555 -0.695462 -0.706881 -0.129046 -0.606731 0.673895 -0.421595 0.405384 -0.173375 -0.897555 -0.617545 -0.775877 -0.129046 -0.674019 0.606594 -0.421595 0.421192 -0.130354 -0.897555 -0.533663 -0.835794 -0.129046 -0.733349 0.533345 -0.421595 0.432535 -0.085492 -0.897555 -0.443126 -0.887122 -0.129046 -0.785209 0.453547 -0.421595 0.439113 -0.039689 -0.897555 -0.347709 -0.928679 -0.129046 -0.828419 0.368754 -0.421595 0.440854 0.006552 -0.897555 -0.248462 -0.960007 -0.129046 -0.862505 0.279899 -0.421595 0.437792 0.052283 -0.897555 -0.147459 -0.980614 -0.129046 -0.886901 0.188848 -0.421595 0.429901 0.097879 -0.897555 -0.043871 -0.990668 -0.129046 -0.901809 0.094854 -0.421595 0.026710 0.996645 0.077360 -0.327489 0.081841 -0.941304 -0.944477 -0.000192 0.328577 -0.077893 0.993956 0.077360 -0.334263 0.047067 -0.941304 -0.939255 -0.099179 0.328577 -0.180657 0.980499 0.077360 -0.337344 0.012112 -0.941304 -0.923884 -0.196150 0.328577 -0.282425 0.956165 0.077360 -0.336755 -0.023310 -0.941304 -0.898238 -0.291899 0.328577 -0.381083 0.921299 0.077360 -0.332457 -0.058476 -0.941304 -0.862698 -0.384434 0.328577 -0.474666 0.876760 0.077360 -0.324590 -0.092674 -0.941304 -0.818128 -0.471915 0.328577 -0.563943 0.822183 0.077360 -0.313090 -0.126183 -0.941304 -0.764162 -0.555062 0.328577 -0.647007 0.758549 0.077360 -0.298141 -0.158302 -0.941304 -0.701779 -0.632095 0.328577 -0.722945 0.686561 0.077360 -0.279908 -0.188677 -0.941304 -0.631666 -0.702165 0.328577 -0.790313 0.607800 0.077360 -0.258808 -0.216716 -0.941304 -0.555359 -0.763946 0.328577 -0.849662 0.521622 0.077360 -0.234669 -0.242647 -0.941304 -0.472234 -0.817944 0.328577 -0.899652 0.429699 0.077360 -0.207946 -0.265906 -0.941304 -0.383906 -0.862933 0.328577 -0.939400 0.333982 0.077360 -0.179218 -0.286056 -0.941304 -0.292249 -0.898125 0.328577 -0.969230 0.233687 0.077360 -0.148250 -0.303264 -0.941304 -0.196509 -0.923808 0.328577 -0.988384 0.130817 0.077360 -0.115649 -0.317132 -0.941304 -0.098605 -0.939316 0.328577 -0.996629 0.027319 0.077360 -0.082042 -0.327439 -0.941304 -0.000385 -0.944477 0.328577 -0.994003 -0.077285 0.077360 -0.047272 -0.334235 -0.941304 0.098605 -0.939316 0.328577 -0.980429 -0.181038 0.077360 -0.011981 -0.337348 -0.941304 0.196509 -0.923808 0.328577 -0.956055 -0.282797 0.077360 0.023441 -0.336746 -0.941304 0.292249 -0.898125 0.328577 -0.921531 -0.380520 0.077360 0.058273 -0.332493 -0.941304 0.383906 -0.862933 0.328577 -0.876575 -0.475007 0.077360 0.092800 -0.324554 -0.941304 0.472234 -0.817944 0.328577 -0.821963 -0.564262 0.077360 0.126304 -0.313041 -0.941304 0.555359 -0.763946 0.328577 -0.758944 -0.646544 0.077360 0.158120 -0.298237 -0.941304 0.631666 -0.702165 0.328577 -0.687002 -0.722526 0.077360 0.188506 -0.280023 -0.941304 0.701779 -0.632095 0.328577 -0.607493 -0.790549 0.077360 0.216816 -0.258724 -0.941304 0.764162 -0.555062 0.328577 -0.521292 -0.849865 0.077360 0.242738 -0.234575 -0.941304 0.818128 -0.471915 0.328577 -0.430248 -0.899390 0.077360 0.265779 -0.208108 -0.941304 0.862698 -0.384434 0.328577 -0.333616 -0.939529 0.077360 0.286126 -0.179107 -0.941304 0.898238 -0.291899 0.328577 -0.233309 -0.969320 0.077360 0.303322 -0.148132 -0.941304 0.923884 -0.196150 0.328577 -0.131421 -0.988304 0.077360 0.317061 -0.115843 -0.941304 0.939255 -0.099179 0.328577 -0.027116 -0.996634 0.077360 0.327456 -0.081975 -0.941304 0.944477 -0.000192 0.328577 0.077488 -0.993987 0.077360 0.334244 -0.047204 -0.941304 0.939296 0.098797 0.328577 0.181238 -0.980392 0.077360 0.337351 -0.011912 -0.941304 0.923768 0.196698 0.328577 0.282036 -0.956280 0.077360 0.336765 0.023173 -0.941304 0.898357 0.291533 0.328577 0.380707 -0.921454 0.077360 0.332481 0.058341 -0.941304 0.862855 0.384082 0.328577 0.475186 -0.876478 0.077360 0.324536 0.092866 -0.941304 0.817848 0.472400 0.328577 0.564430 -0.821848 0.077360 0.313015 0.126368 -0.941304 0.763833 0.555515 0.328577 0.646698 -0.758813 0.077360 0.298205 0.158180 -0.941304 0.702036 0.631809 0.328577 0.722666 -0.686855 0.077360 0.279984 0.188563 -0.941304 0.631952 0.701908 0.328577 0.790673 -0.607332 0.077360 0.258680 0.216869 -0.941304 0.554906 0.764275 0.328577 0.849450 -0.521968 0.077360 0.234768 0.242552 -0.941304 0.472567 0.817752 0.328577 0.899477 -0.430065 0.077360 0.208054 0.265821 -0.941304 0.384258 0.862776 0.328577 0.939597 -0.333425 0.077360 0.179048 0.286163 -0.941304 0.291716 0.898298 0.328577 0.969368 -0.233112 0.077360 0.148070 0.303352 -0.941304 0.195962 0.923924 0.328577 0.988330 -0.131220 0.077360 0.115779 0.317085 -0.941304 0.098988 0.939276 0.328577 0.996640 -0.026913 0.077360 0.081908 0.327473 -0.941304 0.000000 0.944477 0.328577 0.993972 0.077690 0.077360 0.047136 0.334254 -0.941304 -0.098988 0.939276 0.328577 0.980536 0.180457 0.077360 0.012181 0.337341 -0.941304 -0.195962 0.923924 0.328577 0.956222 0.282230 0.077360 -0.023242 0.336760 -0.941304 -0.291716 0.898298 0.328577 0.921376 0.380895 0.077360 -0.058409 0.332469 -0.941304 -0.384258 0.862776 0.328577 0.876381 0.475364 0.077360 -0.092932 0.324517 -0.941304 -0.472567 0.817752 0.328577 0.822297 0.563775 0.077360 -0.126119 0.313116 -0.941304 -0.554906 0.764275 0.328577 0.758681 0.646853 0.077360 -0.158241 0.298173 -0.941304 -0.631952 0.701908 0.328577 0.686708 0.722806 0.077360 -0.188620 0.279946 -0.941304 -0.702036 0.631809 0.328577 0.607961 0.790189 0.077360 -0.216663 0.258852 -0.941304 -0.763833 0.555515 0.328577 0.521795 0.849556 0.077360 -0.242599 0.234719 -0.941304 -0.817848 0.472400 0.328577 0.429882 0.899565 0.077360 -0.265863 0.208000 -0.941304 -0.862855 0.384082 0.328577 0.333234 0.939665 0.077360 -0.286199 0.178990 -0.941304 -0.898357 0.291533 0.328577 0.233884 0.969182 0.077360 -0.303234 0.148312 -0.941304 -0.923768 0.196698 0.328577 0.131019 0.988357 0.077360 -0.317108 0.115714 -0.941304 -0.939296 0.098797 0.328577 0.605160 -0.346720 -0.716635 -0.223571 -0.937969 0.265011 -0.764066 -0.000156 -0.645138 0.638166 -0.281386 -0.716635 -0.124034 -0.956235 0.265011 -0.759842 -0.080234 -0.645138 0.663929 -0.213616 -0.716635 -0.024094 -0.963944 0.265011 -0.747407 -0.158682 -0.645138 0.682661 -0.142855 -0.716635 0.077067 -0.961161 0.265011 -0.726660 -0.236142 -0.645138 0.693874 -0.070520 -0.716635 0.177379 -0.947790 0.265011 -0.697908 -0.311000 -0.645138 0.697446 0.001894 -0.716635 0.274813 -0.924255 0.265011 -0.661852 -0.381772 -0.645138 0.693406 0.074981 -0.716635 0.370168 -0.890362 0.265011 -0.618194 -0.449036 -0.645138 0.681729 0.147242 -0.716635 0.461445 -0.846662 0.265011 -0.567727 -0.511354 -0.645138 0.662542 0.217881 -0.716635 0.547640 -0.793637 0.265011 -0.511007 -0.568040 -0.645138 0.636343 0.285484 -0.716635 0.627071 -0.732496 0.265011 -0.449276 -0.618019 -0.645138 0.602918 0.350605 -0.716635 0.700388 -0.662741 0.265011 -0.382029 -0.661703 -0.645138 0.562852 0.411864 -0.716635 0.765991 -0.585685 0.265011 -0.310574 -0.698098 -0.645138 0.517054 0.468070 -0.716635 0.822654 -0.503001 0.265011 -0.236424 -0.726568 -0.645138 0.465149 0.519683 -0.716635 0.870841 -0.414011 0.265011 -0.158973 -0.747345 -0.645138 0.408121 0.565572 -0.716635 0.909436 -0.320460 0.265011 -0.079770 -0.759891 -0.645138 0.347090 0.604948 -0.716635 0.937832 -0.224144 0.265011 -0.000311 -0.764066 -0.645138 0.281775 0.637994 -0.716635 0.956159 -0.124618 0.265011 0.079770 -0.759891 -0.645138 0.213357 0.664013 -0.716635 0.963953 -0.023719 0.265011 0.158973 -0.747345 -0.645138 0.142589 0.682717 -0.716635 0.961131 0.077441 0.265011 0.236424 -0.726568 -0.645138 0.070944 0.693831 -0.716635 0.947898 0.176799 0.265011 0.310574 -0.698098 -0.645138 -0.002165 0.697445 -0.716635 0.924148 0.275172 0.265011 0.382029 -0.661703 -0.645138 -0.075251 0.693377 -0.716635 0.890218 0.370514 0.265011 0.449276 -0.618019 -0.645138 -0.146825 0.681818 -0.716635 0.846944 0.460928 0.265011 0.511007 -0.568040 -0.645138 -0.217476 0.662675 -0.716635 0.793971 0.547155 0.265011 0.567727 -0.511354 -0.645138 -0.285731 0.636232 -0.716635 0.732252 0.627356 0.265011 0.618194 -0.449036 -0.645138 -0.350839 0.602782 -0.716635 0.662468 0.700646 0.265011 0.661852 -0.381772 -0.645138 -0.411520 0.563103 -0.716635 0.586153 0.765633 0.265011 0.697908 -0.311000 -0.645138 -0.468271 0.516872 -0.716635 0.502681 0.822849 0.265011 0.726660 -0.236142 -0.645138 -0.519864 0.464947 -0.716635 0.413672 0.871002 0.265011 0.747407 -0.158682 -0.645138 -0.565322 0.408466 -0.716635 0.321016 0.909240 0.265011 0.759842 -0.080234 -0.645138 -0.605019 0.346967 -0.716635 0.223953 0.937877 0.265011 0.764066 -0.000156 -0.645138 -0.638052 0.281646 -0.716635 0.124423 0.956184 0.265011 0.759874 0.079925 -0.645138 -0.664056 0.213222 -0.716635 0.023523 0.963958 0.265011 0.747313 0.159125 -0.645138 -0.682603 0.143133 -0.716635 -0.076675 0.961192 0.265011 0.726756 0.235846 -0.645138 -0.693845 0.070803 -0.716635 -0.176993 0.947862 0.265011 0.698035 0.310716 -0.645138 -0.697444 -0.002307 -0.716635 -0.275361 0.924092 0.265011 0.661625 0.382164 -0.645138 -0.693361 -0.075392 -0.716635 -0.370696 0.890143 0.265011 0.617928 0.449402 -0.645138 -0.681788 -0.146964 -0.716635 -0.461101 0.846850 0.265011 0.567936 0.511123 -0.645138 -0.662631 -0.217611 -0.716635 -0.547317 0.793860 0.265011 0.511238 0.567831 -0.645138 -0.636174 -0.285861 -0.716635 -0.627505 0.732125 0.265011 0.448910 0.618286 -0.645138 -0.603061 -0.350359 -0.716635 -0.700118 0.663026 0.265011 0.382299 0.661547 -0.645138 -0.563019 -0.411635 -0.716635 -0.765752 0.585997 0.265011 0.310858 0.697972 -0.645138 -0.516776 -0.468376 -0.716635 -0.822952 0.502513 0.265011 0.235994 0.726708 -0.645138 -0.464841 -0.519959 -0.716635 -0.871086 0.413495 0.265011 0.158530 0.747439 -0.645138 -0.408351 -0.565405 -0.716635 -0.909306 0.320831 0.265011 0.080080 0.759858 -0.645138 -0.346844 -0.605090 -0.716635 -0.937923 0.223762 0.265011 0.000000 0.764066 -0.645138 -0.281516 -0.638109 -0.716635 -0.956209 0.124229 0.265011 -0.080080 0.759858 -0.645138 -0.213751 -0.663886 -0.716635 -0.963939 0.024291 0.265011 -0.158530 0.747439 -0.645138 -0.142994 -0.682632 -0.716635 -0.961176 -0.076871 0.265011 -0.235994 0.726708 -0.645138 -0.070661 -0.693859 -0.716635 -0.947826 -0.177186 0.265011 -0.310858 0.697972 -0.645138 0.002449 -0.697444 -0.716635 -0.924036 -0.275549 0.265011 -0.382299 0.661547 -0.645138 0.074840 -0.693421 -0.716635 -0.890437 -0.369987 0.265011 -0.448910 0.618286 -0.645138 0.147103 -0.681759 -0.716635 -0.846756 -0.461273 0.265011 -0.511238 0.567831 -0.645138 0.217746 -0.662586 -0.716635 -0.793748 -0.547479 0.265011 -0.567936 0.511123 -0.645138 0.285354 -0.636402 -0.716635 -0.732624 -0.626922 0.265011 -0.617928 0.449402 -0.645138 0.350482 -0.602989 -0.716635 -0.662883 -0.700253 0.265011 -0.661625 0.382164 -0.645138 0.411749 -0.562935 -0.716635 -0.585841 -0.765872 0.265011 -0.698035 0.310716 -0.645138 0.468481 -0.516681 -0.716635 -0.502346 -0.823054 0.265011 -0.726756 0.235846 -0.645138 0.519588 -0.465255 -0.716635 -0.414188 -0.870757 0.265011 -0.747313 0.159125 -0.645138 0.565489 -0.408236 -0.716635 -0.320645 -0.909371 0.265011 -0.759874 0.079925 -0.645138 -0.715962 -0.486755 -0.500468 0.399026 -0.873539 0.278762 -0.572867 -0.000117 0.819648 -0.661003 -0.559112 -0.500468 0.488381 -0.826907 0.278762 -0.569700 -0.060157 0.819648 -0.599389 -0.624711 -0.500468 0.571586 -0.771739 0.278762 -0.560377 -0.118974 0.819648 -0.530614 -0.684091 -0.500468 0.649322 -0.707582 0.278762 -0.544822 -0.177050 0.819648 -0.455994 -0.735936 -0.500468 0.719905 -0.635632 0.278762 -0.523265 -0.233176 0.819648 -0.377130 -0.779297 -0.500468 0.782002 -0.557462 0.278762 -0.496231 -0.286238 0.819648 -0.293378 -0.814531 -0.500468 0.836121 -0.472433 0.278762 -0.463498 -0.336670 0.819648 -0.206393 -0.840793 -0.500468 0.881031 -0.382199 0.278762 -0.425660 -0.383394 0.819648 -0.117135 -0.857794 -0.500468 0.916236 -0.287756 0.278762 -0.383133 -0.425894 0.819648 -0.027453 -0.865319 -0.500468 0.941158 -0.191084 0.278762 -0.336850 -0.463367 0.819648 0.063390 -0.863431 -0.500468 0.956002 -0.091392 0.278762 -0.286431 -0.496120 0.819648 0.153535 -0.852032 -0.500468 0.960315 0.009307 0.278762 -0.232856 -0.523407 0.819648 0.241157 -0.831489 -0.500468 0.954160 0.108950 0.278762 -0.177262 -0.544753 0.819648 0.326975 -0.801635 -0.500468 0.937486 0.208353 0.278762 -0.119192 -0.560331 0.819648 0.409191 -0.762951 -0.500468 0.910486 0.305460 0.278762 -0.059809 -0.569737 0.819648 0.486317 -0.716259 -0.500468 0.873782 0.398492 0.278762 -0.000233 -0.572867 0.819648 0.558708 -0.661345 -0.500468 0.827205 0.487876 0.278762 0.059809 -0.569737 0.819648 0.624944 -0.599146 -0.500468 0.771517 0.571886 0.278762 0.119192 -0.560331 0.819648 0.684297 -0.530347 -0.500468 0.707330 0.649597 0.278762 0.177262 -0.544753 0.819648 0.735657 -0.456443 -0.500468 0.636072 0.719517 0.278762 0.232856 -0.523407 0.819648 0.779444 -0.376827 -0.500468 0.557158 0.782219 0.278762 0.286431 -0.496120 0.819648 0.814645 -0.293061 -0.500468 0.472107 0.836305 0.278762 0.336850 -0.463367 0.819648 0.840667 -0.206907 -0.500468 0.382737 0.880797 0.278762 0.383133 -0.425894 0.819648 0.857722 -0.117659 -0.500468 0.288316 0.916060 0.278762 0.425660 -0.383394 0.819648 0.865330 -0.027116 -0.500468 0.190718 0.941232 0.278762 0.463498 -0.336670 0.819648 0.863406 0.063726 -0.500468 0.091020 0.956037 0.278762 0.496231 -0.286238 0.819648 0.852126 0.153014 -0.500468 -0.008721 0.960321 0.278762 0.523265 -0.233176 0.819648 0.831396 0.241480 -0.500468 -0.109321 0.954118 0.278762 0.544822 -0.177050 0.819648 0.801508 0.327287 -0.500468 -0.208717 0.937405 0.278762 0.560377 -0.118974 0.819648 0.763201 0.408725 -0.500468 -0.304904 0.910673 0.278762 0.569700 -0.060157 0.819648 0.716160 0.486463 -0.500468 -0.398670 0.873701 0.278762 0.572867 -0.000117 0.819648 0.661231 0.558842 -0.500468 -0.488044 0.827106 0.278762 0.569725 0.059925 0.819648 0.599019 0.625066 -0.500468 -0.572043 0.771400 0.278762 0.560306 0.119306 0.819648 0.530892 0.683875 -0.500468 -0.649033 0.707847 0.278762 0.544894 0.176828 0.819648 0.456293 0.735750 -0.500468 -0.719646 0.635925 0.278762 0.523360 0.232963 0.819648 0.376669 0.779520 -0.500468 -0.782332 0.556999 0.278762 0.496061 0.286532 0.819648 0.292895 0.814705 -0.500468 -0.836401 0.471937 0.278762 0.463299 0.336944 0.819648 0.206736 0.840709 -0.500468 -0.880875 0.382558 0.278762 0.425816 0.383220 0.819648 0.117485 0.857746 -0.500468 -0.916119 0.288129 0.278762 0.383307 0.425738 0.819648 0.026940 0.865336 -0.500468 -0.941271 0.190526 0.278762 0.336575 0.463567 0.819648 -0.063039 0.863457 -0.500468 -0.955964 0.091781 0.278762 0.286633 0.496003 0.819648 -0.153188 0.852094 -0.500468 -0.960319 -0.008916 0.278762 0.233070 0.523312 0.819648 -0.241650 0.831346 -0.500468 -0.954095 -0.109515 0.278762 0.176939 0.544858 0.819648 -0.327450 0.801441 -0.500468 -0.937363 -0.208908 0.278762 0.118860 0.560401 0.819648 -0.408880 0.763117 -0.500468 -0.910611 -0.305090 0.278762 0.060041 0.569712 0.819648 -0.486609 0.716061 -0.500468 -0.873620 -0.398848 0.278762 0.000000 0.572867 0.819648 -0.558977 0.661117 -0.500468 -0.827007 -0.488213 0.278762 -0.060041 0.569712 0.819648 -0.624589 0.599516 -0.500468 -0.771855 -0.571429 0.278762 -0.118860 0.560401 0.819648 -0.683983 0.530753 -0.500468 -0.707715 -0.649178 0.278762 -0.176939 0.544858 0.819648 -0.735843 0.456144 -0.500468 -0.635778 -0.719776 0.278762 -0.233070 0.523312 0.819648 -0.779597 0.376510 -0.500468 -0.556839 -0.782446 0.278762 -0.286633 0.496003 0.819648 -0.814471 0.293543 -0.500468 -0.472603 -0.836025 0.278762 -0.336575 0.463567 0.819648 -0.840751 0.206564 -0.500468 -0.382379 -0.880953 0.278762 -0.383307 0.425738 0.819648 -0.857770 0.117310 -0.500468 -0.287942 -0.916177 0.278762 -0.425816 0.383220 0.819648 -0.865314 0.027629 -0.500468 -0.191276 -0.941119 0.278762 -0.463299 0.336944 0.819648 -0.863444 -0.063215 -0.500468 -0.091586 -0.955983 0.278762 -0.496061 0.286532 0.819648 -0.852063 -0.153361 -0.500468 0.009112 -0.960317 0.278762 -0.523360 0.232963 0.819648 -0.831297 -0.241819 -0.500468 0.109710 -0.954073 0.278762 -0.544894 0.176828 0.819648 -0.801702 -0.326812 -0.500468 0.208162 -0.937529 0.278762 -0.560306 0.119306 0.819648 -0.763034 -0.409036 -0.500468 0.305275 -0.910549 0.278762 -0.569725 0.059925 0.819648 -0.460246 0.480030 0.746823 0.251677 0.877252 -0.408764 -0.851371 -0.000173 -0.524565 -0.508022 0.429150 0.746823 0.158349 0.898798 -0.408764 -0.846664 -0.089402 -0.524565 -0.549828 0.374092 0.746823 0.064187 0.910380 -0.408764 -0.832808 -0.176813 -0.524565 -0.586008 0.314406 0.746823 -0.031581 0.912094 -0.408764 -0.809690 -0.263124 -0.524565 -0.615732 0.251256 0.746823 -0.127001 0.903760 -0.408764 -0.777653 -0.346536 -0.524565 -0.638489 0.185978 0.746823 -0.220137 0.885693 -0.408764 -0.737477 -0.425394 -0.524565 -0.654464 0.118035 0.746823 -0.311751 0.857743 -0.408764 -0.688831 -0.500344 -0.524565 -0.663231 0.048793 0.746823 -0.399932 0.820346 -0.408764 -0.632598 -0.569783 -0.524565 -0.664692 -0.020987 0.746823 -0.483707 0.773912 -0.408764 -0.569396 -0.632945 -0.524565 -0.658922 -0.089877 0.746823 -0.561436 0.719515 -0.408764 -0.500612 -0.688636 -0.524565 -0.645873 -0.158442 0.746823 -0.633754 0.656710 -0.408764 -0.425681 -0.737311 -0.524565 -0.625710 -0.225262 0.746823 -0.699091 0.586671 -0.408764 -0.346061 -0.777865 -0.524565 -0.598944 -0.289001 0.746823 -0.756218 0.510927 -0.408764 -0.263439 -0.809587 -0.524565 -0.565356 -0.350183 0.746823 -0.805602 0.428856 -0.408764 -0.177138 -0.832739 -0.524565 -0.525541 -0.407508 0.746823 -0.846112 0.342061 -0.408764 -0.088885 -0.846718 -0.524565 -0.480312 -0.459953 0.746823 -0.877098 0.252213 -0.408764 -0.000347 -0.851371 -0.524565 -0.429460 -0.507760 0.746823 -0.898701 0.158898 -0.408764 0.088885 -0.846718 -0.524565 -0.373878 -0.549974 0.746823 -0.910405 0.063833 -0.408764 0.177138 -0.832739 -0.524565 -0.314178 -0.586130 0.746823 -0.912081 -0.031936 -0.408764 0.263439 -0.809587 -0.524565 -0.251632 -0.615578 0.746823 -0.903838 -0.126449 -0.408764 0.346061 -0.777865 -0.524565 -0.185730 -0.638561 0.746823 -0.885607 -0.220481 -0.408764 0.425681 -0.737311 -0.524565 -0.117781 -0.654510 0.746823 -0.857622 -0.312085 -0.408764 0.500612 -0.688636 -0.524565 -0.049198 -0.663201 0.746823 -0.820590 -0.399431 -0.408764 0.569396 -0.632945 -0.524565 0.020581 -0.664705 0.746823 -0.774207 -0.483234 -0.408764 0.632598 -0.569783 -0.524565 0.090134 -0.658887 0.746823 -0.719297 -0.561716 -0.408764 0.688831 -0.500344 -0.524565 0.158693 -0.645811 0.746823 -0.656464 -0.634009 -0.408764 0.737477 -0.425394 -0.524565 0.224879 -0.625848 0.746823 -0.587098 -0.698733 -0.408764 0.777653 -0.346536 -0.524565 0.289234 -0.598832 0.746823 -0.510633 -0.756417 -0.408764 0.809690 -0.263124 -0.524565 0.350403 -0.565220 0.746823 -0.428543 -0.805769 -0.408764 0.832808 -0.176813 -0.524565 0.407187 -0.525790 0.746823 -0.342578 -0.845903 -0.408764 0.846664 -0.089402 -0.524565 0.460051 -0.480218 0.746823 -0.252035 -0.877149 -0.408764 0.851371 -0.000173 -0.524565 0.507847 -0.429357 0.746823 -0.158715 -0.898733 -0.408764 0.846700 0.089057 -0.524565 0.550050 -0.373766 0.746823 -0.063647 -0.910418 -0.408764 0.832703 0.177307 -0.524565 0.585879 -0.314644 0.746823 0.031209 -0.912107 -0.408764 0.809797 0.262794 -0.524565 0.615630 -0.251507 0.746823 0.126633 -0.903812 -0.408764 0.777794 0.346219 -0.524565 0.638599 -0.185599 0.746823 0.220661 -0.885562 -0.408764 0.737225 0.425831 -0.524565 0.654534 -0.117647 0.746823 0.312259 -0.857558 -0.408764 0.688534 0.500752 -0.524565 0.663211 -0.049063 0.746823 0.399598 -0.820508 -0.408764 0.632830 0.569525 -0.524565 0.664700 0.020717 0.746823 0.483392 -0.774109 -0.408764 0.569654 0.632714 -0.524565 0.658868 0.090268 0.746823 0.561862 -0.719182 -0.408764 0.500204 0.688933 -0.524565 0.645937 0.158179 0.746823 0.633486 -0.656968 -0.408764 0.425981 0.737138 -0.524565 0.625802 0.225007 0.746823 0.698852 -0.586956 -0.408764 0.346378 0.777724 -0.524565 0.598773 0.289356 0.746823 0.756521 -0.510479 -0.408764 0.262959 0.809744 -0.524565 0.565149 0.350518 0.746823 0.805856 -0.428379 -0.408764 0.176644 0.832844 -0.524565 0.525707 0.407294 0.746823 0.845973 -0.342406 -0.408764 0.089230 0.846682 -0.524565 0.480124 0.460148 0.746823 0.877201 -0.251856 -0.408764 0.000000 0.851371 -0.524565 0.429253 0.507935 0.746823 0.898766 -0.158532 -0.408764 -0.089230 0.846682 -0.524565 0.374204 0.549752 0.746823 0.910367 -0.064372 -0.408764 -0.176644 0.832844 -0.524565 0.314525 0.585944 0.746823 0.912100 0.031395 -0.408764 -0.262959 0.809744 -0.524565 0.251382 0.615681 0.746823 0.903786 0.126817 -0.408764 -0.346378 0.777724 -0.524565 0.185469 0.638637 0.746823 0.885517 0.220842 -0.408764 -0.425981 0.737138 -0.524565 0.118169 0.654440 0.746823 0.857807 0.311576 -0.408764 -0.500204 0.688933 -0.524565 0.048928 0.663221 0.746823 0.820427 0.399765 -0.408764 -0.569654 0.632714 -0.524565 -0.020852 0.664696 0.746823 0.774010 0.483550 -0.408764 -0.632830 0.569525 -0.524565 -0.089743 0.658940 0.746823 0.719630 0.561289 -0.408764 -0.688534 0.500752 -0.524565 -0.158310 0.645905 0.746823 0.656839 0.633620 -0.408764 -0.737225 0.425831 -0.524565 -0.225134 0.625756 0.746823 0.586814 0.698972 -0.408764 -0.777794 0.346219 -0.524565 -0.289478 0.598714 0.746823 0.510325 0.756625 -0.408764 -0.809797 0.262794 -0.524565 -0.350068 0.565427 0.746823 0.429020 0.805515 -0.408764 -0.832703 0.177307 -0.524565 -0.407401 0.525624 0.746823 0.342234 0.846043 -0.408764 -0.846700 0.089057 -0.524565 0.047463 -0.973750 -0.222619 -0.202185 -0.227622 0.952528 -0.978197 -0.000199 -0.207681 0.149257 -0.963412 -0.222619 -0.177215 -0.247559 0.952528 -0.972788 -0.102720 -0.207681 0.248465 -0.942712 -0.222619 -0.150558 -0.264618 0.952528 -0.956869 -0.203153 -0.207681 0.345900 -0.911479 -0.222619 -0.121995 -0.278941 0.952528 -0.930307 -0.302321 -0.207681 0.439524 -0.870207 -0.222619 -0.092088 -0.290190 0.952528 -0.893498 -0.398159 -0.207681 0.527488 -0.819876 -0.222619 -0.061465 -0.298182 0.952528 -0.847336 -0.488764 -0.207681 0.610511 -0.760077 -0.222619 -0.029875 -0.302982 0.952528 -0.791444 -0.574879 -0.207681 0.686811 -0.691905 -0.222619 0.002045 -0.304444 0.952528 -0.726834 -0.654661 -0.207681 0.755545 -0.616111 -0.222619 0.033941 -0.302553 0.952528 -0.654217 -0.727233 -0.207681 0.815422 -0.534347 -0.222619 0.065167 -0.297395 0.952528 -0.575186 -0.791220 -0.207681 0.866935 -0.445942 -0.222619 0.095977 -0.288927 0.952528 -0.489093 -0.847146 -0.207681 0.908898 -0.352625 -0.222619 0.125730 -0.277277 0.952528 -0.397612 -0.893741 -0.207681 0.940594 -0.256365 -0.222619 0.153836 -0.262726 0.952528 -0.302683 -0.930189 -0.207681 0.962283 -0.156372 -0.222619 0.180524 -0.245156 0.952528 -0.203525 -0.956789 -0.207681 0.973372 -0.054657 -0.222619 0.205224 -0.224886 0.952528 -0.102126 -0.972851 -0.207681 0.973778 0.046868 -0.222619 0.227499 -0.202324 0.952528 -0.000398 -0.978197 -0.207681 0.963503 0.148668 -0.222619 0.247451 -0.177366 0.952528 0.102126 -0.972851 -0.207681 0.942615 0.248832 -0.222619 0.264677 -0.150455 0.952528 0.203525 -0.956789 -0.207681 0.911345 0.346254 -0.222619 0.278988 -0.121886 0.952528 0.302683 -0.930189 -0.207681 0.870475 0.438992 -0.222619 0.290134 -0.092265 0.952528 0.397612 -0.893741 -0.207681 0.819671 0.527807 -0.222619 0.298206 -0.061349 0.952528 0.489093 -0.847146 -0.207681 0.759839 0.610807 -0.222619 0.302994 -0.029757 0.952528 0.575186 -0.791220 -0.207681 0.692324 0.686388 -0.222619 0.304446 0.001859 0.952528 0.654217 -0.727233 -0.207681 0.616573 0.755168 -0.222619 0.302574 0.033756 0.952528 0.726834 -0.654661 -0.207681 0.534030 0.815630 -0.222619 0.297370 0.065282 0.952528 0.791444 -0.574879 -0.207681 0.445605 0.867108 -0.222619 0.288890 0.096089 0.952528 0.847336 -0.488764 -0.207681 0.353181 0.908683 -0.222619 0.277354 0.125561 0.952528 0.893498 -0.398159 -0.207681 0.255999 0.940694 -0.222619 0.262667 0.153938 0.952528 0.930307 -0.302321 -0.207681 0.155998 0.962344 -0.222619 0.245086 0.180619 0.952528 0.956869 -0.203153 -0.207681 0.055251 0.973339 -0.222619 0.225011 0.205086 0.952528 0.972788 -0.102720 -0.207681 -0.047066 0.973769 -0.222619 0.202278 0.227540 0.952528 0.978197 -0.000199 -0.207681 -0.148865 0.963473 -0.222619 0.177316 0.247487 0.952528 0.972830 0.102324 -0.207681 -0.249024 0.942565 -0.222619 0.150401 0.264708 0.952528 0.956748 0.203720 -0.207681 -0.345528 0.911620 -0.222619 0.122108 0.278891 0.952528 0.930430 0.301942 -0.207681 -0.439170 0.870385 -0.222619 0.092206 0.290153 0.952528 0.893660 0.397795 -0.207681 -0.527973 0.819564 -0.222619 0.061288 0.298219 0.952528 0.847046 0.489266 -0.207681 -0.610962 0.759715 -0.222619 0.029695 0.303000 0.952528 0.791103 0.575348 -0.207681 -0.686529 0.692184 -0.222619 -0.001921 0.304445 0.952528 0.727100 0.654365 -0.207681 -0.755294 0.616419 -0.222619 -0.033818 0.302567 0.952528 0.654513 0.726967 -0.207681 -0.815739 0.533864 -0.222619 -0.065343 0.297356 0.952528 0.574717 0.791561 -0.207681 -0.866753 0.446295 -0.222619 -0.095859 0.288966 0.952528 0.489438 0.846947 -0.207681 -0.908755 0.352995 -0.222619 -0.125617 0.277328 0.952528 0.397977 0.893579 -0.207681 -0.940746 0.255807 -0.222619 -0.153991 0.262635 0.952528 0.302131 0.930368 -0.207681 -0.962376 0.155802 -0.222619 -0.180669 0.245049 0.952528 0.202958 0.956910 -0.207681 -0.973350 0.055053 -0.222619 -0.205132 0.224970 0.952528 0.102522 0.972809 -0.207681 -0.973759 -0.047264 -0.222619 -0.227581 0.202231 0.952528 0.000000 0.978197 -0.207681 -0.963443 -0.149061 -0.222619 -0.247523 0.177265 0.952528 -0.102522 0.972809 -0.207681 -0.942763 -0.248273 -0.222619 -0.264588 0.150612 0.952528 -0.202958 0.956910 -0.207681 -0.911550 -0.345714 -0.222619 -0.278916 0.122051 0.952528 -0.302131 0.930368 -0.207681 -0.870296 -0.439347 -0.222619 -0.290172 0.092147 0.952528 -0.397977 0.893579 -0.207681 -0.819456 -0.528140 -0.222619 -0.298231 0.061227 0.952528 -0.489438 0.846947 -0.207681 -0.760201 -0.610357 -0.222619 -0.302976 0.029936 0.952528 -0.574717 0.791561 -0.207681 -0.692044 -0.686670 -0.222619 -0.304445 -0.001983 0.952528 -0.654513 0.726967 -0.207681 -0.616265 -0.755419 -0.222619 -0.302560 -0.033880 0.952528 -0.727100 0.654365 -0.207681 -0.534513 -0.815314 -0.222619 -0.297408 -0.065106 0.952528 -0.791103 0.575348 -0.207681 -0.446119 -0.866844 -0.222619 -0.288947 -0.095918 0.952528 -0.847046 0.489266 -0.207681 -0.352810 -0.908827 -0.222619 -0.277303 -0.125674 0.952528 -0.893660 0.397795 -0.207681 -0.255616 -0.940798 -0.222619 -0.262604 -0.154045 0.952528 -0.930430 0.301942 -0.207681 -0.156568 -0.962251 -0.222619 -0.245193 -0.180474 0.952528 -0.956748 0.203720 -0.207681 -0.054855 -0.973361 -0.222619 -0.224928 -0.205178 0.952528 -0.972830 0.102324 -0.207681 0.148419 -0.057142 -0.987272 -0.008295 -0.998366 0.056537 -0.988890 -0.000201 -0.148651 0.153591 -0.041272 -0.987272 0.096386 -0.993737 0.056537 -0.983422 -0.103843 -0.148651 0.157045 -0.025105 -0.987272 0.199028 -0.978362 0.056537 -0.967329 -0.205374 -0.148651 0.158812 -0.008507 -0.987272 0.300471 -0.952114 0.056537 -0.940476 -0.305625 -0.148651 0.158829 0.008185 -0.987272 0.398605 -0.915379 0.056537 -0.903265 -0.402511 -0.148651 0.157121 0.024629 -0.987272 0.491479 -0.869052 0.056537 -0.856599 -0.494107 -0.148651 0.153674 0.040961 -0.987272 0.579855 -0.812756 0.056537 -0.800095 -0.581163 -0.148651 0.148535 0.056841 -0.987272 0.661844 -0.747507 0.056537 -0.734779 -0.661818 -0.148651 0.141759 0.072096 -0.987272 0.736543 -0.674024 0.056537 -0.661369 -0.735183 -0.148651 0.133509 0.086423 -0.987272 0.802535 -0.593919 0.056537 -0.581474 -0.799869 -0.148651 0.123716 0.099939 -0.987272 0.860363 -0.506537 0.056537 -0.494440 -0.856407 -0.148651 0.112560 0.112355 -0.987272 0.908713 -0.413575 0.056537 -0.401959 -0.903511 -0.148651 0.100288 0.123433 -0.987272 0.946737 -0.317005 0.056537 -0.305991 -0.940358 -0.148651 0.086799 0.133264 -0.987272 0.974748 -0.216034 0.056537 -0.205750 -0.967249 -0.148651 0.072354 0.141628 -0.987272 0.992021 -0.112684 0.056537 -0.103242 -0.983486 -0.148651 0.057233 0.148384 -0.987272 0.998361 -0.008905 0.056537 -0.000403 -0.988890 -0.148651 0.041366 0.153565 -0.987272 0.993796 0.095779 0.056537 0.103242 -0.983486 -0.148651 0.025043 0.157055 -0.987272 0.978284 0.199408 0.056537 0.205750 -0.967249 -0.148651 0.008445 0.158815 -0.987272 0.951997 0.300841 0.056537 0.305991 -0.940358 -0.148651 -0.008088 0.158834 -0.987272 0.915622 0.398045 0.056537 0.401959 -0.903511 -0.148651 -0.024690 0.157111 -0.987272 0.868861 0.491817 0.056537 0.494440 -0.856407 -0.148651 -0.041020 0.153658 -0.987272 0.812530 0.580171 0.056537 0.581474 -0.799869 -0.148651 -0.056750 0.148569 -0.987272 0.747911 0.661387 0.056537 0.661369 -0.735183 -0.148651 -0.072009 0.141803 -0.987272 0.674474 0.736131 0.056537 0.734779 -0.661818 -0.148651 -0.086474 0.133475 -0.987272 0.593607 0.802767 0.056537 0.800095 -0.581163 -0.148651 -0.099987 0.123677 -0.987272 0.506202 0.860560 0.056537 0.856599 -0.494107 -0.148651 -0.112286 0.112629 -0.987272 0.414130 0.908460 0.056537 0.903265 -0.402511 -0.148651 -0.123472 0.100240 -0.987272 0.316636 0.946861 0.056537 0.940476 -0.305625 -0.148651 -0.133298 0.086747 -0.987272 0.215655 0.974832 0.056537 0.967329 -0.205374 -0.148651 -0.141583 0.072441 -0.987272 0.113290 0.991952 0.056537 0.983422 -0.103843 -0.148651 -0.148396 0.057203 -0.987272 0.008702 0.998363 0.056537 0.988890 -0.000201 -0.148651 -0.153574 0.041335 -0.987272 -0.095981 0.993776 0.056537 0.983465 0.103442 -0.148651 -0.157060 0.025011 -0.987272 -0.199608 0.978243 0.056537 0.967207 0.205947 -0.148651 -0.158808 0.008571 -0.987272 -0.300083 0.952236 0.056537 0.940601 0.305242 -0.148651 -0.158832 -0.008120 -0.987272 -0.398232 0.915541 0.056537 0.903429 0.402143 -0.148651 -0.157106 -0.024722 -0.987272 -0.491994 0.868761 0.056537 0.856306 0.494614 -0.148651 -0.153650 -0.041052 -0.987272 -0.580336 0.812412 0.056537 0.799751 0.581637 -0.148651 -0.148558 -0.056781 -0.987272 -0.661539 0.747776 0.056537 0.735048 0.661519 -0.148651 -0.141789 -0.072038 -0.987272 -0.736268 0.674324 0.056537 0.661668 0.734914 -0.148651 -0.133458 -0.086502 -0.987272 -0.802887 0.593444 0.056537 0.581000 0.800214 -0.148651 -0.123757 -0.099889 -0.987272 -0.860156 0.506887 0.056537 0.494788 0.856205 -0.148651 -0.112606 -0.112309 -0.987272 -0.908544 0.413945 0.056537 0.402327 0.903347 -0.148651 -0.100215 -0.123493 -0.987272 -0.946925 0.316444 0.056537 0.305434 0.940539 -0.148651 -0.086720 -0.133316 -0.987272 -0.974875 0.215456 0.056537 0.205177 0.967370 -0.148651 -0.072412 -0.141598 -0.987272 -0.991975 0.113088 0.056537 0.103643 0.983443 -0.148651 -0.057173 -0.148408 -0.987272 -0.998364 0.008499 0.056537 0.000000 0.988890 -0.148651 -0.041303 -0.153582 -0.987272 -0.993757 -0.096184 0.056537 -0.103643 0.983443 -0.148651 -0.025136 -0.157040 -0.987272 -0.978402 -0.198829 0.056537 -0.205177 0.967370 -0.148651 -0.008539 -0.158810 -0.987272 -0.952175 -0.300277 0.056537 -0.305434 0.940539 -0.148651 0.008152 -0.158830 -0.987272 -0.915460 -0.398418 0.056537 -0.402327 0.903347 -0.148651 0.024754 -0.157101 -0.987272 -0.868661 -0.492171 0.056537 -0.494788 0.856205 -0.148651 0.040929 -0.153682 -0.987272 -0.812874 -0.579689 0.056537 -0.581000 0.800214 -0.148651 0.056811 -0.148546 -0.987272 -0.747641 -0.661692 0.056537 -0.661668 0.734914 -0.148651 0.072067 -0.141774 -0.987272 -0.674174 -0.736406 0.056537 -0.735048 0.661519 -0.148651 0.086395 -0.133527 -0.987272 -0.594083 -0.802414 0.056537 -0.799751 0.581637 -0.148651 0.099914 -0.123736 -0.987272 -0.506712 -0.860259 0.056537 -0.856306 0.494614 -0.148651 0.112332 -0.112583 -0.987272 -0.413760 -0.908629 0.056537 -0.903429 0.402143 -0.148651 0.123513 -0.100190 -0.987272 -0.316251 -0.946989 0.056537 -0.940601 0.305242 -0.148651 0.133247 -0.086826 -0.987272 -0.216232 -0.974704 0.056537 -0.967207 0.205947 -0.148651 0.141613 -0.072383 -0.987272 -0.112886 -0.991998 0.056537 -0.983465 0.103442 -0.148651 0.063783 -0.936379 -0.345147 -0.169600 -0.350991 0.920891 -0.983447 -0.000200 -0.181197 0.161571 -0.924537 -0.345147 -0.131880 -0.366834 0.920891 -0.978010 -0.103271 -0.181197 0.256677 -0.902768 -0.345147 -0.093085 -0.378542 0.920891 -0.962004 -0.204243 -0.181197 0.349880 -0.870895 -0.345147 -0.052899 -0.386213 0.920891 -0.935300 -0.303943 -0.181197 0.439229 -0.829428 -0.345147 -0.012129 -0.389631 0.920891 -0.898293 -0.400295 -0.181197 0.522961 -0.779349 -0.345147 0.028385 -0.388784 0.920891 -0.851884 -0.491387 -0.181197 0.601762 -0.720247 -0.345147 0.068976 -0.383668 0.920891 -0.795692 -0.577964 -0.181197 0.673935 -0.653212 -0.345147 0.108807 -0.374326 0.920891 -0.730735 -0.658175 -0.181197 0.738684 -0.578981 -0.345147 0.147440 -0.360861 0.920891 -0.657729 -0.731137 -0.181197 0.794799 -0.499168 -0.345147 0.184105 -0.343605 0.920891 -0.578274 -0.795467 -0.181197 0.842738 -0.413118 -0.345147 0.219104 -0.322417 0.920891 -0.491718 -0.851693 -0.181197 0.881394 -0.322518 -0.345147 0.251689 -0.297678 0.920891 -0.399747 -0.898538 -0.181197 0.910113 -0.229276 -0.345147 0.281231 -0.269941 0.920891 -0.304307 -0.935182 -0.181197 0.929131 -0.132626 -0.345147 0.307974 -0.238979 0.920891 -0.204617 -0.961925 -0.181197 0.937914 -0.034516 -0.345147 0.331325 -0.205385 0.920891 -0.102674 -0.978072 -0.181197 0.936417 0.063211 -0.345147 0.350888 -0.169815 0.920891 -0.000401 -0.983447 -0.181197 0.924635 0.161006 -0.345147 0.366753 -0.132104 0.920891 0.102674 -0.978072 -0.181197 0.902668 0.257028 -0.345147 0.378578 -0.092938 0.920891 0.204617 -0.961925 -0.181197 0.870759 0.350218 -0.345147 0.386234 -0.052748 0.920891 0.304307 -0.935182 -0.181197 0.829697 0.438722 -0.345147 0.389623 -0.012367 0.920891 0.399747 -0.898538 -0.181197 0.779146 0.523264 -0.345147 0.388773 0.028536 0.920891 0.491718 -0.851693 -0.181197 0.720013 0.602042 -0.345147 0.383642 0.069125 0.920891 0.578274 -0.795467 -0.181197 0.653623 0.673536 -0.345147 0.374393 0.108579 0.920891 0.657729 -0.731137 -0.181197 0.579432 0.738330 -0.345147 0.360951 0.147220 0.920891 0.730735 -0.658175 -0.181197 0.498858 0.794993 -0.345147 0.343533 0.184239 0.920891 0.795692 -0.577964 -0.181197 0.412790 0.842898 -0.345147 0.322332 0.219229 0.920891 0.851884 -0.491387 -0.181197 0.323056 0.881197 -0.345147 0.297831 0.251507 0.920891 0.898293 -0.400295 -0.181197 0.228921 0.910202 -0.345147 0.269831 0.281336 0.920891 0.935300 -0.303943 -0.181197 0.132265 0.929182 -0.345147 0.238859 0.308067 0.920891 0.962004 -0.204243 -0.181197 0.035089 0.937892 -0.345147 0.205587 0.331199 0.920891 0.978010 -0.103271 -0.181197 -0.063402 0.936405 -0.345147 0.169743 0.350922 0.920891 0.983447 -0.000200 -0.181197 -0.161194 0.924602 -0.345147 0.132029 0.366780 0.920891 0.978051 0.102873 -0.181197 -0.257212 0.902616 -0.345147 0.092861 0.378597 0.920891 0.961883 0.204813 -0.181197 -0.349525 0.871037 -0.345147 0.053056 0.386192 0.920891 0.935424 0.303562 -0.181197 -0.438891 0.829607 -0.345147 0.012288 0.389626 0.920891 0.898456 0.399930 -0.181197 -0.523422 0.779039 -0.345147 -0.028615 0.388768 0.920891 0.851593 0.491892 -0.181197 -0.602189 0.719890 -0.345147 -0.069203 0.383627 0.920891 0.795349 0.578436 -0.181197 -0.673669 0.653486 -0.345147 -0.108655 0.374370 0.920891 0.731003 0.657878 -0.181197 -0.738448 0.579282 -0.345147 -0.147293 0.360921 0.920891 0.658026 0.730869 -0.181197 -0.795094 0.498697 -0.345147 -0.184309 0.343496 0.920891 0.577802 0.795809 -0.181197 -0.842569 0.413461 -0.345147 -0.218972 0.322506 0.920891 0.492065 0.851493 -0.181197 -0.881263 0.322877 -0.345147 -0.251567 0.297780 0.920891 0.400113 0.898375 -0.181197 -0.910249 0.228736 -0.345147 -0.281391 0.269774 0.920891 0.303753 0.935362 -0.181197 -0.929209 0.132076 -0.345147 -0.308116 0.238796 0.920891 0.204047 0.962046 -0.181197 -0.937899 0.034898 -0.345147 -0.331241 0.205520 0.920891 0.103072 0.978031 -0.181197 -0.936392 -0.063592 -0.345147 -0.350957 0.169672 0.920891 0.000000 0.983447 -0.181197 -0.924570 -0.161383 -0.345147 -0.366807 0.131954 0.920891 -0.103072 0.978031 -0.181197 -0.902820 -0.256493 -0.345147 -0.378523 0.093162 0.920891 -0.204047 0.962046 -0.181197 -0.870966 -0.349702 -0.345147 -0.386203 0.052977 0.920891 -0.303753 0.935362 -0.181197 -0.829518 -0.439060 -0.345147 -0.389628 0.012209 0.920891 -0.400113 0.898375 -0.181197 -0.778933 -0.523581 -0.345147 -0.388762 -0.028694 0.920891 -0.492065 0.851493 -0.181197 -0.720370 -0.601615 -0.345147 -0.383682 -0.068898 0.920891 -0.577802 0.795809 -0.181197 -0.653349 -0.673802 -0.345147 -0.374348 -0.108731 0.920891 -0.658026 0.730869 -0.181197 -0.579131 -0.738566 -0.345147 -0.360891 -0.147367 0.920891 -0.731003 0.657878 -0.181197 -0.499330 -0.794697 -0.345147 -0.343642 -0.184035 0.920891 -0.795349 0.578436 -0.181197 -0.413290 -0.842654 -0.345147 -0.322462 -0.219038 0.920891 -0.851593 0.491892 -0.181197 -0.322697 -0.881328 -0.345147 -0.297729 -0.251628 0.920891 -0.898456 0.399930 -0.181197 -0.228551 -0.910296 -0.345147 -0.269717 -0.281446 0.920891 -0.935424 0.303562 -0.181197 -0.132816 -0.929104 -0.345147 -0.239042 -0.307926 0.920891 -0.961883 0.204813 -0.181197 -0.034707 -0.937907 -0.345147 -0.205452 -0.331283 0.920891 -0.978051 0.102873 -0.181197 0.346684 0.029863 -0.937507 0.010537 -0.999554 -0.027943 -0.937923 -0.000191 -0.346844 0.341644 0.066033 -0.937507 0.115239 -0.992945 -0.027943 -0.932737 -0.098491 -0.346844 0.332943 0.101143 -0.937507 0.217697 -0.975616 -0.027943 -0.917473 -0.194789 -0.346844 0.320509 0.135481 -0.937507 0.318749 -0.947427 -0.027943 -0.892005 -0.289874 -0.346844 0.304545 0.168326 -0.937507 0.416291 -0.908802 -0.027943 -0.856711 -0.381766 -0.346844 0.285425 0.199033 -0.937507 0.508387 -0.860675 -0.027943 -0.812450 -0.468641 -0.346844 0.262993 0.227851 -0.937507 0.595792 -0.802653 -0.027943 -0.758859 -0.551210 -0.346844 0.237664 0.254160 -0.937507 0.676634 -0.735789 -0.027943 -0.696909 -0.627708 -0.346844 0.209717 0.277669 -0.937507 0.750024 -0.660820 -0.027943 -0.627282 -0.697292 -0.346844 0.179759 0.297940 -0.937507 0.814573 -0.579388 -0.027943 -0.551505 -0.758645 -0.346844 0.147542 0.315139 -0.937507 0.870811 -0.490824 -0.027943 -0.468957 -0.812268 -0.346844 0.113701 0.328867 -0.937507 0.917457 -0.396854 -0.027943 -0.381242 -0.856945 -0.346844 0.078946 0.338893 -0.937507 0.953698 -0.299466 -0.027943 -0.290221 -0.891892 -0.346844 0.042993 0.345301 -0.937507 0.979832 -0.197862 -0.027943 -0.195146 -0.917397 -0.346844 0.006566 0.347905 -0.937507 0.995173 -0.094079 -0.027943 -0.097921 -0.932797 -0.346844 -0.029651 0.346702 -0.937507 0.999560 0.009926 -0.027943 -0.000382 -0.937923 -0.346844 -0.065824 0.341685 -0.937507 0.993015 0.114632 -0.027943 0.097921 -0.932797 -0.346844 -0.101273 0.332904 -0.937507 0.975532 0.218076 -0.027943 0.195146 -0.917397 -0.346844 -0.135606 0.320456 -0.937507 0.947303 0.319118 -0.027943 0.290221 -0.891892 -0.346844 -0.168140 0.304647 -0.937507 0.909056 0.415736 -0.027943 0.381242 -0.856945 -0.346844 -0.199144 0.285347 -0.937507 0.860478 0.508722 -0.027943 0.468957 -0.812268 -0.346844 -0.227953 0.262904 -0.937507 0.802421 0.596104 -0.027943 0.551505 -0.758645 -0.346844 -0.254014 0.237819 -0.937507 0.736202 0.676185 -0.027943 0.627282 -0.697292 -0.346844 -0.277541 0.209887 -0.937507 0.661278 0.749620 -0.027943 0.696909 -0.627708 -0.346844 -0.298010 0.179643 -0.937507 0.579071 0.814798 -0.027943 0.758859 -0.551210 -0.346844 -0.315196 0.147420 -0.937507 0.490485 0.871001 -0.027943 0.812450 -0.468641 -0.346844 -0.328797 0.113902 -0.937507 0.397414 0.917214 -0.027943 0.856711 -0.381766 -0.346844 -0.338924 0.078814 -0.937507 0.299095 0.953814 -0.027943 0.892005 -0.289874 -0.346844 -0.345318 0.042858 -0.937507 0.197481 0.979908 -0.027943 0.917473 -0.194789 -0.346844 -0.347901 0.006779 -0.937507 0.094687 0.995115 -0.027943 0.932737 -0.098491 -0.346844 -0.346696 -0.029721 -0.937507 -0.010130 0.999558 -0.027943 0.937923 -0.000191 -0.346844 -0.341671 -0.065894 -0.937507 -0.114835 0.992992 -0.027943 0.932777 0.098111 -0.346844 -0.332883 -0.101341 -0.937507 -0.218275 0.975487 -0.027943 0.917358 0.195333 -0.346844 -0.320564 -0.135350 -0.937507 -0.318363 0.947557 -0.027943 0.892123 0.289510 -0.346844 -0.304613 -0.168202 -0.937507 -0.415921 0.908971 -0.027943 0.856867 0.381417 -0.346844 -0.285307 -0.199202 -0.937507 -0.508897 0.860374 -0.027943 0.812173 0.469122 -0.346844 -0.262858 -0.228007 -0.937507 -0.596267 0.802299 -0.027943 0.758532 0.551660 -0.346844 -0.237767 -0.254063 -0.937507 -0.676335 0.736064 -0.027943 0.697164 0.627424 -0.346844 -0.209830 -0.277583 -0.937507 -0.749754 0.661126 -0.027943 0.627566 0.697037 -0.346844 -0.179582 -0.298046 -0.937507 -0.814916 0.578905 -0.027943 0.551056 0.758971 -0.346844 -0.147671 -0.315079 -0.937507 -0.870611 0.491179 -0.027943 0.469287 0.812077 -0.346844 -0.113835 -0.328820 -0.937507 -0.917295 0.397227 -0.027943 0.381591 0.856789 -0.346844 -0.078745 -0.338940 -0.937507 -0.953875 0.298901 -0.027943 0.289692 0.892064 -0.346844 -0.042788 -0.345327 -0.937507 -0.979949 0.197281 -0.027943 0.194602 0.917513 -0.346844 -0.006708 -0.347903 -0.937507 -0.995134 0.094484 -0.027943 0.098301 0.932757 -0.346844 0.029792 -0.346690 -0.937507 -0.999556 -0.010333 -0.027943 0.000000 0.937923 -0.346844 0.065963 -0.341658 -0.937507 -0.992968 -0.115037 -0.027943 -0.098301 0.932757 -0.346844 0.101075 -0.332964 -0.937507 -0.975661 -0.217498 -0.027943 -0.194602 0.917513 -0.346844 0.135416 -0.320537 -0.937507 -0.947492 -0.318556 -0.027943 -0.289692 0.892064 -0.346844 0.168264 -0.304579 -0.937507 -0.908887 -0.416106 -0.027943 -0.381591 0.856789 -0.346844 0.199260 -0.285266 -0.937507 -0.860270 -0.509072 -0.027943 -0.469287 0.812077 -0.346844 0.227797 -0.263039 -0.937507 -0.802774 -0.595628 -0.027943 -0.551056 0.758971 -0.346844 0.254111 -0.237716 -0.937507 -0.735927 -0.676484 -0.027943 -0.627566 0.697037 -0.346844 0.277626 -0.209774 -0.937507 -0.660973 -0.749889 -0.027943 -0.697164 0.627424 -0.346844 0.297903 -0.179819 -0.937507 -0.579554 -0.814455 -0.027943 -0.758532 0.551660 -0.346844 0.315109 -0.147606 -0.937507 -0.491001 -0.870711 -0.027943 -0.812173 0.469122 -0.346844 0.328844 -0.113768 -0.937507 -0.397041 -0.917376 -0.027943 -0.856867 0.381417 -0.346844 0.338956 -0.078676 -0.937507 -0.298706 -0.953936 -0.027943 -0.892123 0.289510 -0.346844 0.345292 -0.043063 -0.937507 -0.198062 -0.979791 -0.027943 -0.917358 0.195333 -0.346844 0.347904 -0.006637 -0.937507 -0.094282 -0.995153 -0.027943 -0.932777 0.098111 -0.346844 0.740869 -0.522710 -0.421767 -0.454199 -0.852511 0.258706 -0.494789 -0.000101 -0.869013 0.791572 -0.442183 -0.421767 -0.362349 -0.895419 0.258706 -0.492054 -0.051958 -0.869013 0.833199 -0.357619 -0.421767 -0.267435 -0.928197 0.258706 -0.484001 -0.102758 -0.869013 0.866092 -0.268324 -0.421767 -0.168680 -0.951114 0.258706 -0.470566 -0.152919 -0.869013 0.889444 -0.176073 -0.421767 -0.068068 -0.963555 0.258706 -0.451947 -0.201396 -0.869013 0.902917 -0.082786 -0.421767 0.032329 -0.965415 0.258706 -0.428598 -0.247225 -0.869013 0.906621 0.012302 -0.421767 0.133333 -0.956710 0.258706 -0.400327 -0.290784 -0.869013 0.900338 0.107254 -0.421767 0.232869 -0.937466 0.258706 -0.367646 -0.331140 -0.869013 0.884139 0.201025 -0.421767 0.329840 -0.907897 0.258706 -0.330915 -0.367848 -0.869013 0.858492 0.291724 -0.421767 0.422309 -0.868750 0.258706 -0.290940 -0.400213 -0.869013 0.823190 0.380094 -0.421767 0.511034 -0.819704 0.258706 -0.247392 -0.428502 -0.869013 0.778819 0.464276 -0.421767 0.594131 -0.761630 0.258706 -0.201120 -0.452070 -0.869013 0.726414 0.542619 -0.421767 0.669987 -0.695836 0.258706 -0.153102 -0.470506 -0.869013 0.665543 0.615764 -0.421767 0.739226 -0.621785 0.258706 -0.102947 -0.483961 -0.869013 0.597341 0.682126 -0.421767 0.800322 -0.540884 0.258706 -0.051657 -0.492086 -0.869013 0.523163 0.740549 -0.421767 0.852233 -0.454720 0.258706 -0.000202 -0.494789 -0.869013 0.442666 0.791302 -0.421767 0.895197 -0.362896 0.258706 0.051657 -0.492086 -0.869013 0.357294 0.833338 -0.421767 0.928301 -0.267074 0.258706 0.102947 -0.483961 -0.869013 0.267987 0.866196 -0.421767 0.951180 -0.168310 0.258706 0.153102 -0.470506 -0.869013 0.176617 0.889336 -0.421767 0.963513 -0.068657 0.258706 0.201120 -0.452070 -0.869013 0.082435 0.902949 -0.421767 0.965402 0.032705 0.258706 0.247392 -0.428502 -0.869013 -0.012654 0.906616 -0.421767 0.956658 0.133706 0.258706 0.290940 -0.400213 -0.869013 -0.106704 0.900403 -0.421767 0.937608 0.232296 0.258706 0.330915 -0.367848 -0.869013 -0.200485 0.884261 -0.421767 0.908098 0.329285 0.258706 0.367646 -0.331140 -0.869013 -0.292058 0.858379 -0.421767 0.868586 0.422647 0.258706 0.400327 -0.290784 -0.869013 -0.380414 0.823042 -0.421767 0.819506 0.511353 0.258706 0.428598 -0.247225 -0.869013 -0.463800 0.779103 -0.421767 0.761993 0.593665 0.258706 0.451947 -0.201396 -0.869013 -0.542902 0.726202 -0.421767 0.695576 0.670258 0.258706 0.470566 -0.152919 -0.869013 -0.616023 0.665303 -0.421767 0.621497 0.739468 0.258706 0.484001 -0.102758 -0.869013 -0.681761 0.597757 -0.421767 0.541373 0.799992 0.258706 0.492054 -0.051958 -0.869013 -0.740656 0.523012 -0.421767 0.454546 0.852325 0.258706 0.494789 -0.000101 -0.869013 -0.791392 0.442505 -0.421767 0.362713 0.895271 0.258706 0.492075 0.051757 -0.869013 -0.833411 0.357125 -0.421767 0.266885 0.928355 0.258706 0.483940 0.103045 -0.869013 -0.865982 0.268676 -0.421767 0.169068 0.951045 0.258706 0.470628 0.152728 -0.869013 -0.889372 0.176436 -0.421767 0.068460 0.963527 0.258706 0.452029 0.201212 -0.869013 -0.902966 0.082251 -0.421767 -0.032901 0.965396 0.258706 0.428451 0.247479 -0.869013 -0.906613 -0.012839 -0.421767 -0.133901 0.956630 0.258706 0.400154 0.291021 -0.869013 -0.900382 -0.106887 -0.421767 -0.232487 0.937561 0.258706 0.367780 0.330990 -0.869013 -0.884220 -0.200665 -0.421767 -0.329470 0.908031 0.258706 0.331065 0.367713 -0.869013 -0.858319 -0.292233 -0.421767 -0.422824 0.868499 0.258706 0.290702 0.400386 -0.869013 -0.823344 -0.379758 -0.421767 -0.510700 0.819912 0.258706 0.247567 0.428401 -0.869013 -0.779008 -0.463959 -0.421767 -0.593820 0.761872 0.258706 0.201304 0.451988 -0.869013 -0.726092 -0.543049 -0.421767 -0.670400 0.695439 0.258706 0.152823 0.470597 -0.869013 -0.665178 -0.616158 -0.421767 -0.739594 0.621346 0.258706 0.102660 0.484022 -0.869013 -0.597618 -0.681883 -0.421767 -0.800102 0.541210 0.258706 0.051857 0.492064 -0.869013 -0.522861 -0.740762 -0.421767 -0.852418 0.454373 0.258706 0.000000 0.494789 -0.869013 -0.442344 -0.791482 -0.421767 -0.895345 0.362531 0.258706 -0.051857 0.492064 -0.869013 -0.357788 -0.833127 -0.421767 -0.928143 0.267624 0.258706 -0.102660 0.484022 -0.869013 -0.268500 -0.866037 -0.421767 -0.951080 0.168874 0.258706 -0.152823 0.470597 -0.869013 -0.176254 -0.889408 -0.421767 -0.963541 0.068264 0.258706 -0.201304 0.451988 -0.869013 -0.082067 -0.902982 -0.421767 -0.965389 -0.033098 0.258706 -0.247567 0.428401 -0.869013 0.012117 -0.906623 -0.421767 -0.956737 -0.133139 0.258706 -0.290702 0.400386 -0.869013 0.107071 -0.900360 -0.421767 -0.937514 -0.232678 0.258706 -0.331065 0.367713 -0.869013 0.200845 -0.884179 -0.421767 -0.907964 -0.329655 0.258706 -0.367780 0.330990 -0.869013 0.291549 -0.858552 -0.421767 -0.868836 -0.422132 0.258706 -0.400154 0.291021 -0.869013 0.379926 -0.823267 -0.421767 -0.819808 -0.510867 0.258706 -0.428451 0.247479 -0.869013 0.464118 -0.778914 -0.421767 -0.761751 -0.593975 0.258706 -0.452029 0.201212 -0.869013 0.543197 -0.725981 -0.421767 -0.695303 -0.670541 0.258706 -0.470628 0.152728 -0.869013 0.615628 -0.665668 -0.421767 -0.621935 -0.739099 0.258706 -0.483940 0.103045 -0.869013 0.682005 -0.597480 -0.421767 -0.541047 -0.800212 0.258706 -0.492075 0.051757 -0.869013 -0.215264 -0.183208 -0.959216 0.040314 -0.983074 0.178717 -0.975723 -0.000199 0.219007 -0.194877 -0.204760 -0.959216 0.143126 -0.973435 0.178717 -0.970329 -0.102460 0.219007 -0.172568 -0.223884 -0.959216 0.243407 -0.953317 0.178717 -0.954449 -0.202639 0.219007 -0.148153 -0.240737 -0.959216 0.341981 -0.922556 0.178717 -0.927955 -0.301556 0.219007 -0.122106 -0.254939 -0.959216 0.436788 -0.881633 0.178717 -0.891239 -0.397152 0.219007 -0.094980 -0.266238 -0.959216 0.525953 -0.831525 0.178717 -0.845194 -0.487528 0.219007 -0.066553 -0.274726 -0.959216 0.610206 -0.771822 0.178717 -0.789443 -0.573425 0.219007 -0.037393 -0.280188 -0.959216 0.687737 -0.703617 0.178717 -0.724996 -0.653006 0.219007 -0.007822 -0.282564 -0.959216 0.757694 -0.627662 0.178717 -0.652563 -0.725395 0.219007 0.021554 -0.281850 -0.959216 0.818759 -0.545613 0.178717 -0.573732 -0.789220 0.219007 0.050975 -0.278038 -0.959216 0.871434 -0.456796 0.178717 -0.487856 -0.845004 0.219007 0.079835 -0.271164 -0.959216 0.914510 -0.362948 0.178717 -0.396607 -0.891481 0.219007 0.107554 -0.261411 -0.959216 0.947248 -0.266049 0.178717 -0.301917 -0.927837 0.219007 0.134359 -0.248699 -0.959216 0.969915 -0.165305 0.178717 -0.203011 -0.954370 0.219007 0.159685 -0.233248 -0.959216 0.981898 -0.062741 0.178717 -0.101868 -0.970391 0.219007 0.183076 -0.215376 -0.959216 0.983099 0.039714 0.178717 -0.000397 -0.975723 0.219007 0.204641 -0.195002 -0.959216 0.973522 0.142531 0.178717 0.101868 -0.970391 0.219007 0.223951 -0.172481 -0.959216 0.953222 0.243778 0.178717 0.203011 -0.954370 0.219007 0.240795 -0.148059 -0.959216 0.922423 0.342340 0.178717 0.301917 -0.927837 0.219007 0.254864 -0.122261 -0.959216 0.881900 0.436249 0.178717 0.396607 -0.891481 0.219007 0.266275 -0.094876 -0.959216 0.831321 0.526276 0.178717 0.487856 -0.845004 0.219007 0.274752 -0.066446 -0.959216 0.771585 0.610506 0.178717 0.573732 -0.789220 0.219007 0.280165 -0.037565 -0.959216 0.704037 0.687307 0.178717 0.652563 -0.725395 0.219007 0.282559 -0.007994 -0.959216 0.628125 0.757310 0.178717 0.724996 -0.653006 0.219007 0.281841 0.021664 -0.959216 0.545294 0.818972 0.178717 0.789443 -0.573425 0.219007 0.278018 0.051083 -0.959216 0.456457 0.871612 0.178717 0.845194 -0.487528 0.219007 0.271213 0.079669 -0.959216 0.363506 0.914288 0.178717 0.891239 -0.397152 0.219007 0.261369 0.107656 -0.959216 0.265680 0.947351 0.178717 0.927955 -0.301556 0.219007 0.248647 0.134456 -0.959216 0.164928 0.969979 0.178717 0.954449 -0.202639 0.219007 0.233345 0.159542 -0.959216 0.063341 0.981860 0.178717 0.970329 -0.102460 0.219007 0.215339 0.183120 -0.959216 -0.039914 0.983091 0.178717 0.975723 -0.000199 0.219007 0.194961 0.204680 -0.959216 -0.142729 0.973493 0.178717 0.970370 0.102065 0.219007 0.172435 0.223986 -0.959216 -0.243972 0.953173 0.178717 0.954329 0.203205 0.219007 0.148251 0.240677 -0.959216 -0.341605 0.922695 0.178717 0.928077 0.301178 0.219007 0.122209 0.254889 -0.959216 -0.436429 0.881811 0.178717 0.891400 0.396789 0.219007 0.094822 0.266294 -0.959216 -0.526445 0.831213 0.178717 0.844905 0.488029 0.219007 0.066390 0.274765 -0.959216 -0.610663 0.771460 0.178717 0.789103 0.573893 0.219007 0.037508 0.280173 -0.959216 -0.687451 0.703897 0.178717 0.725262 0.652711 0.219007 0.007937 0.282561 -0.959216 -0.757438 0.627971 0.178717 0.652859 0.725129 0.219007 -0.021721 0.281837 -0.959216 -0.819082 0.545128 0.178717 0.573264 0.789559 0.219007 -0.050862 0.278059 -0.959216 -0.871248 0.457151 0.178717 0.488201 0.844805 0.219007 -0.079725 0.271197 -0.959216 -0.914362 0.363320 0.178717 0.396970 0.891320 0.219007 -0.107709 0.261348 -0.959216 -0.947405 0.265488 0.178717 0.301367 0.928016 0.219007 -0.134507 0.248620 -0.959216 -0.970012 0.164731 0.178717 0.202445 0.954491 0.219007 -0.159590 0.233313 -0.959216 -0.981872 0.063141 0.178717 0.102263 0.970350 0.219007 -0.183164 0.215302 -0.959216 -0.983082 -0.040114 0.178717 0.000000 0.975723 0.219007 -0.204720 0.194919 -0.959216 -0.973464 -0.142927 0.178717 -0.102263 0.970350 0.219007 -0.223849 0.172613 -0.959216 -0.953367 -0.243213 0.178717 -0.202445 0.954491 0.219007 -0.240707 0.148202 -0.959216 -0.922625 -0.341793 0.178717 -0.301367 0.928016 0.219007 -0.254914 0.122158 -0.959216 -0.881722 -0.436608 0.178717 -0.396970 0.891320 0.219007 -0.266313 0.094768 -0.959216 -0.831106 -0.526614 0.178717 -0.488201 0.844805 0.219007 -0.274712 0.066609 -0.959216 -0.771946 -0.610048 0.178717 -0.573264 0.789559 0.219007 -0.280181 0.037451 -0.959216 -0.703757 -0.687594 0.178717 -0.652859 0.725129 0.219007 -0.282563 0.007879 -0.959216 -0.627817 -0.757566 0.178717 -0.725262 0.652711 0.219007 -0.281854 -0.021497 -0.959216 -0.545780 -0.818648 0.178717 -0.789103 0.573893 0.219007 -0.278049 -0.050919 -0.959216 -0.456973 -0.871341 0.178717 -0.844905 0.488029 0.219007 -0.271181 -0.079780 -0.959216 -0.363134 -0.914436 0.178717 -0.891400 0.396789 0.219007 -0.261326 -0.107762 -0.959216 -0.265295 -0.947459 0.178717 -0.928077 0.301178 0.219007 -0.248727 -0.134309 -0.959216 -0.165503 -0.969881 0.178717 -0.954329 0.203205 0.219007 -0.233280 -0.159637 -0.959216 -0.062941 -0.981885 0.178717 -0.970370 0.102065 0.219007 -0.281641 -0.560735 0.778624 -0.190950 0.827996 0.527221 -0.940328 -0.000192 -0.340270 -0.221321 -0.587164 0.778624 -0.276678 0.803422 0.527221 -0.935129 -0.098744 -0.340270 -0.159170 -0.606968 0.778624 -0.358589 0.770359 0.527221 -0.919826 -0.195288 -0.340270 -0.094679 -0.620307 0.778624 -0.437353 0.728533 0.527221 -0.894292 -0.290617 -0.340270 -0.029144 -0.626814 0.778624 -0.511300 0.678683 0.527221 -0.858908 -0.382745 -0.340270 0.036084 -0.626453 0.778624 -0.578993 0.621937 0.527221 -0.814533 -0.469842 -0.340270 0.101542 -0.619221 0.778624 -0.640988 0.557829 0.527221 -0.760805 -0.552623 -0.340270 0.165882 -0.605168 0.778624 -0.695922 0.487577 0.527221 -0.698696 -0.629318 -0.340270 0.228394 -0.584449 0.778624 -0.743191 0.411954 0.527221 -0.628891 -0.699080 -0.340270 0.287833 -0.557581 0.778624 -0.781941 0.332575 0.527221 -0.552919 -0.760590 -0.340270 0.344687 -0.524343 0.778624 -0.812491 0.248791 0.527221 -0.470159 -0.814351 -0.340270 0.397743 -0.485330 0.778624 -0.834091 0.162265 0.527221 -0.382220 -0.859142 -0.340270 0.445977 -0.441417 0.778624 -0.846430 0.074800 0.527221 -0.290965 -0.894179 -0.340270 0.489785 -0.392244 0.778624 -0.849608 -0.014324 0.527221 -0.195646 -0.919749 -0.340270 0.528198 -0.338751 0.778624 -0.843427 -0.103290 0.527221 -0.098172 -0.935189 -0.340270 0.560562 -0.281983 0.778624 -0.828112 -0.190444 0.527221 -0.000383 -0.940328 -0.340270 0.587029 -0.221679 0.778624 -0.803591 -0.276187 0.527221 0.098172 -0.935189 -0.340270 0.607030 -0.158934 0.778624 -0.770219 -0.358889 0.527221 0.195646 -0.919749 -0.340270 0.620344 -0.094437 0.778624 -0.728363 -0.437636 0.527221 0.290965 -0.894179 -0.340270 0.626796 -0.029527 0.778624 -0.678996 -0.510885 0.527221 0.382220 -0.859142 -0.340270 0.626438 0.036328 0.778624 -0.621712 -0.579235 0.527221 0.470159 -0.814351 -0.340270 0.619181 0.101783 0.778624 -0.557580 -0.641205 0.527221 0.552919 -0.760590 -0.340270 0.605269 0.165512 0.778624 -0.488002 -0.695624 0.527221 0.628891 -0.699080 -0.340270 0.584589 0.228037 0.778624 -0.412408 -0.742939 0.527221 0.698696 -0.629318 -0.340270 0.557469 0.288050 0.778624 -0.332271 -0.782071 0.527221 0.760805 -0.552623 -0.340270 0.524209 0.344890 0.778624 -0.248475 -0.812588 0.527221 0.814533 -0.469842 -0.340270 0.485573 0.397447 0.778624 -0.162775 -0.833992 0.527221 0.858908 -0.382745 -0.340270 0.441244 0.446149 0.778624 -0.074470 -0.846459 0.527221 0.894292 -0.290617 -0.340270 0.392054 0.489938 0.778624 0.014655 -0.849602 0.527221 0.919826 -0.195288 -0.340270 0.339074 0.527990 0.778624 0.102775 -0.843490 0.527221 0.935129 -0.098744 -0.340270 0.281869 0.560620 0.778624 0.190613 -0.828073 0.527221 0.940328 -0.000192 -0.340270 0.221560 0.587074 0.778624 0.276351 -0.803535 0.527221 0.935169 0.098363 -0.340270 0.158810 0.607062 0.778624 0.359045 -0.770146 0.527221 0.919710 0.195833 -0.340270 0.094931 0.620268 0.778624 0.437056 -0.728711 0.527221 0.894410 0.290253 -0.340270 0.029400 0.626802 0.778624 0.511023 -0.678891 0.527221 0.859064 0.382395 -0.340270 -0.036455 0.626431 0.778624 0.579362 -0.621594 0.527221 0.814255 0.470325 -0.340270 -0.101909 0.619160 0.778624 0.641318 -0.557449 0.527221 0.760477 0.553074 -0.340270 -0.165635 0.605235 0.778624 0.695723 -0.487860 0.527221 0.698952 0.629033 -0.340270 -0.228156 0.584542 0.778624 0.743023 -0.412256 0.527221 0.629175 0.698824 -0.340270 -0.288164 0.557411 0.778624 0.782138 -0.332112 0.527221 0.552469 0.760917 -0.340270 -0.344473 0.524484 0.778624 0.812390 -0.249122 0.527221 0.470491 0.814159 -0.340270 -0.397545 0.485492 0.778624 0.834025 -0.162605 0.527221 0.382570 0.858986 -0.340270 -0.446239 0.441153 0.778624 0.846474 -0.074298 0.527221 0.290435 0.894351 -0.340270 -0.490017 0.391954 0.778624 0.849599 0.014828 0.527221 0.195101 0.919865 -0.340270 -0.528059 0.338966 0.778624 0.843469 0.102947 0.527221 0.098553 0.935149 -0.340270 -0.560677 0.281755 0.778624 0.828034 0.190781 0.527221 0.000000 0.940328 -0.340270 -0.587119 0.221440 0.778624 0.803479 0.276515 0.527221 -0.098553 0.935149 -0.340270 -0.606935 0.159293 0.778624 0.770432 0.358432 0.527221 -0.195101 0.919865 -0.340270 -0.620288 0.094805 0.778624 0.728622 0.437205 0.527221 -0.290435 0.894351 -0.340270 -0.626808 0.029272 0.778624 0.678787 0.511162 0.527221 -0.382570 0.858986 -0.340270 -0.626424 -0.036583 0.778624 0.621476 0.579488 0.527221 -0.470491 0.814159 -0.340270 -0.619241 -0.101416 0.778624 0.557959 0.640874 0.527221 -0.552469 0.760917 -0.340270 -0.605202 -0.165758 0.778624 0.487718 0.695823 0.527221 -0.629175 0.698824 -0.340270 -0.584496 -0.228275 0.778624 0.412105 0.743107 0.527221 -0.698952 0.629033 -0.340270 -0.557640 -0.287720 0.778624 0.332735 0.781874 0.527221 -0.760477 0.553074 -0.340270 -0.524414 -0.344580 0.778624 0.248956 0.812440 0.527221 -0.814255 0.470325 -0.340270 -0.485411 -0.397644 0.778624 0.162435 0.834058 0.527221 -0.859064 0.382395 -0.340270 -0.441062 -0.446329 0.778624 0.074126 0.846489 0.527221 -0.894410 0.290253 -0.340270 -0.392344 -0.489705 0.778624 -0.014151 0.849611 0.527221 -0.919710 0.195833 -0.340270 -0.338859 -0.528129 0.778624 -0.103119 0.843448 0.527221 -0.935169 0.098363 -0.340270 -0.075375 -0.977079 -0.199088 0.346793 -0.212879 0.913464 -0.934908 -0.000190 0.354890 0.027445 -0.979597 -0.199088 0.367195 -0.175360 0.913464 -0.929739 -0.098174 0.354890 0.128992 -0.971455 -0.199088 0.383415 -0.136293 0.913464 -0.914524 -0.194163 0.354890 0.230097 -0.952586 -0.199088 0.395588 -0.095358 0.913464 -0.889138 -0.288942 0.354890 0.328667 -0.923224 -0.199088 0.403404 -0.053372 0.913464 -0.853958 -0.380539 0.354890 0.422734 -0.884115 -0.199088 0.406765 -0.011205 0.913464 -0.809839 -0.467134 0.354890 0.513067 -0.834941 -0.199088 0.405699 0.031488 0.913464 -0.756420 -0.549438 0.354890 0.597749 -0.776569 -0.199088 0.400164 0.073835 0.913464 -0.694669 -0.625690 0.354890 0.675847 -0.709644 -0.199088 0.390222 0.115368 0.913464 -0.625266 -0.695051 0.354890 0.745866 -0.635648 -0.199088 0.376137 0.155255 0.913464 -0.549733 -0.756206 0.354890 0.808378 -0.553975 -0.199088 0.357793 0.193822 0.913464 -0.467449 -0.809657 0.354890 0.861987 -0.466200 -0.199088 0.335509 0.230254 0.913464 -0.380017 -0.854190 0.354890 0.905727 -0.374197 -0.199088 0.309793 0.263840 0.913464 -0.289288 -0.889025 0.354890 0.939957 -0.277209 -0.199088 0.280434 0.294855 0.913464 -0.194518 -0.914448 0.354890 0.963834 -0.177168 -0.199088 0.247987 0.322623 0.913464 -0.097606 -0.929799 0.354890 0.977032 -0.075972 -0.199088 0.213091 0.346663 0.913464 -0.000381 -0.934908 0.354890 0.979614 0.026847 -0.199088 0.175584 0.367087 0.913464 0.097606 -0.929799 0.354890 0.971405 0.129370 -0.199088 0.136144 0.383468 0.913464 0.194518 -0.914448 0.354890 0.952496 0.230467 -0.199088 0.095204 0.395625 0.913464 0.289288 -0.889025 0.354890 0.923424 0.328103 -0.199088 0.053619 0.403371 0.913464 0.380017 -0.854190 0.354890 0.883951 0.423078 -0.199088 0.011047 0.406769 0.913464 0.467449 -0.809657 0.354890 0.834741 0.513392 -0.199088 -0.031646 0.405686 0.913464 0.549733 -0.756206 0.354890 0.776934 0.597275 -0.199088 -0.073590 0.400209 0.913464 0.625266 -0.695051 0.354890 0.710057 0.675413 -0.199088 -0.115130 0.390292 0.913464 0.694669 -0.625690 0.354890 0.635358 0.746113 -0.199088 -0.155401 0.376076 0.913464 0.756420 -0.549438 0.354890 0.553661 0.808594 -0.199088 -0.193961 0.357718 0.913464 0.809839 -0.467134 0.354890 0.466727 0.861702 -0.199088 -0.230049 0.335650 0.913464 0.853958 -0.380539 0.354890 0.373844 0.905872 -0.199088 -0.263960 0.309690 0.913464 0.889138 -0.288942 0.354890 0.276843 0.940065 -0.199088 -0.294964 0.280320 0.913464 0.914524 -0.194163 0.354890 0.177757 0.963725 -0.199088 -0.322471 0.248184 0.913464 0.929739 -0.098174 0.354890 0.075773 0.977048 -0.199088 -0.346707 0.213020 0.913464 0.934908 -0.000190 0.354890 -0.027046 0.979608 -0.199088 -0.367123 0.175509 0.913464 0.929779 0.097796 0.354890 -0.129567 0.971379 -0.199088 -0.383496 0.136066 0.913464 0.914409 0.194705 0.354890 -0.229709 0.952679 -0.199088 -0.395549 0.095519 0.913464 0.889255 0.288580 0.354890 -0.328291 0.923357 -0.199088 -0.403382 0.053536 0.913464 0.854112 0.380191 0.354890 -0.423258 0.883865 -0.199088 -0.406771 0.010964 0.913464 0.809562 0.467614 0.354890 -0.513562 0.834637 -0.199088 -0.405680 -0.031729 0.913464 0.756094 0.549887 0.354890 -0.597433 0.776813 -0.199088 -0.400194 -0.073672 0.913464 0.694923 0.625407 0.354890 -0.675558 0.709919 -0.199088 -0.390269 -0.115209 0.913464 0.625549 0.694796 0.354890 -0.746242 0.635206 -0.199088 -0.376045 -0.155478 0.913464 0.549284 0.756532 0.354890 -0.808152 0.554305 -0.199088 -0.357872 -0.193676 0.913464 0.467779 0.809467 0.354890 -0.861797 0.466552 -0.199088 -0.335603 -0.230117 0.913464 0.380365 0.854035 0.354890 -0.905948 0.373660 -0.199088 -0.309637 -0.264023 0.913464 0.288761 0.889196 0.354890 -0.940121 0.276652 -0.199088 -0.280260 -0.295021 0.913464 0.193976 0.914563 0.354890 -0.963761 0.177561 -0.199088 -0.248118 -0.322522 0.913464 0.097985 0.929759 0.354890 -0.977063 0.075574 -0.199088 -0.212949 -0.346750 0.913464 0.000000 0.934908 0.354890 -0.979603 -0.027246 -0.199088 -0.175435 -0.367159 0.913464 -0.097985 0.929759 0.354890 -0.971481 -0.128794 -0.199088 -0.136371 -0.383387 0.913464 -0.193976 0.914563 0.354890 -0.952632 -0.229903 -0.199088 -0.095438 -0.395569 0.913464 -0.288761 0.889196 0.354890 -0.923290 -0.328479 -0.199088 -0.053454 -0.403393 0.913464 -0.380365 0.854035 0.354890 -0.883779 -0.423438 -0.199088 -0.010881 -0.406773 0.913464 -0.467779 0.809467 0.354890 -0.835045 -0.512897 -0.199088 0.031406 -0.405705 0.913464 -0.549284 0.756532 0.354890 -0.776691 -0.597591 -0.199088 0.073753 -0.400179 0.913464 -0.625549 0.694796 0.354890 -0.709782 -0.675703 -0.199088 0.115289 -0.390245 0.913464 -0.694923 0.625407 0.354890 -0.635800 -0.745736 -0.199088 0.155178 -0.376168 0.913464 -0.756094 0.549887 0.354890 -0.554140 -0.808265 -0.199088 0.193749 -0.357833 0.913464 -0.809562 0.467614 0.354890 -0.466376 -0.861892 -0.199088 0.230185 -0.335556 0.913464 -0.854112 0.380191 0.354890 -0.373475 -0.906024 -0.199088 0.264086 -0.309583 0.913464 -0.889255 0.288580 0.354890 -0.277400 -0.939900 -0.199088 0.294798 -0.280495 0.913464 -0.914409 0.194705 0.354890 -0.177364 -0.963798 -0.199088 0.322572 -0.248053 0.913464 -0.929779 0.097796 0.354890 0.704533 -0.330706 0.627906 0.246789 0.943734 0.220140 -0.665378 -0.000136 0.746507 0.735314 -0.255045 0.627906 0.146520 0.964402 0.220140 -0.661699 -0.069871 0.746507 0.757817 -0.177332 0.627906 0.045611 0.974401 0.220140 -0.650870 -0.138186 0.746507 0.772229 -0.096930 0.627906 -0.056764 0.973815 0.220140 -0.632803 -0.205641 0.746507 0.778135 -0.015461 0.627906 -0.158514 0.962503 0.220140 -0.607765 -0.270831 0.746507 0.775536 0.065403 0.627906 -0.257578 0.940846 0.220140 -0.576366 -0.332461 0.746507 0.764410 0.146324 0.627906 -0.354767 0.908669 0.220140 -0.538347 -0.391037 0.746507 0.744865 0.225634 0.627906 -0.448048 0.866482 0.220140 -0.494399 -0.445306 0.746507 0.717114 0.302458 0.627906 -0.536394 0.814752 0.220140 -0.445004 -0.494671 0.746507 0.681841 0.375270 0.627906 -0.618077 0.754665 0.220140 -0.391247 -0.538195 0.746507 0.638754 0.444665 0.627906 -0.693767 0.685730 0.220140 -0.332685 -0.576236 0.746507 0.588632 0.509162 0.627906 -0.761816 0.609241 0.220140 -0.270459 -0.607930 0.746507 0.532595 0.567518 0.627906 -0.820947 0.526863 0.220140 -0.205887 -0.632723 0.746507 0.470181 0.620212 0.627906 -0.871644 0.437921 0.220140 -0.138440 -0.650817 0.746507 0.402589 0.666075 0.627906 -0.912741 0.344154 0.220140 -0.069467 -0.661742 0.746507 0.331136 0.704331 0.627906 -0.943583 0.247366 0.220140 -0.000271 -0.665378 0.746507 0.255494 0.735158 0.627906 -0.964312 0.147109 0.220140 0.069467 -0.661742 0.746507 0.177037 0.757886 0.627906 -0.974419 0.045232 0.220140 0.138440 -0.650817 0.746507 0.096630 0.772267 0.627906 -0.973793 -0.057143 0.220140 0.205887 -0.632723 0.746507 0.015937 0.778126 0.627906 -0.962599 -0.157926 0.220140 0.270459 -0.607930 0.746507 -0.065704 0.775511 0.627906 -0.940746 -0.257944 0.220140 0.332685 -0.576236 0.746507 -0.146621 0.764353 0.627906 -0.908531 -0.355120 0.220140 0.391247 -0.538195 0.746507 -0.225179 0.745002 0.627906 -0.866756 -0.447518 0.220140 0.445004 -0.494671 0.746507 -0.302020 0.717299 0.627906 -0.815079 -0.535896 0.220140 0.494399 -0.445306 0.746507 -0.375535 0.681694 0.627906 -0.754424 -0.618371 0.220140 0.538347 -0.391037 0.746507 -0.444913 0.638581 0.627906 -0.685460 -0.694034 0.220140 0.576366 -0.332461 0.746507 -0.508802 0.588943 0.627906 -0.609707 -0.761443 0.220140 0.607765 -0.270831 0.746507 -0.567725 0.532374 0.627906 -0.526544 -0.821152 0.220140 0.632803 -0.205641 0.746507 -0.620395 0.469940 0.627906 -0.437581 -0.871815 0.220140 0.650870 -0.138186 0.746507 -0.665829 0.402996 0.627906 -0.344712 -0.912531 0.220140 0.661699 -0.069871 0.746507 -0.704399 0.330993 0.627906 -0.247174 -0.943633 0.220140 0.665378 -0.000136 0.746507 -0.735210 0.255344 0.627906 -0.146913 -0.964342 0.220140 0.661728 0.069602 0.746507 -0.757922 0.176882 0.627906 -0.045034 -0.974428 0.220140 0.650788 0.138572 0.746507 -0.772190 0.097245 0.627906 0.056368 -0.973838 0.220140 0.632887 0.205383 0.746507 -0.778129 0.015778 0.627906 0.158122 -0.962567 0.220140 0.607875 0.270583 0.746507 -0.775497 -0.065862 0.627906 0.258135 -0.940694 0.220140 0.576168 0.332803 0.746507 -0.764323 -0.146777 0.627906 0.355305 -0.908458 0.220140 0.538115 0.391356 0.746507 -0.744956 -0.225330 0.627906 0.447695 -0.866665 0.220140 0.494580 0.445105 0.746507 -0.717237 -0.302166 0.627906 0.536062 -0.814970 0.220140 0.445206 0.494489 0.746507 -0.681618 -0.375674 0.627906 0.618524 -0.754298 0.220140 0.390928 0.538427 0.746507 -0.638935 -0.444404 0.627906 0.693488 -0.686012 0.220140 0.332920 0.576101 0.746507 -0.588840 -0.508922 0.627906 0.761568 -0.609552 0.220140 0.270707 0.607820 0.746507 -0.532258 -0.567834 0.627906 0.821259 -0.526377 0.220140 0.205512 0.632845 0.746507 -0.469814 -0.620491 0.627906 0.871904 -0.437404 0.220140 0.138054 0.650899 0.746507 -0.402860 -0.665911 0.627906 0.912601 -0.344526 0.220140 0.069736 0.661713 0.746507 -0.330850 -0.704466 0.627906 0.943684 -0.246981 0.220140 0.000000 0.665378 0.746507 -0.255194 -0.735262 0.627906 0.964372 -0.146716 0.220140 -0.069736 0.661713 0.746507 -0.177486 -0.757781 0.627906 0.974392 -0.045810 0.220140 -0.138054 0.650899 0.746507 -0.097088 -0.772210 0.627906 0.973827 0.056566 0.220140 -0.205512 0.632845 0.746507 -0.015620 -0.778132 0.627906 0.962535 0.158318 0.220140 -0.270707 0.607820 0.746507 0.066020 -0.775484 0.627906 0.940641 0.258327 0.220140 -0.332920 0.576101 0.746507 0.146168 -0.764440 0.627906 0.908741 0.354582 0.220140 -0.390928 0.538427 0.746507 0.225482 -0.744910 0.627906 0.866573 0.447871 0.220140 -0.445206 0.494489 0.746507 0.302312 -0.717176 0.627906 0.814861 0.536228 0.220140 -0.494580 0.445105 0.746507 0.375131 -0.681917 0.627906 0.754791 0.617923 0.220140 -0.538115 0.391356 0.746507 0.444535 -0.638845 0.627906 0.685871 0.693628 0.220140 -0.576168 0.332803 0.746507 0.509042 -0.588736 0.627906 0.609396 0.761692 0.220140 -0.607875 0.270583 0.746507 0.567942 -0.532143 0.627906 0.526209 0.821366 0.220140 -0.632887 0.205383 0.746507 0.620116 -0.470308 0.627906 0.438098 0.871555 0.220140 -0.650788 0.138572 0.746507 0.665993 -0.402725 0.627906 0.344340 0.912671 0.220140 -0.661728 0.069602 0.746507 0.583043 -0.645783 0.492976 0.493024 0.763521 0.417088 -0.645746 -0.000132 0.763552 0.647515 -0.581119 0.492976 0.410286 0.810989 0.417088 -0.642176 -0.067810 0.763552 0.704344 -0.510759 0.492976 0.323879 0.849200 0.417088 -0.631667 -0.134109 0.763552 0.753996 -0.434126 0.492976 0.233093 0.878467 0.417088 -0.614132 -0.199574 0.763552 0.795343 -0.352711 0.492976 0.139739 0.898059 0.417088 -0.589833 -0.262840 0.763552 0.827661 -0.268238 0.492976 0.045754 0.907713 0.417088 -0.559360 -0.322652 0.763552 0.851216 -0.180016 0.492976 -0.049632 0.907510 0.417088 -0.522463 -0.379500 0.763552 0.865395 -0.089811 0.492976 -0.144473 0.897310 0.417088 -0.479811 -0.432168 0.763552 0.870042 0.001383 0.492976 -0.237721 0.877226 0.417088 -0.431875 -0.480075 0.763552 0.865197 0.091697 0.492976 -0.327504 0.847808 0.417088 -0.379703 -0.522316 0.763552 0.850822 0.181871 0.492976 -0.414557 0.808814 0.417088 -0.322870 -0.559234 0.763552 0.827075 0.270041 0.492976 -0.497043 0.760911 0.417088 -0.262480 -0.589994 0.763552 0.794572 0.354443 0.492976 -0.573350 0.705200 0.417088 -0.199813 -0.614055 0.763552 0.753048 0.435768 0.492976 -0.644102 0.641225 0.417088 -0.134355 -0.631614 0.763552 0.703229 0.512293 0.492976 -0.707760 0.570187 0.417088 -0.067417 -0.642217 0.763552 0.646139 0.582648 0.492976 -0.763220 0.493490 0.417088 -0.000263 -0.645746 0.763552 0.581515 0.647160 0.492976 -0.810738 0.410782 0.417088 0.067417 -0.642217 0.763552 0.510485 0.704542 0.492976 -0.849325 0.323548 0.417088 0.134355 -0.631614 0.763552 0.433832 0.754165 0.492976 -0.878558 0.232751 0.417088 0.199813 -0.614055 0.763552 0.353197 0.795127 0.492976 -0.897974 0.140288 0.417088 0.262480 -0.589994 0.763552 0.267917 0.827765 0.492976 -0.907731 0.045401 0.417088 0.322870 -0.559234 0.763552 0.179685 0.851286 0.492976 -0.907490 -0.049986 0.417088 0.379703 -0.522316 0.763552 0.090340 0.865340 0.492976 -0.897398 -0.143924 0.417088 0.431875 -0.480075 0.763552 -0.000851 0.870043 0.492976 -0.877371 -0.237186 0.417088 0.479811 -0.432168 0.763552 -0.092033 0.865162 0.492976 -0.847680 -0.327834 0.417088 0.522463 -0.379500 0.763552 -0.182201 0.850751 0.492976 -0.808653 -0.414871 0.417088 0.559360 -0.322652 0.763552 -0.269536 0.827240 0.492976 -0.761214 -0.496578 0.417088 0.589833 -0.262840 0.763552 -0.354752 0.794434 0.492976 -0.704977 -0.573624 0.417088 0.614132 -0.199574 0.763552 -0.436061 0.752878 0.492976 -0.640975 -0.644352 0.417088 0.631667 -0.134109 0.763552 -0.511863 0.703542 0.492976 -0.570619 -0.707411 0.417088 0.642176 -0.067810 0.763552 -0.582780 0.646020 0.492976 -0.493335 -0.763320 0.417088 0.645746 -0.000132 0.763552 -0.647278 0.581383 0.492976 -0.410617 -0.810821 0.417088 0.642203 0.067548 0.763552 -0.704646 0.510342 0.492976 -0.323375 -0.849391 0.417088 0.631587 0.134484 0.763552 -0.753819 0.434433 0.492976 -0.233450 -0.878372 0.417088 0.614213 0.199324 0.763552 -0.795199 0.353035 0.492976 -0.140105 -0.898002 0.417088 0.589940 0.262600 0.763552 -0.827820 0.267748 0.492976 -0.045216 -0.907740 0.417088 0.559169 0.322984 0.763552 -0.851323 0.179512 0.492976 0.050170 -0.907480 0.417088 0.522238 0.379810 0.763552 -0.865358 0.090164 0.492976 0.144107 -0.897369 0.417088 0.479987 0.431972 0.763552 -0.870042 -0.001029 0.492976 0.237364 -0.877323 0.417088 0.432070 0.479899 0.763552 -0.865143 -0.092209 0.492976 0.328007 -0.847614 0.417088 0.379394 0.522540 0.763552 -0.850896 -0.181524 0.492976 0.414227 -0.808983 0.417088 0.323097 0.559103 0.763552 -0.827185 -0.269704 0.492976 0.496733 -0.761113 0.417088 0.262720 0.589887 0.763552 -0.794362 -0.354914 0.492976 0.573768 -0.704860 0.417088 0.199449 0.614173 0.763552 -0.752790 -0.436214 0.492976 0.644482 -0.640843 0.417088 0.133981 0.631694 0.763552 -0.703438 -0.512006 0.492976 0.707527 -0.570475 0.417088 0.067679 0.642190 0.763552 -0.645902 -0.582912 0.492976 0.763421 -0.493180 0.417088 0.000000 0.645746 0.763552 -0.581251 -0.647396 0.492976 0.810905 -0.410451 0.417088 -0.067679 0.642190 0.763552 -0.510903 -0.704240 0.492976 0.849134 -0.324052 0.417088 -0.133981 0.631694 0.763552 -0.434279 -0.753907 0.492976 0.878420 -0.233272 0.417088 -0.199449 0.614173 0.763552 -0.352873 -0.795271 0.492976 0.898031 -0.139922 0.417088 -0.262720 0.589887 0.763552 -0.267579 -0.827874 0.492976 0.907750 -0.045032 0.417088 -0.323097 0.559103 0.763552 -0.180190 -0.851179 0.492976 0.907520 0.049448 0.417088 -0.379394 0.522540 0.763552 -0.089988 -0.865377 0.492976 0.897339 0.144290 0.417088 -0.432070 0.479899 0.763552 0.001206 -0.870042 0.492976 0.877275 0.237543 0.417088 -0.479987 0.431972 0.763552 0.091521 -0.865216 0.492976 0.847875 0.327332 0.417088 -0.522238 0.379810 0.763552 0.181697 -0.850859 0.492976 0.808898 0.414392 0.417088 -0.559169 0.322984 0.763552 0.269873 -0.827130 0.492976 0.761012 0.496888 0.417088 -0.589940 0.262600 0.763552 0.355076 -0.794290 0.492976 0.704743 0.573911 0.417088 -0.614213 0.199324 0.763552 0.435614 -0.753137 0.492976 0.641356 0.643971 0.417088 -0.631587 0.134484 0.763552 0.512149 -0.703333 0.492976 0.570331 0.707644 0.417088 -0.642203 0.067548 0.763552 0.114158 0.827049 0.550416 -0.168305 0.562130 -0.809743 -0.979102 -0.000199 0.203368 0.026848 0.834459 0.550416 -0.226293 0.541394 -0.809743 -0.973689 -0.102815 0.203368 -0.059924 0.832737 0.550416 -0.281274 0.514977 -0.809743 -0.957755 -0.203341 0.203368 -0.146871 0.821870 0.550416 -0.333698 0.482661 -0.809743 -0.931168 -0.302601 0.203368 -0.232200 0.801951 0.550416 -0.382447 0.445029 -0.809743 -0.894325 -0.398527 0.203368 -0.314198 0.773513 0.550416 -0.426580 0.402922 -0.809743 -0.848121 -0.489216 0.203368 -0.393537 0.736322 0.550416 -0.466460 0.355994 -0.809743 -0.792177 -0.575411 0.203368 -0.468542 0.691022 0.550416 -0.501201 0.305145 -0.809743 -0.727507 -0.655268 0.203368 -0.538385 0.638109 0.550416 -0.530422 0.250935 -0.809743 -0.654823 -0.727907 0.203368 -0.601720 0.578770 0.550416 -0.553607 0.194515 -0.809743 -0.575719 -0.791953 0.203368 -0.659066 0.512518 0.550416 -0.570944 0.135421 -0.809743 -0.489546 -0.847931 0.203368 -0.709151 0.440621 0.550416 -0.581993 0.074836 -0.809743 -0.397981 -0.894569 0.203368 -0.751062 0.364621 0.550416 -0.586617 0.014014 -0.809743 -0.302963 -0.931051 0.203368 -0.785140 0.283896 0.550416 -0.584855 -0.047545 -0.809743 -0.203714 -0.957676 0.203368 -0.810570 0.200044 0.550416 -0.576651 -0.108580 -0.809743 -0.102220 -0.973752 0.203368 -0.826979 0.114663 0.550416 -0.562232 -0.167961 -0.809743 -0.000399 -0.979102 0.203368 -0.834442 0.027358 0.550416 -0.541532 -0.225962 -0.809743 0.102220 -0.973752 0.203368 -0.832714 -0.060248 0.550416 -0.514867 -0.281474 -0.809743 0.203714 -0.957676 0.203368 -0.821813 -0.147191 0.550416 -0.482531 -0.333886 -0.809743 0.302963 -0.931051 0.203368 -0.802093 -0.231710 0.550416 -0.445263 -0.382175 -0.809743 0.397981 -0.894569 0.203368 -0.773390 -0.314499 0.550416 -0.402756 -0.426737 -0.809743 0.489546 -0.847931 0.203368 -0.736169 -0.393824 0.550416 -0.355812 -0.466598 -0.809743 0.575719 -0.791953 0.203368 -0.691308 -0.468120 0.550416 -0.305451 -0.501015 -0.809743 0.654823 -0.727907 0.203368 -0.638438 -0.537995 0.550416 -0.251259 -0.530269 -0.809743 0.727507 -0.655268 0.203368 -0.578536 -0.601945 0.550416 -0.194299 -0.553682 -0.809743 0.792177 -0.575411 0.203368 -0.512262 -0.659265 0.550416 -0.135199 -0.570997 -0.809743 0.848121 -0.489216 0.203368 -0.441054 -0.708882 0.550416 -0.075192 -0.581947 -0.809743 0.894325 -0.398527 0.203368 -0.364329 -0.751203 0.550416 -0.013786 -0.586623 -0.809743 0.931168 -0.302601 0.203368 -0.283591 -0.785251 0.550416 0.047772 -0.584837 -0.809743 0.957755 -0.203341 0.203368 -0.200540 -0.810448 0.550416 0.108228 -0.576717 -0.809743 0.973689 -0.102815 0.203368 -0.114494 -0.827003 0.550416 0.168076 -0.562198 -0.809743 0.979102 -0.000199 0.203368 -0.027188 -0.834448 0.550416 0.226073 -0.541486 -0.809743 0.973731 0.102419 0.203368 0.060418 -0.832702 0.550416 0.281579 -0.514810 -0.809743 0.957634 0.203909 0.203368 0.146536 -0.821930 0.550416 0.333502 -0.482797 -0.809743 0.931292 0.302221 0.203368 0.231873 -0.802045 0.550416 0.382265 -0.445185 -0.809743 0.894488 0.398163 0.203368 0.314656 -0.773326 0.550416 0.426819 -0.402669 -0.809743 0.847831 0.489719 0.203368 0.393974 -0.736089 0.550416 0.466671 -0.355717 -0.809743 0.791835 0.575880 0.203368 0.468260 -0.691212 0.550416 0.501077 -0.305349 -0.809743 0.727773 0.654971 0.203368 0.538125 -0.638328 0.550416 0.530320 -0.251151 -0.809743 0.655120 0.727640 0.203368 0.602063 -0.578413 0.550416 0.553722 -0.194186 -0.809743 0.575250 0.792294 0.203368 0.658857 -0.512787 0.550416 0.570889 -0.135654 -0.809743 0.489891 0.847731 0.203368 0.708972 -0.440909 0.550416 0.581962 -0.075074 -0.809743 0.398345 0.894406 0.203368 0.751278 -0.364176 0.550416 0.586626 -0.013666 -0.809743 0.302411 0.931230 0.203368 0.785308 -0.283431 0.550416 0.584827 0.047892 -0.809743 0.203146 0.957796 0.203368 0.810489 -0.200375 0.550416 0.576695 0.108345 -0.809743 0.102617 0.973710 0.203368 0.827026 -0.114326 0.550416 0.562164 0.168190 -0.809743 0.000000 0.979102 0.203368 0.834453 -0.027018 0.550416 0.541440 0.226183 -0.809743 -0.102617 0.973710 0.203368 0.832749 0.059755 0.550416 0.515034 0.281169 -0.809743 -0.203146 0.957796 0.203368 0.821900 0.146704 0.550416 0.482729 0.333600 -0.809743 -0.302411 0.931230 0.203368 0.801998 0.232037 0.550416 0.445107 0.382356 -0.809743 -0.398345 0.894406 0.203368 0.773262 0.314814 0.550416 0.402582 0.426901 -0.809743 -0.489891 0.847731 0.203368 0.736402 0.393387 0.550416 0.356089 0.466387 -0.809743 -0.575250 0.792294 0.203368 0.691117 0.468401 0.550416 0.305247 0.501139 -0.809743 -0.655120 0.727640 0.203368 0.638219 0.538255 0.550416 0.251043 0.530371 -0.809743 -0.727773 0.654971 0.203368 0.578893 0.601602 0.550416 0.194627 0.553567 -0.809743 -0.791835 0.575880 0.203368 0.512652 0.658961 0.550416 0.135538 0.570917 -0.809743 -0.847831 0.489719 0.203368 0.440765 0.709062 0.550416 0.074955 0.581978 -0.809743 -0.894488 0.398163 0.203368 0.364023 0.751352 0.550416 0.013547 0.586628 -0.809743 -0.931292 0.302221 0.203368 0.284056 0.785082 0.550416 -0.047426 0.584865 -0.809743 -0.957634 0.203909 0.203368 0.200210 0.810530 0.550416 -0.108463 0.576673 -0.809743 -0.973731 0.102419 0.203368 0.376038 0.525146 0.763425 -0.232239 0.851012 -0.471002 -0.897029 -0.000183 0.441972 0.318928 0.561665 0.763425 -0.320153 0.821985 -0.471002 -0.892069 -0.094197 0.441972 0.258897 0.591739 0.763425 -0.403755 0.784308 -0.471002 -0.877470 -0.186296 0.441972 0.195452 0.615614 0.763425 -0.483733 0.737672 -0.471002 -0.853113 -0.277235 0.441972 0.129855 0.632709 0.763425 -0.558382 0.682911 -0.471002 -0.819358 -0.365120 0.441972 0.063470 0.642771 0.763425 -0.626260 0.621254 -0.471002 -0.777027 -0.448207 0.441972 -0.004246 0.645883 0.763425 -0.687922 0.552196 -0.471002 -0.725772 -0.527177 0.441972 -0.071916 0.641881 0.763425 -0.742008 0.477055 -0.471002 -0.666523 -0.600340 0.441972 -0.138793 0.630808 0.763425 -0.787920 0.396660 -0.471002 -0.599932 -0.666890 0.441972 -0.203529 0.612991 0.763425 -0.824841 0.312721 -0.471002 -0.527459 -0.725567 0.441972 -0.266654 0.588284 0.763425 -0.853074 0.224549 -0.471002 -0.448510 -0.776852 0.441972 -0.326842 0.557097 0.763425 -0.871910 0.133905 -0.471002 -0.364620 -0.819581 0.441972 -0.382910 0.520156 0.763425 -0.881100 0.042666 -0.471002 -0.277567 -0.853005 0.441972 -0.435317 0.477160 0.763425 -0.880719 -0.049915 -0.471002 -0.186637 -0.877398 0.441972 -0.482929 0.428908 0.763425 -0.870637 -0.141945 -0.471002 -0.093652 -0.892127 0.441972 -0.524916 0.376359 0.763425 -0.851154 -0.231719 -0.471002 -0.000365 -0.897029 0.441972 -0.561470 0.319271 0.763425 -0.822181 -0.319650 -0.471002 0.093652 -0.892127 0.441972 -0.591840 0.258666 0.763425 -0.784151 -0.404060 -0.471002 0.186637 -0.877398 0.441972 -0.615690 0.195213 0.763425 -0.737484 -0.484020 -0.471002 0.277567 -0.853005 0.441972 -0.632629 0.130242 0.763425 -0.683252 -0.557964 -0.471002 0.364620 -0.819581 0.441972 -0.642795 0.063220 0.763425 -0.621010 -0.626501 -0.471002 0.448510 -0.776852 0.441972 -0.645881 -0.004497 0.763425 -0.551928 -0.688137 -0.471002 0.527459 -0.725567 0.441972 -0.641924 -0.071524 0.763425 -0.477509 -0.741716 -0.471002 0.599932 -0.666890 0.441972 -0.630893 -0.138408 0.763425 -0.397142 -0.787677 -0.471002 0.666523 -0.600340 0.441972 -0.612912 -0.203768 0.763425 -0.312400 -0.824963 -0.471002 0.725772 -0.527177 0.441972 -0.588180 -0.266883 0.763425 -0.224218 -0.853161 -0.471002 0.777027 -0.448207 0.441972 -0.557296 -0.326502 0.763425 -0.134437 -0.871828 -0.471002 0.819358 -0.365120 0.441972 -0.520007 -0.383112 0.763425 -0.042323 -0.881116 -0.471002 0.853113 -0.277235 0.441972 -0.476990 -0.435503 0.763425 0.050257 -0.880699 -0.471002 0.877470 -0.186296 0.441972 -0.429203 -0.482667 0.763425 0.141413 -0.870723 -0.471002 0.892069 -0.094197 0.441972 -0.376252 -0.524993 0.763425 0.231893 -0.851107 -0.471002 0.897029 -0.000183 0.441972 -0.319157 -0.561535 0.763425 0.319818 -0.822115 -0.471002 0.892107 0.093833 0.441972 -0.258546 -0.591892 0.763425 0.404220 -0.784068 -0.471002 0.877360 0.186816 0.441972 -0.195703 -0.615535 0.763425 0.483432 -0.737869 -0.471002 0.853225 0.276887 0.441972 -0.130113 -0.632656 0.763425 0.558104 -0.683138 -0.471002 0.819507 0.364787 0.441972 -0.063089 -0.642808 0.763425 0.626628 -0.620882 -0.471002 0.776761 0.448668 0.441972 0.004629 -0.645880 0.763425 0.688249 -0.551788 -0.471002 0.725459 0.527607 0.441972 0.071654 -0.641910 0.763425 0.741813 -0.477358 -0.471002 0.666767 0.600068 0.441972 0.138537 -0.630865 0.763425 0.787758 -0.396981 -0.471002 0.600204 0.666645 0.441972 0.203893 -0.612871 0.763425 0.825026 -0.312232 -0.471002 0.527029 0.725879 0.441972 0.266415 -0.588392 0.763425 0.852982 -0.224897 -0.471002 0.448826 0.776670 0.441972 0.326615 -0.557230 0.763425 0.871855 -0.134260 -0.471002 0.364954 0.819432 0.441972 0.383218 -0.519929 0.763425 0.881125 -0.042144 -0.471002 0.277061 0.853169 0.441972 0.435600 -0.476902 0.763425 0.880689 0.050437 -0.471002 0.186117 0.877508 0.441972 0.482755 -0.429104 0.763425 0.870695 0.141591 -0.471002 0.094015 0.892088 0.441972 0.525069 -0.376145 0.763425 0.851060 0.232066 -0.471002 0.000000 0.897029 0.441972 0.561600 -0.319042 0.763425 0.822050 0.319985 -0.471002 -0.094015 0.892088 0.441972 0.591686 -0.259017 0.763425 0.784390 0.403595 -0.471002 -0.186117 0.877508 0.441972 0.615574 -0.195578 0.763425 0.737770 0.483582 -0.471002 -0.277061 0.853169 0.441972 0.632682 -0.129984 0.763425 0.683024 0.558243 -0.471002 -0.364954 0.819432 0.441972 0.642821 -0.062959 0.763425 0.620755 0.626754 -0.471002 -0.448826 0.776670 0.441972 0.645884 0.004115 0.763425 0.552336 0.687810 -0.471002 -0.527029 0.725879 0.441972 0.641895 0.071785 0.763425 0.477206 0.741910 -0.471002 -0.600204 0.666645 0.441972 0.630836 0.138665 0.763425 0.396821 0.787839 -0.471002 -0.666767 0.600068 0.441972 0.613033 0.203405 0.763425 0.312889 0.824777 -0.471002 -0.725459 0.527607 0.441972 0.588338 0.266535 0.763425 0.224723 0.853028 -0.471002 -0.776761 0.448668 0.441972 0.557163 0.326729 0.763425 0.134082 0.871882 -0.471002 -0.819507 0.364787 0.441972 0.519851 0.383324 0.763425 0.041964 0.881133 -0.471002 -0.853225 0.276887 0.441972 0.477249 0.435220 0.763425 -0.049735 0.880729 -0.471002 -0.877360 0.186816 0.441972 0.429006 0.482842 0.763425 -0.141768 0.870666 -0.471002 -0.892107 0.093833 0.441972 0.295557 -0.628891 0.719126 0.238843 0.777493 0.581771 -0.924986 -0.000188 0.380000 0.359842 -0.594451 0.719126 0.156041 0.798244 0.581771 -0.919872 -0.097133 0.380000 0.419609 -0.553883 0.719126 0.072330 0.810130 0.581771 -0.904819 -0.192102 0.380000 0.475349 -0.506855 0.719126 -0.012976 0.813249 0.581771 -0.879702 -0.285876 0.380000 0.525853 -0.454243 0.719126 -0.098139 0.807410 0.581771 -0.844895 -0.376500 0.380000 0.570168 -0.397199 0.719126 -0.181428 0.792859 0.581771 -0.801244 -0.462177 0.380000 0.608657 -0.335253 0.719126 -0.263526 0.769478 0.581771 -0.748392 -0.543607 0.380000 0.640442 -0.269615 0.719126 -0.342721 0.737621 0.581771 -0.687297 -0.619050 0.380000 0.665172 -0.201008 0.719126 -0.418142 0.697639 0.581771 -0.618630 -0.687675 0.380000 0.682445 -0.130868 0.719126 -0.488306 0.650461 0.581771 -0.543899 -0.748181 0.380000 0.692403 -0.058622 0.719126 -0.553790 0.595700 0.581771 -0.462488 -0.801065 0.380000 0.694733 0.014269 0.719126 -0.613173 0.534378 0.581771 -0.375984 -0.845125 0.380000 0.689498 0.086314 0.719126 -0.665336 0.467836 0.581771 -0.286218 -0.879590 0.380000 0.676655 0.158103 0.719126 -0.710704 0.395528 0.581771 -0.192454 -0.904744 0.380000 0.656358 0.228151 0.719126 -0.748244 0.318862 0.581771 -0.096571 -0.919932 0.380000 0.629072 0.295173 0.719126 -0.777347 0.239318 0.581771 -0.000377 -0.924986 0.380000 0.594671 0.359478 0.719126 -0.798148 0.156529 0.581771 0.096571 -0.919932 0.380000 0.553720 0.419824 0.719126 -0.810158 0.072015 0.581771 0.192454 -0.904744 0.380000 0.506670 0.475546 0.719126 -0.813244 -0.013292 0.581771 0.286218 -0.879590 0.380000 0.454564 0.525575 0.719126 -0.807470 -0.097645 0.581771 0.375984 -0.845125 0.380000 0.396977 0.570322 0.719126 -0.792789 -0.181736 0.581771 0.462488 -0.801065 0.380000 0.335017 0.608787 0.719126 -0.769375 -0.263825 0.581771 0.543899 -0.748181 0.380000 0.270007 0.640277 0.719126 -0.737830 -0.342271 0.581771 0.618630 -0.687675 0.380000 0.201414 0.665049 0.719126 -0.697894 -0.417715 0.581771 0.687297 -0.619050 0.380000 0.130603 0.682496 0.719126 -0.650271 -0.488559 0.581771 0.748392 -0.543607 0.380000 0.058353 0.692425 0.719126 -0.595485 -0.554021 0.581771 0.801244 -0.462177 0.380000 -0.013845 0.694742 0.719126 -0.534753 -0.612847 0.581771 0.844895 -0.376500 0.380000 -0.086582 0.689465 0.719126 -0.467577 -0.665518 0.581771 0.879702 -0.285876 0.380000 -0.158366 0.676593 0.719126 -0.395251 -0.710858 0.581771 0.904819 -0.192102 0.380000 -0.227750 0.656497 0.719126 -0.319319 -0.748049 0.581771 0.919872 -0.097133 0.380000 -0.295301 0.629011 0.719126 -0.239160 -0.777396 0.581771 0.924986 -0.000188 0.380000 -0.359599 0.594598 0.719126 -0.156366 -0.798180 0.581771 0.919912 0.096758 0.380000 -0.419937 0.553634 0.719126 -0.071850 -0.810173 0.581771 0.904705 0.192638 0.380000 -0.475142 0.507048 0.719126 0.012645 -0.813254 0.581771 0.879818 0.285517 0.380000 -0.525668 0.454457 0.719126 0.097810 -0.807450 0.581771 0.845048 0.376156 0.380000 -0.570403 0.396861 0.719126 0.181898 -0.792752 0.581771 0.800970 0.462651 0.380000 -0.608855 0.334893 0.719126 0.263982 -0.769322 0.581771 0.748070 0.544051 0.380000 -0.640332 0.269876 0.719126 0.342421 -0.737760 0.581771 0.687549 0.618770 0.380000 -0.665090 0.201279 0.719126 0.417857 -0.697809 0.581771 0.618910 0.687423 0.380000 -0.682523 0.130464 0.719126 0.488692 -0.650171 0.581771 0.543455 0.748503 0.380000 -0.692379 0.058904 0.719126 0.553547 -0.595926 0.581771 0.462815 0.800876 0.380000 -0.694739 -0.013986 0.719126 0.612956 -0.534628 0.581771 0.376328 0.844972 0.380000 -0.689447 -0.086723 0.719126 0.665613 -0.467442 0.581771 0.285696 0.879760 0.380000 -0.676561 -0.158504 0.719126 0.710938 -0.395106 0.581771 0.191918 0.904858 0.380000 -0.656451 -0.227883 0.719126 0.748114 -0.319167 0.581771 0.096945 0.919892 0.380000 -0.628951 -0.295429 0.719126 0.777445 -0.239002 0.581771 0.000000 0.924986 0.380000 -0.594524 -0.359721 0.719126 0.798212 -0.156203 0.581771 -0.096945 0.919892 0.380000 -0.553968 -0.419496 0.719126 0.810115 -0.072495 0.581771 -0.191918 0.904858 0.380000 -0.506951 -0.475246 0.719126 0.813251 0.012810 0.581771 -0.285696 0.879760 0.380000 -0.454350 -0.525760 0.719126 0.807430 0.097974 0.581771 -0.376328 0.844972 0.380000 -0.396744 -0.570484 0.719126 0.792715 0.182059 0.581771 -0.462815 0.800876 0.380000 -0.335377 -0.608589 0.719126 0.769531 0.263369 0.581771 -0.543455 0.748503 0.380000 -0.269746 -0.640387 0.719126 0.737690 0.342571 0.581771 -0.618910 0.687423 0.380000 -0.201143 -0.665131 0.719126 0.697724 0.418000 0.581771 -0.687549 0.618770 0.380000 -0.131007 -0.682419 0.719126 0.650560 0.488174 0.581771 -0.748070 0.544051 0.380000 -0.058763 -0.692391 0.719126 0.595813 0.553668 0.581771 -0.800970 0.462651 0.380000 0.014128 -0.694736 0.719126 0.534503 0.613065 0.581771 -0.845048 0.376156 0.380000 0.086863 -0.689429 0.719126 0.467306 0.665708 0.581771 -0.879818 0.285517 0.380000 0.157965 -0.676687 0.719126 0.395672 0.710623 0.581771 -0.904705 0.192638 0.380000 0.228017 -0.656404 0.719126 0.319015 0.748179 0.581771 -0.919912 0.096758 0.380000 -0.691284 0.090531 0.716889 0.062735 0.995894 -0.065270 -0.719854 -0.000147 -0.694125 -0.696965 0.017581 0.716889 -0.041988 0.996984 -0.065270 -0.715874 -0.075592 -0.694125 -0.695025 -0.054868 0.716889 -0.145260 0.987238 -0.065270 -0.704159 -0.149500 -0.694125 -0.685446 -0.127410 0.716889 -0.247930 0.966577 -0.065270 -0.684612 -0.222478 -0.694125 -0.668318 -0.198547 0.716889 -0.347869 0.935269 -0.065270 -0.657525 -0.293005 -0.694125 -0.644095 -0.266855 0.716889 -0.443082 0.894102 -0.065270 -0.623554 -0.359681 -0.694125 -0.612580 -0.332891 0.716889 -0.534350 0.842740 -0.065270 -0.582423 -0.423053 -0.694125 -0.574316 -0.395260 0.716889 -0.619732 0.782095 -0.065270 -0.534876 -0.481765 -0.694125 -0.529727 -0.453276 0.716889 -0.698288 0.712835 -0.065270 -0.481438 -0.535171 -0.694125 -0.479809 -0.505819 0.716889 -0.768516 0.636492 -0.065270 -0.423279 -0.582258 -0.694125 -0.424153 -0.553321 0.716889 -0.830993 0.552441 -0.065270 -0.359923 -0.623414 -0.694125 -0.363825 -0.594728 0.716889 -0.884316 0.462304 -0.065270 -0.292603 -0.657704 -0.694125 -0.300120 -0.629284 0.716889 -0.927531 0.368003 -0.065270 -0.222744 -0.684526 -0.694125 -0.232513 -0.657273 0.716889 -0.960992 0.268765 -0.065270 -0.149774 -0.704101 -0.694125 -0.162346 -0.678022 0.716889 -0.983868 0.166566 -0.065270 -0.075154 -0.715921 -0.694125 -0.090953 -0.691229 0.716889 -0.995855 0.063343 -0.065270 -0.000293 -0.719854 -0.694125 -0.018006 -0.696954 0.716889 -0.997009 -0.041379 -0.065270 0.075154 -0.715921 -0.694125 0.055139 -0.695003 0.716889 -0.987182 -0.145644 -0.065270 0.149774 -0.704101 -0.694125 0.127676 -0.685397 0.716889 -0.966480 -0.248306 -0.065270 0.222744 -0.684526 -0.694125 0.198139 -0.668439 0.716889 -0.935481 -0.347297 -0.065270 0.292603 -0.657704 -0.694125 0.267105 -0.643991 0.716889 -0.893930 -0.443429 -0.065270 0.359923 -0.623414 -0.694125 0.333129 -0.612450 0.716889 -0.842532 -0.534678 -0.065270 0.423279 -0.582258 -0.694125 0.394909 -0.574558 0.716889 -0.782473 -0.619254 -0.065270 0.481438 -0.535171 -0.694125 0.452952 -0.530004 0.716889 -0.713261 -0.697852 -0.065270 0.534876 -0.481765 -0.694125 0.506006 -0.479613 0.716889 -0.636193 -0.768764 -0.065270 0.582423 -0.423053 -0.694125 0.553485 -0.423938 0.716889 -0.552118 -0.831208 -0.065270 0.623554 -0.359681 -0.694125 0.594505 -0.364189 0.716889 -0.462844 -0.884033 -0.065270 0.657525 -0.293005 -0.694125 0.629400 -0.299875 0.716889 -0.367642 -0.927674 -0.065270 0.684612 -0.222478 -0.694125 0.657363 -0.232257 0.716889 -0.268391 -0.961096 -0.065270 0.704159 -0.149500 -0.694125 0.677923 -0.162760 0.716889 -0.167167 -0.983766 -0.065270 0.715874 -0.075592 -0.694125 0.691247 -0.090812 0.716889 -0.063140 -0.995868 -0.065270 0.719854 -0.000147 -0.694125 0.696958 -0.017865 0.716889 0.041582 -0.997001 -0.065270 0.715905 0.075300 -0.694125 0.694992 0.055280 0.716889 0.145845 -0.987152 -0.065270 0.704070 0.149917 -0.694125 0.685498 0.127130 0.716889 0.247536 -0.966678 -0.065270 0.684703 0.222199 -0.694125 0.668399 0.198275 0.716889 0.347488 -0.935410 -0.065270 0.657644 0.292737 -0.694125 0.643937 0.267236 0.716889 0.443612 -0.893839 -0.065270 0.623341 0.360050 -0.694125 0.612382 0.333254 0.716889 0.534849 -0.842423 -0.065270 0.582172 0.423398 -0.694125 0.574477 0.395026 0.716889 0.619413 -0.782347 -0.065270 0.535073 0.481547 -0.694125 0.529912 0.453060 0.716889 0.697998 -0.713119 -0.065270 0.481656 0.534975 -0.694125 0.479510 0.506103 0.716889 0.768893 -0.636037 -0.065270 0.422934 0.582509 -0.694125 0.424379 0.553148 0.716889 0.830768 -0.552779 -0.065270 0.360177 0.623268 -0.694125 0.364068 0.594579 0.716889 0.884127 -0.462664 -0.065270 0.292871 0.657584 -0.694125 0.299746 0.629462 0.716889 0.927749 -0.367453 -0.065270 0.222338 0.684658 -0.694125 0.232124 0.657410 0.716889 0.961151 -0.268195 -0.065270 0.149357 0.704190 -0.694125 0.162622 0.677956 0.716889 0.983800 -0.166966 -0.065270 0.075446 0.715890 -0.694125 0.090672 0.691266 0.716889 0.995881 -0.062937 -0.065270 0.000000 0.719854 -0.694125 0.017723 0.696962 0.716889 0.996992 0.041785 -0.065270 -0.075446 0.715890 -0.694125 -0.054727 0.695036 0.716889 0.987268 0.145059 -0.065270 -0.149357 0.704190 -0.694125 -0.127270 0.685472 0.716889 0.966627 0.247733 -0.065270 -0.222338 0.684658 -0.694125 -0.198411 0.668358 0.716889 0.935339 0.347678 -0.065270 -0.292871 0.657584 -0.694125 -0.267367 0.643882 0.716889 0.893749 0.443794 -0.065270 -0.360177 0.623268 -0.694125 -0.332766 0.612647 0.716889 0.842848 0.534178 -0.065270 -0.422934 0.582509 -0.694125 -0.395143 0.574397 0.716889 0.782221 0.619573 -0.065270 -0.481656 0.534975 -0.694125 -0.453168 0.529820 0.716889 0.712977 0.698143 -0.065270 -0.535073 0.481547 -0.694125 -0.505721 0.479912 0.716889 0.636649 0.768387 -0.065270 -0.582172 0.423398 -0.694125 -0.553234 0.424266 0.716889 0.552610 0.830880 -0.065270 -0.623341 0.360050 -0.694125 -0.594653 0.363947 0.716889 0.462484 0.884222 -0.065270 -0.657644 0.292737 -0.694125 -0.629523 0.299618 0.716889 0.367264 0.927824 -0.065270 -0.684703 0.222199 -0.694125 -0.657225 0.232647 0.716889 0.268960 0.960937 -0.065270 -0.704070 0.149917 -0.694125 -0.677989 0.162484 0.716889 0.166766 0.983834 -0.065270 -0.715905 0.075300 -0.694125 0.952182 -0.084907 0.293496 0.081122 0.996389 0.025068 -0.294565 -0.000060 0.955632 0.955837 0.015356 0.293496 -0.023754 0.999404 0.025068 -0.292936 -0.030932 0.955632 0.949078 0.114501 0.293496 -0.127376 0.991538 0.025068 -0.288142 -0.061175 0.955632 0.931851 0.213341 0.293496 -0.230595 0.972727 0.025068 -0.280144 -0.091038 0.955632 0.904359 0.309831 0.293496 -0.331273 0.943202 0.025068 -0.269059 -0.119898 0.955632 0.867308 0.402041 0.293496 -0.427400 0.903715 0.025068 -0.255159 -0.147182 0.955632 0.820395 0.490726 0.293496 -0.519762 0.853943 0.025068 -0.238328 -0.173113 0.955632 0.764445 0.574007 0.293496 -0.606398 0.794766 0.025068 -0.218872 -0.197138 0.955632 0.700075 0.650965 0.293496 -0.686356 0.726834 0.025068 -0.197005 -0.218992 0.955632 0.628714 0.720124 0.293496 -0.758102 0.651654 0.025068 -0.173206 -0.238260 0.955632 0.549777 0.782052 0.293496 -0.822225 0.568610 0.025068 -0.147281 -0.255101 0.955632 0.464784 0.835365 0.293496 -0.877291 0.479304 0.025068 -0.119733 -0.269133 0.955632 0.375552 0.879102 0.293496 -0.922309 0.385640 0.025068 -0.091147 -0.280108 0.955632 0.281347 0.913621 0.293496 -0.957647 0.286852 0.025068 -0.061288 -0.288118 0.955632 0.184044 0.938077 0.293496 -0.982437 0.184904 0.025068 -0.030753 -0.292955 0.955632 0.085488 0.952130 0.293496 -0.996339 0.081731 0.025068 -0.000120 -0.294565 0.955632 -0.014772 0.955846 0.293496 -0.999418 -0.023143 0.025068 0.030753 -0.292955 0.955632 -0.114871 0.949034 0.293496 -0.991488 -0.127762 0.025068 0.061288 -0.288118 0.955632 -0.213704 0.931768 0.293496 -0.972637 -0.230973 0.025068 0.091147 -0.280108 0.955632 -0.309278 0.904548 0.293496 -0.943404 -0.330697 0.025068 0.119733 -0.269133 0.955632 -0.402378 0.867152 0.293496 -0.903549 -0.427751 0.025068 0.147281 -0.255101 0.955632 -0.491045 0.820204 0.293496 -0.853741 -0.520094 0.025068 0.173206 -0.238260 0.955632 -0.573540 0.764795 0.293496 -0.795136 -0.605913 0.025068 0.197005 -0.218992 0.955632 -0.650537 0.700472 0.293496 -0.727253 -0.685912 0.025068 0.218872 -0.197138 0.955632 -0.720369 0.628433 0.293496 -0.651359 -0.758355 0.025068 0.238328 -0.173113 0.955632 -0.782266 0.549473 0.293496 -0.568291 -0.822446 0.025068 0.255159 -0.147182 0.955632 -0.835081 0.465295 0.293496 -0.479840 -0.876998 0.025068 0.269059 -0.119898 0.955632 -0.879248 0.375210 0.293496 -0.385281 -0.922459 0.025068 0.280144 -0.091038 0.955632 -0.913731 0.280992 0.293496 -0.286479 -0.957758 0.025068 0.288142 -0.061175 0.955632 -0.937964 0.184617 0.293496 -0.185504 -0.982324 0.025068 0.292936 -0.030932 0.955632 -0.952147 0.085295 0.293496 -0.081528 -0.996356 0.025068 0.294565 -0.000060 0.955632 -0.955843 -0.014967 0.293496 0.023346 -0.999413 0.025068 0.292949 0.030813 0.955632 -0.949010 -0.115064 0.293496 0.127964 -0.991462 0.025068 0.288106 0.061346 0.955632 -0.931937 -0.212961 0.293496 0.230198 -0.972821 0.025068 0.280181 0.090924 0.955632 -0.904485 -0.309462 0.293496 0.330889 -0.943337 0.025068 0.269108 0.119788 0.955632 -0.867070 -0.402554 0.293496 0.427935 -0.903462 0.025068 0.255071 0.147333 0.955632 -0.820104 -0.491213 0.293496 0.520268 -0.853635 0.025068 0.238225 0.173255 0.955632 -0.764679 -0.573696 0.293496 0.606075 -0.795013 0.025068 0.218952 0.197049 0.955632 -0.700340 -0.650680 0.293496 0.686060 -0.727113 0.025068 0.197094 0.218912 0.955632 -0.628287 -0.720497 0.293496 0.758488 -0.651205 0.025068 0.173065 0.238363 0.955632 -0.550095 -0.781828 0.293496 0.821993 -0.568945 0.025068 0.147385 0.255041 0.955632 -0.465125 -0.835176 0.293496 0.877096 -0.479661 0.025068 0.119843 0.269084 0.955632 -0.375031 -0.879325 0.293496 0.922537 -0.385094 0.025068 0.090981 0.280162 0.955632 -0.280806 -0.913788 0.293496 0.957817 -0.286284 0.025068 0.061117 0.288155 0.955632 -0.184426 -0.938002 0.293496 0.982361 -0.185304 0.025068 0.030872 0.292942 0.955632 -0.085101 -0.952165 0.293496 0.996372 -0.081325 0.025068 0.000000 0.294565 0.955632 0.015162 -0.955840 0.293496 0.999408 0.023550 0.025068 -0.030872 0.292942 0.955632 0.114308 -0.949102 0.293496 0.991564 0.127174 0.025068 -0.061117 0.288155 0.955632 0.213151 -0.931894 0.293496 0.972774 0.230397 0.025068 -0.090981 0.280162 0.955632 0.309646 -0.904422 0.293496 0.943269 0.331081 0.025068 -0.119843 0.269084 0.955632 0.402731 -0.866988 0.293496 0.903374 0.428119 0.025068 -0.147385 0.255041 0.955632 0.490559 -0.820495 0.293496 0.854049 0.519588 0.025068 -0.173065 0.238363 0.955632 0.573851 -0.764562 0.293496 0.794889 0.606237 0.025068 -0.197094 0.218912 0.955632 0.650822 -0.700207 0.293496 0.726973 0.686208 0.025068 -0.218952 0.197049 0.955632 0.719996 -0.628860 0.293496 0.651808 0.757969 0.025068 -0.238225 0.173255 0.955632 0.781940 -0.549936 0.293496 0.568778 0.822109 0.025068 -0.255071 0.147333 0.955632 0.835271 -0.464955 0.293496 0.479483 0.877193 0.025068 -0.269108 0.119788 0.955632 0.879401 -0.374852 0.293496 0.384906 0.922615 0.025068 -0.280181 0.090924 0.955632 0.913564 -0.281533 0.293496 0.287047 0.957588 0.025068 -0.288106 0.061346 0.955632 0.938039 -0.184235 0.293496 0.185104 0.982399 0.025068 -0.292949 0.030813 0.955632 -0.606788 -0.510140 0.609562 -0.360019 0.860092 0.361426 -0.708657 -0.000144 -0.705553 -0.549980 -0.570926 0.609562 -0.448180 0.817622 0.361426 -0.704739 -0.074416 -0.705553 -0.487739 -0.624936 0.609562 -0.530638 0.766678 0.361426 -0.693206 -0.147175 -0.705553 -0.419555 -0.672613 0.609562 -0.608069 0.706841 0.361426 -0.673963 -0.219017 -0.705553 -0.346750 -0.712881 0.609562 -0.678802 0.639218 0.361426 -0.647297 -0.288447 -0.705553 -0.270870 -0.745026 0.609562 -0.741493 0.565296 0.361426 -0.613855 -0.354086 -0.705553 -0.191295 -0.769312 0.609562 -0.796656 0.484469 0.361426 -0.573363 -0.416472 -0.705553 -0.109612 -0.785124 0.609562 -0.843044 0.398305 0.361426 -0.526556 -0.474271 -0.705553 -0.026721 -0.792288 0.609562 -0.880147 0.307755 0.361426 -0.473949 -0.526846 -0.705553 0.055673 -0.790781 0.609562 -0.907340 0.214721 0.361426 -0.416695 -0.573201 -0.705553 0.138246 -0.780591 0.609562 -0.924847 0.118443 0.361426 -0.354325 -0.613717 -0.705553 0.219296 -0.761803 0.609562 -0.932167 0.020860 0.361426 -0.288051 -0.647473 -0.705553 0.297196 -0.734921 0.609562 -0.929296 -0.076023 0.361426 -0.219279 -0.673878 -0.705553 0.372584 -0.699726 0.609562 -0.916210 -0.173002 0.361426 -0.147444 -0.693148 -0.705553 0.443868 -0.656822 0.609562 -0.893033 -0.268074 0.361426 -0.073985 -0.704784 -0.705553 0.509769 -0.607100 0.609562 -0.860311 -0.359493 0.361426 -0.000289 -0.708657 -0.705553 0.570590 -0.550329 0.609562 -0.817896 -0.447680 0.361426 0.073985 -0.704784 -0.705553 0.625126 -0.487496 0.609562 -0.766471 -0.530936 0.361426 0.147444 -0.693148 -0.705553 0.672776 -0.419294 0.609562 -0.706604 -0.608344 0.361426 0.219279 -0.673878 -0.705553 0.712669 -0.347185 0.609562 -0.639632 -0.678411 0.361426 0.288051 -0.647473 -0.705553 0.745131 -0.270581 0.609562 -0.565007 -0.741713 0.361426 0.354325 -0.613717 -0.705553 0.769386 -0.190995 0.609562 -0.484159 -0.796845 0.361426 0.416695 -0.573201 -0.705553 0.785057 -0.110091 0.609562 -0.398820 -0.842801 0.361426 0.473949 -0.526846 -0.705553 0.792272 -0.027205 0.609562 -0.308292 -0.879959 0.361426 0.526556 -0.474271 -0.705553 0.790760 0.055980 0.609562 -0.214368 -0.907423 0.361426 0.573363 -0.416472 -0.705553 0.780537 0.138549 0.609562 -0.118083 -0.924893 0.361426 0.613855 -0.354086 -0.705553 0.761937 0.218830 0.609562 -0.021430 -0.932154 0.361426 0.647297 -0.288447 -0.705553 0.734806 0.297482 0.609562 0.076385 -0.929267 0.361426 0.673963 -0.219017 -0.705553 0.699581 0.372856 0.609562 0.173358 -0.916143 0.361426 0.693206 -0.147175 -0.705553 0.657093 0.443467 0.609562 0.267529 -0.893196 0.361426 0.704739 -0.074416 -0.705553 0.606996 0.509893 0.609562 0.359668 -0.860238 0.361426 0.708657 -0.000144 -0.705553 0.550213 0.570702 0.609562 0.447847 -0.817805 0.361426 0.704769 0.074129 -0.705553 0.487369 0.625225 0.609562 0.531092 -0.766363 0.361426 0.693118 0.147585 -0.705553 0.419829 0.672442 0.609562 0.607781 -0.707088 0.361426 0.674052 0.218742 -0.705553 0.347040 0.712740 0.609562 0.678541 -0.639494 0.361426 0.647414 0.288183 -0.705553 0.270429 0.745187 0.609562 0.741828 -0.564856 0.361426 0.613645 0.354450 -0.705553 0.190838 0.769425 0.609562 0.796943 -0.483996 0.361426 0.573116 0.416812 -0.705553 0.109931 0.785079 0.609562 0.842882 -0.398649 0.361426 0.526749 0.474056 -0.705553 0.027044 0.792277 0.609562 0.880021 -0.308113 0.361426 0.474164 0.526653 -0.705553 -0.056141 0.790748 0.609562 0.907467 -0.214184 0.361426 0.416355 0.573448 -0.705553 -0.137928 0.780648 0.609562 0.924799 -0.118820 0.361426 0.354575 0.613573 -0.705553 -0.218986 0.761892 0.609562 0.932159 -0.021240 0.361426 0.288315 0.647355 -0.705553 -0.297631 0.734745 0.609562 0.929251 0.076574 0.361426 0.218880 0.674007 -0.705553 -0.372999 0.699505 0.609562 0.916108 0.173545 0.361426 0.147033 0.693236 -0.705553 -0.443601 0.657003 0.609562 0.893142 0.267710 0.361426 0.074272 0.704754 -0.705553 -0.510016 0.606892 0.609562 0.860165 0.359844 0.361426 0.000000 0.708657 -0.705553 -0.570814 0.550096 0.609562 0.817713 0.448013 0.361426 -0.074272 0.704754 -0.705553 -0.624837 0.487866 0.609562 0.766786 0.530482 0.361426 -0.147033 0.693236 -0.705553 -0.672527 0.419692 0.609562 0.706964 0.607925 0.361426 -0.218880 0.674007 -0.705553 -0.712810 0.346895 0.609562 0.639356 0.678671 0.361426 -0.288315 0.647355 -0.705553 -0.745242 0.270277 0.609562 0.564705 0.741943 0.361426 -0.354575 0.613573 -0.705553 -0.769273 0.191451 0.609562 0.484631 0.796557 0.361426 -0.416355 0.573448 -0.705553 -0.785102 0.109771 0.609562 0.398477 0.842963 0.361426 -0.474164 0.526653 -0.705553 -0.792283 0.026883 0.609562 0.307934 0.880084 0.361426 -0.526749 0.474056 -0.705553 -0.790793 -0.055512 0.609562 0.214906 0.907296 0.361426 -0.573116 0.416812 -0.705553 -0.780619 -0.138087 0.609562 0.118631 0.924823 0.361426 -0.613645 0.354450 -0.705553 -0.761848 -0.219141 0.609562 0.021050 0.932163 0.361426 -0.647414 0.288183 -0.705553 -0.734684 -0.297781 0.609562 -0.076763 0.929235 0.361426 -0.674052 0.218742 -0.705553 -0.699801 -0.372441 0.609562 -0.172815 0.916246 0.361426 -0.693118 0.147585 -0.705553 -0.656913 -0.443734 0.609562 -0.267892 0.893087 0.361426 -0.704769 0.074129 -0.705553 0.082673 -0.995322 0.049998 0.851121 0.096616 0.516002 -0.518418 -0.000106 0.855127 0.186535 -0.981175 0.049998 0.836308 0.185287 0.516002 -0.515552 -0.054439 0.855127 0.287385 -0.956509 0.049998 0.812554 0.271105 0.516002 -0.507115 -0.107666 0.855127 0.386052 -0.921121 0.049998 0.779665 0.354774 0.516002 -0.493038 -0.160222 0.855127 0.480466 -0.875587 0.049998 0.738188 0.434535 0.516002 -0.473530 -0.211013 0.855127 0.568767 -0.820978 0.049998 0.689090 0.508820 0.516002 -0.449066 -0.259032 0.855127 0.651678 -0.756846 0.049998 0.631967 0.578239 0.516002 -0.419444 -0.304670 0.855127 0.727412 -0.684377 0.049998 0.567883 0.641289 0.516002 -0.385202 -0.346953 0.855127 0.795134 -0.604370 0.049998 0.497543 0.697276 0.516002 -0.346718 -0.385414 0.855127 0.853579 -0.518559 0.049998 0.422469 0.745159 0.516002 -0.304833 -0.419326 0.855127 0.903226 -0.426242 0.049998 0.342044 0.785333 0.516002 -0.259206 -0.448965 0.855127 0.942925 -0.329230 0.049998 0.257852 0.816857 0.516002 -0.210724 -0.473659 0.855127 0.972009 -0.229564 0.049998 0.171659 0.839211 0.516002 -0.160414 -0.492975 0.855127 0.990715 -0.126426 0.049998 0.082758 0.852581 0.516002 -0.107863 -0.507073 0.855127 0.998509 -0.021896 0.049998 -0.007054 0.856559 0.516002 -0.054124 -0.515585 0.855127 0.995372 0.082065 0.049998 -0.096096 0.851180 0.516002 -0.000211 -0.518418 0.855127 0.981289 0.185935 0.049998 -0.184776 0.836421 0.516002 0.054124 -0.515585 0.855127 0.956397 0.287757 0.049998 -0.271422 0.812449 0.516002 0.107863 -0.507073 0.855127 0.920971 0.386410 0.049998 -0.355077 0.779527 0.516002 0.160414 -0.492975 0.855127 0.875881 0.479930 0.049998 -0.434083 0.738454 0.516002 0.210724 -0.473659 0.855127 0.820757 0.569086 0.049998 -0.509088 0.688892 0.516002 0.259206 -0.448965 0.855127 0.756592 0.651973 0.049998 -0.578485 0.631742 0.516002 0.304833 -0.419326 0.855127 0.684821 0.726994 0.049998 -0.640942 0.568274 0.516002 0.346718 -0.385414 0.855127 0.604855 0.794764 0.049998 -0.696971 0.497969 0.516002 0.385202 -0.346953 0.855127 0.518227 0.853780 0.049998 -0.745324 0.422179 0.516002 0.419444 -0.304670 0.855127 0.425891 0.903392 0.049998 -0.785466 0.341739 0.516002 0.449066 -0.259032 0.855127 0.329806 0.942724 0.049998 -0.816699 0.258351 0.516002 0.473530 -0.211013 0.855127 0.229186 0.972098 0.049998 -0.839278 0.171332 0.516002 0.493038 -0.160222 0.855127 0.126040 0.990764 0.049998 -0.852613 0.082426 0.516002 0.507115 -0.107666 0.855127 0.022506 0.998496 0.049998 -0.856563 -0.006531 0.516002 0.515552 -0.054439 0.855127 -0.082268 0.995355 0.049998 -0.851161 -0.096269 0.516002 0.518418 -0.000106 0.855127 -0.186135 0.981251 0.049998 -0.836383 -0.184947 0.516002 0.515574 0.054229 0.855127 -0.287952 0.956339 0.049998 -0.812393 -0.271587 0.516002 0.507051 0.107966 0.855127 -0.385676 0.921278 0.049998 -0.779810 -0.354456 0.516002 0.493103 0.160021 0.855127 -0.480109 0.875783 0.049998 -0.738365 -0.434234 0.516002 0.473616 0.210820 0.855127 -0.569253 0.820641 0.049998 -0.688788 -0.509228 0.516002 0.448912 0.259298 0.855127 -0.652127 0.756459 0.049998 -0.631624 -0.578614 0.516002 0.419263 0.304919 0.855127 -0.727133 0.684673 0.049998 -0.568144 -0.641058 0.516002 0.385344 0.346796 0.855127 -0.794887 0.604693 0.049998 -0.497827 -0.697073 0.516002 0.346875 0.385273 0.855127 -0.853886 0.518053 0.049998 -0.422027 -0.745410 0.516002 0.304585 0.419506 0.855127 -0.903053 0.426610 0.049998 -0.342364 -0.785194 0.516002 0.259389 0.448859 0.855127 -0.942791 0.329614 0.049998 -0.258185 -0.816752 0.516002 0.210917 0.473573 0.855127 -0.972144 0.228988 0.049998 -0.171161 -0.839313 0.516002 0.160121 0.493070 0.855127 -0.990790 0.125839 0.049998 -0.082253 -0.852629 0.516002 0.107562 0.507137 0.855127 -0.998500 0.022302 0.049998 0.006706 -0.856561 0.516002 0.054334 0.515563 0.855127 -0.995339 -0.082471 0.049998 0.096442 -0.851141 0.516002 0.000000 0.518418 0.855127 -0.981213 -0.186335 0.049998 0.185117 -0.836346 0.516002 -0.054334 0.515563 0.855127 -0.956568 -0.287191 0.049998 0.270940 -0.812609 0.516002 -0.107562 0.507137 0.855127 -0.921200 -0.385864 0.049998 0.354615 -0.779737 0.516002 -0.160121 0.493070 0.855127 -0.875685 -0.480287 0.049998 0.434384 -0.738277 0.516002 -0.210917 0.473573 0.855127 -0.820525 -0.569420 0.049998 0.509369 -0.688684 0.516002 -0.259389 0.448859 0.855127 -0.756978 -0.651524 0.049998 0.578111 -0.632084 0.516002 -0.304585 0.419506 0.855127 -0.684525 -0.727273 0.049998 0.641174 -0.568013 0.516002 -0.346875 0.385273 0.855127 -0.604532 -0.795011 0.049998 0.697174 -0.497685 0.516002 -0.385344 0.346796 0.855127 -0.518733 -0.853473 0.049998 0.745073 -0.422621 0.516002 -0.419263 0.304919 0.855127 -0.426426 -0.903140 0.049998 0.785264 -0.342204 0.516002 -0.448912 0.259298 0.855127 -0.329422 -0.942858 0.049998 0.816804 -0.258018 0.516002 -0.473616 0.210820 0.855127 -0.228790 -0.972191 0.049998 0.839348 -0.170990 0.516002 -0.493103 0.160021 0.855127 -0.126628 -0.990690 0.049998 0.852564 -0.082932 0.516002 -0.507051 0.107966 0.855127 -0.022099 -0.998505 0.049998 0.856560 0.006880 0.516002 -0.515574 0.054229 0.855127 0.336393 -0.531290 -0.777541 -0.210756 -0.847190 0.487700 -0.917835 -0.000187 -0.396961 0.390223 -0.493108 -0.777541 -0.120804 -0.864613 0.487700 -0.912761 -0.096382 -0.396961 0.439305 -0.449933 -0.777541 -0.030394 -0.872482 0.487700 -0.897823 -0.190617 -0.396961 0.484042 -0.401413 -0.777541 0.061216 -0.870862 0.487700 -0.872901 -0.283665 -0.396961 0.523447 -0.348471 -0.777541 0.152152 -0.859650 0.487700 -0.838363 -0.373589 -0.396961 0.556795 -0.292248 -0.777541 0.240572 -0.839210 0.487700 -0.795050 -0.458604 -0.396961 0.584358 -0.232282 -0.777541 0.327202 -0.809375 0.487700 -0.742606 -0.539405 -0.396961 0.605485 -0.169758 -0.777541 0.410229 -0.770624 0.487700 -0.681983 -0.614264 -0.396961 0.619942 -0.105364 -0.777541 0.488736 -0.723385 0.487700 -0.613848 -0.682358 -0.396961 0.627530 -0.040437 -0.777541 0.561192 -0.668739 0.487700 -0.539694 -0.742397 -0.396961 0.628312 0.025555 -0.777541 0.628190 -0.606239 0.487700 -0.458913 -0.794872 -0.396961 0.622173 0.091266 -0.777541 0.688269 -0.537062 0.487700 -0.373077 -0.838591 -0.396961 0.609337 0.155363 -0.777541 0.740303 -0.462709 0.487700 -0.284005 -0.872790 -0.396961 0.589698 0.218370 -0.777541 0.784721 -0.382572 0.487700 -0.190966 -0.897749 -0.396961 0.563564 0.278972 -0.777541 0.820496 -0.298220 0.487700 -0.095824 -0.912820 -0.396961 0.531496 0.336068 -0.777541 0.847061 -0.211274 0.487700 -0.000374 -0.917835 -0.396961 0.493346 0.389922 -0.777541 0.864539 -0.121332 0.487700 0.095824 -0.912820 -0.396961 0.449763 0.439480 -0.777541 0.872494 -0.030054 0.487700 0.190966 -0.897749 -0.396961 0.401225 0.484198 -0.777541 0.870839 0.061555 0.487700 0.284005 -0.872790 -0.396961 0.348791 0.523234 -0.777541 0.859743 0.151626 0.487700 0.373077 -0.838591 -0.396961 0.292031 0.556908 -0.777541 0.839117 0.240899 0.487700 0.458913 -0.794872 -0.396961 0.232055 0.584448 -0.777541 0.809247 0.327517 0.487700 0.539694 -0.742397 -0.396961 0.170128 0.605381 -0.777541 0.770874 0.409758 0.487700 0.613848 -0.682358 -0.396961 0.105743 0.619877 -0.777541 0.723683 0.488294 0.487700 0.681983 -0.614264 -0.396961 0.040193 0.627546 -0.777541 0.668521 0.561452 0.487700 0.742606 -0.539405 -0.396961 -0.025800 0.628302 -0.777541 0.605995 0.628426 0.487700 0.795050 -0.458604 -0.396961 -0.090886 0.622229 -0.777541 0.537482 0.687940 0.487700 0.838363 -0.373589 -0.396961 -0.155600 0.609277 -0.777541 0.462421 0.740483 0.487700 0.872901 -0.283665 -0.396961 -0.218599 0.589613 -0.777541 0.382266 0.784870 0.487700 0.897823 -0.190617 -0.396961 -0.278627 0.563734 -0.777541 0.298721 0.820314 0.487700 0.912761 -0.096382 -0.396961 -0.336176 0.531427 -0.777541 0.211101 0.847104 0.487700 0.917835 -0.000187 -0.396961 -0.390022 0.493267 -0.777541 0.121156 0.864563 0.487700 0.912800 0.096010 -0.396961 -0.439572 0.449673 -0.777541 0.029876 0.872500 0.487700 0.897710 0.191149 -0.396961 -0.483879 0.401610 -0.777541 -0.060861 0.870887 0.487700 0.873016 0.283310 -0.396961 -0.523305 0.348684 -0.777541 -0.151802 0.859712 0.487700 0.838515 0.373248 -0.396961 -0.556968 0.291918 -0.777541 -0.241069 0.839068 0.487700 0.794778 0.459075 -0.396961 -0.584496 0.231936 -0.777541 -0.327682 0.809181 0.487700 0.742287 0.539845 -0.396961 -0.605415 0.170005 -0.777541 -0.409915 0.770791 0.487700 0.682233 0.613987 -0.396961 -0.619899 0.105617 -0.777541 -0.488442 0.723584 0.487700 0.614126 0.682108 -0.396961 -0.627554 0.040065 -0.777541 -0.561588 0.668407 0.487700 0.539254 0.742716 -0.396961 -0.628323 -0.025299 -0.777541 -0.627943 0.606495 0.487700 0.459237 0.794685 -0.396961 -0.622211 -0.091013 -0.777541 -0.688050 0.537342 0.487700 0.373419 0.838439 -0.396961 -0.609245 -0.155724 -0.777541 -0.740578 0.462270 0.487700 0.283488 0.872958 -0.396961 -0.589569 -0.218719 -0.777541 -0.784948 0.382106 0.487700 0.190434 0.897862 -0.396961 -0.563677 -0.278742 -0.777541 -0.820374 0.298554 0.487700 0.096196 0.912780 -0.396961 -0.531359 -0.336284 -0.777541 -0.847147 0.210929 0.487700 0.000000 0.917835 -0.396961 -0.493187 -0.390123 -0.777541 -0.864588 0.120980 0.487700 -0.096196 0.912780 -0.396961 -0.450023 -0.439214 -0.777541 -0.872476 0.030571 0.487700 -0.190434 0.897862 -0.396961 -0.401512 -0.483960 -0.777541 -0.870875 -0.061039 0.487700 -0.283488 0.872958 -0.396961 -0.348578 -0.523376 -0.777541 -0.859681 -0.151977 0.487700 -0.373419 0.838439 -0.396961 -0.291805 -0.557027 -0.777541 -0.839018 -0.241240 0.487700 -0.459237 0.794685 -0.396961 -0.232401 -0.584311 -0.777541 -0.809441 -0.327038 0.487700 -0.539254 0.742716 -0.396961 -0.169882 -0.605450 -0.777541 -0.770707 -0.410072 0.487700 -0.614126 0.682108 -0.396961 -0.105490 -0.619920 -0.777541 -0.723484 -0.488589 0.487700 -0.682233 0.613987 -0.396961 -0.040565 -0.627522 -0.777541 -0.668854 -0.561056 0.487700 -0.742287 0.539845 -0.396961 0.025427 -0.628317 -0.777541 -0.606367 -0.628067 0.487700 -0.794778 0.459075 -0.396961 0.091139 -0.622192 -0.777541 -0.537202 -0.688159 0.487700 -0.838515 0.373248 -0.396961 0.155848 -0.609213 -0.777541 -0.462119 -0.740672 0.487700 -0.873016 0.283310 -0.396961 0.218250 -0.589743 -0.777541 -0.382731 -0.784644 0.487700 -0.897710 0.191149 -0.396961 0.278857 -0.563621 -0.777541 -0.298387 -0.820435 0.487700 -0.912800 0.096010 -0.396961 0.216208 0.957136 -0.192727 0.714794 -0.289637 -0.636537 -0.665074 -0.000135 -0.746778 0.114703 0.974525 -0.192727 0.741214 -0.213127 -0.636537 -0.661397 -0.069839 -0.746778 0.012915 0.981167 -0.192727 0.759334 -0.135028 -0.636537 -0.650573 -0.138123 -0.746778 -0.089989 0.977117 -0.192727 0.769304 -0.054700 -0.636537 -0.632514 -0.205547 -0.746778 -0.191903 0.962304 -0.192727 0.770800 0.026229 -0.636537 -0.607487 -0.270707 -0.746778 -0.290765 0.937183 -0.192727 0.763912 0.106107 -0.636537 -0.576102 -0.332309 -0.746778 -0.387387 0.901547 -0.192727 0.748584 0.185585 -0.636537 -0.538101 -0.390859 -0.746778 -0.479742 0.855981 -0.192727 0.725011 0.263020 -0.636537 -0.494173 -0.445103 -0.746778 -0.566813 0.800986 -0.192727 0.693452 0.337558 -0.636537 -0.444801 -0.494444 -0.746778 -0.646903 0.737816 -0.192727 0.654662 0.407723 -0.636537 -0.391068 -0.537949 -0.746778 -0.720669 0.665953 -0.192727 0.608324 0.474091 -0.636537 -0.332533 -0.575973 -0.746778 -0.786496 0.586754 -0.192727 0.555286 0.535237 -0.636537 -0.270336 -0.607653 -0.746778 -0.843159 0.501935 -0.192727 0.496721 0.589990 -0.636537 -0.205793 -0.632434 -0.746778 -0.891122 0.410802 -0.192727 0.432150 0.638801 -0.636537 -0.138376 -0.650519 -0.746778 -0.929269 0.315143 -0.192727 0.362819 0.680575 -0.636537 -0.069435 -0.661439 -0.746778 -0.957004 0.216793 -0.192727 0.290074 0.714617 -0.636537 -0.000271 -0.665074 -0.746778 -0.974455 0.115298 -0.192727 0.213579 0.741083 -0.636537 0.069435 -0.661439 -0.746778 -0.981172 0.012533 -0.192727 0.134732 0.759386 -0.636537 0.138376 -0.650519 -0.746778 -0.977082 -0.090370 -0.192727 0.054401 0.769325 -0.636537 0.205793 -0.632434 -0.746778 -0.962421 -0.191315 -0.192727 -0.025758 0.770816 -0.636537 0.270336 -0.607653 -0.746778 -0.937070 -0.291130 -0.192727 -0.106404 0.763871 -0.636537 0.332533 -0.575973 -0.746778 -0.901397 -0.387738 -0.192727 -0.185877 0.748512 -0.636537 0.391068 -0.537949 -0.746778 -0.856274 -0.479219 -0.192727 -0.262577 0.725171 -0.636537 0.444801 -0.494444 -0.746778 -0.801332 -0.566324 -0.192727 -0.337135 0.693658 -0.636537 0.494173 -0.445103 -0.746778 -0.737564 -0.647190 -0.192727 -0.407978 0.654503 -0.636537 0.538101 -0.390859 -0.746778 -0.665672 -0.720928 -0.192727 -0.474328 0.608140 -0.636537 0.576102 -0.332309 -0.746778 -0.587234 -0.786138 -0.192727 -0.534897 0.555613 -0.636537 0.607487 -0.270707 -0.746778 -0.501607 -0.843354 -0.192727 -0.590184 0.496491 -0.636537 0.632514 -0.205547 -0.746778 -0.410455 -0.891282 -0.192727 -0.638969 0.431902 -0.636537 0.650573 -0.138123 -0.746778 -0.315711 -0.929076 -0.192727 -0.680354 0.363235 -0.636537 0.661397 -0.069839 -0.746778 -0.216598 -0.957048 -0.192727 -0.714676 0.289928 -0.636537 0.665074 -0.000135 -0.746778 -0.115100 -0.974478 -0.192727 -0.741127 0.213428 -0.636537 0.661425 0.069570 -0.746778 -0.012334 -0.981175 -0.192727 -0.759414 0.134578 -0.636537 0.650491 0.138509 -0.746778 0.089591 -0.977154 -0.192727 -0.769282 0.055014 -0.636537 0.632597 0.205290 -0.746778 0.191511 -0.962382 -0.192727 -0.770811 -0.025915 -0.636537 0.607597 0.270460 -0.746778 0.291320 -0.937011 -0.192727 -0.763849 -0.106559 -0.636537 0.575905 0.332651 -0.746778 0.387921 -0.901317 -0.192727 -0.748474 -0.186029 -0.636537 0.537869 0.391178 -0.746778 0.479394 -0.856176 -0.192727 -0.725118 -0.262725 -0.636537 0.494354 0.444902 -0.746778 0.566487 -0.801217 -0.192727 -0.693589 -0.337276 -0.636537 0.445002 0.494263 -0.746778 0.647340 -0.737433 -0.192727 -0.654420 -0.408111 -0.636537 0.390749 0.538180 -0.746778 0.720397 -0.666246 -0.192727 -0.608517 -0.473843 -0.636537 0.332768 0.575837 -0.746778 0.786257 -0.587074 -0.192727 -0.555504 -0.535011 -0.636537 0.270583 0.607542 -0.746778 0.843457 -0.501435 -0.192727 -0.496371 -0.590285 -0.636537 0.205418 0.632555 -0.746778 0.891365 -0.410273 -0.192727 -0.431771 -0.639057 -0.636537 0.137991 0.650601 -0.746778 0.929141 -0.315522 -0.192727 -0.363096 -0.680428 -0.636537 0.069704 0.661411 -0.746778 0.957092 -0.216403 -0.192727 -0.289783 -0.714735 -0.636537 0.000000 0.665074 -0.746778 0.974502 -0.114901 -0.192727 -0.213278 -0.741170 -0.636537 -0.069704 0.661411 -0.746778 0.981165 -0.013115 -0.192727 -0.135182 -0.759306 -0.636537 -0.137991 0.650601 -0.746778 0.977136 0.089790 -0.192727 -0.054857 -0.769293 -0.636537 -0.205418 0.632555 -0.746778 0.962343 0.191707 -0.192727 0.026072 -0.770805 -0.636537 -0.270583 0.607542 -0.746778 0.936951 0.291511 -0.192727 0.106715 -0.763828 -0.636537 -0.332768 0.575837 -0.746778 0.901626 0.387204 -0.192727 0.185433 -0.748622 -0.636537 -0.390749 0.538180 -0.746778 0.856079 0.479568 -0.192727 0.262873 -0.725064 -0.636537 -0.445002 0.494263 -0.746778 0.801102 0.566650 -0.192727 0.337417 -0.693520 -0.636537 -0.494354 0.444902 -0.746778 0.737948 0.646753 -0.192727 0.407590 -0.654745 -0.636537 -0.537869 0.391178 -0.746778 0.666099 0.720533 -0.192727 0.473967 -0.608421 -0.636537 -0.575905 0.332651 -0.746778 0.586914 0.786377 -0.192727 0.535124 -0.555395 -0.636537 -0.607597 0.270460 -0.746778 0.501264 0.843559 -0.192727 0.590386 -0.496251 -0.636537 -0.632597 0.205290 -0.746778 0.410983 0.891038 -0.192727 0.638713 -0.432280 -0.636537 -0.650491 0.138509 -0.746778 0.315333 0.929205 -0.192727 0.680501 -0.362958 -0.636537 -0.661425 0.069570 -0.746778 -0.095820 0.892001 0.441760 0.188653 0.452033 -0.871824 -0.977358 -0.000199 -0.211592 -0.188781 0.877046 0.441760 0.140237 0.469316 -0.871824 -0.971954 -0.102632 -0.211592 -0.278809 0.852709 0.441760 0.090759 0.481338 -0.871824 -0.956048 -0.202979 -0.211592 -0.366644 0.818792 0.441760 0.039811 0.488199 -0.871824 -0.929509 -0.302062 -0.211592 -0.450440 0.775856 0.441760 -0.011575 0.489683 -0.871824 -0.892732 -0.397817 -0.211592 -0.528549 0.724902 0.441760 -0.062348 0.485836 -0.871824 -0.846610 -0.488345 -0.211592 -0.601613 0.665514 0.441760 -0.112923 0.476626 -0.871824 -0.790765 -0.574386 -0.211592 -0.668051 0.598796 0.441760 -0.162255 0.462165 -0.871824 -0.726210 -0.654100 -0.211592 -0.727129 0.525481 0.441760 -0.209800 0.442614 -0.871824 -0.653656 -0.726610 -0.211592 -0.777752 0.447157 0.441760 -0.254615 0.418443 -0.871824 -0.574693 -0.790542 -0.211592 -0.820334 0.363180 0.441760 -0.297069 0.389453 -0.871824 -0.488674 -0.846420 -0.211592 -0.853880 0.275203 0.441760 -0.336250 0.356173 -0.871824 -0.397272 -0.892975 -0.211592 -0.877836 0.185072 0.441760 -0.371409 0.319342 -0.871824 -0.302423 -0.929392 -0.211592 -0.892398 0.092050 0.441760 -0.402832 0.278657 -0.871824 -0.203351 -0.955969 -0.211592 -0.897131 -0.001987 0.441760 -0.429819 0.234902 -0.871824 -0.102038 -0.972017 -0.211592 -0.892060 -0.095275 0.441760 -0.451918 0.188929 -0.871824 -0.000398 -0.977358 -0.211592 -0.877161 -0.188245 0.441760 -0.469230 0.140524 -0.871824 0.102038 -0.972017 -0.211592 -0.852601 -0.279141 0.441760 -0.481373 0.090571 -0.871824 0.203351 -0.955969 -0.211592 -0.818649 -0.366962 0.441760 -0.488215 0.039621 -0.871824 0.302423 -0.929392 -0.211592 -0.776131 -0.449965 0.441760 -0.489690 -0.011276 -0.871824 0.397272 -0.892975 -0.211592 -0.724697 -0.528831 0.441760 -0.485811 -0.062537 -0.871824 0.488674 -0.846420 -0.211592 -0.665280 -0.601872 0.441760 -0.476582 -0.113109 -0.871824 0.574693 -0.790542 -0.211592 -0.599203 -0.667685 0.441760 -0.462264 -0.161973 -0.871824 0.653656 -0.726610 -0.211592 -0.525925 -0.726808 0.441760 -0.442743 -0.209529 -0.871824 0.726210 -0.654100 -0.211592 -0.446854 -0.777926 0.441760 -0.418344 -0.254778 -0.871824 0.790765 -0.574386 -0.211592 -0.362861 -0.820475 0.441760 -0.389337 -0.297220 -0.871824 0.846610 -0.488345 -0.211592 -0.275725 -0.853712 0.441760 -0.356379 -0.336033 -0.871824 0.892732 -0.397817 -0.211592 -0.184731 -0.877908 0.441760 -0.319197 -0.371533 -0.871824 0.929509 -0.302062 -0.211592 -0.091702 -0.892434 0.441760 -0.278500 -0.402941 -0.871824 0.956048 -0.202979 -0.211592 0.001439 -0.897132 0.441760 -0.235165 -0.429675 -0.871824 0.971954 -0.102632 -0.211592 0.095457 -0.892040 0.441760 -0.188837 -0.451956 -0.871824 0.977358 -0.000199 -0.211592 0.188423 -0.877123 0.441760 -0.140428 -0.469258 -0.871824 0.971996 0.102236 -0.211592 0.279314 -0.852544 0.441760 -0.090473 -0.481392 -0.871824 0.955928 0.203545 -0.211592 0.366310 -0.818941 0.441760 -0.040010 -0.488183 -0.871824 0.929632 0.301683 -0.211592 0.450123 -0.776039 0.441760 0.011375 -0.489688 -0.871824 0.892894 0.397454 -0.211592 0.528979 -0.724589 0.441760 0.062636 -0.485799 -0.871824 0.846320 0.488846 -0.211592 0.602008 -0.665157 0.441760 0.113206 -0.476558 -0.871824 0.790425 0.574854 -0.211592 0.667807 -0.599068 0.441760 0.162067 -0.462231 -0.871824 0.726477 0.653804 -0.211592 0.726915 -0.525777 0.441760 0.209620 -0.442700 -0.871824 0.653952 0.726344 -0.211592 0.778017 -0.446696 0.441760 0.254863 -0.418292 -0.871824 0.574225 0.790882 -0.211592 0.820186 -0.363514 0.441760 0.296910 -0.389574 -0.871824 0.489019 0.846221 -0.211592 0.853768 -0.275551 0.441760 0.336105 -0.356310 -0.871824 0.397635 0.892813 -0.211592 0.877945 -0.184552 0.441760 0.371598 -0.319122 -0.871824 0.301872 0.929571 -0.211592 0.892453 -0.091521 0.441760 0.402998 -0.278418 -0.871824 0.202784 0.956090 -0.211592 0.897132 0.001622 0.441760 0.429723 -0.235077 -0.871824 0.102434 0.971975 -0.211592 0.892021 0.095638 0.441760 0.451995 -0.188745 -0.871824 0.000000 0.977358 -0.211592 0.877084 0.188602 0.441760 0.469287 -0.140333 -0.871824 -0.102434 0.971975 -0.211592 0.852766 0.278635 0.441760 0.481320 -0.090857 -0.871824 -0.202784 0.956090 -0.211592 0.818867 0.366477 0.441760 0.488191 -0.039911 -0.871824 -0.301872 0.929571 -0.211592 0.775947 0.450282 0.441760 0.489685 0.011475 -0.871824 -0.397635 0.892813 -0.211592 0.724481 0.529126 0.441760 0.485786 0.062735 -0.871824 -0.489019 0.846221 -0.211592 0.665637 0.601478 0.441760 0.476648 0.112826 -0.871824 -0.574225 0.790882 -0.211592 0.598932 0.667929 0.441760 0.462198 0.162161 -0.871824 -0.653952 0.726344 -0.211592 0.525629 0.727022 0.441760 0.442657 0.209710 -0.871824 -0.726477 0.653804 -0.211592 0.447315 0.777661 0.441760 0.418495 0.254530 -0.871824 -0.790425 0.574854 -0.211592 0.363347 0.820260 0.441760 0.389514 0.296990 -0.871824 -0.846320 0.488846 -0.211592 0.275377 0.853824 0.441760 0.356242 0.336178 -0.871824 -0.892894 0.397454 -0.211592 0.184373 0.877983 0.441760 0.319046 0.371663 -0.871824 -0.929632 0.301683 -0.211592 0.092231 0.892379 0.441760 0.278739 0.402776 -0.871824 -0.955928 0.203545 -0.211592 -0.001804 0.897131 0.441760 0.234990 0.429771 -0.871824 -0.971996 0.102236 -0.211592 -0.061976 0.940724 0.333462 0.171315 0.339172 -0.924994 -0.983265 -0.000200 -0.182181 -0.160229 0.929048 0.333462 0.134824 0.355260 -0.924994 -0.977829 -0.103252 -0.182181 -0.255810 0.907394 0.333462 0.097215 0.367336 -0.924994 -0.961827 -0.204205 -0.182181 -0.349503 0.875586 0.333462 0.058180 0.375502 -0.924994 -0.935127 -0.303887 -0.182181 -0.439346 0.834133 0.333462 0.018504 0.379532 -0.924994 -0.898127 -0.400222 -0.182181 -0.523565 0.784017 0.333462 -0.020996 0.379402 -0.924994 -0.851727 -0.491296 -0.182181 -0.602852 0.724826 0.333462 -0.060644 0.375112 -0.924994 -0.795545 -0.577857 -0.182181 -0.675499 0.657650 0.333462 -0.099625 0.366690 -0.924994 -0.730600 -0.658054 -0.182181 -0.740705 0.583231 0.333462 -0.137508 0.354229 -0.924994 -0.657607 -0.731001 -0.182181 -0.797250 0.503185 0.333462 -0.173538 0.338040 -0.924994 -0.578167 -0.795320 -0.182181 -0.845597 0.416856 0.333462 -0.208012 0.317990 -0.924994 -0.491627 -0.851536 -0.182181 -0.884629 0.325936 0.333462 -0.240194 0.294438 -0.924994 -0.399673 -0.898372 -0.182181 -0.913686 0.232339 0.333462 -0.269462 0.267912 -0.924994 -0.304251 -0.935009 -0.182181 -0.933004 0.135299 0.333462 -0.296057 0.238195 -0.924994 -0.204580 -0.961747 -0.182181 -0.942046 0.036768 0.333462 -0.319391 0.205854 -0.924994 -0.102655 -0.977892 -0.182181 -0.940762 -0.061401 0.333462 -0.339068 0.171522 -0.924994 -0.000400 -0.983265 -0.182181 -0.929145 -0.159662 0.333462 -0.355177 0.135041 -0.924994 0.102655 -0.977892 -0.182181 -0.907295 -0.256163 0.333462 -0.367374 0.097072 -0.924994 0.204580 -0.961747 -0.182181 -0.875450 -0.349844 0.333462 -0.375525 0.058034 -0.924994 0.304251 -0.935009 -0.182181 -0.834402 -0.438836 0.333462 -0.379520 0.018736 -0.924994 0.399673 -0.898372 -0.182181 -0.783813 -0.523870 0.333462 -0.379394 -0.021144 -0.924994 0.491627 -0.851536 -0.182181 -0.724591 -0.603134 0.333462 -0.375088 -0.060790 -0.924994 0.578167 -0.795320 -0.182181 -0.658063 -0.675097 0.333462 -0.366751 -0.099401 -0.924994 0.657607 -0.731001 -0.182181 -0.583683 -0.740349 0.333462 -0.354313 -0.137292 -0.924994 0.730600 -0.658054 -0.182181 -0.502875 -0.797446 0.333462 -0.337973 -0.173670 -0.924994 0.795545 -0.577857 -0.182181 -0.416528 -0.845759 0.333462 -0.317909 -0.208135 -0.924994 0.851727 -0.491296 -0.182181 -0.326477 -0.884430 0.333462 -0.294585 -0.240014 -0.924994 0.898127 -0.400222 -0.182181 -0.231984 -0.913776 0.333462 -0.267807 -0.269567 -0.924994 0.935127 -0.303887 -0.182181 -0.134936 -0.933057 0.333462 -0.238080 -0.296150 -0.924994 0.961827 -0.204205 -0.182181 -0.037344 -0.942024 0.333462 -0.206049 -0.319266 -0.924994 0.977829 -0.103252 -0.182181 0.061593 -0.940749 0.333462 -0.171453 -0.339103 -0.924994 0.983265 -0.000200 -0.182181 0.159851 -0.929113 0.333462 -0.134968 -0.355205 -0.924994 0.977871 0.102854 -0.182181 0.256348 -0.907242 0.333462 -0.096997 -0.367394 -0.924994 0.961705 0.204776 -0.182181 0.349146 -0.875728 0.333462 -0.058333 -0.375478 -0.924994 0.935251 0.303506 -0.182181 0.439006 -0.834312 0.333462 -0.018659 -0.379524 -0.924994 0.898290 0.399856 -0.182181 0.524030 -0.783706 0.333462 0.021221 -0.379390 -0.924994 0.851435 0.491801 -0.182181 0.603282 -0.724468 0.333462 0.060867 -0.375076 -0.924994 0.795202 0.578329 -0.182181 0.675231 -0.657925 0.333462 0.099476 -0.366731 -0.924994 0.730868 0.657756 -0.182181 0.740468 -0.583533 0.333462 0.137364 -0.354285 -0.924994 0.657905 0.730734 -0.182181 0.797548 -0.502713 0.333462 0.173739 -0.337937 -0.924994 0.577695 0.795662 -0.182181 0.845427 -0.417201 0.333462 0.207882 -0.318075 -0.924994 0.491974 0.851335 -0.182181 0.884496 -0.326296 0.333462 0.240074 -0.294536 -0.924994 0.400039 0.898209 -0.182181 0.913823 -0.231798 0.333462 0.269621 -0.267752 -0.924994 0.303697 0.935189 -0.182181 0.933084 -0.134746 0.333462 0.296199 -0.238019 -0.924994 0.204010 0.961868 -0.182181 0.942031 -0.037152 0.333462 0.319308 -0.205984 -0.924994 0.103053 0.977850 -0.182181 0.940737 0.061784 0.333462 0.339138 -0.171384 -0.924994 0.000000 0.983265 -0.182181 0.929080 0.160040 0.333462 0.355232 -0.134896 -0.924994 -0.103053 0.977850 -0.182181 0.907446 0.255625 0.333462 0.367317 -0.097290 -0.924994 -0.204010 0.961868 -0.182181 0.875657 0.349325 0.333462 0.375490 -0.058256 -0.924994 -0.303697 0.935189 -0.182181 0.834223 0.439176 0.333462 0.379528 -0.018581 -0.924994 -0.400039 0.898209 -0.182181 0.783600 0.524190 0.333462 0.379385 0.021298 -0.924994 -0.491974 0.851335 -0.182181 0.724948 0.602705 0.333462 0.375124 0.060568 -0.924994 -0.577695 0.795662 -0.182181 0.657788 0.675365 0.333462 0.366710 0.099550 -0.924994 -0.657905 0.730734 -0.182181 0.583382 0.740587 0.333462 0.354257 0.137436 -0.924994 -0.730868 0.657756 -0.182181 0.503348 0.797148 0.333462 0.338075 0.173470 -0.924994 -0.795202 0.578329 -0.182181 0.417029 0.845512 0.333462 0.318033 0.207947 -0.924994 -0.851435 0.491801 -0.182181 0.326116 0.884563 0.333462 0.294487 0.240134 -0.924994 -0.898290 0.399856 -0.182181 0.231612 0.913870 0.333462 0.267697 0.269676 -0.924994 -0.935251 0.303506 -0.182181 0.135489 0.932977 0.333462 0.238255 0.296009 -0.924994 -0.961705 0.204776 -0.182181 0.036960 0.942039 0.333462 0.205919 0.319349 -0.924994 -0.977871 0.102854 -0.182181 -0.355836 0.831424 -0.426749 -0.532235 -0.555638 -0.638743 -0.768184 -0.000156 0.640229 -0.441015 0.789551 -0.426749 -0.471069 -0.608360 -0.638743 -0.763937 -0.080667 0.640229 -0.520598 0.739502 -0.426749 -0.405368 -0.653976 -0.638743 -0.751435 -0.159537 0.640229 -0.595236 0.680867 -0.426749 -0.334594 -0.692860 -0.638743 -0.730576 -0.237414 0.640229 -0.663317 0.614732 -0.426749 -0.260135 -0.724112 -0.638743 -0.701670 -0.312676 0.640229 -0.723550 0.542550 -0.426749 -0.183557 -0.747205 -0.638743 -0.665419 -0.383829 0.640229 -0.776428 0.463729 -0.426749 -0.104234 -0.762327 -0.638743 -0.621526 -0.451456 0.640229 -0.820754 0.379800 -0.426749 -0.023763 -0.769054 -0.638743 -0.570787 -0.514110 0.640229 -0.856040 0.291687 -0.426749 0.056970 -0.767309 -0.638743 -0.513761 -0.571101 0.640229 -0.881695 0.201243 -0.426749 0.136319 -0.757248 -0.638743 -0.451698 -0.621350 0.640229 -0.897931 0.107727 -0.426749 0.214933 -0.738791 -0.638743 -0.384088 -0.665269 0.640229 -0.904276 0.013024 -0.426749 0.291180 -0.712195 -0.638743 -0.312248 -0.701861 0.640229 -0.900742 -0.080922 -0.426749 0.363542 -0.678119 -0.638743 -0.237699 -0.730484 0.640229 -0.887300 -0.174880 -0.426749 0.432611 -0.636283 -0.638743 -0.159830 -0.751373 0.640229 -0.864085 -0.266913 -0.426749 0.496916 -0.587438 -0.638743 -0.080200 -0.763986 0.640229 -0.831641 -0.355328 -0.426749 0.555313 -0.532574 -0.638743 -0.000313 -0.768184 0.640229 -0.789820 -0.440533 -0.426749 0.608072 -0.471441 -0.638743 0.080200 -0.763986 0.640229 -0.739299 -0.520885 -0.426749 0.654134 -0.405114 -0.638743 0.159830 -0.751373 0.640229 -0.680635 -0.595500 -0.426749 0.692990 -0.334325 -0.638743 0.237699 -0.730484 0.640229 -0.615137 -0.662941 -0.426749 0.723953 -0.260577 -0.638743 0.312248 -0.701861 0.640229 -0.542269 -0.723761 -0.426749 0.747276 -0.183267 -0.638743 0.384088 -0.665269 0.640229 -0.463427 -0.776609 -0.426749 0.762368 -0.103938 -0.638743 0.451698 -0.621350 0.640229 -0.380301 -0.820522 -0.426749 0.769039 -0.024233 -0.638743 0.513761 -0.571101 0.640229 -0.292210 -0.855861 -0.426749 0.767343 0.056502 -0.638743 0.570787 -0.514110 0.640229 -0.200900 -0.881773 -0.426749 0.757195 0.136614 -0.638743 0.621526 -0.451456 0.640229 -0.107378 -0.897973 -0.426749 0.738707 0.215221 -0.638743 0.665419 -0.383829 0.640229 -0.013576 -0.904268 -0.426749 0.712373 0.290745 -0.638743 0.701670 -0.312676 0.640229 0.081272 -0.900711 -0.426749 0.677978 0.363805 -0.638743 0.730576 -0.237414 0.640229 0.175226 -0.887232 -0.426749 0.636114 0.432859 -0.638743 0.751435 -0.159537 0.640229 0.266385 -0.864248 -0.426749 0.587741 0.496557 -0.638743 0.763937 -0.080667 0.640229 0.355497 -0.831569 -0.426749 0.532461 0.555421 -0.638743 0.768184 -0.000156 0.640229 0.440693 -0.789731 -0.426749 0.471317 0.608168 -0.638743 0.763970 0.080356 0.640229 0.521036 -0.739193 -0.426749 0.404981 0.654216 -0.638743 0.751340 0.159983 0.640229 0.594958 -0.681109 -0.426749 0.334877 0.692723 -0.638743 0.730673 0.237117 0.640229 0.663067 -0.615002 -0.426749 0.260430 0.724006 -0.638743 0.701797 0.312391 0.640229 0.723871 -0.542121 -0.426749 0.183115 0.747313 -0.638743 0.665191 0.384223 0.640229 0.776703 -0.463268 -0.426749 0.103782 0.762389 -0.638743 0.621258 0.451824 0.640229 0.820599 -0.380134 -0.426749 0.024076 0.769044 -0.638743 0.570996 0.513877 0.640229 0.855921 -0.292035 -0.426749 -0.056658 0.767332 -0.638743 0.513994 0.570892 0.640229 0.881814 -0.200721 -0.426749 -0.136768 0.757167 -0.638743 0.451329 0.621618 0.640229 0.897887 -0.108093 -0.426749 -0.214632 0.738878 -0.638743 0.384359 0.665113 0.640229 0.904271 -0.013392 -0.426749 -0.290890 0.712314 -0.638743 0.312534 0.701733 0.640229 0.900694 0.081456 -0.426749 -0.363944 0.677903 -0.638743 0.237266 0.730624 0.640229 0.887197 0.175406 -0.426749 -0.432988 0.636026 -0.638743 0.159384 0.751468 0.640229 0.864194 0.266561 -0.426749 -0.496676 0.587640 -0.638743 0.080511 0.763953 0.640229 0.831497 0.355666 -0.426749 -0.555530 0.532348 -0.638743 0.000000 0.768184 0.640229 0.789641 0.440854 -0.426749 -0.608264 0.471193 -0.638743 -0.080511 0.763953 0.640229 0.739608 0.520447 -0.426749 -0.653893 0.405501 -0.638743 -0.159384 0.751468 0.640229 0.680988 0.595097 -0.426749 -0.692792 0.334735 -0.638743 -0.237266 0.730624 0.640229 0.614867 0.663192 -0.426749 -0.724059 0.260282 -0.638743 -0.312534 0.701733 0.640229 0.541974 0.723982 -0.426749 -0.747351 0.182962 -0.638743 -0.384359 0.665113 0.640229 0.463887 0.776334 -0.426749 -0.762306 0.104389 -0.638743 -0.451329 0.621618 0.640229 0.379967 0.820677 -0.426749 -0.769049 0.023919 -0.638743 -0.513994 0.570892 0.640229 0.291861 0.855980 -0.426749 -0.767320 -0.056814 -0.638743 -0.570996 0.513877 0.640229 0.201423 0.881654 -0.426749 -0.757276 -0.136165 -0.638743 -0.621258 0.451824 0.640229 0.107910 0.897909 -0.426749 -0.738834 -0.214783 -0.638743 -0.665191 0.384223 0.640229 0.013208 0.904274 -0.426749 -0.712255 -0.291035 -0.638743 -0.701797 0.312391 0.640229 -0.081639 0.900678 -0.426749 -0.677829 -0.364082 -0.638743 -0.730673 0.237117 0.640229 -0.174700 0.887336 -0.426749 -0.636371 -0.432482 -0.638743 -0.751340 0.159983 0.640229 -0.266737 0.864139 -0.426749 -0.587539 -0.496796 -0.638743 -0.763970 0.080356 0.640229 0.400033 -0.780880 0.479792 0.499867 0.624681 0.599922 -0.768184 -0.000156 0.640229 0.479671 -0.734653 0.479792 0.431643 0.673630 0.599922 -0.763937 -0.080667 0.640229 0.553346 -0.680888 0.479792 0.359379 0.714801 0.599922 -0.751435 -0.159537 0.640229 0.621660 -0.619143 0.479792 0.282484 0.748529 0.599922 -0.730576 -0.237414 0.640229 0.683127 -0.550579 0.479792 0.202477 0.774013 0.599922 -0.701670 -0.312676 0.640229 0.736593 -0.476687 0.479792 0.121030 0.790851 0.599922 -0.665419 -0.383829 0.640229 0.782497 -0.396861 0.479792 0.037477 0.799180 0.599922 -0.621526 -0.451456 0.640229 0.819781 -0.312664 0.479792 -0.046489 0.798707 0.599922 -0.570787 -0.514110 0.640229 0.848036 -0.225023 0.479792 -0.129943 0.789435 0.599922 -0.513761 -0.571101 0.640229 0.866814 -0.135771 0.479792 -0.211195 0.771680 0.599922 -0.451698 -0.621350 0.640229 0.876270 -0.044175 0.479792 -0.290909 0.745295 0.599922 -0.384088 -0.665269 0.640229 0.876073 0.047908 0.479792 -0.367419 0.710701 0.599922 -0.312248 -0.701861 0.640229 0.866366 0.138597 0.479792 -0.439214 0.668719 0.599922 -0.237699 -0.730484 0.640229 0.847069 0.228635 0.479792 -0.506881 0.619003 0.599922 -0.159830 -0.751373 0.640229 0.818441 0.316154 0.479792 -0.568966 0.562469 0.599922 -0.080200 -0.763986 0.640229 0.781124 0.399556 0.479792 -0.624376 0.500248 0.599922 -0.000313 -0.768184 0.640229 0.734946 0.479223 0.479792 -0.673366 0.432054 0.599922 0.080200 -0.763986 0.640229 0.680672 0.553611 0.479792 -0.714940 0.359101 0.599922 0.159830 -0.751373 0.640229 0.618901 0.621901 0.479792 -0.748639 0.282193 0.599922 0.237699 -0.730484 0.640229 0.550996 0.682791 0.479792 -0.773889 0.202950 0.599922 0.312248 -0.701861 0.640229 0.476400 0.736779 0.479792 -0.790898 0.120723 0.599922 0.384088 -0.665269 0.640229 0.396557 0.782651 0.479792 -0.799195 0.037166 0.599922 0.451698 -0.621350 0.640229 0.313165 0.819590 0.479792 -0.798735 -0.046001 0.599922 0.513761 -0.571101 0.640229 0.225541 0.847898 0.479792 -0.789515 -0.129461 0.599922 0.570787 -0.514110 0.640229 0.135433 0.866867 0.479792 -0.771598 -0.211495 0.599922 0.621526 -0.451456 0.640229 0.043834 0.876287 0.479792 -0.745182 -0.291199 0.599922 0.665419 -0.383829 0.640229 -0.047373 0.876103 0.479792 -0.710926 -0.366985 0.599922 0.701670 -0.312676 0.640229 -0.138934 0.866312 0.479792 -0.668548 -0.439474 0.599922 0.730576 -0.237414 0.640229 -0.228964 0.846980 0.479792 -0.618806 -0.507122 0.599922 0.751435 -0.159537 0.640229 -0.315654 0.818634 0.479792 -0.562817 -0.568622 0.599922 0.763937 -0.080667 0.640229 -0.399715 0.781043 0.479792 -0.500121 -0.624477 0.599922 0.768184 -0.000156 0.640229 -0.479372 0.734848 0.479792 -0.431917 -0.673454 0.599922 0.763970 0.080356 0.640229 -0.553749 0.680560 0.479792 -0.358956 -0.715013 0.599922 0.751340 0.159983 0.640229 -0.621408 0.619396 0.479792 -0.282789 -0.748414 0.599922 0.730673 0.237117 0.640229 -0.682903 0.550857 0.479792 -0.202792 -0.773931 0.599922 0.701797 0.312391 0.640229 -0.736876 0.476250 0.479792 -0.120562 -0.790922 0.599922 0.665191 0.384223 0.640229 -0.782732 0.396397 0.479792 -0.037003 -0.799202 0.599922 0.621258 0.451824 0.640229 -0.819654 0.312998 0.479792 0.046164 -0.798725 0.599922 0.570996 0.513877 0.640229 -0.847944 0.225369 0.479792 0.129622 -0.789488 0.599922 0.513994 0.570892 0.640229 -0.866894 0.135257 0.479792 0.211652 -0.771555 0.599922 0.451329 0.621618 0.640229 -0.876252 0.044531 0.479792 0.290605 -0.745414 0.599922 0.384359 0.665113 0.640229 -0.876093 -0.047551 0.479792 0.367130 -0.710851 0.599922 0.312534 0.701733 0.640229 -0.866284 -0.139110 0.479792 0.439610 -0.668458 0.599922 0.237266 0.730624 0.640229 -0.846933 -0.229137 0.479792 0.507248 -0.618703 0.599922 0.159384 0.751468 0.640229 -0.818570 -0.315821 0.479792 0.568736 -0.562701 0.599922 0.080511 0.763953 0.640229 -0.780961 -0.399874 0.479792 0.624579 -0.499994 0.599922 0.000000 0.768184 0.640229 -0.734751 -0.479522 0.479792 0.673542 -0.431780 0.599922 -0.080511 0.763953 0.640229 -0.681000 -0.553207 0.479792 0.714727 -0.359525 0.599922 -0.159384 0.751468 0.640229 -0.619270 -0.621534 0.479792 0.748472 -0.282636 0.599922 -0.237266 0.730624 0.640229 -0.550718 -0.683015 0.479792 0.773972 -0.202634 0.599922 -0.312534 0.701733 0.640229 -0.476100 -0.736973 0.479792 0.790947 -0.120401 0.599922 -0.384359 0.665113 0.640229 -0.397020 -0.782416 0.479792 0.799172 -0.037640 0.599922 -0.451329 0.621618 0.640229 -0.312831 -0.819717 0.479792 0.798716 0.046326 0.599922 -0.513994 0.570892 0.640229 -0.225196 -0.847990 0.479792 0.789462 0.129782 0.599922 -0.570996 0.513877 0.640229 -0.135947 -0.866786 0.479792 0.771723 0.211037 0.599922 -0.621258 0.451824 0.640229 -0.044353 -0.876261 0.479792 0.745355 0.290757 0.599922 -0.665191 0.384223 0.640229 0.047730 -0.876083 0.479792 0.710776 0.367274 0.599922 -0.701797 0.312391 0.640229 0.139287 -0.866256 0.479792 0.668369 0.439746 0.599922 -0.730673 0.237117 0.640229 0.228462 -0.847116 0.479792 0.619106 0.506755 0.599922 -0.751340 0.159983 0.640229 0.315988 -0.818506 0.479792 0.562585 0.568851 0.599922 -0.763970 0.080356 0.640229 -0.007044 -0.999534 0.029717 -0.236824 0.030540 0.971072 -0.971527 -0.000198 -0.236929 0.097754 -0.994767 0.029717 -0.238721 0.005551 0.971072 -0.966156 -0.102020 -0.236929 0.200495 -0.979244 0.029717 -0.238007 -0.019262 0.971072 -0.950344 -0.201768 -0.236929 0.302022 -0.952838 0.029717 -0.234678 -0.044101 0.971072 -0.923964 -0.300259 -0.236929 0.400223 -0.915936 0.029717 -0.228763 -0.068454 0.971072 -0.887406 -0.395444 -0.236929 0.493146 -0.869439 0.029717 -0.220421 -0.091832 0.971072 -0.841559 -0.485431 -0.236929 0.581554 -0.812965 0.029717 -0.209582 -0.114428 0.971072 -0.786047 -0.570959 -0.236929 0.663555 -0.747537 0.029717 -0.196435 -0.135764 0.971072 -0.721878 -0.650198 -0.236929 0.738248 -0.673874 0.029717 -0.181124 -0.155604 0.971072 -0.649757 -0.722275 -0.236929 0.804216 -0.593594 0.029717 -0.163992 -0.173566 0.971072 -0.571265 -0.785825 -0.236929 0.862000 -0.506037 0.029717 -0.144898 -0.189797 0.971072 -0.485758 -0.841370 -0.236929 0.910289 -0.412906 0.029717 -0.124208 -0.203939 0.971072 -0.394901 -0.887647 -0.236929 0.948235 -0.316176 0.029717 -0.102365 -0.215731 0.971072 -0.300619 -0.923847 -0.236929 0.976150 -0.215053 0.029717 -0.079191 -0.225271 0.971072 -0.202137 -0.950266 -0.236929 0.993313 -0.111561 0.029717 -0.055145 -0.232331 0.971072 -0.101429 -0.966218 -0.236929 0.999529 -0.007654 0.029717 -0.030684 -0.236806 0.971072 -0.000396 -0.971527 -0.236929 0.994826 0.097146 0.029717 -0.005696 -0.238717 0.971072 0.101429 -0.966218 -0.236929 0.979166 0.200876 0.029717 0.019354 -0.238000 0.971072 0.202137 -0.950266 -0.236929 0.952720 0.302393 0.029717 0.044192 -0.234660 0.971072 0.300619 -0.923847 -0.236929 0.916180 0.399663 0.029717 0.068314 -0.228805 0.971072 0.394901 -0.887647 -0.236929 0.869247 0.493484 0.029717 0.091918 -0.220385 0.971072 0.485758 -0.841370 -0.236929 0.812739 0.581870 0.029717 0.114510 -0.209538 0.971072 0.571265 -0.785825 -0.236929 0.747942 0.663099 0.029717 0.135644 -0.196518 0.971072 0.649757 -0.722275 -0.236929 0.674325 0.737836 0.029717 0.155493 -0.181219 0.971072 0.721878 -0.650198 -0.236929 0.593281 0.804447 0.029717 0.173630 -0.163924 0.971072 0.786047 -0.570959 -0.236929 0.505702 0.862196 0.029717 0.189854 -0.144824 0.971072 0.841559 -0.485431 -0.236929 0.413462 0.910036 0.029717 0.203863 -0.124332 0.971072 0.887406 -0.395444 -0.236929 0.315807 0.948358 0.029717 0.215771 -0.102281 0.971072 0.923964 -0.300259 -0.236929 0.214673 0.976234 0.029717 0.225302 -0.079104 0.971072 0.950344 -0.201768 -0.236929 0.112168 0.993245 0.029717 0.232297 -0.055287 0.971072 0.966156 -0.102020 -0.236929 0.007451 0.999531 0.029717 0.236812 -0.030636 0.971072 0.971527 -0.000198 -0.236929 -0.097348 0.994807 0.029717 0.238719 -0.005648 0.971072 0.966197 0.101626 -0.236929 -0.201075 0.979125 0.029717 0.237996 0.019403 0.971072 0.950225 0.202331 -0.236929 -0.301634 0.952960 0.029717 0.234696 0.044005 0.971072 0.924086 0.299883 -0.236929 -0.399850 0.916099 0.029717 0.228791 0.068360 0.971072 0.887567 0.395082 -0.236929 -0.493661 0.869146 0.029717 0.220366 0.091963 0.971072 0.841271 0.485930 -0.236929 -0.582036 0.812620 0.029717 0.209514 0.114552 0.971072 0.785709 0.571425 -0.236929 -0.663251 0.747807 0.029717 0.196490 0.135684 0.971072 0.722143 0.649904 -0.236929 -0.737974 0.674175 0.029717 0.181187 0.155530 0.971072 0.650051 0.722010 -0.236929 -0.804568 0.593117 0.029717 0.163889 0.173663 0.971072 0.570799 0.786164 -0.236929 -0.861794 0.506388 0.029717 0.144975 0.189738 0.971072 0.486101 0.841172 -0.236929 -0.910120 0.413277 0.029717 0.124291 0.203888 0.971072 0.395263 0.887486 -0.236929 -0.948422 0.315614 0.029717 0.102237 0.215792 0.971072 0.300071 0.924025 -0.236929 -0.976277 0.214474 0.029717 0.079058 0.225318 0.971072 0.201574 0.950385 -0.236929 -0.993268 0.111965 0.029717 0.055240 0.232308 0.971072 0.101823 0.966176 -0.236929 -0.999532 0.007247 0.029717 0.030588 0.236818 0.971072 0.000000 0.971527 -0.236929 -0.994787 -0.097551 0.029717 0.005599 0.238720 0.971072 -0.101823 0.966176 -0.236929 -0.979285 -0.200295 0.029717 -0.019213 0.238011 0.971072 -0.201574 0.950385 -0.236929 -0.952899 -0.301828 0.029717 -0.044053 0.234687 0.971072 -0.300071 0.924025 -0.236929 -0.916017 -0.400037 0.029717 -0.068407 0.228777 0.971072 -0.395263 0.887486 -0.236929 -0.869046 -0.493839 0.029717 -0.092008 0.220348 0.971072 -0.486101 0.841172 -0.236929 -0.813083 -0.581388 0.029717 -0.114385 0.209605 0.971072 -0.570799 0.786164 -0.236929 -0.747672 -0.663403 0.029717 -0.135724 0.196463 0.971072 -0.650051 0.722010 -0.236929 -0.674025 -0.738111 0.029717 -0.155567 0.181156 0.971072 -0.722143 0.649904 -0.236929 -0.593758 -0.804095 0.029717 -0.173532 0.164027 0.971072 -0.785709 0.571425 -0.236929 -0.506212 -0.861897 0.029717 -0.189768 0.144936 0.971072 -0.841271 0.485930 -0.236929 -0.413092 -0.910204 0.029717 -0.203913 0.124249 0.971072 -0.887567 0.395082 -0.236929 -0.315421 -0.948487 0.029717 -0.215812 0.102193 0.971072 -0.924086 0.299883 -0.236929 -0.215252 -0.976106 0.029717 -0.225255 0.079237 0.971072 -0.950225 0.202331 -0.236929 -0.111763 -0.993290 0.029717 -0.232319 0.055192 0.971072 -0.966197 0.101626 -0.236929 -0.268234 -0.806552 0.526806 -0.366237 0.591163 0.718607 -0.891022 -0.000181 -0.453959 -0.182224 -0.830223 0.526806 -0.426178 0.549523 0.718607 -0.886096 -0.093566 -0.453959 -0.095052 -0.844654 0.526806 -0.480923 0.502311 0.718607 -0.871595 -0.185048 -0.453959 -0.006002 -0.849964 0.526806 -0.530920 0.449141 0.718607 -0.847401 -0.275379 -0.453959 0.083113 -0.845912 0.526806 -0.575069 0.391023 0.718607 -0.813872 -0.362676 -0.453959 0.170481 -0.832713 0.526806 -0.612555 0.329210 0.718607 -0.771824 -0.445206 -0.453959 0.256816 -0.810260 0.526806 -0.643685 0.263197 0.718607 -0.720913 -0.523647 -0.453959 0.340322 -0.778881 0.526806 -0.667725 0.194285 0.718607 -0.662060 -0.596320 -0.453959 0.420080 -0.738923 0.526806 -0.684410 0.123232 0.718607 -0.595915 -0.662424 -0.453959 0.494520 -0.691321 0.526806 -0.693505 0.051516 0.718607 -0.523927 -0.720709 -0.453959 0.564252 -0.635684 0.526806 -0.695085 -0.021452 0.718607 -0.445506 -0.771651 -0.453959 0.627769 -0.573046 0.526806 -0.689009 -0.094184 0.718607 -0.362178 -0.814093 -0.453959 0.683866 -0.504779 0.526806 -0.675508 -0.165203 0.718607 -0.275708 -0.847293 -0.453959 0.733005 -0.430325 0.526806 -0.654474 -0.235091 0.718607 -0.185388 -0.871523 -0.453959 0.774069 -0.351131 0.526806 -0.626230 -0.302390 0.718607 -0.093025 -0.886153 -0.453959 0.806388 -0.268726 0.526806 -0.591387 -0.365876 0.718607 -0.000363 -0.891022 -0.453959 0.830111 -0.182731 0.526806 -0.549783 -0.425843 0.718607 0.093025 -0.886153 -0.453959 0.844691 -0.094723 0.526806 -0.502124 -0.481119 0.718607 0.185388 -0.871523 -0.453959 0.849967 -0.005672 0.526806 -0.448934 -0.531095 0.718607 0.275708 -0.847293 -0.453959 0.845963 0.082596 0.526806 -0.391374 -0.574830 0.718607 0.362178 -0.814093 -0.453959 0.832647 0.170804 0.526806 -0.328972 -0.612683 0.718607 0.445506 -0.771651 -0.453959 0.810160 0.257131 0.526806 -0.262947 -0.643788 0.718607 0.523927 -0.720709 -0.453959 0.779089 0.339847 0.526806 -0.194693 -0.667606 0.718607 0.595915 -0.662424 -0.453959 0.739180 0.419629 0.526806 -0.123650 -0.684335 0.718607 0.662060 -0.596320 -0.453959 0.691129 0.494789 0.526806 -0.051246 -0.693525 0.718607 0.720913 -0.523647 -0.453959 0.635465 0.564499 0.526806 0.021722 -0.695077 0.718607 0.771824 -0.445206 -0.453959 0.573429 0.627419 0.526806 0.093763 -0.689066 0.718607 0.813872 -0.362676 -0.453959 0.504513 0.684063 0.526806 0.165465 -0.675444 0.718607 0.847401 -0.275379 -0.453959 0.430040 0.733172 0.526806 0.235345 -0.654382 0.718607 0.871595 -0.185048 -0.453959 0.351604 0.773854 0.526806 0.302007 -0.626415 0.718607 0.886096 -0.093566 -0.453959 0.268562 0.806443 0.526806 0.365996 -0.591312 0.718607 0.891022 -0.000181 -0.453959 0.182562 0.830149 0.526806 0.425955 -0.549697 0.718607 0.886134 0.093205 -0.453959 0.094551 0.844710 0.526806 0.481221 -0.502026 0.718607 0.871485 0.185565 -0.453959 0.006348 0.849962 0.526806 0.530737 -0.449357 0.718607 0.847513 0.275034 -0.453959 -0.082769 0.845946 0.526806 0.574910 -0.391257 0.718607 0.814020 0.362344 -0.453959 -0.170974 0.832612 0.526806 0.612750 -0.328847 0.718607 0.771560 0.445664 -0.453959 -0.257296 0.810107 0.526806 0.643841 -0.262816 0.718607 0.720602 0.524074 -0.453959 -0.340005 0.779020 0.526806 0.667646 -0.194557 0.718607 0.662303 0.596050 -0.453959 -0.419780 0.739094 0.526806 0.684360 -0.123511 0.718607 0.596185 0.662182 -0.453959 -0.494930 0.691028 0.526806 0.693536 -0.051105 0.718607 0.523500 0.721019 -0.453959 -0.563993 0.635914 0.526806 0.695094 0.021169 0.718607 0.445821 0.771469 -0.453959 -0.627535 0.573301 0.526806 0.689047 0.093903 0.718607 0.362510 0.813946 -0.453959 -0.684165 0.504374 0.526806 0.675410 0.165603 0.718607 0.275206 0.847457 -0.453959 -0.733259 0.429891 0.526806 0.654334 0.235479 0.718607 0.184871 0.871633 -0.453959 -0.773926 0.351446 0.526806 0.626353 0.302135 0.718607 0.093386 0.886115 -0.453959 -0.806497 0.268398 0.526806 0.591238 0.366117 0.718607 0.000000 0.891023 -0.453959 -0.830186 0.182393 0.526806 0.549610 0.426066 0.718607 -0.093386 0.886115 -0.453959 -0.844635 0.095224 0.526806 0.502409 0.480821 0.718607 -0.184871 0.871633 -0.453959 -0.849963 0.006175 0.526806 0.449249 0.530829 0.718607 -0.275206 0.847457 -0.453959 -0.845929 -0.082941 0.526806 0.391140 0.574990 0.718607 -0.362510 0.813946 -0.453959 -0.832578 -0.171143 0.526806 0.328723 0.612817 0.718607 -0.445821 0.771469 -0.453959 -0.810312 -0.256651 0.526806 0.263328 0.643632 0.718607 -0.523500 0.721019 -0.453959 -0.778951 -0.340164 0.526806 0.194421 0.667686 0.718607 -0.596185 0.662182 -0.453959 -0.739009 -0.419930 0.526806 0.123372 0.684385 0.718607 -0.662303 0.596050 -0.453959 -0.691422 -0.494380 0.526806 0.051657 0.693495 0.718607 -0.720602 0.524074 -0.453959 -0.635799 -0.564123 0.526806 -0.021310 0.695090 0.718607 -0.771560 0.445664 -0.453959 -0.573174 -0.627652 0.526806 -0.094043 0.689028 0.718607 -0.814020 0.362344 -0.453959 -0.504235 -0.684268 0.526806 -0.165740 0.675377 0.718607 -0.847513 0.275034 -0.453959 -0.430474 -0.732917 0.526806 -0.234958 0.654522 0.718607 -0.871485 0.185565 -0.453959 -0.351289 -0.773997 0.526806 -0.302262 0.626292 0.718607 -0.886134 0.093205 -0.453959 mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/transformation.py0000644000175000017500000003275010651433500024740 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # $Header: /opt/cvs/python/packages/share1.5/mglutil/math/transformation.py,v 1.45 2007/07/24 17:30:40 vareille Exp $ # import math import numpy.oldnumeric as Numeric from mglutil.math import rotax from mglutil.math import VectorModule N = Numeric Vector = VectorModule.Vector class Quaternion: """ Base Quaternion class """ def __init__(self, data=(1.0,N.array((0.,0.,0.),'f'))): """data is in the form ( c, (x y, z)), where c is the real part (float) and (x,y,z) is the pure part (Numeric array of floats) """ try: self.real = float(data[0]) self.pure = N.array((data[1][0],data[1][1],data[1][2]),'f') except: raise ValueError("1Arguments must be (c,(x,y,z))") if len(self.pure)!=3: raise ValueError("2Arguments must be (c,(x,y,z))") def __repr__(self): """ representation of a general quaternion must be (real,pure), since not all quaternions are rotations """ result = "Quaternion (%g (%g %g %g))" % \ (self.real,self.pure[0], self.pure[1],self.pure[2]) return result def __add__(self,other): """ Get the sum of two quaternions. """ real = self.real + other.real pure = self.pure + other.pure return Quaternion((real,pure)) def __mul__(self,other): """ Multiply two quaternions together. For unit Quaternons, this is equivalent to concatenating rotations""" real = self.real * other.real - \ N.innerproduct(self.pure,other.pure) v1 = self.pure v2 = other.pure cofactor1 = v1[1]*v2[2]-v1[2]*v2[1] cofactor2 = v1[2]*v2[0]-v1[0]*v2[2] cofactor3 = v1[0]*v2[1]-v1[1]*v2[0] pure= N.array([cofactor1,cofactor2,cofactor3]) \ + self.real * other.pure \ + other.real * self.pure return Quaternion((real,pure)) def conjugate(self): """ The conjugate of quaternion (c,(x,y,z)) is (c,(-x,-y,-z)) So the product of a quaternion and its conjugate is its magnitude """ pure = -self.pure real = self.real return Quaternion((real,pure)) def magnitude(self): """ Quicker than multiplying conjugates""" return self.real**2 + N.innerproduct(self.pure,self.pure) def inverse(self): """Get the multiplicative inverse of a quaternion""" real = self.real/self.magnitude() pure = -self.pure/self.magnitude() return Quaternion((real,pure)) def normal(self): """Normalise a quaternion by dividing throughout by the magnitude """ M = N.sqrt(self.magnitude()) self.pure = self.pure/M self.real = self.real/M class UnitQuaternion(Quaternion): """ Special subclass of Quaternions with magnitude 1.0 Can be used to represent rotations, in which case real = cos(theta/2) and pure = sin(theta/2)*(unit direction vector) Input can also be given in the form (x,y,z,theta), where (x,y,z) is the rotation axis (not necessarily normalized) and theta is the rotation angle in degrees. """ def __init__(self, data=(1.0, N.array((0.,0.,0.),'f')) ): """ (real,(pure x,pure y,pure z)) or (x,y,z,theta) (theta in degrees) """ if len(data)==2: self.real = data[0] try: theta = N.arccos(self.real) self.pure = N.array((data[1][0],data[1][1],data[1][2]),'f') except: raise ValueError("The real part must be between -1.0 and 1.0") elif len(data)==4: theta = N.pi*data[3]/360. self.real = N.cos(theta) self.pure = N.sin(theta)*N.array((data[0],data[1], data[2]),'f') else: raise ValueError("Args must be (x,y,z,theta) or (real,pure)") self.normal() def normal(self): if self.real!=1.: theta = N.arccos(self.real) vector = self.pure/N.sin(theta) vector = vector/N.sqrt(N.innerproduct(vector,vector)) self.pure = N.sin(theta)*vector else: self.pure = N.zeros(3,'f') def __repr__(self): """Representation of a unit quaternion is as rx,ry,rz,theta, so we can see what it does """ if self.real != 1.: #if it is not the identity theta = N.arccos(self.real) angle = 360*theta/N.pi xyz = self.pure/N.sin(theta) else: #if it is the identity angle = 0. xyz = self.pure return "Unit Quaternion %7.4f %7.4f %7.4f %7.3f" % \ (xyz[0],xyz[1],xyz[2],angle) def __mul__(self,other): # same as Quaternion, except return another UnitQuaternion result = Quaternion.__mul__(self,other) return UnitQuaternion((result.real,result.pure)) def conjugate(self): result = Quaternion.conjugate(self) return UnitQuaternion((result.real,result.pure)) def inverse(self): return self.conjugate() def getAxisAndAngleDegres(self): """Given a quaternion, compute axis and angle. """ theta = N.arccos(self.real) angle = 360*theta/N.pi xyz = self.pure/N.sin(theta) return xyz, angle def getRotMatrix(self, shape=(4,4), transpose = None): """return the rotation matrix as a Numeric array of shape shape. """ try: assert( shape in [ (3,3), (4,4), (9,), (16,)] ) except: raise ValueError('shape must be (3,3), (4,4), (9,) or (16,)') # get the inverse 4x4 from rotax mtx = rotax.rotax(N.array([0.,0.,0.],'f'),self.pure,2*N.arccos(self.real)) # strip if necessary if shape in ((3,3),(9,)): mtx = map(lambda x: x[:3],mtx) mtx = mtx[:3] if not transpose: return N.reshape(N.transpose(mtx),shape) else: return N.reshape(mtx,shape) def apply(self,points): # apply the rotational part alone to a point or list of points # can be homogeneous coordinates or not. pshape = N.shape(points) homogeneous = 1 if len(pshape) == 1: if pshape[0] ==3: points = N.array(N.concatenate((points, N.ones(1,'f')),1)) homogeneous = 0 elif len(pshape) == 2: if pshape[1] ==3: points = N.array(N.concatenate( (N.array(points), N.ones( (pshape[0],1),'f') ), 1)) homogeneous = 0 mtx = self.getRotMatrix((4,4), transpose=1) newpoints = N.dot(points,mtx) if homogeneous: return newpoints else: #strip the final zero off the coordinates if len(pshape)==1: return newpoints[:3] else: newpoints = map(lambda x: x[:3],newpoints) return newpoints class Transformation(UnitQuaternion): """ Base class for manipulating transformations. """ def __init__(self,trans=N.array([0.,0.,0.,1.],'f'), quaternion=N.array([0.,0.,0.,0.],'f'), scale=N.array([1.,1.,1.,1.],'f')): UnitQuaternion.__init__(self,quaternion) # make the translation homogeneous if it isn't if len(trans)==3: trans = list(trans) trans.append(1.) self.trans = N.array((trans[0],trans[1],trans[2],trans[3]),'f') def __repr__(self): """ Representation is of the form tx,ty,tz,qx,qy,qz,theta """ # first check for identity quaternion to avoid nans if self.real != 1: theta = N.arccos(self.real) angle = 360*theta/N.pi xyz = self.pure/N.sin(theta) else: angle = 0. xyz = self.pure result = "Transformation: tx ty tz rx ry rz angle\n %g %g %g %g %g %g %g" \ % (self.trans[0],self.trans[1],self.trans[2], xyz[0],xyz[1],xyz[2],angle) return result def output(self): """ As __repr__ but without the explanation. For getting the numbers only """ if self.real != 1: theta = N.arccos(self.real) angle = 360*theta/N.pi xyz = self.pure/N.sin(theta) else: angle = 0. xyz = self.pure result = "%g %g %g %g %g %g %g" % (self.trans[0],self.trans[1],self.trans[2], xyz[0],xyz[1],xyz[2],angle) return result def __mul__(self,other): """ concatenate two transformations. self*other (other performed first). """ # combined rotation is the product of the two rotations (Rself*Rother): v1 = self.pure v2 = other.pure real = self.real * other.real - \ N.innerproduct(v1,v2) cofactor1 = v1[1]*v2[2]-v1[2]*v2[1] cofactor2 = v1[2]*v2[0]-v1[0]*v2[2] cofactor3 = v1[0]*v2[1]-v1[1]*v2[0] pure= N.array([cofactor1,cofactor2,cofactor3]) \ + self.real * other.pure \ + other.real * self.pure # combined translation trans = self.getQuaternion().apply(other.trans)+self.trans trans[3]=1. return Transformation(trans=trans,quaternion = (real,pure)) def reset(self): self.real = 1.0 self.pure = N.array((0.,0.,0.)) self.trans = N.array([0.,0.,0.,1.]) def getQuaternion(self): return UnitQuaternion((self.real,self.pure)) def getTranslation(self,shape=(4,)): """ get the translation vector with shape = (3,) or (4,) (default is (4,)) """ if shape ==(3,): return self.trans[:3] elif shape == (4,): return self.trans else: raise ValueError("Shape must be (3,) or (4,)") def getMatrix(self,shape=(4,4), transpose=None): mtx = self.getRotMatrix((4,4),transpose=transpose) # from Quaternion mtx[3]=self.getTranslation() if transpose: return N.reshape(mtx,shape) else: return N.reshape(N.transpose(mtx),shape) def getDejaVuMatrix(self): """returns a 4x matrix usable as an instance matrix""" mtx = self.getRotMatrix((4,4),transpose=None) # from Quaternion mtx[3]=self.getTranslation() mtx[:3,3] = mtx[3,:3] mtx[3,:3]=[0,0,0] return mtx def apply(self,points): """ Apply the entire transformation to a list of points """ pshape = N.shape(points) homogeneous = 1 if len(pshape) == 1: if pshape[0] ==3: points = N.array(N.concatenate((points, N.ones(1,'f')),1)) homogeneous = 0 elif len(pshape) == 2: if pshape[1] ==3: points = N.array(N.concatenate( (N.array(points), N.ones( (pshape[0],1),'f') ), 1)) homogeneous = 0 mtx = self.getMatrix((4,4),transpose=1) newpoints = N.dot(points,mtx) if homogeneous: return newpoints else: #strip the final one off the coordinates if len(pshape)==1: return newpoints[:3] else: newpoints = map(lambda x: x[:3],newpoints) return newpoints def inverse(self): # inverse rotation is the same as for a pure rotation real = self.real pure = -self.pure # inverse translation is application of inverse rotation transl = -N.dot(self.getRotMatrix(transpose=1,shape=(3,3)), self.trans[:3]) return Transformation(trans=transl,quaternion = (real,pure)) def getScrewAxis(self,center=None,linelength=None): """ Get the representation of a transformation in screw format. Returns two points on the axis and the translation component along the axis. Takes an optional center argument. The first point returned is then the point on the axis nearest to the center. The optional linelength argument defines the distance between the two points returned. The default is the translation component. """ # first check that there is a rotational component. If not, abort # if there is a rotation, self.real != 1.0 if self.real <= 0.99999999: #need the direction to determine which way to draw the line trans = Vector(self.trans[:3]) theta = N.arccos(self.real) axis = self.pure/N.sin(theta) axis = Vector(axis) screw = (trans*axis) tpar = screw*axis tper = trans - tpar cpt1 = tper/2. length = tper.length() height = length/(2*N.tan(theta)) cpt2 = height*(axis.cross(tper)).normal() point = cpt1+cpt2 if center: try: center = Vector(center) except: raise ValueError('center must be a Numeric array of shape (3,)') m = (center-point)*axis point = point + m*axis if not linelength: return point,point+axis*screw,screw else: return point,point+linelength*N.sign(screw)*axis,screw else: return None mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/rotax.py0000644000175000017500000003176410651433500023033 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by """ This file contains the following functions, rotax mat_to_quat mat_to_axis_angle inverse4X4 rotVectToVect interpolate3DTransform """ from math import pi, sin, cos, sqrt import numpy.oldnumeric as N degtorad = pi/180. def rotax( a, b, tau, transpose=1 ): """ Build 4x4 matrix of clockwise rotation about axis a-->b by angle tau (radians). a and b are sequences of 3 floats each Result is a homogenous 4x4 transformation matrix. NOTE: This has been changed by Brian, 8/30/01: rotax now returns the rotation matrix, _not_ the transpose. This is to get consistency across rotax, mat_to_quat and the classes in transformation.py when transpose is 1 (default) a C-style rotation matrix is returned i.e. to be used is the following way Mx (opposite of OpenGL style which is using the FORTRAN style) """ assert len(a) == 3 assert len(b) == 3 if tau <= -2*pi or tau >= 2*pi: tau = tau%(2*pi) ct = cos(tau) ct1 = 1.0 - ct st = sin(tau) # Compute unit vector v in the direction of a-->b. If a-->b has length # zero, assume v = (1,1,1)/sqrt(3). v = [b[0]-a[0], b[1]-a[1], b[2]-a[2]] s = v[0]*v[0]+v[1]*v[1]+v[2]*v[2] if s > 0.0: s = sqrt(s) v = [v[0]/s, v[1]/s, v[2]/s] else: val = sqrt(1.0/3.0) v = (val, val, val) rot = N.zeros( (4,4), 'f' ) # Compute 3x3 rotation matrix v2 = [v[0]*v[0], v[1]*v[1], v[2]*v[2]] v3 = [(1.0-v2[0])*ct, (1.0-v2[1])*ct, (1.0-v2[2])*ct] rot[0][0]=v2[0]+v3[0] rot[1][1]=v2[1]+v3[1] rot[2][2]=v2[2]+v3[2] rot[3][3] = 1.0; v2 = [v[0]*st, v[1]*st, v[2]*st] rot[1][0]=v[0]*v[1] * ct1-v2[2] rot[2][1]=v[1]*v[2] * ct1-v2[0] rot[0][2]=v[2]*v[0] * ct1-v2[1] rot[0][1]=v[0]*v[1] * ct1+v2[2] rot[1][2]=v[1]*v[2] * ct1+v2[0] rot[2][0]=v[2]*v[0] * ct1+v2[1] # add translation for i in (0,1,2): rot[3][i] = a[i] for j in (0,1,2): rot[3][i] = rot[3][i]-rot[j][i]*a[j] rot[i][3]=0.0 if transpose: return rot else: return N.transpose(rot) from math import asin def rotVectToVect(vect1, vect2, i=None): """returns a 4x4 transformation that will align vect1 with vect2 vect1 and vect2 can be any vector (non-normalized) """ v1x, v1y, v1z = vect1 v2x, v2y, v2z = vect2 # normalize input vectors norm = 1.0/sqrt(v1x*v1x + v1y*v1y + v1z*v1z ) v1x *= norm v1y *= norm v1z *= norm norm = 1.0/sqrt(v2x*v2x + v2y*v2y + v2z*v2z ) v2x *= norm v2y *= norm v2z *= norm # compute cross product and rotation axis cx = v1y*v2z - v1z*v2y cy = v1z*v2x - v1x*v2z cz = v1x*v2y - v1y*v2x # normalize nc = sqrt(cx*cx + cy*cy + cz*cz) if nc==0.0: return [ [1., 0., 0., 0.], [0., 1., 0., 0.], [0., 0., 1., 0.], [0., 0., 0., 1.] ] cx /= nc cy /= nc cz /= nc # compute angle of rotation if nc<0.0: if i is not None: print 'truncating nc on step:', i, nc nc=0.0 elif nc>1.0: if i is not None: print 'truncating nc on step:', i, nc nc=1.0 alpha = asin(nc) if (v1x*v2x + v1y*v2y + v1z*v2z) < 0.0: alpha = pi - alpha # rotate about nc by alpha # Compute 3x3 rotation matrix ct = cos(alpha) ct1 = 1.0 - ct st = sin(alpha) rot = [ [0., 0., 0., 0.], [0., 0., 0., 0.], [0., 0., 0., 0.], [0., 0., 0., 0.] ] rv2x, rv2y, rv2z = cx*cx, cy*cy, cz*cz rv3x, rv3y, rv3z = (1.0-rv2x)*ct, (1.0-rv2y)*ct, (1.0-rv2z)*ct rot[0][0] = rv2x + rv3x rot[1][1] = rv2y + rv3y rot[2][2] = rv2z + rv3z rot[3][3] = 1.0; rv4x, rv4y, rv4z = cx*st, cy*st, cz*st rot[0][1] = cx * cy * ct1 - rv4z rot[1][2] = cy * cz * ct1 - rv4x rot[2][0] = cz * cx * ct1 - rv4y rot[1][0] = cx * cy * ct1 + rv4z rot[2][1] = cy * cz * ct1 + rv4x rot[0][2] = cz * cx * ct1 + rv4y return rot def mat_to_quat(matrix,transpose=1): """ takes a four by four matrix (optionally with shape (16,) and converts it into the axis of rotation and angle to rotate by (x,y,z,theta). It does not expect an OpenGL style, transposed matrix, so is consistent with rotax """ if N.shape(matrix) not in ((16,),(4,4)): raise ValueError("Argument must Numeric array of shape (4,4) or (16,)") if N.shape(matrix) == (4, 4): matrix = N.reshape(matrix,(16,)) cofactor1 = matrix[5]*matrix[10] - matrix[9]*matrix[6] cofactor2 = matrix[8]*matrix[6] - matrix[4]*matrix[10] cofactor3 = matrix[4]*matrix[9] - matrix[8]*matrix[5] det = matrix[0]*cofactor1 + matrix[1]*cofactor2 + matrix[2]*cofactor3 if not (0.999 < det < 1.001): print "Not a unit matrix: so not a pure rotation" print 'Value of Determinant is: ',det trace = matrix[0] + matrix[5] + matrix[10] + matrix[15] if trace > 0.0000001:# rotation other than 180deg S = 0.5/sqrt(trace) Qw = 0.25/S Qx = (matrix[9]-matrix[6])*S Qy = (matrix[2]-matrix[8])*S Qz = (matrix[4]-matrix[1])*S else: #180deg rotation, just need to figure out the axis Qw = 0. diagonal = ((matrix[0],0), (matrix[5],5), (matrix[10],10)) idx = max(diagonal)[1] if idx == 0: S = sqrt(1.0 + matrix[0] - matrix[5] - matrix[10])*2 Qy = (matrix[1] + matrix[4] ) / S Qz = (matrix[2] + matrix[8] ) / S Qx = N.sqrt(1-Qy*Qy-Qz*Qz) elif idx==5: S = sqrt( 1.0 + matrix[5] - matrix[0] - matrix[10] )*2 Qx = (matrix[1] + matrix[4] ) / S Qz = (matrix[6] + matrix[9] ) / S Qy = N.sqrt(1-Qx*Qx-Qz*Qz) elif idx==10: S = sqrt( 1.0 + matrix[10] - matrix[0] - matrix[5] )*2 Qx = (matrix[2] + matrix[8] ) / S Qy = (matrix[6] + matrix[9] ) / S Qz = N.sqrt(1-Qx*Qx-Qy*Qy) # check if identity or not if Qw != 1.: angle = N.arccos(Qw) theta = angle*360./N.pi Z = sqrt(Qx*Qx + Qy*Qy + Qz*Qz) if transpose: Qx = -Qx/Z Qy = -Qy/Z Qz = -Qz/Z else: Qx = Qx/Z Qy = Qy/Z Qz = Qz/Z Qw = theta return [Qx,Qy,Qz,Qw] else: return [0.,0.,0.,0.] def inverse4X4(matrix): """ returns the inverse of the given 4x4 transformation matrix t_1: the negetive of Translation vector r_1: the inverse of rotation matrix inversed transformation is 1) t_1 applied first 2) then r_1 is applied to validate the result, N.dot(matrix, mat_inverse)==N.identity(4,'f') """ # check the shape if matrix.shape !=(4,4) and matrix.shape !=(16,) : raise ValueError("Argument must Numeric array of shape (4,4) or (16,)") return None if matrix.shape ==(16,): matrix=N.array(matrix,'f') matrix=N.reshape(matrix,(4,4)) # force the matrix to be (4,4) t_1=N.identity(4,'f') t_1[:2,3]= - matrix[:2, 3] r_1=N.identity(4,'f') r_1[:3,:3] = N.transpose(matrix[:3,:3]) mat_inverse=N.dot(r_1, t_1) #asert N.dot(matrix, mat_inverse) is N.identity(4,'f') return mat_inverse def mat_to_axis_angle( matrix ): """ NOTE: This function is added by Yong 2/01/04: given a 4x4 transformation matrix of hinge motion, now returns the rotation angle and axis (defined by vector and a point) Please be noticed that if the motion is not hinge, the function will complain and return none """ if matrix.shape != (16,) and matrix.shape != (4,4): raise ValueError("matrix should be of shape (4,4) or (16,)") return None if matrix.shape == (16,): matrix = N.reshape(matrix, (4,4)) from math import sin, cos, pi, sqrt, fabs, acos degtorad = pi/180. transf = matrix from mglutil.math.rotax import mat_to_quat rotMat = N.identity(4, 'f') rotMat[:3,:3] = transf[:3,:3] qB = mat_to_quat(matrix=N.array(rotMat).ravel()) angle = qB[3] sa=sin(angle*degtorad/2.0) if(fabs(angle) < 0.0005): sa = 1 if angle > 180.: vector=[-qB[0]/sa, -qB[1]/sa, -qB[2]/sa] else: vector=[qB[0]/sa, qB[1]/sa, qB[2]/sa] tranMat = transf[3,:3] # check if the transformation is a hinge motion a=vector b=tranMat c =[a[0]-b[0], a[1]-b[1], a[2]-b[2]] a2= a[0]*a[0] + a[1]*a[1] + a[2]*a[2] b2= b[0]*b[0] + b[1]*b[1] + b[2]*b[2] c2= c[0]*c[0] + c[1]*c[1] + c[2]*c[2] theta = acos((c2-a2-b2)/(2* sqrt(a2*b2))) / pi * 180 if fabs(theta -90) > 1e-4: raise ValueError("The given transformation is not a hinge motion") return None, None, None ratio = sqrt( 1. / (2. * (1.- cos(degtorad * angle )))) p = [tranMat[0]*ratio, tranMat[1]*ratio, tranMat[2]*ratio] ang = 90. - angle/2.0 rot = rotax([0.,0.,0.], vector, ang*degtorad, transpose=1) rot = rot[:3,:3] point = N.dot(p, rot) return vector, point, angle def interpolate3DTransform(matrixList, indexList, percent): """ This function gets input of two list and a percent value. Return value is a 4x4 matrix corresponding to percent% of the transformation. matrixList: a list of 4x4 transformation matrix indexList : a list of sorted index (positive float number) percent : a positive float number. if only one matrix in the matrix list: percent = 0.0 means no transformation (identity) 1.0 means 100% of the transformation (returns mat) 0.58 means 58% of translation and rotatetion 58% of rotation angle along the same rotation axis percent can go above 1.0 If matrixList has more than one matrix: matrixList=[M1, M2, M3] #Attention: All M uses the same reference frame indexList =[0.2, 0.5, 1.0] #Attention: assume the list sorted ascendingly p = 0.5 means apply M2 p = 0.8 means apply M3 p = 0.9 means apply M2 first, then apply 50% of M'. M' is the transformation from M2 to M3. 50% = (0.9-0.8) / (1.0-0.8) M2 x M' = M3 --> M2.inverse x M2 x M'= M2.inverse x M3 --> M'= M2.inverse x M """ listLen = len(matrixList) if listLen != len(indexList): raise ValueError("matrix list should have same length of index list") if listLen == 0: raise ValueError("no matrix found in the matrix list") offset = -1 for i in range(listLen): if indexList[i] >= percent: offset = i break prevMat = nextMat = N.identity(4,'f') if offset == -1: prevMat = matrixList[-1] p = percent/indexList[-1] return _interpolateMat(matrixList[-1], p) elif offset == 0: nextMat = matrixList[0] p = percent/indexList[0] return _interpolateMat(N.array(matrixList[0]), p) else: prevMat = matrixList[offset-1] nextMat = matrixList[offset] p = (percent-indexList[offset-1])/( indexList[offset]-indexList[offset-1]) from numpy.oldnumeric.linear_algebra import inverse M = N.dot(inverse(prevMat), nextMat) Mat = _interpolateMat(M, p) return N.dot(prevMat, Mat) def interpolate3DTransform1(matrixList, indexList, percent): # MS version that does not assume identity as fist matrix and does # not wrap around if percent <= indexList[0]: return matrixList[0] if percent >=indexList[-1]: return matrixList[-1] listLen = len(indexList) for i in range(listLen): if indexList[i] > percent: break prevMat = matrixList[i-1] nextMat = matrixList[i] from numpy.oldnumeric.linear_algebra import inverse M = N.dot(inverse(prevMat), nextMat) p = (percent-indexList[i-1]) / (indexList[i]-indexList[i-1]) Mat = _interpolateMat(M, p) return N.dot(prevMat, Mat) def _interpolateMat(mat, percent): """ called only by interpolate3DTransform() """ if mat.shape != (16,) and mat.shape != (4,4): raise ValueError("matrix should be of shape (4,4) or (16,)") return None if mat.shape == (16,): mat = N.reshape(mat, (4,4)) # if percent <0.0: # raise ValueError('The parameter percent should be a positive float"') # return p = percent transf = mat[:,:] rotMat = N.identity(4, 'f') rotMat[:3,:3]=transf.astype(N.Float32)[:3,:3] from mglutil.math.rotax import mat_to_quat quat = mat_to_quat(matrix=N.array(rotMat).ravel()) angle = quat[3] * p newRotMat = rotax([0.,0.,0.], quat[:3], angle*degtorad, transpose = 1) newTranMat = N.identity(4, 'f') newTranMat[3][0] = transf[3][0]*p newTranMat[3][1] = transf[3][1]*p newTranMat[3][2] = transf[3][2]*p transform = newRotMat transform[3][0] = newTranMat[3][0] transform[3][1] = newTranMat[3][1] transform[3][2] = newTranMat[3][2] # That's it.. the self.transform is now updated. return transform mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/rigidFit.py0000644000175000017500000002204210651433500023424 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ############################################################################# # # Author: Sophie I. COON, William LINDSTROM, Michel F. SANNER # # Copyright: M. Sanner TSRI 2000 # ############################################################################# import numpy.oldnumeric as Numeric, math import numpy.oldnumeric.linear_algebra as LinearAlgebra from mglutil.math.rmsd import RMSDCalculator class RigidfitBodyAligner: """ This class implements a set of method to compute transformation matrices to superimpose a set of mobile coordinates onto a set of reference coordinates, apply the resulting transformation matrices to a given set of coordinates and finally compute the RMSD and the distance vectors between the set of reference coordinates and a given set of coordinates transformed by the computed transformation matrices. """ def __init__(self, refCoords=None): """The constructor of the rigidfitBodyAligner takes one required argument: refCoords: cartesian coordinates of reference structure (3,n) (input) This method creates: self.superimposed: flag when set to 1 the transformation matrices to superimpose a mobile set of coordinates onto the reference coords have been computed. self.rmsdCalculator: instance of the RMSDCalculator class that computes the rmsd between two lists of coordinates. This object will be used by the rmsdAfterSuperimposition method. """ self.refCoords = refCoords self.superimposed = 0 self.rmsdCalculator = RMSDCalculator() def setRefCoords(self, refCoords): """ The setRefCoords method allows you to lists the reference coordinates.""" self.refCoords = refCoords # New set of ref coords so set the flag back to 0: self.superimposed = 0 def rigidFit(self, mobileCoords): """ the rigidFit method computes the necessary transformation matrices to superimpose the list of mobileCoords onto the list of referenceCoords, and stores the resulting matrices (rot, trans) <- rigidFit(mobileCoords) Rigid body fit. Finds transformation (rot,trans) such that r.m.s dist(x,rot*y+trans) --> min ! mobileCoords: cartesian coordinates of mobile structure (3,n) (input) rot : rotation matrix (3,3) (output) trans : translation vector (3) (output) status: 0 if OK, 1 if singular problem (n<3 ...) Method: W.Kabsch, Acta Cryst. (1976). A32,922-923 W.Kabsch, Acta Cryst. (1978). A34,827-828 """ if self.refCoords is None: raise RuntimeError(" no reference coordinates specified") refCoords = self.refCoords if len(refCoords) != len(mobileCoords): raise RuntimeError("input vector length mismatch") refCoords = Numeric.array(refCoords) mobileCoords = Numeric.array(mobileCoords) # # 1. Compute centroids: refCentroid = Numeric.sum(refCoords)/ len(refCoords) mobileCentroid = Numeric.sum(mobileCoords)/ len(mobileCoords) # # 2. Wolfgang Kabsch's method for rotation matrix rot: rot = Numeric.identity(3).astype('f') # LOOK how to modify that code. for i in xrange(3): for j in xrange(3): rot[j][i] = Numeric.sum((refCoords[:,i]-refCentroid[i])* (mobileCoords[:,j]-mobileCentroid[j])) rotTransposed = Numeric.transpose(rot) e = Numeric.dot(rot, rotTransposed) evals, evecs = LinearAlgebra.eigenvectors(e) ev = Numeric.identity(3).astype('d') # set ev[0] to be the evec or the largest eigenvalue # and ev[1] to be the evec or the second largest eigenvalue eigenValues = list(evals) discard = eigenValues.index(min(eigenValues)) i = j =0 while i<3: if i==discard: i = i + 1 continue ev[j] = evecs[i] j = j + 1 i = i + 1 evecs = ev evecs[2][0] = evecs[0][1]*evecs[1][2] - evecs[0][2]*evecs[1][1] evecs[2][1] = evecs[0][2]*evecs[1][0] - evecs[0][0]*evecs[1][2] evecs[2][2] = evecs[0][0]*evecs[1][1] - evecs[0][1]*evecs[1][0] b = Numeric.dot(evecs, rot) norm = math.sqrt(b[0][0]*b[0][0] + b[0][1]*b[0][1] + b[0][2]*b[0][2]) if math.fabs(norm)<1.0e-20: return -1, -1 b[0] = b[0]/norm norm = math.sqrt(b[1][0]*b[1][0] + b[1][1]*b[1][1] + b[1][2]*b[1][2]) if math.fabs(norm)<1.0e-20: return -1, -1 b[1] = b[1]/norm # vvmult(b[0],b[1],b[2]) b[2][0] = b[0][1]*b[1][2] - b[0][2]*b[1][1] b[2][1] = b[0][2]*b[1][0] - b[0][0]*b[1][2] b[2][2] = b[0][0]*b[1][1] - b[0][1]*b[1][0] # mtrans3(e) e = evecs tempo=e[0][1]; e[0][1]=e[1][0]; e[1][0]=tempo tempo=e[0][2]; e[0][2]=e[2][0]; e[2][0]=tempo tempo=e[1][2]; e[1][2]=e[2][1]; e[2][1]=tempo # mmmult3(b,e,rot) rot[0][0] = b[0][0]*e[0][0] + b[1][0]*e[0][1] + b[2][0]*e[0][2] rot[0][1] = b[0][1]*e[0][0] + b[1][1]*e[0][1] + b[2][1]*e[0][2] rot[0][2] = b[0][2]*e[0][0] + b[1][2]*e[0][1] + b[2][2]*e[0][2] rot[1][0] = b[0][0]*e[1][0] + b[1][0]*e[1][1] + b[2][0]*e[1][2] rot[1][1] = b[0][1]*e[1][0] + b[1][1]*e[1][1] + b[2][1]*e[1][2] rot[1][2] = b[0][2]*e[1][0] + b[1][2]*e[1][1] + b[2][2]*e[1][2] rot[2][0] = b[0][0]*e[2][0] + b[1][0]*e[2][1] + b[2][0]*e[2][2] rot[2][1] = b[0][1]*e[2][0] + b[1][1]*e[2][1] + b[2][1]*e[2][2] rot[2][2] = b[0][2]*e[2][0] + b[1][2]*e[2][1] + b[2][2]*e[2][2] # # Compute translation vector trans: # mvmult3(rot,cy,cy); trans3 = [0, 0, 0] for i in range(3): trans3[i] = mobileCentroid[0]*rot[0][i] + mobileCentroid[1]*rot[1][i] + \ mobileCentroid[2]*rot[2][i] #bcopy(t3,cy,sizeof(t3)); #vvdiff(cx,cy,trans); trans = ( refCentroid[0]-trans3[0], refCentroid[1]-trans3[1], refCentroid[2]-trans3[2] ) # # That's it... self.rotationMatrix = rot self.translationMatrix = trans self.superimposed = 1 def transformCoords(self, setCoords): """ The transformCoords method applies the transformation matrices computed by rigidFit method to the given list of coordinates. """ # This can only be done if the transformation matrices have been computed # by the rigidFit method. if not self.superimposed: return # 1- apply the rotation and the translation matrix to the given set of coords. transfoMatrix = Numeric.identity(4, 'd') transfoMatrix[:3,:3] = self.rotationMatrix transfoMatrix[3][0] = self.translationMatrix[0] transfoMatrix[3][1] = self.translationMatrix[1] transfoMatrix[3][2] = self.translationMatrix[2] # 2- now apply the transformation to the list of given coordinates list: # make homogeneous coords homoCoords = Numeric.concatenate((setCoords, Numeric.ones( (len(setCoords), 1), 'd')), 1) # 3- apply the transformation matrix to the homogeneous coords. transformedCoords = Numeric.dot(homoCoords, transfoMatrix) return transformedCoords def rmsdAfterSuperimposition(self, setCoords): """ The computeRMSD method computes the overall root mean square distance (rmsd) and also the distance between each pair of points (distVect) between the refCoords and the given list of Coords. The transformation matrices will be applied to the given list of coords.""" if not self.superimposed: return transformedCoords = self.transformCoords(setCoords) self.rmsdCalculator.setRefCoords(self.refCoords) #return self.rmsdCalculator.computeRMSD(setCoords) return self.rmsdCalculator.computeRMSD(transformedCoords[:,:3].tolist()) if __name__ == '__main__': import numpy.oldnumeric as Numeric a = [ [ 2.92666, -5.8288, 4.7963 ], [ 3.4784 , -7.6197, 4.9499 ], [-10.6508, -4.7754, 1.1695 ], [ -9.4381, -4.5545, 1.18 ] ] b = [ [-10.6508, -4.7754, 1.1695 ], [ -9.4381, -4.5545, 1.18 ], [ 2.9266, -5.8288, 4.7963], [ 3.4784, -7.6197, 4.9499] ] a = [ [ 0., 0., 0. ], [ 10., 0., 0. ], [ 0., 10., 0. ], [ 0., 0., 10. ] ] b = [ [ 0., 0., 0. ], [ 10., 0., 0. ], [ 0., 0., -10. ], [ 0., 10., 0. ] ] #o = RigidfitBodyAligner(a) #o.rigidFit(b) #print o.rotationMatrix #print o.translationMatrix #[[-0.91369569 -0.13739982 -0.38240376] # [-0.13729294 -0.7812196 0.60899734] # [-0.38244215 0.60897326 0.69491529]] #(-6.17204211132, -12.4548639806, 3.08235584151) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/kmeansClustering.py0000644000175000017500000001164711442747135025225 0ustar debiandebianimport random import numpy from math import sqrt # -- The Point class represents points in n-dimensional space class Point: # Instance variables # self.coords is a list of coordinates for this Point # self.n is the number of dimensions this Point lives in (ie, its space) # self.reference is an object bound to this Point # Initialize new Points def __init__(self, coords, reference=None): self.coords = coords self.n = len(coords) self.reference = reference # Return a string representation of this Point def __repr__(self): return str(self.coords) # -- The Cluster class represents clusters of points in n-dimensional space class Cluster: # Instance variables # self.points is a list of Points associated with this Cluster # self.n is the number of dimensions this Cluster's Points live in # self.centroid is the sample mean Point of this Cluster def __init__(self, points): # We forbid empty Clusters (they don't make mathematical sense!) if len(points) == 0: raise Exception("ILLEGAL: EMPTY CLUSTER") self.points = points self.n = points[0].n # We also forbid Clusters containing Points in different spaces # Ie, no Clusters with 2D Points and 3D Points for p in points: if p.n != self.n: raise Exception("ILLEGAL: MULTISPACE CLUSTER") # Figure out what the centroid of this Cluster should be self.centroid = self.calculateCentroid() # Return a string representation of this Cluster def __repr__(self): return str(self.points) # Update function for the K-means algorithm # Assigns a new list of Points to this Cluster, returns centroid difference def update(self, points): old_centroid = self.centroid self.points = points self.centroid = self.calculateCentroid() x1,y1,z1 = old_centroid.coords x2,y2,z2 = self.centroid.coords return sqrt( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) + (z1-z2)*(z1-z2) ) # Calculates the centroid Point - the centroid is the sample mean Point # (in plain English, the average of all the Points in the Cluster) def calculateCentroid(self): centroid_coords = [] # For each coordinate: for i in range(self.n): # Take the average across all Points centroid_coords.append(0.0) for p in self.points: centroid_coords[i] = centroid_coords[i]+p.coords[i] centroid_coords[i] = centroid_coords[i]/len(self.points) # Return a Point object using the average coordinates return Point(centroid_coords) def radiusOfGyration(self): ptCoords = [x.coords for x in self.points] delta = numpy.array(ptCoords)-self.centroid.coords rg = sqrt( sum( numpy.sum( delta*delta, 1))/float(len(ptCoords)) ) return rg def encapsualtingRadius(self): ptCoords = [x.coords for x in self.points] delta = numpy.array(ptCoords)-self.centroid.coords rM = sqrt( max( numpy.sum( delta*delta, 1)) ) return rM # -- Return Clusters of Points formed by K-means clustering def kmeans(points, k, cutoff, initial=None): # Randomly sample k Points from the points list, build Clusters around them if initial is None: # Randomly sample k Points from the points list, build Clusters around them initial = random.sample(points, k) else: assert len(initial)==k clusters = [] for p in initial: clusters.append(Cluster([p])) # Enter the program loop while True: # Make a list for each Cluster lists = [] for c in clusters: lists.append([]) # For each Point: for p in points: # Figure out which Cluster's centroid is the nearest x1,y1,z1 = p.coords x2,y2,z2 = clusters[0].centroid.coords smallest_distance = sqrt( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) + (z1-z2)*(z1-z2) ) index = 0 for i in range(len(clusters[1:])): x2,y2,z2 = clusters[i+1].centroid.coords distance = sqrt( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) + (z1-z2)*(z1-z2) ) if distance < smallest_distance: smallest_distance = distance index = i+1 # Add this Point to that Cluster's corresponding list lists[index].append(p) # Update each Cluster with the corresponding list # Record the biggest centroid shift for any Cluster biggest_shift = 0.0 for i in range(len(clusters)): if len(lists[i]): shift = clusters[i].update(lists[i]) biggest_shift = max(biggest_shift, shift) # If the biggest centroid shift is less than the cutoff, stop if biggest_shift < cutoff: break # Return the list of Clusters return clusters mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/Tests/0000755000175000017500000000000012146210175022415 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/Tests/test_superimpose.py0000644000175000017500000000141110651433500026374 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by from mglutil.regression import testplus from mglutil.math.rotax import interpolate3DTransform, rotax #from math import pi, sin, cos, sqrt import numpy.oldnumeric as N #degtorad = pi/180. def diff(res, expect): return res-expect < 1.0e-6 # close enough -> true def test_superimpose(): from mglutil.math.rigidFit import RigidfitBodyAligner rigidfitAligner = RigidfitBodyAligner() refCoords=[[0,0,0] , [1,0,0], [0,1,0], [0,0,1]] mobCoords=[[10,0,0] , [11,0,0], [10,1,0], [10,0,1]] rigidfitAligner.setRefCoords(refCoords) rigidfitAligner.rigidFit(mobCoords) rmsd=rigidfitAligner.rmsdAfterSuperimposition(mobCoords) assert diff(rmsd, 0.0 ) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/Tests/__init__.py0000644000175000017500000000003711607117176024536 0ustar debiandebianignore = {'test_matToAxis':[]} mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/Tests/test_interpolate.py0000644000175000017500000000344610651433500026361 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # # #$Id: test_interpolate.py,v 1.4 2007/07/24 17:30:40 vareille Exp $ from mglutil.math.rotax import interpolate3DTransform, rotax from math import pi, sin, cos, sqrt import numpy.oldnumeric as N import unittest degtorad = pi/180. class Interpolate3DBaseTest(unittest.TestCase): def diff(self,res, expect): return res-expect < 1.0e-6 # close enough -> true def test_interpolate3D(self): mat1=rotax([0,0,0], [0,0,1],30.0*degtorad) mat2=rotax([0,0,0], [0,0,1],60.0*degtorad) mat3=rotax([0,0,0], [0,0,1],90.0*degtorad) # add translation (0,1,0) to mat2 mat2 = N.array([ [ 0.5 , 0.86602539, 0. , 0. ], [-0.86602539, 0.5 , 0. , 0. ], [ 0. , 0. , 1. , 0. ], [ 0. , 1. , 0. , 1. ]],'f') matList=[mat1, mat2, mat3] indexList = [0.33333333, 0.66666666667, 1.0] data = [[0.,0.,0.,1.],[1.0, 0.0, 0.0,1.0],[2.,0.,0.,1.]] p=0.5 M = interpolate3DTransform(matList, indexList, p) res=N.dot(data, M)[1] self.assertEqual( self.diff(res[0], 0.70710677 ),True) self.assertEqual(self.diff(res[1], 1.20710677 ),True) # 50% translation along Y axis self.assertEqual(self.diff(res[2], 0.0),True) p=1.5 M = interpolate3DTransform(matList, indexList, p) res=N.dot(data, M)[1] self.assertEqual(self.diff(res[0], -0.70710677 ),True) self.assertEqual(self.diff(res[1], 0.70710677 ),True) self.assertEqual(self.diff(res[2], 0.0),True) if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/Tests/test_matToAxis.py0000644000175000017500000000272210651433500025740 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by from mglutil.regression import testplus from FlexTree.FTMotions import FTMotion_RotationAboutAxis, FTMotion_Hinge import numpy.oldnumeric as Numeric def diff(res, expect): return res-expect < 1.0e-6 # close enough -> true def rotateObject(): from mglutil.math.rotax import rotax from math import sin, cos, pi, sqrt, fabs import numpy.oldnumeric as N import random degtorad = pi/180. point1 = [random.random()*8-4, random.random()*8-4.,random.random()*10-5] point2 = [random.random()*8-4, random.random()*8-4.,random.random()*10-5.] angle = random.random()*360. transf = rotax(point1, point2, angle*degtorad, transpose=1) from mglutil.math.rotax import mat_to_axis_angle vector , pp, angle = mat_to_axis_angle(transf) from FlexTree.FTMotions import FTMotion_Hinge motion = FTMotion_Hinge(axis={'vector':vector,'point':pp}) motion.configure(angle=angle) m1=Numeric.array(motion.getMatrix()).ravel() m2=transf.ravel() bSame = True for i in range(len(m1)): if fabs(m1[i]-m2[i]) > 1e-4: bSame = False assert (bSame, True) def test_rotateObject(): for i in range(10): rotateObject() harness = testplus.TestHarness( __name__, funs = testplus.testcollect( globals()), ) if __name__ == '__main__': print harness sys.exit( len( harness)) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/ncoordstest.py0000644000175000017500000000665710651433500024250 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # Last modified on Tue Sep 4 17:02:59 PDT 2001 by lindy # # $Header: /opt/cvs/python/packages/share1.5/mglutil/math/ncoordstest.py,v 1.2 2007/07/24 17:30:40 vareille Exp $ # """Unit test for ncoords.py Requirements for ncoords.py: A. __init__: 1. make Numeric, homogenious coordinates out of refCoords 2. raise ValueError if refCoords is bad B. reset(): 3. nx3 slice of resultCoords must be equal to refCoords C. getResultCoords: 4. return nx3 (not nx4) coordinates 5. return as Numeric.array or ListType accorinding to self.tolist """ from mglutil.math.ncoords import Ncoords import unittest, math import numpy.oldnumeric as Numeric, numpy.oldnumeric.random_array as RandomArray class NcoordsTest(unittest.TestCase): def setUp(self): """Called for every test.""" npts = 500 dim = 3 self.max = 9999999. self.min = -self.max self.random_points = RandomArray.uniform(self.min, self.max, (npts,dim)).tolist() def tearDown(self): pass class InputOutputValues(NcoordsTest): def test_constructor_shape(self): """__init__ -- make refCoords and resultCoords homogeneous""" n = len(self.random_points) ncoords = Ncoords( self.random_points) ### tested call ### # confirm shape to be nx4 self.assertEqual( (n, 4), Numeric.shape(ncoords.resultCoords)) self.assertEqual( (n, 4), Numeric.shape(ncoords.refCoords)) # cofirm that the last column is all ones self.assertEqual(Numeric.ones(n).tolist(), ncoords.resultCoords[:,3].tolist()) self.assertEqual(Numeric.ones(n).tolist(), ncoords.refCoords[:,3].tolist()) def test_input_error(self): """__init__ -- ValueError on bad input""" self.assertRaises(ValueError, Ncoords, range(10)) self.assertRaises(ValueError, Ncoords, [(1,1,1),(1,1)] ) def test_reset_values(self): """reset -- points equal input values after reset""" nc = Ncoords( self.random_points, tolist=1) nc.reset() ### tested call ### result = nc.getResultCoords() # compare input and output point lists self.assertEqual( self.random_points, result) def test_getResultCoords_shape(self): """getResultCoords -- if tolist: return nx3 ListType""" n = len(self.random_points) nc = Ncoords(self.random_points, tolist=0) nc.tolist=1 result = nc.getResultCoords() ### tested call ### # confirm shape self.assertEqual((n, 3), Numeric.shape(result)) # confirm type self.assertEqual(type([]), type(result)) def test_getResultCoords_type(self): """getResultCoords -- if not tolist: return nx4 Numeric.array""" n = len(self.random_points) nc = Ncoords(self.random_points, tolist=1) nc.tolist=0 result = nc.getResultCoords() ### tested call ### # confirm shape self.assertEqual((n, 4), Numeric.shape(result)) # confirm type self.assertEqual(type(Numeric.array([])), type(result)) if __name__ == '__main__': unittest.main() # for example: # py mglutil/math/ncoordstest.py -v # or, to redirect output to a file: # py ncoordstest.py -v > & ! /tmp/nct.out mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/__init__.py0000644000175000017500000000165610651433500023432 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by import numpy.oldnumeric as Numeric N=Numeric import types def crossProduct (A, B, normal=True): """ Return cross product of two vectors A and B normal: return normalized vector """ res=[ A[1]*B[2] - A[2]*B[1], A[2]*B[0] - A[0]*B[2], A[0]*B[1] - A[1]*B[0] ] if normal: return norm(res) else: return res def norm (A): """ Return normalized vector A. """ if type(A) == types.ListType: A=Numeric.array(A,'f') res= A/Numeric.sqrt(Numeric.dot(A,A)) return res.tolist() elif type(A)==Numeric.ArrayType: return A/Numeric.sqrt(Numeric.dot(A,A)) else: print "Need a list or Numeric array" return None def getCenter(coords): """ get center of all the coords """ coords=N.array(coords, 'f') return (N.sum(coords)/len(coords)).tolist() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/stats.py0000644000175000017500000000140010653430321023014 0ustar debiandebianimport warnings def stats(values): """returns the mimn, max, mean and standard deviation of a list of values""" warnings.warn( "\n\nWARNING!! This function has been deprecated!!\n \ Use the stats in Volume/Grid3D.py\n",DeprecationWarning,2) npts = len(values) if npts: from math import sqrt sum = 0.0 sumsq = 0.0 mini = maxi = values[0] for v in values: sum += v sumsq += float(v)*float(v) if vmaxi: maxi = v mean = float(sum)/npts stdev = sqrt(( sumsq - (sum*sum/float(npts)))/(npts-1)) return mini, maxi, mean, stdev else: return (0., 0., 1., 1.) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/VectorModule.py0000644000175000017500000001416610651433500024303 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ## Copyright 1997-1999 by Konrad Hinsen, except as noted below. ## Permission to use, copy, modify, and distribute this software and its ## documentation for any purpose and without fee is hereby granted, ## provided that the above copyright notice appear in all copies and that ## both that copyright notice and this permission notice appear in ## supporting documentation. ## THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, ## INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO ## EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR ## CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF ## USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR ## OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ## PERFORMANCE OF THIS SOFTWARE. # This module defines 3d geometrical vectors with the standard # operations on them. The elements are stored in an # array. # # Written by: Konrad Hinsen # Last revision: 1999-7-23 # _undocumented = 1 import numpy.oldnumeric as Numeric, types import TensorModule class Vector: """Vector in 3D space Constructor: - Vector(|x|, |y|, |z|) (from three coordinates) - Vector(|coordinates|) (from any sequence containing three coordinates) Vectors support the usual arithmetic operations ('v1', 'v2': vectors, 's': scalar): - 'v1+v2' (addition) - 'v1-v2' (subtraction) - 'v1*v2' (scalar product) - 's*v1', 'v1*s' (multiplication with a scalar) - 'v1/s' (division by a scalar) The three coordinates can be extracted by indexing. Vectors are *immutable*, i.e. their elements cannot be changed. Vector elements can be any objects on which the standard arithmetic operations plus the functions sqrt and arccos are defined. """ is_vector = 1 def __init__(self, x=None, y=None, z=None): if x is None: self.array = [0.,0.,0.] elif y is None and z is None: self.array = x else: self.array = [x,y,z] self.array = Numeric.array(self.array) def __getstate__(self): return list(self.array) def __setstate__(self, state): self.array = Numeric.array(state) def __copy__(self, memo = None): return self __deepcopy__ = __copy__ def __repr__(self): return 'Vector(%s,%s,%s)' % (`self.array[0]`,\ `self.array[1]`,`self.array[2]`) def __str__(self): return `list(self.array)` def __add__(self, other): return Vector(self.array+other.array) __radd__ = __add__ def __neg__(self): return Vector(-self.array) def __sub__(self, other): return Vector(self.array-other.array) def __rsub__(self, other): return Vector(other.array-self.array) def __mul__(self, other): if isVector(other): return Numeric.add.reduce(self.array*other.array) elif TensorModule.isTensor(other): product = TensorModule.Tensor(self.array).dot(other) if product.rank == 1: return Vector(product.array) else: return product elif hasattr(other, "_product_with_vector"): return other._product_with_vector(self) else: return Vector(Numeric.multiply(self.array, other)) def __rmul__(self, other): if TensorModule.isTensor(other): product = other.dot(TensorModule.Tensor(self.array)) if product.rank == 1: return Vector(product.array) else: return product else: return Vector(Numeric.multiply(self.array, other)) def __div__(self, other): if isVector(other): raise TypeError, "Can't divide by a vector" else: return Vector(Numeric.divide(self.array,1.*other)) def __rdiv__(self, other): raise TypeError, "Can't divide by a vector" def __cmp__(self, other): return cmp(Numeric.add.reduce(abs(self.array-other.array)), 0) def __len__(self): return 3 def __getitem__(self, index): return self.array[index] def x(self): "Returns the x coordinate." return self.array[0] def y(self): "Returns the y coordinate." return self.array[1] def z(self): "Returns the z coordinate." return self.array[2] def length(self): "Returns the length (norm)." return Numeric.sqrt(Numeric.add.reduce(self.array*self.array)) def normal(self): "Returns a normalized copy." len = Numeric.sqrt(Numeric.add.reduce(self.array*self.array)) if len == 0: raise ZeroDivisionError, "Can't normalize a zero-length vector" return Vector(Numeric.divide(self.array, len)) def cross(self, other): "Returns the cross product with vector |other|." if not isVector(other): raise TypeError, "Cross product with non-vector" return Vector(self.array[1]*other.array[2] -self.array[2]*other.array[1], self.array[2]*other.array[0] -self.array[0]*other.array[2], self.array[0]*other.array[1] -self.array[1]*other.array[0]) def asTensor(self): "Returns an equivalent tensor object of rank 1." return TensorModule.Tensor(self.array, 1) def dyadicProduct(self, other): "Returns the dyadic product with vector or tensor |other|." if isVector(other): return TensorModule.Tensor(self.array, 1) * \ TensorModule.Tensor(other.array, 1) elif TensorModule.isTensor(other): return TensorModule.Tensor(self.array, 1)*other else: raise TypeError, "Dyadic product with non-vector" def angle(self, other): "Returns the angle to vector |other|." if not isVector(other): raise TypeError, "Angle between vector and non-vector" cosa = Numeric.add.reduce(self.array*other.array) / \ Numeric.sqrt(Numeric.add.reduce(self.array*self.array) * \ Numeric.add.reduce(other.array*other.array)) cosa = max(-1.,min(1.,cosa)) return Numeric.arccos(cosa) # Type check def isVector(x): "Return 1 if |x| is a vector." return hasattr(x,'is_vector') # Some useful constants ex = Vector(1,0,0) ey = Vector(0,1,0) ez = Vector(0,0,1) null = Vector(0.,0.,0.) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/transformationtest.py0000644000175000017500000001216510651433500025636 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # Last modified on Wed Aug 22 14:22:48 PDT 2001 by lindy # # $Header: /opt/cvs/python/packages/share1.5/mglutil/math/transformationtest.py,v 1.3 2007/07/24 17:30:40 vareille Exp $ # """Unit test for transformation.py Transformation.py defines three classes: Quaternion UnitQuaternion(Quaternion) Transformation(UnitQuaternion) """ from mglutil.math.transformation import UnitQuaternion, Quaternion from mglutil.math.transformation import Transformation import unittest #import numpy.oldnumeric as N import numpy.oldnumeric as Numeric N = Numeric import numpy.oldnumeric.random_array as RA import math # # Unit tests for the Quaternion class # class QuaternionTest(unittest.TestCase): def setUp(self): """The Quaternion class is tested through the UnitQuaternion class""" pass class UnitQuaternionTest(unittest.TestCase): def setUp(self): self.max = 999999999. self.min = -self.max class UnitQuaternionKnownValues(UnitQuaternionTest): ## theta = 360.0*RA.random() ## knownValues = ( ## # identity ## ((0., 0., 0., 0.), ( (1.0, 0.0, 0.0, 0.0), ## (0.0, 1.0, 0.0, 0.0), ## (0.0, 0.0, 1.0, 0.0), ## (0.0, 0.0, 0.0, 1.0))), ## # rotation about x ## ((0., 0., 0., 0.), ( (1.0, 0.0, 0.0, 0.0), ## (0.0, 1.0, 0.0, 0.0), ## (0.0, 0.0, 1.0, 0.0), ## (0.0, 0.0, 0.0, 1.0))), ## # rotation about y ## ((0., 0., 0., 0.), ( (1.0, 0.0, 0.0, 0.0), ## (0.0, 1.0, 0.0, 0.0), ## (0.0, 0.0, 1.0, 0.0), ## (0.0, 0.0, 0.0, 1.0))), ## # rotation about z ## ((0., 0., 0., 0.), ( (1.0, 0.0, 0.0, 0.0), ## (0.0, 1.0, 0.0, 0.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, 0.0, 0.0), ## (0.0, 1.0, 0.0, 0.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, 0.0, 0.0), ## (0.0, 1.0, 0.0, 0.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, 0.0, 0.0), ## (0.0, 1.0, 0.0, 0.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, 0.0, 0.0), ## (0.0, 1.0, 0.0, 0.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, 0.0, 0.0), ## (0.0, 1.0, 0.0, 0.0), ## (0.0, 0.0, 1.0, 0.0), ## (0.0, 0.0, 0.0, 1.0)))) def tearDown(self): pass def testKnown00(self): """""" pass class UnitQuaternionProperties(UnitQuaternionTest): def testProperties00(self): """The product of the conjugate is the conjucate of the product""" q1 = Quaternion(tuple(RA.uniform(self.min, self.max, (1, 4)).tolist()[0])) q2 = Quaternion(tuple(RA.uniform(self.min, self.max, (1, 4)).tolist()[0])) ## pc = q1.conjugate()*q2.conjugate() ## qp = q1*q2 ## cp = qp.conjugate() ## self.assertEqual( pc, cp) # the commented code fails with the same error as this line... self.assertEqual( q1.conjugate()*q2.conjugate(), (q2*q1).conjugate()) def testProperties01(self): """The magnitudue of the product is the product of the magnitudes""" q1 = Quaternion(tuple(RA.uniform(self.min, self.max, (1, 4)).tolist()[0])) q2 = Quaternion(tuple(RA.uniform(self.min, self.max, (1, 4)).tolist()[0])) self.assertEqual((q1*q2).magnitude(), q1.magnitude()*q2.magnitude()) def testProperties02(self): """The conjugate of a unit quaternion is it's inverse""" q1 = Quaternion(tuple(RA.uniform(self.min, self.max, (1, 4)).tolist()[0])) self.assertEqual( q1.conjugate(), q1.inverse()) class TransformationTest(unittest.TestCase): def setUp(self): pass def tearDown(self): pass def test(self): pass if __name__ == '__main__': unittest.main() # for example: py mglutil/math/transformationtest.py -v mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/torsion.py0000644000175000017500000000257710651433500023373 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by #taken from Pmv/measureCommands.py def torsion( x1, x2, x3, x4): """ Compute the torsion angle between x1, x2, x3, x4. All coordinates are cartesian; result is in degrees. Raises a ValueError if angle is not defined. """ from math import sqrt, acos import numpy.oldnumeric as Numeric N=Numeric tang=0.0 x1 = N.array(x1, 'f') x2 = N.array(x2, 'f') x3 = N.array(x3, 'f') x4 = N.array(x4, 'f') assert x1.shape == (3, ) assert x2.shape == (3, ) assert x3.shape == (3, ) assert x4.shape == (3, ) a = x1-x2 b = x3-x2 c = vvmult(a, b) a = x2-x3 b = x4-x3 d = vvmult(a, b) dd=sqrt(Numeric.sum(c*c)) de=sqrt(Numeric.sum(d*d)) if dd<0.001 or de<0.001: raise ValueError ( 'Torsion angle undefined, degenerate points') vv = Numeric.dot(c, d) / (dd*de); if vv<1.0: tang=vv else: tang= 1.0 if tang<-1.0: tang=-1.0 tang = acos(tang) tang = tang*57.296 b = vvmult(c, d) if Numeric.dot(a, b) > 0.0: tang = -tang return tang def vvmult( a, b): """ Compute a vector product for 3D vectors """ import numpy.oldnumeric as Numeric res = Numeric.zeros(3, 'f') res[0] = a[1]*b[2] - a[2]*b[1] res[1] = a[2]*b[0] - a[0]*b[2] res[2] = a[0]*b[1] - a[1]*b[0] return res mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/statetocoords.py0000644000175000017500000001132011057333651024564 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # Last modified on Tue Apr 23 09:20:22 PDT 2002 by lindy # # $Header: /opt/cvs/python/packages/share1.5/mglutil/math/statetocoords.py,v 1.11 2008/09/02 22:01:13 gillet Exp $ # """statetocoords.py - state to coordinates The StateToCoords class inherits from Kinematics and Ncoords. The StateToCoords class handles transformations that apply to the rootNode of the torTree, changing the coordinates in world space. The Kinematics class handles those transformations that apply to the internal nodes to the torTree (ie. torsions) changing the coordinates in the molecules local coordinate system. """ import numpy.oldnumeric as Numeric, math from mglutil.math.transformation import Transformation from mglutil.math.kinematics import Kinematics class StateToCoords(Kinematics): def __init__(self, mol, origin, confIndex): Kinematics.__init__(self, mol.allAtoms.coords, mol.torTree, tolist=1) # this stoc object will leave always deposite it's coords # in the given confIndex slot. self.confIndex = confIndex mol.allAtoms.setConformation(confIndex) def __prepareNode(node, allAtoms, o): """Supply each node with atomSet, coords, and atomRange, Pre-compute and save the torsionUnitVector, Transform the coords to their local space by subtracting the origin """ atomSet = [] coords = [] for i in node.atomList: atom = allAtoms[i] atomSet.append(atom) # start with the original coordinates c = atom.coords # subract the origin coords.append((c[0]-o[0], c[1]-o[1], c[2]-o[2], 1.0)) node.atomSet = atomSet node.coords = coords node.atomRange = range(len(atomSet)) if node.bond[0] != None: # skip the root node node.a = allAtoms[node.bond[0]] node.b = allAtoms[node.bond[1]] # add atomSets to each node root = mol.torTree.rootNode root.pre_traverse(__prepareNode, root, mol.allAtoms, origin) def applyState(self, state): """ """ q = state.quaternion t = Numeric.array(state.translation) o = Numeric.array(state.origin) # construct rootNode transformation matrix #mtx = Transformation(t+o, q).getMatrix(transpose=1) # Corrected by AG 08/28/2008 mtx = Transformation(t, q).getMatrix().transpose() # apply the torsions self.applyAngList(state.torsions, mtx) def applyStateOld(self, state): """ """ q = state.quaternion t = Numeric.array(state.translation) o = Numeric.array(state.origin) # center the coordinates ## self.resultCoords = (self.resultCoords - ## Numeric.array([o[0], o[1], o[2], 0.0])) # center the coordinates (node-by-node) def __center(node, o): node.coords = node.coords - o root = self.torTree.rootNode root.pre_traverse(__center, root, Numeric.array([o[0], o[1], o[2], 0.0])) # construct rootNode transformation matrix mtx = Transformation(t+o, q).getMatrix(transpose=1) # apply the torsions coords = self.applyAngList(state.torsions, mtx) # must "reset" each nodes coords def __uncenter(node, o): node.coords = node.coords + o root.pre_traverse(__uncenter, root, Numeric.array([o[0], o[1], o[2], 0.0])) return coords def applyOrientation(self, q=(0.,0.,0.,0.), t=(0.,0.,0.), o=(0.,0.,0.)): """origin specifies where the local origin is in world coordinates (i.e., where is this object's origin in the world) """ # center the coordinates self.resultCoords = (self.resultCoords - Numeric.array([o[0], o[1], o[2], 0.0])) sum = Numeric.array(t) + Numeric.array(o) self.resultCoords = Transformation(sum, q).apply(self.resultCoords) return self.getResultCoords() def applyQuaternion(self, q, o=(0.,0.,0.)): """Apply the given quaterion. """ # center the coordinates self.resultCoords = (self.resultCoords - Numeric.array([o[0], o[1], o[2], 0.0])) self.resultCoords = Transformation(o, q).apply(self.resultCoords) return self.getResultCoords() def applyTranslation(self, t=(0., 0., 0.)): """Translate by (x, y, z) """ translation = Numeric.array([t[0], t[1], t[2], 0.0]) self.resultCoords = self.resultCoords + translation return self.getResultCoords() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/math/gridDescriptor.py0000644000175000017500000001304607473512574024674 0ustar debiandebianimport string, types, Numeric class ConstrainedParameterSet: def __init__(self): #conDict records constraints between parameters #key is parm1Name, name of parameter1 , #value is list of triples: (parm2Name, func, args) #changes in parm1 cause parm2 to be updated by func #eg: to enforce #self.center = 2*self.offset #so that changes in self.offset force changes in self.center #self.conDict['offset'] = [('center', Numeric.multiply, ('offset, 2.0'))] #to enforce the reciprocal constraint #so that changes in self.center force changes in self.offset #self.conDict['center'] = [('offset', Numeric.multiply, ('center,0.5'))] #suitable functions are Numeric.divide and Numeric.multiply #DO SOMETHING SO THIS DOESN'T GET into an endless loop # self.conDict = {} #rangeDict provides methods of checking validity #of a given value for key #possible types methods include: #list of discrete values, tuple defining valid range, a type #or a function which returns 1 if value is valid or 0 if not self.rangeDict = {} # values can be integers, floats, strings....??? self.typesList = [type(1), type(1.0), type('a')] def tie(self, parm1Name, parm2Name, func, args): #eg: # changes in self.center force changes in self.offset # self.tie('center','offset',Numeric.multiply,'center,2.0') if not self.conDict.has_key(parm1Name): self.conDict[parm1Name] = [] self.conDict[parm1Name].append((parm2Name, func, args)) #is this at all clear? #cD = self.conDict #cD[parm1Name] = cD.get(parm1Name, []).append((parm2Name, func, args)) def updateConstraints(self, parmName): #called when parm changes to update other linked parms conList = self.conDict.get(parmName, None) if not conList: # do nothing + return print 'no constraints on ', parmName return #conList has tuples (func, args) #eg: sample value in conList # (parm2Name, Numeric.multiply, (parmName, 0.5)) for parm2Name, func, args in conList: #FIX THIS: #to update self.parm2Name: # need to get (self.center, 0.5) from args='center, 0.5' setattr(self,parm2Name, apply(func, eval('self.'+args))) def untie(self, parm1Name, parm2Name, func, args): #eg: #g.untie('center','offset',Numeric.multiply,'center,2.0') conList = self.conDict.get(parm1Name, None) if not conList: print 'no constraints on ', parm1Name return "ERROR" if (parm2Name, func, args) not in conList: print '(%s,%s,%s) not in %s constraints'%(parm2Name, func, args, parm1Name) return "ERROR" self.conDict[parm1Name].remove((parm2Name, func, args)) def setRange(self, parm, range): #range can be list, interval tuple, type or validation func #FIX THIS: do some range validation self.rangeDict[parm] = range def validateValue(self, parm, value): rangeD = self.rangeDict if not rangeD.has_key(parm): #nothing specified for this parm return value range = rangeD[parm] if type(range)==types.ListType: if value in range: return value else: return "ERROR: value not in range list" elif type(range)==types.TupleType: if value>=range[0]and value<=range[1]: return value else: return "ERROR: value not in range interval" elif range in self.typesList: if type(value)==range: return value else: return "ERROR: value not specified type" else: #only thing left is validation function ok = apply(range, value) if ok: return value else: return "ERROR: value failed validation func" def update(self, parm, value): check = self.validateValue(parm, value) if check!=value: print 'failed validation:\n', check return "ERROR" self.updateConstraints(parm) def fix(self, parmName): #???????????????????????????? #this method makes self.parmName constant #by removing any constraints which force it to change for k, v in self.conDict.items(): for triple in v: if triple[0]==parmName: self.conDict[k].remove(triple) class GeneralRegularGridDescriptor(ConstrainedParameterSet): keywords = ['center', 'offset', 'length', 'nbGridPoints', 'gridSpacing' ] def __init__(self, **kw): ConstrainedParameterSet.__init__(self) for k in self.keywords: setattr(self, k, kw.get(k, Numeric.array((0.,0.,0.)))) consDict = kw.get('consDict', None) if consDict: for k, v in consDict.items(): self.tie(k, v[0], v[1], v[2]) rangeDict = kw.get('rangeDict', None) if rangeDict: for k, v in rangeDict.items(): self.setRange(k, v) fixed = kw.get('fixed', None) if fixed: #fixed should be a list of parameters to fix #same problem of type(parm)...a string??? for p in fixed: self.fix(p) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/.packager.py0000644000175000017500000000701007770453170022600 0ustar debiandebian# The .packager.py is used by the DistTools package to get the files to be # included in a distribution. def getFiles(root, what = 'all', plat=None): """ files <- getFiles(root, what='all', plat=None) files -- list of the files to be included in the download arguments: root -- path to the package. This is used by glob to get all the python modules. what -- string that can be 'all' and 'supported' to specified what files to include in the distribution. By default 'all' the files are added. plat -- platform ('linux2', 'irix646', 'sunos5' etc...) """ import os from glob import glob # 1- List all the python modules of that package allPyModule = ["*.py", "math/*.py", "gui/*.py", "util/*.py", "web/*.py", "gui/BasicWidgets/*.py","gui/InputForm/*.py", "gui/Misc/*.py","gui/Misc/Tk/*.py","TestUtil/*.py", "gui/BasicWidgets/Tk/*.py", "gui/InputForm/Tk/*.py", 'gui/BasicWidgets/Tk/TreeWidget/*.py', ] # 2- List all the python modules not supported that should not be included # in certain releases. pynotsupported = ['web/*.py',] # 3- Specify the documentation files and directories to be included in the # release docFiles = []#["doc/"] # 4-Specify the extraFiles to be included in the release. extraFiles = ["CVS","math/CVS", "gui/CVS", "util/CVS", "web/CVS", "gui/BasicWidgets/CVS","gui/InputForm/CVS", "gui/Misc/CVS","gui/Misc/Tk/CVS","TestUtil/CVS", "gui/BasicWidgets/Tk/CVS", "gui/InputForm/Tk/CVS", 'gui/BasicWidgets/Tk/cw.ppm','gui/BasicWidgets/Tk/TreeWidget/CVS', 'gui/BasicWidgets/Tk/TreeWidget/icons', 'TestUtil/bin/', "RELNOTES", ] # 5-Specify the testFiles to be included in the release. testFiles = ['Tests/*.py','Tests/CVS', 'gui/BasicWidgets/Tk/Tests/', 'gui/InputForm/Tk/Tests/', "gui/BasicWidgets/Tk/TreeWidget/Tests" ] ######################################################### ## Where things are done for you . ######################################################### # if some files need to be removed, we need the exact list of the pymodule. if len(pynotsupported): # store the path of the current directory olddir = os.getcwd() os.chdir(root) files = [] # we use glob to get the exact list of files. for p in allPyModule: files = files + glob(p) allPyModule = files files = [] for p in pynotsupported: files = files + glob(p) pynotsupported = files os.chdir(olddir) if what == 'supported' and len(pynotsupported): # need to remove the non supported python files from all the python # files # These are the keys used for to make the releases... supportedFiles = filter(lambda x, l = pynotsupported: not x in l, allPyModule) return supportedFiles + testFiles + extraFiles elif what == 'all' or ( what == 'supported' and not len(pynotsupported)): # Other wise just add the documentation, test and extra files to all # the python modules. allFiles= allPyModule + docFiles + testFiles + extraFiles return allFiles elif what=='documentation': return docFiles else: return [] mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/preferences.py0000644000175000017500000001333311627224574023253 0ustar debiandebian######################################################################## # # Copyright: Sargis Dallakyan (sargis@scripps.edu) # Michel Sanner (sanner@scripps.edu) # The Scripps Research Institute (TSRI) # Molecular Graphics Lab # La Jolla, CA 92037, USA # ######################################################################### # # $Header: /opt/cvs/python/packages/share1.5/mglutil/preferences.py,v 1.11 2011/08/30 18:18:36 sanner Exp $ # # $Id: preferences.py,v 1.11 2011/08/30 18:18:36 sanner Exp $ # """ This module contains UserPreference class that is used to store user preferences and settings. """ import os import pickle import types from UserDict import UserDict from mglutil.util.packageFilePath import getResourceFolderWithVersion class UserPreference(UserDict): """ Class to let the user define Preferences. a preference is made of a name, a current value, a possibly empty list of valid values. preferences can be added using the add method and set using the set method """ def __init__(self, ): UserDict.__init__(self) self.dirty = 0 # used to remember that something changed self.resourceFile = None resourceFolder = getResourceFolderWithVersion() if resourceFolder is None: return self.resourceFile = os.path.join(resourceFolder, '.settings') self.defaults = {} self.settings = {} if os.path.exists(self.resourceFile): try: pkl_file = open(self.resourceFile) self.settings = pickle.load(pkl_file) pkl_file.close() except Exception, inst: print inst, "Error in ", __file__ def add(self, name, value, validValues=[], validateFunc=None, callbackFunc=[], doc='', category="General"): """add a userpreference. A name and a value are required, a list of valide values can be provoded as well as a function that can be called to validate the value. A callback function can be specified, it will be called when the value is set with the old value and the new value passed as an argument""" # if name in self.data.keys(): # # doesn't create the userpreference if the name already exists: # return if len(validValues): assert value in validValues if validateFunc: assert callable(validateFunc) if callbackFunc != []: assert type(callbackFunc) is types.ListType and \ len(filter(lambda x: not callable(x), callbackFunc))==0 self[name] = { 'value':value, 'validValues':validValues, 'validateFunc': validateFunc, 'callbackFunc': callbackFunc, 'doc':doc , 'category':category} self.set(name, value) self.dirty = 1 def set(self, name, value): if not self.data.has_key(name): self.settings[name] = value return if self.resourceFile is None: return self.settings[name] = value entry = self.data[name] try: if entry.has_key('validValues') and len(entry['validValues']): if not value in entry['validValues']: #msg = " is not a valid value, value has to be in %s" % str(entry['validValues']) #print value, msg return if entry.has_key('validateFunc') and entry['validateFunc']: if not entry['validateFunc'](value): msg = " is not a valid value, try the Info button" #print value, msg return except Exception, inst: print __file__, inst oldValue = entry['value'] entry['value'] = value if entry['callbackFunc']!=[]: for cb in entry['callbackFunc']: cb(name,oldValue, value) self.dirty = 1 def addCallback(self, name, func): assert callable(func) assert self.data.has_key(name) entry = self.data[name] entry['callbackFunc'].append(func) def removeCallback(self, name, func): assert self.data.has_key(name) and \ func in self.data[name]['callbackFunc'] entry = self.data[name] entry['callbackFunc'].remove(func) def save(self, filename): """save the preferences to a file""" pass self.dirty = 0 # clean now ! def loadSettings(self): if self.resourceFile is None: return settings = {} if os.path.exists(self.resourceFile): pkl_file = open(self.resourceFile) settings = pickle.load(pkl_file) pkl_file.close() for key, value in settings.items(): self.set(key, value) def saveAllSettings(self): output = open(self.resourceFile, 'w') pickle.dump(self.settings, output) output.close() def saveSingleSetting(self, name, value): if os.path.exists(self.resourceFile): pkl_file = open(self.resourceFile) settings = pickle.load(pkl_file) pkl_file.close() else: settings = {} settings[name] = value output = open(self.resourceFile, 'w') pickle.dump(settings, output) output.close() def saveDefaults(self): if self.resourceFile is None: return for key, value in self.data.items(): self.defaults[key] = value def restoreDefaults(self): for key, value in self.defaults.items(): self.set(key, value) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/RELNOTES0000644000175000017500000004327311102410631021537 0ustar debiandebian============================================================================== mglutil Release Notes: ============================================================================== ----------------------- Release 1.5.4 (May 2007) ------------------------ preferences.py - added RemoveCommand - removed pdb.set_trace() - moved saving fonts to preferences - moved preferences into a pickled file. See the new mgltutil.preferences for details. gui/__init__.py - comment indicate better path for home directory under windows gui/BasicWidgets/Tk/Dial.py - minus and plus can now be typed gui/BasicWidgets/Tk/colorWidgets.py - saves colors when button "Add to custom" is pressed. gui/BasicWidgets/Tk/multiListbox.py - added ensureFontCase beecause on windows, font starts with lowercase gui/BasicWidgets/Tk/thumbwheel.py - minus and plus can now be typed gui/BasicWidgets/Tk/Tests/test_colorWidgets.py - saves colors when button "Add to custom" is pressed. gui/BasicWidgets/Tk/trees/TreeWithButtons.py - fixed createColHeader to display the full headers gui/BasicWidgets/Tk/trees/tree.py - added tooltip for molecules with long names - fixed bug #987 long molecule names cover up buttons in dashboard gui/Misc/Tk/KeybdModMonitor.py - fixed ALT-TAB problem reported by Luca Clementi math/statetocoords.py - fix bug retrieing the coorect coordinate with statetocoords was broken. - updated applyState to fix this problem. ( see test in AutodockTools) splashregister/license.py - added ensureFontCase beecause on windows, font starts with lowercase util/idleUtil.py - replaced with previous revision - saves sys.std*.fileno util/packageFilePath.py - added resourceFolder argument which defaults to 'mgltools' util/recentFiles.py - added try/except in dumpCategories ----------------------- Release 1.5.2 (May 2007) ------------------------ -- ported to python2.5 -- moved from Numeric to numpy LICENSE - -added TSRI to the copyright part. - -added LICENSE file __init__.py - added 'Support' to noncritical - cleaned mglutil init - saved networks launch pythonsh - cleaned mglutil init - added link to python for saved networks popen2Threads.py - replaced text for kill_cb - removed tk button destroy TestUtil/BugReport.py - report UserID for registered Users. TestUtil/Dependencytester.py - -replaced all occurances of python2.4 by 'python'+version (version comes from sys.vesion_info) Tests/test_popen2Threads.py - removed gui/__init__.py - removed -T option in ln as it is unknown on most system - corected self loop in symbolic link to pythonsh - now vision runs even without a directory to write to - grab the correct pythonsh even when installed from source - now widgetsOnBackWindowsCanGrabFocus is in mglutil.gui - cleaned mglutil init - now widgetsOnBackWindowsCanGrabFocus is in mglutil.gui gui/BasicWidgets/Tk/Dial.py - introduced from ensureFontCase - corrected mousewheel on thumbwhell and dial - added mouseWheel to dial and thumbwheel widgets gui/BasicWidgets/Tk/KeyboardEntry.py - now widgetsOnBackWindowsCanGrabFocus is in mglutil.gui gui/BasicWidgets/Tk/customizedWidgets.py -removed 1.4.7 revision modifications. Need to fix reparenting of objects. - added try except when removing entry from ListChooser to avoid exception when entry removed is not in the list - changed cwcfg in ListChooser to be None and add whatever is specified to the default set of options - added index gui/BasicWidgets/Tk/player.py - added slider (Tkinter.Scale widget) gui/BasicWidgets/Tk/thumbwheel.py - corrected mousewheel on thumbwhell and dial - added mouseWheel to dial and thumbwheel widgets gui/BasicWidgets/Tk/Tests/test_graphtool.py -fixed an error resulted from comparing two numpy arrays. gui/BasicWidgets/Tk/TreeWidget/tree.py - removed critical dependency to PIL - corrected displayed info - adjusted mousewheel on win32 gui/BasicWidgets/Tk/trees/TreeWithButtons.py - fixed hidden dialogs problem splashregister/about.py - removed critical dependency to PIL - added NIH and SNF logos - added NBCR logo - introduced from ensureFontCase - introduced revision number splashregister/license.py -corrected some contact info in the MSMS license. - deselect commercial radiobutton on startup splashregister/splashscreen.py - -trying to fix a problem when .mgltools directory can not be created - now vision runs even without a directory to write to - added self.splash_win.update() util/packageFilePath.py - renamed findAllPackageNames into findAllPackages and repaired full search - if no home directory, we use the temp directory - now networks run into the saved network directory util/recentFiles.py - now pmv works without writting permissions - now vision runs even without a directory to write to - added keyboard shortcuts web/services/AppService_client.py - updated for the latest version of ZSI-2.1_a1 web/services/AppService_server.py - updated for the latest version of ZSI-2.1_a1 web/services/AppService_services.py - moved from PMV and ADT web/services/AppService_services_types.py - moved from PMV and ADT web/services/AppService_types.py - updated for the latest version of ZSI-2.1_a1 web/services/SecuritymyproxyloginImplService_services.py - moved from PMV and ADT web/services/SecurityuserimportImplService_services.py - moved from PMV and ADT web/services/__init__.py - moved from PMV and ADT ----------------------- Release 1.4.5 (May 2007) ------------------------ New features and bug fixes: events.py - added Event class and EventHandler mix in class (see DejaVu.Viewer for example of using it) TestUtil/BugReport.py - added code that allows attaching more than one file to the bug report; - added cc option; gui/BasicWidgets/Tk/RelabelingCascadeMenu.py - introduced RelabelingCascadeMenu gui/BasicWidgets/Tk/colorWidgets.py - enclosed setting self.master.protocol for WM_DELETE_WINDOW in a try-except loop because ColorChooser's master may not be a toplevel widget in some uses... eg in setbackgroundcolor it is lodged in an input form and this line caused an error - changed line 623 so that now exitFunction is passed to the init of the base class; added line 625 so that 'self.exit' is invoked for WM_DELETE_WINDOW gui/BasicWidgets/Tk/graphtool.py - added to show histogram,invert graph,added gray scales fixing invert graph to delte endpoint which it sometimes missing. gui/BasicWidgets/Tk/player.py - added a check for 'deiconify' attribute of self.form in showGUI()(caused problems on Windows). gui/BasicWidgets/Tk/progressBar.py - added if self.max == 0: in elif self.mode == 'increment': gui/BasicWidgets/Tk/vector3DGUI.py - corrected wrong axis in sphere representation - correction to allow mouse outside trackball - dawVector on setentries gui/BasicWidgets/Tk/TreeWidget/tree.py - added mouse wheel scrolling to dejavu geoms tree math/transformation.py - introduced getAxisAndAngleDegres math/usr.py - added code implementing the Ballester & Richards shape similarity algorithm. splashregister/about.py - added update info in the version text util/packageFilePath.py - replaced relative path with absolute path for regfile - moved writing .registration after response.status == 200 - ResourceFolder is set to tempfile.gettempdir() we we fail to create one - added old_rc to search for .registration - added registration for updating version in MySQL util/recentFiles.py - fixed problem with duplicate entries - added menuLabel to readRecent - added Recent Files to SourceCommand Release 1.4.4 (December 2006) ----------------------------- TestUtil/BugReport.py - added module for submitting bugs to Bugzila DataBase from Pmv gui/BasicWidgets/Tk/Dial.py - added ability to type a value on keyboard when cursor is over a dial or a thumbwheel gui/BasicWidgets/Tk/KeyboardEntry.py - first commit of mixin class to add keyboard entry to widgets such as dial and thumbwheels gui/BasicWidgets/Tk/customizedWidgets.py - replaced types.StringType with in types.StringTypes to support 'unicode' gui/BasicWidgets/Tk/graphtool.py - added Graph Tool for adjusting non photo rendering parameters gui/BasicWidgets/Tk/multiListbox.py - fixed problems when using different python on Linux gui/BasicWidgets/Tk/progressBar.py - simplified the update of the progress bar in the increment case gui/BasicWidgets/Tk/thumbwheel.py - added ability to type a value on keyboard when cursor is over a dial or a thumbwheel gui/BasicWidgets/Tk/trees/TreeWithButtons.py - added crosshair to dashboard - fixed bug where buttons in dashboard tree selection would not be reset except for the one we click on. - fixed a bug when deleting molecule, i.e., self.object is None - added execute=True to def buttonClick() to allow suppressing execution of command when buttonmClick is called for instance from resetNodes - added val=None to node.buttonClick and changed right button click (i.e. execution through option menu) to always execute with val=1 - added reparentNodes method to averwrite .tree attribute to belong to a new tee. This was neededd in order to allow tree to move to a new master widget. - added undisplayNode method to destroy canvas items - moved column label creation into its own function so we can recreate them when a tree is moved to a new master - added posx=event.x_root, posy=event.y_root to cmd.showForm to post menu near button - made right button click execute command after displaying the form - handle cancel button in option forms - removed old Columndescriptor class - added button-3 callback on column labels - added objClassHasNoButton=None attribute to ColumnDescriptor to allow some objects to bot have button in some columns - added ColumnDescriptor.isON(node) hook to allow columns to define how to check wether its button for a node is shoudl be checked or not. This is used by the selection commands to check the buttons for the molecular objects selected in Pmv - removed node.chkbtval = [] from TreeWithButtons.resetDisplayedNodes - fixed bug in NodeWithButtons constructor which cause columns with inherit=False to create children nodes in the tree with checked buttons - added fast tree widget gui/BasicWidgets/Tk/trees/tree.py - added button3OnLabel hook for right click event on labels in tree - added enter_cb to set focus to Tree canvas when mouse enters. This was causing Shift and Control keys to not work after the focus has been set to the camera once - move label background setting to yellow to drawSelectionBox to fix bug where selection box was drawn but label had a white background - fixed bug that caused labels to disappear in tree - added reparentNodes method to averwrite .tree attribute to belong to a new tee. This was neededd in order to allow tree to move to a new master widget. - added undisplayNode method to destroy canvas items - made hull_height 100 by default - added self.suspendRedraw attribute to tree to avoid unnecessary redraws while multiple columns are added - rewrote refreshChildren to no longer destroy nodes that already exist - fixed IconsManager object to handle path in a platform independent way - fixed icon manager to use Icons in mglutil/gui/BasicWidgets/Tk/trees - added icons gui/InputForm/Tk/gui.py - now BackBone trace inherit sticksAndBalls - replaced licorice and noballs with sticksBallsLicorice splashregister/register.py - added self.regButton.configure(state='disabled') to avoid multiple registrations - added the requirement for registration of Updates - added conn.close() splashregister/splashscreen.py - modified splash screen to use its own toplevel - removed all self.master references. Now the splash screen does nothing to the master of the application anymore (i.e. no withdraw or geometry) - registration request comes up each time after 10 starts - added optional hideGui=False to the finish method to avoid splashScreen.finish() to deiconify when hideGui is true util/packageFilePath.py - changes Version number when moving .registration - added copy .registration from .mgltools to .mgltools/$version - added version to Resource folder Release 1.4.3 (September 2006) ------------------------------- New features - users can register MGLTools through the GUI(splashscreen); - added suport for Unicode in ListChooser; - added parent argument to fileBrowser; - implemented multiListbox widget; - added Vision icon and pictures in the Vision splashscreen; Bug fixes - added try/except: around os.kill(self.com.pid,signal.SIGKILL) in popen2Threads.py. -added parent argument to fileBrowser that can be used instead of Tkinter._default_root. -Fixed problem with SplashScreen fonts. Release 1.4.2 (May 2006) ------------------------ Changes and bug fixes: gui/BasicWidgets/Tk/toolbarbutton.py -corrected bug in toolBarButton -added cascade menu for FastLibs in vision toobar, smaller icon for diamond ports gui/BasicWidgets/Tk/TreeWidget/tree.py - added code to remove delete node from tree.list_selected in deleteNode - added clearSelection() method to remove all selection boxes - added expandPath(nade) method to make sure all parent of a given node are expanded - fixed addNodeSet to return the list of added nodes - added stacklevel=2 to warning, helps finding where we come from - disabled arrow keys in multi_choice trees - added parent.draw() in addNodeSet to update the + box in the tree - added Tree.selectionHistory and tree.undoSelect() to undo selection on a tree in multi_choice mode - made selection and deselection of node faster by not calling node.draw bu deleting the selection box and dawing it - separated drawing the selection box from node.draw - fixed growing size in Y of selection box - removed Pmw.ScrolledCanvas subclass - remove x scrolling on tree canvas when header is present - added watch cursor when nodes get expanded - added selectNodes method to select a list of nodes - added a visibility flag for nodes - added surpport for shift and control picking for multiline selections - added showNode method to move the tree to amek a given node visible - made CallBackFunction return the result of calling the function - renamed CallBackFunction class CallbackFunction and create alias for backwards compatibility - subclassed Pmw.ScrolledCanvas to create a version using pading on the canvas which alleviates somewhat the problem of buttons bleeding over the scroll bars - added canvasHeaderCol option to Tree widget allow to add a canvas above tree for headers that will scroll horizontaly with tree splashregister/__init__.py -initial version of Splash Screen and Registration splashregister/register.py -initial version of Splash Screen and Registration util/callback.py - made CallBackFunction return the result of calling the function - renamed CallBackFunction class CallbackFunction and create alias for backwards compatibility util/colorUtil.py -now ColorPalette inherits ColorMapGUI Release 1.4.1 (March 2006) ----------------------- Release rel 1.2beta1 (12/15/2003) _____________________________________________________________________________ What's new since rel 1.2alpha (09/18/2003): - gui/BasicWidgets/Tk/Dial: - gui/BasicWidgets/Tk/progressBar: added None as a possible label side. This places the label on the bar - gui/BasicWidget/Tk/TreeWidget: Implemented a set of python module to create a TreeWidget - math/rotax: added rotVectToVect function to compute rotation matrix to align 2 vectors - util/misc: Implemented a deepCopySeq function which returns a deep copy of the given sequence whether it is a list, tuple or Numeric array. - util/packageFilePath: In findModulesInPackage: 1- added the Icons directory to the list of directory to not consider In findModulesInPackage and findModulesInDirectory 2- the key of the candidates dictionnary is now the path to the module and the value the list of modules in which the name was found. Bug Fixes since rel 1.2alpha (09/18/2003): - gui/BasicWidgets/Tk/Dial: fixed a couple of logic errors when updating the options panel display (it would not lock the entries for min, max, incr when they were set to None - gui/BasicWidgets/Tk/Dial: fixed default values in Dial and Thumbwheel to be 0 for lockMin, lockMax and lockIncrement, and fixed lockIncrement to use the user-specified value rather than just 1. - gui/BasicWidgets/Tk/Dial and Thumbwheel: fixed default values in Dial and Thumbwheel to be 0 for lockMin, lockMax and lockIncrement, and fixed lockIncrement to use the user-specified value rather than just 1. - gui/BasicWidgets/Tk/optionsPanel: fixed a logic bug in toggleIncr checkbutton: if increment is 0.0 the button should not be checked by default. - gui/BasicWidgets/Tk/optionsPanel: fixed a couple of logic errors when updating the options panel display (it would not lock the entries for min, max, incr when they were set to None - gui/BasicWidgets/Tk/progressBar: fixed progress bar to accept master Changes since rel 1.2alpha (09/18/2003): - Replaced "== None" by "is None" - TestUtil: Renamed script bin. - gui/BasicWidgets/Tk/customizedWidgets: In the Listchooser when selecting an entry in calls the selection_set and the activate method of the listbox. - gui/InputForm/Tk/gui: Modified the checkValues behavior in InputForm to return the value from the entry when different from the selection in Pmw.ComboBox. - util/callback: remove argument funcList in FindFunctionByName, because was not used anywhere Known Issues: - tester: The -r (recursive) and -s (usesubprocess) options of the "tester" don't work properly under windows. If the testModule raises an exception when importing None of the test in that testModule will be run. Backwards INCOMPATIBLE Changes since rel 1.2alpha (09/18/2003): mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/process.py0000644000175000017500000012000211216031311022373 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # subprocess - Subprocesses with accessible I/O streams # # For more information about this module, see PEP 324. # # Copyright (c) 2003-2004 by Peter Astrand # # By obtaining, using, and/or copying this software and/or its # associated documentation, you agree that you have read, understood, # and will comply with the following terms and conditions: # # Permission to use, copy, modify, and distribute this software and # its associated documentation for any purpose and without fee is # hereby granted, provided that the above copyright notice appears in # all copies, and that both that copyright notice and this permission # notice appear in supporting documentation, and that the name of the # author not be used in advertising or publicity pertaining to # distribution of the software without specific, written prior # permission. # # THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS # OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. r"""subprocess - Subprocesses with accessible I/O streams This module allows you to spawn processes, connect to their input/output/error pipes, and obtain their return codes. This module intends to replace several other, older modules and functions, like: os.system os.spawn* os.popen* popen2.* commands.* Information about how the subprocess module can be used to replace these modules and functions can be found below. Using the subprocess module =========================== This module defines one class called Popen: class Popen(args, bufsize=0, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, close_fds=False, shell=False, cwd=None, env=None, universal_newlines=False, startupinfo=None, creationflags=0): Arguments are: args should be a string, or a sequence of program arguments. The program to execute is normally the first item in the args sequence or string, but can be explicitly set by using the executable argument. On UNIX, with shell=False (default): In this case, the Popen class uses os.execvp() to execute the child program. args should normally be a sequence. A string will be treated as a sequence with the string as the only item (the program to execute). On UNIX, with shell=True: If args is a string, it specifies the command string to execute through the shell. If args is a sequence, the first item specifies the command string, and any additional items will be treated as additional shell arguments. On Windows: the Popen class uses CreateProcess() to execute the child program, which operates on strings. If args is a sequence, it will be converted to a string using the list2cmdline method. Please note that not all MS Windows applications interpret the command line the same way: The list2cmdline is designed for applications using the same rules as the MS C runtime. bufsize, if given, has the same meaning as the corresponding argument to the built-in open() function: 0 means unbuffered, 1 means line buffered, any other positive value means use a buffer of (approximately) that size. A negative bufsize means to use the system default, which usually means fully buffered. The default value for bufsize is 0 (unbuffered). stdin, stdout and stderr specify the executed programs' standard input, standard output and standard error file handles, respectively. Valid values are PIPE, an existing file descriptor (a positive integer), an existing file object, and None. PIPE indicates that a new pipe to the child should be created. With None, no redirection will occur; the child's file handles will be inherited from the parent. Additionally, stderr can be STDOUT, which indicates that the stderr data from the applications should be captured into the same file handle as for stdout. If preexec_fn is set to a callable object, this object will be called in the child process just before the child is executed. If close_fds is true, all file descriptors except 0, 1 and 2 will be closed before the child process is executed. if shell is true, the specified command will be executed through the shell. If cwd is not None, the current directory will be changed to cwd before the child is executed. If env is not None, it defines the environment variables for the new process. If universal_newlines is true, the file objects stdout and stderr are opened as a text files, but lines may be terminated by any of '\n', the Unix end-of-line convention, '\r', the Macintosh convention or '\r\n', the Windows convention. All of these external representations are seen as '\n' by the Python program. Note: This feature is only available if Python is built with universal newline support (the default). Also, the newlines attribute of the file objects stdout, stdin and stderr are not updated by the communicate() method. The startupinfo and creationflags, if given, will be passed to the underlying CreateProcess() function. They can specify things such as appearance of the main window and priority for the new process. (Windows only) This module also defines two shortcut functions: call(*args, **kwargs): Run command with arguments. Wait for command to complete, then return the returncode attribute. The arguments are the same as for the Popen constructor. Example: retcode = call(["ls", "-l"]) Exceptions ---------- Exceptions raised in the child process, before the new program has started to execute, will be re-raised in the parent. Additionally, the exception object will have one extra attribute called 'child_traceback', which is a string containing traceback information from the childs point of view. The most common exception raised is OSError. This occurs, for example, when trying to execute a non-existent file. Applications should prepare for OSErrors. A ValueError will be raised if Popen is called with invalid arguments. Security -------- Unlike some other popen functions, this implementation will never call /bin/sh implicitly. This means that all characters, including shell metacharacters, can safely be passed to child processes. Popen objects ============= Instances of the Popen class have the following methods: poll() Check if child process has terminated. Returns returncode attribute. wait() Wait for child process to terminate. Returns returncode attribute. communicate(input=None) Interact with process: Send data to stdin. Read data from stdout and stderr, until end-of-file is reached. Wait for process to terminate. The optional stdin argument should be a string to be sent to the child process, or None, if no data should be sent to the child. communicate() returns a tuple (stdout, stderr). Note: The data read is buffered in memory, so do not use this method if the data size is large or unlimited. The following attributes are also available: stdin If the stdin argument is PIPE, this attribute is a file object that provides input to the child process. Otherwise, it is None. stdout If the stdout argument is PIPE, this attribute is a file object that provides output from the child process. Otherwise, it is None. stderr If the stderr argument is PIPE, this attribute is file object that provides error output from the child process. Otherwise, it is None. pid The process ID of the child process. returncode The child return code. A None value indicates that the process hasn't terminated yet. A negative value -N indicates that the child was terminated by signal N (UNIX only). Replacing older functions with the subprocess module ==================================================== In this section, "a ==> b" means that b can be used as a replacement for a. Note: All functions in this section fail (more or less) silently if the executed program cannot be found; this module raises an OSError exception. In the following examples, we assume that the subprocess module is imported with "from subprocess import *". Replacing /bin/sh shell backquote --------------------------------- output=`mycmd myarg` ==> output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0] Replacing shell pipe line ------------------------- output=`dmesg | grep hda` ==> p1 = Popen(["dmesg"], stdout=PIPE) p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) output = p2.communicate()[0] Replacing os.system() --------------------- sts = os.system("mycmd" + " myarg") ==> p = Popen("mycmd" + " myarg", shell=True) sts = os.waitpid(p.pid, 0) Note: * Calling the program through the shell is usually not required. * It's easier to look at the returncode attribute than the exitstatus. A more real-world example would look like this: try: retcode = call("mycmd" + " myarg", shell=True) if retcode < 0: print >>sys.stderr, "Child was terminated by signal", -retcode else: print >>sys.stderr, "Child returned", retcode except OSError, e: print >>sys.stderr, "Execution failed:", e Replacing os.spawn* ------------------- P_NOWAIT example: pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") ==> pid = Popen(["/bin/mycmd", "myarg"]).pid P_WAIT example: retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg") ==> retcode = call(["/bin/mycmd", "myarg"]) Vector example: os.spawnvp(os.P_NOWAIT, path, args) ==> Popen([path] + args[1:]) Environment example: os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env) ==> Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"}) Replacing os.popen* ------------------- pipe = os.popen(cmd, mode='r', bufsize) ==> pipe = Popen(cmd, shell=True, bufsize=bufsize, stdout=PIPE).stdout pipe = os.popen(cmd, mode='w', bufsize) ==> pipe = Popen(cmd, shell=True, bufsize=bufsize, stdin=PIPE).stdin (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize) ==> p = Popen(cmd, shell=True, bufsize=bufsize, stdin=PIPE, stdout=PIPE, close_fds=True) (child_stdin, child_stdout) = (p.stdin, p.stdout) (child_stdin, child_stdout, child_stderr) = os.popen3(cmd, mode, bufsize) ==> p = Popen(cmd, shell=True, bufsize=bufsize, stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True) (child_stdin, child_stdout, child_stderr) = (p.stdin, p.stdout, p.stderr) (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize) ==> p = Popen(cmd, shell=True, bufsize=bufsize, stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True) (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout) Replacing popen2.* ------------------ Note: If the cmd argument to popen2 functions is a string, the command is executed through /bin/sh. If it is a list, the command is directly executed. (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode) ==> p = Popen(["somestring"], shell=True, bufsize=bufsize stdin=PIPE, stdout=PIPE, close_fds=True) (child_stdout, child_stdin) = (p.stdout, p.stdin) (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode) ==> p = Popen(["mycmd", "myarg"], bufsize=bufsize, stdin=PIPE, stdout=PIPE, close_fds=True) (child_stdout, child_stdin) = (p.stdout, p.stdin) The popen2.Popen3 and popen3.Popen4 basically works as subprocess.Popen, except that: * subprocess.Popen raises an exception if the execution fails * the capturestderr argument is replaced with the stderr argument. * stdin=PIPE and stdout=PIPE must be specified. * popen2 closes all filedescriptors by default, but you have to specify close_fds=True with subprocess.Popen. """ import sys import os mswindows = (os.name == 'nt') import types import traceback if mswindows: import threading import msvcrt if 0: # <-- change this to use pywin32 instead of the _subprocess driver import pywintypes from win32api import GetStdHandle, STD_INPUT_HANDLE, \ STD_OUTPUT_HANDLE, STD_ERROR_HANDLE from win32api import GetCurrentProcess, DuplicateHandle, \ GetModuleFileName, GetVersion from win32con import DUPLICATE_SAME_ACCESS, SW_HIDE from win32pipe import CreatePipe from win32process import CreateProcess, STARTUPINFO, \ GetExitCodeProcess, STARTF_USESTDHANDLES, \ STARTF_USESHOWWINDOW, CREATE_NEW_CONSOLE from win32event import WaitForSingleObject, INFINITE, WAIT_OBJECT_0 else: from _subprocess import * class STARTUPINFO: dwFlags = 0 hStdInput = None hStdOutput = None hStdError = None class pywintypes: error = IOError else: import select import errno import fcntl import pickle __all__ = ["Popen", "PIPE", "STDOUT", "call"] try: MAXFD = os.sysconf("SC_OPEN_MAX") except: MAXFD = 256 # True/False does not exist on 2.2.0 try: False except NameError: False = 0 True = 1 _active = [] def _cleanup(): for inst in _active[:]: inst.poll() PIPE = -1 STDOUT = -2 def call(*args, **kwargs): """Run command with arguments. Wait for command to complete, then return the returncode attribute. The arguments are the same as for the Popen constructor. Example: retcode = call(["ls", "-l"]) """ return Popen(*args, **kwargs).wait() def list2cmdline(seq): """ Translate a sequence of arguments into a command line string, using the same rules as the MS C runtime: 1) Arguments are delimited by white space, which is either a space or a tab. 2) A string surrounded by double quotation marks is interpreted as a single argument, regardless of white space contained within. A quoted string can be embedded in an argument. 3) A double quotation mark preceded by a backslash is interpreted as a literal double quotation mark. 4) Backslashes are interpreted literally, unless they immediately precede a double quotation mark. 5) If backslashes immediately precede a double quotation mark, every pair of backslashes is interpreted as a literal backslash. If the number of backslashes is odd, the last backslash escapes the next double quotation mark as described in rule 3. """ # See # http://msdn.microsoft.com/library/en-us/vccelng/htm/progs_12.asp result = [] needquote = False for arg in seq: bs_buf = [] # Add a space to separate this argument from the others if result: result.append(' ') needquote = (" " in arg) or ("\t" in arg) if needquote: result.append('"') for c in arg: if c == '\\': # Don't know if we need to double yet. bs_buf.append(c) elif c == '"': # Double backspaces. result.append('\\' * len(bs_buf)*2) bs_buf = [] result.append('\\"') else: # Normal char if bs_buf: result.extend(bs_buf) bs_buf = [] result.append(c) # Add remaining backspaces, if any. if bs_buf: result.extend(bs_buf) if needquote: result.extend(bs_buf) result.append('"') return ''.join(result) class Popen(object): def __init__(self, args, bufsize=0, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, close_fds=False, shell=False, cwd=None, env=None, universal_newlines=False, startupinfo=None, creationflags=0): """Create new Popen instance.""" _cleanup() if not isinstance(bufsize, (int, long)): raise TypeError("bufsize must be an integer") if mswindows: if preexec_fn is not None: raise ValueError("preexec_fn is not supported on Windows " "platforms") if close_fds: raise ValueError("close_fds is not supported on Windows " "platforms") else: # POSIX if startupinfo is not None: raise ValueError("startupinfo is only supported on Windows " "platforms") if creationflags != 0: raise ValueError("creationflags is only supported on Windows " "platforms") self.stdin = None self.stdout = None self.stderr = None self.pid = None self.returncode = None self.universal_newlines = universal_newlines # Input and output objects. The general principle is like # this: # # Parent Child # ------ ----- # p2cwrite ---stdin---> p2cread # c2pread <--stdout--- c2pwrite # errread <--stderr--- errwrite # # On POSIX, the child objects are file descriptors. On # Windows, these are Windows file handles. The parent objects # are file descriptors on both platforms. The parent objects # are None when not using PIPEs. The child objects are None # when not redirecting. (p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite) = self._get_handles(stdin, stdout, stderr) self._execute_child(args, executable, preexec_fn, close_fds, cwd, env, universal_newlines, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite) if p2cwrite: self.stdin = os.fdopen(p2cwrite, 'wb', bufsize) if c2pread: if universal_newlines: self.stdout = os.fdopen(c2pread, 'rU', bufsize) else: self.stdout = os.fdopen(c2pread, 'rb', bufsize) if errread: if universal_newlines: self.stderr = os.fdopen(errread, 'rU', bufsize) else: self.stderr = os.fdopen(errread, 'rb', bufsize) _active.append(self) def _translate_newlines(self, data): data = data.replace("\r\n", "\n") data = data.replace("\r", "\n") return data if mswindows: # # Windows methods # def _get_handles(self, stdin, stdout, stderr): """Construct and return tupel with IO objects: p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite """ if stdin == None and stdout == None and stderr == None: return (None, None, None, None, None, None) p2cread, p2cwrite = None, None c2pread, c2pwrite = None, None errread, errwrite = None, None if stdin == None: p2cread = GetStdHandle(STD_INPUT_HANDLE) elif stdin == PIPE: p2cread, p2cwrite = CreatePipe(None, 0) # Detach and turn into fd p2cwrite = p2cwrite.Detach() p2cwrite = msvcrt.open_osfhandle(p2cwrite, 0) elif isinstance(stdin, types.IntType): p2cread = msvcrt.get_osfhandle(stdin) else: # Assuming file-like object p2cread = msvcrt.get_osfhandle(stdin.fileno()) p2cread = self._make_inheritable(p2cread) if stdout == None: c2pwrite = GetStdHandle(STD_OUTPUT_HANDLE) elif stdout == PIPE: c2pread, c2pwrite = CreatePipe(None, 0) # Detach and turn into fd c2pread = c2pread.Detach() c2pread = msvcrt.open_osfhandle(c2pread, 0) elif isinstance(stdout, types.IntType): c2pwrite = msvcrt.get_osfhandle(stdout) else: # Assuming file-like object c2pwrite = msvcrt.get_osfhandle(stdout.fileno()) c2pwrite = self._make_inheritable(c2pwrite) if stderr == None: errwrite = GetStdHandle(STD_ERROR_HANDLE) elif stderr == PIPE: errread, errwrite = CreatePipe(None, 0) # Detach and turn into fd errread = errread.Detach() errread = msvcrt.open_osfhandle(errread, 0) elif stderr == STDOUT: errwrite = c2pwrite elif isinstance(stderr, types.IntType): errwrite = msvcrt.get_osfhandle(stderr) else: # Assuming file-like object errwrite = msvcrt.get_osfhandle(stderr.fileno()) errwrite = self._make_inheritable(errwrite) return (p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite) def _make_inheritable(self, handle): """Return a duplicate of handle, which is inheritable""" return DuplicateHandle(GetCurrentProcess(), handle, GetCurrentProcess(), 0, 1, DUPLICATE_SAME_ACCESS) def _find_w9xpopen(self): """Find and return absolut path to w9xpopen.exe""" w9xpopen = os.path.join(os.path.dirname(GetModuleFileName(0)), "w9xpopen.exe") if not os.path.exists(w9xpopen): # Eeek - file-not-found - possibly an embedding # situation - see if we can locate it in sys.exec_prefix w9xpopen = os.path.join(os.path.dirname(sys.exec_prefix), "w9xpopen.exe") if not os.path.exists(w9xpopen): raise RuntimeError("Cannot locate w9xpopen.exe, which is " "needed for Popen to work with your " "shell or platform.") return w9xpopen def _execute_child(self, args, executable, preexec_fn, close_fds, cwd, env, universal_newlines, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite): """Execute program (MS Windows version)""" if not isinstance(args, types.StringTypes): args = list2cmdline(args) # Process startup details default_startupinfo = STARTUPINFO() if startupinfo == None: startupinfo = default_startupinfo if not None in (p2cread, c2pwrite, errwrite): startupinfo.dwFlags |= STARTF_USESTDHANDLES startupinfo.hStdInput = p2cread startupinfo.hStdOutput = c2pwrite startupinfo.hStdError = errwrite if shell: default_startupinfo.dwFlags |= STARTF_USESHOWWINDOW default_startupinfo.wShowWindow = SW_HIDE comspec = os.environ.get("COMSPEC", "cmd.exe") args = comspec + " /c " + args if (GetVersion() >= 0x80000000L or os.path.basename(comspec).lower() == "command.com"): # Win9x, or using command.com on NT. We need to # use the w9xpopen intermediate program. For more # information, see KB Q150956 # (http://web.archive.org/web/20011105084002/http://support.microsoft.com/support/kb/articles/Q150/9/56.asp) w9xpopen = self._find_w9xpopen() args = '"%s" %s' % (w9xpopen, args) # Not passing CREATE_NEW_CONSOLE has been known to # cause random failures on win9x. Specifically a # dialog: "Your program accessed mem currently in # use at xxx" and a hopeful warning about the # stability of your system. Cost is Ctrl+C wont # kill children. creationflags |= CREATE_NEW_CONSOLE # Start the process try: hp, ht, pid, tid = CreateProcess(executable, args, # no special security None, None, # must inherit handles to pass std # handles 1, creationflags, env, cwd, startupinfo) except pywintypes.error, e: # Translate pywintypes.error to WindowsError, which is # a subclass of OSError. FIXME: We should really # translate errno using _sys_errlist (or simliar), but # how can this be done from Python? raise WindowsError(*e.args) # Retain the process handle, but close the thread handle self._handle = hp self.pid = pid ht.Close() # Child is launched. Close the parent's copy of those pipe # handles that only the child should have open. You need # to make sure that no handles to the write end of the # output pipe are maintained in this process or else the # pipe will not close when the child process exits and the # ReadFile will hang. if p2cread != None: p2cread.Close() if c2pwrite != None: c2pwrite.Close() if errwrite != None: errwrite.Close() def poll(self): """Check if child process has terminated. Returns returncode attribute.""" if self.returncode == None: if WaitForSingleObject(self._handle, 0) == WAIT_OBJECT_0: self.returncode = GetExitCodeProcess(self._handle) _active.remove(self) return self.returncode def wait(self): """Wait for child process to terminate. Returns returncode attribute.""" if self.returncode == None: obj = WaitForSingleObject(self._handle, INFINITE) self.returncode = GetExitCodeProcess(self._handle) _active.remove(self) return self.returncode def _readerthread(self, fh, buffer): buffer.append(fh.read()) def communicate(self, input=None): """Interact with process: Send data to stdin. Read data from stdout and stderr, until end-of-file is reached. Wait for process to terminate. The optional input argument should be a string to be sent to the child process, or None, if no data should be sent to the child. communicate() returns a tuple (stdout, stderr).""" stdout = None # Return stderr = None # Return if self.stdout: stdout = [] stdout_thread = threading.Thread(target=self._readerthread, args=(self.stdout, stdout)) stdout_thread.setDaemon(True) stdout_thread.start() if self.stderr: stderr = [] stderr_thread = threading.Thread(target=self._readerthread, args=(self.stderr, stderr)) stderr_thread.setDaemon(True) stderr_thread.start() if self.stdin: if input != None: self.stdin.write(input) self.stdin.close() if self.stdout: stdout_thread.join() if self.stderr: stderr_thread.join() # All data exchanged. Translate lists into strings. if stdout != None: stdout = stdout[0] if stderr != None: stderr = stderr[0] # Translate newlines, if requested. We cannot let the file # object do the translation: It is based on stdio, which is # impossible to combine with select (unless forcing no # buffering). if self.universal_newlines and hasattr(open, 'newlines'): if stdout: stdout = self._translate_newlines(stdout) if stderr: stderr = self._translate_newlines(stderr) self.wait() return (stdout, stderr) else: # # POSIX methods # def _get_handles(self, stdin, stdout, stderr): """Construct and return tupel with IO objects: p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite """ p2cread, p2cwrite = None, None c2pread, c2pwrite = None, None errread, errwrite = None, None if stdin == None: pass elif stdin == PIPE: p2cread, p2cwrite = os.pipe() elif isinstance(stdin, types.IntType): p2cread = stdin else: # Assuming file-like object p2cread = stdin.fileno() if stdout == None: pass elif stdout == PIPE: c2pread, c2pwrite = os.pipe() elif isinstance(stdout, types.IntType): c2pwrite = stdout else: # Assuming file-like object c2pwrite = stdout.fileno() if stderr == None: pass elif stderr == PIPE: errread, errwrite = os.pipe() elif stderr == STDOUT: errwrite = c2pwrite elif isinstance(stderr, types.IntType): errwrite = stderr else: # Assuming file-like object errwrite = stderr.fileno() return (p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite) def _set_cloexec_flag(self, fd): try: cloexec_flag = fcntl.FD_CLOEXEC except AttributeError: cloexec_flag = 1 old = fcntl.fcntl(fd, fcntl.F_GETFD) fcntl.fcntl(fd, fcntl.F_SETFD, old | cloexec_flag) def _close_fds(self, but): for i in range(3, MAXFD): if i == but: continue try: os.close(i) except: pass def _execute_child(self, args, executable, preexec_fn, close_fds, cwd, env, universal_newlines, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite): """Execute program (POSIX version)""" if isinstance(args, types.StringTypes): args = [args] if shell: args = ["/bin/sh", "-c"] + args if executable == None: executable = args[0] # For transferring possible exec failure from child to parent # The first char specifies the exception type: 0 means # OSError, 1 means some other error. errpipe_read, errpipe_write = os.pipe() self._set_cloexec_flag(errpipe_write) self.pid = os.fork() if self.pid == 0: # Child try: # Close parent's pipe ends if p2cwrite: os.close(p2cwrite) if c2pread: os.close(c2pread) if errread: os.close(errread) os.close(errpipe_read) # Dup fds for child if p2cread: os.dup2(p2cread, 0) if c2pwrite: os.dup2(c2pwrite, 1) if errwrite: os.dup2(errwrite, 2) # Close pipe fds. Make sure we doesn't close the same # fd more than once. if p2cread: os.close(p2cread) if c2pwrite and c2pwrite not in (p2cread,): os.close(c2pwrite) if errwrite and errwrite not in (p2cread, c2pwrite): os.close(errwrite) # Close all other fds, if asked for if close_fds: self._close_fds(but=errpipe_write) if cwd != None: os.chdir(cwd) if preexec_fn: apply(preexec_fn) if env == None: os.execvp(executable, args) else: os.execvpe(executable, args, env) except: exc_type, exc_value, tb = sys.exc_info() # Save the traceback and attach it to the exception object exc_lines = traceback.format_exception(exc_type, exc_value, tb) exc_value.child_traceback = ''.join(exc_lines) os.write(errpipe_write, pickle.dumps(exc_value)) # This exitcode won't be reported to applications, so it # really doesn't matter what we return. os._exit(255) # Parent os.close(errpipe_write) if p2cread and p2cwrite: os.close(p2cread) if c2pwrite and c2pread: os.close(c2pwrite) if errwrite and errread: os.close(errwrite) # Wait for exec to fail or succeed; possibly raising exception data = os.read(errpipe_read, 1048576) # Exceptions limited to 1 MB os.close(errpipe_read) if data != "": os.waitpid(self.pid, 0) child_exception = pickle.loads(data) raise child_exception def _handle_exitstatus(self, sts): if os.WIFSIGNALED(sts): self.returncode = -os.WTERMSIG(sts) elif os.WIFEXITED(sts): self.returncode = os.WEXITSTATUS(sts) else: # Should never happen raise RuntimeError("Unknown child exit status!") _active.remove(self) def poll(self): """Check if child process has terminated. Returns returncode attribute.""" if self.returncode == None: try: pid, sts = os.waitpid(self.pid, os.WNOHANG) if pid == self.pid: self._handle_exitstatus(sts) except os.error: pass return self.returncode def wait(self): """Wait for child process to terminate. Returns returncode attribute.""" if self.returncode == None: pid, sts = os.waitpid(self.pid, 0) self._handle_exitstatus(sts) return self.returncode def communicate(self, input=None): """Interact with process: Send data to stdin. Read data from stdout and stderr, until end-of-file is reached. Wait for process to terminate. The optional input argument should be a string to be sent to the child process, or None, if no data should be sent to the child. communicate() returns a tuple (stdout, stderr).""" read_set = [] write_set = [] stdout = None # Return stderr = None # Return if self.stdin: # Flush stdio buffer. This might block, if the user has # been writing to .stdin in an uncontrolled fashion. self.stdin.flush() if input: write_set.append(self.stdin) else: self.stdin.close() if self.stdout: read_set.append(self.stdout) stdout = [] if self.stderr: read_set.append(self.stderr) stderr = [] while read_set or write_set: rlist, wlist, xlist = select.select(read_set, write_set, []) if self.stdin in wlist: # When select has indicated that the file is writable, # we can write up to PIPE_BUF bytes without risk # blocking. POSIX defines PIPE_BUF >= 512 bytes_written = os.write(self.stdin.fileno(), input[:512]) input = input[bytes_written:] if not input: self.stdin.close() write_set.remove(self.stdin) if self.stdout in rlist: data = os.read(self.stdout.fileno(), 1024) if data == "": self.stdout.close() read_set.remove(self.stdout) stdout.append(data) if self.stderr in rlist: data = os.read(self.stderr.fileno(), 1024) if data == "": self.stderr.close() read_set.remove(self.stderr) stderr.append(data) # All data exchanged. Translate lists into strings. if stdout != None: stdout = ''.join(stdout) if stderr != None: stderr = ''.join(stderr) # Translate newlines, if requested. We cannot let the file # object do the translation: It is based on stdio, which is # impossible to combine with select (unless forcing no # buffering). if self.universal_newlines and hasattr(open, 'newlines'): if stdout: stdout = self._translate_newlines(stdout) if stderr: stderr = self._translate_newlines(stderr) self.wait() return (stdout, stderr) def _demo_posix(): # # Example 1: Simple redirection: Get process list # plist = Popen(["ps"], stdout=PIPE).communicate()[0] print "Process list:" print plist # # Example 2: Change uid before executing child # if os.getuid() == 0: p = Popen(["id"], preexec_fn=lambda: os.setuid(100)) p.wait() # # Example 3: Connecting several subprocesses # print "Looking for 'hda'..." p1 = Popen(["dmesg"], stdout=PIPE) p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) print repr(p2.communicate()[0]) # # Example 4: Catch execution error # print print "Trying a weird file..." try: print Popen(["/this/path/does/not/exist"]).communicate() except OSError, e: if e.errno == errno.ENOENT: print "The file didn't exist. I thought so..." print "Child traceback:" print e.child_traceback else: print "Error", e.errno else: print >>sys.stderr, "Gosh. No error." def _demo_windows(): # # Example 1: Connecting several subprocesses # print "Looking for 'PROMPT' in set output..." p1 = Popen("set", stdout=PIPE, shell=True) p2 = Popen('find "PROMPT"', stdin=p1.stdout, stdout=PIPE) print repr(p2.communicate()[0]) # # Example 2: Simple execution of program # print "Executing calc..." p = Popen("calc") p.wait() if __name__ == "__main__": if mswindows: _demo_windows() else: _demo_posix() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/0000755000175000017500000000000012146210102021134 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/InputForm/0000755000175000017500000000000012146210101023056 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/InputForm/Tk/0000755000175000017500000000000012146210177023451 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/InputForm/Tk/moveTk.py0000644000175000017500000002074407320126022025270 0ustar debiandebian import tkColorChooser import Tkinter T = Tkinter from mglutil.util.callback import CallBackFunction from mglutil.gui.BasicWidgets.Tk.thumbwheel import ThumbWheel ## from ViewerFramework.gui import InputFormDescr, InputForm from mglutil.gui.InputForm.Tk.gui import InputFormDescr, InputForm class IntThumbWheel(ThumbWheel): def __init__(self, master=None, width=200, height=40, nblines=40): ThumbWheel.__init__(self, master, width, height, nblines) self.showLabelInWidget = 1 def get(self): return int(self.val) class MovableWidget: def __init__(self, widget, posx=0, posy=0, gridSize=1): self.widget = widget self.widget.place(x=posx, y=posy) self.widget.bind('', self.enter) self.widget.bind('', self.showMenu) #self.widget.bind('', self.leave) # Creating the frame that will resize when resizing the widget. self.resizeDraw = T.Frame(widget.master, relief='ridge', background='red') ## self.resizeDraw.bind('', self.resizeTop) ## self.resizeDraw.bind('', self.endResize) self.posx = posx self.posy = posy self.posxg = posx self.posyg = posy self.gs = gridSize self.optionWidgets = { 'activebackground':self.setColor, 'activeforeground':self.setColor, 'background':self.setColor, 'foreground':self.setColor, 'disabledbackground':self.setColor, 'disabledforeground':self.setColor, 'highlightbackground':self.setColor, 'highlightforeground':self.setColor, 'highlightcolor':self.setColor, 'borderwidth':self.getInt, } self.cc = tkColorChooser.Chooser() self.buildMenu() def setColor(self): return self.cc.show()[1] def getInt(self): idf = InputFormDescr(title='Choose a value') idf.append({'widgetType':IntThumbWheel, 'name':'tw', 'wcfg':{'width':125, 'height':30, 'nblines':30}}) form = InputForm(master=self.widget.master, root = None, descr=idf) values = form.go() return values['tw'] def setOption_cb(self, option, event=None): value = self.optionWidgets[option]() ## print option, value apply( self.widget.configure, (), {option:value} ) def buildMenu(self): self.menu = T.Menu(self.widget.master) for k in self.widget.keys(): if k in self.optionWidgets.keys(): cb = CallBackFunction(self.setOption_cb, k) self.menu.add_command(label=k, command=cb) def showMenu(self, event): self.menu.post(event.x_root, event.y_root) def place(self, widget, x=None, y=None, w=None, h=None, **kw): gs = self.gs if x: kw['x'] = (x/gs)*gs if y: kw['y'] = (y/gs)*gs if w: kw['width'] = w if h: kw['height'] = h ## print kw['x'], kw['y'], self.posx, self.posy apply( widget.place, (), kw) def enter(self, event=None): self.widget.focus_set() self.widget.bind('', self.moveOnButton) def moveOnButton(self, event=None): x0 = self.posx y0 = self.posy w = self.widget.winfo_width() h = self.widget.winfo_height() self.origx = x = event.x self.origy = y = event.y if y>0 and y<10: self.widget.place_forget() self.resizeDraw.configure(cursor='top_side') self.place(self.resizeDraw, self.posx, self.posy, w, h) self.widget.update_idletasks() self.resizeDraw.grab_set() self.resizeDraw.bind('', self.resizeTop) self.resizeDraw.bind('', self.endResize) elif yh-10: self.resizeDraw.configure(cursor='bottom_side') self.widget.place_forget() self.place(self.resizeDraw, self.posx, self.posy, w, h) self.widget.update_idletasks() self.resizeDraw.grab_set() self.resizeDraw.bind('', self.resizeBottom) self.resizeDraw.bind('', self.endResize) elif x>0 and x<10: self.resizeDraw.configure(cursor='left_side') self.widget.place_forget() self.place(self.resizeDraw, self.posx, self.posy, w, h) self.widget.update_idletasks() self.resizeDraw.grab_set() self.resizeDraw.bind('', self.resizeLeft) self.resizeDraw.bind('', self.endResize) elif xw-10: self.resizeDraw.configure(cursor='right_side') self.widget.place_forget() self.place(self.resizeDraw, self.posx, self.posy, w, h) self.widget.update_idletasks() self.resizeDraw.grab_set() self.resizeDraw.bind('', self.resizeRight) self.resizeDraw.bind('', self.endResize) else: self.widget.configure(cursor='') def resizeTop(self, event=None): dy = event.y-self.origy self.posy = self.posy+dy w = self.resizeDraw.winfo_width() h = self.resizeDraw.winfo_height() self.place(self.resizeDraw, self.posx, self.posy, w, h-dy) def resizeLeft(self, event=None): dx = event.x-self.origx self.posx = self.posx+dx w = self.resizeDraw.winfo_width() h = self.resizeDraw.winfo_height() self.place(self.resizeDraw, self.posx, self.posy, w-dx, h) def resizeRight(self, event=None): dx = event.x-self.origx w = self.resizeDraw.winfo_width() h = self.resizeDraw.winfo_height() self.place(self.resizeDraw, self.posx, self.posy, w+dx, h) self.origx = self.origx+dx def resizeBottom(self, event=None): dy = event.y-self.origy w = self.resizeDraw.winfo_width() h = self.resizeDraw.winfo_height() self.place(self.resizeDraw, self.posx, self.posy, w, h+dy) self.origy = self.origy+dy def endResize(self, event=None): self.resizeDraw.grab_release() w = self.resizeDraw.winfo_width() h = self.resizeDraw.winfo_height() self.resizeDraw.place_forget() self.widget.place(x=self.posx, y=self.posy, width=w, height=h) def moveRight(self, event=None): event.widget.place_forget() self.posx = self.posx+1 event.widget.place(x=self.posx, y=self.posy) def moveLeft(self, event=None): event.widget.place_forget() self.posx = self.posx-1 event.widget.place(x=self.posx, y=self.posy) def moveUp(self, event=None): event.widget.place_forget() self.posy = self.posy-1 event.widget.place(x=self.posx, y=self.posy) def moveDown(self, event=None): event.widget.place_forget() self.posy = self.posy+1 event.widget.place(x=self.posx, y=self.posy) def recordPosition(self, event=None): self.x0 = event.x self.y0 = event.y ## print 'Origin', self.x0, self.y0 # self.widget.update_idletasks() self.widget.grab_set() def moveButton(self, event): ## print 'event', event.x, event.y dx = event.x - self.x0 dy = event.y - self.y0 self.widget.place_forget() self.posx = self.posx + dx self.posy = self.posy + dy gs = self.gs w = self.widget.winfo_width() h = self.widget.winfo_height() self.widget.place(x=self.posx, y=self.posy, width = w, height = h) ## def moveButton(self, event): ## print 'event', event.x, event.y ## dx = event.x - self.x0 ## dy = event.y - self.y0 ## self.widget.place_forget() ## self.posx = self.posx + dx ## self.posy = self.posy + dy ## gs = self.gs ## posxg = round((self.posx/float(gs)))*gs ## dx = self.posxg - posxg ## self.x0 = self.x0 + dx ## posyg = round((self.posy/float(gs)))*gs ## dy = self.posyg - posyg ## self.y0 = self.y0 + dy ## w = self.widget.winfo_width() ## h = self.widget.winfo_height() ## self.widget.place(x=self.posxg, y=self.posyg, width = w, height = h) def endMove(self, event=None): self.widget.grab_release() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/InputForm/Tk/VFPmw.py0000644000175000017500000001152207300046146025022 0ustar debiandebianimport Pmw, Tkinter # Pmw_0_8_5 class VFRadioSelect(Pmw.RadioSelect): """ This class is a wrapper for the Pmw.RadioSlect class. It implements : - get method: to get the current value. - set method: to set the radioslect to a given value. Pmw.RadioSelect constructor arguments: buttontype='button', command=None, labelmargin=0, labelpos=None, orient='vertical', padx=5, pady=5, selectmode='single' VFPmw.VFRadioSelect new arguments: buttonText = [] list of the label for each button contained in the RadioSelect widget. """ def __init__(self, parent, buttonText=[], **kw): """ New constructor argument: - buttonText: label for the button in the RadioSelect""" # 1- Define optionDefs optiondefs = (()) # 2 Call the self.defineOptions method self.defineoptions(kw, optiondefs) # 3- Call the constructor of the base class Pmw.EntryField Pmw.RadioSelect.__init__(self, parent) # 4- Call the initialiseoption method self.initialiseoptions(VFRadioSelect) for text in buttonText: self.add(text) def set(self, buttonName): """ Check the button corresponding the buttonName""" self.invoke(buttonName) def get(self): """Get the name of button curent selected and return it""" curbuttonName = self.getcurselection() return curbuttonName class VFButtonBox(Pmw.ButtonBox): """ This class is a wrapper for the Pmw.ButtonBox class. the __init__method takes a new argument buttonText which is the list of the button text contained in the ButtonBox. It implements : - set method: to set the default button in the button box to a given value. Pmw.ButtonBox constructor arguments: buttontype (default Tkinter.Button) label_text: default '' labelmargin=0 labelpos=None orient='vertical' padx=3, pady=3 """ def __init__(self, parent, buttonText=[], **kw): # 1- Define optionDefs optiondefs = (()) # 2 Call the self.defineOptions method self.defineoptions(kw, optiondefs) # NO NEED of the new label_text argument already existing ! # 3- Call the constructor of the base class Pmw.EntryField Pmw.ButtonBox.__init__(self, parent) # 4- Call the initialiseoption method self.initialiseoptions(VFButtonBox) # Here buttonText should be a list of tuple: # (buttonName, callBack) for text in buttonText: self.add(text) def set(self, buttonName): """ call the command_callBack bound to the button buttonName. Problem if no command """ # What happens here when setdefault is called should also call # the callback self.setdefault(buttonName) class VFEntryField(Pmw.EntryField): """ This class is a wrapper for the Pmw.EntryField class. Pmw.EntryField arguments/options and their default value: command : None, errorbackground : 'pink', extravalidators : {}, invalidcommand : None, label_text : '' ???? labelmargin : 0, labelpos : None, modifiedcommand : None, validate : {}, value : '' New methods: - set method: to set the default entry in the counterentry field to a given value. - get method: to get the current value in the entry field """ def __init__(self, parent=None, **kw): # 1- Define optionDefs optiondefs = (()) # 2 Call the self.defineOptions method self.defineoptions(kw, optiondefs) # NO NEED of the new label_text argument already existing ! # 3- Call the constructor of the base class Pmw.EntryField Pmw.EntryField.__init__(self, parent) # 4- Call the initialiseoption method self.initialiseoptions(VFEntryField) def set(self, defaultvalue): self.setentry(defaultvalue) def get(self): curValue = self.invoke() return curValue class VFNoteBook(Pmw.NoteBook): """ The VFNoteBookR class is a wrapper for the Pmw.NoteBookR class.""" def __init__(self, parent, listLevel, pagesDescr= {}, **kw): #self.listLevel = listLevel apply(Pmw.NoteBook.__init__, (self,parent), kw) print pagesDescr # Creates the pages self.pages = {} for level in listLevel: self.pages[level] = self.add(level) if not pagesDescr.has_key(level): continue descr = pagesDescr[level] widget = apply(descr['widgetType'], (self.pages[level],), descr['wcfg']) apply(widget.grid, (), descr['gridcfg']) #print self.pages mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/InputForm/Tk/Tests/0000755000175000017500000000000012146210102024537 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/InputForm/Tk/Tests/test_InputForm.py0000644000175000017500000003413210725343144030114 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/InputForm/Tk/Tests/test_InputForm.py,v 1.7 2007/12/04 21:28:04 vareille Exp $ # # $Id: test_InputForm.py,v 1.7 2007/12/04 21:28:04 vareille Exp $ # """ This module implements a set of functions to test the InputForm class """ import sys from mglutil.regression import testplus import numpy.oldnumeric as Numeric import Tkinter, Pmw from mglutil.gui.InputForm.Tk.gui import InputFormDescr, InputForm,\ CallBackFunction from mglutil.gui.BasicWidgets.Tk.customizedWidgets import ListChooser from mglutil.util.misc import ensureFontCase master = None root = None descr = None Value = 0 def setUp(): global master global root global Value master = Tkinter.Tk() def createDescr(): descr = InputFormDescr(title = 'Testing InputForm') descr.append({'name':'checkbutton', 'widgetType':Tkinter.Checkbutton, 'wcfg':{'text':'Checkbutton', 'variable':Tkinter.IntVar()}, 'gridcfg':{'sticky':'w'}}) descr.append({'name':'radioselect', 'widgetType':Pmw.RadioSelect, 'listtext':['rb1', 'rb2', 'rb3','rb4', 'rb5', 'rb6', 'rb7', 'rb8', 'rb9','rb10', 'rb11', 'rb12'], 'wcfg':{'labelpos':'n', 'label_text':'Radiobuttons: ', 'orient':'vertical', 'buttontype':'radiobutton'}, 'gridcfg':{'sticky':'w'} }) descr.append({'name':'radioselect2', 'widgetType':Pmw.RadioSelect, 'listtext':['rb1', 'rb2', 'rb3','rb4', 'rb5', 'rb6', 'rb7', 'rb8', 'rb9','rb10', 'rb11', 'rb12'], 'wcfg':{'labelpos':'n', 'label_text':'Radiobuttons: ', 'orient':'horizontal', 'buttontype':'radiobutton'}, 'gridcfg':{'sticky':'w'} }) entries = [('Chocolate',None), ('Vanilla', None), ('Strawberry', None), ('Coffee',None), ('Pistachio', None), ('Rasberry',None), ] descr.append({'name':'listchooser', 'widgetType':ListChooser, 'wcfg':{'entries':entries}, 'gridcfg':{'sticky':'w'} }) return descr def tearDown(): # del master master.destroy() def test_inputform_1(): """ Function to test the instanciation of an InputForm object with the following arguments: master = Tkinter.Tk() root = None descr = InputFormDescr containing a checkbutton and a radioselect widget... very simple. and the default value for the other argument of the constructor without specifying them """ descr = createDescr() form = InputForm(master, root, descr) setWidget = {'checkbutton':1, 'radioselect':'rb9', 'radioselect2':'rb4', 'listchooser':'Pistachio'} value = form.testForm(setWidget=setWidget) assert value['checkbutton']==1, 'Expected 1, got %s'%(value['checkbutton']) assert value['radioselect']=='rb9' assert value['radioselect2']=='rb4' assert value['listchooser']==['Pistachio',] form.destroy() def test_inputform_2(): """ Function to test the instanciation of an InputForm object with the following arguments: master = Tkinter.Tk() root = None descr = InputFormDescr containing a checkbutton and a radioselect widget... very simple. and the default value for the other argument of the constructor modal = 1 blocking = 0, defaultDirection = 'row', closeWithWindow = 1, onDestroy = None okCfg = {'text':'OK'} cancelCfg = {'text':'Cancel'} initFunc = None Focus on the scrolled frame options. """ import Pmw descr = createDescr() form = InputForm(master, root, descr, modal=1, blocking=0, defaultDirection='row', closeWithWindow=1, onDestroy=None, okCfg={'text':'Validate'}, cancelCfg={'text':'Dismiss'}, scrolledFrame = 1, width=400, height=500, initFunc=None) assert isinstance(form.sf, Pmw.ScrolledFrame) setWidget = {'checkbutton':1, 'radioselect':'rb9', 'radioselect2':'rb4', 'listchooser':'Pistachio'} value = form.testForm(setWidget=setWidget) form.destroy() def test_inputform_3(): """ Function to test the instanciation of an InputForm object with the following argument, same options than before but this time the default arguments are specified. Change the text of the OK button to VALIDATE and the cancel button to DISMISS master = Tkinter.Tk() root = None descr = InputFormDescr containing a checkbutton and a radioselect widget... very simple. modal = 1 blocking = 0, defaultDirection = 'row', closeWithWindow = 1, onDestroy = None, sFrameCfg = {} okCfg = {'text':'VALIDATE'} cancelCfg = {'text':'DISMISS'} initFunc = None Focus on the ok and cancel button options """ descr = createDescr() # I don't know how to make sure that the ok button is now labeled VALIDATE # and the cancel button 'DISMISS'. form = InputForm(master, root, descr, modal=1, blocking=0, defaultDirection='row', closeWithWindow=1, onDestroy=None, okCfg={'text':'VALIDATE'}, cancelCfg={'text':'DISMISS'}, initFunc=None) setWidget = {'checkbutton':1, 'radioselect':'rb9', 'radioselect2':'rb4', 'listchooser':'Pistachio'} value = form.testForm(setWidget=setWidget) #value = form.testForm() form.destroy() def test_inputform_okcfg(): """ Function to test the creation of an object InputForm with: master = Tkinter.Tk() root = None descr = InputFormDescr containing a checkbutton and a radioselect widget... very simple. okCfg = {'text':'Validate', 'command':validate_cb} cancelCfg = {'text':'Cancel', 'command':dismiss_cb} The other argument keep their default values. Focus on the ok and cancel buttons option. Adding a function to be called after by ok_cb or cancel_cb. In this case the additional functions dismiss_cb and validate_cb don't take any arguments """ global dismiss global validate dismiss = False validate = False def dismiss_cb(): global dismiss dismiss = True def validate_cb(): print "In validate_cb" global validate validate = True print validate descr = createDescr() form = InputForm(master, root, descr, modal=1, blocking=0, okCfg={'text':'Validate', 'command':validate_cb}, cancelCfg={'text':'Dismiss', 'command':dismiss_cb}) setWidget = {'checkbutton':1, 'radioselect':'rb9', 'radioselect2':'rb4', 'listchooser':'Pistachio'} value = form.testForm(setWidget=setWidget) print 'validate', validate print 'dismiss', dismiss assert validate assert not dismiss form.destroy() def test_inputform_initialize(): """ Function to test the creation of an object InputForm with: master = Tkinter.Tk() root = None descr = InputFormDescr containing a checkbutton and a radioselect widget... very simple. and the default value for the other argument of the constructor initFunc = initialize() Focus on the initFunc """ def initialize(form): w = form.descr.entryByName['listchooser']['widget'] w.add(('Coconut', None)) descr = createDescr() form = InputForm(master, root, descr, initFunc=initialize) setWidget = {'checkbutton':1, 'radioselect':'rb9', 'radioselect2':'rb4', 'listchooser':'Pistachio'} value = form.testForm(setWidget=setWidget) ent = form.descr.entryByName['listchooser']['widget'].entries assert 'Coconut' in map(lambda x: x[0], ent) def test_inputform_groupwidgetsdefault(): descr = InputFormDescr(title = 'Testing InputForm') descr.append({'name':'group', 'widgetType':Tkinter.Radiobutton, 'listtext':['rb1', 'rb2', 'rb3'], 'defaultValue':'rb3', 'gridcfg':{'sticky':'w'}}) form = InputForm(master, root, descr) value = form.testForm() assert value['group']=='rb3' form.destroy() ## def test_inputform_groupwidgets(): ## descr = InputFormDescr(title = 'Testing InputForm') ## descr.append({'name':'group', ## 'widgetType':Tkinter.Radiobutton, ## 'listtext':['rb1', 'rb2', 'rb3'], ## 'defaultValue':'rb3', ## 'wcfg':{'variable':Tkinter.StringVar()}, ## 'gridcfg':{'sticky':'w'}}) ## form = InputForm(master, root, descr) ## setWidget={'group':'rb1'} ## value = form.testForm(setWidget=setWidget) ## print value['group'] ## assert value['group']=='rb1' def test_thumbwheel(): def tw_cb(event=None): pass from mglutil.gui.BasicWidgets.Tk.thumbwheel import ThumbWheel descr = InputFormDescr(title = 'Testing InputForm') descr.append({'name':'thumbwheel', 'widgetType':ThumbWheel, 'tooltip':"""Right click on the widget will display the control panel and you can type a value manually""", 'defaultValue':100, 'wcfg':{'text':None, 'showLabel':1, 'width':100, 'min':0, 'lockBMin':1, 'lockBMax':1, 'lockBIncrement':1, 'value':40, 'oneTurn':1000, 'type':'int', 'increment':2, 'canvascfg':{'bg':'red'}, 'wheelLabcfg1':{'font':(ensureFontCase('times'),14,'bold')}, 'wheelLabcfg2':{'font':(ensureFontCase('times'),14,'bold')}, 'callback':tw_cb, 'continuous':1, 'wheelPad':1, 'height':20}, 'gridcfg':{'sticky':'e','row':-1}}) form = InputForm(master, root, descr) value = form.testForm() assert value['thumbwheel']==100 form.destroy() def test_scrolledText(): descr = InputFormDescr(title = "Testing ScrolledText") descr.append({'widgetType':Pmw.ScrolledText, 'name':'sText', 'defaultValue':"""DEFAULT TEXT""", 'wcfg':{'labelpos':'n', 'label_text':'ScrolledText with headers', 'usehullsize': 1, 'hull_width': 400, 'hull_height': 300, 'text_wrap':'none', 'text_padx': 4, 'text_pady': 4, }, 'gridcfg':{'sticky':'wens'}}) form = InputForm(master, root, descr, modal=0, blocking=0) values = form.testForm() if not values['sText'] == 'DEFAULT TEXT\n': raise RuntimeError form.destroy() def test_inputForm_notebook(): descr = InputFormDescr(title = 'Testing InputForm') descr.append({'widgetType':Pmw.NoteBook, 'name':'notebook', 'container':{'Page1':"w.page('Page1')", 'Page2':"w.page('Page2')", 'Page3':"w.page('Page3')"}, 'wcfg':{'borderwidth':3}, 'componentcfg':[{'name':'Page1', 'cfg':{}}, {'name':'Page2', 'cfg':{}}, {'name':'Page3', 'cfg':{}}], 'gridcfg':{'sticky':'wnse'} }) entries = [('Chocolate',None), ('Vanilla', None), ('Strawberry', None), ('Coffee',None), ('Pistachio', None), ('Rasberry',None), ] descr.append({'name':'listchooser', 'parent':'Page1', 'widgetType':ListChooser, 'defaultValue':'Chocolate', 'wcfg':{'entries':entries}, 'gridcfg':{'sticky':'w'} }) descr.append({'name':'radioselect2', 'widgetType':Pmw.RadioSelect, 'parent':'Page2', 'listtext':['rb1', 'rb2', 'rb3','rb4', 'rb5', 'rb6', 'rb7', 'rb8', 'rb9','rb10', 'rb11', 'rb12'], 'wcfg':{'labelpos':'n', 'label_text':'Radiobuttons: ', 'orient':'horizontal', 'buttontype':'radiobutton'}, 'gridcfg':{'sticky':'w'} }) descr.append({'name':'radioselect', 'widgetType':Pmw.RadioSelect, 'parent':'Page3', 'defaultValue':'rb5', 'listtext':['rb1', 'rb2', 'rb3','rb4', 'rb5', 'rb6', 'rb7', 'rb8', 'rb9','rb10', 'rb11', 'rb12'], 'wcfg':{'labelpos':'n', 'label_text':'Radiobuttons: ', 'orient':'vertical', 'buttontype':'radiobutton'}, 'gridcfg':{'sticky':'w'} }) form = InputForm(master, root, descr, modal=0, blocking=0) values = form.testForm(container='Page3') assert values['radioselect']=='rb5' form.destroy() harness = testplus.TestHarness( __name__, connect = setUp, funs = testplus.testcollect( globals()), #funs = [test_inputform_4,] , disconnect = tearDown ) if __name__ == '__main__': print harness sys.exit( len( harness)) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/InputForm/Tk/Tests/__init__.py0000644000175000017500000000000007723713313026657 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/InputForm/Tk/__init__.py0000644000175000017500000000000007300046146025547 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/InputForm/Tk/gui.py0000644000175000017500000022007211742127123024611 0ustar debiandebian############################################################################# # # Author: Michel F. SANNER, Sophie I COON, Ruth HUEY # # Copyright: M. Sanner TSRI 2000 # ############################################################################# # $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/InputForm/Tk/gui.py,v 1.52 2012/04/13 22:53:07 sanner Exp $ # # $Id: gui.py,v 1.52 2012/04/13 22:53:07 sanner Exp $ # # """ This module implements a bunch of objects useful for user interaction """ #from DejaVu.extendedSlider import ExtendedSlider #from DejaVu.Slider import Slider import Tkinter import ScrolledText import Pmw import types import warnings from mglutil.util.packageFilePath import findFilePath from mglutil.util.misc import ensureFontCase, isInstance def autoPlaceWidget(master, relx=0.5, rely=0.3): """Auto center the window rooted at master""" if master.winfo_ismapped(): m_width = master.winfo_width() m_height = master.winfo_height() m_x = master.winfo_rootx() m_y = master.winfo_rooty() else: m_width = master.winfo_screenwidth() m_height = master.winfo_screenheight() m_x = m_y = 0 w_width = master.winfo_reqwidth() w_height = master.winfo_reqheight() x = m_x + (m_width - w_width) * relx y = m_y + (m_height - w_height) * rely if x+w_width > master.winfo_screenwidth(): x = master.winfo_screenwidth() - w_width elif x < 0: x = 0 if y+w_height > master.winfo_screenheight(): y = master.winfo_screenheight() - w_height elif y < 0: y = 0 master.geometry("+%d+%d" % (x, y)) class AutoPlaceWidget: """defines method _set_transient used to place a widget automatically to the center of the screen""" def _set_transient(self, master, relx=0.5, rely=0.3): widget = self.root widget.withdraw() # Remain invisible while we figure out the geometry widget.transient(master) widget.update_idletasks() # Actualize geometry information if master.winfo_ismapped(): m_width = master.winfo_width() m_height = master.winfo_height() m_x = master.winfo_rootx() m_y = master.winfo_rooty() else: m_width = master.winfo_screenwidth() m_height = master.winfo_screenheight() m_x = m_y = 0 w_width = widget.winfo_reqwidth() w_height = widget.winfo_reqheight() x = m_x + (m_width - w_width) * relx y = m_y + (m_height - w_height) * rely if x+w_width > master.winfo_screenwidth(): x = master.winfo_screenwidth() - w_width elif x < 0: x = 0 if y+w_height > master.winfo_screenheight(): y = master.winfo_screenheight() - w_height elif y < 0: y = 0 widget.geometry("+%d+%d" % (x, y)) widget.deiconify() # Become visible at the desired location ## self.info() class ListChooser: """class to present a list of objects in a scrolled listbox. entries are given as a list of items associated with a description. double clicking on an entry display the associated comment""" def __init__(self, root, mode='single', title='Choose', entries = None, width=20, defaultValue=None, lbpackcfg={'fill':'x', 'expand':0}, lbwcfg={}): assert mode in ['single', 'browse', 'multiple', 'extended' ] # put everything inside a Frame self.top = Tkinter.Frame(root, bd=4) # add a scrolled text widget to display comments self.comments = ScrolledText.ScrolledText(self.top, width=width, height=4) self.comments.pack(fill='both', expand=0) # add a title self.title = Tkinter.Label(self.top,text=title) self.title.pack(side='top', anchor='n') # build the scroll list f = Tkinter.Frame(self.top) self.mode = mode scrollbar = Tkinter.Scrollbar(f, orient='vertical') lbwcfg['selectmode'] = mode lbwcfg['yscrollcommand'] = scrollbar.set self.lb = apply( Tkinter.Listbox, (f, ), lbwcfg) scrollbar.config(command=self.lb.yview) scrollbar.pack(side='right', fill='y') apply( self.lb.pack, (), lbpackcfg) f.pack(fill='x', expand=0) self.hasInfo = 0 self.entries = [] # add entries if entries: for e in entries: if type(e)==types.ListType or type(e)==types.TupleType: self.add(e[0], e[1]) else: self.add(e) if self.hasInfo==0: self.comments.forget() if defaultValue: if self.hasInfo: assert defaultValue in map(lambda x: x[0], entries) # get the entry of the listBox corresponding to the defaultValue. defaultEntry = filter(lambda x, df = defaultValue: x[0] == df, entries)[0] else: assert defaultValue in map(lambda x: x, entries) # get the entry of the listBox corresponding to the defaultValue. defaultEntry = filter(lambda x, df = defaultValue: x == df, entries)[0] # Get its index indexDefaultValue = entries.index(defaultEntry) # Set the the selection at this index using the select_set of the # listBox widget. self.lb.select_set(indexDefaultValue) def add(self, entry, comment=None): """add an entry to the list""" self.entries.append( (entry, comment) ) if type(entry) is not types.StringType: entry = repr(entry) self.lb.insert('end', entry) if not comment is None: self.lb.bind("", self.info, '+') self.hasInfo=1 self.comments.pack() def insert(self, pos, entry, comment=None): """insert an entry to the list""" #assert pos < len(self.entries) if pos == 'end': self.entries.append( (entry, comment) ) else: self.entries.insert(pos, (entry, comment)) if type(entry) is not types.StringType: entry = repr(entry) self.lb.insert(pos, entry) def info(self, event=None): """dispaly information about the curent selection""" self.comments.delete(0.0, 'end') s=self.entries[map( int, self.lb.curselection())[0]][1] self.comments.insert('end', s+'\n') def clear(self): """clear all entries""" #self.lb.delete(0.0, 'end') self.lb.delete(0, 'end') self.entries = [] def clearComments(self): """clear all entries""" #self.comments.delete(0.0, 'end') self.comments.delete(0, 'end') def remove(self, entry): """remove an entry""" ind = map(lambda x: x[0],self.entries).index(entry) self.entries.remove(self.entries[ind]) self.lb.delete( ind ) def get(self, event=None): """get the current selection""" res = [] for ent in map( int, self.lb.curselection() ): res.append( self.entries[ ent ][0] ) return res def select(self, first, last=None): """add an entry to the current selection""" if last and self.mode!='single': self.lb.select_set(first, last) else: self.lb.select_set(first) self.info() from SimpleDialog import SimpleDialog import string ## class InputFormItem: ## """Class to describe things that can be put inside an inputForm""" ## def __init__(self, tkwcfg={}, tkpackOptions={}, tkpackMode=None): ## self.master = None ## self.type = Tkinter.Entry ## self.name = 'NoName' ## self.tkwcfg = tkwcfg ## self.tkpackOptions = tkpackOptions ## if tkpackMode==None: self.tkpacker = Tkinter.grid ## else: self.tkpackMode = tkpacker ## class IFentry(InputFormItem): ## pass ## class IFradiobutton(InputFormItem): ## pass ## class IFcheckbutton(InputFormItem): ## pass ## class IFbutton(InputFormItem): ## pass ## class IFframe(InputFormItem): ## pass ## class IFscrolledText(InputFormItem): ## pass ## class IFlistChooser(InputFormItem): ## def __init__(self, mode='single', title='choose one', entries=[], ## tkwcfg={}, tkpackOptions={}, tkpackMode=None): ## InputFormItem.__init__(self, tkwcfg=tkwcfg, ## tkpackOptions=tkpackOptions, ## tkpackMode=tkpackMode) ## self.mode = mode ## self.title = title ## self.entries = entries ## class IFunctionButton(InputFormItem): ## pass from UserList import UserList class InputFormDescr(UserList): """ InputFormDescr is a list of dictionary describing the widgets to be placed in an inputform. Such an object can be passed to an InputForm object to actually build an InputForm The dictionnary can contain the following key:value couples: * widgetType: This specifies the type of the widget. It is usually a class name that can be any of the following o any Tkinter widget (Tkinter.Button etc....) o any CustomizedWidgets widgets (ListChooser, Dial etc....) o any of the Pmw widgets (Pmw.EntryFields....) For examples go to any Pmv commands. The dictionary of a widget can hold the following (keys:value) couples: * name : string to specify a name associated to the widget. This name is then used to create the value dictionary. * tooltip : string describing the widget which will be displayed in a balloon when the mouse is over it. * wcfg : The widget configuration dictionary must contain all the couple keyword:value you want to use to describe your widget. For a list of the option available to describe widgets: o Tkinter widgets options http://www.pythonware.com/library/tkinter/introduction/index.htm o Pmw widgets options http://pmw.sourceforge.net/doc/refindex.html o Tix widgets options http://www.python.org/doc/current/lib/module-Tix.html o Customized widgets options: http://www.scripps.edu/~sanner/python/inputform/customizedWidgets.html * gridcfg : The grid configuration dictionary specifies where in the form the current widget will be placed. It contains keyword:value where the keys are the option of the Tkinter grid manager. The value of the row and column can be negative if you want to place your widget several row or column before the last one. The position of the widget will be found by the function findGridPosition. If no row or column is specified it will place your widget after the last one according to the specified direction you want your inputform to be built.You can't leave an empty space between two widgets. * container : dictionary specifying the current widget or part of the current widget as a container. o key :(string) name of the container. This name will then be used to specify their parent o value : instance of the container or a string that will be evaluated and the result of which will be the container. 'container':{'Page1':'w.page('Page1')}, example: Notebook widget with two pages Page1 and Page2 'container':{'Page1':'w.page('Page1')', 'Page2':'w.page('Page2')' Frame 'container':{'myFrame':'w'} (see colorCommands.py, APBSCommand.py, fileCommands for example) * parent : allows to specify in which container to pack the current widget.(see colorCommands.py, APBSCommand.py, fileCommands for example) * componentcfg: dictionnary allowing the developer to describe the components of the current widget. o key : is the name of the component o value : description of the widget (see APBSCommand for an example) * defaultValue: The given defaultValue is used to initialize the widget if it has a bound variable or if the widget has a set method. * type :The keyword type is used to check the validity of the data the user gives (it is a string by default). * required : (1 or 0) The keyword required is flag to specify whether or not this field is required. example: ========================================================================= # Build a Tkinter.Button with the text 'hello', the text will be in # red, using the font times size 20 and bold, the background will # be blue when not activated and green when activated. # The foreground will be white when desactivated. The button's relief # will be sunken and its borderwidth will be 8 pixel. idf = InputFormDescr(title='Button Example') idf.append({'widgetType':Tkinter.Button, 'name':'helloBut', 'wcfg':{'text':'Hello','foreground':'White', 'background' : 'Blue', 'relief' : Tkinter.SUNKEN, 'font':(ensureFontCase('times'),20, 'bold'), 'borderwidth' : 8, 'activebackground' : 'Green'}, 'gridcfg':{'sticky':'we'}}) """ def __init__(self, title='Form'): UserList.__init__(self) self.title = title self.entryByName = {} # reverse lookup to find an item using a name class CallBackFunction: """ Class to allow to specify arguments to a callback function bound to a widget """ def __init__(self, function, *args, **kw): self.function = function self.args = args self.kw = kw def __call__(self, *args, **kw): args = self.args + args kw.update(self.kw) apply(self.function, args, kw) def getkw(kw, name): """ function to get a dictionary entry and remove it from the dictionary""" v = kw.get(name) if name in kw.keys(): del kw[name] return v class InputForm(AutoPlaceWidget): """ Class to create a inputForm to collect values from users and return these values. More information and examples can be found at http://www.scripps.edu/~sanner/software/inputform/tableOfContent.html required arguments: master -- argument to specify the master of the widget to be created which means that the current form will be a 'slave' of the given master. MS april 2012: this seems to be the root window, i.e. top window. not really needed I think root -- If None is specified then a Tkinter.TopLevel object is created. else it is the frame into which the form will be created and displayed descr -- (instance of InputFormDescr) which is a list of dictionary describing the widgets to be added to the form. see the documentation string for InputFormDescr optional arguments : modal -- Flag specifying if the form is modal or not. When a form is modal it grabs the focus and only releases it when the form is dismissed. When a form is modal an OK and a CANCEL button will be automatically added to the form. (default = 1) blocking -- Flag specifying if the form is blocking or not. When set to 1 the form is blocking and the calling code will be stopped until the form is dismissed. An OK and a CANCEL button will be automatically added to the form. (default = 0) defaultDirection -- ('row', 'col') specifies the direction in which widgets are gridded into the form by default. (default='row') closeWithWindow -- Flag specifying whether or not the form should be minimized/maximized when the master window is. (default=1) okCfg -- dictionnary specifying the configuration of the OK button. if a callback function is specified using the keyword command this callback will be added to the default callback Ok_cb cancelCfg -- dictionnary specifying the configuration of the CANCEL button if a callback function is specified using the keyword command this callback will be added to the default callback Ok_cb initFunc -- specifies a function to initialize the form. onDestroy -- specifies a function to be called when using the close widget of a window. okcancel -- Boolean Flag to specify whether or not to create the OK and CANCEL button. scrolledFrame -- Flag when set to 1 the main frame is a scrollable frame else it is static Frame (default 0) width -- specifies the width of the main frame (400) height -- specifies the height of the main frame. (200) help -- specifies the web adress to a help page. If this is provided a Help (?) button will be created which will open a web browser to the given adress. If the list of argument of the constructor changes please update the showForm method of the ViewerFramework.VFCommand class to present a form for the user to fill out. After building the form the entryByName dictionary has been built and the InputFormDescr has been extended with a 'widget' entry.. The form can be constructed to be modal, i.e. the form grabs the focus and requires the form to be dissmissed using the OK or CANCEL button before the user can proceed. (this is the default behavior) When the form is NOT modal, it can still block and require the user to dismiss the form. The difference with modal is that other forms remain active, allowing for instance to pick something in a nother window. The program however blocks until the form is dismissed. When both the modal and blocking are 0, the form is displayed and worksasynchronously. The OK and Cancel buttons are not displayed. The form descriptor should provide a button to dismiss the form. The call back function for that button should call the destroy method. In this mode the current value of widgets have to retrieved manually. This can be done either by accessiing the widget directly: ipf[i]['widget'].get() or ipf.entryByName['mywidget'][widget].get(); or by calling the checkValues() method that returns a dictionary. You can also by giving to the argument defaultDirection the values 'col' or 'row', choose the direction to build the whole inputForm. For example if row is choosen all the widget if not specifies otherwise will be added row after row.. When the flag closeWidthWindow is set to 1 then the form created is closed simultaneously with the main window. It is set to 1 by default. """ def __init__(self, master, root, descr, modal=1, blocking=0, defaultDirection='row', closeWithWindow=1, okCfg={'text':'OK'}, cancelCfg={'text':'Cancel'}, initFunc=None, onDestroy=None, okcancel=1, scrolledFrame=0, width=None, height=None, okOnEnter=True, help=None): assert isinstance(descr, InputFormDescr) # master is the container widget self.master = master self.root = root self.ownsRoot = False # Creates a Tkinter Toplevel widget if self.root is None. if root is None: self.root = Tkinter.Toplevel(self.master) self.ownsRoot = True # use to decide to iconify or forget # Setting the title of self.root with the one provided. if isinstance(self.root, Tkinter.Tk) or \ isinstance(self.root, Tkinter.Toplevel): self.root.title(descr.title) self.modal = modal # when true, form will grab focus AND block self.blocking = blocking # when true and form is not modal, # make the form block self.okcancel = okcancel # When true an OK/CANCEL button will be created. # Variable used to grid the given widgets self.lastCol = 0 self.lastRow = 0 self.lastUsedRow = 0 self.lastUsedCol = 0 self.defaultDirection = defaultDirection # dictionary widgetID_entries : key = id of the widget # value = entries corresponding self.widgetID_entries = {} self.descr = descr self.descr.form = self # width and height autoSize = False if width is None: width = 400 autoSize = True if height is None: height = 200 autoSize = True # MAIN FRAME self.mf = Tkinter.Frame(self.root, bd=4) # form main frame if scrolledFrame: if autoSize: self.sf = Pmw.ScrolledFrame(self.mf) else: self.sf = Pmw.ScrolledFrame(self.mf, usehullsize = 1, hull_width = width, hull_height = height) self.sf.pack(padx=5, pady=3, fill='both', expand=0) self.f = self.sf.interior() else: self.f = Tkinter.Frame(self.mf, bd=4, relief='groove', width=width, height=height) # Create the parentName dictionnary with the name of the parent # and the container object self.parentName = {'mainContainer':{'container':self.f, 'widgets':[]}} #if not hasattr(self, 'last'): self.last = {} # Keep track of all the notebooks widget contained in the form and # all the Pmw widgets. self.notebooks = [] self.wwidgets=[] wnum = 0 for e in descr: # build reverse lookup dictionary if e.has_key('name'): descr.entryByName[e['name']] = e else: descr.entryByName[wnum] = e wnum=wnum+1 self.addEntry(e) # Call the initFunc method if not none. if not initFunc is None: initFunc(self) # Pack the frames. self.f.pack(fill='both', expand=0) self.mf.pack(fill='both', expand=0) # Build the ok and cancel buttons with the information # provided. if (self.blocking or self.modal) and self.okcancel: self.buildOkCancelButtons( okCfg, cancelCfg, help=help ) if self.ownsRoot: self._set_transient(self.master) if okOnEnter: self.root.bind("", self.OK_cb) else: if help: self.buildHelpButton(help) # FIXME: Need to find all the possibilities.... # bind the [x] button of the inputform if self.ownsRoot: if onDestroy is None: if (self.blocking or self.modal) and self.okcancel: # self Cancel_cb is modal or blocking self.root.protocol('WM_DELETE_WINDOW', self.Cancel_cb) else: # to just withdraw if isinstance(self.root, Tkinter.Tk) or \ isinstance(self.root, Tkinter.Toplevel): self.root.protocol('WM_DELETE_WINDOW', self.withdraw) else: # or finally the specified function. self.root.protocol('WM_DELETE_WINDOW', onDestroy) if closeWithWindow : if hasattr(self.root, "transient"): self.root.transient(self.master) #self._set_transient(self.master) ## Set the notebook widget to their natural size. for nb in self.notebooks: nb.setnaturalsize() ## Call the alignLabels method to align all the labels of the ## different Pmw widgets added to the form # apply(Pmw.alignlabels, (self.wwidgets,), {}) if autoSize: self.autoSize() def autoSize(self): if not self.ownsRoot: return self.root.update() # force packing to happen to size are right # self.root can be Tkinter.Frame instance. Frames do not have geometry attribute. if hasattr(self.root, "geometry"): w = self.root.winfo_reqwidth() h = self.root.winfo_reqheight() self.root.geometry('%dx%d'%(w,h)) ## ########################################################### ## # Methods handling the creation of each widgets def addEntry(self, entry = {}): """ optional argument: entry -- ({}) Dictionary describing the widget to be added. See the InputFormDescr documentation for the accepted format. This method creates each given widgets, find their position in the form, grid them, sets their default values etc... """ w = None if not entry.has_key('gridcfg'): entry['gridcfg'] = {} # dealing with the fact that the given widget belongs to # another container than the default mainContainer. if entry.has_key('parent') and \ self.parentName.has_key(entry['parent']): parent = self.parentName[entry['parent']]['container'] else: parent = self.f entry['parent'] = 'mainContainer' # widget type if entry.has_key('widgetType'): wtype = entry['widgetType'] else: entry['widgetType'] = wtype = Tkinter.Entry # InputForm if wtype == 'InputForm': w = self.addInputForm(parent, entry, wtype) # Container elif wtype == 'Container': w = self.addContainer(parent, entry, wtype) # FunctionCheckButton or FunctionRadiobutton: elif wtype in ['FunctionCheckbutton', 'FunctionRadiobutton']: w = self.addFunctionButton(parent, entry, wtype) # Save Button elif wtype == 'SaveButton': w = self.addSaveButton( parent, entry) # Open Button elif wtype == 'OpenButton': w = self.addOpenButton( self.f, entry) # ScrolledText elif wtype == 'ScrolledText': w = self.addScrolledText(parent, entry) # ListChooser: elif wtype == 'ListChooser': w = self.addListChooser( parent, entry ) # Entry elif issubclass( wtype, Tkinter.Entry): w = self.addTkinterEntry( parent, entry ) # other Tkinter Widget: elif issubclass( wtype, Tkinter.Widget): if entry.has_key('listtext'): w = self.addGroupWidget(parent, entry) else: w = self.addTkinterWidget( parent, entry ) # Python Mega Widgets : elif issubclass(wtype, Pmw.MegaWidget): w = self.addPMegaWidget(parent, entry) self.wwidgets.append(w) # Pmw MegaArchetype elif issubclass(wtype, Pmw.MegaArchetype): w = self.addPMegaWidget(parent, entry) self.wwidgets.append(w) else: # You can add any customized widget if you pass the class in wtype if type(wtype) in [types.ClassType, types.TypeType]: if not entry.has_key('wcfg'): entry['wcfg'] = {} #w = apply(wtype, (self.f,),entry['wcfg']) w = apply(wtype, (parent,),entry['wcfg']) if hasattr(w, 'set') and entry.has_key('defaultValue'): w.set(entry['defaultValue']) #w = wtype(self.f,entry['wcfg']) if not entry.has_key('gridcfg'): entry['gridcfg']={} else: raise ValueError("%s unsupported widget type"%str(wtype)) if w : # Once the widgets has been created # If a parent has been specified for this widgets if self.parentName.has_key(entry['parent']) and \ entry.has_key('name'): widgets = self.parentName[entry['parent']]['widgets'] widgets.append(entry['name']) # The widget is a container widget if entry.has_key('container'): for key, cont in entry['container'].items(): if type(cont) is types.StringType: exec("self.parentName['%s'] = {'container':%s, 'widgets':[]}"%(key,cont)) # print self.parentName[key] #elif type(cont) is types.InstanceType: elif isInstance(cont) is True: self.parentName[key]= {'container':cont, 'widgets':[]} # If tooltip string has been specified creating a Balloon # widget to display the tooltip if entry.has_key('tooltip'): balloon = Pmw.Balloon(parent, yoffset=30) try: balloon.bind(w, entry['tooltip']) entry['balloon'] = balloon except: entry['balloon'] = None # Finding the position of the widget in the form gridcfg = self.findGridPosition(entry['gridcfg']) if not gridcfg.has_key('sticky'): gridcfg['sticky']='wens' if gridcfg.has_key('weight'): weight=gridcfg['weight'] del gridcfg['weight'] else: weight=1 # Grid the widget. if hasattr(w, 'grid'): apply(w.grid,(), gridcfg) # the 2 following lines mean that the frame self.f # will allow the widget w placed at gridcfg['row'], # gridcfg['column'] to resize with the corresponding # weight with itself only if the sticky option of the # grid method is specified. self.f.rowconfigure(gridcfg['row'], weight = weight) self.f.columnconfigure(gridcfg['column'], weight = weight) # Same for container widget if not parent == self.f: parent.rowconfigure(gridcfg['row'], weight = weight) parent.columnconfigure(gridcfg['column'], weight = weight) # Keep track of the different notebooks if wtype in [Pmw.NoteBook,]: self.notebooks.append(w) # Handle some widgets a particular way if wtype not in ['ListChooser','ScrolledText', Tkinter.Entry]: entry['widget'] = w self.widgetID_entries[w] = entry else: self.widgetID_entries[entry['widget']] = entry def addContainer(self, f, entry, wtype): """ Method handling container widgets """ if entry.has_key('wcfg'): wcfg = entry['wcfg'] if entry.has_key('frameType') and entry['frameType']=='scrolledFrame': parent = apply( Pmw.ScrolledFrame, (f,), wcfg) self.parentName[entry['name']] = {'container':parent.interior(), 'widgets':[]} else: parent = apply( Tkinter.Frame, (f,), wcfg) self.parentName[entry['name']] = {'container':parent, 'widgets':[]} return parent def addInputForm(self, f, entry, wtype): """ Method handling InputForm widgets """ if entry.has_key('wcfg'): wcfg = entry['wcfg'] else: wcfg = {} frame = Tkinter.Frame(f) description = entry['description'] wcfg['modal'] = 0 wcfg['blocking'] = 0 frame.form = apply( InputForm, ( frame, description), wcfg ) return frame def addFunctionButton(self, f, e, wtype): """Add a FunctionCheckbutton or FunctionRadiobutton""" if e.has_key('wcfg'): wcfg = e['wcfg'] else: wcfg = {} # if a variable is bound to the widget if not e.has_key('variable'): if wtype=='FunctionCheckbutton': f.var=Tkinter.IntVar() elif wtype=='FunctionRadiobutton': f.var=Tkinter.StringVar() e['variable'] = f.var wcfg['variable'] = e['variable'] else: wcfg['variable'] = e['variable'] if e.has_key('defaultValue'): wcfg['variable'].set(e['defaultValue']) if e.has_key('text'): wcfg['text'] = e['text'] if e.has_key('value'): wcfg['value'] = e['value'] if wtype=='FunctionCheckbutton': w = apply(Tkinter.Checkbutton,(f,),wcfg) elif wtype=='FunctionRadiobutton': w = apply(Tkinter.Radiobutton,(f,),wcfg) w.bind("", self.FuncButton_cb, "+") return w def addScrolledText(self, f, e): """Method handling ScrolledText widgets""" f1 = Tkinter.Frame(f) if e.has_key('label'): Tkinter.Label(f1, text=e['label']).pack(anchor = 'w') w = Tkinter.Text(f1) w.vbar = Tkinter.Scrollbar(f1, name='vbar') w.vbar['width'] = 15 w.vbar.pack(side = Tkinter.LEFT, fill = 'y') if e.has_key('size'): w['width'] = e['size'][0] w['height'] = e['size'][1] else: w['width'] = 80 w['height'] = 2 if e.has_key('defaultValue'): w.insert(Tkinter.END, e['defaultValue']) if e.has_key('writeButton'): wb = self.addWriteButton(f1) # Bind the descr to the Button write, will be used # by the write_cb function to write in the appropriate Text # zone. self.widgetID_entries[wb] = e wb.pack(side = 'right') if e.has_key('readButton'): rb = self.addReadButton(f1) # Bind the descr to the Button read, will be used # by the read_cb function to read in the appropriate Text # zone. self.widgetID_entries[rb] = e rb.pack(side = 'right') w.pack() w['yscrollcommand'] = w.vbar.set w.vbar['command'] = w.yview e['widget'] = w return f1 def addReadButton(self,frame): """ Method to add a button to read text from file and add it in a scrolled Text or a text zone. """ readBut = Tkinter.Button(frame, text = 'Read') readBut.bind("", self.read_cb, "+") return readBut def addWriteButton(self,frame): """ Method to add a button to write the text contained in a scrolled text or a text zone in a file.""" writeBut = Tkinter.Button(frame, text = 'Write') writeBut.bind("", self.write_cb, "+") return writeBut def addSaveButton(self, frame, wdescr): """ Method to add a button or a checkbutton or a radiobutton to open a Save fileBrowser. """ ## wdescr['widgetType'] = Tkinter.Button if wdescr.has_key('typeofwidget'): wdescr['widgetType'] = wdescr['typeofwidget'] else: wdescr['widgetType'] = Tkinter.Button saveBut = self.addTkinterWidget(frame, wdescr) wdescr['widgetType'] = 'SaveButton' saveBut.bind("", self.save_cb, "+") return saveBut def addOpenButton(self, frame, wdescr): """ Method to add a button , checkbutton or radiobutton to open file browser. """ wdescr['widgetType'] = Tkinter.Button openBut = self.addTkinterWidget(frame, wdescr) wdescr['widgetType'] = 'OpenButton' openBut.bind("", self.open_cb, "+") return openBut def addTkinterWidget(self, f, e): """ Method handling any Tkinter widgets """ if e.has_key('wcfg'): wcfg = e['wcfg'] else: wcfg = {} if e.has_key('text'): wcfg['text'] = e['text'] if e.has_key('variable'): wcfg['variable'] = e['variable'] elif not wcfg.has_key('variable') and \ (issubclass(e['widgetType'],Tkinter.Radiobutton) or \ issubclass(e['widgetType'],Tkinter.Checkbutton)): e['variable'] = wcfg['variable'] = Tkinter.StringVar() if e.has_key('textvariable'): wcfg['textvariable'] = e['textvariable'] e['variable'] = e['textvariable'] if e.has_key('command'): wcfg['command'] = e['command'] if e.has_key('value'): wcfg['value'] = e['value'] w = apply(e['widgetType'], (f,), wcfg) if e.has_key('defaultValue'): if hasattr(e['widgetType'], 'set') : w.set(e['defaultValue']) elif hasattr(e['widgetType'], 'insert') \ and (not e.has_key('textvariable') or \ not wcfg.has_key('textvariable')): #Text case but not Entry w.insert(Tkinter.END, e['defaultValue']) elif wcfg.has_key('textvariable'): #Entry widget case. wcfg['textvariable'].set(e['defaultValue']) elif wcfg.has_key('variable'): wcfg['variable'].set(e['defaultValue']) return w def addPMegaWidget(self, f, e): """ Method handling any Python Mega Widgets (Pmw) '-' character are replaced by '-' to avoid Pmw exceptions, the oppposite translation is done in checkValues() """ # - pass directly the python mega widget dictionary as an argument if e.has_key('wcfg'): wcfg = e['wcfg'] else: wcfg = {} w = apply(e['widgetType'], (f,), wcfg) w.pack(fill = 'x', padx = 10, pady = 10) # This mega widget can have components to be added to it # This will replace the listtext and listoption. if e.has_key('componentcfg'): for compcfg in e['componentcfg']: apply(w.add, (compcfg['name'].replace('_','-'),), compcfg['cfg']) elif e.has_key('listtext'): if e.has_key('listoption') and \ type(e['listoption']) is types.DictType: for name in e['listtext']: if e['listoption'].has_key(name): apply(w.add, (name.replace('_','-'),), e['listoption'][name]) else: for name in e['listtext']: w.add(name.replace('_','-')) ## if e.has_key('container'): ## for key, cont in e['container'].items(): ## if type(cont) is types.StringType: ## exec("self.parentName['%s'] = {'container':%s, 'widgets':[]}"%(key,cont)) ## #print self.parentName[key] ## elif type(cont) is types.InstanceType: ## self.parentName[key]= {'container':cont, 'widgets':[]} if e.has_key('defaultValue'): if isinstance(w, Pmw.ScrolledText): w.settext(e['defaultValue']) elif isinstance(w, Pmw.ScrolledListBox) \ or isinstance(w, Pmw.ScrolledText): w.setvalue(e['defaultValue']) elif hasattr(w,'set'): w.set(e['defaultValue']) elif hasattr(w,'invoke'): try: w.invoke(e['defaultValue']) except: if hasattr(w,'selectitem'): try: w.selectitem(e['defaultValue']) except: print 'Could not use %s as the defaultValue!'%e['defaultValue'] else: print 'sorry cannot set to the defaultValue', e['defaultValue'] elif hasattr(w,'insert'): w.insert('end',e['defaultValue']) return w def addGroupWidget(self,f,e): """ Method handling GroupWidgets """ if not e.has_key('wcfg'): e['wcfg'] = {} if not e.has_key('gridcfg'):e['gridcfg'] = {} j = 0 if e.has_key('direction'): direction = e['direction'] else: direction = self.defaultDirection if e.has_key('groupedBy'): groupedBy=e['groupedBy'] else: groupedBy = len(e['listtext']) number=len(e['listtext'])/groupedBy if len(e['listtext'])%groupedBy != 0: number=number+1 if j==0: # For the first radiobutton, use findGridPosition to get # the widget's position. gridcfg = self.findGridPosition(e['gridcfg']) firstrow = e['gridcfg']['row'] firstcolumn = e['gridcfg']['column'] for n in xrange(number): if j!= 0: if direction == 'col': self.lastUsedRow = firstrow + n self.lastUsedCol = firstcolumn - 1 else: self.lastUsedRow = firstrow - 1 self.lastUsedCol = firstcolumn + n while j<(groupedBy*(n+1)) and j", entry['command'], '+') return lc.top ## ############################################################# ## CALLBACK FUNCTIONS def open_cb(self, event = None): from ViewerFramework.VFGUI import fileOpenAsk self.releaseFocus() entry = self.widgetID_entries[event.widget] if entry.has_key('idir'): idir = entry['idir'] else: idir = None if entry.has_key('ifile'): ifile = entry['ifile'] else: ifile = None if entry.has_key('title'): title = entry['title'] else: title = '' if entry.has_key('types'): types = entry['types'] else: types = [('All types', '*.*')] newfile = fileOpenAsk(self.root, idir = idir, ifile = ifile, types = types, title = title) if entry.has_key('callback') and newfile: entry['callback'](newfile) entry['filename'] = newfile self.grabFocus() def save_cb(self, event = None): from ViewerFramework.VFGUI import fileSaveAsk self.releaseFocus() entry = self.widgetID_entries[event.widget] if entry.has_key('idir'): idir = entry['idir'] else: idir = None if entry.has_key('ifile'): ifile = entry['ifile'] else: ifile = None if entry.has_key('title'): title = entry['title'] else: title = '' if entry.has_key('types'): types = entry['types'] else: types = [('All types', '*.*')] newfile = fileSaveAsk(self.root,idir=idir,ifile=ifile,types= types, title = title) if entry.has_key('callback') and newfile: entry['callback'](newfile) entry['filename'] = newfile self.grabFocus() def read_cb(self, event = None): from ViewerFramework.VFGUI import fileOpenAsk self.releaseFocus() entry = self.widgetID_entries[event.widget] if entry.has_key('readFileType'): fileType = entry['readFileType'] else: fileType = [ ('Python Files', '*.py')] if entry.has_key('idir'): idir = entry['idir'] else: idir = None if entry.has_key('ifile'): ifile = entry['ifile'] else: ifile = None newfile = fileOpenAsk(self.root,idir=idir,ifile=ifile, types = fileType, title = 'Read function from file: ') if newfile != None: f = open(newfile, 'r') lines = f.read() entry['widget'].insert(Tkinter.END,lines) f.close() self.grabFocus() def write_cb(self, event = None): from ViewerFramework.VFGUI import fileSaveAsk self.releaseFocus() entry = self.widgetID_entries[event.widget] if entry.has_key('writeFileType'): fileType = entry['writeFileType'] else: fileType = [ ('Python Files', '*.py')] if entry.has_key('idir'): idir = entry['idir'] else: idir = None if entry.has_key('ifile'): ifile = entry['ifile'] else: ifile = None newfile = fileSaveAsk(self.root,idir=idir,ifile=ifile,types = fileType, title = 'Save function in file: ') if newfile != None: f = open(newfile, 'w') f.write(entry['widget'].get(1.0, Tkinter.END)) f.close() self.grabFocus() def FuncButton_cb(self,event = None): """ method used to display a window allowing the user to type in Python code """ import tkMessageBox # get the widget's description assert self.widgetID_entries[event.widget].has_key('variable') widget = self.widgetID_entries[event.widget] # code typein widget is modal self.releaseFocus() if not widget.has_key('defaultText'): widget['defaultText']='' if widget['widgetType']=='FunctionRadiobutton': widget['variable'].set(widget['text']) v = widget['variable'].get() # create a form description ifd = InputFormDescr(title = 'Define a function') if not widget.has_key('readFileType'): widget['readFileType']= [('Python Files','*.py')] if not widget.has_key('writeFileType'): widget['writeFileType']= [('Python Files','*.py')] if v or v == 'function' or v == 'mapfunction': if widget.has_key('size'): ifd.append({'name': 'UserFunction', 'label':widget['label'], 'widgetType':'ScrolledText', 'readFileType':widget['readFileType'], 'writeFileType': widget['writeFileType'], 'readButton':1,'writeButton':1, 'size':widget['size'], 'defaultValue':widget['defaultText']}) else: ifd.append({'name': 'UserFunction', 'label':widget['label'], 'widgetType':'ScrolledText', 'readFileType':widget['readFileType'], 'writeFileType': widget['writeFileType'], 'readButton':1,'writeButton':1, 'defaultValue':widget['defaultText']}) else: ifd.append({'name': 'UserFunction', 'label':'type in zone' , 'widgetType':'ScrolledText', 'readFileType':widget['readFileType'], 'writeFileType': widget['writeFileType'], 'readButton':1,'writeButton':1, 'defaultValue':widget['defaultText']}) window = InputForm(self.master, self.root, ifd) vals = window.go() self.grabFocus() if widget['widgetType']=='FunctionCheckbutton': widget['variable'].set('0') if len(vals)==0: return widget['userFunction'] = vals['UserFunction'] function = evalString(vals['UserFunction']) if widget['userFunction'] is None: tkMessageBox.showwarning('Color by properties', 'no function definied') return if widget.has_key('command'): values = widget['command'](function) widget['result'] = values else: widget['result'] = function def PMWnameToReal(self, e, name): # PMW does not accept names containing '_' for widgets # addPMegaWidget systematically replaced '_' in names by '-' # this functions is called by checkValues to fo the opposite # i.e. replace '-' by '_' if needed names = [] if e.has_key('componentcfg'): names = map( lambda x, e=e: e['componentcfg']['name'], e) elif e.has_key('listtext'): if e.has_key('listoption') and \ type(e['listoption']) is types.DictType: for name in e['listtext']: if e['listoption'].has_key(name): names.append(name) else: names = e['listtext'] # len of names can be 0, for instance the widget listing the MSMS # surfaces has an empty list for names if len(names)==0 or name in names: return name else: return name.replace('-','_') ## ##################################################################### ## def checkValues(self, container='all'): """ optional argument: container -- ('all') specifies the name of a container Method which gets the values of each widgets in the given container It will return a dictionary where the key is the name of the widget and the value is the value of the widget. This method is called by the OK_cb when the OK/CANCEL buttons exist and has to called otherwise. If the widget doesn't implement a get method a special case has to be implemented in this method. """ values = {} if container == 'all': contNames = self.parentName.keys() elif type(container) is types.StringType: contNames = [container,] else: contNames = container pN = self.parentName entryBN = self.descr.entryByName wNames = [] for name in contNames: wNames = wNames + pN[name]['widgets'] if len(wNames) == 0: print "WARNING: No widgets in these containers" for wName in wNames: wtype = entryBN[wName]['widgetType'] e = entryBN[wName] if wtype == 'Container': continue elif wtype == 'InputForm': val = e['widget'].form.checkValues() elif wtype in['SaveButton','OpenButton']: if e.has_key('filename'): val = e['filename'] else: val = None elif wtype in ['FunctionCheckbutton', 'FunctionRadiobutton']: if e.has_key('result'): val = (e['text'], e['result'], e['userFunction']) # ScrolledText elif wtype in ['ScrolledText', Tkinter.Text]: val = e['widget'].get(1.0, Tkinter.END) # ListChooser: elif wtype == 'ListChooser': val = e['widget'].get() # Tkinter Widget: elif issubclass( wtype, Tkinter.Widget): if hasattr(e['widget'], 'get'): val = e['widget'].get() elif e.has_key('wcfg') and e['wcfg'].has_key('variable'): val = e['wcfg']['variable'].get() elif e.has_key('variable'): # Here right now because all the descr don't have a wcfg. val = e['variable'].get() else: # Add this else for the widget with a # name but no variable. val = None elif issubclass(wtype, Pmw.ComboBox): getVal = e['widget'].get() selVal = e['widget'].getcurselection() if not getVal in selVal: val = (getVal,) else: val = selVal elif issubclass(wtype, Pmw.MegaWidget): if (hasattr(e['widget'],'get') and \ hasattr(e['widget'],'getcurselection')) or \ hasattr(e['widget'],'getcurselection'): res=e['widget'].getcurselection() val = [] if type(res) != types.StringType: for name in res: val.append( self.PMWnameToReal(e, name) ) else: val = self.PMWnameToReal(e, res) elif hasattr(e['widget'],'get'): val = e['widget'].get() val = self.PMWnameToReal(e, e['widget'].get()) elif hasattr(e['widget'],'getint'): val = e['widget'].getint() elif hasattr(e['widget'],'getstring'): val = self.PMWnameToReal(e, e['widget'].getstring()) else: val=None elif hasattr(e['widget'],'get'): val = e['widget'].get() else: val = None if val==None: continue if e.has_key('required'): if len(val) == 0: self.releaseFocus() t = 'missing value for field %s' % e['name'] SimpleDialog(self.root, text=t, buttons=["Continue"], default=0, title="Missing required field").go() self.grabFocus() return 'Error' if e.has_key('type'): try: val = e['type'](val) except: self.releaseFocus() t = 'invalid value for field %s' % e['name'] SimpleDialog(self.root, text=t, buttons=["Continue"], default=0, title="Invalid value").go() self.grabFocus() return 'Error' ok = 1 if e.has_key('validateFunc'): if e.has_key('validateArgs'): arguments = e['validateArgs'] else: arguments = () if e.has_key('err_msg'): err_msg = e['err_msg'] else: err_msg = 'invalid value for field %s' % e['name'] v = apply(e['validateFunc'], (val,) + arguments) if not v: ok = 0 elif e.has_key('validValues'): if not val in e['validValues']: ok = 0 if ok: values[e['name']] = val else: self.releaseFocus() t=err_msg SimpleDialog(self.root, text=t, buttons=["Continue"], default=0, title="Invalid value").go() self.grabFocus() return None return values def testForm(self, setWidget={}, container='all'): """This method can be called by tests instead of the go method, It will first set the widgets to the given values provided by the setWidgets dictionary then the checkValues method will be called and the val dictionary returned. """ # Need to set the widgets to the given values if setWidget is # specified if setWidget: print "SETTING THE WIDGETS VALUE...." for name, val in setWidget.items(): if self.descr.entryByName.has_key(name): widget = self.descr.entryByName[name]['widget'] if hasattr(widget, 'set'): print 'setting' widget.set(val) elif hasattr(widget, 'setvalue'): print 'setvalue' widget.setvalue(val) elif hasattr(widget, 'selectitem'): print 'selectitem' widget.selectitem(val) elif hasattr(widget, 'invoke'): try: print 'invoking with val' widget.invoke(val) except: print 'invoking without' widget.invoke() else: print "Could not set the value of ", name, val print "=================================================" from time import sleep self.master.update() sleep(0.5) if hasattr(self, 'ok'): self.ok.invoke() else: self.values = self.checkValues(container) return self.values ## Creates problems on MacOSX, th form gets lifted but not the combobox ## pull down menus (see bindGeometry command) ## Also is anoying with some other forms ## def autoLift(self, event=None): ## self.lift() ## self.autoRaiseID = self.root.after(1000, self.autoLift) def go(self): """This method starts the inputform in modal mode""" # FIXME WHEN BLOCKING NOT NECESSARILY MODAL. if (self.modal or self.blocking) and self.okcancel == 1: ## self.autoRaiseID = self.root.after(1000, self.autoLift) self.grabFocus() # grabs the focus because modal self.root.mainloop() # wait for the OK self.releaseFocus() ## if self.autoRaiseID is not None: ## self.root.after_cancel(self.autoRaiseID) ## self.autoRaiseID = None return self.values ## #########################################################3 ## HELPER METHODS. def buildHelpButton(self, help, frame=None): """ Method which builds the HELP button. required argument: help == String providing the URL of the help. The callback function bound to the help button will open a webbrowser at this adress. optional argument frame -- (None) Specifies in which frame this button widget should be added, If None provided then a new frame will be created. """ if not isinstance(frame, Tkinter.Frame): frame = Tkinter.Frame(self.root, bd=4, relief='groove') frame.pack(side='bottom', fill='x', expand=0) ICONPATH = findFilePath('Icons', 'ViewerFramework') iconfile = os.path.join(ICONPATH,'32x32','info.gif') self.Icon = Tkinter.PhotoImage(file=iconfile, master=self.master) self.help = apply(Tkinter.Button, (frame,), {'text':'?','image':self.Icon,'height':22,'width':24, 'command':CallBackFunction(self.showHelp_cb, help=help)}) self.help.grid(sticky='we', row=0, column=2) self.balloon = Pmw.Balloon(frame) self.balloon.bind(self.help, "Click to open help link:\n"+help) frame.rowconfigure(0, weight=1) frame.columnconfigure(0, weight=1) def showHelp_cb(self, help=None): """ Callback function of the HELP button. It will open a webbrowser at the given help URL when specified. If it can't open the page then a warning message will be displayed. """ import urlparse, webbrowser if help is None: return try: webbrowser.open(help) except: import warning warnings.warn("Error opening %s"%help) def buildOkCancelButtons(self, okCfg, cancelCfg, help=None): """ This method creates an OK button and a CANCEL button. required arguments: okCfg == configuration dictionary of the OK button cancelCfg == configuration dictionay of the CANCEL button optional arguments: help == (None) if a help string is provided the buildHelpButton will be called with the f1 frame so that the 3 buttons are in the same frame. """ from types import DictType # Frame for the buttons. #f1 = Tkinter.Frame(self.root, bd=4, relief='groove') f1 = Tkinter.Frame(self.mf, bd=1, relief='groove') f1.pack(side='bottom', fill ='x', expand=0) self.okCancelButtonsMaster = f1 # Ok button okopts = {'text':'OK', 'command':self.OK_cb} okFunc = None cancelFunc = None if type(okCfg) is DictType and not okCfg == {}: if okCfg.has_key('command'): okFunc = okCfg['command'] del okCfg['command'] okopts['command'] = CallBackFunction(self.OK_cb, func=okFunc) okopts.update(okCfg) self.ok = apply(Tkinter.Button, (f1,), okopts) self.ok.grid(row = 0, sticky='we') # Cancel Button cancelopts = {'text':'Cancel', 'command':self.Cancel_cb} if type(cancelCfg) is DictType and not cancelCfg == {}: if cancelCfg.has_key('command'): cancelFunc = cancelCfg['command'] del cancelCfg['command'] cancelCfg['command'] = CallBackFunction(self.Cancel_cb, func=cancelFunc) cancelopts.update(cancelCfg) self.cancel = apply(Tkinter.Button, (f1,), cancelopts) self.cancel.grid(row = 0, column = 1, sticky='we') if help: self.buildHelpButton(help, frame=f1) f1.rowconfigure(0, weight = 1) f1.columnconfigure(0, weight = 1) f1.columnconfigure(1, weight = 1) def OK_cb(self, event=None, func=None): """call back for OK button""" self.values = self.checkValues() if self.values=='Error': return self.root.quit() self.withdraw() # If a func is specified the func is then called if not func is None: func() def Cancel_cb(self, event = None, func=None): """call back for Cancel button""" #print 'ZZZZZZZ', event.widget, event.widget==self.root #print dir(event) #print event.type #print event.state, event.state=='??' #print event.width, event.height #print event.x, event.y #if event.state=='??': # focusOut from Thumbwheel not from frame # return self.values = {} # If a func is specified the func is then called self.root.quit() self.withdraw() if not func is None: func() def findGridPosition(self, gridcfg): """find next available position in grid""" if gridcfg.has_key('col') and not gridcfg.has_key('column'): gridcfg['column'] = gridcfg['col'] if gridcfg.has_key('column') and gridcfg.has_key('row'): requestedRow = gridcfg['row'] if requestedRow < 0: requestedRow=self.lastRow+requestedRow if requestedRow < 0 or requestedRow >= self.lastRow: requestedRow = self.lastRow self.lastRow = self.lastRow+1 requestedCol = gridcfg['column'] if requestedCol < 0: requestedCol=self.lastCol + requestedCol if requestedCol < 0 or requestedCol >= self.lastCol: requestedCol = self.lastCol self.lastCol = self.lastCol+1 elif gridcfg.has_key('row'): requestedRow = gridcfg['row'] self.lastUsedCol = self.lastUsedCol + 1 requestedCol = self.lastUsedCol if requestedRow < 0: requestedRow=self.lastRow + requestedRow if requestedRow < 0 or requestedRow >= self.lastRow: requestedRow = self.lastRow self.lastRow = self.lastRow+1 elif gridcfg.has_key('column'): requestedCol = gridcfg['column'] self.lastUsedRow = self.lastUsedRow + 1 requestedRow = self.lastUsedRow if requestedCol < 0: requestedCol = self.lastCol + requestedCol if requestedCol < 0 or requestedCol >= self.lastCol: requestedCol = self.lastCol self.lastCol = self.lastCol+1 else: if self.defaultDirection == 'col': #requestedRow = self.lastUsedRow requestedRow = 0 #self.lastRow = self.lastRow+1 #NB: lastCol is always 1 more than biggest used requestedCol = self.lastCol self.lastCol = self.lastCol+1 else: #requestedCol = self.lastUsedCol requestedCol = 0 #self.lastCol = self.lastCol+1 #NB: lastRow is always 1 more than biggest used requestedRow = self.lastRow self.lastRow = self.lastRow+1 gridcfg['row'] = self.lastUsedRow = requestedRow gridcfg['column'] = self.lastUsedCol = requestedCol # make sure we point to first empty column and first empty line if self.lastRow <= requestedRow: self.lastRow = requestedRow + 1 if self.lastCol <= requestedCol: self.lastCol = requestedCol + 1 if gridcfg.has_key('columnspan'): extraCol = gridcfg['columnspan']-1 self.lastCol = self.lastCol + extraCol self.lastUsedCol = self.lastUsedCol + extraCol if gridcfg.has_key('rowspan'): extraRow = gridcfg['rowspan']-1 self.lastRow = self.lastRow + extraRow self.lastUsedRow = self.lastUsedRow + extraRow return gridcfg ################################################################### ### Tkinter methods. def grabFocus(self): """ Method to grab the focus""" if self.modal: self.root.grab_set() def releaseFocus(self): """ Method to release the focus of the form""" if self.modal: self.root.grab_release() def destroy(self): """ Method to destroy the forms""" if self.ownsRoot: self.root.destroy() #print 'DESTROYING FORM ROOT' else: #print 'DESTROYING FORM FRAME' self.mf.destroy() def lift(self, event=None): """ Method to lift the inputform """ self.root.winfo_toplevel().lift() def withdraw(self, event=None): """ Method to withdraw the inputform """ if self.ownsRoot: self.root.winfo_toplevel().withdraw() else: self.root.forget() self.mf.forget() def deiconify(self, event=None): """ Method to deiconify the inputform. """ if self.ownsRoot: self.root.winfo_toplevel().deiconify() else: #print 'DEICONIFY' self.root.pack(expand=0, fill='both') self.mf.pack(fill='both', expand=0) #self.root.bind('', self.Cancel_cb) def evalString(str): if len(str)==0: return try: function = eval("%s"%str) except: #try: obj = compile(str, '', 'exec') exec(obj) function = eval(obj.co_names[0]) #except: # raise ValueError return function from FileDialog import FileDialog import os class ModuleDialog(FileDialog): title = "Module Selection Dialog" def ok_command(self): file = self.get_selection() if not os.path.isfile(file): self.master.bell() else: self.quit(file) class CommandDialog(FileDialog): title = "Command Selection Dialog" def ok_command(self): file = self.get_selection() if not os.path.isfile(file): self.master.bell() else: self.quit(file) if __name__=='__main__': import os root = Tkinter.Tk() ## lb = ListChooser(root, title='Choose a letter', ## entries=[ ('a','comment a'), ## ('b','comment b'), ## ('c','comment c'), ## ('d','comment a')] ) ## lb.insert(1, 'Hello', 'value inserted') ## lb.select(1) ## result = lb.get() ## print result ## res = lb.go() ## print res # should allow to pass a function to check validity f = InputForm(root, title='input 2 strings a float and an int', entries = [ {'label':'string 1'}, {'label':'string 2', 'defaultValue':'Hello'}, {'label':'float', 'type':float, 'required':1}, {'label':'int', 'type':int, 'defaultValue':7}, {'label':'check', 'widgetType':'Checkbutton'} ] ) val = f.go() md = ModuleDialog(root) modulefile = md.go(key='modulekey', pattern = '*Module.py') if modulefile: print "important string is:", os.path.split(modulefile)[-1] cd = CommandDialog(root) commandfile = cd.go(key='commandkey', pattern = '*Commands.py') if commandfile: print "important string is:", os.path.split(commandfile)[-1] mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/InputForm/inputFormEditor.py0000644000175000017500000002343007303522177026606 0ustar debiandebianimport Tkinter, Pmw from mglutil.util.callback import CallbackManager, CallBackFunction from mglutil.gui.InputForm.Tk.moveTk import MovableWidget from mglutil.gui.BasicWidgets.Tk import customizedWidgets cw = customizedWidgets tkinterWidgets = [('Button',), ('Checkbuttons',), ('Entry',), ('Label',), ('Text',), ('ListBox',), ('Frame',), ('Scale',)] pmwWidgets = [('ComboBox',), ( 'EntryField',), ( 'RadioSelect',), ( 'ButtonBox',), ('Counter',), ( 'Group',), ( 'LabeledWidget',), ( 'ScrolledCanvas',), ('ScrolledField',), ('ScrolledListBox',), ( 'ScrolledText',), ('TimeCounter',)] customizedWidgets = [('ListChooser',), ('ExtendedSliderWidget',), ( 'SliderWidget',)] class InteractiveInputFormBuilder(Tkinter.Frame): """ This class implements an interactive inputform builder that provides: - a frame inside of which you can widgets and edit them. - a set of widgets that can be added to the frame - mechanism to modify these widgets - mechanism to save the created inputform. """ def __init__(self, name='NoName', master = None, **kw): """ instance <- InteractiveInputFormBuilder(name='NoName, master=None, **kw' kw can contain any """ # Editor Name self.name = name # List of the ItemDescr object for each widgets added to the # inputform self.widgets = [] self.containers = {} ## self.actionCallback = { ## 'onAddNode' : CallbackManager(), ## 'onDeleteNodes' : CallbackManager(), ## 'onAddConnection' : CallbackManager(), ## 'onDeleteConnections' : CallbackManager(), ## 'onSelectNodes' : CallbackManager(), ## 'onDeselectNodes' : CallbackManager(), ## 'onSelectConnections' : CallbackManager(), ## 'onDeselectConnections' : CallbackManager(), ## } Tkinter.Frame.__init__(self, master) Tkinter.Pack.config(self, expand=1, fill=Tkinter.BOTH) mainFrame = Tkinter.Frame(bg='white',width=400, height=400) self.containers['mainFrame'] = mainFrame mainFrame.pack(side=Tkinter.LEFT) self.createMenus() self.widgetArea = Tkinter.Frame(borderwidth=2, relief = 'sunken') ## self.widgetArea.pack(side=Tkinter.RIGHT, expand=1, fill ='both') def createMenus(self): self.mBar = Tkinter.Frame(self, relief=Tkinter.RAISED, borderwidth=2) self.mBar.pack(fill=Tkinter.X) self.menuButtons = {} self.makeFileMenu() self.makeEditMenu() apply( self.mBar.tk_menuBar, self.menuButtons.values() ) self.title = Tkinter.Label(self.mBar, text=self.name) self.title.pack(side=Tkinter.RIGHT) def makeFileMenu(self): File_button = Tkinter.Menubutton(self.mBar, text='File', underline=0) self.menuButtons['File'] = File_button File_button.pack(side=Tkinter.LEFT, padx="1m") File_button.menu = Tkinter.Menu(File_button) ## File_button.menu.add_command(label='New...', underline=0, ## command=self.loadFile) File_button.menu.add_command(label='Load...', underline=0, command=self.loadFile) File_button.menu.entryconfig(1, state=Tkinter.DISABLED) File_button.menu.add_command(label='Save...', underline=0, command=self.saveFile) File_button.menu.entryconfig(2, state=Tkinter.DISABLED) File_button.menu.add_command(label='Quit', underline=0, command=self.exit) File_button['menu'] = File_button.menu def exit(self, event=None): self.master.destroy() def makeEditMenu(self): Edit_button = Tkinter.Menubutton(self.mBar, text='Edit', underline=0) self.menuButtons['Edit'] = Edit_button Edit_button.pack(side=Tkinter.LEFT, padx="1m") Edit_button.menu = Tkinter.Menu(Edit_button) Edit_button.menu.add('command', label="Undo", command=self.undo) Edit_button.menu.entryconfig(1, state=Tkinter.DISABLED) Edit_button.menu.add('command', label="Add widget", command=self.buildWidgetsFrame) Edit_button.menu.entryconfig(2) # and these are just for show. No "command" callbacks attached. Edit_button.menu.add_command(label="Cut") Edit_button.menu.entryconfig(3, state=Tkinter.DISABLED) Edit_button.menu.add_command(label="Copy") Edit_button.menu.entryconfig(4, state=Tkinter.DISABLED) Edit_button.menu.add_command(label="Paste") Edit_button.menu.entryconfig(5, state=Tkinter.DISABLED) Edit_button.menu.add_command(label="Delete", command=self.delete) Edit_button.menu.entryconfig(5, state=Tkinter.DISABLED) # set up a pointer from the file menubutton back to the file menu Edit_button['menu'] = Edit_button.menu def addWidget(self,event=None): wtype = self.guiTK.get()+'.'+self.chosenWidgets.get()[0] container = self.containers[self.chosenContainers.get()[0]] widget = apply( eval(wtype), (container,) ) b = MovableWidget(widget, 0, 0) self.widgets.append(b) def buildWidgetsFrame(self, event=None): self.widgetsFrame = Tkinter.Frame(master = self.widgetArea) self.widgetsFrame.pack() self.choices = {'Tkinter':tkinterWidgets,'Pmw':pmwWidgets, 'customizedWidgets':customizedWidgets} # Combox with the different widgets libraries. self.guiTK = Pmw.ComboBox(self.widgetsFrame, label_text = 'Choose a Gui ToolKit', labelpos = 'nw', selectioncommand = self.guiType, scrolledlist_items = self.choices.keys() ) self.guiTK.grid(padx = 8, pady = 8) self.guiTK.selectitem('Tkinter', setentry=1) self.guiTK.grid(row=1, column=0, padx = 8, pady = 8) # ListChooser with the widgets contained in the chosen library. self.chosenWidgets = cw.ListChooser(self.widgetsFrame, mode='single', title='Choose a widget', entries = self.choices['Tkinter'], lbwcfg ={'exportselection':0}) self.chosenWidgets.grid(row=2, column=0, padx = 8, pady = 8) # ListChooser with the container already created entries = map(lambda x: (x,), self.containers.keys()) self.chosenContainers = cw.ListChooser(self.widgetsFrame, mode='single', title='Choose a container', entries = entries, lbwcfg ={'exportselection':0}) self.chosenContainers.grid(row=2, column=1, padx = 8, pady = 8) ## # Posx EntryField ## self.posxW = Pmw.EntryField(self.widgetsFrame, ## label_text = 'Enter a x position', ## labelpos = 'w', ## validate = {'validator':'integer'}) ## self.posxW.grid(row=3, column=0, padx = 8, ## pady = 8) ## # Posy EntryField ## self.posyW = Pmw.EntryField(self.widgetsFrame, ## label_text = 'Enter a y position', ## labelpos = 'w', ## validate = {'validator':'integer'}) ## self.posyW.grid(row=3, column=1, padx = 8, ## pady = 8) # Add button to add the selected widget in the frame window. add = Tkinter.Button(self.widgetsFrame, text = 'Add', command = self.addWidget) add.grid(row=4, column=0) # Edit button: self.editVar = Tkinter.IntVar() edit = Tkinter.Checkbutton(self.widgetsFrame, text = 'Edit Widgets', variable=self.editVar) edit.bind('', self.edit_cb) edit.grid(row=4, column=1) self.widgetArea.pack(side=Tkinter.RIGHT, expand=1, fill ='both') def edit_cb(self, event=None): print self.editVar.get() if self.editVar.get() == 0: for b in self.widgets: b.widget.bind('', b.moveRight) b.widget.bind('', b.moveLeft) b.widget.bind('', b.moveUp) b.widget.bind('', b.moveDown) b.widget.bind('', b.recordPosition) b.widget.bind('', b.moveButton) b.widget.bind('', b.endMove) else: for b in self.widgets: b.widget.unbind('') b.widget.unbind('') b.widget.unbind('') b.widget.unbind('') b.widget.unbind('') b.widget.unbind('') b.widget.unbind('') def guiType(self, event=None): self.chosenWidgets.clear() map(self.chosenWidgets.add, self.choices[self.guiTK.get()]) def loadFile(self, event=None): pass def saveFile(self, event=None): pass def newFile(sele, event=None): pass def delete(self, event=None): pass def undo(self, event =None): pass mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/InputForm/__init__.py0000644000175000017500000000000007300046146025171 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Spline/0000755000175000017500000000000012146210102022366 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Spline/spline.py0000644000175000017500000001724710656222205024260 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # #$Id: spline.py,v 1.5 2007/08/08 02:03:49 vareille Exp $ #This class is to create a default ("natural") spline, simply use sp = Spline(points,slopes). #where points=[(x1,y1),(x2,y2)..............(xn,yn)] #where slopes=[(None,h1),(l2,h2)...............(ln,None)] #(l1,h1)=(lowslope,highslope) #sp.spline_points gives list of spline points from numpy.oldnumeric import * import math from types import * from types import TupleType,ListType ArrayType = type(asarray(1.0)) def array_map(f, ar): "Apply an ordinary function to all values in an array." flat_ar = ravel(ar) out = zeros(len(flat_ar), flat_ar.dtype.char) for i in xrange(len(flat_ar)): out[i] = f(flat_ar[i]) out.shape = ar.shape return out class Spline: def __init__(self, points, slopes): if len(points)!=len(slopes): return "Number of points should be equal to number of slopes" self.list_y2_vals=[] self.spline_points=[] self.s_points=[] self.slopeVectors=slopes if len(points)>=2: self.points = points else: return "insufficient data for points,no. of points should be greater than or equal to two" #checks for type of slopes if [(None,(x,y),((x1,y1),(x2,y2)),.......] converts to [(None,s1),(s2,s3),................] #where s=y/x if len(slopes)>=2: if len(slopes[0])==2: if type(slopes[0][1])==TupleType or type(slopes[0][1])== ListType: self.slopes=[] if slopes[0][0]==None: _slope_low=None _slope_high=slopes[0][1][1]/slopes[0][1][0] self.slopes.append((_slope_low,_slope_high)) for s in slopes[1:-1]: _slope_low=s[0][1]/s[0][0] _slope_high=s[1][1]/s[1][0] self.slopes.append((_slope_low,_slope_high)) if slopes[-1][1]==None: _slope_low=slopes[-1][0][1]/slopes[-1][0][0] _slope_high=None self.slopes.append((_slope_low,_slope_high)) else: self.slopes=slopes else: return "invalid data for slopes" else: return "insufficient data for points,no. of slopes should be greater than or equal to two " #if len(points)%4!=0: # print "enter correct points" # return #finding vector points new_points = [] len_sl = len(self.slopeVectors) for (s,p) in zip(self.slopeVectors,points): sll,slr = s if sll: vx,vy = sll n = 30/sqrt(vx*vx+vy*vy) vx *= n vy *= n new_points.append((p[0]+vx,p[1]+vy)) new_points.append(p) if slr: vx,vy = slr n = 30/sqrt(vx*vx+vy*vy) vx *= n vy *= n new_points.append(p) new_points.append((p[0]+vx,p[1]+vy)) _points=[] time_steps=[] for i in range(len(new_points)): if i%4==0: if i+3 <=len(new_points)-1 : _points.append([new_points[i],new_points[i+1],new_points[i+2],new_points[i+3]]) for j in range(100): time_steps.append(float(j)/100) for p in _points: curve_points=[] for t in time_steps: res = self.beizer_calc(t,p) curve_points.append(res) self.spline_points.append(curve_points) def beizer_calc(self,t,points): _t =1-t p0,p1,p2,p3 = points (x0,y0) =p0 (x1,y1) =p1 (x2,y2) =p2 (x3,y3) =p3 c0 = ((t*x0+_t*x1),(t*y0+_t*y1)) c1 = ((t*x1+_t*x2),(t*y1+_t*y2)) c2 =((t*x2+_t*x3),(t*y2+_t*y3)) d0 = ((t*c0[0]+_t*c1[0]),(t*c0[1]+_t*c1[1])) d1 = ((t*c1[0]+_t*c2[0]),(t*c1[1]+_t*c2[1])) R = ((t*d0[0]+_t*d1[0]),(t*d0[1]+_t*d1[1])) return R def getControlPoints(self): """function to get control points""" return self.points def getSlopesVectors(self): """function to getslopes""" if len(self.slopeVectors)>0: if len(self.slopeVectors[0])==2: if type(self.slopeVectors[0][1])==TupleType or type(self.slopeVectors[0][1])==ListType: return self.slopeVectors else: print "not given in vector form" def setControlPoints(self,points,slopes): """function to setcontrolpoints""" self.__init__(points,slopes) def insertControlPoint(self,point,slope,position): """function to insert a control point and its slope as (lowslope,highslope) at a position """ points = self.getControlPoints() slopes=self.getSlopesVectors() points.insert(position,point) if len(slope)==2: if type(slope[1])==TupleType or type(slopes[1])==ListType: slopes.insert(position,slope) self.setControlPoints(points,slopes) def deleteControlPoint(self,point): """function to delete controlpoint""" points=self.getControlPoints() points=map(lambda p: ((int(round(p[0])),int(round(p[1])))) ,points) slopes=self.getSlopesVectors() if point in points: point_index=points.index(point) points.remove(point) slope=slopes[point_index] slopes.remove(slope) self.setControlPoints(points,slopes) else: return "point not in controlPoints" #example from numpy.oldnumeric import arange, cos, Float import Tkinter class FunctionGraph1(Tkinter.Canvas): def __init__(self, x, y,pn): sizex = 2*len(x) sizey = 2*len(y) self.canvas = Tkinter.Canvas(width=sizex+500, height=sizey+300) coords = [] bb = min(x), min(y), max(x), max(y) points=[] for p in pn: points.append((2*p[0],sizey-2*p[1])) for pq in points: self.canvas.create_oval( pq[0]-2,pq[1]-2,pq[0]+2,pq[1]+2,fill="black" ) self.canvas.create_text(pq[0]+10,pq[1]+10,text = (pq[0],pq[1])) for a,b in zip(x,y): coords.append(2*a) coords.append(sizey-2*b) print len(coords) #self.canvas.create_line( *coords ) self.canvas.create_line( coords[0:200] ) self.canvas.create_line( coords [200:400]) self.canvas.pack() def destroy(self): self.canvas.master.destroy() ##p=[(0,0),(100.,100.),(200.,200.),(250.,150.),(300.,200.),(350.,250.)] ###p=[(0,0),(100,100),(200,200),(250,150),(300,200),(350,250)] ###s=[[None,1],[-1,1],[-1,1],[-1,-1],[-1,1],[-1,None]] ###s=[(None,1),(-1,1),(-1,1),(-1,-1),(-1,1),(-1,None)] ##s=[(None,(1,1)),((1,-1),(1,1)),((1,-1),(1,1)),((1,-1),(1,-1)),((1,-1),(1,1)),((1,-1),None)] #p=[(20,0),(100.,20.),(200.,200.)] ##s=[(None,(30,30)),((20,-20),(14,16)),((13,-17),None)] #s=[(None,(1,1)),((1,1),(1,1)),((1,1),None)] #sp=Spline(p,s) ###sp=Spline([(0,0),(.5,.7),(1,1)],[ (None, (1,1)), ((-1,-1),(1,0)), ((1,0), None) ] ) #xc=[] #yc=[] #res = sp.spline_points #for r in res: # # for i in r: # xc.append(i[0]) # yc.append(i[1]) # #FunctionGraph1(xc,yc,p) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Spline/animatorSpline.py0000644000175000017500000001475710651433500025753 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # # #$Id: animatorSpline.py,v 1.5 2007/07/24 17:30:40 vareille Exp $ from splineGUI import splineGUI from spline import Spline from mglutil.util.callback import CallbackFunction from types import IntType,FloatType class AnimatorSpline(splineGUI): def __init__(self, spline, canvas, viewport, uniqueId, scale = None): """This class is used in AnimatorGUI for spline interpolation""" splineGUI.__init__(self,spline, canvas, viewport, uniqueId, scale = None) def doit(self,startvalue,endvalue,range_begin,range_end,slopes): self.configure(startvalue = startvalue,endvalue = endvalue,range_begin = range_begin,range_end = range_end,slopes = slopes) if self.startvalueself.range_end: print "invalid input,startvalue should be >= range_begin and endvalue<=range_end" return p1 = (self.viewport[0],self.getCoordsForVal(self.startvalue)) p2 = (self.viewport[1],self.getCoordsForVal(self.endvalue)) self.spline.setControlPoints([p1,p2],self.slopes ) self._line_On =1 self._slopes_0n =1 self.drawSpline() self.tagBind() self.tagUnBind() def configure(self,**kw): startvalue = kw.get("startvalue") if startvalue is not None: if isinstance(startvalue, IntType or type(startvalue) == FloatType): self.startvalue = startvalue else: raise TypeError("bad type for startvalue") endvalue = kw.get("endvalue") if endvalue is not None: if isinstance(endvalue, IntType or type(endvalue) == FloatType): self.endvalue = endvalue else: raise TypeError("bad type for endvalue") range_begin = kw.get("range_begin") if range_begin is not None: if isinstance(range_begin, IntType or type(range_begin) == FloatType): self.range_begin = range_begin else: raise TypeError("bad type for range_begin") range_end = kw.get("range_end") if range_end is not None: if isinstance(range_end, IntType or type(range_end) == FloatType): self.range_end = range_end else: raise TypeError("bad type for range_end") slopes = kw.get("slopes") if slopes is not None: self.slopes = slopes def tagBind(self): self.canvas.bind("", self.OnCanvas) lid = self.canvas.find_withtag("line_"+self.uniqueId) for i in lid: cb = CallbackFunction(self.OnLine,i) self.canvas.tag_bind(i,"",cb) def tagUnBind(self): lid = self.canvas.find_withtag("line_"+self.uniqueId) for i in lid: self.canvas.tag_unbind(i,'') def moveControlPoint(self, cid, index, event): splineGUI.moveControlPoint(self, cid, index, event) self.tagBind() self.tagUnBind() def moveSlopePoint(self ,sid, lid,tid, event): splineGUI.moveSlopePoint(self ,sid, lid,tid, event) self.tagBind() self.tagUnBind() def getValue(self,fraction): spline_points = self.spline_points p = self.getCoords(fraction) y = p[1] value = (self.endvalue)*(y/self.range_end) return val def getCoords(self,fraction): spline_points = self.spline_points fr = fraction*10 fn = round(fr) return spline_points[int(fn)] def getCoordsForVal(self,val): x1 = self.viewport[0] x2 = self.viewport[1] y1 = self.viewport[1] y2 = self.viewport[0] y = (y2-y1)*(val/float(self.range_end))+y1 return y def getValueforCoords(self,coords): """returns value for coords""" y = coords[-1] rng = self.range_end-(self.range_begin) result = self.range_begin+rng*((self.viewport[1]-float(y))/(self.viewport[1]-self.viewport[0])) return result def getValuesForAllFourPoints(self): """returns values for all four coords""" cids = self.canvas.find_withtag("ctrlPoints_"+self.uniqueId) values = [] newlist = [] points = self.getControlPoints() l,r = self.find_sids(cids[0]) pr = self.canvas.coords(r) newlist.append(points[0][1]) newlist.append(pr[1]+2) l,r = self.find_sids(cids[1]) pl = self.canvas.coords(l) newlist.append(points[1][1]) newlist.append(pl[1]+2) rng = self.range_end-(self.range_begin) for p in newlist: result = self.range_begin+rng*((self.viewport[1]-p)/(self.viewport[1]-self.viewport[0])) if result self.range_end: result = self.range_end values.append(result) return values def OnCanvas(self,event=None): x = event.x y = event.y c = self.canvas items = c.find_overlapping(x-2,y-2,x+2,y+2) if items == (): pn = c.find_withtag("point_online") if pn!=[]: for i in pn: c.delete(i) tx = c.find_withtag("text_online") if tx!=[]: for i in tx: c.delete(i) def OnLine(self,id,event=None): """when mouse is online creates oval and displays its value""" c = self.canvas #del old pn = c.find_withtag("point_online") if pn!=[]: for i in pn: c.delete(i) tx = c.find_withtag("text_online") if tx!=[]: for i in tx: c.delete(i) x = event.x y = event.y self.canvas.create_oval(x-2,y-2,x+2,y+2,fill="white",tags=("point_online",)) val = self.getValueforCoords((x,y)) self.canvas.create_text((x+10,y+10),text=val,tags= ("text_online",)) if __name__ == "__main__": ########### import Tkinter sp = Spline([(0.0,0.0),(1.0,1.0)],[ (None, (1,-1)), ((1,1), None) ] ) canvas = Tkinter.Canvas(width = 700, height = 700) canvas.pack() #canvas.configure(cursor="cross") canvas.create_rectangle([100,600,600,100]) anim = AnimatorSpline(sp, canvas, (100, 600, 500, 500), 'abc') slopes = [ (None, (1,1)), ((1,1), None) ] anim.doit(50,80,5,100,slopes) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Spline/Tests/0000755000175000017500000000000012146210102023470 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Spline/Tests/test_splineGUI.py0000644000175000017500000000445310645741340026765 0ustar debiandebian# #Author : Sowjanya Karnati # #$Id: test_splineGUI.py,v 1.1 2007/07/13 18:22:24 sowjanya Exp $ from mglutil.gui.Spline.spline import Spline from mglutil.gui.Spline.splineGUI import splineGUI import unittest import Tkinter class splineGUIBaseTest(unittest.TestCase): def test_defualt_args(self): """calling splineGUI with default args""" sp = Spline([(0.0,.5),(1.0,0.3)],[ (None, (1,-1)), ((1,-1), None) ] ) canvas = Tkinter.Canvas(width = 700, height = 700) canvas.pack() spg = splineGUI(sp, canvas, (100, 600, 500, 500), 'abc') self.assertEqual(spg.getControlPoints(),[(100.0, 372.72727272727275), (600.0, 463.63636363636363)]) def test_setControlPoints(self): """tests settting control points""" sp = Spline([(0.0,.5),(1.0,0.3)],[ (None, (1,-1)), ((1,-1), None) ] ) canvas = Tkinter.Canvas(width = 700, height = 700) canvas.pack() spg = splineGUI(sp, canvas, (100, 600, 500, 500), 'abc') points = [(100,300),(600,300)] slopes = [(None,(1,-1)),((1,3),None)] spg.setControlPoints(points,slopes) spg.drawSpline() self.assertEqual(spg.getControlPoints(),points) def test_invertSpline(self): """tests calling inverspline""" sp = Spline([(0.0,.5),(1.0,0.3)],[ (None, (1,-1)), ((1,-1), None) ] ) canvas = Tkinter.Canvas(width = 700, height = 700) canvas.pack() spg = splineGUI(sp, canvas, (100, 600, 500, 500), 'abc') points = spg.getControlPoints() spg.invertSpline() self.assertEqual(spg.getControlPoints()!=points,True) def test_stepBack(self): """tests stepBack function""" sp = Spline([(0.0,.5),(1.0,0.3)],[ (None, (1,-1)), ((1,-1), None) ] ) canvas = Tkinter.Canvas(width = 700, height = 700) canvas.pack() spg = splineGUI(sp, canvas, (100, 600, 500, 500), 'abc') first_points = spg.getControlPoints() points = [(100,300),(600,300)] slopes = [(None,(1,-1)),((1,3),None)] spg.setControlPoints(points,slopes) spg.drawSpline() spg.stepBack() self.assertEqual(spg.getControlPoints()!=points,True) self.assertEqual(spg.getControlPoints(),first_points) if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Spline/__init__.py0000644000175000017500000000010010645742223024506 0ustar debiandebian# # #$Id: __init__.py,v 1.1 2007/07/13 18:29:39 sowjanya Exp $ mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Spline/splineGUI.py0000644000175000017500000016664210645746575024654 0ustar debiandebian # #$Id: splineGUI.py,v 1.21 2007/07/13 19:07:41 sowjanya Exp $ import Tkinter from math import sqrt from mglutil.util.callback import CallbackFunction from mglutil.util.misc import deepCopySeq from spline import Spline import copy class splineGUI: """Draw a spline that can be edited the self.canvas on which to draw is provided as an argument the viewport provides the coordinates on the self.canvas of the lower left corner and the width and height of the drawing area. uniqueID is a string that is used as a tag for self.canvas items for this GUI. It should not be used by items on the self.canvas not created by this object. doubleClick on control points to add or delete a point. rightClick to tie or untie normals. """ def __init__(self, spline, canvas, viewport, uniqueId, scale = None): assert isinstance(spline, Spline) self.spline = spline self.uniqueId = uniqueId assert isinstance(canvas, Tkinter.Canvas) self.canvas = canvas self.autoScale = False assert len(viewport) == 4 self.setViewport(viewport) self.setScale(scale) self.pointRadius = 2 # radius of a control point self.drawControlPoints() self._slopes_0n = 0 self.history_cpts = [] self.history_spline_points = [] self.history_spline_slopes = [] self.history_spline_slopes_lengths =[] self.slopes_lengths=[] self._var_ = 1 self.right_dic={} self.left_dic={} self.canvas.configure(cursor="cross") self.drawSlopes() self.drawFunctionLine() def setScale(self, scale): # scale can be an (sx,sy) tuple or None in which case the scale # is computed automatically to contain the function if scale is None: self.doAutoScale() else: assert len(scale) == 2 assert isinstance(scale[0], float) assert isinstance(scale[1], float) self.scale = scale def doAutoScale(self): # compute scaling factors to fit function in viewport self.autoScale = True ptx = [] pty = [] pts = self.spline.getControlPoints() for p in pts: ptx.append(p[0]) pty.append(p[1]) if pty[-1]<=1.5: dx=1.0 dy =1.1 else: minx = min(ptx) maxx = max(ptx) dx = maxx-minx miny = min(pty)*1.1 # FIXME we should really evaluate the fucntion maxy = max(pty)*1.1 # to find real min and max for y dy = maxy-miny self.scale = (self.width/float(dx), self.height/float(dy)) def setViewport(self, viewport): # portion of the self.canvas on which the function will be drawn x,y,w,h = viewport self.originX = x self.originY = y self.width = w self.height = h self.viewport = viewport if self.autoScale: self.doAutoScale() def drawControlPoints(self): self.right_dic={} self.left_dic={} canvas = self.canvas pts = self.getControlPoints() ptRad = self.pointRadius sx, sy = self.scale ox = self.originX oy = self.originY uid = self.uniqueId tag = 'ctrlPoints_'+uid index = 0 for (x, y) in pts: rx = x ry = y id = self.canvas.create_oval(rx-ptRad, ry-ptRad, rx+ptRad, ry+ptRad, fill = 'black', tags = (tag, uid, 'cp'+str(index)+uid)) cb = CallbackFunction(self.startMoveControlPoint, id, index) self.canvas.tag_bind(id, '', cb) cb = CallbackFunction( self.endModeControlPoint, id) self.canvas.tag_bind(id, '', cb) cb = CallbackFunction(self.deletePoint, id) self.canvas.tag_bind(id, '', cb) cb = CallbackFunction(self.tieNormals, id) self.canvas.tag_bind(id, '', cb) index += 1 def removeControlPoints(self): c = self.canvas c.delete('ctrlPoints_'+self.uniqueId) def startEditingCurve(self): c = self.canvas c.itemconfigure('ctrlPoints_'+self.uniqueId, fill = 'red') self.drawSlopes() def drawSlopes(self): self._slopes_0n = 1 canvas = self.canvas pts = self.getControlPoints() slopes = self.getSlopesVectors() ptRad = self.pointRadius sx, sy = self.scale ox = self.originX oy = self.originY uid = self.uniqueId tag = 'slopes_'+uid self._points=[] #index = 0 for p, slope in zip(pts, slopes): left_slope = None right_slope = None ind = slopes.index(slope) rx = p[0] ry = p[1] sll, slr = slope # unpack left and right slope if sll: # draw vector on left side of the point vx, vy = sll if len(self.slopes_lengths)rx: Rx = rx+vx if Rxself.originY: Rx = self.originY if Ryself.originY: Ry=self.originY lid = self.canvas.create_line(Rx, Ry, rx, ry, fill = 'black', tags = (tag, uid,"left","ln")) tid = self.canvas.create_text((Rx+10, Ry+10),text = round(vy/vx,1), tags = (tag, uid,"left","tx")) sid = self.canvas.create_oval(Rx-ptRad, Ry-ptRad, Rx+ptRad, Ry+ptRad, fill = 'green', tags = (tag, uid,"left","pt")) cb = CallbackFunction(self.startMoveSlopePoint, sid, lid,tid) self.canvas.tag_bind(sid, '', cb) cb = CallbackFunction( self.endMoveSlopePoint, sid,lid,tid) self.canvas.tag_bind(sid, '', cb) left_slope = n self._points.append((Rx,Ry)) self._points.append((rx,ry)) if slr: vx, vy = slr if len(self.slopes_lengths)rx: Rx = rx+vx if Rxself.originY: Rx = self.originY if Ryself.originY: Ry=self.originY lid = self.canvas.create_line(rx, ry, Rx, Ry, fill = 'black', tags = (tag, uid,"right","ln")) tid = self.canvas.create_text((Rx+10, Ry+10),text = round(vy/vx,1), tags = (tag, uid,"right","tx")) sid = self.canvas.create_oval(Rx-ptRad, Ry-ptRad, Rx+ptRad, Ry+ptRad, fill = 'green', tags = (tag, uid,"right","pt")) cb = CallbackFunction(self.startMoveSlopePoint, sid, lid,tid) self.canvas.tag_bind(sid, '', cb) cb = CallbackFunction( self.endMoveSlopePoint, sid,lid,tid) right_slope = n self._points.append((rx,ry)) self._points.append((Rx,Ry)) if len(self.slopes_lengths)!=len(slopes): self.slopes_lengths.append((left_slope,right_slope)) self.canvas.tag_raise("pt") self.canvas.tag_raise('ctrlPoints_'+self.uniqueId) def stopEditingCurve(self): self._slopes_0n = 0 c = self.canvas c.itemconfigure('ctrlPoints_'+self.uniqueId, fill = 'black') c.delete('slopes_'+self.uniqueId) def endModeControlPoint(self, cid, index): c = self.canvas c.tag_unbind(cid, '') self.appendToHistory() def findSplinePoints(self): c=self.canvas spline_points=[] self.spline_points=[] self.n_points=[] time_steps=[] for i in range(len(self._points)): if i%4==0: if i+3 <=len(self._points)-1 : p0 = self._points[i] p1 = self._points[i+1] p2 = self._points[i+2] p3 = self._points[i+3] self.n_points.append([p0,p1,p2,p3]) for j in range(10): time_steps.append(float(j)/10) for p in self.n_points: p0,p1,p2,p3=p ind_p=self.n_points.index(p) curve_points=[] result_points=[] for t in time_steps: ind_t = time_steps.index(t) res = self.spline.beizer_calc(t,p) result_points.append(res) curve_points.append(res) if p0 not in curve_points: curve_points.append(p0) if hasattr(self,"id"): #right if self.id == "right": #for i in range(0,len(result_points)): # if i+1 <= len(result_points)-1: if result_points[4][0]0: [x1,y1,x2,y2] = c.coords(sid) if self.point_p1[0]>x1 and self.point_p1[0]y1 and self.point_p1[1]result_points[6][0]: f = ind_p*11#(len(time_steps)) l = (ind_p+1)*11#(len(time_steps)) required_points = self.history_spline_points[-1][f:l] required_points.reverse() curve_points=[] for q in required_points: curve_points.append(q) ind = self._points.index(p2) point_p2 = self._points[ind] if hasattr(self,"sid"): sid = self.sid if len(c.coords(sid))>0: [x1,y1,x2,y2] = c.coords(sid) if point_p2[0]>x1 and point_p2[0]y1 and point_p2[1]', cb) self.canvas.tag_raise('ctrlPoints_'+self.uniqueId) if self.history_cpts==[]: self.appendToHistory() #if self.history_cpts==[]: # self.history_cpts.append(deepCopySeq(self.getControlPoints())) # self.history_spline_slopes.append((deepCopySeq(self.getSlopesVectors()),deepCopySeq(self.slopes_lengths))) def removeFunctionLine(self): self._line_On = 0 c = self.canvas c.delete('line_'+self.uniqueId) ## ## callbacks ## def startMoveControlPoint(self, cid, index, event): # cid of control point and control point index c = self.canvas cb = CallbackFunction(self.moveControlPoint, cid, index) c.tag_bind(cid, '', cb) self.origx = event.x self.origy = event.y cpts=self.getControlPoints() rounded_cpts = [] ind_cpt=None for p in cpts: rounded_cpts.append((round(p[0]),round(p[1]))) if (round(c.coords(cid)[0]+2),round(c.coords(cid)[1]+2)) in rounded_cpts: ind_cpt = rounded_cpts.index((round(c.coords(cid)[0]+2),round(c.coords(cid)[1]+2))) if (round(c.coords(cid)[2]),round(c.coords(cid)[3])) in rounded_cpts: ind_cpt = rounded_cpts.index((round(c.coords(cid)[2]),round(c.coords(cid)[3]))) if ind_cpt: if ind_cpt-1 in range(len(cpts)): self.p_cpt = rounded_cpts[ind_cpt -1] if ind_cpt+1 in range(len(cpts)): self.n_cpt = rounded_cpts[ind_cpt +1] def moveControlPoint(self, cid, index, event): c = self.canvas uid = self.uniqueId tag = 'ctrlPoints_'+uid items = c.find_withtag(tag) x = c.canvasx(event.x) y = c.canvasy(event.y) coords = c.coords(cid) cx1,cy1=(coords[0],coords[1]) #fixing to limit cpts to move with in Viewport if y>self.originY: y=self.originY if yself.p_cpt[0]: x= self.p_cpt[0]+3 dx = x-cx1+2 else: dx = 0 if hasattr(self,"n_cpt"): if x>self.n_cpt[0]: if cx1', cb) self._var_=1 def moveSlopePoint(self ,sid, lid,tid, event): c = self.canvas x = c.canvasx(event.x) y = c.canvasy(event.y) other_sid,cid = self.find_othersid(sid) #when tied ,controlling other_side slope point not to cross viewport limits if "left" in c.gettags(sid): c_rid, c_cid= self.find_othersid(sid) cid = c_cid self.line_coords = (c.coords(sid)[0]+2,c.coords(sid)[1]+2,c.coords(c_cid)[0]+2,c.coords(c_cid)[1]+2) if c_cid: if "tied" in c.gettags(c_cid): if c_rid: if c.coords(c_rid)[0]>=self.originY-2: if x<=c.coords(sid)[0]: x = c.coords(sid)[0]+2 if c.coords(c_rid)[1]<=self.originX+2: if y>=c.coords(sid)[1]: y = c.coords(sid)[1]+2 if c.coords(c_rid)[1]>=self.originY-2: if y<=c.coords(sid)[1]+2: y = c.coords(sid)[1]+2 if "right" in c.gettags(sid): c_lid , c_cid= self.find_othersid(sid) cid = c_cid self.line_coords = (c.coords(c_cid)[0]+2,c.coords(c_cid)[1]+2,c.coords(sid)[0]+2,c.coords(sid)[1]+2) if c_cid: if "tied" in c.gettags(c_cid): if c_lid: if c.coords(c_lid)[0]<=self.originX+2: if x>=c.coords(sid)[0]: x = c.coords(sid)[0]+2 if c.coords(c_lid)[1]<=self.originX+2: if y>=c.coords(sid)[1]: y = c.coords(sid)[1]+2 if c.coords(c_lid)[1]>=self.originY-2: if y<=c.coords(sid)[1]+2: y = c.coords(sid)[1]+2 c.delete(lid) c.delete(tid) if hasattr(self,"sid"): self.old_sid = self.sid if hasattr(self,"lid"): self.old_lid=self.lid self.old_tid =self.tid if self._var_ == 0: c.delete(self.lid) c.delete(self.tid) uid = self.uniqueId tag = 'slopes_'+uid tag1 = 'ctrlPoints_'+uid current_points = self.getControlPoints() cpts = [] for i in current_points: cx = i[0] cy = i[1] cpts.append((round(cx),round(cy))) slope_vectors = self.getSlopesVectors() cid_coords = [] for i in c.find_withtag("ctrlPoints_"+self.uniqueId): cid_coords.append(c.coords(i)) if "left" in c.gettags(sid): self.id = "left" if self.left_dic!={}: if sid in self.left_dic.keys(): (px,py) = self.left_dic[sid] self.left_dic.pop(sid) if (round(px),round(py))==(round(self.line_coords[0]),round(self.line_coords[1])): if (x,y)<(px,py): (x,y)=(px,py) #limiting left slope in one direction if x>self.line_coords[2]: x = self.line_coords[2] #when slope is infinity if self.line_coords[2] - x == 0: x = self.line_coords[2]-2 dx = x-self.line_coords[0] dy = y-self.line_coords[1] #moving point #limiting slope points with in view port cx,cy = (c.coords(sid)[0]+2,c.coords(sid)[1]+2) if x<=self.originX: if cx>=self.originX : x = self.originX+2 dx = x - cx else: dx = 0 x = self.originX+2 if y>=self.originY: if cy<=self.originY: y = self.originY-2 dy = y-cy else: dy =0 y = self.originY-2 if y<=self.originX: if cy>=self.originX: y = self.originX+2 dy = y - cy else: dy =0 y = self.originX+2 #if sid coords == cid coords for i in cid_coords: if (round(x),round(y)) == (round(i[0]+2),round(i[1]+2)): x =c.coords(sid)[0]+2+4 y = c.coords(sid)[1]+2+4 dx=4 dy =4 if (round(x),round(y)) == (round(i[0]),round(i[1])): x =c.coords(sid)[0]+2+4 y = c.coords(sid)[1]+2+4 dx = 4 dy = 4 if (round(x),round(y)) == (round(i[0]+4),round(i[1]+4)): x =c.coords(sid)[0]+2+4 y = c.coords(sid)[1]+2+4 dx = 4 dy = 4 #checking if tied other sid coords crosses viewport limits before #moving slope point if cid: if "tied" in c.gettags(cid): coords_other_sid = c.coords(other_sid) if (coords_other_sid[0]+2)-dx>=self.originY: dx = -1*(self.originY - (coords_other_sid[0]+2)) x = c.coords(sid)[0]+dx+2 if (coords_other_sid[1]+2)-dy<=self.originX: dy = ((coords_other_sid[1]+2)-self.originX) y = c.coords(sid)[1]+dy+2 if (coords_other_sid[1]+2)-dy>=self.originY: dy = -1*(self.originY - (coords_other_sid[1]+2)) y = c.coords(sid)[1]+dy+2 if x>self.line_coords[2]-6 : if y in range(int(round(self.line_coords[3]-6)) ,int(round(self.line_coords[3]+6))): x=self.line_coords[2]-6 dx = (self.line_coords[2]-6) - (c.coords(sid)[0]+2) if dx%2!=0: x =x+1 dx = dx+1 #d = x - (self.line_coords[2]-6 ) #d = 6-diff #if d!=0: # if d%2!=0: # x=c.coords(sid)[0]+2-(d+1) # dx = -(d+1) # # else: # x = c.coords(sid)[0]+2-d # dx=-d c.move(sid,dx,dy) #x,y = (c.coords(sid)[0]+2,c.coords(sid)[1]+2) #drawing line and text self.lid = c.create_line((x,y),(self.line_coords[2],self.line_coords[3]),tags = (tag,uid,"left","ln")) _current_slope_length = sqrt((self.line_coords[2]-x)*(self.line_coords[2]-x)+(self.line_coords[3]-y)*(self.line_coords[3]-y)) _current_slope = (self.line_coords[3] - y)/(self.line_coords[2] - x) self.tid = self.canvas.create_text((x+10,y+10),text = round(_current_slope,1), tags = (tag, uid,"left","tx")) #considering radius of point if (round(self.line_coords[2]),round(self.line_coords[3])) in cpts : _point_index = cpts.index((round(self.line_coords[2]),round(self.line_coords[3]))) else: _point_index = cpts.index((round(self.line_coords[2]-2),round(self.line_coords[3]-2))) right_slope = slope_vectors[_point_index][1] slope_vectors.remove(slope_vectors[_point_index]) cpt=(round(self.line_coords[2]),round(self.line_coords[3])) #updating self._points rx,ry = (round(self.line_coords[0]),round(self.line_coords[1])) new_p=[] for i in self._points: new_p.append((round(i[0]),round(i[1]))) if (rx,ry) in new_p : ind = new_p.index((rx,ry)) if (rx-2,ry-2) in new_p : ind = new_p.index((rx-2,ry-2)) if (rx+2,ry+2) in new_p : ind = new_p.index((rx+2,ry+2)) Ry =y Rx = x self._points.remove(self._points[ind]) self._points.insert(ind,(Rx,Ry)) #finding current cid cids=c.find_withtag(tag1) coords_cids_rounded = [] for i in cids: coords_cids = c.coords(i) coords_cids_rounded.append((round(coords_cids[0]+2),round(coords_cids[1]+2),round(coords_cids[2]),round(coords_cids[3]))) current_id = None #finding cid for j in coords_cids_rounded: if (j[0],j[1])==cpt: cpt = (j[0]+2,j[1]+2) ind = coords_cids_rounded.index(j) current_id= cids[ind] elif (j[2],j[3])==cpt: cpt =(j[2],j[3]) ind = coords_cids_rounded.index(j) if ind >0 and ind sid: right_sid = i break if current_id: if "tied" in c.gettags(current_id): #finding and deleting if right lid and right tid exists if sid+1 in c.find_all(): r_lid = sid+1 r_tid = sid+2 c.delete(r_lid) c.delete(r_tid) right_sl = c.find_withtag("right") for l,t in zip(c.find_withtag("ln"),c.find_withtag("tx")): if "right" in c.gettags(l) and "right" in c.gettags(t): if (round(c.coords(l)[0]),round(c.coords(l)[1]))==(round(c.coords(current_id)[0]+2),round(c.coords(current_id )[1]+2)): c.delete(l) c.delete(t) if hasattr(self,"old_lid"): coords_l = c.coords(self.old_lid) if coords_l!=[]: if (round(coords_l[0]),round(coords_l[1])) == (round(c.coords(current_id)[0]+2),round(c.coords(current_id )[1]+2)): c.delete(self.old_lid) c.delete(self.old_tid) if hasattr(self,"right_lid"): coords_l = c.coords(self.right_lid) if coords_l!=[]: if (round(coords_l[0]),round(coords_l[1])) == (round(c.coords(current_id)[0]+2),round(c.coords(current_id )[1]+2)): c.delete(self.right_lid) c.delete(self.right_tid) right_sid_coords=c.coords(right_sid) #moving point #limiting slope point to move with in viewport c.move(right_sid,-dx,-dy) new_coords = c.coords(right_sid) self.right_lid = c.create_line((self.line_coords[2],self.line_coords[3]),(new_coords[2]-2,new_coords[3]-2),tags = (tag,uid,"right","ln")) self.right_tid = self.canvas.create_text((new_coords[2]-2+10,new_coords[3]-2+10),text = round(_current_slope,1), tags = (tag, uid,"right","tx")) slope_vectors.insert(_point_index,((1,_current_slope),(1,_current_slope))) #r_slope = self.slopes_lengths[_point_index][1] self.slopes_lengths.remove(self.slopes_lengths[_point_index]) self.slopes_lengths.insert(_point_index,(_current_slope_length,_current_slope_length)) cb = CallbackFunction(self.startMoveSlopePoint, right_sid, self.right_lid,self.right_tid) self.canvas.tag_bind(right_sid, '', cb) cb = CallbackFunction( self.endMoveSlopePoint, right_sid,self.right_lid,self.right_tid) self.canvas.tag_bind(right_sid, '', cb) #updating self._points if right_sid_coords: rx,ry = (round(right_sid_coords[2]),round(right_sid_coords[3])) new_p=[] for i in self._points: new_p.append((round(i[0]),round(i[1]))) if (rx,ry) in new_p : ind1 = new_p.index((rx,ry)) if (rx-2,ry-2) in new_p : ind1 = new_p.index((rx-2,ry-2)) if (rx-4,ry-4) in new_p : ind1 = new_p.index((rx-4,ry-4)) if (rx-4,ry-2) in new_p : ind1 = new_p.index((rx-4,ry-2)) if (rx-2,ry-4) in new_p : ind1 = new_p.index((rx-2,ry-4)) Ry =new_coords[3] Rx = new_coords[2] self._points.remove(self._points[ind1]) self._points.insert(ind1,(Rx,Ry)) else: slope_vectors.insert(_point_index,((1,_current_slope),right_slope)) r_slope = self.slopes_lengths[_point_index][1] self.slopes_lengths.remove(self.slopes_lengths[_point_index]) self.slopes_lengths.insert(_point_index,(_current_slope_length,r_slope)) #c.itemconfigure(sid, fill = 'green') else: r_slope = self.slopes_lengths[_point_index][1] self.slopes_lengths.remove(self.slopes_lengths[_point_index]) self.slopes_lengths.insert(_point_index,(_current_slope_length,r_slope)) slope_vectors.insert(_point_index,((1,_current_slope),right_slope)) if "right" in c.gettags(sid): self.id = "right" if self.right_dic!={}: if sid in self.right_dic.keys(): (px,py) = self.right_dic[sid] self.right_dic.pop(sid) if (round(px),round(py))==(round(self.line_coords[2]),round(self.line_coords[3])): #if x>px: if (x,y)>(px,py): (x,y)=(px,py) #limiting right slope in one direction if x=self.originY: if cx<=self.originY : x = self.originY-2 dx = x-cx else: dx = 0 x = self.originY-2 if y>=self.originY: if cy<=self.originY: y = self.originY-2 dy = y-cy else: dy =0 y = self.originY-2 if y<=self.originX: if cy>=self.originX: y = self.originX+2 dy = y - cy else: dy =0 y = self.originX+2 #if sid coords == cid coords for i in cid_coords: if (round(x),round(y)) == (round(i[0]+2),round(i[1]+2)): x =c.coords(sid)[0]+2+4 y = c.coords(sid)[1]+2+4 dx=4 dy =4 if (round(x),round(y)) == (round(i[0]),round(i[1])): x =c.coords(sid)[0]+2+4 y = c.coords(sid)[1]+2+4 dx = 4 dy = 4 if (round(x),round(y)) == (round(i[0]+4),round(i[1]+4)): x =c.coords(sid)[0]+2+4 y = c.coords(sid)[1]+2+4 dx = 4 dy = 4 #checking if tied other sid coords crosses viewport limits if cid: if "tied" in c.gettags(cid): coords_other_sid = c.coords(other_sid) if (coords_other_sid[0]+2)-dx<=self.originX: dx = ((coords_other_sid[0]+2)-self.originX) x = c.coords(sid)[0]+dx+2 if (coords_other_sid[1]+2)-dy<=self.originX: dy = ((coords_other_sid[1]+2)-self.originX) y = c.coords(sid)[1]+dy+2 if (coords_other_sid[1]+2)-dy>=self.originY: dy = -1*(self.originY - (coords_other_sid[1]+2)) y = c.coords(sid)[1]+dy+2 #if x0 and ind ', cb) cb = CallbackFunction( self.endMoveSlopePoint, left_sid,self.left_lid,self.left_tid) self.canvas.tag_bind(left_sid, '', cb) #updating self._points if left_sid_coords: rx,ry = (round(left_sid_coords[2]),round(left_sid_coords[3])) new_p=[] for i in self._points: new_p.append((round(i[0]),round(i[1]))) if (rx,ry) in new_p : ind1 = new_p.index((rx,ry)) if (rx-2,ry-2) in new_p : ind1 = new_p.index((rx-2,ry-2)) if (rx-4,ry-4) in new_p : ind1 = new_p.index((rx-4,ry-4)) if (rx-4,ry-2) in new_p : ind1 = new_p.index((rx-4,ry-2)) if (rx-2,ry-4) in new_p : ind1 = new_p.index((rx-2,ry-4)) Ry =new_coords[3] Rx = new_coords[2] self._points.remove(self._points[ind1]) self._points.insert(ind1,(Rx,Ry)) else: l_slope = self.slopes_lengths[_point_index][0] self.slopes_lengths.remove(self.slopes_lengths[_point_index]) self.slopes_lengths.insert(_point_index,(l_slope,_current_slope_length)) slope_vectors.insert(_point_index,(left_slope,(1,_current_slope))) else: l_slope = self.slopes_lengths[_point_index][0] self.slopes_lengths.remove(self.slopes_lengths[_point_index]) self.slopes_lengths.insert(_point_index,(l_slope,_current_slope_length)) slope_vectors.insert(_point_index,(left_slope,(1,_current_slope))) cb = CallbackFunction(self.startMoveSlopePoint, sid, self.lid,self.tid) self.canvas.tag_bind(sid, '', cb) cb = CallbackFunction( self.endMoveSlopePoint, sid,self.lid,self.tid) self.canvas.tag_bind(sid, '', cb) #finding slope and calling spline with new slope self.spline.setControlPoints(cpts,slope_vectors) if self._line_On == 1: self.removeFunctionLine() self.drawFunctionLine() #self.line_coords = c.coords(self.lid) self._var_ = 0 self.canvas.tag_raise('pt') self.sid = sid def endMoveSlopePoint(self, sid,lid, tid,index): c = self.canvas c.tag_unbind(sid, '') self.appendToHistory() def createPoint(self,id,event = None): """function to insert point on spline""" c = self.canvas old_cids = c.find_withtag("ctrlPoints_"+self.uniqueId) coords = [] for cid in old_cids: if "tied" in c.gettags(cid): coords.append([round(c.coords(cid)[0]),round(c.coords(cid)[1]),round(c.coords(cid)[2]),round(c.coords(cid)[3])]) x = event.x y = event.y slope = ((1,0),(1,0)) vx1,vy1 = slope[0] slope_length=(30,30) pts = self.getControlPoints() pts.append((x,y)) pts.sort() ind = pts.index((x,y)) pos = ind self.slopes_lengths.insert(pos,slope_length) s_vectors = copy.deepcopy(self.getSlopesVectors()) s_vectors.insert(pos,slope) self.spline.setControlPoints(pts,s_vectors) self.drawSpline() self.appendToHistory() cids = c.find_withtag("ctrlPoints_"+self.uniqueId) for cid in cids: if [round(c.coords(cid)[0]),round(c.coords(cid)[1]),round(c.coords(cid)[2]),round(c.coords(cid)[3])] in coords: tags = c.gettags(cid) tags += ("tied",) if "tied" not in c.gettags(cid): c.itemconfig(cid,tags = tags) lsid,rsid = self.find_sids(cid) if lsid!=None and rsid!=None: c.itemconfigure(lsid, fill = 'blue') c.itemconfigure(rsid, fill = 'blue') def deletePoint(self,id,event = None): """function to delete point on spline""" c = self.canvas old_cids = c.find_withtag("ctrlPoints_"+self.uniqueId) coords = [] for cid in old_cids: if "tied" in c.gettags(cid): coords.append([round(c.coords(cid)[0]),round(c.coords(cid)[1]),round(c.coords(cid)[2]),round(c.coords(cid)[3])]) p=None pts = self.getControlPoints() slopes=copy.deepcopy(self.getSlopesVectors()) cur_point = c.coords(id) pts = map(lambda p: ((int(round(p[0])),int(round(p[1])))) ,pts) pn = (round(cur_point[0]+2),round(cur_point[1]+2)) if pn in pts: p = pn if p: ind = pts.index(p) pts.remove(p) slope=slopes[ind] slopes.remove(slope) self.spline.setControlPoints(pts,slopes) self.slopes_lengths.remove(self.slopes_lengths[ind]) self.drawSpline() self.appendToHistory() cids = c.find_withtag("ctrlPoints_"+self.uniqueId) for cid in cids: if [round(c.coords(cid)[0]),round(c.coords(cid)[1]),round(c.coords(cid)[2]),round(c.coords(cid)[3])] in coords: tags = c.gettags(cid) tags += ("tied",) if "tied" not in c.gettags(cid): c.itemconfig(cid,tags = tags) lsid,rsid = self.find_sids(cid) if lsid!=None and rsid!=None: c.itemconfigure(lsid, fill = 'blue') c.itemconfigure(rsid, fill = 'blue') else: return def untieNormals(self,cid,event=None): c=self.canvas if "tied" in c.gettags(cid): c.dtag(cid,"tied") ls,rs = self.find_sids(cid) if ls!=None and rs!=None: c.itemconfigure(ls, fill = 'green') c.itemconfigure(rs, fill = 'green') cb= CallbackFunction(self.tieNormals, cid) c.tag_bind(cid, '', cb) def tieNormals(self,cid,event=None): c = self.canvas cid_coords = c.coords(cid) cpts= self.getControlPoints() rounded_cpts=[] uid = self.uniqueId tag1 = 'ctrlPoints_'+uid #if cid is first or last cpts cannot be tied cs = c.find_withtag(tag1) if cid ==cs[0] or cid==cs[-1]: print "cannot tie first and last coords of spline" return for p in cpts: rounded_cpts.append((round(p[0]),round(p[1]))) if (round(cid_coords[0]+2),round(cid_coords[1]+2)) in rounded_cpts : ind = rounded_cpts.index((round(cid_coords[0]+2),round(cid_coords[1]+2))) slopes_vectors=self.getSlopesVectors() slopes_vectors.remove(slopes_vectors[ind]) slopes_vectors.insert(ind,((1,0),(1,0))) cur_len = 21.6 #if self.slopes_lengths[ind][0]>self.slopes_lengths[ind][1]: # cur_len = self.slopes_lengths[ind][0] #else: # cur_len = self.slopes_lengths[ind][1] self.slopes_lengths.remove(self.slopes_lengths[ind]) self.slopes_lengths.insert(ind,(cur_len,cur_len)) self.spline.setControlPoints(cpts,slopes_vectors) if self._slopes_0n == 1: self.stopEditingCurve() self.startEditingCurve() cids = c.find_withtag(tag1) for ci in cids: if "tied" in c.gettags(ci): ls,rs = self.find_sids(ci) if ls!=None and rs!=None: c.itemconfigure(ls, fill = 'blue') c.itemconfigure(rs, fill = 'blue') if self._line_On == 1: self.removeFunctionLine() self.drawFunctionLine() ls,rs = self.find_sids(cid) if ls!=None and rs!=None: c.itemconfigure(ls, fill = 'blue') c.itemconfigure(rs, fill = 'blue') tags = c.gettags(cid) tags += ("tied",) if "tied" not in c.gettags(cid): c.itemconfig(cid,tags = tags) cb= CallbackFunction(self.untieNormals, cid) c.tag_bind(cid, '', cb) def getControlPoints(self): sx, sy = self.scale ox = self.originX oy = self.originY pts =self.spline.getControlPoints() cpts = [] for (x, y) in pts: rx = x ry = y if y <= 1.5: rx = ox + sx*x ry = oy - sy*y cpts.append((rx,ry)) self.controlpoints = cpts return cpts def find_sids(self,cid): #finding sids at cid c=self.canvas lids = c.find_withtag("ln") pids = c.find_withtag("pt") rsids = c.find_withtag("right") lsids = c.find_withtag("left") r_lids = [] l_lids = [] r_sids = [] l_sids = [] cid_coords = c.coords(cid) current_rsid =None current_lsid = None for s in pids: if s in rsids: r_sids.append(s) if s in lsids: l_sids.append(s) for s in lids: if s in rsids: r_lids.append(s) if s in lsids: l_lids.append(s) for r in r_lids: if (round(c.coords(r)[0]),round(c.coords(r)[1]))==(round(cid_coords[0]+2),round(cid_coords[1]+2)): current_rlid = r for i in r_sids: if (round(c.coords(r)[2]),round(c.coords(r)[3]))==(round(c.coords(i)[0]+2),round(c.coords(i)[1]+2)): current_rsid = i for l in l_lids: if (round(c.coords(l)[2]),round(c.coords(l)[3]))==(round(cid_coords[0]+2),round(cid_coords[1]+2)): current_llid = l for i in l_sids: if (round(c.coords(l)[0]),round(c.coords(l)[1]))==(round(c.coords(i)[0]+2),round(c.coords(i)[1]+2)): current_lsid = i return current_lsid,current_rsid def find_othersid(self,sid): c=self.canvas lsids = c.find_withtag("left") rsids = c.find_withtag("right") lids = c.find_withtag("ln") pids = c.find_withtag("pt") cids = c.find_withtag("ctrlPoints_"+self.uniqueId) cids_coords = [] for cid in cids: cids_coords.append(c.coords(cid)) r_lids = [] l_lids = [] r_sids = [] l_sids = [] current_id = None current_cid = None for s in pids: if s in rsids: r_sids.append(s) if s in lsids: l_sids.append(s) for s in lids: if s in rsids: r_lids.append(s) if s in lsids: l_lids.append(s) if "left" in c.gettags(sid): for l in l_lids: #llid=sid if (round(c.coords(l)[0])-2,round(c.coords(l)[1]-2)) == (round(c.coords(sid)[0]),round(c.coords(sid)[1])) or (round(c.coords(l)[0]),round(c.coords(l)[1])) == (round(c.coords(sid)[0]),round(c.coords(sid)[1])) : current_lid = l for cid in cids_coords: #llid=cid if (round(c.coords(l)[2]),round(c.coords(l)[3])) == (round(cid[2]-2),round(cid[3]-2)): ind = cids_coords.index(cid) current_cid = cids[ind] for r in r_lids: #cid =rlid if (round(cid[0]),round(cid[1]))==(round(c.coords(r)[0]-2),round(c.coords(r)[1]-2)): for p in r_sids: #rlid=rsid if (round(c.coords(r)[2]+2),round(c.coords(r)[3]+2)) == (round(c.coords(p)[2]),round(c.coords(p)[3])): current_id = p if "right" in c.gettags(sid): for r in r_lids: #rlid=rsid if (round(c.coords(r)[2]+2),round(c.coords(r)[3]+2)) == (round(c.coords(sid)[2]),round(c.coords(sid)[3])) or (round(c.coords(r)[2]),round(c.coords(r)[3])) == (round(c.coords(sid)[2]),round(c.coords(sid)[3])): for cid in cids_coords: #cid =rlid if (round(cid[0]),round(cid[1]))==(round(c.coords(r)[0]-2),round(c.coords(r)[1]-2)): ind = cids_coords.index(cid) current_cid = cids[ind] for l in l_lids: #llid=cid if (round(c.coords(l)[2]),round(c.coords(l)[3])) == (round(cid[2]-2),round(cid[3]-2)): for p in l_sids: #llid=sid if (round(c.coords(l)[0])-2,round(c.coords(l)[1]-2)) == (round(c.coords(p)[0]),round(c.coords(p)[1])): current_id = p return current_id,current_cid def drawSpline(self): self.removeControlPoints() self.drawControlPoints() self._drawSpline() def _drawSpline(self): if self._slopes_0n == 1: self.stopEditingCurve() self.startEditingCurve() if self._line_On == 1: self.removeFunctionLine() self.drawFunctionLine() def invertSpline(self): """This function is for inverting graph by reverse computing controlpoints""" invert_points = [] cpts = self.getControlPoints() slopes = self.getSlopesVectors() for p in cpts: y=self.originY -(p[1]-50) invert_points.append((p[0],y)) self.spline.setControlPoints(invert_points,slopes) self.drawSpline() self.appendToHistory() def stepBack(self): """when stepBack button clicked previous step is displayed.History of all the steps done is remembered and when stepback clicked from history list previous step is shown and that step is removed from history list """ if len(self.history_cpts) == 1: cpts = self.history_cpts[-1] slopes = self.history_spline_slopes[-1] slopes_lengths = self.history_spline_slopes_lengths[-1] if len(self.history_cpts)>1: self.history_cpts = self.history_cpts[:-1] self.history_spline_slopes = self.history_spline_slopes[:-1] self.history_spline_slopes_lengths = self.history_spline_slopes_lengths[:-1] cpts = self.history_cpts[-1] slopes = self.history_spline_slopes[-1] slopes_lengths = self.history_spline_slopes_lengths[-1] self.slopes_lengths = [] for j in slopes_lengths : self.slopes_lengths.append(j) self.spline.setControlPoints( cpts, slopes) self.drawSpline() def appendToHistory(self): """function to append to history""" self.history_cpts.append(copy.deepcopy(self.controlpoints)) self.history_spline_slopes_lengths.append(copy.deepcopy(self.slopes_lengths)) self.history_spline_slopes.append(copy.deepcopy(self.slopesvectors)) def getSlopesVectors(self): sls = self.spline.getSlopesVectors() self.slopesvectors = sls return sls def setControlPoints(self,pn,sl): self.spline.setControlPoints(pn,sl) if __name__ == "__main__": from spline import Spline #sp = Spline( [0, .5, 1], [0, .7, 1], [ (None, (1,0)), ((1,1),(1,0)), ((1,0), None) ] ) #sp = Spline([(0,0),(0.3,0.5),(.5,.7),(1,1)],[ (None, (1,-1)), ((1,-3),(1,-4)),((1,-2),(1,-1)), ((1,-3), None) ] ) sp = Spline([(0.0,.5),(1.0,0.3)],[ (None, (1,-1)), ((1,-1), None) ] ) #sp = Spline([(100,600),(200,400),(400,200),(600,100)],[ (None, (1,-4)),((1,-3),(1,-4)),((1,-2),(1,-1)),((2,3), None) ]) canvas = Tkinter.Canvas(width = 700, height = 700) canvas.pack() #canvas.configure(cursor="cross") spg = splineGUI(sp, canvas, (100, 600, 500, 500), 'abc') #canvas.create_rectangle([100,600,600,100]) spg.drawSlopes() spg.drawFunctionLine() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Misc/0000755000175000017500000000000012146210102022027 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Misc/Tk/0000755000175000017500000000000012146210102022405 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Misc/Tk/__init__.py0000644000175000017500000000000007300046146024517 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Misc/Tk/KeybdModMonitor.py0000644000175000017500000000675111052636442026054 0ustar debiandebianimport Tkinter from mglutil.util.callback import CallbackManager class KeyboardModifierMonitor: def __init__(self): self.kbdModifier = { 'Shift_L':0, 'Alt_L':0, 'Control_L':0, 'Shift_R':0, 'Alt_R':0, 'Control_R':0, } self.keybdModifierCallbacksDown = { 'Shift_L':CallbackManager(), 'Alt_L':CallbackManager(), 'Control_L':CallbackManager(), 'Shift_R':CallbackManager(), 'Alt_R':CallbackManager(), 'Control_R':CallbackManager(), } self.keybdModifierCallbacksUp = { 'Shift_L':CallbackManager(), 'Alt_L':CallbackManager(), 'Control_L':CallbackManager(), 'Shift_R':CallbackManager(), 'Alt_R':CallbackManager(), 'Control_R':CallbackManager(), } def modifierDown(self, event): """track changes in SHIFT, CONTROL, ALT kyes positions""" if event.keysym in ['Shift_L', 'Shift_R', 'Control_L', 'Control_R', 'Alt_L', 'Alt_R']: self.kbdModifier[event.keysym] = 1 # grab all event to make sure get the key release event even # if the mouse is outside the application # we have problems with this because when we release we loose # the grab. As a consequence, if SHIFT+buttton1 was used to start # a rubberband and SHIFT is released BEFORE the button, # We loose motion and release event and the line stops moving # and is never deleted :( # this was an attempt to have tha canvas set the grab. But then # modifier event are not caught ! #self.oldgrab = self.master.grab_current() #print 'setting global grab', self.oldgrab #self.master.grab_set_global() self.keybdModifierCallbacksDown[event.keysym].CallCallbacks(event) def modifierUp(self, event): """track changes in SHIFT, CONTROL, ALT kyes positions""" if event.keysym in ['Shift_L', 'Shift_R', 'Control_L', 'Control_R', 'Alt_L', 'Alt_R']: self.kbdModifier[event.keysym] = 0 # release the grab. Release must be done on button release event # this is the Problem. if SHFT is released before button we loose # button motion and button release events after that. # Seems that a solution to this would require this object to also # monitor mouse buttons and release the grab after the last release # of either the button or the modifier. self.master.grab_release() #if self.oldgrab: # self.oldgrab.grab.set() self.keybdModifierCallbacksUp[event.keysym].CallCallbacks(event) def isShift(self): return self.kbdModifier['Shift_L'] or self.kbdModifier['Shift_R'] def isControl(self): return self.kbdModifier['Control_L'] or self.kbdModifier['Control_R'] def isAlt(self): return self.kbdModifier['Alt_L'] or self.kbdModifier['Alt_R'] def getModifier(self): if self.kbdModifier['Shift_L']: return 'Shift_L' elif self.kbdModifier['Control_L']: return 'Control_L' elif self.kbdModifier['Alt_L']: return 'Alt_L' elif self.kbdModifier['Shift_R']: return 'Shift_R' elif self.kbdModifier['Control_R']: return 'Control_R' elif self.kbdModifier['Alt_R']: return 'Alt_R' else: return 'None' mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/Misc/__init__.py0000644000175000017500000000000007300046146024141 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/__init__.py0000644000175000017500000000672111361442056023270 0ustar debiandebian######################################################################## # # Date: 2000 Authors: Guillaume Vareille, Michel Sanner # # vareille@scripps.edu # sanner@scripps.edu # # The Scripps Research Institute (TSRI) # Molecular Graphics Lab # La Jolla, CA 92037, USA # # Copyright: Guillaume Vareille, Michel Sanner and TSRI # ######################################################################### # # $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/__init__.py,v 1.13 2010/04/14 22:39:42 sanner Exp $ # # $Id: __init__.py,v 1.13 2010/04/14 22:39:42 sanner Exp $ # import os import sys import warnings mglutilrcText = """######################################################################## # # Date: Decembre 2006 Authors: Guillaume Vareille, Michel Sanner # # vareille@scripps.edu # sanner@scripps.edu # # The Scripps Research Institute (TSRI) # Molecular Graphics Lab # La Jolla, CA 92037, USA # # Copyright: Guillaume Vareille, Michel Sanner and TSRI # # mglutil Resource File # ######################################################################### # To customize mglutil, you can modify the _mglutilrc file: # unix: ~/.mgltools/[version number]/mglutil/_mglutilrc # windows: \Documents and Settings\(user name)\.mgltools\(version numer)\mglutil\_mglutilrc # DejaVu will generate this file automatically if it can't find it # Do not modify the original source file ################################################################## import os widgetsOnBackWindowsCanGrabFocus = (os.name != 'nt') # True, False """ def ensureMglutilResourceFile(): """verify or generate _mglutilrc file """ #print "ensureMglutilResourceFile" from mglutil.util.packageFilePath import getResourceFolderWithVersion rcFolder = getResourceFolderWithVersion() if rcFolder is None: return None rcFolder += os.sep + 'mglutil' if not os.path.isdir(rcFolder): try: os.mkdir(rcFolder) except: txt = "Cannot create the Resource Folder %s" %rcFolder warnings.warn(txt) return None rcFile = rcFolder + os.sep + '_mglutilrc' if os.path.isfile(rcFile) is False: try: f = open(rcFile, "w") global mglutilrcText map( lambda x, f=f: f.write(x), mglutilrcText ) f.close() except: txt = "can not create _mglutilrc" warnings.warn(txt) return None return rcFile # after this we can access variables in _mglutilrc with # from mglutil.gui import widgetsOnBackWindowsCanGrabFocus rcFile = ensureMglutilResourceFile() if rcFile is None: exec( mglutilrcText ) else: execfile( rcFile ) if os.name != 'nt': #sys.platform != 'win32': # we create a symbolic link to the shell script that launch python # this is link is used by the self-running saved vision network to # find mgltools # (we create this each time we run mglutils, # this way the last running vision will be used) mgltoolsDir = os.path.split(os.path.split(os.path.split(os.path.split( __file__)[0])[0])[0])[0] pythonshFile = os.path.join(mgltoolsDir, 'bin', 'pythonsh') if os.path.isfile(pythonshFile) is False: pythonshFile = os.path.realpath(sys.executable)+'sh' try: os.system('ln -f -s ' + pythonshFile + ' ~' + os.sep +'.mgltools'+ os.sep +'pythonsh') except: pass mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/0000755000175000017500000000000012146210067023516 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/0000755000175000017500000000000012146210177024076 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/player.py0000644000175000017500000011726411240331355025753 0ustar debiandebian############################################################################# # # Author: Ruth HUEY # # Copyright: M. Sanner TSRI 2003 # ############################################################################# # # # $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/BasicWidgets/Tk/player.py,v 1.18 2009/08/11 18:05:33 sanner Exp $ # # $Id: player.py,v 1.18 2009/08/11 18:05:33 sanner Exp $ # # # # import Tkinter, Pmw import types, time, os from mglutil.util.callback import CallBackFunction from mglutil.gui.InputForm.Tk.gui import InputFormDescr,InputForm,evalString from mglutil.util.callback import CallbackManager from mglutil.gui.BasicWidgets.Tk.thumbwheel import ThumbWheel from mglutil.util.packageFilePath import findFilePath from mglutil.util.misc import ensureFontCase import tkMessageBox try: import pymedia pymediaFound = True except: pymediaFound = False class Player(Tkinter.Frame): """Widget to play sequence of frames. The GUI allows to specify direction and speed of playback. the nextFrame(number) methoid should be overridden and define how this player plays the animation the root constructor argument can be a Tkinter container in which to embde the control panel. required attributes: currentFrameIndex = 0 startFrame = 0 endFrame = 0 maxFrame = 0 stepSize = 1 target = endFrame #determines direction of play increment = 1 #implements decrementing vs incrementing # in getNextFrameIndex playMode = 0 #playMode options: # 0 play once and stop # 1 play continuously in 1 direction # 2 play once in 2 directions # 3 play continuously in 2 directions framerate =15. # number of frame per second to be display hasSlider = False #adds Tkinter Scale Widget if True customization attributes: buttonMask is a dictionary that provides a button name as a key and a boolean as a value. For each button in the GUI if the name appears in self.buttonMask and the value is False the button willnot be addded. This only works when form2 is true. slider and counter are handle by the hasSlider and coutner keyword arguments required methods: #play methods: play #play according to play mode getNextFrameIndex #returns index of next frame to play according to current index and playMode nextFrame #actually display the nextFrame ??possibly update widgets??? #methods to regulate play Play_cb #play according to playMode PlayRev_cb #play backwards FastForward_cb() #play foward at max speed FastReverse_cb() #play reverse at max speed Stop_cb #stop current play ?Pause_cb #stop at current frame?? ?Loop_cb #??????? #methods to set Frame to a specific frame SetState_cb #counter callback for random access GoToStart_cb #set to current startFrame GoToEnd_cb #set to current endFrame ?setCurrentFrameIndex #set currentframe index??? #methods for player gui showGUI #show the gui buildForm2 #opens image-based gui buildForm #opens text-based gui Close_cb #withdraws gui #methods for pmw counter custom_validate #used by pmw to check entry custom_counter #used by pmw for counter #methods for changing playMode SetMode_cb #opens playModeForm setPlayMode_cb #sets playMode, sets delay, startFrame, endFrame AND closes playModeForm cancelPlayMode_cb #closes playModeForm w/out changes #methods for end points: setStartFrame() #set startFrame setEndFrame() #set endFrame setStepSize() #sets increment, def=1 additional methods: """ def __init__(self, master=None, root=None, height=80,width=200, currentFrameIndex=0, startFrame=0, endFrame=0, maxFrame=0, stepSize=1, playMode=0, ##afterDelay=50, titleStr='Player', gotoStartfile = 'go_to_start.gif', gotoEndfile = 'go_to_end.gif', ff_revfile = 'ff_rev.gif', ff_fwdfile = 'ff_fwd.gif', stopfile = 'stop.gif', playfile = 'play_fwd.gif', playRevfile = 'play_rev.gif', chmodfile = 'chmod.gif', closefile = 'close.gif', iconpath = None, counter = 1, form2=1, gui=1, framerate=15., hasSlider=False, buttonMask=None): # frame rate in fps self.framerate = framerate self.gui = gui self.currentFrameIndex = currentFrameIndex self.startFrame = startFrame self.endFrame = endFrame self.targetFrame = self.endFrame self.maxFrame = maxFrame if not maxFrame: self.maxFrame = endFrame self.stepSize = stepSize #used for play once in 2 directions self.oneDirection = 0 self.increment = 1 self.target = self.endFrame self.hasSlider = hasSlider #used to coordinate switching icons #playMode options: # 0 play once and stop # 1 play continuously in 1 direction # 2 play once in 2 directions and stop # 3 play continuously in 2 directions self.playMode = playMode ### replace by framerate #amt of time to sleep #self.delay = delay #amt of time for after #self.afterDelay = afterDelay self.afterID = None self.stop = 1 self.hasCounter = 0 # gui variable #self.master = master #self.root = root self.form2 = form2 self.hasCounter = counter if buttonMask is None: self.buttonMask = {} # self.buttonMask provides a button name as a key and a boolean # as a value. For each button in the GUI if the name appears in # self.buttonMask and the value is False the button willnot be # addded else: self.buttonMask = buttonMask if gui: self.showGUI(master=master,root=root, titleStr=titleStr,height=height, width=width,iconpath=iconpath) # make sure we have a master as we will call master.update in play() if hasattr(master, 'update'): self.masterForUpdate = self.master else: self.masterForUpdate = self.root def showGUI(self,master=None,root=None, width=200,height=80,titleStr='player', gotoStartfile = 'go_to_start.gif', gotoEndfile = 'go_to_end.gif', ff_revfile = 'ff_rev.gif', ff_fwdfile = 'ff_fwd.gif', stopfile = 'stop.gif', playfile = 'play_fwd.gif', playRevfile = 'play_rev.gif', chmodfile = 'chmod.gif', closefile = 'close.gif',iconpath=None): """ function to display the player gui.""" if hasattr(self, 'form'): if hasattr(self.form, "deiconify"): self.form.deiconify() return self.master=master self.root=root if not self.form2: self.form = self.buildForm(titleStr) # pass some arguments here self.form2=0 else: if iconpath is None: iconpath = ('mglutil.gui.BasicWidgets.Tk','icons') ICONDIR = findFilePath(iconpath[1], iconpath[0]) #if findFilePath failed, already returned gotoStartfile = os.path.join(ICONDIR,gotoStartfile) gotoEndfile = os.path.join(ICONDIR,gotoEndfile) ff_revfile = os.path.join(ICONDIR,ff_revfile) ff_fwdfile = os.path.join(ICONDIR,ff_fwdfile) stopfile = os.path.join(ICONDIR,stopfile) playfile = os.path.join(ICONDIR,playfile) playRevfile = os.path.join(ICONDIR,playRevfile) chmodfile = os.path.join(ICONDIR,chmodfile) closefile = os.path.join(ICONDIR,closefile) recordfile = os.path.join(ICONDIR,"record.gif") record1file = os.path.join(ICONDIR, "record1.gif") self.gotoStartIcon = Tkinter.PhotoImage(file=gotoStartfile, master=master) self.gotoEndIcon = Tkinter.PhotoImage(file=gotoEndfile, master=master) self.ff_revIcon = Tkinter.PhotoImage(file=ff_revfile, master=master) self.ff_fwdIcon = Tkinter.PhotoImage(file=ff_fwdfile, master=master) self.stopIcon = Tkinter.PhotoImage(file=stopfile, master=master) self.playIcon = Tkinter.PhotoImage(file=playfile, master=master) self.playRevIcon = Tkinter.PhotoImage(file=playRevfile, master=master) self.recIcon = Tkinter.PhotoImage(file=recordfile, master=master) self.rec1Icon = Tkinter.PhotoImage(file=record1file, master=master) self.chmodIcon = Tkinter.PhotoImage(file=chmodfile, master=master) self.closeIcon = Tkinter.PhotoImage(file=closefile, master=master) self.form = self.buildForm2(titleStr) # pass some argument here #play methods: # play, waitTime, getNextFrameIndex, nextFrame def play(self, framerate, event=None): t1 = time.time() # previous frame time timestamp = 1./framerate # rate to update frame self.stop = 0 ind = self.currentFrameIndex # if player at the end we resume from begining if ind>= self.endFrame: self.GoToStart_cb() while not self.stop: #this has to be more complex if self.stop: print 'play stopped!' break #do something different here if ff_fwd or ff_rev if self.gui: #self.afterID = self.master.after(self.afterDelay, self.waitTime) self.masterForUpdate.update() t2 = time.time() # current time t = t2 -t1 # time difference between current frame and previous if framerate > -1 and t < timestamp: pass else: id = self.getNextFrameIndex(self.currentFrameIndex) if id==None: self.stop = 1 if self.gui: self.Stop_cb() break self.nextFrame(id) #maybe set entry then call nextFrame?? self.currentFrameIndex = id t1 = t2 def getNextFrameIndex(self, index): newFrame = index + self.increment*self.stepSize # check if newFrame in current range: # if incrementing, has to be <=self.endFrame # if decrementing, has to be >=self.startFrame # NB: incPos indicates whether currently incrementing or decrementing # FORCE newFrame into range incPos = self.increment>0 if incPos and newFrame>self.endFrame: newFrame = self.endFrame elif not incPos and newFrame', self.SetState_cb, '+') form.ent2.bind('', self.SetState_cb, '+') form.counter = form.ifd.entryByName['statesCounter']['widget'] if self.hasSlider: slider = form.ifd.entryByName['slider']['widget'] slider.set(self.currentFrameIndex) #print 'returning form' return form def buildForm(self, titleStr): #??FIX THIS: self.stop = 1 if hasattr(self, 'form'): self.form.deiconify() return maxval = self.endFrame ifd = InputFormDescr(title=titleStr) if self.hasCounter: ifd.append({'widgetType':Pmw.Counter, 'name':'statesCounter', 'required':1, 'tooltip':'used to show frames via random access', 'wcfg':{#'labelpos': 'n, #'label_text':'conformation: ', 'autorepeat':0, 'entryfield_value':self.startFrame, #'entryfield_value':self.idList[0], 'datatype': self.custom_counter, 'entry_width':9, 'entryfield_validate': self.custom_validate }, 'gridcfg':{'sticky':'nesw', 'columnspan':2}}) ifd.append({'name': 'playB', 'widgetType': Tkinter.Button, 'text':'Play', 'tooltip':'play sequence according to current play mode', 'wcfg':{'bd':4}, 'gridcfg':{'sticky':'nesw','columnspan':1}, 'command':self.Play_cb}) ifd.append({'name': 'playRevB', 'widgetType': Tkinter.Button, 'text':'Play Reverse', 'wcfg':{'bd':4}, 'gridcfg':{'sticky':'nesw','row':-1, 'column':1}, 'command':self.PlayRev_cb}) ifd.append({'name': 'playTB', 'widgetType': Tkinter.Button, 'text':'Play+Return', 'wcfg':{'bd':4}, 'gridcfg':{'sticky':'nesw','columnspan':1}, 'command':self.PlayReturn_cb}) ifd.append({'name': 'loopB', 'widgetType': Tkinter.Button, 'text':'Loop', 'wcfg':{'bd':4}, 'gridcfg':{'sticky':'nesw','row':-1, 'column':1}, 'command':self.Loop_cb}) ifd.append({'name': 'stopB', 'widgetType': Tkinter.Button, 'text':'Stop', 'tooltip':'stop play', 'wcfg':{'bd':4, }, 'gridcfg':{'sticky':'nesw'}, 'command':self.Stop_cb}) #add fastforward, fastrewind, thumbwheel for speed ifd.append({'name': 'pauseB', 'widgetType': Tkinter.Button, 'text':'Pause', 'wcfg':{'bd':4}, 'gridcfg':{'sticky':'nesw','row':-1, 'column':1}, 'command':self.Pause_cb}) ifd.append({'name': 'closeB', 'widgetType': Tkinter.Button, 'text':'Close', 'wcfg':{'bd':4}, #'gridcfg':{'sticky':'nesw','row':-1, 'column':1}, 'gridcfg':{'sticky':'nesw', 'columnspan':2}, 'command':self.Close_cb}) form = InputForm(self.master, self.root, descr = ifd, modal = 0, blocking = 0,closeWithWindow=1) form.ifd = ifd if self.hasCounter: ctr = ifd.entryByName['statesCounter']['widget'] entF = ctr.component('entryfield') form.ent2 = entF._entryFieldEntry da = ctr.component('downarrow') ua = ctr.component('uparrow') for item in [da,ua]: item.bind('', self.SetState_cb, '+') form.ent2.bind('', self.SetState_cb, '+') form.counter = form.ifd.entryByName['statesCounter']['widget'] form.stopB = form.ifd.entryByName['stopB']['widget'] form.playB = form.ifd.entryByName['playB']['widget'] form.playRevB = form.ifd.entryByName['playRevB']['widget'] #print 'returning form1' self.form = form return form #methods for changing playMode def SetMode_cb(self, event=None): #print 'SetMode' #playMode options: # 0 play once and stop # 1 play continuously in 1 direction # 2 play once in 2 directions # 3 play continuously in 2 directions #play framerate is frame/per second if not hasattr(self, 'playModeForm'): self.playModeList=[ 'once and stop', 'continuously in 1 direction', 'once in 2 directions', 'continuously in 2 directions'] ifd2 = InputFormDescr(title='Set Play Mode') ifd2.append( {'name': 'playModeLabel', 'widgetType':Tkinter.Label, 'wcfg':{'text':'play mode options:', 'font':(ensureFontCase('helvetica'),12,'bold')}, 'gridcfg':{'sticky':'w'}}) ifd2.append({'name':'playMode', 'widgetType': Tkinter.Radiobutton, 'defaultValue': self.playModeList[self.playMode], 'listtext':self.playModeList, 'gridcfg':{'sticky':'w'}}) ifd2.append({'name': 'framerateTW', 'widgetType':ThumbWheel, 'tooltip': """Framerate to enforce during playback""", 'gridcfg':{'sticky':'we'}, 'wcfg':{ 'value':self.framerate, 'oneTurn':100., 'type':'float', 'continuous': True, 'wheelPad':2,'width':145,'height':18, 'labCfg':{'text':'framerate: '}, }, }) ifd2.append({'name': 'startFrameTW', 'widgetType':ThumbWheel, 'tooltip': """First frame used in playback""", 'gridcfg':{'sticky':'we'}, 'wcfg':{ 'value':self.startFrame, 'oneTurn':100, 'type':'int', 'continuous': True, 'wheelPad':2,'width':145,'height':18, 'labCfg':{'text':'start frame: '}, }, }) ifd2.append({'name': 'endFrameTW', 'widgetType':ThumbWheel, 'tooltip': """Last frame used in playback""", 'gridcfg':{'sticky':'we'}, 'wcfg':{ 'value':self.endFrame, 'oneTurn':100, 'type':'int', 'continuous': True, 'wheelPad':2,'width':145,'height':18, 'labCfg':{'text':' end frame: '}, }, }) ifd2.append({'name': 'stepSizeTW', 'widgetType':ThumbWheel, 'tooltip': """???""", 'gridcfg':{'sticky':'we'}, 'wcfg':{ 'value':self.stepSize, 'oneTurn':100, 'type':'int', 'continuous': True, 'wheelPad':2,'width':145,'height':18, 'labCfg':{'text':' step size: '}, }, }) ifd2.append({'name':'acceptB', 'widgetType': Tkinter.Button, 'wcfg':{ 'text': 'ok', 'command': self.setPlayMode_cb, }, 'gridcfg':{'sticky':'nesw'}}) ifd2.append({'name':'cancelB', 'widgetType': Tkinter.Button, 'wcfg':{ 'text': 'cancel', 'command': self.cancelPlayMode_cb, }, 'gridcfg':{'sticky':'nesw', 'row':-1, 'column':1}}) if self.master is None: master = self.root else: master = Tkinter.Toplevel() self.playModeForm = InputForm(master, None, descr = ifd2, modal = 0, blocking = 0) self.playModeVar = self.playModeForm.descr.entryByName['playMode']['variable'] self.framerateWidget = self.playModeForm.descr.entryByName['framerateTW']['widget'] self.startFrameWidget = self.playModeForm.descr.entryByName['startFrameTW']['widget'] self.endFrameWidget = self.playModeForm.descr.entryByName['endFrameTW']['widget'] self.stepSizeWidget = self.playModeForm.descr.entryByName['stepSizeTW']['widget'] else: self.playModeForm.deiconify() def setPlayMode_cb(self, event=None): curVal = self.playModeVar.get() self.playMode = self.playModeList.index(curVal) #print 'setting playMode to ', curVal self.framerate = round(self.framerateWidget.get(),4) #print 'setting self.framerate ->', self.framerate self.timestamp= 1./self.framerate self.startFrame = self.startFrameWidget.get() self.endFrame = self.endFrameWidget.get() self.stepSize = self.stepSizeWidget.get() self.cancelPlayMode_cb() self.oneDirection = 0 def cancelPlayMode_cb(self, event=None): self.playModeForm.withdraw() #methods for counter def custom_validate(self, text): #print 'in custom_validate, text=', text if not len(text): return -1 if text in ['start', 'end']: return 1 tt = int(text) okList = range(self.startFrame, self.endFrame+1) if tt in okList: return 1 else: return -1 def custom_counter(self, text, factor, increment, **kw): # text is current content of entry # factor is 1 for increment and -1 for decrement # increment is value of increment megawidget option ###if not text in self.idList: ###raise ValueError, text + ' not in current idList' #check whether ind+factor is in range newval = self.currentFrameIndex + factor #print 'newval=', newval if newval<0 or newval>self.endFrame: #print 'custom_counter returning ', text return text else: #print 'custom_counter returning ', newval return newval if __name__ == '__main__': def foo(val): print val root = Tkinter.Tk() root.withdraw() pl = Player( master=root, endFrame=10, maxFrame=10, form2=1) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/toolbarbutton.py0000644000175000017500000001573011723255352027360 0ustar debiandebian######################################################################### # # Date: Jun 2002 Author: Daniel Stoffler # # stoffler@scripps.edu # # Copyright: Daniel Stoffler and TSRI # ########################################################################## import Tkinter, ImageTk import Pmw import string, time, os # class ToolBarButton modified from 'Python and Tkinter Programming' # handbook by John E. Grayson class ToolBarButton(Tkinter.Label): """ This class implements a toolbar button. - balloonmaster is the master the balloon help is bound to - master is the frame the toolbar button is added to - name is the name of the toolbarb button the toolbar button can have None, one or two icons which will represent the button in its disabled (icon1) and enabled (icon2) form. - command is the command bound to the button - balloonhelp is a text string to be presented as balloon help if the application supports balloon help - statushelp is a text string to be written in the status bar of the application if available - height is the height of the button - width is the width of the button - bd is the border in pixels of the raised button - activebackground is the background of the raised button - padx and pady are for padding the buddon - state can be 'normal' or 'disabled' - bg is the background color of the button - iconpath is a path to a directory The master (frame) will get a dictionary 'toolbarButtonDict' which will store the buttons. key is the button name, value is the button. Thus, button names need to be different. """ def __init__(self, balloonmaster=None, master=None, name=None, icon1=None, icon2=None, command=None, balloonhelp='', statushelp='', height=20, width=21, bd=1, activebackground='lightgrey', padx=0, pady=0, state='normal', bg=None, iconpath=None): assert master is not None # this list stores the buttons if not hasattr(master, 'toolbarButtonDict'): master.toolbarButtonDict = {} # assert the button name doesn't exist already assert not master.toolbarButtonDict.has_key(name), name self.activebackground = activebackground self.name = name self.icommand = command self.command = self.activate self.buttonPressed = 0 # 0 if button not pressed, 1 if pressed self.buttonFocus = 0 # 0 if cursor not over button, 1 if over button Tkinter.Label.__init__(self, master, height=height, width=width, relief='flat', bd=bd, bg=bg) if iconpath is None: from mglutil.util.packageFilePath import findFilePath iconpath = findFilePath('Tk','mglutil.gui.BasicWidgets') iconpath = os.path.join(iconpath,'icons' ) #iconpath = 'mglutil.gui.BasicWidgets.Tk.icons' if icon1 is not None: ICONPATH1 = os.path.join(iconpath, icon1) if string.splitfields(icon1, '.')[1] == 'bmp': self.icon1 = Tkinter.BitmapImage(file=ICONPATH1, master=master) else: self.icon1 = ImageTk.PhotoImage(file=ICONPATH1, master=master) else: self.icon1 = None if icon2 is not None: ICONPATH2 = os.path.join(iconpath, icon2) if string.splitfields(icon2, '.')[1] == 'bmp': self.icon2 = Tkinter.BitmapImage(file=ICONPATH2, master=master) else: self.icon2 = ImageTk.PhotoImage(file=ICONPATH2, master=master) else: self.icon2 = self.icon1 self.config(image=self.icon1) # to prevent binding of the balloon overriding the binding of # Leave and Enter events, first the balloon is bound if balloonmaster is None: master.balloons = Pmw.Balloon(master, yoffset=0) balloonmaster = master if balloonhelp or statushelp: if hasattr(balloonmaster, 'balloons'): balloonmaster.balloons.bind(self, balloonhelp, statushelp) # a little trick: the '+' adds this binding, otherwise it might # be overwritten self.bind("", self.buttonEnter, '+') self.bind("", self.buttonLeave, '+') self.bind("", self.buttonDown) self.bind("", self.buttonUp) self.pack(side='left', anchor=Tkinter.NW, padx=padx, pady=pady) self.state = state # add the button to the list stored in the master master.toolbarButtonDict[name] = self if bg is None: self.bg = self.configure()['background'][-1] else: self.bg = bg def activate(self): self.icommand(self.name) def buttonEnter(self, event): if self.state != 'disabled': self.buttonFocus = 1 if self.buttonPressed == 1: self.config(relief='sunken', bg=self.bg) else: self.config(relief='raised', bg=self.bg) def buttonLeave(self, event): if self.state != 'disabled': self.config(relief='flat', bg=self.bg) self.buttonFocus = 0 def buttonDown(self, event): if self.state != 'disabled': self.config(relief='sunken', bg=self.activebackground) self.buttonPressed = 1 def buttonUp(self, event): if self.state != 'disabled': if self.command != None and self.buttonFocus: self.command() time.sleep(0.05) self.config(relief='flat', bg=self.bg) self.buttonPressed = 0 def enable(self): self.state = 'normal' self.config(image=self.icon2) def disable(self): self.state = 'disabled' self.config(image=self.icon1) if __name__ == '__main__': tbframe = Tkinter.Frame() tbframe.balloons = Pmw.Balloon(tbframe) buttonFuncs = {} def foo(): print 'You pressed a button.' def selectFunc(name): curFunc = buttonFuncs[name] if curFunc: curFunc() # add separator icon ToolBarButton(tbframe, tbframe, name='sep1', icon1='sep.gif', width=10, state='disabled') # add 5 smilies for name, icon, func, balloon in [ ('smiley1', 'smiley.gif', foo, 'This is icon1'), ('smiley2', 'smiley.gif', foo, 'This is icon2'), ('smiley3', 'smiley.gif', foo, 'This is icon3'), ('smiley4', 'smiley.gif', foo, 'This is icon4'), ('smiley5', 'smiley.gif', foo, 'This is icon5'), ]: ToolBarButton(tbframe, tbframe, name=name, icon1=icon, command=selectFunc, balloonhelp=balloon) buttonFuncs[name] = func # add separator icon ToolBarButton(tbframe, tbframe, name='sep2', icon1='sep.gif', width=10, state='disabled') # pack at the end for performance issue tbframe.pack() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/xyzGUI.py0000644000175000017500000003171510651433500025652 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ######################################################################## # # Date: Nov 2001 Author: Daniel Stoffler # # stoffler@scripps.edu # # Copyright: Daniel Stoffler, TSRI # ######################################################################### import Tkinter, numpy.oldnumeric as Numeric, string, math from mglutil.util.callback import CallbackManager from thumbwheel import ThumbWheel class xyzGUI(Tkinter.Frame): """ """ def __init__(self, master=None, name='XYZ',callback=None, callbackX=None, widthX=100, heightX=26, wheelPadX=4, labcfgX={'text':None}, widthY=100, heightY=26, wheelPadY=4, labcfgY={'text':None}, callbackY=None, widthZ=100, heightZ=26, wheelPadZ=4, callbackZ=None, labcfgZ={'text':None}, **kw): self.callback = callback # user specified callback self.name=name # title inside canvas self.widthX=widthX self.heightX=heightX self.wheelPadX=wheelPadX self.labcfgX=labcfgX self.widthY=widthY self.heightY=heightY self.wheelPadY=wheelPadY self.labcfgY=labcfgY self.widthZ=widthZ self.heightZ=heightZ self.wheelPadZ=wheelPadZ self.labcfgZ=labcfgZ Tkinter.Frame.__init__(self, master) Tkinter.Pack.config(self) self.callbacks = CallbackManager() # object to manage callback # functions. They get called with the # current value as an argument self.frame = Tkinter.Frame(self, relief = 'sunken', borderwidth=5) self.frame.pack(expand=1, fill='x') self.createEntries(self.frame) if self.callback: self.callbacks.AddCallback(self.callback) def createEntries(self, master): self.f = Tkinter.Frame(master) self.f.grid(column=1, rowspan=3) self.thumbx = ThumbWheel(master=self.f, width=self.widthX, height=self.heightX, labcfg=self.labcfgX, wheelPad=self.wheelPadX) self.thumbx.callbacks.AddCallback(self.thumbx_cb) self.thumbx.grid(row=0, column=0) self.thumby = ThumbWheel(master=self.f, width=self.widthY, height=self.heightY, labcfg=self.labcfgY, wheelPad=self.wheelPadY) self.thumby.callbacks.AddCallback(self.thumby_cb) self.thumby.grid(row=1, column=0) self.thumbz = ThumbWheel(master=self.f, width=self.widthZ, height=self.heightZ, labcfg=self.labcfgZ, wheelPad=self.wheelPadZ) self.thumbz.callbacks.AddCallback(self.thumbz_cb) self.thumbz.grid(row=2, column=0) self.f.pack(side='top', expand=1) def thumbx_cb(self, events=None): self.callbacks.CallCallbacks(self.thumbx.value) def thumby_cb(self, events=None): self.callbacks.CallCallbacks(self.thumby.value) def thumbz_cb(self, events=None): self.callbacks.CallCallbacks(self.thumbz.value) def set(self, x, y, z): # called from outside self.thumbx.setValue(x) self.thumby.setValue(y) self.thumbz.setValue(z) ##################################################################### # the 'configure' methods: ##################################################################### def configure(self, **kw): for key,value in kw.items(): # the 'set parameter' callbacks if key=='labcfgX': self.setLabel(value,'x') elif key=='labcfgY': self.setLabel(value,'y') elif key=='labcfgZ': self.setLabel(value,'z') elif key=='continuousX': self.setContinuous(value,'x') elif key=='continuousY': self.setContinuous(value,'y') elif key=='continuousZ': self.setContinuous(value,'z') elif key=='precisionX': self.setPrecision(value,'x') elif key=='precisionY': self.setPrecision(value,'y') elif key=='precisionZ': self.setPrecision(value,'z') elif key=='typeX': self.setType(value,'x') elif key=='typeY': self.setType(value,'y') elif key=='typeZ': self.setType(value,'z') elif key=='minX': self.setMin(value,'x') elif key=='minY': self.setMin(value,'y') elif key=='minZ': self.setMin(value,'z') elif key=='maxX': self.setMax(value,'x') elif key=='maxY': self.setMax(value,'y') elif key=='maxZ': self.setMax(value,'z') elif key=='oneTurnX': self.setOneTurn(value,'x') elif key=='oneTurnY': self.setOneTurn(value,'y') elif key=='oneTurnZ': self.setOneTurn(value,'z') elif key=='showLabelX': self.setShowLabel(value,'x') elif key=='showLabelY': self.setShowLabel(value,'y') elif key=='showLabelZ': self.setShowLabel(value,'z') elif key=='incrementX': self.setIncrement(value,'x') elif key=='incrementY': self.setIncrement(value,'y') elif key=='incrementZ': self.setIncrement(value,'z') #################################################### elif key=='lockTypeX': self.lockType(value,'x') elif key=='lockTypeY': self.lockType(value,'y') elif key=='lockTypeZ': self.lockType(value,'z') elif key=='lockMinX': self.lockMin(value,'x') elif key=='lockMinY': self.lockMin(value,'y') elif key=='lockMinZ': self.lockMin(value,'z') elif key=='lockBMinX': self.lockBMin(value,'x') elif key=='lockBMinY': self.lockBMin(value,'y') elif key=='lockBMinZ': self.lockBMin(value,'z') elif key=='lockMaxX': self.lockMax(value,'x') elif key=='lockMaxY': self.lockMax(value,'y') elif key=='lockMaxZ': self.lockMax(value,'z') elif key=='lockBMaxX': self.lockBMax(value,'x') elif key=='lockBMaxY': self.lockBMax(value,'y') elif key=='lockBMaxZ': self.lockBMax(value,'z') elif key=='lockIncrementX': self.lockIncrement(value,'x') elif key=='lockIncrementY': self.lockIncrement(value,'y') elif key=='lockIncrementZ': self.lockIncrement(value,'z') elif key=='lockBIncrementX': self.lockBIncrement(value,'x') elif key=='lockBIncrementY': self.lockBIncrement(value,'y') elif key=='lockBIncrementZ': self.lockBIncrement(value,'z') elif key=='lockPrecisionX': self.lockPrecision(value,'x') elif key=='lockPrecisionY': self.lockPrecision(value,'y') elif key=='lockPrecisionZ': self.lockPrecision(value,'z') elif key=='lockShowLabelX': self.lockShowLabel(value,'x') elif key=='lockShowLabelY': self.lockShowLabel(value,'y') elif key=='lockShowLabelZ': self.lockShowLabel(value,'z') elif key=='lockValueX': self.lockValue(value,'x') elif key=='lockValueY': self.lockValue(value,'y') elif key=='lockValueZ': self.lockValue(value,'z') elif key=='lockContinuousX': self.lockContinuous(value,'x') elif key=='lockContinuousY': self.lockContinuous(value,'y') elif key=='lockContinuousZ': self.lockContinuous(value,'z') elif key=='lockOneTurnX': self.lockOneTurn(value,'x') elif key=='lockOneTurnY': self.lockOneTurn(value,'y') elif key=='lockOneTurnZ': self.lockOneTurn(value,'z') def setLabel(self, label, mode): if mode == 'x': self.thumbx.setLabel(label) elif mode == 'y': self.thumby.setLabel(label) elif mode == 'z': self.thumbz.setLabel(label) def setContinuous(self, value, mode): if mode == 'x': self.thumbx.setContinuous(value) elif mode == 'y': self.thumby.setContinuous(value) elif mode == 'z': self.thumbz.setContinuous(value) def setPrecision(self, value, mode): if mode == 'x': self.thumbx.setPrecision(value) elif mode == 'y': self.thumby.setPrecision(value) elif mode == 'z': self.thumbz.setPrecision(value) def setType(self, type, mode): if type == 'int': type = int else: type = float if mode == 'x': self.thumbx.setType(type) elif mode == 'y': self.thumby.setType(type) elif mode == 'z': self.thumbz.setType(type) def setMin(self, value, mode): if mode == 'x': self.thumbx.setMin(value) elif mode == 'y': self.thumby.setMin(value) elif mode == 'z': self.thumbz.setMin(value) def setMax(self, value, mode): if mode == 'x': self.thumbx.setMax(value) elif mode == 'y': self.thumby.setMax(value) elif mode == 'z': self.thumbz.setMax(value) def setOneTurn(self, value, mode): if mode == 'x': self.thumbx.setOneTurn(value) elif mode == 'y': self.thumby.setOneTurn(value) elif mode == 'z': self.thumbz.setOneTurn(value) def setShowLabel(self, value, mode): if mode == 'x': self.thumbx.setShowLabel(value) if mode == 'y': self.thumby.setShowLabel(value) if mode == 'z': self.thumbz.setShowLabel(value) def setIncrement(self, value, mode): if mode == 'x': self.thumbx.setIncrement(value) if mode == 'y': self.thumby.setIncrement(value) if mode == 'z': self.thumbz.setIncrement(value) ##################################################################### # the 'lock' methods: ##################################################################### def lockType(self, value, mode): if mode == 'x': self.thumbx.lockTypeCB(value) if mode == 'y': self.thumby.lockTypeCB(value) if mode == 'z': self.thumbz.lockTypeCB(value) def lockMin(self, value, mode): if mode == 'x': self.thumbx.lockMinCB(value) if mode == 'y': self.thumby.lockMinCB(value) if mode == 'z': self.thumbz.lockMinCB(value) def lockBMin(self, value, mode): if mode == 'x': self.thumbx.lockBMinCB(value) if mode == 'y': self.thumby.lockBMinCB(value) if mode == 'z': self.thumbz.lockBMinCB(value) def lockMax(self, value, mode): if mode == 'x': self.thumbx.lockMaxCB(value) if mode == 'y': self.thumby.lockMaxCB(value) if mode == 'z': self.thumbz.lockMaxCB(value) def lockBMax(self, value, mode): if mode == 'x': self.thumbx.lockBMaxCB(value) if mode == 'y': self.thumby.lockBMaxCB(value) if mode == 'z': self.thumbz.lockBMaxCB(value) def lockIncrement(self, value, mode): if mode == 'x': self.thumbx.lockIncrementCB(value) if mode == 'y': self.thumby.lockIncrementCB(value) if mode == 'z': self.thumbz.lockIncrementCB(value) def lockBIncrement(self, value, mode): if mode == 'x': self.thumbx.lockBIncrementCB(value) if mode == 'y': self.thumby.lockBIncrementCB(value) if mode == 'z': self.thumbz.lockBIncrementCB(value) def lockPrecision(self, value, mode): if mode == 'x': self.thumbx.lockPrecisionCB(value) if mode == 'y': self.thumby.lockPrecisionCB(value) if mode == 'z': self.thumbz.lockPrecisionCB(value) def lockShowLabel(self, value, mode): if mode == 'x': self.thumbx.lockShowLabelCB(value) if mode == 'y': self.thumby.lockShowLabelCB(value) if mode == 'z': self.thumbz.lockShowLabelCB(value) def lockValue(self, value, mode): if mode == 'x': self.thumbx.lockValueCB(value) if mode == 'y': self.thumby.lockValueCB(value) if mode == 'z': self.thumbz.lockValueCB(value) def lockContinuous(self, value, mode): if mode == 'x': self.thumbx.lockContinuousCB(value) if mode == 'y': self.thumby.lockContinuousCB(value) if mode == 'z': self.thumbz.lockContinuousCB(value) def lockOneTurn(self, value, mode): if mode == 'x': self.thumbx.lockOneTurnCB(value) if mode == 'y': self.thumby.lockOneTurnCB(value) if mode == 'z': self.thumbz.lockOneTurnCB(value) if __name__ == '__main__': test = xyzGUI() def foo(val): print val test.callbacks.AddCallback(foo) test.configure(lockOneTurnX=1) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/optionsPanel.py0000644000175000017500000007027110725343144027134 0ustar debiandebian######################################################################### # # Date: May 2001 Author: Daniel Stoffler # # stoffler@scripps.edu # # Copyright: Daniel Stoffler, TSRI # ######################################################################### import Tkinter, Pmw from mglutil.gui.InputForm.Tk.gui import InputFormDescr, InputForm from mglutil.util.misc import ensureFontCase class OptionsPanel: """ This class builds the options panel used in various GUIs. master is the widget for which the panel is created. title is the title of the """ def __init__(self, master=None, title=None): self.master = master self.root = None self.title = title if self.title is None: self.title = 'Options Panel' if self.master is None: # this is to test this widget without a widget self.master = Tkinter.Tk() self.master.continuous = 1 def configure(**kw): pass self.master.configure = configure self.master.min = None # min value allowed for val self.master.max = None # max value allowed for val self.master.increment = None # discrete value allowed for val self.master.incrementOld = 0.0 self.master.oneTurn = 1.0 self.master.value = 0.0 self.master.type = float self.master.precision = 3 self.master.showLabel = 0 self.master.labelFormat = "%d" self.master.minOld = 0 self.master.maxOld = 0 self.master.lockContinuous = 0 self.master.lockMin = 0 self.master.lockMax = 0 self.master.lockBMin = 0 self.master.lockBMax = 0 self.master.lockIncrement = 1 self.master.lockBIncrement = 0 self.master.lockValue = 0 self.master.lockOneTurn = 0 self.master.lockShowLabel = 0 self.master.lockType = 0 self.master.lockPrecision = 0 self.master.opPanel = self #self.master.withdraw() self.flag = 0 # this flag toggles display/undisplay # used in the various GUIs self.type = float # can be float or int self.toggleMin = Tkinter.IntVar() self.minInput = Tkinter.StringVar() self.min_entry = None self.toggleMax = Tkinter.IntVar() self.maxInput = Tkinter.StringVar() self.max_entry = None self.toggleIncr = Tkinter.IntVar() self.incrInput = Tkinter.StringVar() self.incr_entry = None self.valInput = Tkinter.StringVar() self.sensInput = Tkinter.StringVar() self.toggleMin.set(0) self.toggleMax.set(0) self.toggleIncr.set(0) self.idf = InputFormDescr(title=self.title) self.idf.append({'widgetType':Tkinter.Label, 'wcfg':{'text': '\n'}, 'gridcfg':{'columnspan':3, 'row':0, 'column':0}, }) self.idf.append({'name':'togCont', 'widgetType':Pmw.OptionMenu, 'wcfg':{'labelpos':'w', 'label_text':'Continuous ', 'menubutton_width':3, 'items':('on', 'off'), 'command': self.toggleCont_cb}, 'gridcfg':{'sticky':'we', 'columnspan':2, 'row':1, 'column':0}, }) self.idf.append({'name':'togMin', 'widgetType':Tkinter.Checkbutton, 'wcfg':{'text':'Minimum', 'variable':self.toggleMin, 'command':self.toggleMin_cb}, 'gridcfg':{'sticky':'w', 'columnspan':2, 'row':2, 'column':0} }) self.idf.append({'name':'inpMin', 'widgetType':Tkinter.Entry, 'defaultValue':'0.0', 'wcfg':{'font':(ensureFontCase('Courier'),10), 'width':5, 'textvariable':self.minInput, 'command':self.inputMin_cb, 'eventType':''}, 'gridcfg':{'sticky':'we', 'columnspan':2, 'row':2, 'column':1 } }) self.idf.append({'name':'togMax', 'widgetType':Tkinter.Checkbutton, 'wcfg':{'text':'Maximum', 'variable':self.toggleMax, 'command':self.toggleMax_cb, }, 'gridcfg':{'sticky':'w', 'columnspan':2, 'row':3, 'column':0} }) self.idf.append({'name':'inpMax', 'widgetType':Tkinter.Entry, 'defaultValue':'0.0', 'wcfg':{'font':(ensureFontCase('Courier'),10), 'width':5,'textvariable':self.maxInput, 'command':self.inputMax_cb,}, 'gridcfg':{'sticky':'we', 'columnspan':2, 'row':3, 'column':1 } }) self.idf.append({'name':'togIncr', 'widgetType':Tkinter.Checkbutton, 'wcfg':{'text':'Increment', 'variable':self.toggleIncr, 'command':self.toggleIncr_cb}, 'gridcfg':{'sticky':'w', 'columnspan':2, 'row':4, 'column':0} }) self.idf.append({'name':'inpIncr', 'widgetType':Tkinter.Entry, 'defaultValue':'0.1', 'wcfg':{'font':(ensureFontCase('Courier'),10), 'width':5,'textvariable':self.incrInput, 'command':self.inputIncr_cb, }, 'gridcfg':{'sticky':'we', 'columnspan':2, 'row':4, 'column':1 } }) self.idf.append({'widgetType':Tkinter.Label, 'wcfg':{'text': 'Value'}, 'gridcfg':{'sticky':'w', 'columnspan':2, 'row':5, 'column':0}, }) self.idf.append({'name':'inpVal', 'widgetType':Tkinter.Entry, 'defaultValue':'0.0', 'wcfg':{'font':(ensureFontCase('Courier'),10), 'width':5,'textvariable':self.valInput, 'command':self.inputVal_cb, }, 'gridcfg':{'sticky':'we', 'columnspan':2, 'row':5, 'column':1 } }) self.idf.append({'widgetType':Tkinter.Label, 'wcfg':{'text': 'Sensitivity'}, 'gridcfg':{'sticky':'w', 'columnspan':2, 'row':6, 'column':0}, }) self.idf.append({'name':'inpSens', 'widgetType':Tkinter.Entry, 'defaultValue':self.master.oneTurn, 'wcfg':{'font':(ensureFontCase('Courier'),10), 'width':5,'textvariable':self.sensInput, 'command':self.inputSens_cb, }, 'gridcfg':{'sticky':'we', 'columnspan':2, 'row':6, 'column':1 } }) self.idf.append({'name':'togLabel', 'widgetType':Pmw.OptionMenu, 'wcfg':{'labelpos':'w', 'label_text':'Show label', 'menubutton_width':5, 'items':('never', 'always', 'move'), 'command': self.toggleLabel_cb}, 'gridcfg':{'sticky':'we', 'columnspan':2}, }) self.idf.append({'name':'togIntFloat', 'widgetType':Pmw.OptionMenu, 'wcfg':{'labelpos':'w', 'label_text':'Type', 'menubutton_width':3, 'items':('float', 'int'), 'command': self.toggleIntFloat_cb}, 'gridcfg':{'sticky':'we', 'columnspan':2}, }) self.idf.append({'name':'selPrec', 'widgetType':Pmw.OptionMenu, 'wcfg':{'labelpos':'w', 'label_text':'Precision', 'menubutton_width':3, 'items':("1", '2', '3', '4', '5', '6', '7', '8', '9', '10' ), 'command': self.selPrec_cb}, 'gridcfg':{'sticky':'we', 'columnspan':2}, }) #########Buttons########## self.idf.append({'name':'OKButton', 'widgetType':Tkinter.Button, 'text':' OK ', 'wcfg':{'bd':3}, 'gridcfg':{'sticky':'we', 'row':10,'column':0}, 'command': self.OK_cb}) self.idf.append({'name':'ApplyButton', 'widgetType':Tkinter.Button, 'text':'Apply', 'wcfg':{'bd':3}, 'gridcfg':{'sticky':'we', 'row':10,'column':1}, 'command': self.Apply_cb}) self.idf.append({'name':'CancelButton', 'widgetType':Tkinter.Button, 'text':'Dismiss', 'wcfg':{'bd':3}, 'gridcfg':{'sticky':'we', 'row':11, 'column':0, 'columnspan':2}, 'command': self.Dismiss_cb}) def toggleCont_cb(self, val): if val == 'off': self.master.configure(continuous=0) else: self.master.configure(continuous=1) def toggleMin_cb(self): if self.toggleMin.get() != 1: self.master.min = None self.min_entry.configure(state='disabled', fg='gray40') else: self.min_entry.configure(state='normal', fg='gray0') self.inputMin_cb() def inputMin_cb(self, event=None): val = self.minInput.get() if len(val) == 0: val = self.master.min try: val = float(val) self.master.configure(min=val) except ValueError: # put back original value if someone types garbage self.minInput.set(self.master.labelFormat%self.master.minOld) def toggleMax_cb(self): if self.toggleMax.get() != 1: self.master.max = None self.max_entry.configure(state='disabled', fg='gray40') else: self.max_entry.configure(state='normal', fg='gray0') self.inputMax_cb() def inputMax_cb(self, event=None): val = self.maxInput.get() if len(val) == 0: val = self.master.max try: val = float(val) self.master.configure(max=val) except ValueError: # put back original value if someone types garbage self.maxInput.set(self.master.labelFormat%self.master.maxOld) def toggleIncr_cb(self): if self.toggleIncr.get() != 1: self.master.increment = None#self.master.type(0) self.incr_entry.configure(state='disabled', fg='gray40') self.toggleIncr.set(0) else: self.incr_entry.configure(state='normal', fg='gray0') self.master.offsetValue = self.master.value self.inputIncr_cb() def inputIncr_cb(self, event=None): val = self.incrInput.get() if len(val) == 0: val = self.master.increment try: val = float(val) self.master.configure(increment=val) except ValueError: # put back original value if someone types garbage self.incrInput.set(self.master.labelFormat%self.master.incrementOld) def inputVal_cb(self, event=None): val = self.valInput.get() if len(val) == 0: val = self.master.value try: val = float(val) self.master.set(val, force=1) # force execution, even if mode # 'continuous' is OFF except ValueError: self.valInput.set(self.master.labelFormat%self.master.value) def inputSens_cb(self, event=None): val = self.sensInput.get() if len(val) == 0: val = self.master.oneTurn try: val = float(val) self.master.configure(oneTurn=val) except ValueError: # put back original value if someone types garbage self.sensInput.set(self.master.labelFormat%self.master.oneTurn) def toggleLabel_cb(self, val): if val == 'never': self.master.configure(showLabel=0) if val == 'always': self.master.configure(showLabel=1) if val == 'move': self.master.configure(showLabel=2) def toggleIntFloat_cb(self, val): if val == 'float': type=float else: type=int self.master.configure(type=type) self.showHidePrec(val) def selPrec_cb(self, val): val = int(val) self.master.configure(precision=val) def showHidePrec(self, val): if val == 'int': self.idf.entryByName['selPrec']['widget'].grid_forget() else: apply( self.idf.entryByName['selPrec']['widget'].grid,(), self.idf.entryByName['selPrec']['gridcfg']) def setTitle(self, title): self.title = title self.idf.title = title if hasattr(self, 'optionsForm'): self.optionsForm.root.title(self.title) def OK_cb(self, event=None): self.Apply_cb() self.Dismiss_cb() def Apply_cb(self, event=None): # read all the Tkinter.Entry widgets and configure the widget # note: combobox widgets get applied automatically upon user selection if self.master.min is not None: self.inputMin_cb() if self.master.max is not None: self.inputMax_cb() if self.master.increment is not None: self.inputIncr_cb() self.inputVal_cb() self.inputSens_cb() def Dismiss_cb(self, event=None): self.flag = 0 self.optionsForm.withdraw() def displayPanel(self, create): self.flag = 1 if create == 0: self.optionsForm.deiconify() else: self.optionsForm = InputForm(self.master, self.root, descr = self.idf, modal = 0, blocking = 0) self.cont_entry = self.idf.entryByName['togCont']['widget'] self.min_entry = self.idf.entryByName['inpMin']['widget'] self.bmin_entry = self.idf.entryByName['togMin']['widget'] self.max_entry = self.idf.entryByName['inpMax']['widget'] self.bmax_entry = self.idf.entryByName['togMax']['widget'] self.incr_entry = self.idf.entryByName['inpIncr']['widget'] self.bincr_entry = self.idf.entryByName['togIncr']['widget'] self.val_entry = self.idf.entryByName['inpVal']['widget'] self.sens_entry = self.idf.entryByName['inpSens']['widget'] self.lab_entry = self.idf.entryByName['togLabel']['widget'] self.if_entry = self.idf.entryByName['togIntFloat']['widget'] self.prec_entry = self.idf.entryByName['selPrec']['widget'] if self.master.min is not None: val = self.master.type(self.master.min) self.minInput.set(self.master.labelFormat%val) self.toggleMin.set(1) self.min_entry.configure(state='normal', fg='gray0') else: self.min_entry.configure(state='disabled', fg='gray40') self.bmin_entry.configure(state='normal', fg='gray0') if self.master.max is not None: val = self.master.type(self.master.max) self.maxInput.set(self.master.labelFormat%val) self.toggleMax.set(1) self.max_entry.configure(state='normal', fg='gray0') self.bmax_entry.configure(state='normal', fg='gray0') if self.master.increment is not None: val = self.master.type(self.master.increment) self.incrInput.set(self.master.labelFormat%val) if self.master.increment != 0: self.toggleIncr.set(1) self.incr_entry.configure(state='normal', fg='gray0') self.bincr_entry.configure(state='normal', fg='gray0') menus = (self.cont_entry, self.lab_entry, self.if_entry, self.prec_entry) Pmw.alignlabels(menus) if self.master.continuous == None or self.master.continuous == 0:\ i=1 else: i=0 self.cont_entry.setitems( items=('on','off'),index=i) if self.master.type == int: self.if_entry.setitems( items=('float', 'int'), index = 1) prc = int(self.master.precision) - 1 if prc > 9: prc = 9 self.prec_entry.setitems( items=('1', '2', '3', '4', '5', '6', '7', '8', '9', '10'), index = prc) self.lab_entry.setitems( items=('never', 'always', 'move'), index=self.master.showLabel) if self.if_entry.getcurselection() == 'int': self.showHidePrec('int') self.updateDisplay() self.lockUnlockDisplay() def lockUnlockDisplay(self): if self.master.lockContinuous == 1: self.cont_entry.component('menubutton').configure(state='disabled') else: self.cont_entry.component('menubutton').configure(state='normal') if self.master.lockMin == 0: self.min_entry.configure(state='disabled', fg='gray40') else: self.min_entry.configure(state='normal', fg='gray0') if self.master.lockBMin == 1: self.bmin_entry.configure(state='disabled') else: self.bmin_entry.configure(state='normal') if self.master.lockMax == 0: self.max_entry.configure(state='disabled', fg='gray40') else: self.max_entry.configure(state='normal', fg='gray0') if self.master.lockBMax == 1: self.bmax_entry.configure(state='disabled') else: self.bmax_entry.configure(state='normal') if self.master.lockIncrement == 0: self.incr_entry.configure(state='disabled', fg='gray40') else: self.incr_entry.configure(state='normal', fg='gray0') if self.master.lockBIncrement == 1: self.bincr_entry.configure(state='disabled') else: self.bincr_entry.configure(state='normal') if self.master.lockValue == 1: self.val_entry.configure(state='disabled', fg='gray40') else: self.val_entry.configure(state='normal', fg='gray0') if self.master.lockOneTurn == 1: self.sens_entry.configure(state='disabled', fg='gray40') else: self.sens_entry.configure(state='normal', fg='gray0') if self.master.lockShowLabel == 1: self.lab_entry.component('menubutton').configure(state='disabled') else: self.lab_entry.component('menubutton').configure(state='normal') if self.master.lockType == 1: self.if_entry.component('menubutton').configure(state='disabled') else: self.if_entry.component('menubutton').configure(state='normal') if self.master.lockPrecision == 1: self.prec_entry.component('menubutton').configure(state='disabled') else: self.prec_entry.component('menubutton').configure(state='normal') def updateDisplay(self): if self.master.opPanel.flag == 1: if self.master.min is None: self.minInput.set(self.master.labelFormat%self.master.minOld) self.min_entry.configure(state='disabled', fg='gray40') else: self.minInput.set(self.master.labelFormat%self.master.min) self.min_entry.configure(state='normal', fg='gray0') if self.master.max is None: self.maxInput.set(self.master.labelFormat%self.master.maxOld) self.max_entry.configure(state='disabled', fg='gray40') else: self.maxInput.set(self.master.labelFormat%self.master.max) self.max_entry.configure(state='normal', fg='gray0') if self.master.increment is None or self.master.increment == 0.: self.incrInput.set( self.master.labelFormat%self.master.incrementOld) self.incr_entry.configure(state='disabled', fg='gray40') else: self.incrInput.set(self.master.labelFormat%self.master.increment) self.incr_entry.configure(state='normal', fg='gray0') if self.master.value == None: self.valInput.set(self.master.labelFormat%0) else: self.valInput.set(self.master.labelFormat%self.master.value) self.sensInput.set(self.master.labelFormat%self.master.oneTurn) class VectorOptionsPanel: """ This class builds the options panel used in vectorGUI """ def __init__(self, master=None, title=None): self.master = master self.root = None self.title = title if self.title is None: self.title = 'Options Panel' if self.master is None: self.master = Tkinter.Tk() self.master.continuous = 1 self.master.withdraw() self.flag = 0 # this flag toggles display/undisplay self.idf = InputFormDescr(title=self.title) self.idf.append({'widgetType':Tkinter.Label, 'wcfg':{'text': '\n'}, 'gridcfg':{'columnspan':2, 'row':0, 'column':0}, }) self.idf.append({'name':'togCont', 'widgetType':Pmw.OptionMenu, 'wcfg':{'labelpos':'w', 'label_text':'Continuous ', 'menubutton_width':3, 'items':('on', 'off'), 'command': self.toggleCont_cb}, 'gridcfg':{'sticky':'we', 'columnspan':2, 'row':1, 'column':0}, }) self.idf.append({'name':'togAxes', 'widgetType':Pmw.OptionMenu, 'wcfg':{'labelpos':'w', 'label_text':'Axis Mode ', 'menubutton_width':3, 'items':('XY', 'X', 'Y', 'Z'), 'command': self.toggleAxes_cb}, 'gridcfg':{'sticky':'we', 'columnspan':2, 'row':2, 'column':0}, }) self.idf.append({'name':'selPrec', 'widgetType':Pmw.OptionMenu, 'wcfg':{'labelpos':'w', 'label_text':'Precision', 'menubutton_width':3, 'items':('1', '2', '3', '4', '5', '6', '7', '8', '9', '10' ), 'command': self.selPrec_cb}, 'gridcfg':{'sticky':'we', 'columnspan':2, 'row':3, 'column':0}, }) self.idf.append({'name':'DismissButton', 'widgetType':Tkinter.Button, 'text':'Dismiss', 'wcfg':{'bd':3}, 'gridcfg':{'columnspan':2}, 'command': self.Dismiss_cb}) def toggleCont_cb(self, val): if val == 'off': self.master.configure(continuous=0) else: self.master.configure(continuous=1) def toggleAxes_cb(self, val): self.master.configure(mode=val) def selPrec_cb(self, val): self.master.configure(precision=val) def Dismiss_cb(self): self.flag = 0 self.optionsForm.withdraw() def displayPanel(self, create): self.flag = 1 if create == 0: self.optionsForm.deiconify() else: self.optionsForm = InputForm(self.master, self.root, descr = self.idf, modal = 0, blocking = 0) self.cont_entry = self.idf.entryByName['togCont']['widget'] self.mode_entry = self.idf.entryByName['togAxes']['widget'] self.prec_entry = self.idf.entryByName['selPrec']['widget'] menus = (self.cont_entry, self.mode_entry, self.prec_entry) Pmw.alignlabels(menus) w = self.idf.entryByName['togCont']['widget'] if self.master.continuous == None or self.master.continuous == 0: w.setvalue('on')#i=1 else: w.setvalue('off')#i=0 axe = self.master.mode if axe == 'XY': axe=0 elif axe == 'X': axe=1 elif axe == 'Y': axe=2 elif axe == 'Z': axe=3 self.idf.entryByName['togAxes']['widget'].setitems( items=('XY', 'X', 'Y', 'Z'), index=axe) prc = int(self.master.precision) - 1 if prc > 9: prc = 9 self.idf.entryByName['selPrec']['widget'].setitems( items=('1', '2', '3', '4', '5', '6', '7', '8', '9', '10'), index = prc) self.updateDisplay() self.lockUnlockDisplay() def lockUnlockDisplay(self): if self.master.lockContinuous == 1: self.cont_entry.component('menubutton').configure(state='disabled') else: self.cont_entry.component('menubutton').configure(state='normal') if self.master.lockMode == 1: self.mode_entry.component('menubutton').configure(state='disabled') else: self.mode_entry.component('menubutton').configure(state='normal') if self.master.lockPrecision == 1: self.prec_entry.component('menubutton').configure(state='disabled') else: self.prec_entry.component('menubutton').configure(state='normal') def updateDisplay(self): self.master.entryXTk.set( self.master.thumbx.labelFormat%self.master.vector[0]) self.master.entryYTk.set( self.master.thumby.labelFormat%self.master.vector[1]) self.master.entryZTk.set( self.master.thumbz.labelFormat%self.master.vector[2]) if __name__ == '__main__': test = OptionsPanel(title="My Options Panel") test.displayPanel(create=1) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/colorWidgets.py0000644000175000017500000013432011555626210027122 0ustar debiandebian############################################################################# # # Author: Sophie COON, Michel F. SANNER # # Copyright: M. Sanner TSRI 2000 # ############################################################################# #$Header: /opt/cvs/python/packages/share1.5/mglutil/gui/BasicWidgets/Tk/colorWidgets.py,v 1.33 2011/04/26 20:35:20 sargis Exp $ # #$Id: colorWidgets.py,v 1.33 2011/04/26 20:35:20 sargis Exp $ # import Tkinter, Pmw, os import numpy.oldnumeric as Numeric from types import ListType, TupleType from mglutil.util.callback import CallbackFunction, CallbackManager from mglutil.util.colorUtil import ToRGB, ToHSV, ToHEX from mglutil.gui.InputForm.Tk.gui import InputFormDescr,InputForm,evalString from mglutil.gui.BasicWidgets.Tk.customizedWidgets import ExtendedSliderWidget from mglutil.gui.BasicWidgets.Tk.customizedWidgets import ListChooser from mglutil.gui.BasicWidgets.Tk.fileBrowsers import fileOpenAsk, fileSaveAsk import tkMessageBox import os, math from mglutil.util.packageFilePath import getResourceFolder class ColorWheel: def __init__(self, master, title=None, callback=None, immediate=1): if not master: master = Tkinter.Toplevel() if title is not None: master.title(title) f = self.frame = Tkinter.Frame(master) path = __import__('mglutil').__path__ iconfile = os.path.join(path[0],'gui/BasicWidgets/Tk/cw.ppm') self.iconfile = iconfile self.cwim = Tkinter.PhotoImage(file=iconfile, master=master) self.width = self.cwim.width() self.height = self.cwim.height() self.cwcanvas = Tkinter.Canvas(f, width=self.width, height=self.height, ###relief='sunken', borderwidth=3 ) self.cwcanvas.create_image(3, 3, anchor=Tkinter.NW, image=self.cwim) self.cwcanvas.pack() self.frame.pack() #self.callback = None self.cbManager = CallbackManager() if callback: if type(callback) in [ListType, TupleType]: map(self.cbManager.AddCallback, callback) else: self.cbManager.AddCallback(callback) self.afterID = None self.immediate = immediate self.x = 0 self.y = 0 self.radius = 55 cx = self.cx = self.width/2 + 3 cy = self.cy = self.height/2 + 3 self.cursor = self.cwcanvas.create_line( cx-3, cy-3, cx-3, cy+3, cx+3,cy+3, cx+3, cy-3, cx-3, cy-3 ) self.hsvColor = [1.,1.,1.] self.cwcanvas.bind('', self.mouse1Down) #self.cursor = self.cwcanvas.create_line(cx, cy, cx-55, cy) def _MoveCursor(self, x, y, trigger=1): # find the saturation based on distance s = math.sqrt(x*x + y*y) / self.radius if s > 1.0: x = x / s y = y / s s = 1.0 # now find the hue based on the angle if x or y: angle = math.atan2(y, x) if angle < 0.0: angle = angle + (2.*math.pi) h = 1. - angle / (2.0 * math.pi) else: h = 0 # check if redraw and callback are needed if self.hsvColor[0] != h or self.hsvColor[1] != s: if trigger==1: self.hsvColor[0] = h self.hsvColor[1] = s cx = self.cx+x cy = self.cy+y self.cwcanvas.coords( self.cursor, cx-3, cy-3, cx-3, cy+3, cx+3,cy+3, cx+3, cy-3, cx-3, cy-3 ) if self.cbManager.callbacks: self.cbManager.CallCallbacks(self.get('RGB')) def mouse1Down(self, event=None): self.cwcanvas.bind('', self.mouse1Move) self.cwcanvas.bind('', self.mouse1Up) self._MoveCursor(event.x - self.cx, event.y - self.cy) def mouse1Move(self, event=None): if self.immediate: if self.afterID is not None: self.cwcanvas.after_cancel(self.afterID) self.afterID = None else: self.afterID = self.cwcanvas.after(15,self._MoveCursor , event.x - self.cx, event.y - self.cy) else: self._MoveCursor(event.x - self.cx, event.y - self.cy, trigger=0) def mouse1Up(self, event=None): self._MoveCursor(event.x - self.cx, event.y - self.cy) self.cwcanvas.unbind('') self.cwcanvas.unbind('') def get(self, mode='HSV'): """Get the current color""" if mode == 'RGB': rgb = ToRGB(self.hsvColor) #return OneColor(rgb) return rgb elif mode == 'HSV': #return OneColor(self.hsvColor) return self.hsvColor elif mode == 'HEX': col = Numeric.array(ToRGB(self.hsvColor[:]), 'f') * 255 return ToHEX(col) def set(self, color, mode='HSV', trigger=1): """Set the current color""" assert len(color)==3 #color = OneColor(color) if mode=='RGB': color = ToHSV(color[:]) self.hsvColor = list(color[:]) # update cursor rad = self.hsvColor[1] * self.radius angle = 2.0 * math.pi * (1. - self.hsvColor[0]) cx = self.cx + int(rad * math.cos(angle)) cy = self.cy + int(rad * math.sin(angle)) self.cwcanvas.coords( self.cursor, cx-3, cy-3, cx-3, cy+3, cx+3,cy+3, cx+3, cy-3, cx-3, cy-3 ) if trigger==1 and self.immediate and self.cbManager.callbacks: self.cbManager.CallCallbacks(self.get('RGB')) class ColorEditor: """ The ColorEditor is a widget providing a colorwheel, a value scale, HSV entries, RGB entries and HEX(HexTriplet) entries """ def __init__(self, master=None, currentColor=(1.0,1.0,1.0), mode='RGB', commands = None, immediate=1): assert mode in ['RGB', 'HSV','HEX'] self.mode = mode if not master: self.master = Tkinter.Toplevel() else: self.master = master self.afterID = None self.immediate = immediate # The editFrame is the main Frame of the widget self.editFrame = Tkinter.Frame(self.master, borderwidth=2, relief='ridge') self.cbManager = CallbackManager() if commands: if type(commands) in [ListType, TupleType]: map(self.cbManager.AddCallback, commands) else: self.cbManager.AddCallback(commands) if mode == 'HSV': self.currentHSV = list(currentColor) self.currentRGB = list(ToRGB(currentColor)) self.currentHEX = ToHEX(currentColor, mode = 'HSV') elif mode == 'RGB': self.currentRGB = list(currentColor) self.currentHSV = list(ToHSV(currentColor)) self.currentHEX = ToHEX(currentColor, mode='RGB') elif mode == 'HEX': self.currentRGB = ToHEX(currentColor, mode='RGB') self.currentHSV = ToHEX(currentColor, mode='HSV') self.currentHEX = currentColor else: print 'mode not recognized mode set to RGB' self.createColorEditor() def createColorEditor(self): # The chooserFrame containinsg the colorwheel and the value scale chooserFrame = Tkinter.Frame(self.editFrame) # Create a Tkinter Scale widget bound a callback : self.scale_cb self.vScale = Tkinter.Scale(chooserFrame, from_ = 1.0, to_ = 0.0, orient='vertical', resolution=0.01,) ## command = self.scale_cb) if self.immediate: self.vScale.configure(command=self.scale_cb) else: self.vScale.bind('', self.scaleUp_cb) # pack the scale to be on the left side of the colorwheel self.vScale.pack(side='right', padx=5, pady=5, expand=1, fill='both') self.vScale.set(1.0) # Create the colorWheel Frame wheelFrame = Tkinter.Frame(chooserFrame, relief='ridge', borderwidth=1) # Pack the ColorWheel wheelFrame.pack(side='left',pady=5, padx=10,fill='both', expand = 1) # Create the ColorWheel # to silent an error report from pychecker self.cw = ColorWheel(wheelFrame,None,self.colorWidget_cb,self.immediate) #self.cw = ColorWheel(wheelFrame,title=None, # callback=self.colorWidget_cb, # immediate=self.immediate) self.cw.set(self.currentRGB, mode='RGB', trigger=0) # Bind the colorwidget to a callback function self.colorWidget_cb #self.cw.callback = self.colorWidget_cb # Pack the chooserFrame chooserFrame.pack(expand=1,fill='both') bottomFrame = Tkinter.Frame(self.editFrame) #The preview frame will contain the frame to show the choosen color previewFrame = Tkinter.Frame(bottomFrame) previewFrame.pack(side='left', fill='both', expand=1) preview = Tkinter.Frame(previewFrame,) bg = self.currentHEX self.chip = Tkinter.Frame(previewFrame, borderwidth=3, width=50, height=30, bg=bg, relief='ridge') # Pack the chipFrame self.chip.pack(fill='both', expand = 1) #The entriesFrame will contain all the entryFields entriesFrame = Tkinter.Frame(bottomFrame) entriesOption = {'labelpos':'w', 'validate':{'validator':'real', 'min':0.0, 'max':1.0}, 'entry_width':4, } # the hsvFrame will contain the H,S,V entryFields hsvFrame = Tkinter.Frame(entriesFrame) entriesOption['label_text'] = 'H' entriesOption['value'] = "%4.2f"%self.currentHSV[0] entriesOption['command'] = self.hVal_cb self.hVal = apply(Pmw.EntryField, (hsvFrame,), entriesOption) self.hVal.pack(side = 'left') entriesOption['label_text'] = 'S' entriesOption['value'] = "%4.2f"%self.currentHSV[1] entriesOption['command'] = self.sVal_cb self.sVal = apply(Pmw.EntryField, (hsvFrame,), entriesOption) self.sVal.pack(side = 'left') entriesOption['label_text'] = 'V' entriesOption['value'] = "%4.2f"%self.currentHSV[2] entriesOption['command'] = self.vVal_cb self.vVal= apply(Pmw.EntryField, (hsvFrame,), entriesOption) self.vVal.pack(side = 'left') hsvFrame.pack(padx=4, pady=4,fill='both',expand=1) rgbFrame = Tkinter.Frame(entriesFrame) # RGB entries entriesOption['label_text'] = 'R' entriesOption['value'] = "%4.2f"%self.currentRGB[0] entriesOption['command'] = self.rVal_cb self.rVal = apply(Pmw.EntryField, (rgbFrame,), entriesOption) self.rVal.pack(side = 'left') entriesOption['label_text'] = 'G' entriesOption['value'] = "%4.2f"%self.currentRGB[1] entriesOption['command'] = self.gVal_cb self.gVal = apply(Pmw.EntryField, (rgbFrame,), entriesOption) self.gVal.pack(side = 'left') entriesOption['label_text'] = 'B' entriesOption['value'] = "%4.2f"%self.currentRGB[2] entriesOption['command'] = self.bVal_cb self.bVal = apply(Pmw.EntryField, (rgbFrame,), entriesOption) self.bVal.pack(side = 'left') rgbFrame.pack(padx=4, pady=4,fill='both',expand=1) hexFrame = Tkinter.Frame(entriesFrame) entriesOption['label_text'] = 'Hex triplet' entriesOption['value'] = self.currentHEX entriesOption['command'] = self.hexVal_cb del entriesOption['validate'] entriesOption['entry_width']=8 #entriesOption['validate']='alphanumeric' self.hexVal = apply(Pmw.EntryField, (hexFrame,), entriesOption) self.hexVal.pack(padx=4, pady=4,side = 'left') hexFrame.pack(fill='both',expand=1) entriesFrame.pack(side = 'right', fill='both',expand=1) bottomFrame.pack(side='bottom',fill='both', expand=1) ############################################################### #### COLOR CHOOSER UTILITY FUNCTIONs #### ############################################################### #def caluculate(self): def set(self, color, mode='RGB', trigger=1): """Set the current color""" #assert len(color)==3 assert mode in ['HSV', 'RGB', 'HEX'] self.mode = mode if mode == 'HSV': newRGB = map(lambda x: float("%4.2f"%x), ToRGB(color)) elif mode == 'HEX': newRGB = ToRGB(color, mode='HEX') else: newRGB = color if newRGB != self.currentRGB: self.updateWidgetsColor(newRGB) if trigger==1 and self.immediate and self.cbManager.callbacks: self.cbManager.CallCallbacks(self.currentRGB) def get(self, mode = 'RGB'): assert mode in ['RGB','HSV', 'HEX'] self.mode = mode if mode == 'RGB': return self.currentRGB elif mode == 'HSV': return self.currentHSV elif mode == 'HEX': col = ToHEX(self.currentRGB, mode='HEX') return col def pack(self,*args, **kw): apply(self.editFrame.pack, args, kw) def pack_forget(self,*args, **kw): apply(self.editFrame.pack_forget, args, kw) def grid(self,*args, **kw): apply(self.editFrame.grid, args, kw) def grid_forget(self,*args, **kw): apply(self.editFrame.grid_forget, args, kw) ############################################################### #### WIDGETS CALLBACK FUNCTIONS #### ############################################################### def colorWidget_cb(self, rgbcolor): # Do this test because updateCurrent is called after the set # cw. # if color is different from current color then update chip color=list(ToHSV(rgbcolor))[:] color[2] = float(self.vScale.get()) newrgb = list(ToRGB(color)) if newrgb != self.currentRGB: self.updateWidgetsColor(newrgb, who='cw') def scale_cb(self, val): if self.afterID is not None: self.vScale.after_cancel(self.afterID) self.afterID = None else: self.afterID = self.vScale.after(17, self.scaleImm_cb, val) def scaleImm_cb(self, val): newHSV = [float(self.hVal.get()),float(self.sVal.get()), float(val)] if newHSV != self.currentHSV: self.updateWidgetsColor(ToRGB(newHSV), who='scale') def scaleUp_cb(self, event=None): val = float(self.vScale.get()) newHSV = [float(self.hVal.get()),float(self.sVal.get()), float(val)] if newHSV != self.currentHSV: self.updateWidgetsColor(ToRGB(newHSV), who='scale') def hVal_cb(self): val = float(self.hVal.get()) newColor = self.currentHSV newColor[0] = val newHSV = map(lambda x: float("%4.2f"%x), newColor) if (not (float(self.vVal.get())==0.00 or \ (float(self.sVal.get())==0 and float(self.vVal.get())==1.0))): self.updateWidgetsColor(ToRGB(newHSV), who='h') def sVal_cb(self): val = float(self.sVal.get()) newColor = list(ToHSV(self.currentRGB[:])) newColor[1] = val newHSV = map(lambda x: float("%4.2f"%x), newColor) if (not float(self.vVal.get())==0) and newHSV != self.currentHSV: self.updateWidgetsColor(ToRGB(newHSV), who='s') def vVal_cb(self): newColor = [float(self.hVal.get()), float(self.sVal.get()), float(self.vVal.get())] newHSV = map(lambda x: float("%4.2f"%x), newColor) if newHSV != self.currentHSV: self.updateWidgetsColor(ToRGB(newHSV), who='v') def rVal_cb(self): val = float(self.rVal.get()) newColor = self.currentRGB[:] newColor[0] = val newRGB = map(lambda x: float("%4.2f"%x), newColor) if newRGB != self.currentRGB: self.updateWidgetsColor(newRGB, who='r') def gVal_cb(self): val = float(self.gVal.get()) newColor = self.currentRGB[:] newColor[1] = val newRGB = map(lambda x: float("%4.2f"%x), newColor) if newRGB != self.currentRGB: self.updateWidgetsColor(newRGB, who='g') def bVal_cb(self): val = float(self.bVal.get()) newColor = self.currentRGB[:] newColor[2] = val newRGB = map(lambda x: float("%4.2f"%x), newColor) if newRGB != self.currentRGB: self.updateWidgetsColor(newRGB, who='b') def hexVal_cb(self): val = self.hexVal.get() if val[0] !='#' or len(val)!=7: val = self.currentHEX newRGB = ToRGB(val, 'HEX') if newRGB != self.currentRGB: self.updateWidgetsColor(newRGB, who='hex') ############################################################### #### WIDGETS UPDATE FUNCTIONS #### ############################################################### def updateWidgetsColor(self, rgbcolor, who = 'set', trigger=1): oldRGB = list(self.currentRGB) self.currentRGB = map(lambda x: float("%4.2f"%x), rgbcolor) # If newcolor is the same than old color nothing to update. if oldRGB == self.currentRGB : return hsvcolor = ToHSV(rgbcolor[:]) self.currentHSV = map(lambda x: float("%4.2f"%x), hsvcolor) self.currentHEX = ToHEX(self.currentRGB) # Update the preview chip self.chip.configure( bg = self.currentHEX ) # ColorWidget: cwColor = self.cw.get(mode='RGB') newRGB = map(lambda x: float("%4.2f"%x),cwColor) if newRGB != self.currentRGB and not who in ['v', 'scale']: self.cw.set(self.currentRGB, mode='RGB',trigger=0) # Value Scale: scaleCol = self.vScale.get() if scaleCol != self.currentHSV[2]: self.vScale.set(self.currentHSV[2]) # H Entry: h = float(self.hVal.get()) hCol = float("%4.2f"%h) if hCol != self.currentHSV[0] and not who in ['v', 'scale']: self.hVal.setentry(self.currentHSV[0]) # S Entry: s = float(self.sVal.get()) sCol = float("%4.2f"%s) if sCol != self.currentHSV[1] and self.currentHSV[2] !=0 \ and not who in ['v', 'scale']: self.sVal.setentry(self.currentHSV[1]) # V Entry: v = float(self.vVal.get()) vCol = float("%4.2f"%v) if vCol != self.currentHSV[2]and self.currentHSV[2] !=0: self.vVal.setentry(self.currentHSV[2]) # R Entry: r = float(self.rVal.get()) rCol = float("%4.2f"%r) if rCol != self.currentRGB[0]: self.rVal.setentry(self.currentRGB[0]) # G Entry: g = float(self.gVal.get()) gCol=float("%4.2f"%g) if gCol != self.currentRGB[1]: self.gVal.setentry(self.currentRGB[1]) # B Entry: b = float(self.bVal.get()) bCol = float("%4.2f"%b) if bCol != self.currentRGB[2]: self.bVal.setentry(self.currentRGB[2]) # Hex Entry: hexCol = self.hexVal.get() if hexCol != self.currentHEX: self.hexVal.setentry(self.currentHEX) # This might depend of the mode. ? if trigger==1 and self.immediate and self.cbManager.callbacks: self.cbManager.CallCallbacks(self.currentRGB) class Chooser(object): def __init__(self, master=None, title = 'Chooser', commands = None, immediate=0, exitFunction=None): if master is None: self.master = Tkinter.Toplevel() self.ownmaster=1 self.master.title(title) #self.master.protocol('WM_DELETE_WINDOW', self.dismiss) else: self.ownmaster=0 self.master = master # The editFrame is the main Frame of the widget self.masterFrame = Tkinter.Frame(self.master, borderwidth=2, relief='ridge') self.immediate=immediate # Create a cbManager self.cbManager = CallbackManager() self.createCommon() self.createChooser() if commands: if type(commands) in [ListType, TupleType]: map(self.cbManager.AddCallback, commands) map(self.ce.cbManager.AddCallback, commands) else: self.cbManager.AddCallback(commands) self.ce.cbManager.AddCallback(commands) def createCommon(self): # Create the Menu Bar self.menuBar = Pmw.MenuBar(self.masterFrame, hull_relief = 'raised', hull_borderwidth = 1) self.menuBar.addmenu('File', 'Close this window or exit') self.mainFrame = Tkinter.Frame(self.masterFrame, borderwidth=2, relief='ridge', width=150, height=200) self.menuBar.pack(fill = 'x') ## Create the ColorEditor self.ce = ColorEditor(self.mainFrame, immediate=self.immediate) self.hidden=1 self.mainFrame.pack(fill='both', expand=1) ###################################################################### #### UTILITY FUNCTIONS #### ###################################################################### def createChooser(self): pass def pack(self, *args, **kw): apply(self.masterFrame.pack, args, kw) def pack_forget(self, *args, **kw): apply(self.masterFrame.pack_forget, args, kw) def grid(self ,*args, **kw): apply(self.masterFrame.grid, args, kw) def grid_forget(self, *args, **kw): apply(self.masterFrame.grid_forget, args, kw) colorChoosersDict = {} #colorChoosersDict stores previous ColorChoosers class ColorChooser(Chooser): colors = [ '#FF8284', '#ffff84', '#84ff84', '#00ff84', '#84ffff', '#0082ff', '#ff82c6', '#ff82ff', '#ff0000', '#ffff00', '#84ff00', '#00ff42', '#00ffff', '#0082c6', '#8482c6', '#ff00ff', '#844142', '#ff8242', '#00ff00', '#008284', '#004184', '#8482ff', '#840042', '#ff0084', '#840000', '#ff8200', '#008200', '#008242', '#0000ff', '#0000a5', '#840084', '#8400ff', '#420000', '#844100', '#004100', '#004142', '#000084', '#000042', '#420042', '#420084', '#000000', '#848200', '#848242', '#848284', '#428284', '#c6c3c6', '#6b0c94', '#ffffff', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF' ] def __new__(cls, master=None, title = 'Chooser', commands = None, immediate=0, exitFunction=None): #the following code was added to avoid having multiple copies of ColorChoosers global colorChoosersDict if colorChoosersDict.has_key(title): try: colorChoosersDict[title].master.destroy() except: pass self= object.__new__(cls) self.exitFunc = exitFunction self.mapping = {} self.currentTag = None self.rcPath = getResourceFolder() self.customColorsPath = os.path.join(self.rcPath,'customColors') if os.path.exists(self.customColorsPath): customColors = open(self.customColorsPath).read().strip() customCols = customColors.split() self.colors[48:48+len(customCols)] = customCols Chooser.__init__(self, master=master, title=title, commands = commands, immediate=immediate, exitFunction=exitFunction) if self.ownmaster: ## create dismiss button if exitFunction: cb = exitFunction else: cb = self.master.destroy self.dismissb = Tkinter.Button(self.master, text='DISMISS', command=cb) self.dismissb.pack(side='bottom', expand=1, fill='x') try: self.master.protocol('WM_DELETE_WINDOW', self.exit) except: pass colorChoosersDict[title] = self return self def __init__(self, master=None, title = 'Chooser', commands = None, immediate=0, exitFunction=None): pass def createChooser(self): self.ccFrame = Tkinter.Frame(self.mainFrame) self.menuBar.forget() ## self.menuBar.addmenuitem('File', 'command', 'Load custom', ## command = self.load, ## label='Load') ## self.menuBar.addmenuitem('File', 'command', 'Save Colors', ## command = self.save_cb, ## label='Save') ## self.menuBar.addmenuitem('File', 'separator') ## self.menuBar.addmenuitem('File', 'command', 'Exit', ## command=self.exit, ## label='Exit') ## self.menuBar.addmenu('Edit', 'editing commands') ## self.menuBar.addmenuitem('Edit', 'command','Add New Color', ## command = self.addColor, ## label='Add New Color') ## self.add = 0 ## self.menuBar.addmenuitem('Edit', 'command','Edit Custom Color', ## command = self.editColor, ## label='Edit Selected Color') self.edit = 0 ## self.menuBar.addmenuitem('Edit', 'command','Hide Color Editor', ## command = self.hideCE, ## label='Hide Color Editor') # Here we are creating the part of the widget that will contain the # chips. # ccFrame is the left part of the widget self.ccFrame.pack(side='left',expand=1, fill='both') self.addButton = Tkinter.Button(self.ccFrame, text='Add to custom', command=self.addToCustom_cb) self.addHidden = 1 # The chips frame will contain the color chips which are RadioSelect # and it is a scrolledFrame. chipsSFrame = Pmw.Group(self.ccFrame, tag_text='Basic colors:') #chipsSFrame = Pmw.ScrolledFrame(self.ccFrame, usehullsize=1, # hull_width=130, # hull_height=200, # hscrollmode = 'none') chipsSFrame.pack(padx = 5, pady = 3)#, fill = 'both', expand = 1) # Create the RadioSelect empty self.chipsFrame = chipsSFrame.interior() self.colorVar = colorVar = Tkinter.IntVar(0) colors = self.colors for i in range(6): for j in range(8): val = i*8+j col = colors[val] b = Tkinter.Radiobutton( self.chipsFrame, text="", variable=colorVar, value=val, bg = col, activebackground=col, fg = col, activeforeground = col, indicatoron=0, selectcolor=col, width=2, height=1, command=self.selectColor) b.grid(row=i, column=j) customFrame = Pmw.Group(self.ccFrame, tag_text='Custom colors') self.customchipsFrame = customFrame.interior() self.custombuttons = [] for i in range(3): for j in range(8): val = 48 + i*8+j col = colors[val] b = Tkinter.Radiobutton( self.customchipsFrame, text="", variable=colorVar, value=val, bg=col, activebackground=col, fg=col, activeforeground=col, indicatoron=0, selectcolor=col, width=2, height=1, command=self.selectColor) b.grid(row=i, column=j) self.custombuttons.append(b) customFrame.pack(padx = 5, pady = 3)#, fill = 'both', expand = 1) #self.colorChips=Pmw.RadioSelect(self.chipsFrame, # label_text='Default Colors', # labelpos='nw', orient='vertical', # buttontype='radiobutton', # command = self.colButton_cb) #self.mod = {} #execfile(self.customFilename, self.mod) #self.cFlag=0 #self.addCustomCol(paletteName = self.colorsName) #self.doubleClick = False #self.editColor() #self.ce.pack(side = 'right', fill='both', expand=1) self.ce.immediate=1 self.ce.cw.immediate=1 self.currentEditingCB = None def selectColor(self, event=None): colNum = self.colorVar.get() hcol = self.colors[colNum] rgb = int(hcol[1:3], 16), int(hcol[3:5], 16), int(hcol[5:7], 16) col = [x/255. for x in rgb] if colNum > 47: # custom color self.ce.pack(side = 'right', fill='both', expand=1) if self.currentEditingCB: self.ce.cbManager.RemoveCallback(self.currentEditingCB) cb = CallbackFunction(self.editCustom, custColNum=colNum-48) self.ce.cbManager.AddCallback(cb) self.ce.set(col, trigger=0) self.currentEditingCB = cb else: self.ce.pack_forget() self.cbManager.CallCallbacks(col) def editCustom(self, col, custColNum=0): hexcol = ToHEX(col) self.custombuttons[custColNum].configure( bg=hexcol, activebackground=hexcol, fg=hexcol, activeforeground=hexcol, selectcolor=hexcol) self.colors[48+custColNum] = hexcol self.cbManager.CallCallbacks(col) try: outFile = open(self.customColorsPath, 'w') except Exception, inst: print inst print "Can't save custom colors in ", self.customColorsPath return outFile.write(' '.join(self.colors[48:])) ## def load(self): ## ftypes = [ ('Python files', '*.py') ] ## filename = fileOpenAsk(self.master, types=ftypes, ## title='Load custom colors' ) ## # Open the module ## if filename is None: return ## self.customFilename = filename ## self.mod = {} ## execfile( self.customFilename, self.mod) ## self.mod.keys() ## colName = filter(lambda x: x[:2]!='__',self.mod.keys()) ## entries = map(lambda x: (x, None), colName) ## # From the module display the available colorPalette. ## self.showChooser(entries) def showChooser(self, entries): if self.cFlag == 1: self.palChooser.clear() map(self.palChooser.add, entries) self.root.deiconify() else: self.root = Tkinter.Toplevel() self.chooserFrame = Tkinter.Frame(self.root) self.palChooser = ListChooser(self.chooserFrame, mode = 'extended', title='Customized colors groups', entries = entries, command=self.addCustomCol,) self.cFlag=1 dismissChooser = Tkinter.Button(self.chooserFrame, text='Dismiss', command=self.root.withdraw) self.palChooser.pack() dismissChooser.pack() self.chooserFrame.pack() ## def hideCE(self): ## if self.hidden == 0: ## self.ce.pack_forget() ## self.hidden=1 ## if self.addHidden == 0: ## self.addButton.pack_forget() ## self.addHidden=1 ## self.add =0 ## self.edit=0 ## def addCustomCol(self, event=None, paletteName=None): ## if paletteName is None: ## paletteName = self.palChooser.get()[0] ## self.colorsName = paletteName ## # first clean up what is there: ## if not self.mod.has_key(paletteName): ## self.colDict={} ## return ## else: ## self.colDict = self.mod[paletteName] ## if len(self.colorChips._buttonList)!=0: ## self.colorChips.deleteall() ## self.colorChips.configure(label_text=paletteName) ## items = self.colDict.items() ## items.sort() ## for name, value in items: ## fg = col = ToHEX(value) ## try: ## int(name) ## except: ## fg = 'black' ## self.colorChips.add(name, bg = col, ## activebackground=col, ## fg = fg, activeforeground = col, ## indicatoron=0,selectcolor=col, ## width=10,height=1, ## value = name) ## self.colorChips.pack(fill='x', expand=1) ## self.ce.cbManager.AddCallback(self.editChip) ## if hasattr(self, 'chooserFrame'): ## self.chooserFrame.master.withdraw() ## def save_cb(self, fileName = None, paletteName=None): ## """Save the color palette """ ## if paletteName is None or fileName is None: ## if hasattr(self, 'saveHidden'): ## if self.saveHidden == 1: ## self.root.deiconify() ## self.saveHidden = 0 ## else: ## self.root = Tkinter.Toplevel() ## self.saveFrame = Tkinter.Frame(self.root, ) ## groupFrame = Tkinter.Frame(self.saveFrame) ## self.groupEntry = Pmw.EntryField(groupFrame, ## label_text='Group name:', ## labelpos='w', ## value=self.colorsName) ## label = Tkinter.Label(groupFrame, text="\t\t", ## ) ## self.groupEntry.pack(side='left') ## label.pack(side='right', fill='x', expand=1) ## groupFrame.pack(fill='x', expand=1) ## fileFrame = Tkinter.Frame(self.saveFrame) ## self.fileEntry = Pmw.EntryField(fileFrame, ## label_text='Python File name:', ## labelpos='w', ## value=self.customFilename) ## browseBut = Tkinter.Button(fileFrame, text='Browse', ## command=self.browse) ## self.fileEntry.pack(side='left') ## browseBut.pack(side='right', fill='x', expand=1) ## fileFrame.pack(fill='x', expand=1) ## buttonFrame = Tkinter.Frame(self.saveFrame) ## ok = Tkinter.Button(buttonFrame, text='OK', command=self.ok) ## cancel = Tkinter.Button(buttonFrame, text='Cancel', ## command=self.cancel) ## ok.pack(side='left', fill='x',expand=1) ## cancel.pack(side='right', fill='x', expand=1) ## buttonFrame.pack(side='bottom', fill='both', expand=1) ## self.saveFrame.pack(fill='both', expand=1) ## self.saveHidden = 0 def ok(self): filename= self.fileEntry.get() groupname = self.groupEntry.get() if not groupname: print 'ERROR' self.save(filename, groupname) self.root.withdraw() def save(self, filename, groupname): if filename is None: return if not os.path.isfile(filename): f = open(filename, 'w') s = groupname+'='+repr(self.colDict) f.write(s) f.write('\n') f.close() else: mod = {} execfile(filename, mod) colName = filter(lambda x: x[:2]!='__',dir(mod.keys())) if groupname in colName: f = open(filename, 'w') for name in colName: if name == groupname: s = groupname+'='+repr(self.colDict) else: dict = getattr(self.mod,name) s = name+'='+repr(dict) else: f = open(filename, 'w') f.write('\n') s = groupname+'='+repr(self.colDict) f.write(s) f.write('\n') f.close() def cancel(self): self.root.withdraw() self.saveHidden=1 def browse(self): ftypes = [ ('Python files', '*.py') ] filename = fileSaveAsk(self.master, types=ftypes, title='Save custom colors') if filename: self.fileEntry.setentry(filename) def hide(self): if hasattr(self.masterFrame.master,'withdraw'): try: self.masterFrame.master.withdraw() except: pass ## def exit(self): ## self.hideCE() ## if self.exitFunc is None: ## if hasattr(self.masterFrame.master,'withdraw'): ## self.masterFrame.master.withdraw() ## else: ## self.exitFunc() ## def editColor(self): ## if self.edit == 1: ## return ## self.edit = 1 ## if self.hidden == 1: ## self.ce.pack(side = 'right', fill='both', expand=1) ## self.hidden = 0 ## else: ## if self.add == 0: ## self.ce.pack_forget() ## self.hidden=1 ## if self.addHidden == 0: ## self.addButton.pack_forget() ## self.addHidden=1 ## self.ce.immediate=1 ## self.add = 0 def addColor(self): if self.add ==1: return if self.hidden: self.ce.pack(side = 'right', fill='both', expand=1) self.hidden=0 else: if self.edit == 0: self.ce.pack_forget() self.hidden=1 if self.addHidden: self.addButton.pack(side = 'bottom', fill='x', expand=1) self.addHidden=0 self.ce.immediate=0 self.add = 1 self.edit = 0 ##################################################################### ##### CALLBACKS #################################################################### def editChip(self, col): hexcol = ToHEX(col) chipName = self.colorChips.getcurselection() if chipName is None: return chip = self.colorChips.button(chipName) chip.configure(bg=hexcol, fg=hexcol, activebackground=hexcol, activeforeground=hexcol, selectcolor=hexcol) self.colDict[chipName]=col def colButton_cb(self, tag): #this is needed to self.colorChips._buttonList working if tag in self.mapping.keys(): tag = self.mapping[tag] col = self.colDict[tag] self.ce.set(col) if self.edit == 0 or self.add==0: self.cbManager.CallCallbacks(col) if self.doubleClick: if self.currentTag != tag: self.currentTag = tag return self.doubleClick = False dialog = Pmw.PromptDialog(self.master, title = 'Color Name Dialog', label_text = 'Enter text to label this color:', entryfield_labelpos = 'n', buttons = ('OK', 'Cancel')) result = dialog.activate() if result == 'OK': txt = dialog.get() fg='black' if not txt: txt = str(len(self.colDict)+1) fg = col self.colorChips.button(self.colorChips.index( self.colorChips.selection )).configure(text=txt, fg=fg, value=txt) color = self.colDict.pop(tag) self.colDict[txt] = color self.mapping[tag] = txt self.save(self.customFilename, self.colorsName) else: self.doubleClick = True self.master.after(1000, self.setDoubleClick) def setDoubleClick(self): self.doubleClick = False def addToCustom_cb(self): rgbcol = self.ce.get() newKey = str(len(self.colDict)+1) while newKey in self.colDict: newKey = str(int(newKey)+1) self.colDict[newKey]=rgbcol col = ToHEX(rgbcol) self.colorChips.add(newKey, bg = col, activebackground=col, fg = col, activeforeground = col, indicatoron=0,selectcolor=col, width=10,height=1, value = newKey) try: self.save(self.customFilename, self.colorsName) except Exception, inst: print inst class BackgroundColorChooser(ColorChooser): def __init__(self, master=None, title = 'Chooser', commands = None, immediate=0, exitFunction=None): ColorChooser.__init__(self, master, title, commands, immediate, exitFunction) tmpFrame = Tkinter.Frame(self.master) tmpFrame.pack(side='bottom',expand=0, fill='x') button = Tkinter.Button(tmpFrame, text='Make Default', command=self.makeDefault) button.pack(side='left', expand=1, fill='x') button = Tkinter.Button(tmpFrame, text='Restore Default', command=self.restoreDefault) button.pack(side='right', expand=1, fill='x') def makeDefault(self): colNum = self.colorVar.get() hcol = self.colors[colNum] path = os.path.join(self.rcPath,'backgroundColor') open(path,'w').write(hcol) def restoreDefault(self): path = os.path.join(self.rcPath, 'backgroundColor') if os.path.exists(path): os.remove(path) self.cbManager.CallCallbacks((.0,.0,.0)) class PaletteChooser(): def __init__(self, master=None, title = 'Palette Chooser', makeDefault_cb=None, restoreDefault_cb=None, apply_cb=None, ramp=None, labels=None): self.ramp = ramp self.labels = labels self.makeDefault_cb = makeDefault_cb self.restoreDefault_cb = restoreDefault_cb self.apply_cb = apply_cb if master is None: self.master = Tkinter.Toplevel() self.ownmaster=1 self.master.title(title) #self.master.protocol('WM_DELETE_WINDOW', self.dismiss) else: self.ownmaster=0 self.master = master self.balloon = Pmw.Balloon(self.master) self.masterFrame = Tkinter.Frame(self.master, borderwidth=2, relief='ridge') self.masterFrame.pack() self.colorVar = Tkinter.IntVar() self.colorVar.set(-1) self.buttons = [] for index, item in enumerate(self.labels): col = ToHEX(self.ramp[index]) b = Tkinter.Radiobutton( self.masterFrame, text=item, variable=self.colorVar, value=index, bg = col, activebackground=col, font=("Times",-16,'bold'), indicatoron=0, selectcolor=col, width=5, height=1, command=self.selectColor) row = index%4 b.grid(row=index/5, column=index%5) self.buttons.append(b) if self.ownmaster: ## create dismiss button self.cb = self.master.destroy okCancelFrame = Tkinter.Frame(self.master, borderwidth=2, relief='ridge') makeDefault = Tkinter.Button(okCancelFrame, text='Make Default', command=self.makeDefault) makeDefault.grid(row=0, column=0) self.balloon.bind(makeDefault, 'Saves this palette as a default') restoreDefault = Tkinter.Button(okCancelFrame, text='Restore Default', command=self.restoreDefault) restoreDefault.grid(row=0, column=1) self.balloon.bind(restoreDefault, 'Restores original palette as a default') Tkinter.Button(okCancelFrame, text=' Dismiss ', command=self.cb).grid(row=1, column=0,columnspan=2) okCancelFrame.pack(fill='x') try: self.master.protocol('WM_DELETE_WINDOW', self.exit) except: pass def selectColor(self, event=None): colNum = self.colorVar.get() self.chooser = ColorChooser(None, commands=self.color_cb, exitFunction=self.onColorChooserDismiss) self.chooser.pack(expand=1, fill='both') def restoreDefault(self): "Must be implemented for each instance" self.restoreDefault_cb() def onColorChooserDismiss(self): self.chooser.master.destroy() index = self.colorVar.get() self.buttons[index].deselect() def color_cb(self, color): col = ToHEX(color) index = self.colorVar.get() self.buttons[index].configure(bg = col, activebackground=col, selectcolor=col) self.ramp[index] = [color[0], color[1], color[2], 1] self.apply_cb() def makeDefault(self): if self.makeDefault_cb: self.makeDefault_cb() self.cb()mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/dirDialog.py0000644000175000017500000000247307655554443026374 0ustar debiandebian######################################################################### # # Date: May 2003 Authors: Sophie COON # ######################################################################### # This is a fix to use the askdirectory widget developped by written by # Fredrik Lundh but only available for Python2.2 and higher. ######################################################################### from tkCommonDialog import Dialog class Directory(Dialog): "Ask for a directory" command = "tk_chooseDirectory" def _fixresult(self, widget, result): self.widget = widget if result: # keep directory until next time self.options["initialdir"] = result self.directory = result # compatibility return result class CreateDirectory(Dialog): command = "tk_getSaveFile" def _fixresult(self, widget, result): if result: # keep directory until next time self.options["initialdir"] = result self.directory = result # compatibility return result def askdirectory (**options): "Ask for a directory, and return the file name" return apply(Directory, (), options).show() def createdirectory(**options): "Ask for a directory, and return the file name" return apply(CreateDirectory, (), options).show() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/graphtool.py0000644000175000017500000013225410725343144026460 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ############################################################################## # # # Authors: Sowjanya Karnati,Michel F Sanner # # ############################################################################### # # # # #$Id: graphtool.py,v 1.47 2007/12/04 21:28:04 vareille Exp $ #Graph Tool is a widget with movable graph curve #app=GraphApp(root) #app.caluculate_ramp() returns current ramp #from ViewerFramework.VFCommand import Command, CommandGUI from Tkinter import * import Tkinter import tkFileDialog import types,os from mglutil.util.callback import CallBackFunction from mglutil.util.callback import CallbackManager from mglutil.util.misc import ensureFontCase import numpy.oldnumeric as Numeric from mglutil.gui.BasicWidgets.Tk.thumbwheel import ThumbWheel import Pmw from Pmw import * from mglutil.util.misc import deepCopySeq class GraphApp: # Initialization def __init__(self,master=None,callback=None,continuous=1): self.master=master self.callback = None self.callbacks = CallbackManager() self.canvas=canvas = Canvas(self.master,width=345,height=320,bg='white') self.toolbar = Frame(master) # Create Toolbar self.toolbar.pack(side='top', expand=1, fill='both') self.menuFrame1 = Tkinter.Frame(self.toolbar, relief='raised', borderwidth=3) self.menuFrame1.pack(side='top', expand=1, fill='x') self.filebutton = Tkinter.Menubutton(self.menuFrame1, text='File') self.filebutton.pack(side='left') self.filemenu = Tkinter.Menu(self.filebutton, {}) self.filemenu.add_command(label='Read', command=self.read_cb) self.filemenu.add_command(label='Write', command=self.write_cb) self.filebutton['menu'] = self.filemenu self.editbutton = Tkinter.Menubutton(self.menuFrame1, text='Edit') self.editbutton.pack(side='left', anchor='w') self.editmenu = Tkinter.Menu(self.editbutton, {}) self.editmenu.add_command(label='Reset to first in history', command=self.resetAll_cb) self.editmenu.add_command(label='Step back in history loop', command=self.stepBack_cb) self.editmenu.add_command(label='Default Curve', command=self.defaultcurve_cb) self.editmenu.add_command(label='Invert Curve',command=self.invertGraph) self.histvar=IntVar() self.histvar.set(1) self.editmenu.add_checkbutton(label='Histogram',var=self.histvar,command=self.drawHistogram) self.editbutton['menu'] = self.editmenu self.optionType = IntVar() self.updatebutton = Tkinter.Menubutton(self.menuFrame1, text='Update') self.updatebutton.pack(side='left', anchor='w') self.updatemenu = Tkinter.Menu(self.updatebutton,{} ) for v,s in {0:'Continuous',1:'MouseButtonUp',2:'Update'}.items(): self.updatemenu.add_radiobutton(label=s, var=self.optionType, value = v,command=self.calloption) if continuous==1: self.optionType.set(0) self.updatebutton['menu'] = self.updatemenu #Curve Type self.CurveType = IntVar() self.CurveType.set(0) self.Smooth=1 self.curvebutton = Tkinter.Menubutton(self.menuFrame1, text='Curve') self.curvebutton.pack(side='left', anchor='w') self.curvemenu = Tkinter.Menu(self.curvebutton,{} ) for v,s in {0:'Smooth',1:'Freehand'}.items(): self.curvemenu.add_radiobutton(label=s, var=self.CurveType, value = v,command=self.curveoption) self.curvebutton['menu'] = self.curvemenu f1 = Tkinter.Frame(self.master) f1.pack(side='bottom', fill='both', expand=1) self.d1scalewheellab=Label(f1,text="Sensitivity") self.d1scalewheellab.pack(side="left") self.d1scalewheel=ThumbWheel(width=100, height=26,wheelPad=4,master=f1,labcfg={'fg':'black', 'side':'left', 'text':'Test:'},wheelLabcfg1={'font':(ensureFontCase('times'),14,'bold')},wheelLabcfg2={'font':(ensureFontCase('times'),14,'bold')},canvascfg={'bg':'blue'},min = 0.0,max = 1.0,precision =4,showlabel =0,value =0.013,continuous =0,oneTurn =0.01,size = 200) self.d1scalewheel.pack(side="left") #tooltip self.balloon = Pmw.Balloon(f1) self.balloon.bind(self.d1scalewheel,"cutoff value for differences in Z xoordinates,small values generate more contours") self.Updatebutton=Button(f1,text=' Update ',command=self.Update) self.Updatebutton.pack(side=LEFT) self.Quitbutton=Button(f1,text=' Dismiss ',command=self.dismiss_cb) self.Quitbutton.pack(side=RIGHT) self.canvas.bind("", self.OnCanvasClicked) self.canvas.bind("", self.OnCanvasMouseDrag) self.canvas.bind("", self.OnCanvasMouseUp) self.canvas.config(closeenough=2.0) self.canvas.pack(side=BOTTOM, fill=BOTH,expand=1) self.startpoint=(px,py)=(50,275) self.endpoint=(px1,py1)=(305,20) self.newpoints=[(px,py),(px1,py1)] self.canvas.create_rectangle([(px-1,py),(px1+1,py1)],fill='white',outline="black",width=1) self.canvas.create_text(46,281,text=0,anchor=N) #Drawing Graph Sheet for i in range(1,6): x=50+i*50 canvas.create_line(x,280,x,275,width=1) canvas.create_text(x,281,text='%d' %(50*i),anchor=N) for i in range(1,5): x=50+i*50 canvas.create_line(x,275,x,20,width=1,fill="gray80") for i in range(1,6): y=275-i*50 canvas.create_line(45,y,50,y,width=1) canvas.create_text(44,y,text='%d' %(50*i),anchor=E) for i in range(1,5): y=275-i*50 canvas.create_line(50,y,305,y,width=1,fill="gray80") (x,y)=self.newpoints[0] (x1,y1)=self.newpoints[-1] self.curline=canvas.create_line(self.newpoints,fill='black',width=1) #GRAY SCALE grays=[] for i in range(0,100,1): grays.append("gray"+"%d" %i) #grays.reverse() #bottom one x1=48 x2=51 self.canvas.create_rectangle([(50,315),(307,300)],fill='white',outline="black",width=0.5) for a in grays: if x1>306: x1=x2=306 self.canvas.create_rectangle([(x1+2.5,314),(x2+2.5,301)],fill=a,outline=a,width=1) x1=x1+2.5 x2=x2+2.5 #left one y1=274 y2=271 self.canvas.create_rectangle([(20,275),(5,20)],fill='black',outline="black",width=0.5) for a in grays: if y1>275: y1=y2=275 self.canvas.create_rectangle([(19,y1-2.5),(6,y2-2.5)],fill=a,outline=a,width=1) y1=y1-2.5 y2=y2-2.5 self.oldpoints=[] self.canvas.configure(cursor='cross') self.curovals=[] self.default_points=[(50,275),(88, 238), (101, 150), (154, 78), (75, 271),(305,20)] # now set the constructor options correctly using the configure method apply( self.configure, (),{'callback':callback,'continuous':continuous}) self.continuous=continuous self.mousebuttonup=0 self.update=0 self.range_points=[] self.history=[] self.bars=[] self.default_ramp=[] self.histvalues=[] def calloption(self): tag=self.optionType.get() self.continuous=0 self.mousebuttonup=0 self.update=0 if tag==0: self.continuous=1 elif tag==1: self.mousebuttonup=1 elif tag==2: self.update=1 def curveoption(self): tag=self.CurveType.get() self.Smooth=0 self.Freehand=0 if tag==0: self.Smooth=1 self.canvas.delete(self.curline) self.curline=self.canvas.create_line(self.getControlPoints(),smooth=1) elif tag==1: self.Freehand=1 self.canvas.delete(self.curline) self.curline=self.canvas.create_line(self.getControlPoints()) def OnCanvasClicked(self,event): """Appends last drag point to controlpoint list if not appended by mouseleave func. when clicked on any controlpoint removes control point and draws line with remaining control points.""" self.CLICK_NODRAG=1 if self.history!=[]: if self.history[-1][1]!=self.d1scalewheel.get(): self.history[-1]=(self.history[-1][0],self.d1scalewheel.get()) if hasattr(self,"curx"): if (self.curx,self.cury) :#not in [self.startpoint,self.endpoint]: (self.ox,self.oy)=(self.curx,self.cury) if (self.ox,self.oy) not in self.oldpoints: self.oldpoints.append((self.ox,self.oy)) if hasattr(self,"curoval"): self.curovals.append(self.curoval) self.OrgX=event.x self.OrgY=event.y CtlPoints=[] xcoords=[] ycoords=[] #Limiting points not to cross self.limit_xcoord=[] for i in range(0,10): xcoords.append(self.OrgX-i) ycoords.append(self.OrgY-i) xcoords.append(self.OrgX+i) ycoords.append(self.OrgY+i) if xcoords!=[] and ycoords!=[]: for x in xcoords: for y in ycoords: CtlPoints.append((x,y)) self.range_points=self.oldpoints self.range_points.sort() for c in CtlPoints: if c in self.range_points: index_c=self.range_points.index(c) if index_c0: self.limit_xcoord.append(self.range_points[index_c-1]) return else: self.limit_xcoord.append(self.startpoint) return elif index_c==len(self.range_points)-1: self.limit_xcoord.append(self.range_points[index_c-1]) self.limit_xcoord.append(self.endpoint) return self.newd1ramp= self.caluculate_ramp() def OnCanvasMouseUp(self,event): CtlPoints=[] xcoords=[] ycoords=[] if hasattr(self,"curx"): (self.ox,self.oy)=(self.curx,self.cury) if (self.ox,self.oy) not in self.oldpoints :#not in [self.startpoint,self.endpoint] : self.oldpoints.append((self.ox,self.oy)) if hasattr(self,"curoval"): if self.curoval not in self.curovals: self.curovals.append(self.curoval) if self.CLICK_NODRAG==1: #finding out points around the selected point for i in range(0,10): xcoords.append(self.OrgX-i) ycoords.append(self.OrgY-i) xcoords.append(self.OrgX+i) ycoords.append(self.OrgY+i) if xcoords!=[] and ycoords!=[]: for x in xcoords: for y in ycoords: CtlPoints.append((x,y)) for c in CtlPoints: if c in self.oldpoints: ind=self.oldpoints.index(c) op=self.oldpoints[ind] if ind>0: prev_oldpoint=self.oldpoints[ind-1] else: prev_oldpoint=self.endpoint del self.oldpoints[ind] for co in self.curovals: ov_point1=self.canvas.coords(co) if len(ov_point1)!=0: ov_point=(int(ov_point1[0]+2),int(ov_point1[1]+2)) if ov_point==c and ov_point not in [self.startpoint,self.endpoint]: self.canvas.delete(co) self.curovals.remove(co) if hasattr(self,"curx"): if ov_point==(self.curx,self.cury): (self.curx,self.cury)=prev_oldpoint self.draw() if self.mousebuttonup: self.newd1ramp=self.caluculate_ramp() self.callbacks.CallCallbacks(self.newd1ramp) self.history.append((deepCopySeq(self.oldpoints),self.d1scalewheel.get())) def OnCanvasMouseDrag(self,event): self.CLICK_NODRAG=0 CtlPoints=[] xcoords=[] ycoords=[] #making active clickrange to be ten points around clicked point for i in range(0,10): xcoords.append(self.OrgX-i) ycoords.append(self.OrgY-i) xcoords.append(self.OrgX+i) ycoords.append(self.OrgY+i) if xcoords!=[] and ycoords!=[]: for x in xcoords: for y in ycoords: CtlPoints.append((x,y)) for c in CtlPoints: if c in self.oldpoints: ind=self.oldpoints.index(c) op=self.oldpoints[ind] del self.oldpoints[ind] for co in self.curovals: ov_point1=self.canvas.coords(co) if len(ov_point1)!=0: ov_point=(int(round(ov_point1[0],3))+2,int(round(ov_point1[1],3))+2) if ov_point==c : self.canvas.delete(co) self.curovals.remove(co) self.curx=dx=event.x self.cury=dy=event.y self.draw() def draw(self): """Draws line,ovals with current controlpoints. """ new1points=[] curve_points=[] self.smoothened_points=[] if self.CLICK_NODRAG==0: dx=self.curx dy=self.cury else: (dx,dy)=(self.curx,self.cury)=(self.endpoint) ###Limiting xcoords of the current point not to cross adjacent points if hasattr(self,"limit_xcoord"): if self.limit_xcoord!=[]: self.limit_xcoord.sort() if (self.curx,self.cury) not in [self.startpoint,self.endpoint]: if (self.curx,self.cury)< self.limit_xcoord[0]: if self.curx<=self.limit_xcoord[0][0] and self.curyself.limit_xcoord[0][1]: dx=self.curx=self.limit_xcoord[0][0] if (self.curx,self.cury)> self.limit_xcoord[1]: if self.curx>=self.limit_xcoord[1][0] and self.cury>self.limit_xcoord[1][1]: dx=self.curx=self.limit_xcoord[1][0]-1 if self.curx>=self.limit_xcoord[1][0] and self.cury2: if self.Smooth: self.curline=self.canvas.create_line(self.smoothened_points) else: self.curline=self.canvas.create_line(curve_points) else: if curve_points[0]==50 or 51: if self.Smooth: self.curline=self.canvas.create_line(curve_points,smooth=1) else: self.curline=self.canvas.create_line(curve_points) else: self.curline=self.canvas.create_line(self.startpoint,self.endpoint) ##Adding oval when start or end point in new1points coval_coords=[] for i in self.curovals: coval_coords.append(self.canvas.coords(i)) if self.endpoint in new1points: co=self.canvas.create_oval(self.endpoint[0]-2,self.endpoint[-1]-2,self.endpoint[0]+2,self.endpoint[-1]+2,width=1,outline='black',fill='black') endco_coords =self.canvas.coords(co) if endco_coords not in coval_coords: self.curovals.append(co) if self.startpoint in new1points: co=self.canvas.create_oval(self.startpoint[0]-2,self.startpoint[-1]-2,self.startpoint[0]+2,self.startpoint[-1]+2,width=1,outline='black',fill='black') startco_coords=self.canvas.coords(co) if startco_coords not in coval_coords: self.curovals.append(co) #drawing ovals if (self.curx,self.cury)!=self.endpoint: self.curoval=self.canvas.create_oval(self.curx-2,self.cury-2,self.curx+2,self.cury+2,width=1,outline='black',fill='black') if (self.curx,self.cury)==self.endpoint and self.endpoint in new1points: self.curoval=self.canvas.create_oval(self.curx-2,self.cury-2,self.curx+2,self.cury+2,width=1,outline='black',fill='black') self.newd1ramp= self.caluculate_ramp() if self.continuous: self.callbacks.CallCallbacks(self.newd1ramp) ######## convert coordinates to ramp################## def caluculate_ramp(self): """ """ dramp=[] mypoints=[] mynewpoints=[] self.oldpoints.sort() calcpoints=[] #if self.continuous : if hasattr(self,"curx"): if (self.curx,self.cury) not in self.oldpoints and (self.curx,self.cury) not in [self.startpoint,self.endpoint]: calcpoints.append((self.curx,self.cury)) if len(self.oldpoints)!=0: for o in self.oldpoints: if o not in calcpoints: calcpoints.append(o) if self.startpoint not in calcpoints: calcpoints.append(self.startpoint) if self.endpoint not in calcpoints: calcpoints.append(self.endpoint) calcpoints.sort() length=len(calcpoints) for l in range(length): if l+1<=length-1: mypoints=[calcpoints[l],calcpoints[l+1]] if calcpoints[l] not in mynewpoints: mynewpoints.append( calcpoints[l]) (x1,y1)=calcpoints[l] (x2,y2)=calcpoints[l+1] if x1>x2: dcx=x1-x2 px=x1-1 else: dcx=x2-x1 px=x1+1 if y1>y2: dcy=y1-y2 if dcx>=1: py=y1-float(dcy)/float(dcx) else: py=y1 else: dcy=y2-y1 if dcx>=1: py=y1+float(dcy)/float(dcx) else: py=y2 mynewpoints.append( (px,int(round(py)))) for dc in range(dcx-1): if x1>x2: px=px-1 else: px=px+1 if y1>y2: if dcx>=1: py=py-float(dcy)/float(dcx) else: py=y1 else: if dcx>=1: py=py+float(dcy)/float(dcx) else: py=y2 mynewpoints.append( (px,int(round(py)))) ramp=[] for r in mynewpoints: #scale ra=float(275-r[1]) if ra>=256: ra=255.0 ramp.append(ra) dramp=Numeric.array(ramp,'f') if len(dramp)!=0: return dramp else: dramp=Numeric.arange(0,256,1,'f') return dramp def get(self): if hasattr(self,"newd1ramp"): return self.newd1ramp else: return self.caluculate_ramp() def configure(self, **kw): if 'type' in kw.keys(): # make sure type is set first self.setType(kw['type']) del kw['type'] for key,value in kw.items(): if key=='callback': self.setCallbacks(value) def setCallbacks(self, cb): """Set widget callback. Must be callable function. Callback is called every time the widget value is set/modified""" assert cb is None or callable(cb) or type(cb) is types.ListType,\ "Illegal callback: must be either None or callable. Got %s"%cb if cb is None: return elif type(cb) is types.ListType: for func in cb: assert callable(func), "Illegal callback must be callable. Got %s"%func self.callbacks.AddCallback(func) else: self.callbacks.AddCallback(cb) self.callback = cb def invertGraph(self): """This function is for inverting graph by reverse computing controlpoints""" if self.history!=[]: if self.history[-1][1]!=self.d1scalewheel.get(): self.history[-1]=(self.history[-1][0],self.d1scalewheel.get()) invert_points=[] #self.oldpoints=[] points=self.getControlPoints() if len(points)<2: points=[self.startpoint,self.endpoint] for p in points: if p[1] in range(20,276): y=275 -(p[1]-20) invert_points.append((p[0],y)) self.reset() ################################################### #Some times start and end points are not deleted #So for deleting them canvas.find_enclosed points at #startpoint and endpoint are caluculated(returns alist of #canvas objects present there) and if the coords of #any canvas objects matches with start or end point that gets deleted ##################################################### x = 50 y = 275 st_oval_1= self.canvas.find_enclosed(x-3,y-3,x+3,y+3) if st_oval_1: for so in st_oval_1: if so!=[]: st_oval=so st_oval_coords=self.canvas.coords(st_oval) if (int(st_oval_coords[0]+2),int(st_oval_coords[1]+2))==self.startpoint: self.canvas.delete(st_oval) if st_oval in self.curovals: self.curovals.remove(st_oval) x = 305 y = 20 end_oval_1= self.canvas.find_enclosed(x-3,y-3,x+3,y+3) if end_oval_1: for eo in end_oval_1: if eo!=[]: end_oval=eo end_oval_coords=self.canvas.coords(end_oval) if (int(end_oval_coords[0]+2),int(end_oval_coords[1]+2))==self.endpoint: self.canvas.delete(end_oval) if end_oval in self.curovals: self.curovals.remove(end_oval) self.canvas.delete(self.curline) if self.Smooth: self.curline=self.canvas.create_line(invert_points,smooth=1) else: self.curline=self.canvas.create_line(invert_points) self.oldpoints=invert_points for p in invert_points: self.curoval=self.canvas.create_oval(p[0]-2,p[1]-2,p[0]+2,p[1]+2,width=1,outline='black',fill='black') self.curovals.append(self.curoval) (self.curx,self.cury) =invert_points[-2] if self.continuous or self.mousebuttonup: self.newd1ramp=self.caluculate_ramp() self.callbacks.CallCallbacks([self.newd1ramp]) self.history.append((deepCopySeq(self.oldpoints),self.d1scalewheel.get())) def defaultcurve_cb(self): """draws curve with default points""" if self.history!=[]: if self.history[-1][1]!=self.d1scalewheel.get(): self.history[-1]=(self.history[-1][0],self.d1scalewheel.get()) points=[] self.default_points=[] self.oldpoints=[] self.d1scalewheel.set(0.013) self.default_points=[(50,275),(88, 238), (101, 150), (154, 78), (75, 271),(305,20)] self.reset() self.canvas.delete(self.curline) self.default_points.sort() if self.Smooth: self.curline=self.canvas.create_line(self.default_points,smooth=1) else: self.curline=self.canvas.create_line(self.default_points) self.oldpoints=self.default_points for p in self.default_points: self.curoval=self.canvas.create_oval(p[0]-2,p[1]-2,p[0]+2,p[1]+2,width=1,outline='black',fill='black') self.curovals.append(self.curoval) (self.curx,self.cury) =self.default_points[-2] if self.continuous or self.mousebuttonup: self.newd1ramp=self.caluculate_ramp() self.callbacks.CallCallbacks(self.newd1ramp) self.history.append((deepCopySeq(self.oldpoints),self.d1scalewheel.get())) self.default_ramp= self.newd1ramp def read_cb(self): fileTypes = [("Graph",'*_Graph.py'), ("any file",'*.*')] fileBrowserTitle = "Read Graph" fileName = self.fileOpenAsk(types=fileTypes, title=fileBrowserTitle) if not fileName: return self.read(fileName) def read( self,fileName): if self.history!=[]: if self.history[-1][1]!=self.d1scalewheel.get(): self.history[-1]=(self.history[-1][0],self.d1scalewheel.get()) fptr=open(fileName,"r") data=fptr.readlines() cpoints=data[0][:-1] sensitivity=data[1] self.d1scalewheel.set(eval(sensitivity)) if len(cpoints)==0: return else: points=cpoints self.oldpoints=[] self.reset() if hasattr(self,"curline"): self.canvas.delete(self.curline) for c in self.curovals: self.canvas.delete(c) self.curovals.remove(c) if hasattr(self,"curoval"): self.canvas.delete(self.curoval) self.curovals=[] if self.Smooth: self.curline=self.canvas.create_line(eval(points),smooth=1) else: self.curline=self.canvas.create_line(eval(points)) self.readpoints=self.oldpoints=eval(points)[1:-1] for p in eval(points)[1:-1]: self.curoval=self.canvas.create_oval(p[0]-2,p[1]-2,p[0]+2,p[1]+2,width=1,outline='black',fill='black') self.curovals.append(self.curoval) (self.curx,self.cury) =eval(points)[-2] self.history.append((deepCopySeq(self.oldpoints),self.d1scalewheel.get())) def fileOpenAsk(self, idir=None, ifile=None, types=None, title='Open'): if types==None: types = [ ('All files', '*') ] file = tkFileDialog.askopenfilename( filetypes=types, initialdir=idir, initialfile=ifile, title=title) if file=='': file = None return file def write_cb(self): fileTypes = [("Graph",'*_Graph.py'), ("any file",'*.*')] fileBrowserTitle = "Write Graph" fileName = self.fileSaveAsk(types=fileTypes, title=fileBrowserTitle) if not fileName: return self.write(fileName) def write(self,fileName): fptr=open(fileName,"w") points= self.getControlPoints() points.sort() fptr.write(str(points)) fptr.write("\n") fptr.write(str(self.d1scalewheel.get())) fptr.close() def fileSaveAsk(self, idir=None, ifile=None, types = None, title='Save'): if types==None: types = [ ('All files', '*') ] file = tkFileDialog.asksaveasfilename( filetypes=types, initialdir=idir, initialfile=ifile, title=title) if file=='': file = None return file def reset(self): """This function deletes current line removes current ovals""" self.canvas.delete(self.curline) self.oldpoints=[] for c in self.curovals: self.canvas.delete(c) if hasattr(self,"curoval"): self.canvas.delete(self.curoval) self.curovals=[] if hasattr(self,"curoval"): delattr(self,"curoval") if hasattr(self,"curx"): delattr(self,"curx") def resetAll_cb(self): """Resetting curve as slant line 0 to 255""" self.reset() self.curline=self.canvas.create_line([self.startpoint,self.endpoint],width=1,fill='black') for p in [self.startpoint,self.endpoint]: self.curoval=self.canvas.create_oval(p[0]-2,p[1]-2,p[0]+2,p[1]+2,width=1,outline='black',fill='black') self.curovals.append(self.curoval) self.oldpoints=[self.startpoint,self.endpoint] (self.curx,self.cury)=self.endpoint self.d1scalewheel.set(0.013) if self.continuous or self.mousebuttonup: self.newd1ramp=Numeric.arange(0,256,1,'f') self.callbacks.CallCallbacks(self.newd1ramp) #self.histvar.set(0) self.history=[] def stepBack_cb(self): """when stepBack button clicked previous step is displayed.History of all the steps done is remembered and when stepback clicked from history list previous step is shown and that step is removed from history list """ if self.history!=[]: if len(self.history)==1: self.resetAll_cb() else: del self.history[-1] pns = self.history[-1][0] #deleting self.oldpoints=pns self.canvas.delete(self.curline) for c in self.curovals: self.canvas.delete(c) if hasattr(self,"curoval"): self.canvas.delete(self.curoval) self.curovals=[] ################################################### #Some times start and end points are not deleted #So for deleting them canvas.find_enclosed points at #startpoint and endpoint are caluculated(returns alist of #canvas objects present there) and if the coords of #any canvas objects matches with start or end point that gets deleted ##################################################### x = 50 y = 275 st_oval_1= self.canvas.find_enclosed(x-3,y-3,x+3,y+3) if st_oval_1: for so in st_oval_1: if so!=[]: st_oval=so st_oval_coords=self.canvas.coords(st_oval) if (int(st_oval_coords[0]+2),int(st_oval_coords[1]+2))==self.startpoint: self.canvas.delete(st_oval) if st_oval in self.curovals: self.curovals.remove(st_oval) x = 305 y = 20 end_oval_1= self.canvas.find_enclosed(x-3,y-3,x+3,y+3) if end_oval_1: for eo in end_oval_1: if eo!=[]: end_oval=eo end_oval_coords=self.canvas.coords(end_oval) if (int(end_oval_coords[0]+2),int(end_oval_coords[1]+2))==self.endpoint: self.canvas.delete(end_oval) if end_oval in self.curovals: self.curovals.remove(end_oval) pns.sort() #if no start or end points if pns[0][0]>51 : pns.insert(0,self.startpoint) l=len(pns) if pns[-1][0]<304: pns.insert(l,self.endpoint) #if start or endpoints and points with (50or 51) or (305or305) if self.startpoint in pns: for p in pns: if p!=self.startpoint: if p[0]== 50 or p[0]==51: pns.remove(self.startpoint) if self.endpoint in pns: for p in pns: if p!=self.endpoint: if p[0]==305 or p[0]==304: pns.remove(self.endpoint) print pns if self.Smooth: self.curline=self.canvas.create_line(pns,width=1,fill='black',smooth=1) else: self.curline=self.canvas.create_line(pns,width=1,fill='black') for p in pns: self.curoval=self.canvas.create_oval(p[0]-2,p[1]-2,p[0]+2,p[1]+2,width=1,outline='black',fill='black') self.curovals.append(self.curoval) self.d1scalewheel.set(self.history[-1][1]) if self.continuous or self.mousebuttonup: self.newd1ramp=Numeric.arange(0,256,1,'f') self.callbacks.CallCallbacks(self.newd1ramp) (self.curx,self.cury)=self.endpoint def getControlPoints(self): """fuction to get current control points of the curve""" if not self.oldpoints==[self.startpoint,self.endpoint]: for i in range(len(self.oldpoints)): if self.startpoint in self.oldpoints: self.oldpoints.remove(self.startpoint) if self.endpoint in self.oldpoints: self.oldpoints.remove(self.endpoint) self.controlpoints=[] if hasattr(self,"curoval"): c=self.canvas.coords(self.curoval) if len(c)!=0: if (int(c[0]+2),int(c[1]+2)) not in self.oldpoints and (int(c[0]+2),int(c[1]+2)) not in [self.startpoint,self.endpoint]: self.controlpoints.append((int(c[0]+2),int(c[1]+2))) for op in self.oldpoints: self.controlpoints.append(op) self.controlpoints.sort() if len(self.controlpoints)>0: if self.controlpoints[0][0]==50 or self.controlpoints[0][0]==51 : pass else: self.controlpoints.append(self.startpoint) self.controlpoints.sort() if self.controlpoints[-1][0]==305 or self.controlpoints[-1][0]==304: pass else: self.controlpoints.append(self.endpoint) self.controlpoints.sort() return self.controlpoints def setControlPoints(self,points): """function to set curve control points""" assert isinstance(points, types.ListType),"Illegal type for points" for (x,y) in points: assert x in range(50,306),"coordinates are out of range,x should be in [50,305]" assert y in range(20,276),"coordinates are out of range,y should be in [20,275]" self.oldpoints=[] self.controlpoints=[] self.reset() self.oldpoints=self.controlpoints=points self.controlpoints.sort() if self.controlpoints[0]!=self.startpoint: self.controlpoints.append(self.startpoint) if self.controlpoints[-1]!=self.endpoint: self.controlpoints.append(self.endpoint) self.canvas.delete(self.curline) self.controlpoints.sort() if self.Smooth: self.curline=self.canvas.create_line( self.controlpoints,smooth=1) else: self.curline=self.canvas.create_line( self.controlpoints) for p in self.controlpoints[1:-1]: self.curoval=self.canvas.create_oval(p[0]-2,p[1]-2,p[0]+2,p[1]+2,width=1,outline='black',fill='black') self.curovals.append(self.curoval) (self.curx,self.cury)= self.controlpoints[-2] self.history.append((deepCopySeq(self.oldpoints),self.d1scalewheel.get())) if self.continuous or self.mousebuttonup: self.newd1ramp=self.caluculate_ramp() self.callbacks.CallCallbacks(self.newd1ramp) def setSensitivity(self,val): self.d1scalewheel.set(val) def Update(self): if self.update==1: dramp=self.caluculate_ramp() self.newd1ramp=dramp self.callbacks.CallCallbacks(dramp) def dismiss_cb(self): try: if self.master.winfo_ismapped(): self.master.withdraw() except: if self.master.master.winfo_ismapped(): self.master.master.withdraw() #draw Histogram def removeHistogram(self): """removes Histograms""" for b in self.bars: self.canvas.delete(b) self.bars=[] def drawHistogram(self): """This function draws histogram from list of pixel counts ,one for each value in the source image""" self.removeHistogram() if self.histvar.get(): h=self.histvalues if h==[]: return list_pixels_count=h c=[] maxc=max(list_pixels_count) if maxc==0: return if list_pixels_count.index(maxc): list_pixels_count.remove(maxc) list_pixels_count.insert(255,0) for i in list_pixels_count[:256]: max_list=max(list_pixels_count) if max_list==0: return val=i*200/max_list c.append(val) for i in range(0,len(c)): x1=50+i x2=50+i y1=275-c[i] y2=275 r=self.canvas.create_line([(x1,y1),(x2,y2)],fill="gray70",width=1) self.bars.append(r) #displaying line and ovals ontop self.canvas.tkraise(self.curline) for i in self.curovals: self.canvas.tkraise(i) if hasattr(self,"curoval"): self.canvas.tkraise(self.curoval) self.canvas.update() ##Update Histograms on Graphtool #if self.update!=1: # prev_option=self.optionType.get() # self.optionType.set(2) # self.update=1 # self.Update() # self.optionType.set(prev_option) # self.update=0 # return ################SMOOTHING CODE############################ def addcurve(self,out, xy, steps): add = out.append for i in range(1, steps+1): t = float(i) / steps; t2 = t*t; t3 = t2*t u = 1.0 - t; u2 = u*u; u3 = u2*u add(xy[0]*u3 + 3*(xy[2]*t*u2 + xy[4]*t2*u) + xy[6]*t3) add(xy[1]*u3 + 3*(xy[3]*t*u2 + xy[5]*t2*u) + xy[7]*t3) def smooth(self,xy, steps=12): if not xy: return xy closed = xy[0] == xy[-2] and xy[1] == xy[-1] out = [] if closed: # connect end segment to first segment control = ( 0.500*xy[-4] + 0.500*xy[0], 0.500*xy[-3] + 0.500*xy[1], 0.167*xy[-4] + 0.833*xy[0], 0.167*xy[-3] + 0.833*xy[1], 0.833*xy[0] + 0.167*xy[2], 0.833*xy[1] + 0.167*xy[3], 0.500*xy[0] + 0.500*xy[2], 0.500*xy[1] + 0.500*xy[3], ) out = [control[0], control[1]] self.addcurve(out, control, steps) else: out = [xy[0], xy[1]] for i in range(0, len(xy)-4, 2): if i == 0 and not closed: control = (xy[i],xy[i+1],0.333*xy[i] + 0.667*xy[i+2],0.333*xy[i+1] + 0.667*xy[i+3],) else: control = ( 0.500*xy[i] + 0.500*xy[i+2], 0.500*xy[i+1] + 0.500*xy[i+3], 0.167*xy[i] + 0.833*xy[i+2], 0.167*xy[i+1] + 0.833*xy[i+3], ) if i == len(xy)-6 and not closed: control = control + ( 0.667*xy[i+2] + 0.333*xy[i+4], 0.667*xy[i+3] + 0.333*xy[i+5], xy[i+4], xy[i+5], ) else: control = control + ( 0.833*xy[i+2] + 0.167*xy[i+4], 0.833*xy[i+3] + 0.167*xy[i+5], 0.500*xy[i+2] + 0.500*xy[i+4], 0.500*xy[i+3] + 0.500*xy[i+5], ) if ((xy[i] == xy[i+2] and xy[i+1] == xy[i+3]) or (xy[i+2] == xy[i+4] and xy[i+3] == xy[i+5])): out.append(control[6]) out.append(control[7]) else: self.addcurve(out, control, steps) return out mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/0000755000175000017500000000000012146210077025210 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/arrowup.gif0000644000175000017500000000027711001230423027366 0ustar debiandebianGIF89a „‚£À³ÈÚ¯ÅØìóú¬Ã×Ýéõ׿ó­Ä×ÚçõÌÞñÅÚï±Ï—½á¸·­§Èå¼ÕìÕäóÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!ù , <à'Žd)€9Aš€0 »…a„ ˆ„B‘@^(À‚ÁX$E(ÀáD%ÀãaËB ]R2<ºbG!;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/arrow_down.gif0000644000175000017500000000034712064437551030073 0ustar debiandebianGIF89a„ŽŽŽ‘‘‘žžž«««®®®¼¼¼½½½ÇÇÇÉÉÉÕÕÕÞÞÞàààâââïïïðððòòòôôôõõõ÷÷÷úúúüüüýýýþþþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!þCreated with GIMP,W`&Ždižhª®lë¾p,Ït-c—¥ïÖ…Ý`H$þ` ƒP$Ž/ Å¡4 èËa$ÄBÄBãz1¹Æm,c›È2yLÖòLî’ïûÿ€‚ƒ„"!;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/record.gif0000644000175000017500000000026110602566560027162 0ustar debiandebianGIF89aãÿÿÿýàÝù¬¥÷‡üÓÏõxmð5%íî!íÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!þCreated with The GIMP,MÈI«½8ëÍ»ÿ`(ŽdižV ƒœDa‡QeP IŸ …×H`ðù Òà`ìJfóI"6H’Žç G±YívR±\¨´zÍn»';mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/camera.gif0000644000175000017500000000141510761371332027133 0ustar debiandebianGIF89aƬ¬¬¦¦¦›››ššš˜˜˜ŠŠŠˆˆˆ†††………„„„ƒƒƒ€€€~~~|||xxxvvvrrrqqqpppooommmkkkgggfffdddccc___^^^\\\ZZZYYYXXXWWWVVVUUURRRQQQOOONNNKKKIIIHHHGGGEEECCCAAA>>>===<<<;;;:::999888777666555333111...---,,,+++)))((('''&&&%%%$$$###""" ÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüüÿüü!ù,þ€‚ƒ„…†‡ˆ""%ˆ‘„OWWV<=V’’”–˜šœž‘6…¤¥‡'…4¬† &  $$!$†‡#  .F„W†ÉËÍÏÑÓÕ×ÙÛÝ…/22DPE<;>B?551>JƒFFZ†–X±‚¥ ALT¨0a2$JäbhÈ”)W Ì$E 'AXd°âI–, 8AcH#D€ìÐÑ£’&I~àÈ1äŠ-) ­lù2æÌš7sîìù3è $l@‘¢ê *nÜ0"e •*V|5¤…,Ò²XÑ"FM'ka7fljÈĈ0‚èÕ;äH“&a³üÌRn¡9r\Âĸ1Ê.]¶œÜ²¥‹!ÄŠk¾ò8òäʆ¢`Âr²´i ^QæÂÅr!,M!ËžíåËB­»¤.¤²íßÀ¿€s›—ã´’+_ΜU ;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/close.gif0000644000175000017500000000160607606602126027014 0ustar debiandebianGIF89a÷€€€€€€€€€€€€ÀÀÀÿÿÿÿÿÿÿÿÿÿÿÿ3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿ3f3f33ff3f™3fÌ3fÿ3™3™33™f3™™3™Ì3™ÿ3Ì3Ì33Ìf3Ì™3ÌÌ3Ìÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿff3fff™fÌfÿf3f33f3ff3™f3Ìf3ÿffff3fffff™ffÌffÿf™f™3f™ff™™f™Ìf™ÿfÌfÌ3fÌffÌ™fÌÌfÌÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™™3™f™™™Ì™ÿ™3™33™3f™3™™3Ì™3ÿ™f™f3™ff™f™™fÌ™fÿ™™™™3™™f™™™™™Ì™™ÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™Ìÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÌ3ÌfÌ™ÌÌÌÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÌfÌf3ÌffÌf™ÌfÌÌfÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿ3ÿfÿ™ÿÌÿÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿÿfÿf3ÿffÿf™ÿfÌÿfÿÿ™ÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ,MH° Áƒ*\Ȱ¡Ã‡#JœH±"Eb¬˜ñAÇ‚ôÈ£ÉIª´xò$G‘0WF9r"J‘SêÜɳ§ÏŸ@ƒ ;M”F “iЧP£JJµªÕ«X³jÝÊub@;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/play_fwd.gif0000644000175000017500000000154507606602436027522 0ustar debiandebianGIF89a÷€€€€€€€€€€€€ÀÀÀÿÿÿÿÿÿÿÿÿÿÿÿ3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿ3f3f33ff3f™3fÌ3fÿ3™3™33™f3™™3™Ì3™ÿ3Ì3Ì33Ìf3Ì™3ÌÌ3Ìÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿff3fff™fÌfÿf3f33f3ff3™f3Ìf3ÿffff3fffff™ffÌffÿf™f™3f™ff™™f™Ìf™ÿfÌfÌ3fÌffÌ™fÌÌfÌÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™™3™f™™™Ì™ÿ™3™33™3f™3™™3Ì™3ÿ™f™f3™ff™f™™fÌ™fÿ™™™™3™™f™™™™™Ì™™ÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™Ìÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÌ3ÌfÌ™ÌÌÌÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÌfÌf3ÌffÌf™ÌfÌÌfÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿ3ÿfÿ™ÿÌÿÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿÿfÿf3ÿffÿf™ÿfÌÿfÿÿ™ÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ,JH° Áƒ*\Ȱ¡Ã‡#JœHq!€ŠhÄXðâƒ?ôˆ‘¤@Mž,9R¥D’.'^DÉ‘fÈ›8sêÜɳ§Ï;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/play_rev.gif0000644000175000017500000000154207606602467027537 0ustar debiandebianGIF89a÷€€€€€€€€€€€€ÀÀÀÿÿÿÿÿÿÿÿÿÿÿÿ3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿ3f3f33ff3f™3fÌ3fÿ3™3™33™f3™™3™Ì3™ÿ3Ì3Ì33Ìf3Ì™3ÌÌ3Ìÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿff3fff™fÌfÿf3f33f3ff3™f3Ìf3ÿffff3fffff™ffÌffÿf™f™3f™ff™™f™Ìf™ÿfÌfÌ3fÌffÌ™fÌÌfÌÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™™3™f™™™Ì™ÿ™3™33™3f™3™™3Ì™3ÿ™f™f3™ff™f™™fÌ™fÿ™™™™3™™f™™™™™Ì™™ÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™Ìÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÌ3ÌfÌ™ÌÌÌÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÌfÌf3ÌffÌf™ÌfÌÌfÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿ3ÿfÿ™ÿÌÿÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿÿfÿf3ÿffÿf™ÿfÌÿfÿÿ™ÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ,GH° Áƒ*\Ȱ¡Ã‡#JœˆŃ2^$¨ñÅ9nì8ð#E“%A’ ’¥K•Q¶\Ù²¦Í›8sêÜɳf@;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/stop2.gif0000644000175000017500000000154707606602235026763 0ustar debiandebianGIF89a÷€€€€€€€€€€€€ÀÀÀÿÿÿÿÿÿÿÿÿÿÿÿ3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿ3f3f33ff3f™3fÌ3fÿ3™3™33™f3™™3™Ì3™ÿ3Ì3Ì33Ìf3Ì™3ÌÌ3Ìÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿff3fff™fÌfÿf3f33f3ff3™f3Ìf3ÿffff3fffff™ffÌffÿf™f™3f™ff™™f™Ìf™ÿfÌfÌ3fÌffÌ™fÌÌfÌÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™™3™f™™™Ì™ÿ™3™33™3f™3™™3Ì™3ÿ™f™f3™ff™f™™fÌ™fÿ™™™™3™™f™™™™™Ì™™ÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™Ìÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÌ3ÌfÌ™ÌÌÌÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÌfÌf3ÌffÌf™ÌfÌÌfÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿ3ÿfÿ™ÿÌÿÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿÿfÿf3ÿffÿf™ÿfÌÿfÿÿ™ÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ,LH° Áƒ*\Ȱ¡Ã‡#JœH±âD̨ñbÆ=b9RdGŽQ>P)Q%ˈ.C¶ ùbÌ’sêÜɳ§ÏŸ@;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/ff_rev.gif0000644000175000017500000000154007606602310027146 0ustar debiandebianGIF89a÷€€€€€€€€€€€€ÀÀÀÿÿÿÿÿÿÿÿÿÿÿÿ3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿ3f3f33ff3f™3fÌ3fÿ3™3™33™f3™™3™Ì3™ÿ3Ì3Ì33Ìf3Ì™3ÌÌ3Ìÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿff3fff™fÌfÿf3f33f3ff3™f3Ìf3ÿffff3fffff™ffÌffÿf™f™3f™ff™™f™Ìf™ÿfÌfÌ3fÌffÌ™fÌÌfÌÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™™3™f™™™Ì™ÿ™3™33™3f™3™™3Ì™3ÿ™f™f3™ff™f™™fÌ™fÿ™™™™3™™f™™™™™Ì™™ÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™Ìÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÌ3ÌfÌ™ÌÌÌÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÌfÌf3ÌffÌf™ÌfÌÌfÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿ3ÿfÿ™ÿÌÿÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿÿfÿf3ÿffÿf™ÿfÌÿfÿÿ™ÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ,EH° Áƒ*\Ȱ¡Ã‡#JœH±¢E1Z|@cÇ1†¼²$É’OrLIR Ë‹7ÊœI³¦Í›8sê<;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/record1.gif0000644000175000017500000000026210602566635027247 0ustar debiandebianGIF89aãÿÿÿÝÝÝ¥¥¥‡‡‡ÏÏÏmmm%%%ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!þCreated with The GIMP,NÈI«½8ëÍ»ÿ`(Ž$à ¥DÆqQ’ì R°#Ç3Hƒqw •Ë&I¸LI8Ͻb³Z pJ­Æè´zÍn»ß™;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/arrowdown.gif0000644000175000017500000000027711001230423027711 0ustar debiandebianGIF89a „‚£ÀûüþîõúÛèô¡¼ÔÅÚï§¿Ö½Õì£Å䕼ื­žºÓ­ËçžÂ㜸ӳÏ颽Ôÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!ù , <à'Ždù(`Š@¨+ ° CÍ¢DQ)–á€H$LX0 Æ 1‡ƒZbB \3¼RTI!;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/stop.gif0000644000175000017500000000154707606602615026703 0ustar debiandebianGIF89a÷€€€€€€€€€€€€ÀÀÀÿÿÿÿÿÿÿÿÿÿÿÿ3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿ3f3f33ff3f™3fÌ3fÿ3™3™33™f3™™3™Ì3™ÿ3Ì3Ì33Ìf3Ì™3ÌÌ3Ìÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿff3fff™fÌfÿf3f33f3ff3™f3Ìf3ÿffff3fffff™ffÌffÿf™f™3f™ff™™f™Ìf™ÿfÌfÌ3fÌffÌ™fÌÌfÌÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™™3™f™™™Ì™ÿ™3™33™3f™3™™3Ì™3ÿ™f™f3™ff™f™™fÌ™fÿ™™™™3™™f™™™™™Ì™™ÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™Ìÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÌ3ÌfÌ™ÌÌÌÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÌfÌf3ÌffÌf™ÌfÌÌfÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿ3ÿfÿ™ÿÌÿÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿÿfÿf3ÿffÿf™ÿfÌÿfÿÿ™ÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ,LH° Áƒ*\Ȱ¡Ã‡#JœHQ!€‹bÌ8‘£G?>)Q$Ɉ&AvTybÊ‘!Yª,‰QcÍŠ8sêÜɳ§ÏŸ@u;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/ff_fwd.gif0000644000175000017500000000154307606602362027144 0ustar debiandebianGIF89a÷€€€€€€€€€€€€ÀÀÀÿÿÿÿÿÿÿÿÿÿÿÿ3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿ3f3f33ff3f™3fÌ3fÿ3™3™33™f3™™3™Ì3™ÿ3Ì3Ì33Ìf3Ì™3ÌÌ3Ìÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿff3fff™fÌfÿf3f33f3ff3™f3Ìf3ÿffff3fffff™ffÌffÿf™f™3f™ff™™f™Ìf™ÿfÌfÌ3fÌffÌ™fÌÌfÌÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™™3™f™™™Ì™ÿ™3™33™3f™3™™3Ì™3ÿ™f™f3™ff™f™™fÌ™fÿ™™™™3™™f™™™™™Ì™™ÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™Ìÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÌ3ÌfÌ™ÌÌÌÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÌfÌf3ÌffÌf™ÌfÌÌfÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿ3ÿfÿ™ÿÌÿÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿÿfÿf3ÿffÿf™ÿfÌÿfÿÿ™ÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ,FH° Áƒ*\Ȱ¡Ã‡#JœH±"E1Z@cÇ:b¹Q¤IO~¬H’¤Å•+_fI³¦Í›8sêܹ3 ;;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/arrow_up.gif0000644000175000017500000000034412064437606027546 0ustar debiandebianGIF89a„ŽŽŽ‘‘‘žžž«««®®®¼¼¼½½½ÇÇÇÉÉÉÕÕÕÞÞÞàààâââïïïðððòòòôôôõõõ÷÷÷úúúüüüýýýþþþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!þCreated with GIMP,T`&Ždižhª®lë¾p,Ïtmg—uÝ£5= ÏA,aX Œ$ ¨ Ò†b¨z £=xφ„ Ãœß »³Øï—9oÏïûÿ€|!;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/smiley.gif0000644000175000017500000000035507510144013027177 0ustar debiandebianGIF89aôrrkk »»²²““ˆˆïïÛÛœœÑÑ**KKþþ©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©©!ù,j`$ŽdiNê ¦Ø, $CÊÒ”ÍAÌ3qÜ#oŒ1È 3,d VÄ130d ¦Ì!¢‡Ü)"ñ…$aa`(ð †!ŒdücP`Dƒ3 3F#9;C>@ˆ0<5%(*R-—$!;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/sep.gif0000644000175000017500000000011107510144013026452 0ustar debiandebianGIF89añÿÿÿÀÀÀÀÀÀ!ù,”a¢ÛsëPx§´;Vu÷ VnÁj;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/go_to_start.gif0000644000175000017500000000155007606602530030230 0ustar debiandebianGIF89a÷€€€€€€€€€€€€ÀÀÀÿÿÿÿÿÿÿÿÿÿÿÿ3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿ3f3f33ff3f™3fÌ3fÿ3™3™33™f3™™3™Ì3™ÿ3Ì3Ì33Ìf3Ì™3ÌÌ3Ìÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿff3fff™fÌfÿf3f33f3ff3™f3Ìf3ÿffff3fffff™ffÌffÿf™f™3f™ff™™f™Ìf™ÿfÌfÌ3fÌffÌ™fÌÌfÌÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™™3™f™™™Ì™ÿ™3™33™3f™3™™3Ì™3ÿ™f™f3™ff™f™™fÌ™fÿ™™™™3™™f™™™™™Ì™™ÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™Ìÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÌ3ÌfÌ™ÌÌÌÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÌfÌf3ÌffÌf™ÌfÌÌfÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿ3ÿfÿ™ÿÌÿÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿÿfÿf3ÿffÿf™ÿfÌÿfÿÿ™ÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ,MH° Áƒ*\Ȱ¡Ã‡#JœH±¢Å‹ Ô(ãDŽ@z”¨1dÉMªDIq¥Ê”LÆdù±£H˜7bÜɳ§ÏŸ@ƒ ;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/colors.gif0000644000175000017500000003146307651567771027234 0ustar debiandebianGIF87a½½õÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿ¿ÿÿ?ÿ??ÿ?ÿ?¿ÿ?ÿ?ÿ?ÿÿÿ?ÿÿ¿ÿÿÿÿÿ¿ÿ¿?ÿ¿ÿ¿¿ÿ¿ÿ¿ÿ¿ÿÿÿÿ?ÿ?ÿ?ÿÿÿÿÿÿ¿ÿ¿ÿ¿ÿÿÿ,½½þ@BH‹¢2™.™Ð(ô‘¤ ¨lv˵<¼ˆ÷òý‚-è´ÚÒa»ÛðNÇÖÛï‚\ÏÏçù‚ƒ'‚††ˆŠˆ'Ž’' GGK—N–RšRRV W¢[W\Y§`fki­tm³nv°usx~{¾€À„‰Šƒ‹ÈÆ’Œ“ÍH›•MJNQ—žžVL¡\¥\¨ªàdã®kjpµm±¼r·»}ð~‚ÄƇ…ÉŽÌú‘Í“ÏHNȤSÁkUbµ•)qY Yu¦\.YmlÅÙÅžvòþˆœWïØ=eÊòù[éÁMO¤!œ™a7‡\Èxù"†çþÄW@ÑdÌ•ëVtqܹ“£"$¼`% TÉhß#«þH1âf'k©]˶ ªnp¦wæ•E ­j½±¥K)»¦ùx4Œ±©(U6ÂÊòÀ®2 ƤùiÔhÕö±Õd1n_ÑÂ8k–:Œ A.õµWÞ^¨Qí- <¸0K-·è•6&™Sj>P …Šä†eØÂeU.#6žuyîÈ4Ï-x§ó¨à[¯˜½À)ùvM"×Ù™bŠÅͲ–ÇÞ¶€A5®ò—¸ÃáÒÊÕ#¬]vCÛ)·4õ@ÓEµUüLRUa°9R„%ˆ‰UÛb‰aÁÛ(¼õ†*“×VEñþµ" rŸÝ÷GK5…×/"`I‰C`kÛqGÉ3 6Óm‰å…o¢8d^ZÙ9b Ÿ|HÆR‹]·ŒÖä{EI€”zà…Ú_Ø!ãÚk'$HI%5>5ã‘gžB¤¨uJpaÑ‘¯ÐqÑ’ê°a~vL©§S#Õ`€f ãU2>[w ʦ@Š!adP@fo‰¡—VFY‡h´"ç§ Þ·Ë}K=Išž§íõg*ž$U–Ììc3^*èàÝ6^™C<êØyk·–{nÆ%N§ÈÒQß,tÜ♩OVÉê´}Xé!­ªà¢j±¸e—’Ú¥w`*jnxþèÒæk¯BìÆ#†À}#ïzpùd¤‘›ÍùÙ¤’ˆçÒšˆªƒ´J ‡h›kÙ} n‚ žË`®b:AÅ%‡ò#zfA†¦˜!T\ó5{_}ùE+%À×^+H¶X¶(Õ2 ®ÍàrÅà¢8¢»Ð™îN˜–q̱E† _œò-‹‘©ÌâiW{ªèßt**<]‹ 6ëJâ>ü¥ÎÐ|Çs»DK)¥?ßäÛ=!=\‘K7]ÔÝœý뎉~¬<Ý´Xó=Ún­ˆ¶~îÍŽ„ [¢;SÌhÚš¸›¶å?Jêܘê$FÈtßÛ}y?iºÔxòMµàÁ¨xÂt Ú0þ¡ß:.6˜d/šîA_Ñë„“º»ùš™~.9ÔM²§Eåõé~S+%߬ø ±®åÂ2ziû¡CN®äk±›ïAoŽ>¼>bF› ‹<œ²šì,êÐ,%UV¿bÁ¯ã2†‚šM"lbËîÆw«‰5(}lÑ6W4YÊ=D2’òš&‹f¡Œ_ùãÛ-š²?Ö±ªþË^áŒ0H¨{8— ¨(³…©w‚¤Ò¼²s—Â̱—¸xƒÏ»@“–ˆ:ÕPU'ôߟ‘=C´ð`VdFö=±‘Q ,“Ãvéréóá)&7!aðx¢Ó ,þ:Ó¬fIÍtûàô4‚ùï`¬  á®( ÄÅóâÃp‡«1Ö 9<Ÿy8Á‰7ì{ßÄ1ޏxòn˪ãç€GüD©„P´ëþøº@´°kTÜ)Ã.Á†\Œ£Jù‚CÃP%/xÁ b“aødòŠØA%Â¢Ž¤|Ú“TpJT Œ`©ô_+açJbE‹´JàÍjùE[.pA6¤!¥dIJ©‘mšÃd1!ò9q`Æ2qôTg–$J8‹‰þ\¢5—MUZ/‹¤# À-ÖŽ–´¬¡.Å(>0ÍÔÜ7ZÌdËxË iò<ÙÌ>³ƒÑô§Iþ¨ºkJq•+ Pì^ÙG8Ô¡µ§UÎ0ê lg%vÓNKIJñœ'¼ÈÀ{Q™Ëó`IUªÄ”T¥Ôœ’ê‡5‚©c(Xy‚Úl•!OÁ˜»\â’gt'Q‘ªCöACx-&{Œ!ñ©E”*OªÒ€Žp„¬ÚŸ‰²êƒ ®•aU¨B­H;‡N¢ŒK¤ZyªÀsFN—GÂQs˜TT u˜yM­G/Ð×{V¤&S¢l ë%””õç”r«U>Jѱ±d¨X xÓ²žÕfääl9¿øEφQ¢[©D/wsÚéÒ5-½Ä«iïjWìZJ"Ník2¡šþ¼Ú>mŽx4lcwÁRÀ-¶·})ÂÂJÖ±–•f=®í¦Üµš³­¸$×uX]ºâUžw5ªQS;Ž»&ó¯"©ÓfkÛô޹孆ûˆµsõ`£/C ¨Ð"ޏ+ÁlZýËÜîø4ºŽnv`]¢mÆDM°ŽU»T{²6™}Užle‹RÛúó™êÒ´rk¢øÆ7«VÖ V@bñÊŽ°¬qO€YÍÚòËýe®aœ;QÑJ®3æ.RÝÅÝ{W»{mðñ–&agÚ¹¶xöà…÷LM&”ÃæêA±&â7Ô¸[Dq3P ®.ó·Åbf®O'zÎ^¸º”¼+Rá¼cþî:øs¬MË[ËZ ‹®¶D®ª‘qK[€RóÕZ]l”£,báÎ7¡‰–qIÀè›9Z¹;mñ¤Ÿ;TÜÙ8ÍÙ½ë5ýf¯ÅÓÏfêásÏ‘¢º™þ´­‘—hØWk8JP–2«¤üa)oóuÂ%«¶¶xâ-O¢€^^.¤çíâaOzÆÒ½´¦¡íi~÷Ô¤vj©ƒljk—½„ݶaq»[o¿:Üž5 ÌÍÍ[·ÐĈÎ2¢y}¨^‡Ìô&v€-ÝK3[w»iÁ䦛Ýo ÷õÙ­}0y>d§«j‡µ”É=ñ°}¾ë6nèën\^'Ë;…ºÞ…ÍwKãÎïVŸn›gïo®Û>àÉ#uwŸmÈTòe·üÎÕ.8Um^pçªçUðù¡xô/ëÒ×¥¦7ï«:ßóMò«»ƒÿ·?øR›ÿžÕìãÑ»êàgØá>ÏüæÛÎ|Bƒ•ùÄÅ"ôÝë-rÜã 'oz·}®{W·o„Gx·d£6þmæ·{å•je7ÝÆdà&™'hõ;õ't醤—k‰6}¿ÆeN§zhoÈ}ú–l èigx¤¦{Gpa4y³5:çp™Ç[k7¬3qÜä|FØPû'}»F}˜U‡â„×—}!àb uø{±ç‚/èu3x~^ø€†j¾§pÀWyfèƒó—†›G„RF„ç|ˆ‚oÔ„bã„(¨wSøEU¨‚¯×‚á÷‚](ƒ]øuÈ{7—g¿ç~Âj(AèêfbŸ7_ÄUw¦gzLÇq,–}$0…aÔ‡T÷wÈVŠ‚È]\hˆ¹÷…°õxÚ¦ˆhi‡†j¸Êþ׆¸n x‰s¸e˜åq·t$Є_ä„Åø‰È¸w Š`R…݈Z˜€©8ˆ#¥{‡:‹Œø~²X‹i(hoXCw0’(t¼¸kèÈq¨ç„Øç‰È8…ÌØŒ®•@Xˆu°…28Õ¸Š×hs;h[ yd´Øjè†kbg‰ ¨‹½X‡¨·Ž]òkÆ8ŒÌeŒS¸‡ÈX }Ý×Kô˜pW% '™Ü¥’ÐZ-™Šý†×XgÙ8U€“Ôõð‰Þ˜ ikw‰çhz¹‰&ˆ‡Ã˜‡-¶‘|нäŒTiЧèi*ÙWùx Š19“þÙx8‹Ø“;‰ÞŽ ÙäÈ|e‚(f‡ri‚ iùŽ_•͸ŒHŠ()’  ’‚ ,I3ø’] /9“4½g[àO8Y<©i™Ž›”ˆ‹Ø–ù–º¸‹Jø‹šX}å…Çx‘w™ŒHU…%Y…#˜€'xYùoùˆ˜\ÉZÀ˜¿ –5™b)™eXÞ¦™²¨™A¹–Fè ø–u‡‰II‘wÙtó%°‡P|)›}Ç‚Ù5’„˜XI˜w•˜\WˆZ©•½yÁ ŸÉŸ»g“‰˜“øY>é<É“ûY™ü)e̹yÚ™ÎÙÇþçø–¼V‡Œö M©š¬‰‘š—xé D´i›³™…鉞+ù¡]9¢ŠY¢‹¹{WgÁi“¿‰g‘é‘i“8–¯¶ŸRÖ: ™‹o(>º‹—Èk¦ ¡&XŒu iÝé„Ýù¯çŒ—F’å™›šž1È𩘽ù›Z*Ÿô†Ž©pú™ŸLöŸcªšy¦7:À†Šn ¤?ª„é¡ryŒÉŽÅØïˆ;³¹ŒSi›öˆTö¥ š›»I˜½9¢Wʘ* £µ5b ŸŽ™/Zvaj™¹¥œišyÌ™£;ú†æˆCGš@ ‚ÿwªÄx§vÊ\Pi¡ Lj›¶þù—æiù8˜…Ú›.Éžò©¨[ú«»×¢Ž©ˆ¦:Ù“™j–ýi¦iª£f:qkÊ£oZªÒú–¿X§*ŒªŠ§Ú©§!à¢H²j% ¨û†«ƒy«¾i¢]y¢]¯“ꢎ©Y©ø)™ùy–˜ùjÌÙXhکΊ‹ Z°¤Z­(0—ÄÈhxÚ°Oéš_$x鑱j®"™l%©®Zj$ª«Éó®ï ¬\Šjå%¬²eŸÆ9–8  •I¦šŠ¦i¨™jÉ£IªøG­×Z¦š°BŠªê°$ ±®! ›€I®›±‹žK ¢-y¨ºú›]ù±óYµV»¥ÅšÙ¼Ìš¶Ï­(°¦;Œ Ô §pz½×;Œì(ÁN(±B‹ÄÛI´¬˜þJ›PËQŒ¨T|¸ZjÅÀZ¿Z:¯/Z¼[+¦ú‰™”9Æ3°0{Æ›¼–;üÉŸüÆ ÌÀ¦[ ;Çx´œÇ« žå»Œ¾€L¢!l¢‰›Ë#»È“ºÂ1ŠŸéüµ“<É À™¬Ã9ü¬i‹Ã=œÌl ÄB,Ä\&ͥܭßjÍߺ«®<¾#¹Í0›#y«ßœ¨„|Èâü«»L©ô;¯è ÌÝÎļ¼|Ìf›¶Ë|³ËœÏ üÆ'Ý„ LŒ »½S¾{+Ð"Àʺ¡àÄL»íЊ¹›#z»ïª¥BÍ¥Zê¸\L¼ê¼ÑÀ,Ì1°ZÆÐ«¶R]Ï7{Ï(`Õþ?ÇÏ|§P(Ís<ÐvŒÊÍÊ"`´åûÊ(ÉÓ€ Ô=Í•·;Ôó×ð¹È)ü1£ú™×_ìÂü)ÉýùËûΛ»É—,ÕøÌ|k;qXm½oÍû,Ê\}§<Œ=Ó!0Ó«lÙÜÄpÓ®L˜´˜j-ÅT·¬¸B £”Z¬wÑ{m¬Áü~ •l¦P]Øœ¬Ø:|Õø·Ø¥êÆÎ Ç^=ܦlÍÞ+ÐáK´-›UÉТ-Ú£ÝÓp¨Ôn=ר¿ókת £¬“Žœ“÷ª×²ŸþÙÎM}¦ÆŒÛóLÕ8|Õ iÕ¾íÆÏ¬Õ KÜÿ,±§lÜA‹ÇášÙD»þÐi Ë -Ú~L˜j»Ö]ÝðÔÙÝ”ºÚöÊÚä]áæ­¼~ýט ·É"­Û=¼¶!ÞÌW Ü[}ß÷¡¦<Ð2ý‰3í⬮e½ÄŸÍÐÝ ÖO[ÝmÍà ¿Š ×báÞ=ä9‰×G.ÞJο² Ø}í¿ü©Þ¶—Lå‰Ã¼ ¤¾ÜõͰÎüÏíß`­·/®Ù2ÎÊÖ®,àžã¬ã ÞãR ×BÚñ[äÜÍÝ`áå ØÁ,ÞþkÛQå¾¹gúá¹ õ ‚ŒÕVMß)â- æmÍdÞßý}æf°Ä(™æ ã³›ãN˜ÓàÓíÖ>þ>¿Õ×qm×ðùÝ{îÝ}ÎçLîä É~mÛ†Îá„è9½ø ßj¬å'ÍåêÏLÜ’MЭ›é«<Ö–½ÐÐ Ó¤îænnê#ZÝïÚên]çu>äv½çänîÅjמë¹~¹¸ØïÕgúëÁŽØŠï øèpËåþ¬ÒÃMÊAKÐÎNÐe®é—M´ÀéܼÁ×N’ÙN¸Ùn¸!ìêDݸqíÝè.ÞMÎñßñ²ë~á…ÎᕬޜŒèɬÆkzÏò½‹÷\)é]îϤlóÄMÁbý½—=ÖgN´ô×~ÓK{Ó;­íª>ÝJßê©ÞêL?îê¾ÈQÿÅþyÝç}]¹ºî¿•kò¼^è"m¦"íÞj¼Ûðíò Ìï+âÿÞÒ?æß:ÓÞ ÷ oÙ  ïÄ<àñÚç/×®Žñ>õé.Û{^ë ßäìîçZ?ï¶íøóÎÉ7œèɼè!žÏ5ÿåÎ|óÌNð`Ê ú1®ðBOô¯´nŽã?ãKßúÒ­ÝÚ=×{¿ß­î†¿ä‰Ïîb<ò[ØÆ,ùŠnåÁ^ùûŽï!.ó)=ó÷½ÒkÏÕ¨,ÍŸßß>÷—]÷ _÷ž]íDŸÖÚ®úžã\ùÓAû²/û´ë±>ûê.–Mžøˆ/ò‹Ø‘ÿøÏáÀž¹½èø¼å:kþ‘Îü@€"•JC"Ñ*)•"’ˆrJCUk5 ( ‘®"îz!ãÈrŽ`Ôìõû²†°1tÌ¥ž¯0Ÿ ßãCP0p0àCEp1 À#Q òÑå2¥RS3Å4”…´¥D••¨õÖÈI¤ˆv– *·JW$ $Ä7 €Ø«k¬ M-By™Ù-Ž-zM¯šÏ¯oðo0|Ðñ#’Ó“Ò2…ò =>Ô…¾>e•Åä6öˆ‘'K–Ü2HaBa^Â0<晳3qÎÐyS‡µjzòâÖ'¸p†ÊI”Èdº”•Ö­Ë´©ÓËP£è¥*e Õ*þ;U„E« Á[©á¢’Èñ«¬²n\D3édœñ¬Õ±Ä%Np4žíl­\òZ.l£ˆâÅ=,@8ˆè+±>ä.ÚOEËZ :ÉÓ¬11ó%xdJ3ïxT”œðO¯ ÿÂЯ ×Ã-ÝsòI‡¢üÓÄ7ŒCq¹,¹BôEOº•ÆÕžxT«TGz^[åM~ˆxó§O?å/Á6$•I¥öüÊUÕ˜Ò>+‘òEæ0Kº= -þLI%…ÔLÕz–¦Kû¥ÇžÆ£Î!—}âÈÁ …˜~ó À ˆ8‚î‚`ÎP8…1pØ6*¸Žˆ®cb 2æ Ž?¨€BîCäJ>Y’S(‡ƒDVF·Æaöd]S,Å”•‰UÅòl¹C)šÝ7O¤>|²ÉjåcµUWaåvÅY¹œ’™œ•³.7L˜%}Çf`I±tgMë"¯gŸ—m–íg "Õ—ûõ­ N îº Þ[aƒV¸‚†#<âÂ/6|âÄ5þxñ‰9~ƒÇM®Úä«+gù­]®äå]ÍÅ1»Jµ™txÃË©g|óf›°þÅÙQ•â—É^NmÊZ@sƒ÷A•Ãò2©©¶<œ–oÕš¬—YfÒsÏ5³Ò±»3Ûtw:Vȟמögu“ÂÃ`l·Ý—‚óý½ýüoöþÀå\ãú¿ÿãü!äÊEFÙx"SžËÊѹžë4¢S`[Ä= k<=ÓÙÒ&§ÖmïH¼(•.æf4÷À` Ü[ÞØ·0Bì ó»ØÅW?ûald ‹\Ç"—²üÙ°rø_"Œ×¹rˆèbàºh©x½Ël*AÚ°·¶{e_¤êÅk÷$Ty!„w ØÁ¦·ÂOp-´XÄ&F¿ŒqqiäŸ dˆ²ËíþÐdlÙ;×9çA ,wŽh¬MˆgÙÃà²tSÈ,P¡ƒÑÞðF0½­ï„‚Kaß0¿2Þï…™ãf(¹ÿùÏ<Ì\å”WÊÍÁ¬RÏ‹žÅÖÇ?žŽ‰Œ“ ~VË¿hðmëI$Rü°»ÕM‹ÁlßßÚG¸‡YÒŒô£ß —¿6:S5üä'K9JS¢z6kWØöhº?ªŽgJf f™S Ï’tc*Ûõ‹‘æS_ ×ǰa¾Ï˜d4ã ñ§8ŽmR œ&)š¹9šÉš™sÞ;¢GDn~3<: §,Éy!9ÙÒ{…ÌM.æ6Å&1iv+úΧ·ô9àþoï+\üX*?~f²“„&ÈÊÿtŽ&+%ôzEÄU2Pz¤0A+ùñMY.‘‚HG0ÈZf”_t§³ÐHÞ¤}+!1ág8ĽÐ‰ëÇúù8šú¦6 ¥Zÿ—‚ƒZó :D¥OÈ£‘ûè™±*J„¦nï–C“â:ÓiªÀŒ´[VQZ7®¢”}­àÂÚ°ÉÚO¬sÜ&9°Ù™õ¦þ³)[9àVžÖ­w¤ë*ƒj³w5¢Eªê`!Ë¿^ƒnƒª€ÁÛ_xÔ£¨j¤UÛ0¬6ì±”=æà'¿°Ê/³ˆ®3Í:¹Îš¬5¥¦MÝ W¹––þ-ƒ^kYY©¡Æ¶ãÄ^EqûTBªSTßëmüå¯ 7è;nqù›\ä2w²ƒKœ€5[`é~Vº×Ínä²{S–»£%eiÅ[Zxd޵ãe­k[¯èLg´åiѳ¥bÔ{QÌh¿6D_j7Œüeb‹›_ä²’-ÜeɸãÄ‘1ºÒav9Ë¿Î>Ž­& m„SKá—7•.ï*‹Ú#£ò#uHåkm•E‹¦êö–ðÕàw™´_ä÷¾hÆ*škœc”†õÍ•…3œ¥ `éÞùÎf]0‘;Kd%_÷È´ ŸœÊÒbØÂRn%+­¬)#U½&>ÖRè½0C•Yþ˜"™ ã’Òø‘7ÆñVgÛ9º˜½³f;ËàÏ9­ƒ&4NÝZhES9Ãß9ïPQÁë,O0Ò%øòöFðT¨¦3½e1}“ŒÄ¦ù¾4Î/¨igk›z²t>&'‹gÍò™È|f°MùhYCX‡NVw­o½¡õ®wõ#¤éÍDJ“XØù¬nãû,v®“Ì/>UŒ£_J»Úoö›µLg‡_ÏOðª'krC¸Áç­ik ^ñ²ʬE…PÍ[e?þzˬ --úÞK›·Q]6œÔ‹EʘÍÃE)šEã9ÃyÛÒ¥³€%¾Ù>ƒÛâopÆÍñu¯»ÝþþpD§n‚w/‘¢õþËQ›úå}·QÝ;g\'åüÙ·ñµÙŽÒlw›ÛE—{ž+ŽôrkÜ´†zÈ¥ünÖ¾»¨ŽŽhÖ›8ìŸyýåa÷í¦]Ló¤õÚg³Úw~í·»óp×|·‹~ô>~é·¸¬ÞñèAÊç­T¯{-õYÒY§(¥OLK–›Óœ‰ùîÉnsNŸ]òhŸö´ÛnùÌsû¹s÷üÄí>zlÀ¦Ð?wé\©Ô»[êæ­žÔ{Í×”#õ¯&–ô‰‹-lÅÇwÙ¾oRÍ´Èg«™òOxœ³=gÍ'ÿ¹É—;è“ý làÿˆLú°ãžÎúj Þ´/þûüÎïbëTGöÀ/ßjoCÞKñØÉßb®÷˜Íñ"þÐNáŠóìïáô¯è( »P°PP°³`°ŸÏÜFKúL`ãJkÜ Þ8`¨vp«îÃz­‡öTNYn·nCŠíëhi·zï·Ž·àÔìÞ¬D0¬ ÛÀð¹À°È QPOÛÐÿhúâÐvp)l¨|p•à]¯ê° °ÞJŒÒºîS¼îü0Ì4P›¤ Aà·K ,¥¶0±º€<1Î>ñ 9/¬Ò0 W¥ ]p;k ×0a0»¤þ/úR@úL ïÐúrQûôû>Ìê~1uþÄ$h™ì  ÃÉn ÛÏæÖ/ÍÞÏ$±«øº°øÀPËp²P ?ñ»í[Q0_1cñùG ë°Öèpñ± ±Ìð{†¿Œå¾Ì½Ç Ç.±÷ÚÏñ)!Ú0ñ/ñ§­;ñͼqÝî ÇQ) ÕP[ÑgPÙßÑ}ðùæÑµo÷0cÒ±Ž&a¯©fÏö¼Ìº® ™Ñ é«_ Q!à§q %Ñók 91¹° @»ÐÅQ ;²¥ë#Y±#[p$þ×ðOS’í°%?ÌùP&—c²&³Ž'Òü̯ wk1!5솒æî«!)«7*¯q0+òA©r=³²1QqÐ$Yú¼rßúRÒã±%_R%aÒêÞ-4Q‡ÁÏöò-'²–xRæÒ ’Óx+(›¤(R)'-± #²"QJ ó0«r1ÁqÃñ1³²%“^Ð2ãðÿNR[é‘}P&CS4GS;qü1ßxR.[“.w÷ð2/×æÎ®!ûòu“7%²0}s0)  ?‘½‘sÓ1#s?ÿo9]ð¿r9¡óþ3i3=3E­Nùq;¿Ó&‹ñÄÌO{Ò5_ó.3æd³ÙÒ!ßÓò—’7¯±7ï“ñs8YÔ8=r?Ñð³r_ð+ãPs4%sñ3ðÃ^2;ƒ”¢ ô;‹ô-{I‘´.[sC}o!e³ýÖÓ/'±=E4>S9QE¹ñ=ÒѰd´1Å42t@ÿ/2+Ó@ã1é7€AcRH±s;»Îï”üä’ ËÏ5›Ñ óR6Q!A´!Ý“DIT7UK¡’»Ô€Kµ Áñ#Ã4FcÔ#aT@ÏG;µqÔÝN7ó%á”N#”oòN…-5óT< þÒ ‹-Vý4!Ï3=Ó“6ýrD#qWóu“)!•Q‡UXë31¹tR'ÕR3Sÿ³LÓ4@Ÿo9Ÿspt%éÐM?HGUN»õT±î&Y•i‰'YVÿTC2/qõV!q=«Ž2Q0‹uQ…•>é3L!uR%5Le”>›5SVS[0MÑ42ÛQa«[IµMÔêLu;'¶;—¨;ÿÑöŽ4VÃC7ÄxkI5=q! 5^Ý5^«ñ(åõX‰Õ0ëRóõ_µK=ò_ v`¡uZÓÔF­•aCÕ¡oAÔ¸õT'–ÒL b»35e•ütr.ÐOѵCGvPþoÕÝ•kW¶e}µ–Rµ”lÉV_÷Õ_»ô_×v`sVg=òY4a}¶Z?õhá´ZVoñöG“Öo™vUíôÃj¡öUEàc?vC×Uk‡2^#ñqOÂ6^ÃÖr'·eÃ*'—Qgfõ•fC7_qömw6S¡5M¥µnvu¯µM7bCSbOõbïp»3OG@V-T<qW¬.—TqE¶q÷2rýrrOvDÁ6y;wlŸ×yÏÖ>Aw_G7gÝömýu”u;õnY÷n÷6bõöoU•U™ÖHo÷;}×p©VxÕ•qo=ir7lÝ•ró·y/WsÇÖyÇ–>¡’þzE—m3µzK7néaW7oñV|xv“Öi×êp[“p˵}AV'€È¹u»·{xo#84k×i›¶‚o·ˆuWV“Øp=øw—X]£X„§Ø„«Xrù7‹U˜‹¹ølcŒgx€Œ9_͇'™a—S‡×˜aÉ·M@$xŽk·ötƒ‹\‘¸'?öƒ™dÙþÉnµ•ý¸xW¯8r Ù–[ø¿x‘ÔƘmÿU’Ù#Éx{/“ñ‚%vœv™9™‚ã}á˜UíøŽ… ›P÷ƒC6dÿX~gY 9‹[—Ƕœ]˜ µ‘Ó¹—{YžÉ¸—)`žM—’¹×’Õø˜Û¸;Mu‚çøvZV™v”­Ù”¡•1P›¡˜¡½yŠÁù„©XU8‹`lÓ¹0:™zÛ9_{¹‘åy˜Ë˜¤ÉXH:«5ŸÕø{9N;Yo;oᘈ/øvØŽ[óŽušIeÕƒz‰‹­•†Ú¡¢+:l`r-Øù¢Ë£3:£þ鹪7«­šž·Z¤IÚt7`À:2Oº’õY^‚;¦;ùb›™­ÚŽÉU”wz®ñ˜¶™GÖ¨:=“ ^™°#Úrº©/šª!U£›±ž=Ú£y¤K¬Qz9Ãz9Oú¬7{ÎZÕzoGNEû™:š™VwQµ z®Å•w¡:qC¸¨in¯µœ;^u»,°™¸'7Û¢—šª;ž©z·Ú£E:¤'›Èš˜3;ŸWºZÏZ´Iûºy™G»»išš/Öˆ‘˜®]»§:¶¡”·Zù¶ÿ8©uû¯ãûŠ™:y;±;±¡Z¿¯ú±¹þ%¤½Z˜ËX¬1[¬7;º;û³;ûh³Û»á¸™S;Ž%œÂéÚÂ{¶3¼•ër¯a9–©°u;Äç;¾™º·O<°ŸZÅM|¿÷{3:'€C:À…ù‘Åz˜Ç:Áјa9[¦E[¦´A¼íØš-œšyÚšX¨3¼C_¹¶Y9=Û·¾G<¾`°}»ÄÛÄ-Z¿Ÿ¿ÙÙª€hÜ¿é9¤ã¹¤³1›¬5{³=ÛÇ·[°û»™6ÂÙZ¼ÂñØ®™œ•9|½Ÿ|Ê]Ù¶«£eÚ?½Œ…™ÚE½Ú;û²µ]Û]Z­¿;ÜÝš“iýbÿ<¼[sɺÉW÷ׇšÊ½¶¯¼ÞƒË‡ý·#]ßÅ\ß3šß3à9]ÆeÜ¿'@çAáužá èë\è;Ƚ=ÜãúÕ1¾Üï•G ãÑ]×þEžä£|䫾q…ÝÊUþ¯C\Ëÿºß{;ßû¸ÅþëÅÆíi>ÆÏ¼¹y>áß~¨=èþαè7»è—yÈGà蕞§Ã»éõØé7xg;×Ý]kKÞ¨·\뉽ë¹~ë#_°¿¾ÒÍ|æËþòÓþæÝÓy>ÚážÚC?º­Ýîç¼ôU½èÕšïUûèû^ég}ɾ𠿨añMÞ}ê§|Þ?˹^Ë{[ßù]ËÞøÉì >í5Ÿów^ç}úAô \Îã¾ôÕúÎ/»+žï»_ã1ÞÖ}×ÓÝöÙ[äo÷K>ʱ¾ñ!øµ|Ä'ÿ·ùý©_ìg>ó™¿þó>ÚŸ_çÁ4”‰PCœl4Ť†Él*›#ÍtTµR©Ö-w$ÚŠ #±4‡ áÈзãr7(î¾×ëbïïú ü0"."62@>6BRVBN0`Nlr2 qnnpŽŽA!)9e™di´fltiuÝŠ±•©øšÙÍÕÑÉå* ö 6'B/J;FNZKVj^fr‡r~‰)Q(E¡§+M±jÅrÕv}©áÞš‘Ááá ë ZÖìÙ3C„ RDCK³uó„ ”·M厘"R.ÉFU³$©«–;.eêáBC&Ø]oú£SÌŸ?þÎ !4hÐÑ´„ 'XôÐJÚ"jÚ”iÅ#O]4场ëFŠ´•kK®“dØø:Ù¦Ùaÿh‚àð Nƒ¢éTøóÑ€j Š>äÖ-iE¦›Nq,U]v®°–Ô°¥¯”_{ýÒWV¦Ù³nÖ2»év³´ž‹êX$´hÝ»¦ñbBªo_ÁHÎ¥"ò¤0mÄVr)¾Uïë=°ù|OFÙò±B™9#߬èPh¡ŽF#Â[Úêm¬[ÿÍ~j;auì¾g1 ·î®»Éü{çW>~ÂcæÁ3Ðx ·É =Ú'hu‡ŽFTP¦eRÔ«©ÖWvã0¸U„e¥˜TAþ¡y¼Ù3Æ=cm¸‡Á™µõ±…\N„„Š õ_sE ^ê%6*èM8N Ö]:à)!^xT|5Fnzküò¡“Áí3Ü™T¢}œ¥HH‹+:š_öW—§Ýh]Q8.… Žãc®Œ@!‘Tȉ¤óŒÕddyBYLÅÔ7ß}:e©¢~‡Â˜¢ûA7¦Œ©ÙxàR™H°É9²Éao¾9Å›BŠ'^œ·Xxd’a¥YXüx8Y”4¹!¨N'êV¡‡f¹e‹þØ«Œ¦ab£°ÜTºI±•–©Áì›ét$Sˆ!¡¡·Þª{êÙgˆhÝþDâ ¸’{k® ¡Ë뀎â%iQ«MPl¼ËìÌj A¾ƒEÁ©ú+¡µÖŽj’³Ù©z>Ù0ˆ”`帆Jñйê·åÍq f£wµ[æ#ÛM¥òÚ{„¾çèûfËêl¥SŸlµáñj½oïçŸöØÖŽ=vä‘á>ñ”÷ìs«ÉWæ9ó¶†}ôÔKzÓ;ö¾d EŠd²\øª6>déK‡›àív—ß½ró;[«è÷!äMûÃR­ w· {K3 ö²w@ujÞ£ZÉ7>Ĺì|§"÷»÷ý¢}@ä /×AÌ5LmŸ3HÑ EºB1oØ›¢V÷Âì¹nÂVëdG8¬á0‚·ÃaïtçÃö l}©"þyV¿µ}U!*Èе¢;:±n(œÞ©ØB+n/{ÂÙãUÓåk^lÙóÕÈ >r}í")YD7òìgi{˜{–H.:Š¢”bPövÀSJ@‹w‰ÔoÄE ÀÒ†t–áZ&ÆH–ñ_ŒÓÿUI%¹¯™ÌáhL=ŒðŽ ôî6Jê0{Tt¡öÈÊÉNv°d`-e™ÒÒ‘‰Ó%$evÁÈÉì—A&;µe¼b&ïsMô ÷Í)âót¨Û'5W©EU¦2^ÚŒ%Aiy/p&’ŽÔ$ÑéP!R2˜Á,žý†©Éû•¥y$¬›Ýþ÷Ì{N³…Ôt!6е7HXjQ 4$h-Á)A1J°œ2Õ¥/Ï Ñ!N”~Dܤ;ù§q ”O¥éòéÇhŽÔ…©Lå?»˧²–ߌ qøMH&4’äû&šÓvòéˆq´Ÿ&‰Æ¿&摨ø¼g4E*ͤZ“Z è@)Õ»^õ›äd¤LzÓ›Fæ«:Õ1/ŠQ~;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/go_to_end.gif0000644000175000017500000000154607606602561027652 0ustar debiandebianGIF89a÷€€€€€€€€€€€€ÀÀÀÿÿÿÿÿÿÿÿÿÿÿÿ3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿ3f3f33ff3f™3fÌ3fÿ3™3™33™f3™™3™Ì3™ÿ3Ì3Ì33Ìf3Ì™3ÌÌ3Ìÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿff3fff™fÌfÿf3f33f3ff3™f3Ìf3ÿffff3fffff™ffÌffÿf™f™3f™ff™™f™Ìf™ÿfÌfÌ3fÌffÌ™fÌÌfÌÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™™3™f™™™Ì™ÿ™3™33™3f™3™™3Ì™3ÿ™f™f3™ff™f™™fÌ™fÿ™™™™3™™f™™™™™Ì™™ÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™Ìÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÌ3ÌfÌ™ÌÌÌÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÌfÌf3ÌffÌf™ÌfÌÌfÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿ3ÿfÿ™ÿÌÿÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿÿfÿf3ÿffÿf™ÿfÌÿfÿÿ™ÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ,KH° Áƒ*\Ȱ¡Ã‡#JœH±âD1 ÔxQ#?bù€£D‘(?†LI’"É—+7‚t™±¦Å›8sêÜɳ§ÏŸ;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/chmod.gif0000644000175000017500000000162207606602174027002 0ustar debiandebianGIF89a÷€€€€€€€€€€€€ÀÀÀÿÿÿÿÿÿÿÿÿÿÿÿ3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿ3f3f33ff3f™3fÌ3fÿ3™3™33™f3™™3™Ì3™ÿ3Ì3Ì33Ìf3Ì™3ÌÌ3Ìÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿff3fff™fÌfÿf3f33f3ff3™f3Ìf3ÿffff3fffff™ffÌffÿf™f™3f™ff™™f™Ìf™ÿfÌfÌ3fÌffÌ™fÌÌfÌÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™™3™f™™™Ì™ÿ™3™33™3f™3™™3Ì™3ÿ™f™f3™ff™f™™fÌ™fÿ™™™™3™™f™™™™™Ì™™ÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™Ìÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÌ3ÌfÌ™ÌÌÌÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÌfÌf3ÌffÌf™ÌfÌÌfÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿ3ÿfÿ™ÿÌÿÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿÿfÿf3ÿffÿf™ÿfÌÿfÿÿ™ÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ,XH° Áƒ*\Ȱ¡Ã‡#JœHQ!€‹*¼ø€cA1f4Ò!ÆŽ"OBL™±äÊ–#]¾(òãȆ'Un¼‰“¥ÍŠ:eJL©±¨Ñ£H“*] 1 ;Mµé”¨N¢X³jÝʵ«×¯`ÊK¶¬ÙŒ;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/icons/stop3.gif0000644000175000017500000000157010567427753026772 0ustar debiandebianGIF89aç  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~€€€‚‚‚ƒƒƒ„„„………†††‡‡‡ˆˆˆ‰‰‰ŠŠŠ‹‹‹ŒŒŒŽŽŽ‘‘‘’’’“““”””•••–––———˜˜˜™™™ššš›››œœœžžžŸŸŸ   ¡¡¡¢¢¢£££¤¤¤¥¥¥¦¦¦§§§¨¨¨©©©ªªª«««¬¬¬­­­®®®¯¯¯°°°±±±²²²³³³´´´µµµ¶¶¶···¸¸¸¹¹¹ººº»»»¼¼¼½½½¾¾¾¿¿¿ÀÀÀÁÁÁÂÂÂÃÃÃÄÄÄÅÅÅÆÆÆÇÇÇÈÈÈÉÉÉÊÊÊËËËÌÌÌÍÍÍÎÎÎÏÏÏÐÐÐÑÑÑÒÒÒÓÓÓÔÔÔÕÕÕÖÖÖ×××ØØØÙÙÙÚÚÚÛÛÛÜÜÜÝÝÝÞÞÞßßßàààáááâââãããäääåååæææçççèèèéééêêêëëëìììíííîîîïïïðððñññòòòóóóôôôõõõööö÷÷÷øøøùùùúúúûûûüüüýýýþþþÿÿÿ!þCreated with The GIMP,Dÿ H° Áƒ*\Ȱ¡Ã‡#JœH±¢D3j0q£ÇŽ5‚ ‰q$I“!Q~¼H²$Ë–*7ZœI³¦Í›8sB ;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/multiButton.py0000644000175000017500000004433107723713313027010 0ustar debiandebian######################################################################### # # Date: Nov 2002 Author: Daniel Stoffler # # stoffler@scripps.edu # # Copyright: Daniel Stoffler and TSRI # ######################################################################### import types, re import Pmw, Tkinter from mglutil.gui.BasicWidgets.Tk.customizedWidgets import KeySelectableScrolledFrame class kbScrolledFrame(Pmw.ScrolledFrame, KeySelectableScrolledFrame): """Pmw.ScrolledFrame with support to type the name of an item which will scroll the canvas to the requested item. Disclaimer: this works only if the items in the frame have an attribute name of type string. It is up to the user to add this attribute when building the ScrolledFrame widget.""" def __init__(self, *args, **kw): # Pmw widgets are very delicate when it comes to subclassing! apply( Pmw.ScrolledFrame.__init__, (self,)+args, kw) # now remove the Pmw initialization only keywords and configure the # widget if kw.has_key('borderframe'): del kw['borderframe'] if kw.has_key('labelpos'): del kw['labelpos'] if kw.has_key('usehullsize'): del kw['usehullsize'] if len(kw): apply( self.configure, (self,), kw) myWidget = self KeySelectableScrolledFrame.__init__(self, myWidget) class MultiButtons(Tkinter.Frame): """This base class provides everything to build a multi-button panel. Buttons are packed in a Pmw.ScrolledFrame widget. Further information is found in MultiCheckbutton and MultiRadiobutton.""" def __init__(self, master=None, valueList=None, callback=None, sfcfg=None, immediate=1, **kw): Tkinter.Frame.__init__(self, master) Tkinter.Pack.config(self, fill='both', expand=1, side='left') self.master = master self.callback = callback # external callback which gets called # when checkbutton is checked # or unchecked # Note that the callback function to be # written by the user needs an argument # which is the widget itself. Example: # def myCallback(self, widget): # values = widget.get() # print values self.immediate = immediate #if set to 0, checking a button does not #call the callback method if sfcfg is None: # scrolledFrame Tkinter configuration dict self.sfcfg = {} else: self.sfcfg = sfcfg self.scrolledFrame = None # the Tkinter ScrolledFrame widget # the next 2 items are set by the widget and not by the user self.buttonList = [] # tuple of the button names and original names self.buttonDict = {} # dictionary of the buttons: # keys: # names of the buttons # values: # origName: original names of buttons # index: number of this button # value (value is 0 or 1: on or off) # button (value is the Tkinter.Checkbutton) # buttoncfg: dictionary that stored the Tkinter # checkbox configuration self.rebuildOK = 1 # used in the rebuild() method # parse the valueList, build self.buttonList self.buttonList, self.buttonDict = self.buildButtonDict(valueList) # build the widget self.buildPanel() # now set the constructor options correctly using the configure method apply( self.configure, (), {'immediate':immediate, }) def callCallback(self, event=None): if self.callback is not None: if self.immediate: self.callback(self) def buildButtonDict(self, valueList): if valueList is None or len(valueList) == 0: return [], {} bList = [] bDict = {} i = 0 # used to generate unique button names for data in valueList: if data is None: continue buttoncfg = {} # dict with tkinter data for checkbutton dataDict = {} # dict that stores everything about a button if type(data) == types.StringType: origName = data buttonName = data + str(i) buttoncfg['variable'] = Tkinter.IntVar() buttoncfg['command'] = self.callCallback dataDict['value'] = 0 # default button status: off (0) dataDict['name'] = buttonName elif type(data) == types.ListType or \ type(data) == types.TupleType: origName = data[0] buttonName = data[0] + str(i) if type(data[1]) == types.DictType: if data[1].has_key('buttoncfg'): buttoncfg = data[1]['buttoncfg'] if not buttoncfg.has_key('variable'): buttoncfg['variable'] = Tkinter.IntVar() if not buttoncfg.has_key('command'): buttoncfg['command'] = self.callCallback else: buttoncfg['variable'] = Tkinter.IntVar() buttoncfg['command'] = self.callCallback if not data[1].has_key('value'): dataDict['value'] = 0 # default button status: off (0) else: dataDict['value'] = data[1]['value'] # and set the value to the Tkinter variable buttoncfg['variable'].set(dataDict['value']) # now append the data to the list and dict dataDict['buttoncfg'] = buttoncfg dataDict['index'] = i dataDict['origName'] = origName bDict[buttonName] = dataDict bList.append( (buttonName, origName) ) i = i + 1 return bList, bDict def buildPanel(self): """To be implemented by subclass""" pass def rebuild(self, valueList): """This method rebuilds the panel only if the valueList has changed.""" bList, bDict = self.buildButtonDict(valueList) self.rebuildOK = 0 # do not rebuild the panel statusList = self.get() # holds the origNames, check/uncheck of button # now lets test if we have to rebuild the panel if len(bList) != len(self.buttonList): self.rebuildOK = 1 # rebuild the panel for name, origName in bList: if not self.buttonDict.has_key(name): # a new button was found self.rebuildOK = 1 # rebuild the panel for i in range(len(statusList)): if origName == statusList[i][0]: bDict[name]['value'] = statusList[i][1] del statusList[i] # and remove this entry from the list break if self.rebuildOK == 1: # we can go ahead and rebuild the panel self.buttonList = bList self.buttonDict = bDict self.buildPanel() def get(self, mode='all', event=None): blist = [] if mode == 'ViPEr': for tupl in self.buttonList: name = tupl[0] value = self.buttonDict[name]['button'].var.get() blist.append( (name, value ) ) if mode == 'checked' or mode =='checkedNames': for tupl in self.buttonList: name = tupl[0] value = self.buttonDict[name]['button'].var.get() if value == 1: if mode == 'checkedNames': blist.append(self.buttonDict[name]['origName']) else: blist.append( (self.buttonDict[name]['origName'], value ) ) elif mode == 'unchecked' or mode =='uncheckedNames': for tupl in self.buttonList: name = tupl[0] value = self.buttonDict[name]['button'].var.get() if value == 0: if mode == 'uncheckedNames': blist.append(self.buttonDict[name]['origName']) else: blist.append( (self.buttonDict[name]['origName'], value ) ) elif mode == 'all' or mode == 'allNames': for tupl in self.buttonList: name = tupl[0] value = self.buttonDict[name]['button'].var.get() if mode == 'allNames': blist.append(self.buttonDict[name]['origName']) else: blist.append( (self.buttonDict[name]['origName'], value ) ) return blist def getName(self, index): return self.buttonList[index] def getIndex(self, name): return self.buttonDict[name]['index'] def configure(self, **kw): for key,value in kw.items(): if key=='immediate': self.setImmediate(value) def setImmediate(self, val): assert val in [0,1] self.immediate = val def getButtonStatus(self, buttonName): if len(self.buttonDict) == 0: return 0 if not self.buttonDict.has_key(buttonName): return 0 else: return self.buttonDict[buttonName]['button'].var.get() class MultiCheckbuttons(MultiButtons): """This class builds a multi-checkbutton panel. Checkbuttons are packed in a Pmw.ScrolledFrame widget. Buttons are created usinge the valueList argrument: the valueList can be either: 1) a list of strings: every string is used as the name of the button, Example: valueList=['apple', 'banana', 'cherry']. This would create 3 checkbuttons (default status is: unchecked) or: 2) a list of tuples: the first item has to be a string used as the name of the button, the second item has to be a dictionary with the following architecture: key: 'value' and its value can be 0 or 1: this is used to check/uncheck the checkbutton key: 'buttoncfg' and its value is another dictionary where the user can specify any Tkinter Checkbutton options Example: valueList=[('apple', {'value':1, buttoncfg:{'command':foo, 'variable':Tkinter.IntVar()} }), 'banana'] This example creates 2 buttons and the first button is also checked. A callback can be specified that is bound to every checkbutton. This function gets called with 1 argument, which is the widget itself. This way, the user can call the methods of the widget in the callback method. Optional Tkinter configuration options can be passed into the ScrolledFrame using the sfcfg argument (has to be a dictionary of key:value pairs). USAGE: mb = MultiCheckbuttons(valueList=myList, callback=myCallback) """ def __init__(self, master=None, valueList=None, callback=None, sfcfg=None, immediate=1, **kw): MultiButtons.__init__(self, master, valueList, callback, sfcfg, immediate) self.reGUI = None # a Toplevel window for the regular expression def buildPanel(self): if self.buttonList is None or len(self.buttonList) == 0: return if self.scrolledFrame: self.scrolledFrame.destroy() self.scrolledFrame = apply( kbScrolledFrame, (self.master,), self.sfcfg) self.scrolledFrame.pack(padx=3, pady=3, fill='both', expand=1) self.frame = self.scrolledFrame.interior() row = 0 col = 0 for i in range(len(self.buttonList)): name, origName = self.buttonList[i] buttoncfg = self.buttonDict[name]['buttoncfg'] value = self.buttonDict[name]['value'] labelName = origName#+' ('+name+')' label = apply( Tkinter.Label, (self.frame,), {'text':labelName, } ) label.grid(sticky='E', row=row, column=col) checkbutton = apply(Tkinter.Checkbutton, (self.frame,), buttoncfg) checkbutton.var = buttoncfg['variable'] checkbutton.var.set(value) checkbutton.name = origName checkbutton.grid(row=row, column=col+1) self.buttonDict[name]['button'] = checkbutton row = row + 1 def checkAll(self, event=None): """Check all buttons""" for tupl in self.buttonList: name = tupl[0] self.buttonDict[name]['button'].var.set(1) def uncheckAll(self, event=None): """Uncheck all buttons""" for tupl in self.buttonList: name = tupl[0] self.buttonDict[name]['button'].var.set(0) def invertAll(self, event=None): """Toggle the current state of all buttons""" for tupl in self.buttonList: name = tupl[0] value = self.buttonDict[name]['button'].var.get() if value == 0: value = 1 else: value = 0 self.buttonDict[name]['button'].var.set(value) def reSelect(self, pat, mode=None, event=None): # FIXME: regexp search should be done in the RegexpGUI class # so that it can be used by others too """Select buttons using regular expression syntax""" if pat is None or pat == '': return if type(pat) != types.StringType: return pattern = re.compile(pat) for tupl in self.buttonList: name = tupl[0] match = pattern.search(self.buttonDict[name]['origName']) if match: if mode == 'check': self.buttonDict[name]['button'].var.set(1) elif mode == 'uncheck': self.buttonDict[name]['button'].var.set(0) class MultiRadiobuttons(MultiButtons): """This class builds a multi-radiobutton panel. For further information, look at the doc string of MultiCheckbuttons. """ def __init__(self, master=None, valueList=None, callback=None, sfcfg=None, immediate=1, **kw): MultiButtons.__init__(self, master, valueList, callback, sfcfg, immediate) def buildPanel(self): if self.buttonList is None or len(self.buttonList) == 0: return if self.scrolledFrame: self.scrolledFrame.destroy() self.scrolledFrame = apply( kbScrolledFrame, (self.master,), self.sfcfg) self.scrolledFrame.pack(padx=3, pady=3, fill='both', expand=1) self.frame = self.scrolledFrame.interior() row = 0 col = 0 var = Tkinter.IntVar() for i in range(len(self.buttonList)): name, origName = self.buttonList[i] buttoncfg = self.buttonDict[name]['buttoncfg'] label = apply( Tkinter.Label, (self.frame,), {'text':origName, } ) label.grid(sticky='E', row=row, column=col) buttoncfg['variable']=var buttoncfg['value'] = i radiobutton = apply(Tkinter.Radiobutton, (self.frame,), buttoncfg) radiobutton.var = buttoncfg['variable'] radiobutton.name = origName radiobutton.grid(row=row, column=col+1) self.buttonDict[name]['button'] = radiobutton row = row + 1 class RegexpGUI: """This class builds a regular expression matching GUI.""" def __init__(self, master=None, callback=None, **kw): if master is None: master = Tkinter.Toplevel() self.master = master self.callback = callback # the method called in self.input_cb self.visible = 1 # used to toggle show/hide self.frame = Tkinter.Frame(self.master) self.frame.pack(fill='both', expand=1) self.master.protocol('WM_DELETE_WINDOW', self.hide ) self.inputTk = Tkinter.StringVar() self.reEntry = Tkinter.Entry(self.frame, textvariable=self.inputTk) self.reEntry.bind('', self.input_cb) self.reEntry.pack() self.radioTk = Tkinter.StringVar() self.radioTk.set('check') self.buttonCheck = Tkinter.Radiobutton(self.frame, text='Check', variable=self.radioTk, indicatoron=1, value='check').pack(side='left') self.buttonUncheck = Tkinter.Radiobutton(self.frame, text='Uncheck', variable=self.radioTk, indicatoron=1, value='uncheck').pack(side='left') def show(self): self.master.deiconify() self.visible = 1 def hide(self, event=None): self.master.withdraw() self.visible = 0 def toggleVisibility(self, event=None): if self.visible: self.hide() else: self.show() def input_cb(self, event=None): self.callback(self.inputTk.get(),mode=self.radioTk.get()) if __name__ == '__main__': def myCallback(widget, event=None): values = widget.get() print '*****myCallback was called' print values import types txt = dir(types) ## mb1 = MultiCheckbuttons( ## valueList=['apple','banana',('orange',{'value':1}),'cherry'], ## callback=myCallback) mb2 = MultiCheckbuttons(valueList=txt, callback=myCallback) # lets also open the optional regexp GUI panel = RegexpGUI(master=None, callback=mb2.reSelect) #mb3 = MultiRadiobuttons(valueList=txt, callback=myCallback) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/eventHandler.py0000644000175000017500000001277007723713313027103 0ustar debiandebian############################################################################# # # Author: Michel F. SANNER # # Copyright: M. Sanner TSRI 2000 # ############################################################################# # # $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/BasicWidgets/Tk/eventHandler.py,v 1.2 2003/08/29 18:09:15 sophiec Exp $ # # $Id: eventHandler.py,v 1.2 2003/08/29 18:09:15 sophiec Exp $ # from Tkinter import Frame class EventManager: """Object used to manage callback functions for the events of a Widget Public Methods: ValideEvent(eventType) AddCallback(eventType, callback) SetCallback(func) RemoveCallback(eventType, func) ListBindings(event=None) """ # NOT USED, imstead I simply try to bind to a dummy widget to check if # the given event type is valid # # eventTypes = ('Key', 'KeyPress', 'KeyPress', # 'Button', 'ButtonPress', 'ButtonRelease', # 'Enter', 'Leave', 'Motion') # # eventModifiers = ('Control' 'Shift', 'Lock', # 'Button1', 'B1', 'Button2', 'B2','Button3', 'B3', # 'Button4', 'B4', 'Button5', 'B5', # 'Any', 'Double', 'Triple', # 'Mod1', 'M1', 'Meta', 'M', # 'Mod2', 'M2', 'Alt', # 'Mod3', 'M3', 'Mod4', 'M4', 'Mod5', 'M5' ) # buttonDetails = ( '1', '2', '3' ) # keyDetails = any keysym def __init__(self, widget): # keys are Tk events, values are lists of callback functions self.eventHandlers = {} self.widget = widget # create a dummy frame to try to bind event to check for event validity self.dummyFrame = Frame(widget,width=1, height=1) def DummyCallback(self, event): """dummy function used to check event validity""" pass def ValideEvent(self, eventType): """Check if an event is valide""" try: self.dummyFrame.bind(eventType, self.DummyCallback) except: return 0 return 1 def AddCallback(self, eventType, callback): """Add a callback fuction""" assert type(eventType) == type('string') assert callable(callback) # Here we should also check that callback has exactly 1 argument if not self.ValideEvent(eventType): raise ValueError('%s is not a valide event type' % eventType) if eventType in self.eventHandlers.keys(): self.eventHandlers[eventType].append(callback) else: self.eventHandlers[eventType] = [callback,] self.widget.bind(eventType, callback, '+') def BindFuncList(self,eventType, funcList): """Bind a list of functions to an event""" self.widget.bind(eventType, funcList[0]) for f in funcList[1:]: self.widget.bind(eventType, f, '+') def HasCallback(self, eventType, callback): """Check whether a function is registered as a callback for an event """ assert callable(callback) if self.eventHandlers.has_key(eventType): for f in self.eventHandlers[eventType]: if f==callback: return 1 return 0 def SetCallback(self, eventType, callback): """Set func as the callback or list of callback functions""" assert type(eventType) == type('string') if self.eventHandlers.has_key(eventType): funcList = self.eventHandlers[eventType] else: funcList = None if callable(callback): self.eventHandlers[eventType] = [callback,] self.widget.bind(eventType, callback) elif len(callback)>0: self.eventHandlers[eventType] = callback self.BindFuncList(eventType, callback) else: raise ValueError('First argument has to be a function or a list of\ functions') return funcList def FindFunctionByName(self, funcName, funcList): """find a function with a given name in a list of functions""" for f in funcList: if f.__name__==funcName: return f return None def RemoveCallback(self, eventType, func): """Delete function func from the list of callbacks for eventType""" if not self.eventHandlers.has_key(eventType): return None # raise ValueError('Widget %s has no event %s registered' % \ # self.widget, eventType) if type(func)==type('string'): func = self.FindFunctionByName(func, self.eventHandlers[eventType]) if not func: return try: self.eventHandlers[eventType].remove(func) except: pass if len(self.eventHandlers[eventType])==0: del self.eventHandlers[eventType] self.widget.bind(eventType, self.DummyCallback) else: self.BindFuncList(eventType, self.eventHandlers[eventType]) return func def ListOneBinding(self, key): """List all bindings for one events""" print 'Event', key if self.eventHandlers.has_key(key): for f in self.eventHandlers[key]: print '\t %s' % f.__name__ else: print '\tNone' def ListBindings(self, event=None): """List all bindings for one or all events""" if event is None: for k in self.eventHandlers.keys(): self.ListOneBinding(k) else: self.ListOneBinding(event) class CallbackFunctions: """Base class for objects with callback functions""" def __init__(self): self.callbacks = [] def Callbacks(self): """Call all callback functions, to be implemented by sub class""" pass # for f in self.callbacks: f(self.val) def SetCallback(self, func): """Delete all and set a callback fuction""" assert callable(func) self.callbacks = [func, ] def AddCallback(self, func): """Add a callback fuction""" assert callable(func) self.callbacks.append(func) def RemoveCallback(self, func): """Delete a callback fuction""" self.callbacks.remove(func) def MouseUp(self, event): """Call callbak function for non immediate sliders""" self.Callbacks() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/KeyboardEntry.py0000644000175000017500000001250611251536243027237 0ustar debiandebian######################################################################### # # Date: Oct 2006 Authors: Michel Sanner # # sanner@scripps.edu # # Copyright: Michel Sanner and TSRI # ######################################################################### import sys from Tkinter import Toplevel, Label from mglutil.gui import widgetsOnBackWindowsCanGrabFocus class KeyboardEntry: """Mixin class that can be used to add the ability to type values for widget. When the cursor enters the widget the focus is set to the widget and the widget that had the focus previousy is saved in .lastFocus. When the cursor leaves the widget focus is restored to self.lastFocus. key_cb(event) is called upon KeyRelease events. If this is the first keytroke an undecorated window is created next to the cursor and handleKeyStroke(event) is called. This method should be subclassed to modify the way the string is typed in (see thumbwheel.py for an example of handling numbers only). When the Return key is pressed, the entry window is destroyed and if the typed striong is not empty self.callSet(self.typedValue) is called. If the cursor moves out of the widget before Rrturn is pressed the value in the entry window is discarded and the entry window is destroyed. """ def __init__(self, widgets, callSet): # callSet is a function taking one argument (string) which will be # when the Returnm key is hit (if the typed string is not empty) # widgets is a list of Tkinter wigets for which , # and are handled. These widgets has to exist # before thsi constructor can be called assert callable(callSet) self.callSet = callSet for w in widgets: w.bind("", self.enter_cb) w.bind("", self.leave_cb) w.bind("", self.return_cb) w.bind("", self.key_cb) self.typedValue = '' # string accumulating valuescharacters typed self.lastFocus = None # widget to which the focus will be restored # when the mouse leaves the widget self.topEntry = None # top level for typing values self.typedValueTK = None #Tk label used as entry for value def key_cb(self, event=None): # call back function for keyboard events (except for Return) # handle numbers to set value key = event.keysym if key=='Return': return #print 'Key:', key if len(self.typedValue)==0 and self.topEntry is None: # create Tk label showing typed value x = event.x y = event.y #print 'create entry' self.topEntry = Toplevel() self.topEntry.overrideredirect(1) w = event.widget if event.x >= 0: self.topEntry.geometry('+%d+%d'%(w.winfo_rootx() + event.x+10, w.winfo_rooty() + event.y)) else: self.topEntry.geometry('+%d+%d'%(w.winfo_rootx() +10, w.winfo_rooty() )) self.typedValueTK = Label( master=self.topEntry, text='', relief='sunken', bg='yellow') self.typedValueTK.pack() self.handleKeyStroke(event) def leave_cb(self, event=None): # make sure widget gets keyboard events # print 'leave', event.widget if self.topEntry: self.typedValueTK.destroy() self.topEntry.destroy() self.topEntry = None self.typedValue = '' if self.lastFocus: #print 'restoring focus' if widgetsOnBackWindowsCanGrabFocus is False: lActiveWindow = self.lastFocus.focus_get() if lActiveWindow is not None \ and ( lActiveWindow.winfo_toplevel() != self.lastFocus.winfo_toplevel() ): return self.lastFocus.focus_set() self.lastFocus = None event.widget.config(cursor='') def enter_cb(self, event=None): # make sure widget gets keyboard events #print 'enter', event.widget if widgetsOnBackWindowsCanGrabFocus is False: lActiveWindow = event.widget.focus_get() if lActiveWindow is not None \ and ( lActiveWindow.winfo_toplevel() != event.widget.winfo_toplevel() ): return if self.lastFocus is None: #print 'setting focus' self.lastFocus = self.focus_lastfor() event.widget.focus_set() event.widget.config(cursor='xterm') def return_cb(self, event): # return should destroy the topEntry #print "return_cb" if self.typedValueTK is not None: self.typedValueTK.destroy() if self.topEntry is not None: self.topEntry.destroy() self.topEntry = None if len(self.typedValue): #print 'setting to', self.type(self.typedValue) self.callSet(self.typedValue) self.typedValue = '' ## TO BE SUBCLASSED def handleKeyStroke(self, event): # by default we handle delete character keys key = event.keysym if key=='BackSpace' or key=='Delete': self.typedValue = self.typedValue[:-1] self.typedValueTK.configure(text=self.typedValue) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/seqViewer.py0000644000175000017500000005161611443532325026434 0ustar debiandebian############################################################################# # # Author: Michel F. SANNER # # Copyright: M. Sanner TSRI 2010 # # adapted from earlier code from B. Norledge # ############################################################################# # # $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/BasicWidgets/Tk/seqViewer.py,v 1.3 2010/09/13 23:33:41 sanner Exp $ # # $Id: seqViewer.py,v 1.3 2010/09/13 23:33:41 sanner Exp $ # import Pmw, Tkinter, tkFileDialog from MolKit.sequence import Sequence, Alignment residueColors = {'A':'black', 'C':'black', 'D':'black', 'E':'black', 'F':'black', 'G':'black', 'H':'black', 'I':'black', 'K':'black', 'L':'black', 'M':'black', 'N':'black', 'P':'black', 'Q':'black', 'R':'black', 'S':'black', 'T':'black', 'V':'black', 'W':'black', 'Y':'black', '?':'green'} class AlignmentEditor(Tkinter.Frame): """ GUI for editing sequence alignments. Note to self (and anyone else who cares...): the top thing on the window is bottom of the displayList...""" def __init__(self, alignment=None, master=None, name=None, **kw): self.name=name self.xspace = 10 self.yspace = 20 self.selection = () self.selectionTags = [] self.colors = residueColors self.colors['default']='black', self.colors['selection']='yellow' self.colors['|']='magenta' #somewhere to store any tagspecifc colors self.colors['special']={} self.Master=master if alignment: self.alignment = alignment self.name = alignment.name else: self.alignment = Alignment() self.createGUI() def createGUI(self): #self.widgetArea = Tkinter.Frame(self, borderwidth=2, relief='sunken') #if self.hasGUI: # return if self.Master is None: master = Tkinter.Toplevel(self.Master) master.title('Alignment Editor') else: # master = Tkinter.Toplevel(self.Master) master = self.Master Tkinter.Frame.__init__(self ,master) Tkinter.Pack.config(self, expand=1, fill=Tkinter.BOTH) self.createMenus() self.canvasFrame = Tkinter.Frame(self) self.canvas = Pmw.ScrolledCanvas(self.canvasFrame,usehullsize=1, hull_width=600,hull_height=200, hscrollmode='dynamic', vscrollmode='dynamic', canvasmargin=1) self.canvas.pack(side=Tkinter.LEFT,expand=1,fill=Tkinter.BOTH) self.canvasFrame.pack(side=Tkinter.LEFT,expand=1,fill=Tkinter.BOTH) self.canvas._canvas.bind("",self.mouseDown) self.canvas._canvas.bind("",self.mouseMotion) self.canvas._canvas.bind("",self.mouseUp) self.canvas._canvas.bind("",self.startSelection) self.canvas._canvas.bind("",self.continueSelection) self.canvas._canvas.bind("",self.mouseSelect) self.canvas._canvas.bind("",self.startSelection) self.canvas._canvas.bind("",self.continueSelection) self.canvas._canvas.bind("",self.mouseDeselect) self.fillCanvas() #self.hasGUI = 1 def startSelection(self,event=None): #print 'In startSelection' self.x0 = self.canvas.canvasx(event.x) self.y0 = self.canvas.canvasy(event.y) def continueSelection(self,event=None): #print 'In continueSelection' self.x1=self.canvas.canvasx(event.x) self.y1=self.canvas.canvasy(event.y) self.clearSelBox() self.canvas.create_line(self.x0,self.y0,self.x1,self.y0,tags=('selBox')) self.canvas.create_line(self.x0,self.y0,self.x0,self.y1,tags=('selBox')) self.canvas.create_line(self.x0,self.y1,self.x1,self.y1,tags=('selBox')) self.canvas.create_line(self.x1,self.y0,self.x1,self.y1,tags=('selBox')) def clearSelBox(self): #print 'In clearSelBox' items = self.canvas.find_withtag('selBox') for item in items: self.canvas.delete(item) def mouseSelect(self,event=None,deselect=0): """ deselect=1 if removing selection """ #print 'In select' self.x1=self.canvas.canvasx(event.x) self.y1=self.canvas.canvasy(event.y) self.clearSelBox() items = self.canvas.find_overlapping(self.x0,self.y0,self.x1,self.y1) #print items self.select(items,deselect) def select(self,items,deselect=0): if not items: return self.lastSelect = [deselect,[]] for item in items: resTag,seqTag,uniqTag = self.canvas.gettags(item)[:3] if not deselect: if item not in self.selection: self.canvas.itemconfig(item,fill=self.colors['selection']) self.canvas.addtag_withtag('selected',uniqTag) else: if item in self.selection: self.canvas.itemconfig(item,fill=self.colors['default']) self.canvas.dtag(item,'selected') self.lastSelect[1].append(item) self.selection = self.canvas.find_withtag('selected') self.rebuildSelectionTags() def rebuildSelectionTags(self): #print 'In rebuildSelectionTags' self.selectionTags = [] for item in self.selection: self.selectionTags.append(self.canvas.gettags(item)) def mouseDeselect(self,event=None): #print 'In deselect' self.mouseSelect(event=event,deselect=1) def clearSelection(self): #print 'In clearSelection' self.updateColor(self.selectionTags,self.colors['default']) self.canvas.dtag('all','selected') self.selection = () self.selectionTags = [] def mouseDown(self, event=None): #print 'In mouseDown' # this method has to figure out where we are on the canvas when the button is pressed tags = self.canvas.gettags('current') #markers for the mousemotion self.x0 = self.canvas.canvasx(event.x) self.y0 = self.canvas.canvasy(event.y) #return if tags: self.resTag = tags[0] self.seqTag = tags[1] self.uniqTag = tags[2] self.currentResidue=self.canvas.find_withtag(self.uniqTag) self.currentSeq=self.canvas.find_withtag(self.seqTag) self.findAllToRight() self.findToLeft() self.findNeighborSequences() def findNeighborSequences(self): currTag = self.seqTag currIndex = self.alignment.seqNames.index(currTag) if currIndex != len(self.alignment.seqNames)-1: nextTag = self.alignment.seqNames[currIndex+1] self.nextSeq = self.canvas.find_withtag(nextTag) else: self.nextSeq = () if currIndex != 0: prevTag = self.alignment.seqNames[currIndex-1] self.prevSeq = self.canvas.find_withtag(prevTag) else: self.prevSeq = () def findAllToRight(self): #print 'In findAllToRight' currentSeq = list(self.currentSeq) index= currentSeq.index(self.currentResidue[0]) self.allToRight = tuple(currentSeq[index:]) def findToLeft(self): #print 'In findToLeft' currentResidue = self.currentResidue if currentResidue[0] == self.canvas.find_all()[0]: return None prevResidue = self.canvas.find_below(currentResidue) tags = self.canvas.gettags(prevResidue) self.toLeft = prevResidue def mouseMotion(self, event=None): #print 'In mouseMotion' self.x1 = self.canvas.canvasx(event.x) self.y1 = self.canvas.canvasy(event.y) tags = self.canvas.gettags(self.currentResidue) #dragging to left closes a gap. Can't be done if there is no gap. if (self.x1 < self.x0-self.xspace and self.canvas.itemcget(self.toLeft,'text')=='-' and 'movable' in tags): self.closeGap() #dragging to right opens a gap. Can always be done. if (self.x1 > self.x0+self.xspace and 'movable' in tags): self.openGap() #dragging up swaps current and previous sequences if self.y1 > self.y0+self.yspace: self.swapSequences(self.currentSeq,self.nextSeq,direction='down') if self.y1 < self.y0-self.yspace: self.swapSequences(self.prevSeq,self.currentSeq,direction='up') def swapSequences(self,topSequence,bottomSequence,direction): #print 'In swapSequences' #check both sequences exist: if not (topSequence and bottomSequence): return currTag = self.seqTag seqIndex = self.alignment.seqNames.index(currTag) #move the sequences up and down: for item in topSequence: self.canvas.move(item,0,self.yspace) for item in bottomSequence: self.canvas.move(item,0,-self.yspace) #reset the starting coordinates and update the #displaylist. Also update the order of the alignment sequences if direction=='down': #swapping currentSeq and nextSeq nextTag = self.alignment.seqNames[seqIndex+1] self.alignment.seqNames[seqIndex]=nextTag self.alignment.seqNames[seqIndex+1]=currTag self.y0 = self.y0+self.yspace items = list(self.currentSeq) items.reverse() for item in items: self.canvas._canvas.lift(item,(self.nextSeq[-1],)) else: #swapping prevSeq and currentSeq prevTag = self.alignment.seqNames[seqIndex-1] self.alignment.seqNames[seqIndex]=prevTag self.alignment.seqNames[seqIndex-1]=currTag self.y0 = self.y0-self.yspace items = list(self.prevSeq) items.reverse() for item in items: self.canvas._canvas.lift(item,(self.currentSeq[-1],)) self.findToLeft() self.findNeighborSequences() def closeGap(self): # delete the gap item self.canvas.delete(self.toLeft) # update self.toLeft self.findToLeft() # move current item to left for item in self.allToRight: self.canvas.move(item, -self.xspace, 0) #need to tag this sequence as edited tags = self.canvas.gettags(self.currentResidue) if 'edited' not in tags: self.canvas.addtag_withtag('edited',tags[1]) #then need to reset x0, so it can be repeated: self.x0 = self.x0-self.xspace def openGap(self): #find out where we are so we know where to insert coordx,coordy = self.canvas.coords(self.currentResidue) #move everything that is to the right, even further to the right for item in self.allToRight: self.canvas.move(item, self.xspace, 0) #insert a gap at the current coordinates tags = self.canvas.gettags(self.currentResidue) restag,seqtag,uniqtag = tags[:3] restag = 'gap'+str(self.gapnum) self.gapnum = self.gapnum+1 uniqtag = seqtag+'_'+restag #need to tag this particular sequence as edited if 'edited' not in tags: self.canvas.addtag_withtag('edited',seqtag) #need to add the new gap, also tagged as edited self.canvas.create_text(coordx,coordy, text='-', tags=(restag,seqtag,uniqtag,'movable','edited')) #need to resize scroll region to accomodate new gap self.canvas.resizescrollregion() #then need to move things around in the displaylist so that the new item #is just below the old one (i.e just above toLeft) newItem = self.canvas.find_all()[-1] self.canvas._canvas.lift(newItem,self.toLeft) #then need to redefine the current sequence self.currentSeq=self.canvas.find_withtag(self.seqTag) #need to find the new toLeft self.findToLeft() #then need to reset x0, so it can be repeated: self.x0 = self.x0+self.xspace def mouseUp(self, event=None): self.remakeAlignment() #self.redraw() return def remakeAlignment(self): """Replaces the edited sequences in the underlying alignment. """ seqStr = None edited = self.canvas.find_withtag('edited') if edited ==(): return for item in edited: tags = self.canvas.gettags(item) if tags[0] == 'name': if seqStr: sequence = Sequence(name=sequenceName,sequence=seqStr) self.alignment.deleteSequence(sequenceName) self.alignment.addSequence(sequence,index) sequenceName = tags[1] index = self.alignment.seqNames.index(sequenceName) seqStr='' else: seqStr = seqStr+self.canvas.itemcget(item,'text') sequence = Sequence(name=sequenceName,sequence=seqStr) #tag on the final sequence self.alignment.deleteSequence(sequenceName) self.alignment.addSequence(sequence,index) self.canvas.dtag('all','edited') def createMenus(self): #print 'In createMenus' self.mBar = Tkinter.Frame(self, relief=Tkinter.RAISED,borderwidth=2) self.mBar.pack(fill=Tkinter.X) self.menuButtons = {} self.makeFileMenu() self.makeEditMenu() apply(self.mBar.tk_menuBar, self.menuButtons.values()) self.title = Tkinter.Label(self.mBar, text=self.name) self.title.pack(side=Tkinter.RIGHT) def makeFileMenu(self): #print 'In makeFileMenu' File_button = Tkinter.Menubutton(self.mBar, text='File',underline=0) self.menuButtons['File'] = File_button File_button.pack(side = Tkinter.LEFT, padx='1m') File_button.menu = Tkinter.Menu(File_button) File_button.menu.add_command(label='Load...', underline=0, command = self.loadFile) File_button.menu.add_command(label='Write...', underline=0, command = self.writeFile) File_button.menu.add_command(label='Exit...', underline=0, command = self.exit) File_button['menu'] = File_button.menu def loadFile(self): #print 'In loadFile' title = 'Read CLUSTAL formatted alignment file' types = [('CLUSTAL files', '*.aln')] file = tkFileDialog.askopenfilename( filetypes=types, title=title) if file: self.alignment.read(file) self.redraw() def writeFile(self): #print 'In writeFile' #self.remakeAlignment() # always done in mouseUp #self.redraw() # horribly expensive title = 'Save CLUSTAL formatted alignment file' types = [('CLUSTAL files', '*.aln')] file = tkFileDialog.asksaveasfilename( filetypes=types, title=title) if file and self.alignment: self.alignment.write(file) def fillCanvas(self): #print 'Filling Canvas' yCoord = 0 sequences = self.alignment.sequences seqNames = self.alignment.seqNames seqCount=0 self.gapnum=gapnum=0 for seqName in seqNames: seqCount = seqCount+1 seqTag = seqName sequence = sequences[seqName].sequence numbers = sequences[seqName].gappednumbers resTag = 'name' #print seqTag,resTag uniqTag = seqTag+'_'+resTag self.canvas.create_text(0, yCoord, text=seqName, tags=(resTag,seqTag,uniqTag)) for xCoord in range(len(self.alignment)): resName = sequence[xCoord] resTag = numbers[xCoord] #need unique tags for gaps too if resTag == '': resTag = 'gap'+str(gapnum) gapnum=gapnum+1 uniqtag = seqTag+'_'+resTag try: fillColor = self.colors[resName] except: fillColor = self.colors['default'] self.canvas.create_text(100+xCoord*self.xspace,yCoord, text=resName, fill=fillColor, tags=(resTag,seqTag,uniqtag,'movable')) yCoord = yCoord+self.yspace self.canvas.resizescrollregion() print 'updating colors' self.updateColor(self.selectionTags,'yellow') self.updateSpecialColor() print 'Done' def updateSpecialColor(self): if self.colors['special']=={}: return for tag in self.colors['special'].keys(): item = self.canvas.find_withtag(tag)[0] self.canvas.itemconfig(item,fill=self.colors['special'][tag]) def updateColor(self,tags,color): #print 'In updateColor' if not tags: return #print tags for tag in tags: item = self.canvas.find_withtag(tag[2]) self.canvas.itemconfig(item,fill=color) def exit(self, event=None): if self.Master is not None: self.master.withdraw() else: self.master.destroy() def makeEditMenu(self, event=None): #print 'In makeEditMenu' Edit_button = Tkinter.Menubutton(self.mBar, text='Edit',underline=0) self.menuButtons['Edit'] = Edit_button Edit_button.pack(side = Tkinter.LEFT, padx='1m') Edit_button.menu = Tkinter.Menu(Edit_button) Edit_button.menu.add_command(label='Redraw', underline=0, command = self.redraw) Edit_button.menu.add_command(label='Clear Selection', underline=0, command = self.clearSelection) Edit_button.menu.add_command(label='Delete Selected Sequences', underline=0, command = self.deleteSelectedSequences) #Edit_button.menu.add_command(label='Delete Selected Residues', underline=0, # command = self.deleteSelectedResidues) Edit_button.menu.add_command(label='Trim Gaps', underline=0, command = self.trim) Edit_button['menu'] = Edit_button.menu def trim(self): self.alignment.trim() self.redraw() def deleteSelectedSequences(self): if self.selectionTags==[]: return while self.selection: firstSeqName = self.canvas.gettags(self.selection[0])[1] self.deleteSequence(firstSeqName) self.redraw() def deleteSequence(self,seqName): self.alignment.deleteSequence(seqName) items = self.canvas.find_withtag(seqName) if len(items): for item in items: tags = self.canvas.gettags(item) self.canvas.delete(item) try: del self.colors['special'][tags[2]] except: continue self.selection = self.canvas.find_withtag('selected') self.rebuildSelectionTags() def deleteSelectedResidues(self): #print 'In deleteSelection' #if selection is empty get out if self.selectionTags==[]: return #get hold of a list of selected residues selSeq = map(lambda x: x[1], self.selectionTags) #uniquify it uniqSelSeq = [selSeq[0]] for seq in selSeq[1:]: if seq != uniqSelSeq[-1]: uniqSelSeq.append(seq) #for each sequence, build a new sequence minus the selected tags, and #update the alignment for seqName in uniqSelSeq: sequence = [] residues = self.canvas.find_withtag(seqName) for residue in residues[1:]: tags = self.canvas.gettags(residue) if 'selected' not in tags: sequence.append(self.canvas.itemcget(residue,'text')) sequence = Sequence(name=seqName,sequence=sequence) index= self.alignment.seqNames.index(seqName) self.alignment.deleteSequence(seqName) self.alignment.addSequence(sequence,index) self.selectionTags=[] # can't have any tags if the selection is all gone... self.redraw() def redraw(self, event=None): self.canvas.delete('all') self.fillCanvas() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/fileBrowsers.py0000644000175000017500000000603011240331422027104 0ustar debiandebianimport user import tkFileDialog, os def fileOpenAsk(master, idir=None, ifile=None, types=None, title='Open'): if types==None: types = [ ('All files', '*') ] file = tkFileDialog.askopenfilename( filetypes=types, initialdir=idir, initialfile=ifile, title=title) if file=='': file = None return file 2 def fileSaveAsk(master, idir=None, ifile=None, types = None, title='Save'): if types==None: types = [ ('All files', '*') ] file = tkFileDialog.asksaveasfilename( filetypes=types, initialdir=idir, initialfile=ifile, title=title) if file=='': file = None return file from mglutil.gui.BasicWidgets.Tk.dirDialog import askdirectory class DirOpenBrowser: def __init__(self, lastDir=None, title=None, parent=None): self.lastDir = lastDir if lastDir is None: self.lastDir = user.home self.title = title if title is None: self.title = 'Choose Directory' self.parent = parent def get(self): folder = tkFileDialog.askdirectory(parent = self.parent, initialdir = self.lastDir, title=self.title) if folder: self.lastDir = os.path.split(folder)[0] return folder else: return None class FileOpenBrowser: def __init__(self, lastDir=None, title=None, filetypes=None, parent=None): self.lastDir = lastDir if lastDir is None: self.lastDir = user.home self.title = title if title is None: self.title = 'Choose File' self.filetypes = filetypes self.parent = parent if filetypes is None: self.filetypes = [('all', '*')] def get(self): file = tkFileDialog.askopenfilename(parent = self.parent, initialdir = self.lastDir, filetypes=self.filetypes, title=self.title) if file: self.lastDir = os.path.split(file)[0] return file else: return None class FileSaveBrowser: def __init__(self, lastDir=None, title=None, filetypes=None): self.lastDir = lastDir if lastDir is None: self.lastDir = user.home self.title = title if title is None: self.title = 'Choose File' self.filetypes = filetypes if filetypes is None: self.filetypes = [('all', '*')] def get(self): file = tkFileDialog.asksaveasfilename( initialdir = self.lastDir, filetypes=self.filetypes, title=self.title) if file: self.lastDir = os.path.split(file)[0] return file else: return None mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/0000755000175000017500000000000012146210100025202 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/tree.py0000644000175000017500000014133412035131034026526 0ustar debiandebian######################################################################## ## ## Author Michel Sanner Copyright TSRI (C) 2006 ## ######################################################################## # # $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/BasicWidgets/Tk/trees/tree.py,v 1.57 2012/10/09 23:24:12 sanner Exp $ # # $Id: tree.py,v 1.57 2012/10/09 23:24:12 sanner Exp $ # """Efficient TreeWidget based on Tkinter and Pmw The speed comes from only drawing visibles parts of the tree. """ import os, sys, types, Pmw from PIL import Image, ImageTk from weakref import ref from Pmw import ScrolledCanvas from Tkinter import Tk, PhotoImage, Label, ALL, Menu, IntVar from mglutil.util.packageFilePath import findFilePath from mglutil.gui import widgetsOnBackWindowsCanGrabFocus from mglutil.events import Event, EventHandler from mglutil.util.callback import CallbackFunction ## TODO ## - add size subdirectory to IconManager ## - cannot select 2 ranges, might want to add drag selection ## ## BUGS ## class IconsManager: """The IconsManager object simplifies creating PhotoImage icons from images in the directory. The directory can be set by specifying a path, a path within a Python package, or a Pyton package. Images are loaded upon requests and a reference to the icon is saved to avoid its garbage collection.""" def __init__(self, path=[], packageName=''): """Create an IconManager object. obj <- IconManager(path='', packageName='') If packageName is specified, the path is assumed to be relative to the location of the package.""" if packageName: mod = __import__(packageName) components = packageName.split('.') for comp in components[1:]: mod = getattr(mod, comp) packagePath = os.path.abspath(mod.__path__[0]) else: packagePath='' self.directory = os.path.join( packagePath, os.path.join(*path)) assert os.path.exists(self.directory) assert os.path.isdir(self.directory) self.icons = {} def get(self, iconName, master=None, directory=None): """ return an Tk PhotoImage for a given icon name and saves a reference """ if directory is None: directory = self.directory icon = self.icons.get(iconName, None) if icon is None: filename = os.path.join(directory, iconName) image = Image.open(filename) icon = ImageTk.PhotoImage(master=master, image=image) self.icons[iconName] = icon return icon class KeySelectable: """Adds the ability to use keystrokes to quickly select items in a list. root has to be a widget supporting .bind .after """ def __init__(self, KeyRootTk): self.KeyRootTk = KeyRootTk self.afterID = None self.matchString = '' self.lastMatchString = '' KeyRootTk.bind('', self.key_cb) KeyRootTk.bind('', self.keyUp_cb) self.isControl = False self.isShift = False self.isAlt = False self.ctrlModCallback = None self.shiftModCallback = None self.altModCallback = None def timeOut(self, event=None): """resets self.matchCharIndex to 0, called after a short period of time if no new character has been typed""" #print 'timeout' self.lastMatchString = self.matchString self.matchString = '' self.matchCharIndex = 1 self.afterID = None def keyUp_cb(self, event=None): if event.keysym=='Control_L' or event.keysym=='Control_R': self.isControl = False elif event.keysym=='Shift_L' or event.keysym=='Shift_R': self.isShift = False elif event.keysym=='Alt_L' or event.keysym=='Alt_R': self.isAlt = False def key_cb(self, event=None): # use key strokes to select entry in listbox # strokes placed within 500 miliseconds are concatenated #print self.matchCharIndex, '|', self.matchString, '|', event.keysym if event.keysym=='Control_L' or event.keysym=='Control_R': self.isControl = True return elif event.keysym=='Shift_L' or event.keysym=='Shift_R': self.isShift = True return elif event.keysym=='Alt_L' or event.keysym=='Alt_R': self.isAlt = True return if self.isControl: if self.ctrlModCallback: self.ctrlModCallback(event) return elif self.isShift: if self.shiftModCallback: self.shiftModCallback(event) return elif self.isAlt: if self.altModCallback: self.altModCallback(event) return if event.keysym=='Return': str = self.lastMatchString else: str = self.matchString + event.keysym #print str item = self.match(str) if item: self.selectItem(item) if self.afterID is not None: self.KeyRootTk.after_cancel(self.afterID) self.afterID = self.KeyRootTk.after(1000, self.timeOut) self.matchString = str # SUBCLASS THIS def match(self, name): """has to return None if no match or an object that matches""" print 'jumping to ', name return None def selectItem(self, item): """do what has to be done to show what matches the typed string""" print 'selecting item', item class SelectEvent(Event): def __init__(self, object): Event.__init__(self) self.object = object class DeselectEvent(Event): def __init__(self, object): Event.__init__(self) self.object = object class ClearSelectionEvent(Event): def __init__(self, object): Event.__init__(self) self.object = object class Tree(ScrolledCanvas, KeySelectable, EventHandler): """Tree widget for Tk and Pmw""" def __init__(self, master, root, iconsManager=None, selectionMode='single', idleRedraw=True, nodeHeight=15, headerHeight=0, **kw): """Tree( master, root, idleRedraw=True, kw = {}, **opts) - Master can be a Tk frame in which the tree is displayed - root has to be a Node object - iconsManageer has to be an instance of an IconManager object or None. If None is passed, an IconManager with the default icons directory will be created. If an IconManager is passed we expect to find ... - selection mode cane be 'single' or 'multiple'. In multiple mode, the shift modifier is use to select/deselect ranges (ranges can only be defined on sibling nodes) and the Control modifier is used to add/remove to the current selection. Node are selected by click withthe left mouse button on the node's label or icon. - Set idleRedraw to False to disable background drawing. - nodeHeight is the heigh of a node int he Tree in pixels - kw can contain any keywork allowable for a Pmw.ScrolledCanvas """ assert isinstance(root, Node) assert selectionMode in ['single', 'multiple'] EventHandler.__init__(self) self.master = master self.selectionMode = selectionMode self.lastPickedNode = None self.idleRedraw = idleRedraw # when set to true redraw operation # occur when CPU is idle if iconsManager is None: iconsManager = IconsManager( ['gui','BasicWidgets','Tk','trees','Icons'], 'mglutil') assert isinstance(iconsManager, IconsManager) self.iconsManager = iconsManager fs = self.fontSize = 10 self.font = "Arial %d"%fs # cache the icons use to expand and collapse since we will # use them for each node mod = __import__('mglutil') packagePath = mod.__path__[0] path = ['gui','BasicWidgets','Tk','trees','Icons'] directory = os.path.join( packagePath, os.path.join(*path)) #self.collapsedIcon = self.iconsManager.get("1rightarrow.png", # directory=directory) #self.expandedIcon = self.iconsManager.get("1downarrow.png", # directory=directory) self.collapsedIcon = self.iconsManager.get("plus.png", directory=directory) self.expandedIcon = self.iconsManager.get("minus.png", directory=directory) self.iconHalfWidth = self.collapsedIcon.width()/2 self.selectedNodes = [] self.selectionHistory = [] # used to undo selection operations self.nodeHeight = nodeHeight self.headerHeight = headerHeight self.firstVisibleNodeLineNum = 0 # height of the first visible node # i.e. how many nodes drown above, 0 for root self.firstVisibleNode = root # first node visible in window self.displayedNodes = [] # list of nodes having a graphical represenation self.pending_draw = None self.suspendRedraw = False self.root = root root.currenty = 0 self.maxNodeNum = 0 root.tree = ref(self) root.childNumber = 0 self.nbLines = 1 # height of the tree (i.e. how many lines in canvas) # build the GUI if not kw.has_key('vscrollmode'): kw['vscrollmode'] ='dynamic' if not kw.has_key('hscrollmode'): kw['hscrollmode'] ='dynamic' if not kw.has_key('hull_width'): kw['hull_width'] = 550 if not kw.has_key('hull_height'): kw['hull_height'] = 100 if not kw.has_key('background') and not kw.has_key('bg') and \ not kw.has_key('canvas_bg'): kw['canvas_bg']='white' if not kw.has_key('usehullsize'): kw['usehullsize'] = 1 self.nbLinesPerPage = (kw['hull_height']-self.headerHeight) / nodeHeight if not kw.has_key('yscrollincrement'): kw['canvas_yscrollincrement'] = nodeHeight kw['horizscrollbar_command'] = self.xview kw['vertscrollbar_command'] = self.yview kw['borderframe'] = 5 kw['canvas_highlightthickness'] = 0 #kw['canvasmargin'] = 10 #kw['hscrollmode'] = 'none' apply( ScrolledCanvas.__init__, (self, master), kw) canvas = self.canvas = self.component('canvas') canvas.master.configure(borderwidth=0) KeySelectable.__init__(self, canvas) self.ctrlModCallback = self.handleControlKey canvas.bind("", self.configure_cb) canvas.bind("", self.pageUp) canvas.bind("", self.pageDown) canvas.bind("", self.lineUp) canvas.bind("", self.lineDown) if os.name == 'nt': #sys.platform == 'win32': canvas.bind("", self.lineUpDown) else: canvas.bind("", self.lineUp) canvas.bind("", self.lineDown) canvas.bind("", self.enter_cb) self.isControl = False self.isShift = False self.isAlt = False if widgetsOnBackWindowsCanGrabFocus is False: lActiveWindow = canvas.focus_get() if lActiveWindow is not None \ and ( lActiveWindow.winfo_toplevel() != canvas.winfo_toplevel() ): return canvas.focus_set() def redrawHeader(self, *args): pass def yview(self, *args): # dragging scroll bar triggers('moveto', '0.024242424242424242') # using scrolbar arrows triggers ('scroll', '1', 'units') # clicking in scroll bar background ('scroll', '-1', 'pages') # ## callback for vertscrollbar_command # args can be ('scroll', number, type) where type is page or unit # or ('moveto', '0.2854982') #print 'YVIEW', args if args[0] == "scroll": # ('scroll', '1', 'pages') when click on back of bar # ('scroll', '1', 'units') when click on bar arrow #print 'SCROLL', args if args[1]=='1' and self.displayedNodes[-1].nextNode() is None: return self.yview_scroll(args[1], args[2]) else: # ('moveto', '0.350939') when dragging bar percent = float(args[1]) line = min( self.nbLines-self.nbLinesPerPage, int((self.nbLines-1) * float(percent))) if line > self.firstVisibleNodeLineNum: if self.displayedNodes[-1].nextNode() is None: return if self.firstVisibleNodeLineNum != line: v = self.scrollView(line - self.firstVisibleNodeLineNum) if v: # compute percentage of motion total = self.nbLines+(self.headerHeight/float(self.nodeHeight)) percent = self.firstVisibleNodeLineNum/total ScrolledCanvas.yview_moveto(self, percent) self.redraw() #self.redrawHeader(args) def pageUp(self, event): # triggered by page up on keyboard self.yview_scroll(-1, "pages") return "break" def pageDown(self, event): # triggered by page down on keyboard self.yview_scroll(1, "pages") return "break" def lineUp(self, event): # triggered by up arrow on keyboard # print 'LINE UP' self.yview_scroll(-1, "units") return "break" def lineDown(self, event): # triggered by down arrow on keyboard #print 'LINE DOWN' self.yview_scroll(1, "units") return "break" def lineUpDown(self, event): #print 'LINE UPDOWN' if event.delta < 0: return self.lineDown(event) else: return self.lineUp(event) def yview_scroll(self, *args): # mouse wheel or arrow keys up and down args = (1, 'units'), (-1, 'units') # page up and down keys (1, 'pages')(13, 'units') # (-1, 'pages')(-13, 'units') # end key args = "jumping to End" # home key args = "jumping to Home" height = self.winfo_height() - self.headerHeight #print 'yview_scroll', args #height = int(self.canvas['height']) - self.headerHeight #print 'GGGG', height, self.nbLines, self.nodeHeight, self.nbLines * self.nodeHeight if self.nbLines * self.nodeHeight <= height: return if args[1] == "pages": # FIXME we scroll the whole thing one page linesPerPage = int(args[0]) * (height / self.nodeHeight) self.yview_scroll(linesPerPage, "units") else: # it is a unit scroll of args[0] units if args[0]=='1' and self.displayedNodes[-1].nextNode() is None: return line = min(self.nbLines-self.nbLinesPerPage, self.firstVisibleNodeLineNum+int(args[0])) v = self.scrollView(line - self.firstVisibleNodeLineNum) if v: ScrolledCanvas.yview_scroll(self, *args) self.redraw() #self.redrawHeader(args) def scrollView(self, deltalines): """move the visible part of the tree up of down by deltalines lines """ #print 'SCROLL VIEW', deltalines if deltalines > 0: # compute the index of the line for which the bottom of the tree # is drawn at the bottom of the visible window last = self.nbLines - self.nbLinesPerPage + 1 # clamp deltalines so we do no go too far down deltalines = min(last-self.firstVisibleNodeLineNum+1, deltalines) #print 'GUGU', last, self.firstVisibleNodeLineNum, deltalines j = 0 for i in range(deltalines): node = self.firstVisibleNode.nextNode() if node is None: break self.firstVisibleNodeLineNum += 1 self.firstVisibleNode = node j+=1 return j else: j = 0 for i in range(-deltalines): node = self.firstVisibleNode.previousNode() if node is None: break self.firstVisibleNodeLineNum -= 1 self.firstVisibleNode = node j+=1 return j def showNode(self, node): self.firstVisibleNodeLineNum = node.childNumber self.firstVisibleNode = node self.redraw() def enter_cb(self, event=None): if widgetsOnBackWindowsCanGrabFocus is False: lActiveWindow = self.focus_get() if lActiveWindow is not None \ and ( lActiveWindow.winfo_toplevel() != self.winfo_toplevel() ): return self.canvas.focus_set() def configure_cb(self, event=None): nl = (self.winfo_height()-self.headerHeight) / self.nodeHeight self.nbLinesPerPage = nl last = self.nbLines - nl if self.firstVisibleNodeLineNum > last: self.scrollView(last - self.firstVisibleNodeLineNum) self.redraw() def destroy(self): if self.root: self.root.destroy() ScrolledCanvas.destroy(self) ## ## Drawing ## def undisplay(self): for node in self.displayedNodes: node.deleteNodeIcons() def reparentNodes(self, tree): n = self.root while n: n.tree = ref(tree) n = n.nextNode() def redraw(self, force=False): """post a redraw or actually redraw depending on self.idleRedraaw """ if self.suspendRedraw: return if self.root: if self.idleRedraw: if self.pending_draw: self.after_cancel(self.pending_draw) cb = CallbackFunction(self.reallyRedraw, force=force) self.pending_draw = self.after(10, cb) else: self.reallyRedraw(force) def reallyRedraw(self, force=False): """actually redraw if force is True we for redrawing each line else we move existing lines """ self.pending_draw = None canvas = self.canvas if force: # destroy representation of visible nodes for node in self.displayedNodes: #print 'destroying', node.object.name node.deleteNodeIcons() else: # make a copy of previousely displayed nodes prevDisplayNodes = {}.fromkeys(self.displayedNodes[:]) # build list of visible nodes nodeHeight = self.nodeHeight nodes = [] node = self.firstVisibleNode for i in range(self.nbLinesPerPage): if not force: if prevDisplayNodes.has_key(node): del prevDisplayNodes[node] nodes.append(node) node = node.nextNode() if node is None: break # destroy representation of previously visible nodes # that are not longer visible if not force: for node in prevDisplayNodes.keys(): #print 'destroying', node.object.name node.deleteNodeIcons() ## this approach does not destoy some canvas items of node that move ## for instance after an expand ## # destroy representation of nodes no longer visible ## for node in self.displayedNodes: ## if nodesd.has_key(node): ## print 'deleteIcon', node.object ## node.deleteNodeIcons() # Draw visible nodes ypos = self.firstVisibleNodeLineNum * nodeHeight + self.headerHeight for node in nodes: if node.labelTkid is None or node.currenty is None: node.redraw(ypos) #print 'DRAWING', node.object.name, ypos, node.currenty, node.uniqID else: dy = ypos - node.currenty #print 'MOVING', node.object.name, dy, self.firstVisibleNodeLineNum, ypos, node.currenty if dy: canvas.move(node.nodeTkTag, 0, dy) node.currenty += dy #if node.currenty is None: # node.currenty = 0 #print 'redraw', node.needsRedraw, node.object.name #node.redraw(ypos) ypos += nodeHeight self.displayedNodes = nodes # Update the scroll-bar size if self.root: canvas = self.canvas x1, y1, x2, y2 = canvas.bbox(ALL) canvas.configure( scrollregion=( 0, 0, x2, self.nbLines*nodeHeight+self.headerHeight)) def updateTreeHeight(self): """ """ self.nbLines = self.root.countSubtreeLines() def clearSelection(self, history=True): """Deselect all selected Nodes.""" canvas = self.canvas if history: self.selectionHistory.append(self.selectedNodes[:]) selectedNodes = self.selectedNodes[:] for node in selectedNodes: node.deselect(history=False) def undoSelect(self): """ """ if len(self.selectionHistory): self.clearSelection(history=False) self.selectedNodes = self.selectionHistory.pop() for n in self.selectedNodes: n.select(only=False, history=False) def handleControlKey(self, event): """ """ if event.keysym in ['z', 'Z']: self.undoSelect() elif event.keysym in ['l', 'L']: self.redraw() ## def clearTree(self): ## if self.pending_draw: ## self.after_cancel(self.pending_draw) ## self.pending_draw = None ## if self.root: ## self.root.destroy() ## for n in self.displayedNodes: ## n.deleteNodeIcons() ## def refresh(self): ## """Refresf the tree. Notice that it is speeder to update only some Nodes (with Node.update() or Node.updatetree() and then tree.redraw()), if you know which Nodes have changed.""" ## if self.root: ## self.root.refresh() ## self.redraw() class Node: """Base class for Nodes in a Tree""" def __init__(self, object, parent): """Create a Node. object is the Python object represented by this node in the tree. Object is expected to provide an interable sequence in its .children attribute. Parent can be either the parent's Node, or the tree (for the root Node). """ self.object = object self.isExpanded = False self.hasExpandIcon = True self.isSelected = False self.hasBeenExpanded = False self.children = [] self.childNumber = 0 # index of this node in the list of children of its parent self.iconWidth = 0 self.font = None self.currenty = None # y value on canvas when node is visible # if None the node is not drawn self.needsRedraw = False self.parent = parent if parent is None: self.generation = 0 # how many ancestors self.tree = None # weakref to tree self.uniqID = 0 else: self.generation = parent.generation + 1 self.tree = parent.tree self.tree().maxNodeNum += 1 # canvas ids self.uniqID = self.tree().maxNodeNum self.nodeTkTag = 'node_'+str(self.uniqID) self.labelTkid = None # canvas id of node name self.iconTkid = None # canvas id if node's icon self.expandIconTkid = None # canvas id of expand/collapse icon self.selectionBoxId = None self.canvasIDs = [] # list of other ids ## ## to be overridden ## def isExpandable(self): """Returns true if this node has children""" return 0 def getChildren(self): """ return children for object associated with this node. By default we return object.children. Override this method to selectively show children """ return self.object.children def createChildrenNodes(self): """Create node for all children of self.object""" children = [] for child in self.getChildren(): if hasattr(child, 'treeNodeClass'): klass = child.treeNodeClass else: klass = self.__class__ children.append(klass(child, self)) return children ## ## recursive traversals ## def countSubtreeLines(self): """Recusrsively traverse the tree and count the number of lines needed to draw this subtree on a canvas""" nbLines = 1 if self.isExpanded: for child in self.children: nbLines = nbLines + child.countSubtreeLines() return nbLines def lastVisibleChild(self): """Return the last visible child of this node""" if self.hasBeenExpanded and self.isExpanded: return self.children[-1].lastVisibleChild() else: return self def findNextNode(self, node): """recursively traverse the tree to find the first node visible below self""" # if this is not the last child, return the next one if node.childNumber + 1 < len(self.children): return self.children[node.childNumber + 1] if self.parent: # we need to walk the tree to find te next node return self.parent.findNextNode(self) else: # root node return None ## ## tree navigation methods ## def previousNode(self): """return the node right above this one in the tree""" if self.parent is None: # root node return None if self.childNumber==0: # node is first child, return parent return self.parent else: # return last visible child of sibling before self return self.parent.children[self.childNumber-1].lastVisibleChild() def nextNode(self): """return the node right below this one in the tree""" if self.isExpanded and self.children: return self.children[0] else: if self.parent: return self.parent.findNextNode(self) else: return None # Root Node ## ## expanding and collapsing the tree ## def expand(self, event = None): """Expand this node and show its children""" if self.isExpanded: return tree = self.tree() if not self.hasBeenExpanded: self.children = self.createChildrenNodes() for i,c in enumerate(self.children): c.childNumber = i tree.objectToNode[c.object] = c self.hasBeenExpanded = True if len(self.children): self.needsRedraw = True self.isExpanded = True tree.updateTreeHeight() self.deleteNodeIcons() tree.redraw() def collapse(self, event = None): """Collapse this node, i.e hid its children""" if not self.isExpanded: return self.isExpanded = False self.needsRedraw = True tree = self.tree() tree.updateTreeHeight() self.deleteNodeIcons() tree.redraw() def doubleLabel1(self, event=None): """Callback for double click on label with button 1""" self.toggleExpansion(event) def toggleExpansion(self, event=None): """Toggles expanded/collapsed state of this node""" if self.isExpanded: self.collapse() else: self.expand() ## ## Drawing ## def getIcon(self): """return node's icons""" iconsManager = self.tree().iconsManager if hasattr(self.object, 'treeIconName'): icon = iconsManager.get(self.object.treeIconName, self.tree().master) elif self.isExpandable(): if self.isExpanded: icon = iconsManager.get("expandedIcon.pgm") else: icon = iconsManager.get("collapsedIcon.pgm") else: icon = iconsManager.get("python.pgm") if icon: self.iconWidth = icon.width() else: self.iconWidth = 0 return icon def drawExpandCollapseIcon(self, x, y): """Draw the icon used to expand and collapse nodes""" tree = self.tree() canvas = tree.canvas self.nodeStartX = x # delete old icon if self.expandIconTkid: canvas.delete(self.expandIconTkid) # draw new one if self.isExpandable() and self.hasExpandIcon: if self.isExpanded: icon = tree.expandedIcon else: icon = tree.collapsedIcon tkid = self.expandIconTkid = canvas.create_image( x + tree.iconHalfWidth, y, image=icon, tags=(self.nodeTkTag,)) canvas.tag_bind(tkid, "", self.toggleExpansion) iconWidth = icon.width() return iconWidth+tree.iconHalfWidth else: iconWidth = 0 self.expandIconTkid = None return 0 def drawNodeIcon(self, x, y): """Draw the node's icon""" tree = self.tree() canvas = tree.canvas if self.iconTkid: canvas.delete(self.iconTkid) icon = self.getIcon() if icon: self.iconTkid = canvas.create_image( x, y, image=icon, anchor="nw", tags=(self.nodeTkTag,)) canvas.tag_bind(self.iconTkid, "", self.toggleExpansion) canvas.tag_bind(self.iconTkid, "", self.selectRange_cb) canvas.tag_bind(self.iconTkid, "", self.modifySelection_cb) canvas.tag_bind(self.iconTkid, "", self.toggleSelection) if os.name != 'nt': #sys.platform != 'win32': canvas.tag_bind(self.iconTkid, "", self.tree().lineUp) canvas.tag_bind(self.iconTkid, "", self.tree().lineDown) else: self.iconTkid = None return self.iconWidth def fitText(self, x, y, tree, canvas, text, font=None): # added so that NodeWithButton can change label to fit tree width return text def drawNodeLabel(self, x, y): """Draw the node's label""" tree = self.tree() canvas = tree.canvas origtext = self.object.name if not origtext: self.needsRedraw = True return 0 if self.font: font = self.font else: font = self.tree().font text = self.fitText(x, y, tree, canvas, origtext, font) if self.labelTkid: curText = canvas.itemconfig(self.labelTkid)['text'][4] else: curText = '' if curText==text: canvas.coords(self.labelTkid, x, y) return 0 if self.labelTkid: canvas.delete(self.labelTkid) if len(text) < len(origtext): balloon = Pmw.Balloon(canvas) else: balloon = None labelTkid = canvas.create_text( x, y, anchor='nw', text=text, font=font, tags=(self.nodeTkTag,)) canvas.tag_bind(labelTkid, "", self.toggleSelection) canvas.tag_bind(labelTkid, "", self.selectRange_cb) canvas.tag_bind(labelTkid, "", self.modifySelection_cb) canvas.tag_bind(labelTkid, "", self.button3OnLabel) canvas.tag_bind(labelTkid, "", self.doubleLabel1) canvas.tag_bind(labelTkid, "", tree.move_cb) if os.name == 'nt': #sys.platform == 'win32': #this does not work: #canvas.tag_bind(labelTkid, "", tree.lineUpDown) canvas.tag_bind(labelTkid, "", tree.lineUpDown) else: canvas.tag_bind(labelTkid, "", tree.lineUp) canvas.tag_bind(labelTkid, "", tree.lineDown) self.labelTkid = labelTkid if balloon: balloon.tagbind(canvas, labelTkid, origtext) bb = canvas.bbox(self.labelTkid) return bb[2]-bb[0] def drawNodeCustomization(self, x, y): """Draw additional things on the canvas""" return 0 def nodeRedraw(self): # this functions performs a redraw of a node in the same place ypos = self.currenty self.deleteNodeIcons() self.redraw(ypos) def redraw(self, y): """Redraw this node at position y on the canvas""" # this function actually draws the node #print 'AAAA Redraw', self.object.name #if self.currenty is None: # return tree = self.tree() if y != self.currenty or self.needsRedraw: x = 2 + max(0, self.generation) * tree.nodeHeight if not hasattr(self, 'nodeTkTag'): self.nodeTkTag = 'node_'+str(self.uniqID) x += self.drawExpandCollapseIcon(x, y+tree.iconHalfWidth) x += self.drawNodeIcon(x, y) x += self.drawNodeLabel(x, y) x += self.drawNodeCustomization(x, y) self.currenty = y if self.isSelected: if self.selectionBoxId: tree.canvas.delete(self.selectionBoxId) self.drawSelectionBox() self.needsRedraw = False def deleteNodeIcons(self): """Delect canvas items representing this node""" canvas = self.tree().canvas canvas.delete(self.nodeTkTag) self.expandIconTkid = None self.labelTkid = None self.selectionBoxId = None ## if self.expandIconTkid: ## canvas.delete(self.expandIconTkid) ## self.expandIconTkid = None ## if self.labelTkid: ## canvas.delete(self.labelTkid) ## self.labelTkid = None ## if self.selectionBoxId: ## canvas.delete(self.selectionBoxId) ## self.selectionBoxId = None ## self.labelTkid = None #for id in self.canvasIDs: # canvas.delete(id) self.canvasIDs = [] self.currenty = None def destroy(self): for child in self.children: child.destroy() ## ## selection ## def drawSelectionBox(self): """draw a yellow box""" tree = self.tree() canvas = tree.canvas w = tree.winfo_width() y = self.currenty id = canvas.create_rectangle(0, y-2, w, y+20, outline='yellow', fill='yellow', tags=(self.nodeTkTag,)) canvas.lower(id) self.selectionBoxId = id def button3OnLabel(self, event=None): # override in subclass return def toggleSelection(self, event=None, only=True): tree = self.tree() tree.lastPickedNode = self if self.isSelected: self.deselect() else: self.select(only=only) def select(self, only=True, history=True): if self.isSelected: return tree = self.tree() if history: tree.selectionHistory.append(tree.selectedNodes[:]) if only: tree.clearSelection(history=False) self.isSelected = True tree.selectedNodes.append(self) if self in tree.displayedNodes: self.drawSelectionBox() tree.dispatchEvent( SelectEvent(self)) def deselect(self, history=True): if not self.isSelected: return tree = self.tree() if history: tree.selectionHistory.append(tree.selectedNodes[:]) tree.selectedNodes.remove(self) if self in tree.displayedNodes: tree.canvas.delete(self.selectionBoxId) self.isSelected = False self.selectionBoxId = None tree.dispatchEvent( DeselectEvent(self)) def selectRange_cb(self, event=None): tree = self.tree() if tree.selectionMode=='single': return if len(tree.selectedNodes)==0: return last = tree.lastPickedNode all = self.parent.children try: i1 = all.index(self) i2 = all.index(last) except ValueError: raise ValueError, "range only work over siblings" if i1 > i2: tmp=i1; i1=i2; i2=tmp tree.selectionHistory.append(tree.selectedNodes[:]) #print last, i1, i2+1 for node in all[i1:i2+1]: if node==last: continue if node.isSelected: node.deselect(history=False) else: node.select(only=False, history=False) def modifySelection_cb(self, event=None): tree = self.tree() tree.lastPickedNode = self if tree.selectionMode=='single': return self.toggleSelection(event=event, only=False) def undoSelect(self, event=None): tree.lastPickedNode = None self.tree().undoSelect() def refresh(self): self.needsRedraw = True self.tree().canvas.itemconfig(self.labelTkid, text=unicode(self)) def refreshSubTree(self): self.refresh() for child in self.children: child.refreshSubTree() self.tree().redraw() def refreshChildren(self, redraw=True): ## bizarre if self.hasBeenExpanded: if self.isExpanded: tree = self.tree() # save current children oldchildren = self.children # delete all icons for current children for child in self.children: child.deleteNodeIcons() # create Nodes for new children while saving existing ones oldChildObj = {} for c in oldchildren: # dict of obj:existing nodes oldChildObj[c.object]= c i = 0 newchildren = [] # build the list and create new children for childobj in self.getChildren(): try: c = oldChildObj[childobj] except KeyError: if hasattr(childobj, 'treeNodeClass'): klass = childobj.treeNodeClass else: klass = self.__class__ c = klass(childobj, self) tree.objectToNode[c.object] = c newchildren.append(c) c.childNumber = i i = i + 1 self.children = newchildren if len(self.children)==0: self.isExpanded = 0 # Cannot be expanded if no children if redraw: self.tree().redraw() else: for child in self.children: child.destroy() self.children = [] self.hasBeenExpanded = False if redraw and self.currenty: self.redraw(self.currenty) else: if redraw and self.currenty: self.redraw(self.currenty) ## def selectTree(self): ## if not self.isSelected: self.select() ## for child in self.children: ## child.selectTree() ## def deselectTree(self): ## self.deselect() ## for child in self.children: ## child.deselectTree() ## #root = Tk() ## #iconsmanager = IconsManager('Icons/32x32/', 'Pmv') ## #ico = iconmanager.get('ss.png', root) if __name__=='__main__': from mglutil.util.callback import CallbackFunction from MolKit.molecule import Atom, Molecule from MolKit.protein import Residue, Chain class ObjectTree(Tree): """Each node in the tree has an object associated in the node's .object attribute. The objects are expected to have a .parent and a .children attribute describing the hierarchy.""" def __init__(self, master, root, iconsManager=None, idleRedraw=True, nodeHeight=15, **kw): Tree.__init__(self, master, root, iconsManager=None, idleRedraw=True, nodeHeight=nodeHeight, **kw) self.objectToNode = {} # key is object, values if Node instance self.objectToNode[root.object] = root self.nbCol = 10 self.menuEntries = [] for i in range(self.nbCol): self.menuEntries.append([]) self.menuEntries[0] = [ 'displayLines', 'display S&B', 'display CPK', 'display second. struct.', 'display molecular surface', 'display second and S&B' 'undisplayLines', 'undisplay S&B', 'undisplay CPK', 'undisplay second. struct.', 'undisplay molecular surface', 'undisplay second and S&B' ] self.menuEntries[1] = [ 'label Atoms', 'label residues', 'label chains', 'label molecules' ] self.menuEntries[2] = [ 'color by atom types', 'color by molecule', 'color by chains', 'color by residue (RASMOL)', 'color by residue (SHAPELY)', 'color by DG', 'color by instance', 'color by second. struct.' ] def createNodeForObject(self, object): """given an object if the corresponding Node is not yet created for its creation by expanding all its ancestors""" try: return self.objectToNode[object] except KeyError: p = object.parent ancestors = [p] while p and not self.objectToNode.get(p, None): ancestors.append(p) p = p.parent ancestors.append(p) ancestors.reverse() for p in ancestors: self.objectToNode[p].expand() return self.objectToNode[object] class ObjectNode(Node): """ """ def __repr__(self): return self.object.name def getIcon(self): """return node's icons""" iconsManager = self.tree().iconsManager object = self.object if isinstance(object, Atom): icon = iconsManager.get("atom.png", self.tree().master) elif isinstance(object, Residue): icon = iconsManager.get("residue.png", self.tree().master) elif isinstance(object, Chain): icon = iconsManager.get("chain.png", self.tree().master) elif isinstance(object, Molecule): icon = iconsManager.get("ms.png", self.tree().master) else: icon = None if icon: self.iconWidth = icon.width() else: self.iconWidth = 0 return icon def isExpandable(self): """Returns true if this node has children""" return len(self.getChildren()) def createChildrenNodes(self): """Create node for all children of self.object""" children = [] for child in self.getChildren(): children.append(ObjectNode(child, self)) return children def drawNodeCustomization(self, x, y): """Add things to the rigth side of the tree """ tree = self.tree() canvas = tree.canvas level = 2 col = ['gray75', 'red', 'cyan', 'green', 'yellow'] nbButtons = 10 ## if not hasattr(self, 'chkbt'): ## self.chkbtVar = [] ## self.chkbt = [] ## for i in range(nbButtons): ## v = IntVar() ## self.chkbtVar.append(v) ## cb = CallbackFunction(self.buttonClick, i ) ## button = Checkbutton( ## canvas, variable=v, command=cb, padx=0, pady=0, ## background=col[level-1], anchor='nw') ## self.chkbt.append(button) x = 150 fill = ['white', 'green'] if not hasattr(self, 'chkbt'): nbButtons = tree.nbCol self.chkbt = [0]*nbButtons self.chkbtid = [None]*nbButtons # create a pull down menu and allocate variables for each column self.menu = Menu(canvas, title='Choose', tearoff=False) self.menuVars = [] # list of [column][menu entries] IntVar for i, entries in enumerate(tree.menuEntries): l = [] for j in range(len(entries)): l.append(IntVar()) self.menuVars.append(l) # a list for each column for i, val in enumerate(self.chkbt): xo = x+i*35 cid = canvas.create_oval(xo, y, xo+15,y+15, fill=fill[val]) cb = CallbackFunction(self.buttonClick, i ) canvas.tag_bind(cid, "", cb) cb = CallbackFunction(self.shiftButtonClick, i ) canvas.tag_bind(cid, "", cb) self.chkbtid[i] = cid self.canvasIDs.append(cid) ## button = self.chkbt[i] ## cid = canvas.create_window( x+i*35, y, window=button, ## width=20, height=15) ## self.canvasIDs.append(cid) # add secondary structure glyph molFrag = self.object if isinstance(molFrag, Residue): if hasattr(molFrag, 'secondarystructure'): ssname = molFrag.secondarystructure.name if ssname[:6]=='Strand': color = '#FFF700' elif ssname[:4]=='Coil': color = 'grey45' elif ssname[:5]=='Helix': color = '#FF198C' elif ssname[:4]=='Turn': color = 'blue' cid = canvas.create_rectangle( 130, y-10, 140, y+10, outline=color,fill=color) self.canvasIDs.append(cid) cid = canvas.create_text( 152, y, text=ssname, anchor='nw', font=self.tree.font) self.canvasIDs.append(cid) return x+i*35 ## func = tree.buttonValFunc[i] ## if func: ## func(self) def menu_cb(self, column, what, menuEntryIndex, event=None): print 'FFFF', column, what, menuEntryIndex def buttonClick(self, column, event=None): # get called for each checkbutton tree = self.tree() if self.chkbt[column]==0: tree.canvas.itemconfigure(self.chkbtid[column], fill='green') self.chkbt[column] = 1 else: tree.canvas.itemconfigure(self.chkbtid[column], fill='white') self.chkbt[column] = 0 for i,v in enumerate(self.menuVars[column]): if v.get(): print 'DDD', tree.menuEntries[column][i], self.chkbt[column] def shiftButtonClick(self, column, event=None): # get called for each checkbutton tree = self.tree() menu = self.menu if menu.index(0)==0: # there is something in the menu, remove it menu.delete(0, 100) for i, menuEntry in enumerate(tree.menuEntries[column]): v = self.menuVars[column][i] cb = CallbackFunction(self.menu_cb, column, menuEntry, i) menu.add_checkbutton(label=menuEntry, variable=v, command=cb) menu.post(event.x_root, event.y_root) ## if self.chkbt[column]==0: ## tree.canvas.itemconfigure(self.chkbtid[column], fill='green') ## self.chkbt[column] = 1 ## else: ## tree.canvas.itemconfigure(self.chkbtid[column], fill='white') ## self.chkbt[column] = 0 ## def getIcon(self): ## """return node's icons""" ## return None from MolKit import Read from MolKit.molecule import MolecularSystem syst = MolecularSystem ('world') mols = Read('../dev23/1crn.pdb') syst.adopt(mols[0]) #mols = Read('../dev23/2plv.pdb') #syst.adopt(mols[0]) #mols = Read('../dev23/1gav.pdb') root = Tk() rootnode = ObjectNode(syst, None) tree = ObjectTree(root, rootnode, selectionMode='multiple') tree.pack(expand=1, fill="both") mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/0000755000175000017500000000000012146210100026255 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/1rightarrow.png0000644000175000017500000000055410670062437031262 0ustar debiandebian‰PNG  IHDRísO/gAMA± üabKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÑ  ôMS9éIDATxœ•ÓÁjÂ@àßÐ'ËÃäE|‹öÄcO*…"‚ÔBK-„ ¢¢´g²³®7KȬхefÿ¹, T'E'…6«­(NŠvº.Úéú&$ » ­§&ê8zÊ-Þ—ÛZD¬Á,`Œ¾–W0çÄbÁË$ "*°Ù[p.—ó<øP‘ Øý2ˆr¿ÕWÞªÀÉÁâµÑm€! q§J¿Ûéà¯÷XÚKˆœ/o0è¿VÂA # úßàm_øgœß<~ENN0pIEND®B`‚mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/1rightarrow1.png0000644000175000017500000000145010670062437031337 0ustar debiandebian‰PNG  IHDRóÿagAMA¯È7ŠétEXtSoftwareAdobe ImageReadyqÉe<ºIDATxÚbüÿÿ?‹17|âÏ@ü ˆ¿ñ €X€˜ˆ…÷ÜcHúü“!øß¦o¿þ|üÉðûË/†é6 Óð€bº€cÛ-_ «,e€†0üùÇÀpê Ãɇ?g¿y|³pF²ÞWlÐV –XzþOÍöÛÿþÿúó÷ÿŸ¿¼ùæ¿ÿÅ›¿ÌÍ^öX¨Žˆ`b®OŸ> Õìü>gÎÙÿ?ÿýÿûOÞrãïÿìõ_æf¬z«…n@Á C@áÁ”²æëäŽÃÿ¿ùüýÿ§o¼íæ¯ÿÉ«?/IZùÑ Ù€b‚ú䘋µU>}÷cÆÜ l Ÿ¾ÿcøõû/›IübÖaf`ç;0á’,ˆ )8@†0hhhÈõ{³¯ãü³nÏ#6†_þÀ±Ø+éŸ LüÒùŒŒŒ Øc $@†ñ±ÊŽ»Ì‰ LŒ&¢Ÿ~þþWpã+ö»l §ç¬…Fÿ_€bAÒ, Ħën0¤~úþ×ÇHø=+ÐQ¿þ@\|ÍÎ0ï*ó“k«žYò¤$@ €1Ï Äê /2¤ýüõÛÇTäóÿ ¿¡šO¾àdXxŸáù‘·ç&® ½†Ø€b9}ú×ß~ù:I½a`iþ Ñ|à ÃÜÏ}º¾hñ£ù[€Bošü@ ”ÈÚwœÁèüó?'ßS="Ù_|ÃÁ°üàƒŸ.m\øjKý^¨Í"@ ‡å¬¿¡oüOcøó‹ïÿ¿?,@ƒ¿½wüýþþEŸN-¾Tó]3ÈF0ƒL±1R쀢à'ÿ€ùãÿÿÿ(€4ˆ&’lÁIEND®B`‚mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/openfolder.png0000644000175000017500000000047410670062437031147 0ustar debiandebian‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÖ-¤ÉIDAT8Œу EŸþa˜€UØÀŒÂYÅ dW¨ØŠ ‚¶?=½?9@òò€ÿf‹±Ÿˆêœ3J‡ð褘ýNDÉb­¹IÈ¢¦qVÜ©ÞDkÆ4El[¨öוðþQ@ õPåá˜ÍWBÞXkß@¾çU$6Ç„çËŽãñ²UzE+D:ŒD˜MóHGp`a#àcžùÆAj‹ Þ×P¦ÍäYX¹¶Ð#@$ ÇǪã çíNÜOy¦E]Rñ>IEND®B`‚mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/set.png0000644000175000017500000000130511437032657027602 0ustar debiandebian‰PNG  IHDR‘h6 pHYs  šœtIMEڥģtEXtCommentCreated with The GIMPïd%n;IDAT(Ïm’MHTa…ÏûÝ;s½#*ŽI©!J£RbCYSÙÏ¢ÈÖªE&TXƒÜe?ÔÎŒp!´°… Élc¡X-j‘ym¢üŸ˜ÿºsï÷¶ÅélßïÎwxˆ™±&)™GÇ‚ý_L„-K–—Ô*ª©G”6“3ÍÍ=ï‡&©3¨ª*xöüâá:ïfƒüôùש“O Ȧ)]Ýšš|AÌ ÇkkÛÿ„ÁøŸÒ]âÃð­½5»À;úC¡8#žPT’s¯½„åU«µµ°„ù×ê~9–ŠÉ,cšÉàä´¢0IåÝÐøOcN0¦çç—IŠ xm FdaµçÕ7€«Ã#Aun6žÊÖ5å¼?·TO|™É‰2ÓF³uMOEÔ¬,Hh»ïzÒ{*A²ºòA™ÿ~o\JeKÃÝ%*vïp;pÀ]¿Ô+dR–íIîÜwÃóѯeÎå­.Q ·åò{ •°b® C›5l5ÇŸŽÄ6#.ÜžíóU!è¹äöJçJÔ± ê5¡ß±ÍíâöÍ㺮©üG¼§Ïí¿2FuÅÖÜwé¹üºtÕN¤ ,l°h8êii ¬£Á¶eɶ¶7o]º%m ,0QãYo׋K¹y.¤ÐHÓ:2j9çùÕOii¾Çç÷$„wW ®%¨*€…Þ† ¿pc$þù’;ù²;yØAo²žÛ¦aRƒ Ç7ª~j‘ÖmPîxw]oÅ_êA&~hÃIEND®B`‚mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/openfolder.pgm0000644000175000017500000000125210670062437031141 0ustar debiandebianP6 # CREATOR: The GIMP's PNM Filter Version 1.0 16 13 255 ðððððððððððððððððððððððððððððððððððððððððððððððððððððððððððððððððððððððððððððððððÿÿÿÿÿÿÿÿÿÿððððððððððððÿÿÿÿÿÿÿÿÿÿÿÿÿÿððððððððððððÏÏ`ððððððÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÏÏ`ÏÏ`ÿÿÏÏ`ðððÿÿÿÿÿÿÿÿÿÿÿÿÿÏÿÿÿÏÏÏ`ÏÏ`ÏÏ`ðððÿÿÿÿÿÿÿÿÿÏÿÿÿÿÿÏÿÿÏÏ`ÏÏ`ÏÏ`ððððððÿÿÿÿÿÿÿÿÿÿÿÏÿÿÿÏÿÏððððððÿÿÿÿÿÏÿÿÿÏÿÿÿÏÿÏÿÏÏÏ`ðððððððððÿÏÿÿÿÏÿÿÿÏÿÏÿÏÿÏÏÏ`ðððððððððððððððmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/1downarrow1.png0000644000175000017500000000142610670062437031174 0ustar debiandebian‰PNG  IHDRóÿagAMA¯È7ŠétEXtSoftwareAdobe ImageReadyqÉe<¨IDATxÚbüÿÿ?#ÿâ¿ ØHžŠAÕ2Hˆ%÷Üc0Òœ@̈E3 ‹±ôâ‹ ö@ú?L €@ˆíºËôöÉÙgþÆ22bèÙ(ÄêÛo3$131ìhØû;‘ª €@~ùÉá¨t ;ó´ª?º¦°Bm6Ù{¡œ™¡ÖNžáÏ_†l ;H@ à†#ÐK~êÿDøØK 6m…"Äf‡2d³0ý÷´–ûÇð÷ß?†¯?q€ô  ¾ýfø÷ h,ãÿ? 1:¿y8+3Ö}­ÿóçÐî» ¿ÿüw1’øÍð÷ïºo?ÿ2CÃ… €@|}û•áÏן~üúôð†X \\œõ³Ï2ä~ùùÏCWä;ÃïßÀòß øýP2àÃ—ß {.½d`øùû7s0ýbHÖýŠX#Ñ/@›Ãåö?`bxrýô&X4Èåø¦­»ÎÀóó7K¼•Ô°Éœ@£=ä~1ü¦ŠД±á7ÃÆ£7vlvä‚Èßãôîýüýo2ÐÉ«=faør.^›aÅ›;ÏLŠhêy3 €)׌fS?[°ròNÓyÇ` úžö=æa˜¿ïþ®gÛ:zßž^yäj >°»ˆ ªÄù*›÷ÄçÏ_='_d¸ôš ßÿö?æd˜¹ûѾ—Ç—Ïj>‡¬ˆä$Ì ÄLjýßBt§ÿû_¾íãÍ©ÿÿ‹tÅÕŠ‚ M=@¡ÂL Zºè„¸|Ë‹v“PÁ¦„X01Ârß_g#€Âk1 À~#T]Õ+´IEND®B`‚mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/plus.png0000644000175000017500000000026612035130612027760 0ustar debiandebian‰PNG  IHDR à‘ pHYs  šœtIMEÜ  –ÖÜntEXtCommentCreated with GIMPW0IDATÓcd``øÏ@ ¤è?1š˜ˆ±Š‡ 06#.ãÿã&bÜĈM€`8SÀ 6e¾‹IEND®B`‚mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/expandedIcon.pgm0000644000175000017500000000147210670062437031411 0ustar debiandebianP6 # CREATOR: The GIMP's PNM Filter Version 1.0 16 16 255 i-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-žÜÇî×¾ìÒ¶éÍ­çÇ¥äœ⽔߸‹Ý²‚Ú²‚Ú²‚Ú²‚Ú²‚Ú²‚Úi-žÿÿÿi-žäÔòßËðÚÃíÕºëϲèÊ©æÅ ãÀ˜áºÞµ‡Ü²‚Ú²‚Úi-žÿÿÿÿÿÿÿÿÿi-žìáöçØóâÏñÜÇî×¾ìÒ¶éÍ­çÇ¥äœ⽔ßi-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi-žôíúïå÷êÜõäÔòßËðÚÃíÕºëϲèi-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi-žüúý÷òûñéøìáöçØóâÏñi-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi-žÿÿÿÿÿÿùöüôíúi-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi-žÿÿÿÿÿÿi-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi-ži-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/minus.pgm0000644000175000017500000000147210670062437030143 0ustar debiandebianP6 # CREATOR: The GIMP's PNM Filter Version 1.0 16 16 255 i-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-ži-žÜÇî×¾ìÒ¶éÍ­çÇ¥äœ⽔߸‹Ý²‚Ú²‚Ú²‚Ú²‚Ú²‚Ú²‚Úi-žÿÿÿi-žäÔòßËðÚÃíÕºëϲèÊ©æÅ ãÀ˜áºÞµ‡Ü²‚Ú²‚Úi-žÿÿÿÿÿÿÿÿÿi-žìáöçØóâÏñÜÇî×¾ìÒ¶éÍ­çÇ¥äœ⽔ßi-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi-žôíúïå÷êÜõäÔòßËðÚÃíÕºëϲèi-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi-žüúý÷òûñéøìáöçØóâÏñi-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi-žÿÿÿÿÿÿùöüôíúi-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi-žÿÿÿÿÿÿi-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi-ži-žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/python.pgm0000644000175000017500000000126010670062437030324 0ustar debiandebianP6 # CREATOR: The GIMP's PNM Filter Version 1.0 14 15 255 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€€€€€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€€€€ÿÿÿÿÿÿÿÿÿÿÿÿ€€€€€€€€€€€€€€ÿÿÿÿÿÿÿÿÿ€€€€€€€€€€€€ÿ€€€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€€€€ÿÿÿÿÿÿÿÿÿÿÿÿÿ€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€€ÿÿÿÿÿÿÿÿÿÿÿÿ€€€€ÿÿÿ€€ÿÿÿÿÿÿÿÿ€€€€ÿÿÿÿÿÿ€€ÿÿÿÿÿÿÿÿ€€€€€€€€ÿÿÿÿÿÿÿÿ€€€€€€€€€€€€ÿÿÿÿÿÿÿÿÿÿÿ€€€€€€€€€€€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/minus.png0000644000175000017500000000025712035130612030130 0ustar debiandebian‰PNG  IHDR à‘ pHYs  šœtIMEÜ û 8…tEXtCommentCreated with GIMPW)IDATÓcd``øÏ@ ¤è?1¦¥ˆ…€µŒèŠ)²Ž(EŒÄ„IEs µIEND®B`‚mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/folder.pgm0000644000175000017500000000120310670062437030253 0ustar debiandebianP6 # CREATOR: The GIMP's PNM Filter Version 1.0 15 13 255 ïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïïÿÿÏÿÿÏÿÿÿÿïïïïïïïïïïïïïïïïïïÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ïïïÿÿÏÿÿÏÿÿÏÿÿÏÿÿÏÿÿÏÿÿÏÿÿÏÿÿÏÿÿÏÿÿÏÿÿÏÏ`ÿÿÏÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÏÏÏ`ÿÿÏÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÏÿÿÿÏÿÿÏÏ`ÿÿÏÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÏÿÿÿÏÏÏ`ÿÿÏÿÿÿÿÿÿÿÿÿÿÿÏÿÿÿÏÿÿÿÏÿÿÏÏ`ÿÿÏÿÿÿÿÿÿÿÿÿÿÿÿÿÏÿÿÿÏÿÿÿÏÏÏ`ÿÿÏÿÿÿÿÿÿÿÏÿÿÿÏÿÿÿÏÿÿÿÏÿÏÏÏ`ÿÿÏÿÏÿÿÿÏÿÿÿÏÿÿÿÏÿÿÿÏÿÏÿÏÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ÏÏ`ïïïmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/Icons/expanded.png0000644000175000017500000000046710670062437030604 0ustar debiandebian‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÖ: û3ÄIDAT8í‘­Â0F¿&¼Nß@ æª‘“H`a¢’€GÌ`Á²–uÝEŒ-%Y†"ᘛ+Ηûׄ/èÀ0ì¨F[•#}תWÖ)¯f[0\’?í¹C”…ÑEˆÑ9¬É+9ˆ<ÆÊ4Á%ýBpMQëç“5‚ÈcÀê# .i¼|^E[„þ²’.)K-©›¡ø¬érHè´¿ÓqSム.©ä™dô¸¦ÍeWHëW .ÛË~‰LÀB%ž‘IEND®B`‚mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/__init__.py0000644000175000017500000000000010512515476027324 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/trees/TreeWithButtons.py0000644000175000017500000010340212100343450030673 0ustar debiandebianfrom tree import Tree, Node from Tkinter import Tk, Label, ALL, Menu, IntVar, StringVar, Toplevel, TclError from Pmw import Balloon from mglutil.util.callback import CallbackFunction from MolKit.molecule import Atom, Molecule from MolKit.protein import Residue, Chain ## BUGS: select a range and expand inside the range ## select 2 ranges class ColumnDescriptor: """ """ def __init__(self, name, cmd, btype='checkbutton', buttonShape='circle', buttonColors = ['white', 'green'], inherited=True, title=None, color='black', objClassHasNoButton=None, showPercent=False, buttonBalloon=None, onButtonBalloon=None, offButtonBalloon=None): self.tree = None self.canvas = None self.inherited = inherited self.title = title self.name = name self.color = 'black', #color # column color for outline and label self.showPercent = showPercent self.cmd = cmd # should be (cmd, *args, **kw) self.cbOn = None # used to specify a call back for the on button self.cbOff = None # used to specify a call back for the on button self.onOnly = False # when True we create only 1 button for OnOff if buttonBalloon is None: buttonBalloon = """left-click execute cmd on %s right click set options""" self.buttonBalloon = buttonBalloon if onButtonBalloon is None: onButtonBalloon = """left-click execute cmd on %s right click set options""" self.onButtonBalloon = onButtonBalloon if offButtonBalloon is None: offButtonBalloon = """left-click execute cmd on %s right click set options""" self.offButtonBalloon = offButtonBalloon # menu for command selection panel self.menu = None # menu for command option setting self.optMenu = None assert btype in ['checkbutton', 'button'], btype self.commandType = btype self.buttonShape = buttonShape self.buttonColors = buttonColors # list classes of objects for which this column should have no buttons if objClassHasNoButton is None: self.objClassHasNoButton = [NodeWithoutButtons] else: self.objClassHasNoButton = objClassHasNoButton def isOn(self, node): # subclass to implement decision for checkbutton value on/off # when node is first created return 0 def optMenu_cb(self, node, column, event=None, master=None, postCreationFunc=None): cmd, args, kw = self.cmd if master is None: master = self.tree.master form = cmd.showForm(posx=event.x_root, posy=event.y_root, root=master, okcancel=0, help=0, modal=0, blocking=0, postCreationFunc=postCreationFunc) return form def _getNodes(self, node, colInd): # added so that MVColumnDescriptor can override #print 'TREEWITHBUTTONS _getNodes', node return node.getObjects(colInd) def execute(self, node, colInd): #print 'ColumnDescriptor.execute', node, colInd objects = self._getNodes(node, colInd) val = node.chkbtval[colInd] cmd, args, kw = self.cmd defaultValues = cmd.getLastUsedValues() defaultValues.update( kw ) if self.commandType == 'checkbutton': if defaultValues.has_key('negate'): defaultValues['negate'] = not val elif not val: return for objs in objects: # loop over list that might contain an atom set # residue set, chain set and/or molecule set #print 'ColumnDescriptor execute GGGG', cmd, objs, args, defaultValues cmd ( *((objs,)+args), **defaultValues) class TreeWithButtons(Tree): """Each node in the tree has an object associated in the node's .object attribute. The objects are expected to have a .parent and a .children attribute describing the hierarchy.""" def __init__(self, master, root, iconsManager=None, idleRedraw=True, nodeHeight=15, headerHeight=0, treeWidth=160, **kw): Tree.__init__(self, master, root, iconsManager=iconsManager, idleRedraw=idleRedraw, nodeHeight=nodeHeight, headerHeight=headerHeight, **kw) self.objectToNode = {} # key is object, values if Node instance self.objectToNode[root.object] = root self.nbCol = 0 # number of columns of buttons self.columns = [] # list of ColumnDescriptor instance self.balloon = Balloon(master) self.colLabIds = [] self.colWidth = 17 # width of each column in pixels w = self.treeWidth = treeWidth # width of the tree part of the widget self.newTreeWidth = 0 # used to widen tree whebn labels gets long self.prevX = 0 self.prevY = 0 # draw the divider between tree and buttons canvas = self.canvas id_ = canvas.create_line( w-6, 0, w-6, 1000, fill='grey75', width=3) self.dividerCanvasId = id_ canvas.tag_bind(id_,"", self.enterDivider_cb) canvas.tag_bind(id_,"", self.leaveDivider_cb) canvas.tag_bind(id_,"", self.dividePress_cb) canvas.tag_bind(id_,"", self.divideRelease_cb) #id_ = canvas.create_line( w+1, 0, w+1, 1000, fill='grey75') #self.dividerCanvasIds.append(id_) self.crosshairTk = None self.canvas.bind("", self.leave_cb) self.circlesForOnOff = True self.lastHighligted = None self.minTreeWidth = 0 # width of buttons above tree # used to prevent divider to move to far left def enterDivider_cb(self, event): self.canvas.config(cursor='sb_h_double_arrow') def leaveDivider_cb(self, event): self.canvas.config(cursor='') def dividePress_cb(self, event): self.treeWidthOff = off = event.x_root-self.treeWidth self.canvas.bind("", self.moveDivider_cb) #self.canvas.winfo_toplevel().grab_set_global() def divideRelease_cb(self, event): #self.canvas.winfo_toplevel().grab_release() self.canvas.unbind("") self.redraw() def moveDivider_cb(self, event): tw = event.x_root-self.treeWidthOff off = tw - self.treeWidth self.setTreeWidth(max(self.minTreeWidth, event.x_root - self.treeWidthOff)) def setTreeWidth(self, width): width = min(width, self.canvas.winfo_width()) off = width-self.treeWidth self.treeWidth = width self.canvas.move(self.dividerCanvasId, off, 0) self.canvas.move('ColHeaders', off, 0) self.canvas.move('backgroundStripes', off, 0) self.canvas.move('button', off, 0) def reallyRedraw(self, force=False): Tree.reallyRedraw(self, force=force) if self.newTreeWidth > self.treeWidth: self.setTreeWidth(self.newTreeWidth) self.newTreeWidth = 0 self.redraw() def redraw(self, force=False, event=None): Tree.redraw(self, force=force) if self.crosshairTk and event: self.move_cb(event) ## CROSSHAIR def enter_cb(self, event=None): """add crosshair""" #print 'enter', event.widget Tree.enter_cb(self) canvas = self.canvas self.crosshairTk = canvas.create_line(0,0,0,0,0,0,0,0,0,0, fill='#35A8FF', width=2) canvas.bind("", self.move_cb) canvas.tag_lower(self.crosshairTk) canvas.tag_lower('backgroundStripes') self.canvas.configure(state='normal') def leave_cb(self, event=None): """destroy crosshair""" #print 'leave', event.widget #self.canvas.unbind("") #print 'deleting crosshair' self.canvas.delete(self.crosshairTk) self.crosshairTk = None self.canvas.configure(state='disabled') def move_cb(self,event): """move crosshair""" if self.crosshairTk is None: return #print 'move crosshair', event.widget canvas = self.canvas x1, y1, x2, y2 = canvas.bbox(ALL) #print 'move crosshair', x1, y1, x2, y2 x = canvas.canvasx(event.x) y = canvas.canvasy(event.y) if isinstance(event.widget, Label): x = x + event.widget.winfo_x() y = y + event.widget.winfo_y() h = 0#self.headerHeight - 10 x2 += 100000 y2 += 100000 canvas.coords( self.crosshairTk, x1, y, x2, y, x2, y2, x, y2, x, h ) # take care of higlighting on or off button circle for OnOff buttons if self.lastHighligted: canvas.itemconfig(self.lastHighligted, outline=self.lastHighligtedColor, width=1) tags = canvas.gettags('current') if len(tags): if tags[0]=='on' or tags[0]=='off': cid = int(tags[3]) self.lastHighligted = cid self.lastHighligtedColor = canvas.itemcget(cid, 'outline') canvas.itemconfig(cid, outline='blue', width=2) else: self.lastHighligted = None def redrawHeader(self, *args): canvas = self.canvas ypos = (self.firstVisibleNodeLineNum * self.nodeHeight) + \ (self.headerHeight * 0.5) dims = canvas.coords('ColHeaders') if len(dims): x, y = dims else: y = 0 #if ypos-y-5.5: # print 'MOVING HEADER', ypos-y-5.5, ypos, y canvas.move('ColHeaders', 0, ypos-y-5.5) #canvas.move('backgroundStripes', 0, ypos-y-5.5) dims = canvas.coords('dashButtons') if len(dims): x, y = dims else: y = 0 #print 'REDRAW1', x, y, ypos, 0, ypos-y canvas.move('dashButtons', 0, ypos-y) def undisplay(self): for node in self.displayedNodes: node.deleteNodeIcons() def resetDisplayedNodes(self): # delete these list to force the nodes to recreate them for node in self.displayedNodes: node.chkbtid = [] node.needsRedraw = True def addColumnDescriptor(self, columnDescr): assert isinstance(columnDescr, ColumnDescriptor) columnDescr.tree = self columnDescr.canvas = self.canvas # make titles use alternate lines #if self.nbCol%2: # columnDescr.title = '\n'+columnDescr.title #else: # columnDescr.title += '\n' self.createColHeader(columnDescr, self.nbCol) #columnDescr.setMenuEntries(columnDescr.menuEntries) self.columns.append(columnDescr) self.root.chkbtval.append(0) self.nbCol += 1 self.resetDisplayedNodes() self.redraw() def setColumnWidth(self, cw): self.colWidth = cw self.canvas.delete('backgroundStripes') self.canvas.delete('ColHeaders') for i, col in enumerate(self.columns): self.createColHeader(col, i) self.redraw() def createColHeader(self, columnDescr, number): # in this version the column headers are on same canvas as tree cw = self.colWidth x = self.treeWidth + (0.5*self.colWidth) canvas = self.canvas # add column background if number%2: _id = canvas.create_rectangle( x+number*cw-cw/2, 0, x+number*cw+cw/2, 10000, tags=('backgroundStripes',), fill='#DDDDDD', outline='#DDDDDD') # add title and icon _id = canvas.create_text( x+number*cw, 7, text=columnDescr.title, justify='center', tags=('ColHeaders',), fill=columnDescr.color, font=self.font) cb = CallbackFunction(self.rightButtonClick, columnDescr) canvas.tag_bind(_id, "", cb) self.colLabIds.append(_id) # add column header icons if columnDescr.iconfile: if columnDescr.icon is None: columnDescr.getIcon(columnDescr.iconfile) _id = canvas.create_image( x+number*cw, 19,tags=('ColHeaders',), image=columnDescr.icon) self.colLabIds.append(_id) def rightButtonClick(self, columnDescr, event): print 'right click on', columnDescr def deleteColumnDescriptor(self, columnDescr): if isinstance(columnDescr, int): columnDescr = self.columns[columnDescr] ind = columnDescr else: ind = self.columns.index(columnDescr) assert isinstance(columnDescr, ColumnDescriptor) columnDescr.tree = None columnDescr.canvas = None self.columns.remove(columnDescr) chkbtval = self.root.chkbtval self.root.chkbtval = chkbtval[:ind] + chkbtval[ind+1:] self.nbCol -= 1 self.resetDisplayedNodes() self.redraw() def insertColumnDescriptor(self, column, columnDescr): assert isinstance(columnDescr, ColumnDescriptor) columnDescr.tree = self columnDescr.canvas = tree.canvas self.columns.insert(column, columnDescr) self.root.chkbtval.insert(column, 0) self.nbCol += 1 self.resetDisplayedNodes() self.redraw() def createNodeForObject(self, object): """given an object if the corresponding Node is not yet created for its creation by expanding all its ancestors""" try: return self.objectToNode[object] except KeyError: p = object.parent ancestors = [p] while p and not self.objectToNode.get(p, None): ancestors.append(p) p = p.parent ancestors.append(p) ancestors.reverse() for p in ancestors: self.objectToNode[p].expand() return self.objectToNode[object] def manageChildren(self, node, column): # sets the checkbutton of all children to value of parent (i.e. node) if len(node.children)==0: return val = node.chkbtval[column] from MolKit.listSet import ListSet from MolKit.molecule import MolecularSystem for c in node.children: if isinstance(c.object, (ListSet, MolecularSystem)): continue c.chkbtval[column] = val if c in self.displayedNodes: c.needsRedraw = True self.manageChildren(c, column) self.redraw() class NodeWithButtons(Node): """ """ def __init__(self, object, parent, buttonType=None): Node.__init__(self, object, parent) # list of values used to emulate buttons and associated Tk ids # created in drawNodeCustomization if parent: chkbtval = [] pchkbtval = parent.chkbtval for i, c in enumerate(parent.tree().columns): if c.inherited: chkbtval.append(pchkbtval[i]) else: chkbtval.append(c.isOn(self)) self.chkbtval = chkbtval else: self.chkbtval = [] self.chkbtid = [] self.buttonType = buttonType # can be 'OnOffButtons' def __repr__(self): if hasattr(self,'name'): return self.name if hasattr(self.object,'name'): return self.object.name else: return "" def isExpandable(self): """Returns true if this node has children""" if hasattr(self.object,'children'): return len(self.getChildren()) else: return False def fitText(self, x, y, tree, canvas, text, font): tree = self.tree() labelTkid = canvas.create_text(x, y, text=text, font=font) bb = canvas.bbox(labelTkid) clength = x+bb[2]-bb[0]+10 #print 'AAAAAAAAAAAAA', text, clength, tree.treeWidth, x, bb, font if clength > tree.treeWidth: # remove characters in the center until it is short enough mid = len(text)/2 off = 1 maxOff = len(text)/2 ctext = '...' while clength > tree.treeWidth and off tree.treeWidth: # tree.newTreeWidth = bb[2] return x def drawNodeCustomization(self, x, y): """ Add things to the rigth side of the tree """ tree = self.tree() canvas = tree.canvas level = 2 col = ['gray75', 'red', 'cyan', 'green', 'yellow'] nbButtons = tree.nbCol x = tree.treeWidth # create Tk variables if needed if len(self.chkbtid)==0: nbButtons = tree.nbCol self.chkbtid = [None]*nbButtons i = 0 cw = tree.colWidth for i, val in enumerate(self.chkbtval): col = tree.columns[i] if self.object.__class__ in col.objClassHasNoButton: continue xo = x+i*cw cw2 = cw/2 midx = xo+cw2 midy = y + tree.fontSize/2 + 2 cid1 = None color = col.color width = 1 if self.buttonType=='OnOffButtons' and not col.onOnly: # overrides col.commandType and put 2 buttons for on off #uniq = '%d_%d'%(midx,midy) cid = canvas.create_oval( midx-cw2+1, midy-cw2+1, midx+1, midy+1, outline='#3D8E54', width=width, fill='#44A05E', tags=('on','button',self.nodeTkTag), ) canvas.addtag_withtag(str(cid), cid) if col.cbOn is None: cb1 = CallbackFunction(self.onOffButtonClick, i, 1) else: cb1 = CallbackFunction(col.cbOn, self, i, 1) cb2 = CallbackFunction(col.optMenu_cb, self, i) balloon = col.onButtonBalloon%(self.object.name) cid1 = canvas.create_oval( midx-1, midy-1, midx+cw2-1, midy+cw2-1, outline='#B52121', width=width, fill='#E2282D', tags=('off','button',self.nodeTkTag)) canvas.addtag_withtag(str(cid1), cid1) if col.cbOff is None: cb1_1 = CallbackFunction(self.onOffButtonClick, i, 0 ) else: cb1_1 = CallbackFunction(col.cbOff, self, i, 0) cb2_1 = None balloon1 = col.offButtonBalloon%(self.object.name) else: shape = col.buttonShape sx2 = cw/2-2 sy2 = tree.fontSize/2 fill = col.buttonColors from MolKit.listSet import ListSet from MolKit.molecule import MolecularSystem if shape=='circle': sy2 = min(sx2, sy2) if col.showPercent: fillCol = fill[0] else: fillCol = fill[val] cid = canvas.create_oval( midx-sx2, midy-sy2, midx+sx2, midy+sy2, outline=color, width=width, fill=fillCol, tags=('button',self.nodeTkTag)) if isinstance(self.object, (ListSet, MolecularSystem)): # sets we paint the button red if the next click will trigger # an undisplay and green if the next click will trigger a display val = self.chkbtval[i] if val: canvas.itemconfig(cid, fill='#AA0000') else: canvas.itemconfig(cid, fill='#00AA00') if col.showPercent and not isinstance(self.object, (ListSet, MolecularSystem)): if hasattr(self.object,col.showPercent): extent = getattr(self.object,col.showPercent)*360 if extent>0.0: #print 'YES', self.object.name, col.showPercent, extent if extent==360.: # special case full disc as sometimes # extent 360 shows nothing cid1 = canvas.create_oval( midx-sx2, midy-sy2, midx+sx2, midy+sy2, fill=fill[1], outline='', tags=('button',self.nodeTkTag)) self.chkbtval[i] = 1 else: cid1 = canvas.create_arc( midx-sx2, midy-sy2, midx+sx2, midy+sy2, extent=-extent, fill=fill[1], outline='', tags=('button',self.nodeTkTag)) self.chkbtval[i] = 0 else: # extent <= 0 self.chkbtval[i] = 0 else: self.chkbtval[i] = 0 ## ## attempt to make set display status but not working ## ## extent = 0.0 ## for objList in self.getNodes(i).values(): ## for obj in objList: ## if hasattr(obj,col.showPercent): ## for val in getattr(obj,col.showPercent): ## extent += val ## extent *= 360 ## print 'BBB', self.object, col.showPercent, extent ## if extent>0.0: ## #print 'YES', self.object.name, col.showPercent, extent ## if extent==360.: ## # special case full disc as sometimes ## # extent 360 shows nothing ## cid1 = canvas.create_oval( ## midx-sx2, midy-sy2, midx+sx2, midy+sy2, ## fill=fill[1], outline='', ## tags=('button',self.nodeTkTag)) ## self.chkbtval[i] = 1 ## else: ## cid1 = canvas.create_arc( ## midx-sx2, midy-sy2, midx+sx2, midy+sy2, ## extent=-extent, fill=fill[1], ## outline='', tags=('button',self.nodeTkTag)) ## self.chkbtval[i] = 0 ## else: ## self.chkbtval[i] = 0 elif shape=='oval': cid = canvas.create_oval( midx-dx, midy-dx, midx+dx, midy+dy, outline=color, width=width, fill=fill[val], tags=('button',self.nodeTkTag)) elif shape=='square': dx = min(sx2, sy2) cid = canvas.create_rectangle( midx-dx, midy-dx, midx+dx, midy+dy, outline=color, width=width, tags=('button',self.nodeTkTag))# fill=fill[val]) elif shape=='downTriangle': cid = canvas.create_polygon( midx-sx2, midy-sy2, midx+sx2, midy-sy2, midx, midy+sy2, midx-sx2, midy-sy2, outline=color, width=width, fill=fill[val], tags=('button',self.nodeTkTag)) elif shape=='rectangle': if col.showPercent: fillCol = fill[0] else: fillCol = fill[val] cid = canvas.create_rectangle( midx-sx2, midy-sy2, midx+sx2, midy+sy2, outline=color, width=width, fill=fillCol, tags=('button',self.nodeTkTag)) if col.showPercent and not isinstance(self.object, ListSet): if hasattr(self.object,col.showPercent): extent = getattr(self.object, col.showPercent) #print 'Redraw 1', self.object, extent if extent>0.0: cid1 = canvas.create_rectangle( midx-sx2+1, midy+sy2, midx+sx2-1, midy-sy2+2*sy2*(1.-extent), fill=fill[1], outline='', tags=('button',self.nodeTkTag)) self.chkbtval[i] = int(extent) else: self.chkbtval[i] = 0 elif shape=='diamond': hw = sx2 hh = sy2 cid = canvas.create_polygon( midx, midy-sy, midx+sx, midy, midx, midy+sy, midx-sx, midy, midx, midy-sy, fill=fill[val], width=width, outline=color, tags=('button',self.nodeTkTag)) if cid1: cb1_1 = CallbackFunction(self.buttonClick, i ) cb2_1 = CallbackFunction(col.optMenu_cb, self, i ) balloon1 = col.buttonBalloon%(self.object.full_name()) if col.cbOn is None: cb1 = CallbackFunction(self.buttonClick, i ) else: cb1 = CallbackFunction(col.cbOn, self, i, 1) if col.cbOff is None: cb2 = CallbackFunction(col.optMenu_cb, self, i ) else: cb2 = CallbackFunction(col.cbOff, self, i, 0) balloon = col.buttonBalloon%(self.object.full_name()) if cid1: canvas.tag_raise(cid1) canvas.tag_bind(cid1, "", cb1_1) if cb2_1: canvas.tag_bind(cid1, "", cb2_1) tree.balloon.tagbind(canvas, cid1, balloon1) self.canvasIDs.append(cid1) self.chkbtid[i] = cid1 canvas.tag_bind(cid, "", cb1) canvas.tag_bind(cid, "", cb2) tree.balloon.tagbind(canvas, cid, balloon) self.canvasIDs.append(cid) self.chkbtid[i] = cid nodeHeight = tree.nodeHeight ## MS 09/10 this is molecular stuff, should not be in mglutil # add secondary structure glyph molFrag = self.object if isinstance(molFrag, Residue): if hasattr(molFrag, 'secondarystructure'): ssname = molFrag.secondarystructure.name if ssname[:6]=='Strand': color = '#FFFC6D' elif ssname[:4]=='Coil': color = 'grey45' elif ssname[:5]=='Helix': color = '#FF198C' elif ssname[:4]=='Turn': color = 'blue' #tw = tree.treeWidth tw = self.nodeStartX cid = canvas.create_rectangle( tw-20, y, tw-10, y+nodeHeight, outline=color, fill=color, tags=(self.nodeTkTag,)) self.canvasIDs.append(cid) tree.balloon.tagbind(canvas, cid, ssname) cb = CallbackFunction(self.toggleResSelection, molFrag.secondarystructure.residues) canvas.tag_bind(cid, "", cb) #cid = canvas.create_text( 152, y, text=ssname, anchor='nw') # self.canvasIDs.append(cid) return x + (i*cw) ## func = tree.buttonValFunc[i] ## if func: ## func(self) def toggleResSelection(self, residues, event=None): #print 'FUGU toggleResSelection' tree = self.tree() for res in residues: node = tree.objectToNode[res] if node.isSelected: node.deselect() else: node.select(only=False) def deleteNodeIcons(self): Node.deleteNodeIcons(self) self.chkbtid = [] def set(self, column, value): tree = self.tree() col = tree.columns[column] fill = col.buttonColors val = self.chkbtval[column] #print 'AAAAAAAA SET', self, id(self.chkbtval), col.name, value, val, len(self.chkbtid) if value: if val: #tree.redraw() return val = self.chkbtval[column] = 1 else: if not val: #tree.redraw() return val = self.chkbtval[column] = 0 if len(self.chkbtid): # length==0 when node is not drawn if self.chkbtid[column] and not col.showPercent: tree.canvas.itemconfigure(self.chkbtid[column], fill=fill[val]) if col.commandType=='button' and val==1: cb = CallbackFunction(self.resetButtons, column) tree.master.after(100, cb) if col.inherited: tree.manageChildren(self, column) # MS added the redraw to force buttons with showPercent to update # a cheaper version might be possible #tree.redraw() def toggle(self, column): #print 'FUGU toggle', self, column, self.chkbtval[column] if not self.chkbtval[column]: self.set(column, 1) else: self.set(column, 0) self.tree().redraw(force=True) ## if val==0: ## val = self.chkbtval[column] = 1 ## else: ## val = self.chkbtval[column] = 0 ## if len(self.chkbtid): # length==0 when node is not drawn ## tree.canvas.itemconfigure(self.chkbtid[column], fill=fill[val]) ## if col.commandType=='button' and val==1: ## cb = CallbackFunction(self.resetButtons, column) ## tree.master.after(100, cb) ## if col.inherited: ## tree.manageChildren(self, column) def onOffButtonClick(self, column, value, event=None, val=None, execute=True): # get called for onOffButtons on left click #print 'onOffButtonClick', value, execute, value self.set(column, value) tree = self.tree() col = tree.columns[column] if execute: col.pickEvent = event #print 'executing', col, column col.execute(self, column) tree.redraw(force=True) if event: try: # sometimes this generates a TclError. Not sure why MS 09/2010 tree.move_cb(event) # to redraw crosshair except TclError: pass def buttonClick(self, column, event=None, val=None, execute=True): # get called for each checkbutton on left or right click # on right click the value is forced to 1 tree = self.tree() col = tree.columns[column] #print 'button click', column, val, self.chkbtval[column] ## if col.showPercent: ## if self.chkbtval[column]==1: ## self.set(column, 0) ## else: ## self.set(column, 1) ## else: ## if val is None: ## self.toggle(column) ## else: ## self.set(column, val) if val is None: self.toggle(column) else: self.set(column, val) if execute: col.pickEvent = event col.execute(self, column) self.updateButtons(tree) def updateButtons(self, tree): # redraw all parents to update button status n = self while n: if n.currenty: n.nodeRedraw() n = n.parent # redraw all children to update button status n = self nfound = False for n1 in tree.displayedNodes: if n1==n: nfound = True elif nfound: n1.nodeRedraw() #tree.redraw(event) def resetButtons(self, column): if self.isSelected: for n in self.tree().selectedNodes: n.chkbtval[column] = 1 n.buttonClick(column, execute=False) else: self.chkbtval[column] = 1 self.buttonClick(column, execute=False) def postCmdMenu(self, column, event=None): tree = self.tree() menu = tree.columns[column].menu menu.post(event.x_root, event.y_root) def postCmdOptMenu(self, column, event=None): tree = self.tree() menu = tree.columns[column].optMenu menu.post(event.x_root, event.y_root) class NodeWithoutButtons(NodeWithButtons): def drawNodeCustomization(self, x, y): """ Add things to the rigth side of the tree """ return 0 mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/tablemaker.py0000644000175000017500000044577511036746001026602 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ############################################################################# # # Author: Anna Omelchenko # # Copyright: M. Sanner TSRI 2003 # ############################################################################# # # $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/BasicWidgets/Tk/tablemaker.py,v 1.8 2008/07/14 21:58:25 vareille Exp $ # # $Id: tablemaker.py,v 1.8 2008/07/14 21:58:25 vareille Exp $ # """tablemaker.py module provides widgets (transfer function editor) used to edit color and opacity lookup tables. Example: root = Tkinter.Tk() def AlphaCallback(value): # value is a 2 element list. value[0]-starting index of alpha # entries in the lookup table, value[1] - an integer array containing # new alpha values pass def RGBCallback(value): # value is a 2 element list. value[0]-starting index of color # entries in the lookup table, value[1] - a 2D array containing # new RGB values t = TableManager(master=root, xmaxval=255, xminval = 0, ymaxval=4095, alphaCallback=AlphaCallback, colorCallback=ColorCallback) """ SelectPointTxt="Clicking the left mouse button on a dot selects it.\n" SetOpacityTxt = "Dragging a dot with the left mouse button modifies\nthe opacity.\n" SetColorTxt = "Left clicking or moving the circle in the area labeled\n Hue/Saturation changes the color of the selected dot.\n The red-green-blue-opacity values can be directly typed\n in the text entries.\n" AddDotShapeTxt = "Double left click on a line connecting two dots \nadds a dot to the shape.\nShift-left button click in the transfer function window\nadds a new set of four dots (a shape) to the function.\n" MoveShapeTxt= "Middle clicking and draggind a dot of a shape moves the\nshape left or right in the window.\n" DeleteDotTxt ="Dragging a dot up out of the window deletes it.\nDelete button of Edit menu can be used to delete a selected dot.\n" SplitMenuTxt ="The 'Split function' button of Edit menu allows to\nzoom in on a particular interval of values.\nThe user must enter starting and ending value points of a\nnew interval in the pop up form. This will result in\nsplitting the initial interval of values into two or three\nintervals that will appear in separate transfer function boxes.\n" ResetMenuTxt = "The 'Reset' button of Edit menu sets the lookup table to\ngrayscale-ramp color values and linear opacity values.\n" SaveTFTxt = "The 'Save TF' button of File menu allows to save current color\nand opacity values to a file.\n" SaveLUTTxt = "The 'Save LUT (.lut)' button of File menu allows to save the\nlookup table to a .lut file, which can be used later to restore\ncurrent transfer function.\n" LoadLUTTxt = "The 'Load LUT (.lut)' button loads a .lut file.\n" AddISOTxt = "An ISO value can be added by pressing 'Add new isovalue'\nbutton of Edit menu.\nIn the pop up dialog the user can specify the scalar value,\nopacity and RGB values for the new ISO dot.\nThe RGBA values of selected ISOval can be typed in the\ncorresponding entry fields.\n" DescriptionText = "Widget description:\nThe function is drawn at the top of the interface\nas a series of circles (dots) connected by line segments.\nThe X location of each dot indicates the data value,\nthe Y location indicates the opacity of that data value.\n" + SelectPointTxt + SetOpacityTxt + SetColorTxt + AddDotShapeTxt + MoveShapeTxt + DeleteDotTxt + LoadLUTTxt+ SaveLUTTxt+ SaveTFTxt + SplitMenuTxt+ ResetMenuTxt + AddISOTxt import Tkinter import numpy.oldnumeric as Numeric import Pmw import math #from DejaVu.EventHandler import CallbackFunctions from mglutil.gui.BasicWidgets.Tk.eventHandler import CallbackFunctions #from DejaVu import colorTool from mglutil.util import colorUtil import os import tkFileDialog import cPickle from mglutil.util.packageFilePath import findFilePath from mglutil.util.colorUtil import ToRGB, ToHSV #SELECTED_COLOR = "green" SELECTED_COLOR = "gray68" UNSELECTED_COLOR = '#CCCCCC' _PI = math.pi class TableManager: """Class for manipulating canvas widgets(lookup table), colormap widget and entry fields on the input form""" def __init__(self, viewer=None, master=None, xminval=0, xmaxval=255, ymaxval=4095, alphaCallback = None, colorCallback = None, iconpath=None): self.viewer = viewer self.xminval = int(xminval) self.xmaxval = int(xmaxval) self.ymaxval = int(ymaxval) self.ymaxval_limit = int(ymaxval) self.master = master self.lutcallbacks = {} balloon = Pmw.Balloon(self.master) #place menu buttons menuBar = Tkinter.Frame(self.master, relief = Tkinter.RAISED, borderwidth=2) menuBar.pack(side = Tkinter.TOP, fill=Tkinter.X) fileBtn = Tkinter.Menubutton(menuBar, text="File", underline=0) fileBtn.pack(side=Tkinter.LEFT, padx ="2m") fileBtn.menu = Tkinter.Menu(fileBtn) fileBtn.menu.add_command(label="Load LUT (.lut)", command=self.ask_open_file_cb) fileBtn.menu.add_command(label="Save LUT (.lut)", command=self.saveLUT) fileBtn.menu.add_command(label='Save TF (.clu)', command=self.saveTF) fileBtn['menu'] = fileBtn.menu editBtn = Tkinter.Menubutton(menuBar, text="Edit", underline=0) editBtn.pack(side=Tkinter.LEFT, padx ="2m") editBtn.menu = Tkinter.Menu(editBtn) editBtn.menu.add_command(label="Reset", command=self.reset) editBtn.menu.add_command(label="Split function", command=self.show_splitDialog) editBtn.menu.add_command(label="Merge function", command=self.merge_function, state="disabled") editBtn.menu.drawchoices= Tkinter.Menu(editBtn.menu) editBtn.menu.add_cascade(label="Draw function...", menu=editBtn.menu.drawchoices) editBtn.menu.drawchoices.add_command(label ="ramp", command=(lambda self=self, num=0: self.draw_ramp(num))) editBtn.menu.drawchoices.add_command(label ="reversed ramp", command=(lambda self=self, num=1: self.draw_ramp(num))) editBtn.menu.add_command(label="Flip function", command = self.flip_function_cb) editBtn.menu.sizechoices= Tkinter.Menu(editBtn.menu) editBtn.menu.add_command(label="Set new opacity range", command=self.change_yaxis) editBtn.menu.add_command(label="Add new ISO value", command=self.addIsoVal_cb) editBtn.menu.add_cascade(label="Set size of ...", menu=editBtn.menu.sizechoices) editBtn.menu.sizechoices.add_command(label ="dots", command=(lambda self=self, st="dot": self.set_dotsize_cb(st))) editBtn.menu.sizechoices.add_command(label ="isovalue dots", command=(lambda self=self, st="isodot": self.set_dotsize_cb(st))) editBtn.menu.add_command(label="Delete selected dot", command=self.del_selected_dot) #editBtn.menu.options = Tkinter.Menu(editBtn.menu) #editBtn.menu.add_cascade(label="Options...", # menu=editBtn.menu.options) self.continVar = Tkinter.IntVar() self.continVar.set(1) editBtn.menu.add_checkbutton(label="Continuous update", var = self.continVar, command=self.set_continuous) editBtn['menu'] = editBtn.menu self.editBtn = editBtn self.applylutBtn = Tkinter.Button(menuBar, text = "Apply LUT", command=self.applylut_cb, relief=Tkinter.FLAT, borderwidth=1, state="disabled") self.applylutBtn.pack(side=Tkinter.LEFT, padx='2m') balloon.bind(self.applylutBtn, "Applies LUT (non continuous mode)") helpBtn = Tkinter.Menubutton(menuBar, text="Help", underline=0) helpBtn.pack(side=Tkinter.RIGHT, padx ="2m") helpBtn.menu = Tkinter.Menu(helpBtn) helpBtn.menu.add_command(label="Widget description", command = (lambda self=self, st="description": self.show_help_txt(st))) helpBtn.menu.choices = Tkinter.Menu(helpBtn.menu) helpBtn.menu.add_cascade(label="How to ...", menu=helpBtn.menu.choices) helpBtn.menu.choices.add_command(label="Add dot/shape", command=(lambda self=self, st="addDotShape":self.show_help_txt(st))) helpBtn.menu.choices.add_command(label="Delete dot", command=(lambda self=self, st="deleteDot": self.show_help_txt(st))) helpBtn.menu.choices.add_command(label="Move shape", command=(lambda self=self, st="moveShape": self.show_help_txt(st))) helpBtn.menu.choices.add_command(label="Set color", command=(lambda self=self, st="setColor": self.show_help_txt(st))) helpBtn['menu'] = helpBtn.menu font = self.font = '-*-Helvetica-Bold-R-Normal-*-*-160-*-*-*-*-*-*' self.set_font(menuBar, font) self.intervals_list = [(self.xminval, self.xmaxval),] self.parent_interval = (self.xminval, self.xmaxval) self.create_splitDialog() #place Lookup Table editor on the form self.f1 = Tkinter.Frame(self.master) self.f1.pack(side=Tkinter.TOP) lut = LUT(self.f1, xmaxval=self.xmaxval, xminval=xminval, grid_row=1, num_of_entries = self.xmaxval+1, ymaxval=ymaxval) lut.canvas.bind('', self.selected) self.canvas_list = [lut.canvas,] lut.canvas.itemconfigure('outline', outline='blue') self.with_focus = lut self.lut_list = [lut,] #place entries for ISO value info isoFrame = Tkinter.Frame(self.master) isoFrame.pack(side=Tkinter.TOP) self.place_ISOentries(isoFrame) self.isoVal = Tkinter.StringVar() self.isoA = Tkinter.StringVar() self.isoR = Tkinter.StringVar() self.isoG = Tkinter.StringVar() self.isoB = Tkinter.StringVar() self.isoValDialog = None #place color editor on the form f = Tkinter.Frame(self.master) f.pack(side=Tkinter.TOP) colormapFrame = Tkinter.Frame(f) colormapFrame.pack(side=Tkinter.LEFT,anchor=Tkinter.NW)#,padx=20) if not iconpath: iconpath = 'mglutil.gui.BasicWidgets.Tk' file = findFilePath('icons', iconpath) file = os.path.join(file,'colors.gif') self.colormap = Colormap(colormapFrame, file=file) self.colormap.callbacks = [self.set_hsv] #place a group of entry fields on the form that display #alpha and scalar values entrFrame = Tkinter.Frame(f, takefocus=0) entrFrame.pack(side=Tkinter.LEFT, anchor=Tkinter.NW)#,padx=10) self.place_TFentries(entrFrame) self.lutcallbacks['entries'] = self.entries_update self.lutcallbacks['rgbmap'] = self.colormap.show_color if alphaCallback: self.lutcallbacks['setalpha'] = alphaCallback else: self.lutcallbacks['setalpha'] = self.lut_alpha_cb if colorCallback : self.lutcallbacks['setcolor'] = colorCallback else : self.lutcallbacks['setcolor'] = self.lut_color_cb lut.setCallbacks(self.lutcallbacks) self.data = [] #data saved to Undo splitting intervals def set_font(self, wid, newfont): try: wid.config(font=newfont) except : pass if len(wid.children)==0: return for item in wid.children.values(): self.set_font(item, newfont) def create_splitDialog(self): """Creates 'Split interval' dialog used for obtaining interval split point values from the user.""" self.splitDialog = Pmw.Dialog(self.master, buttons=('OK','Cancel'), defaultbutton='OK', title='Split interval dialog', command=self.execute) self.splitDialog.withdraw() Tkinter.Label(self.splitDialog.interior(), text = 'Enter min and max values of new interval\n' '(length of the resulting intervals \n' 'must be greater or equal to 50)', font=('verdana',12), anchor=Tkinter.W).pack(expand = 1, fill = 'both', padx = 4, pady = 4) self.entry_maxval = int(self.xmaxval) self.entry_minval = int(self.xminval) self.min_val = Pmw.EntryField(self.splitDialog.interior(), labelpos = 'w', value = '%d'%(self.xminval), label_text = 'Minval-int:', validate = self.validate_minval, modifiedcommand = self.min_val_changed) self.max_val = Pmw.EntryField(self.splitDialog.interior(), labelpos = 'w', value = '%d'%(self.xmaxval), label_text = 'Maxval-int:', validate = self.validate_maxval) self.min_val.pack(fill='x', expand=1, padx=10, pady=8) self.max_val.pack(fill='x', expand=1, padx=10, pady=8) Pmw.alignlabels((self.min_val, self.max_val)) def validate_minval(self, text): """Validate minval entry of the 'Split interval' dialog.""" if text in ('', '-', '+'): return Pmw.PARTIAL try: value = int(text) for i in self.intervals_list: if value >= i[0]: self.parent_interval = i if value < 0: return Pmw.ERROR if value != self.parent_interval[0]: if value < self.parent_interval[0]+49: return Pmw.PARTIAL if value > self.parent_interval[1]-49: return Pmw.PARTIAL self.entry_minval=value return Pmw.OK except ValueError: return Pmw.ERROR def min_val_changed(self): """Called when minval entry of the 'Split interval' dialog is changed. """ if self.min_val.valid(): self.max_val.setentry(str(self.parent_interval[1])) def validate_maxval(self, text): """Validate maxval entry of the 'Split interval' dialog.""" for i in self.intervals_list: if self.entry_minval >= i[0]: self.parent_interval = i if text in ('', '-', '+'): return Pmw.PARTIAL try: value = int(text) if value > self.parent_interval[1]: return Pmw.ERROR if value < self.entry_minval+49: return Pmw.PARTIAL if value != self.parent_interval[1]: if value > self.parent_interval[1]-49: return Pmw.ERROR self.entry_maxval=value return Pmw.OK except ValueError: return Pmw.ERROR def execute(self, result): """Called when 'OK' or 'Cancel' button of the 'Split dialog' is pressed. """ if result == 'OK': entry_minval = int(self.min_val.get()) entry_maxval = int(self.max_val.get()) d1 = entry_minval-self.parent_interval[0] d2 = entry_maxval - entry_minval d3 = self.parent_interval[1] - entry_maxval if entry_minval == self.parent_interval[0] and \ entry_maxval == self.parent_interval[1]: print "interval (%d,%d) exists" % (entry_minval, entry_maxval) self.splitDialog.deactivate(result) return elif d2< 49: print "Error: in 'Split dialog' (maxval-minval) must be greater or equal to 50 ; %d, %d" % (entry_maxval, entry_minval) return elif d1 != 0 and d1< 49: print "Error: in 'Split dialog' length of the resulting intervals must be greater or equal to 50(%d-%d < 50)"% (entry_minval, self.parent_interval[0]) return elif d3 != 0 and d3 < 49: print "error: in 'Split dialog' length of the resulting intervals must be greater or equal to 50(%d-%d < 50)"% (self.parent_interval[1] ,entry_maxval) return else: #print "splitting" self.execute_split(entry_minval, entry_maxval) #self.split_cb(entry_minval, entry_maxval, split=1) self.splitDialog.deactivate(result) def execute_split(self, entry_minval, entry_maxval,split=1): self.split_cb(entry_minval, entry_maxval, split=split) def show_splitDialog(self): """Activates the 'Split interval' dialog""" self.min_val.setentry(self.intervals_list[0][0]) self.max_val.setentry(self.intervals_list[0][1]) self.splitDialog.activate() def lut_color_cb(self, value): """Modifies the color table entries for given interval of data values. value is a list: value[0] - starting index, value[1] - an array of RGB values. Each entry is in range 0.0 ... 1.0""" pass def lut_alpha_cb(self, value): """Modifies the alpha(opacity) table entries for given interval of data values. value is a list: value[0] - starting index, value[1] - an integer array containing new alpha values. Each entry is in range 0...4095.""" pass def change_yaxis(self): dialog = Pmw.CounterDialog(self.master, label_text = "Enter new Y axis max value", counter_labelpos='n', counter_datatype='numeric', entryfield_value = self.ymaxval, entryfield_validate={'validator':'numeric', 'min':0, 'max':self.ymaxval_limit}, buttons = ("OK", "Cancel"), defaultbutton = "OK", title="New Opacity Range(y_axis)") dialog. tkraise() result = dialog.activate() if result == "OK": new_y = int(dialog.get()) #print "new_y:", new_y if new_y != self.ymaxval: for lut in self.lut_list: lut.update_yaxis(new_y) self.entry_y.configure(validate= {'validator':'integer', 'min':0,'max': new_y}) self.ymaxval = new_y def place_ISOentries(self, f): """Place text entries for opacity, color and scalar values of ISO points on the input form.""" font = '-*-Helvetica-Bold-R-Normal-*-*-160-*-*-*-*-*-*' ew = 4 xminval=self.with_focus.xminval xmaxval=self.with_focus.xmaxval self.entry_isoVal = Pmw.EntryField(f, labelpos = 'w', entry_font = font, entry_width = ew+1, label_text = 'ISO value: (None)', label_font = font, value = str(xminval), validate={'validator':'integer', 'min': xminval, 'max': xmaxval}, command=self.iso_value_set) self.entry_isoY = Pmw.EntryField(f, labelpos = 'w', label_text = 'A', entry_width = ew+1, value = '0', entry_font = font, label_font = font, validate={'validator':'integer', 'min':0, 'max':self.ymaxval}, command=self.iso_alpha_set) self.entry_isoR = Pmw.EntryField(f, labelpos = 'w', label_text = 'R', entry_width = ew, value = '1.0', entry_font = font, label_font = font, validate={'validator':'real', 'min':0, 'max':1.0}, command=self.iso_color_set) self.entry_isoG = Pmw.EntryField(f, labelpos = 'w', label_text = 'G', entry_width = ew, value = '1.0', entry_font = font, label_font = font, validate={'validator':'real', 'min':0, 'max':1.0}, command=self.iso_color_set) self.entry_isoB = Pmw.EntryField(f, labelpos = 'w', label_text = 'B', entry_width = ew, value = '1.0', entry_font = font, label_font = font, validate={'validator':'real', 'min':0, 'max':1.0}, command=self.iso_color_set) entries = [self.entry_isoVal, self.entry_isoY, self.entry_isoR, self.entry_isoG, self.entry_isoB] i = 0 for entry in entries: entry.grid(row=0, column=i,sticky='w') i = i+1 ## Tkinter.Button(f, text='Add new', command=self.addIsoVal_cb, ## takefocus=0, font=font).grid(row=0, column=i, ## sticky='w') def iso_color_set(self): """Callback for ISO color text entries. Called when the entry text is chaneged. """ rgb = (float(self.entry_isoR.get()), float(self.entry_isoG.get()), float(self.entry_isoB.get())) self.with_focus.set_ISOcolor(rgb) hsv = ToHSV(rgb) self.colormap.show_color(hsv) def iso_alpha_set(self): """Callback for ISO alpha(opacity) text entry. Called when the entry text is chaneged. """ alpha_val = int(self.entry_isoY.get()) self.with_focus.moveIsoVal_alpha(alpha_val) def iso_value_set(self): """Callback for ISO scalar value text entry. Called when the entry text is chaneged. """ val = int(self.entry_isoVal.get()) self.with_focus.moveIsoVal_value(val) def addIsoVal_cb(self): """Callback function of 'Add new' button. Creates a dialog for entering RGBA values of a new ISO point. """ font = '-*-Helvetica-Bold-R-Normal-*-*-160-*-*-*-*-*-*' dialog = Pmw.Dialog(self.master, buttons=('OK','Cancel'), defaultbutton='OK', title='New ISOval dialog', command=self.addIsoVal) #dialog.withdraw() ew = 7 root =dialog.interior() Pmw.EntryField(root, labelpos = 'w', entry_width = ew, entry_textvariable = self.isoVal, label_text = 'ISO val:', #label_font = font, entry_font = font, validate={'validator':'integer', 'min':0, 'max':self.xmaxval}, value = 0).pack(side=Tkinter.TOP) Pmw.EntryField(root, labelpos = 'w', entry_width = ew, value = '0', #entry_font = font, label_font = font, entry_textvariable = self.isoA, label_text = 'Alpha:', validate={'validator':'integer', 'min':0, 'max':self.ymaxval}).pack(side=Tkinter.TOP) Pmw.EntryField(root, labelpos = 'w', entry_width = ew, value = '1.0', #entry_font = font, label_font = font, entry_textvariable = self.isoR, label_text = 'Red:', validate={'validator':'real', 'min':0, 'max':1.0}).pack(side=Tkinter.TOP) Pmw.EntryField(root, labelpos = 'w', entry_width = ew, value = '1.0', #entry_font = font, label_font = font, entry_textvariable = self.isoG, label_text = 'Green:', validate={'validator':'real', 'min':0, 'max':1.0}).pack(side=Tkinter.TOP) Pmw.EntryField(root, labelpos = 'w', entry_width = ew, value = '1.0', #entry_font = font, label_font = font, entry_textvariable = self.isoB, label_text = 'Blue:', validate={'validator':'real', 'min':0, 'max':1.0}).pack(side=Tkinter.TOP) self.isoValDialog = dialog dialog.activate() def addIsoVal(self, val): """Adds an ISO value to the transfer function editor (based on the users input in isoValDialog)""" if val == "OK": isoVal = int(self.isoVal.get()) isoA = int(self.isoA.get()) isoRGB = ( float(self.isoR.get()), float(self.isoG.get()), float(self.isoB.get()) ) i = 0 ind = 0 num_isovals = 0 for lut in self.lut_list: if isoVal in range(lut.xminval, lut.xmaxval+1): #self.with_focus = lut ind = i i = i + 1 num_isovals = num_isovals + len(lut.isoVals) lut = self.lut_list[ind] self.make_selected(lut.canvas) lut.drawIsoVal(isoVal, isoA, isoRGB) if num_isovals == 0: self.entry_isoVal.configure(label_text = 'ISO value:') self.isoValDialog.deactivate() def rmIsoVal_cb(self): self.with_focus.removeIsoVal() num_isovals = 0 for lut in self.lut_list: num_isovals = num_isovals + len(lut.isoVals) if num_isovals == 0: self.entry_isoVal.configure(label_text = 'ISO value (None):') def place_TFentries(self, f): """Place RGBA textentries of the transfer function points on the input form.""" font = '-*-Helvetica-Bold-R-Normal-*-*-160-*-*-*-*-*-*' ew = 10 self.entry_y = Pmw.EntryField(f, labelpos = 'w', label_text = 'Alpha', entry_width = ew, value = '0', entry_font = font, label_font = font, validate={'validator':'integer', 'min':0, 'max':self.ymaxval}, command=self.entry_alpha_set) self.entry_R = Pmw.EntryField(f, labelpos = 'w', label_text = 'Red', entry_width = ew, value = '1.0', entry_font = font, label_font = font, validate={'validator':'real', 'min':0, 'max':1.0}, command=self.entry_color_set) self.entry_G = Pmw.EntryField(f, labelpos = 'w', label_text = 'Green', entry_width = ew, value = '1.0', entry_font = font, label_font = font, validate={'validator':'real', 'min':0, 'max':1.0}, command=self.entry_color_set) self.entry_B = Pmw.EntryField(f, labelpos = 'w', label_text = 'Blue', entry_width = ew, value = '1.0', entry_font = font, label_font = font, validate={'validator':'real', 'min':0, 'max':1.0}, command=self.entry_color_set) self.entry_x1 = Pmw.EntryField(f, labelpos = 'w', entry_width = ew, entry_font = font, label_text = 'Scalar', label_font = font, value = '0', validate={'validator':'integer', 'min':0, 'max':self.xmaxval}, command = self.entry_value_set) self.entry_x2=Pmw.EntryField(f, labelpos = 'w', entry_width = ew, entry_font = font, label_text = 'Scalar', label_font = font, value = '0') entries = [self.entry_y, self.entry_R, self.entry_G, self.entry_B, self.entry_x1, self.entry_x2] i = 1 for entry in entries: entry.grid(column=0, row = i, sticky = 'NSEW', pady=4, padx=20) i = i+1 Pmw.alignlabels(entries) def entry_alpha_set(self): """Callback function of 'Alpha' text entry. Sets typed in alpha value and moves the dot.""" alpha = int(self.entry_y.get()) self.with_focus.move_dot_alpha(alpha) def entry_value_set(self): """Callback function of 'Scalar' text entry. Sets typed in scalar value and moves the dot.""" try: val = int(self.entry_x1.get()) except ValueError: self.entry_x1.cget("invalidcommand")() self.entry_x1.clear() return res = self.with_focus.check_scalarval(val) if not res: self.entry_x1.cget("invalidcommand")() self.entry_x1.clear() else: self.with_focus.move_dot_value(val) def entry_color_set(self): """Callback function of 'Red', 'Green' and 'Blue' text entries. Sets typed in color value to selected scalar value.""" rgb = (float(self.entry_R.get()), float(self.entry_G.get()), float(self.entry_B.get())) hsv = ToHSV(rgb) self.with_focus.set_red_green_blue(rgb) self.colormap.show_color(hsv) def selected(self, event): """Activates selected canvas widget.""" curr_widget = event.widget self.make_selected(curr_widget) def make_selected(self, curr_widget): if curr_widget == self.with_focus.canvas: return curr_widget.itemconfigure('outline', outline='blue') self.with_focus.canvas.itemconfigure('outline', outline='') ind = self.canvas_list.index(curr_widget) i = 0 for lut in self.lut_list: if i == ind: lut.bind_tags() else: lut.unbind_tags() i=i+1 self.with_focus = self.lut_list[ind] def split_cb(self, entry_minval, entry_maxval, split=1): """Executing command of the 'Split Interval Dialog'. Determines new intervals of values. Destroys canvas widget representing the original interval. Calls a function creating canvas widgets for the new intervals.""" parent_interval = self.parent_interval try: ind = self.intervals_list.index(parent_interval) except ValueError: print 'ValueError: interval',parent_interval,'is not in self.intervals_list' return if entry_minval == parent_interval[0]: intervals = [(entry_minval, entry_maxval), (entry_maxval+1, parent_interval[1])] curr_interval = ind elif entry_maxval == parent_interval[1]: intervals = [(parent_interval[0], entry_minval-1), (entry_minval, entry_maxval)] curr_interval = ind+1 else: intervals = [(parent_interval[0], entry_minval-1), (entry_minval, entry_maxval), (entry_maxval+1, parent_interval[1])] curr_interval = ind+1 self.intervals_list.pop(ind) self.with_focus.canvas.itemconfigure('outline', outline='') self.canvas_list[ind].destroy() self.canvas_list.pop(ind) old_lut = self.lut_list.pop(ind) #print "ind :", ind i = ind for interval in intervals: self.intervals_list.insert(i, interval) lut = LUT(self.f1, xminval=interval[0], xmaxval=interval[1], ymaxval=self.ymaxval, grid_row=i+1, num_of_entries=self.xmaxval+1, initdraw = 0) lut.canvas.bind('', self.selected) self.lut_list.insert(i, lut) self.canvas_list.insert(i, lut.canvas) i = i + 1 lut.setCallbacks(self.lutcallbacks) no_intervals = len(self.intervals_list) if i < no_intervals: for n in range(i, no_intervals): self.canvas_list[n].grid(row=n, sticky=W) self.canvas_list[curr_interval].itemconfigure('outline', outline='blue') self.with_focus = self.lut_list[curr_interval] i = 0 for interval in intervals: self.split_function(old_lut, interval, ind+i) i = i + 1 old_lut = None self.editBtn.menu.entryconfigure("Merge function", state='normal') def entries_update(self,**values): """Updates RGBA entries on the input form.""" for k in values.keys(): if k == 'val_x1': self.entry_x1.setentry(str(values[k])) elif k == 'val_x2': self.entry_x2.setentry(str(values[k])) elif k == 'val_y': self.entry_y.setentry(str(values[k])) elif k == 'val_r': self.entry_R.setentry(str(values[k])) elif k == 'val_g': self.entry_G.setentry(str(values[k])) elif k == 'val_b': self.entry_B.setentry(str(values[k])) elif k == 'iso_val': self.entry_isoVal.setentry(str(values[k])) elif k == 'iso_y': self.entry_isoY.setentry(str(values[k])) elif k == 'iso_rgb': self.entry_isoR.setentry(str(values[k][0])) self.entry_isoG.setentry(str(values[k][1])) self.entry_isoB.setentry(str(values[k][2])) def set_hsv(self, hsv): """Callback function of the Colormap widget. Sets hue, saturation and value to selected scalar value.""" self.with_focus.set_hue_satur_value(hsv) def split_function(self, old_lut, interval, new_ind): """Find values, points, alphas of a resulting interval after interval splitting.""" lut = self.lut_list[new_ind] max_val = interval[1] min_val = interval[0] ## print 'split_function: min_val =',min_val,'max_val =', max_val #indexes of min_val and max_val in alpha and color arrays min_arrind = min_val - old_lut.xminval max_arrind = max_val - old_lut.xminval new_values = [] for val in old_lut.values: if val > min_val and val < max_val: new_values.append(val) elif val >= max_val: next_max_val = val break ## print "new_values1 =", new_values sclx = lut.sclx left = lut.left right = lut.right bott = lut.bott if len(new_values) != 0: min_ind = old_lut.values.index(new_values[0]) max_ind = old_lut.values.index(new_values[-1]) new_shapes = [] for s in old_lut.shapes: if s >= min_ind and s <= max_ind: new_shapes.append(s) ## print "new_shapes1=", new_shapes new_points = [] i = min_ind for val in new_values: new_points.append(((val-min_val)*sclx+left, old_lut.points[i][1])) i = i + 1 if not(min_ind in old_lut.shapes and min_ind-1 in old_lut.shapes): Y = bott-old_lut.scly*old_lut.alpha_arr[min_arrind] new_points.insert(0, (left,Y)) new_values.insert(0, min_val) min_ind = min_ind - 1 new_shapes.insert(0, min_ind) if not(max_ind in old_lut.shapes and max_ind+1 in old_lut.shapes): Y = bott-old_lut.scly*old_lut.alpha_arr[max_arrind] new_points.append((right, Y)) new_values.append(max_val) max_ind = max_ind + 1 new_shapes.append(max_ind) new_values.insert(0, min_val) new_values.append(max_val) new_points.insert(0, (left, bott)) new_points.append((right, bott)) min_ind = min_ind - 1 max_ind = max_ind + 1 new_shapes.insert(0, min_ind) new_shapes.append(max_ind) ## print "new_values2 =", new_values ## print "min_ind=", min_ind ## print "new_shapes2 =", new_shapes new_shapes = map(lambda x, y=min_ind: x-y, new_shapes) ## print "new_shapes3 =", new_shapes else: max_ind = old_lut.values.index(next_max_val) min_ind = max_ind-1 if min_ind in old_lut.shapes and max_ind in old_lut.shapes: new_values = [min_val, min_val, max_val, max_val] new_points = [(left,bott), (left,bott), (right,bott), (right,bott)] new_shapes = [0,1,2,3] ## return else: new_values = [min_val, min_val, max_val, max_val] Y1 = bott-old_lut.scly*old_lut.alpha_arr[min_arrind] Y2 = bott-old_lut.scly*old_lut.alpha_arr[max_arrind] new_points = [(left,bott), (left,Y1), (right,Y2), (right,bott)] new_shapes = [0,1,2,3] v_len = len(new_values) if v_len == 4: if new_values[2] - new_values[1] <= 1: new_values = [min_val, min_val, max_val, max_val] new_points = [(left,bott), (left,bott), (right,bott), (right,bott)] new_shapes = [0,1,2,3] ## return else: new_points.insert(2, (new_points[1][0]+(new_points[2][0]-new_points[1][0])/2, new_points[1][1]+(new_points[2][1]-new_points[1][1])/2)) new_values.insert(2, int(round((new_points[2][0]-left)/sclx))+min_val ) new_shapes = [0,1,3,4] else: if new_shapes[-2]-new_shapes[-3] == 1: if new_values[-2]-new_values[-3] <= 1: new_points.pop(-2) new_points.pop(-2) new_values.pop(-2) new_values.pop(-2) new_shapes.pop(-2) new_shapes.pop(-2) else: new_points.insert(v_len-2, (new_points[-3][0]+ (new_points[-2][0]-new_points[-3][0])/2, new_points[-3][1]+ (new_points[-2][1]-new_points[-3][1])/2)) new_values.insert(v_len-2, int(round((new_points[-3][0]-left)/sclx))+min_val) new_shapes[-2] = new_shapes[-2]+1 new_shapes[-1] = new_shapes[-1]+1 if new_shapes[2]-new_shapes[1] == 1: if new_values[2]-new_values[1] <= 1: new_points.pop(1) new_points.pop(1) new_values.pop(1) new_values.pop(1) new_shapes.pop(1) new_shapes.pop(1) new_shapes = map(lambda x: x-2, new_shapes) else: new_points.insert(2, (new_points[1][0]+(new_points[2][0]-new_points[1][0])/2, new_points[1][1]+(new_points[2][1]-new_points[1][1])/2)) new_values.insert(2, int(round((new_points[2][0]-left)/sclx))+min_val ) for i in range(2, len(new_shapes)): new_shapes[i] = new_shapes[i]+1 lut.shapes = new_shapes lut.values = new_values lut.points = new_points lut.alpha_arr[:] = \ old_lut.alpha_arr[min_arrind:max_arrind+1] lut.color_arr[:] = \ old_lut.color_arr[min_arrind:max_arrind+1] lut.alpha_arr[:] = \ old_lut.alpha_arr[min_arrind:max_arrind+1] ## print 'new_interval:', interval ## print 'old_shapes:', old_lut.shapes ## print 'old_points:', old_lut.points ## print 'old_values:', old_lut.values ## print 'old_alphas:', old_lut.alpha_arr ## print '**********' ## print 'new_shapes:', lut.shapes ## print 'new_points:', lut.points ## print 'new_values:', lut.values ## print 'new_alphas:', lut.alpha_arr lut.isoVals= [] if len(old_lut.isoVals): for iso_val in old_lut.isoVals: v = iso_val['val'] if v >= lut.xminval and v <= lut.xmaxval: lut.isoVals.append(iso_val) lut.redraw() def ask_save_file(self, filetypes, title): """pop up tkFileDialog""" file = tkFileDialog.asksaveasfilename(filetypes=filetypes, title=title) return file def saveLUT_old(self, file = None): """saves lookup table in .lut file that can be used to restore current transfer function """ if not file: file = self.ask_save_file([("LUT Files","*.lut")], 'Save LUT') if file: of = open(file, 'w') cPickle.dump(self.intervals_list, of) for lut in self.lut_list: data = [lut.points, lut.shapes, lut.color_arr] cPickle.dump(data, of) of.close() def saveLUT(self, file=None): """saves lookup table in .lut file that can be used to restore current transfer function """ if not file: file = self.ask_save_file([("LUT Files","*.lut")], 'Save LUT') of = open(file, 'w') of.write("Transfer function\n") of.write("Maxalpha %d\n" % self.ymaxval) intervals = self.intervals_list of.write("NumIntervals %d\n" % len(intervals) ) intervals_str = "Intervals" for i in intervals: intervals_str = intervals_str+" %d %d"%(i[0], i[1]) intervals_str = intervals_str+"\n" of.write(intervals_str) numbers = "DataSizes" for lut in self.lut_list: numbers = numbers+" %d %d %d"%( len(lut.shapes), len(lut.values), len(lut.color_arr)*3) #print "shapes:", lut.shapes numbers = numbers+"\n" #print "numbers: ", numbers of.write(numbers) of.write("End header\n") import struct for lut in self.lut_list: fmt_shapes = ">%di"%len(lut.shapes) fmt_colors = ">%df"% (len(lut.color_arr)*3 ,) fmt_values = ">%di"%len(lut.values) alpha_inds = map(lambda x: x-lut.xminval, lut.values) alphas = Numeric.take(lut.alpha_arr, alpha_inds) #print fmt_values, fmt_shapes, fmt_colors of.write(apply(struct.pack, (fmt_shapes,)+tuple(lut.shapes))) of.write(apply(struct.pack, (fmt_values,)+tuple(lut.values))) of.write(apply(struct.pack, (fmt_values,)+tuple(alphas))) of.write( apply(struct.pack, (fmt_colors,)+tuple(lut.color_arr.ravel())) ) of.close() def load_file(self, file): from string import split, atoi of = open(file, 'r') line = split(of.readline()) warning = "Warning: wrong file format. Could not read file %s" %(file,) if len(line): if line[0] != "Transfer": of.close() if self.load_file_old(file): return else: print warning return else: of.close() print warning return ymaxval = 0 while(1): line = of.readline() line = split(line) if len(line): if line[0] == "End": break else: if line[0] == "NumIntervals": nintervals = atoi(line[1]) elif line[0] == "Intervals": intervals_str= line[1:] elif line[0] == "DataSizes": sizes_str = line[1:] elif line[0] == "Maxalpha": ymaxval = atoi(line[1]) intervals = [] sizes = [] for n in range(nintervals): intervals.append( (atoi(intervals_str[n*2]), atoi(intervals_str[n*2+1]) )) sizes.append( (atoi(sizes_str[n*3]), atoi(sizes_str[n*3+1]), atoi(sizes_str[n*3+2])) ) #print "nintervals: ", nintervals #print "intervals: ", intervals #print "sizes: ", sizes data = [] xmaxval = intervals[nintervals-1][1] if xmaxval != self.xmaxval: if self.viewer.hasGui: text = "WARNING: number of LUT entries in\n%s\n is %d,\n current number of LUT entries is %d.\nLoad new LUT?" %(file,xmaxval+1,self.xmaxval+1) dialog = Pmw.MessageDialog(self.master, buttons=('OK','Cancel'), defaultbutton='OK', title='Load New LUT', message_text=text) result=dialog.activate() if result=='Cancel': of.close() return else: self.xmaxval = xmaxval else: print "WARNING: number of LUT entries in %s is %d, current number of LUT entries is %d." % (file, xmaxval+1, self.xmaxval+1) shapes = [] values = [] alphas = [] colors = [] from struct import unpack, calcsize for n in range(nintervals): fmt_shapes = ">%di"%sizes[n][0] fmt_values = ">%di"%sizes[n][1] fmt_colors = ">%df"%sizes[n][2] l_shapes = of.read(calcsize(fmt_shapes)) #values and alphas have the same format l_values= of.read(calcsize(fmt_values)) l_alphas = of.read(calcsize(fmt_values)) l_colors = of.read(calcsize(fmt_colors)) shapes.append(list(unpack(fmt_shapes, l_shapes))) values.append(unpack(fmt_values, l_values)) alphas.append(unpack(fmt_values, l_alphas)) colors.append(unpack(fmt_colors, l_colors)) #print 'shapes:', shapes #print 'values: ', values #print 'alphas: ', alphas of.close() d = 1 if ymaxval: ## d = (ymaxval*1.0)/self.ymaxval self.ymaxval = ymaxval #print "ymaxval: ", ymaxval, "self.ymaxval: ", self.ymaxval self.xmaxval = xmaxval for canvas in self.canvas_list: canvas.destroy() self.canvas_list = [] self.lut_list = [] self.intervals_list = intervals i = 0 for interval in intervals: ## print 'in load_file: interval =', interval lut = LUT(self.f1, xminval=interval[0], xmaxval=interval[1], ymaxval = self.ymaxval, grid_row=i, num_of_entries=xmaxval+1, initdraw = 0) lut.canvas.bind('', self.selected) self.lut_list.append(lut) self.canvas_list.append(lut.canvas) if d != 1 : lut.calculate_points(values[i], map(lambda x: x/d, alphas[i])) else: lut.calculate_points(values[i], alphas[i]) lut.shapes = shapes[i] colors_size = (len(colors[i])/3, 3) #print "colors_size: ", len(colors[i]), colors_size lut.color_arr = Numeric.reshape(Numeric.array(colors[i], 'f'), colors_size) lut.calculate_alphas() lut.redraw() lut.setCallbacks(self.lutcallbacks) lut.callbacks['setalpha']([interval[0], lut.alpha_arr]) lut.callbacks['setcolor']([interval[0], lut.color_arr]) i = i + 1 self.lut_list[0].canvas.itemconfigure('outline', outline='blue') self.with_focus = self.lut_list[0] if len(intervals)>1: self.editBtn.menu.entryconfigure("Merge function", state='normal') def saveData(self): intervals = self.intervals_list[:] data ={'intervals':intervals} i = 0 for interval in self.intervals_list: lut = self.lut_list[i] points = lut.points[:] shapes = lut.shapes[:] color_arr = (lut.color_arr*1).astype('f') data[interval] = [points, shapes, color_arr] i = i+1 self.data.append(data) def saveTF(self): """saves transfer function (opacity and color values)in .clu file ('Clut1999a' Mitsubishi Electric format). Range of color values: 0 ... 255, range of alpha values: 0.0 ... 0.1""" filename = self.ask_save_file([("TF Files","*.clu")], 'Save Transfer Function') if filename: data = self.getLookupTable() if data: file = open(filename, 'w') ymaxval = float(self.ymaxval) if file: file.write("Clut1999a\n") file.write("%d\n"%len(data)) file.write("RGBRange %d\n"%(self.xmaxval,)) file.write("AlphaRange 1\n") file.write("Title CLUT\n") file.write("Copyright 1998 Mitsubishi Electric I.T.A.\n") file.write("##\n\n") for i in range(len(data)): file.write("%d %d %d %d %.3f\n"%(i,data[i][0], data[i][1],data[i][2], data[i][3]/ymaxval) ) file.close() else: return def getLookupTable(self): """build an array of RGBA for the current lookup table. """ rgba=Numeric.zeros((self.xmaxval+1, 4), 'f') alpha = Numeric.zeros(self.xmaxval+1,'i') for lut in self.lut_list: xminval = lut.xminval xmaxval = lut.xmaxval rgba[xminval:xmaxval+1, :3] = lut.color_arr[:] alpha[xminval:xmaxval+1] = lut.alpha_arr[:] rgba=(rgba*255).astype('i') rgba[:,-1]=alpha return rgba def ask_open_file_cb(self): file = tkFileDialog.askopenfilename\ (filetypes=[("LUT Files", "*.lut")], title='Load LUT') if file: if os.path.splitext(file)[1] == '.lut': self.load_lutfile(file) else: print "Wrong file name", file return def load_lutfile(self, file): self.load_file(file) def load_file_old(self, file): of = open(file, 'r') try: intervals = cPickle.load(of) except: print "Load LUT ERROR: could not read file: ", file return data = [] nintervals = len(intervals) xmaxval = intervals[nintervals-1][1] if xmaxval != self.xmaxval: if self.viewer: if self.viewer.hasGui: text = "WARNING: number of LUT entries in\n%s\n is %d,\n current number of LUT entries is %d.\nLoad new LUT?" %(file,xmaxval+1,self.xmaxval+1) dialog = Pmw.MessageDialog(self.master, buttons=('OK','Cancel'), defaultbutton='OK', title='Load New LUT', message_text=text) result=dialog.activate() if result=='Cancel': of.close() return else: self.xmaxval = xmaxval else: print "WARNING: number of LUT entries in %s is %d, current number of LUT entries is %d." % (file, xmaxval+1, self.xmaxval+1) for n in range(nintervals): try: data.append(cPickle.load(of)) except: print "Load LUT Error: could not read the data." of.close() return 0 ## print 'lut No %s'%n ## print 'points:', data[n][0] ## print 'shapes:', data[n][1] of.close() self.xmaxval = xmaxval for canvas in self.canvas_list: canvas.destroy() self.canvas_list = [] self.lut_list = [] self.intervals_list = intervals i = 0 for interval in intervals: ## print 'in load_file: interval =', interval lut = LUT(self.f1, xminval=interval[0], xmaxval=interval[1], ymaxval = self.ymaxval, grid_row=i, num_of_entries=xmaxval+1, initdraw = 0) lut.canvas.bind('', self.selected) self.lut_list.append(lut) self.canvas_list.append(lut.canvas) lut.points = data[i][0] lut.shapes = data[i][1] lut.color_arr = data[i][2] lut.calculate_alphas() lut.redraw() lut.setCallbacks(self.lutcallbacks) lut.callbacks['setalpha']([interval[0], lut.alpha_arr]) lut.callbacks['setcolor']([interval[0], lut.color_arr]) i = i + 1 self.lut_list[0].canvas.itemconfigure('outline', outline='blue') self.with_focus = self.lut_list[0] return 1 def undo_split(self, data = None): calculatealpha = 0 if not data: data = self.data calculatealpha = 1 if len(data) == 0: return for canvas in self.canvas_list: canvas.destroy() self.canvas_list = [] self.lut_list = [] intervals = data[-1]['intervals'] #print "in undo_split, intervals_list:", self.intervals_list #print "data['intervals']=", self.data[-1]['intervals'] self.intervals_list = intervals i=0 for interval in intervals: ## print 'in load_file: interval =', interval lut = LUT(self.f1, xminval=interval[0], ymaxval=self.ymaxval, xmaxval=interval[1], grid_row=i, num_of_entries=self.xmaxval+1, initdraw = 0) lut.canvas.bind('', self.selected) self.lut_list.append(lut) self.canvas_list.append(lut.canvas) lut.points = data[-1][interval][0] lut.shapes = data[-1][interval][1] lut.color_arr = data[-1][interval][2] if calculatealpha: lut.calculate_alphas() else: lut.alpha_arr = data[-1][interval][3] lut.redraw() lut.setCallbacks(self.lutcallbacks) if calculatealpha: lut.callbacks['setalpha']([interval[0], lut.alpha_arr]) lut.callbacks['setcolor']([interval[0], lut.color_arr]) i=i+1 self.lut_list[0].canvas.itemconfigure('outline', outline='blue') self.with_focus = self.lut_list[0] data.pop() def reset(self): for lut in self.lut_list: lut.canvas.delete('line') lut.canvas.delete('dot') lut.canvas.delete('isoline') lut.canvas.delete('isodot') lut.isoVals = [] lut.draw_initshape() lut.callbacks['setalpha']([lut.xminval, lut.alpha_arr]) lut.callbacks['setcolor']([lut.xminval, lut.color_arr]) def getTransferFunc(self): """ returns a list containing LUT values(scalar values of points on the widget transfer function), corresponding alphas and colors""" values = [] alphas = [] colors = [] for lut in self.lut_list: values.extend(lut.values[1:-1]) xminval = lut.xminval for v in lut.values[1:-1]: alphas.append(lut.alpha_arr[v-xminval]) colors.append(lut.color_arr[v-xminval].tolist()) return values, alphas, colors def getIsoVals(self): isoVals = [] for lut in self.lut_list: if len(lut.isoVals): isoVals.extend(lut.isoVals) return isoVals def draw_ramp(self, reverse = 0): """Draw a ramp that goes from left lower corner to right upper corner (or if 'reverse' is specified - from left upper corner to right lower corner) of currenly selected LUT frame.""" curr_widget =self.with_focus.canvas ind = self.canvas_list.index(curr_widget) lut = self.lut_list[ind] xmaxval=lut.xmaxval-lut.xminval lut.canvas.delete('isoline') lut.canvas.delete('isodot') lut.isoVals = [] lut.draw_initshape(xminval = 0, xmaxval=xmaxval, num_of_entries=xmaxval+1, gray=0, reverse = reverse) lut.values = [lut.xminval, lut.xminval, lut.xminval+ xmaxval/2, lut.xmaxval, lut.xmaxval] lut.callbacks['setalpha']([lut.xminval, lut.alpha_arr]) lut.callbacks['setcolor']([lut.xminval, lut.color_arr]) def set_dotsize_cb(self, type): """Set the size of the LUT widget's dots (type='dot') or isovalue dots (type='isodot').""" if type == "dot": text = "Set dot size" comm = lambda v, s=self: s.set_dotsize(v) self.currDotrad = self.lut_list[0].dotrad elif type == "isodot": text = "Set isovalue dot size" comm = lambda v, s=self: s.set_isodotsize(v) self.currDotrad = self.lut_list[0].isodotrad dotsizeDialog = Pmw.Dialog(self.master, buttons=('OK',), defaultbutton='OK', title=text,)# command=self.ok_dotsize) interior = dotsizeDialog.interior() sizescale = Tkinter.Scale(interior, label = "Set new dot radius", orient = 'horizontal', length = 200, from_= 2., to=10., tickinterval=0, font=self.font, resolution=0.5, command=comm) sizescale.pack(side=Tkinter.LEFT) sizescale.set(self.currDotrad) dotsizeDialog.activate() def set_dotsize(self, val): val = float(val) for lut in self.lut_list: lut.set_dotsize(val) def set_isodotsize(self, val): val = float(val) for lut in self.lut_list: lut.set_dotsize(val, "isodot") def ok_dotsize(self, val): print val def flip_function_cb(self): self.with_focus.flip_function() def del_selected_dot(self): lut = self.with_focus c = lut.canvas tags = c.gettags('selected') if len(tags) == 0: return if tags[0] == 'isodot': lut.removeIsoVal() num_isovals = 0 for lut in self.lut_list: num_isovals = num_isovals + len(lut.isoVals) if num_isovals == 0: self.entry_isoVal.configure(label_text = 'ISO value (None):') elif tags[0] == 'dot': if lut.curr_ind-1 in lut.shapes and \ lut.curr_ind+1 in lut.shapes: lut.deleteShape() else: lut.deleteDot() def show_help_txt(self, txt): text_opts = {"addDotShape":AddDotShapeTxt, "deleteDot":DeleteDotTxt , "moveShape":MoveShapeTxt, "setColor": SetColorTxt, "description":DescriptionText} opt = text_opts[txt] helpDialog = Pmw.TextDialog(self.master, scrolledtext_labelpos='n', title = "Widget description", defaultbutton=0, scrolledtext_usehullsize=1, scrolledtext_hull_width=600, scrolledtext_hull_height=200, label_text="Widget description") helpDialog.insert(Tkinter.END, opt) helpDialog.configure(text_state='disabled') #helpDialog.activate() helpDialog.show() def set_continuous(self): val = self.continVar.get() LUT.continuous = val if val: self.applylutBtn.configure(state="disabled") else: self.applylutBtn.configure(state="normal") def applylut_cb(self): for lut in self.lut_list: lut.apply_lut() alpha_arr = self.lut_list[0].alpha_arr color_arr = self.lut_list[0].color_arr if len(self.lut_list)>1: for lut in self.lut_list[1:]: alpha_arr = Numeric.concatenate((alpha_arr, lut.alpha_arr)) color_arr = Numeric.concatenate((color_arr, lut.color_arr)) self.lutcallbacks['setalpha'] ([0, alpha_arr]) self.lutcallbacks['setcolor'] ([0, color_arr]) def merge_function (self): if len(self.intervals_list)<2: return interval = (self.xminval, self.xmaxval) #data ={'intervals':[interval,]} points = self.lut_list[0].points[1:-1] values = self.lut_list[0].values[1:-1] shapes = self.lut_list[0].shapes[1:-1] color_arr = self.lut_list[0].color_arr alpha_arr = self.lut_list[0].alpha_arr for lut in self.lut_list[1:]: points.extend(lut.points[1:-1]) alpha_arr = Numeric.concatenate((alpha_arr, lut.alpha_arr)) color_arr = Numeric.concatenate((color_arr, lut.color_arr)) old_shapes =lut.shapes[1:-1] old_vals = lut.values[1:-1] val1 = values[-1] val2 = old_vals[0] if alpha_arr[val1] == 0 and alpha_arr[val2] == 0: d = shapes[-1] for s in old_shapes: shapes.append(s+d) else: d = shapes[-1] shapes[-1] = d+old_shapes[1] if len(old_shapes) > 2: for s in old_shapes[2:]: shapes.append(s+d) values.extend(old_vals) shapes.insert(0,0) shapes.append(shapes[-1]+1) ######## for canvas in self.canvas_list: canvas.destroy() self.canvas_list = [] self.lut_list = [] self.intervals_list = [interval,] i=0 lut = LUT(self.f1, xminval=interval[0], ymaxval=self.ymaxval, xmaxval=interval[1], grid_row=i, num_of_entries=self.xmaxval+1, initdraw = 0) lut.canvas.bind('', self.selected) self.lut_list.append(lut) self.canvas_list.append(lut.canvas) right = lut.right left = lut.left bott = lut.bott sclx = lut.sclx new_points = [(left, bott),] for i in range(len(points)): new_points.append(((values[i]-self.xminval)*sclx+left, points[i][1])) new_points.append((right, bott)) lut.points = new_points lut.shapes = shapes lut.color_arr = color_arr lut.alpha_arr = alpha_arr values.insert(0, self.xminval) values.append(self.xmaxval) lut.values = values lut.redraw() lut.setCallbacks(self.lutcallbacks) self.lut_list[0].canvas.itemconfigure('outline', outline='blue') self.with_focus = self.lut_list[0] ####### self.editBtn.menu.entryconfigure("Merge function", state='disabled') #data[interval] = [new_points, shapes, color_arr, alpha_arr] class LUT: #callbacks = {'entries':None, 'rgbmap':None, 'setalpha':None, # 'setcolor':None} #'entries' - TableManager.entries_update; #'rgbmap' - Colormap.show_color; #'setalpha'- should be reserved for setting #alpha values, as in transferCommands.py(setAlpha): # setAlpha(value) , # where value is a list: value[0] - starting index, # value[1] - an integer array containing new # alpha values. Each entry is in range 0...4095. #'setcolors' - for setting colors : # setColors(value) , # where value is a list: value[0] - starting index, # value[1] - an array of RGB values. # Each entry is in range 0.0 ... 1.0 continuous = 1 def __init__(self, master=None, xminval=0,xmaxval=255, ymaxval=4095, width = '13c', height = '3c', grid_row=0, num_of_entries = 256, initdraw = 1): """create canvas widget """ self.callbacks = {'entries':None, 'rgbmap':None, 'setalpha':None, 'setcolor':None} self.master = master self.xmaxval = xmaxval self.xminval = xminval self.ymaxval = ymaxval self.num_of_entries = num_of_entries assert self.num_of_entries > 0 self.font = '-*-Helvetica-Bold-R-Normal-*-*-160-*-*-*-*-*-*' self.canvas = Tkinter.Canvas(master,width = width, height=height, relief = Tkinter.FLAT, borderwidth = 2) c = self.canvas c.grid(row=grid_row, sticky=Tkinter.W) width = float(c.cget('width')) # 461.0 height = float(c.cget('height'))#106.0 diff = c.winfo_fpixels('0.5c') self.right = width-diff self.top = diff self.left = diff self.bott = height-diff c.create_rectangle(3,3, width+3,height+3, outline ='', width=4, fill='', tags='outline') c.create_rectangle(self.left,self.top, self.right,self.bott, outline ='black', width=1, fill='white', tags='box') c.create_text(self.right-15, self.bott+10, text=str(xmaxval), anchor=Tkinter.W, font=self.font) c.create_text(10, self.bott+10, text=str(xminval), anchor=Tkinter.W, font=self.font) c.create_text(10, self.top-7, text=str(ymaxval), anchor=Tkinter.W, font=self.font, tags = 'ytext') # scale x and y axes self.sclx = (self.right-self.left)/(xmaxval-xminval) self.scly = (self.bott-self.top)/ymaxval self.delta = self.sclx+1e-6 ## c.create_line(self.left,self.bott,self.right, ## self.bott, width = 2, fill='black', tags=('line','line0')) ## self.line_count = 1 ## self.dot_count = 0 c.tag_bind('dot', '', self.mouse1Down) c.tag_bind('dot', '', self.mouse1Up) c.tag_bind('isodot', '', self.pickIsoVal) c.tag_bind('isodot', '', self.moveIsoVal) #c.tag_bind('line', '', self.pick) self.bind_tags() arr_len = xmaxval-xminval+1 self.color_arr = Numeric.zeros((arr_len,3),'f') self.alpha_arr = Numeric.zeros(arr_len).astype(Numeric.Int16) self.points = [] self.values = [] self.shapes = [] self.isoVals = [] self.dotrad = 5 self.isodotrad = 5 self.isoval_inrange = [] if initdraw: self.draw_initshape() self.last_event = '' self.curr_ind = 1 #self.continuous = 1 def setCallbacks(self, func_dict): alpha = func_dict.get('setalpha') color = func_dict.get('setcolor') entr = func_dict.get('entries') rgbmap = func_dict.get('rgbmap') if alpha: self.callbacks['setalpha']=alpha if color: self.callbacks['setcolor']=color if entr: self.callbacks['entries']=entr if rgbmap: self.callbacks['rgbmap']=rgbmap def compute_alpha_ramp(self, xminval, num_of_entries, arr_len, reverse = 0): #print "xminval=", xminval #print "numentr:", num_of_entries #print "arr_len:", arr_len assert num_of_entries > 1 #d = self.ymaxval/(num_of_entries-1.0) #print "d:", d ymaxval = self.ymaxval n = num_of_entries-1.0 if not reverse: for i in range(arr_len): #self.alpha_arr[i] = (xminval+i)*d self.alpha_arr[i] = ymaxval * (xminval+i)/ n else: j = arr_len-1 for i in range(arr_len): #self.alpha_arr[i] = (xminval+j)*d self.alpha_arr[i] = ymaxval * (xminval+j)/n j=j-1 ## print self.alpha_arr[0], self.alpha_arr[-1] def draw_initshape(self, xminval = None, xmaxval = None, num_of_entries=None, gray=1, reverse = 0): if xmaxval is None: xmaxval = self.xmaxval if xminval is None: xminval = self.xminval if num_of_entries is None: num_of_entries = self.num_of_entries arr_len = xmaxval-xminval+1 self.compute_alpha_ramp(xminval, num_of_entries, arr_len, reverse) first_dot = (self.left,self.bott-self.scly*self.alpha_arr[0] ) last_dot = (self.right,self.bott-self.scly*self.alpha_arr[-1]) mid_dot = (self.left+(self.right-self.left)/2, first_dot[1]-(first_dot[1]-last_dot[1])/2) self.points = [(self.left,self.bott), first_dot, mid_dot, last_dot, (self.right, self.bott)] #print 'points=', self.points self.values = [xminval, xminval, xminval+(xmaxval-xminval)/2, xmaxval, xmaxval] self.shapes = [0,1,3,4] if gray: self.grayRamp(xminval, xmaxval) self.redraw(xminval, xmaxval) def grayRamp(self, xminval=None, xmaxval=None): if xminval is None: xminval = self.xminval if xmaxval is None: xmaxval = self.xmaxval n = self.num_of_entries/256. ## print 'n=',n j = int(xminval/n) k=0 for i in range(xminval, xmaxval+1): if i%n == 0 and i != xminval : j = j+1 c = j/255. self.color_arr[k] = [c,c,c] k = k+1 ## print self.color_arr def check_bounds(self, x, l_end, r_end): diff = r_end - l_end diff1 = r_end-x if diff < 10: return 0 elif diff <= 30: x1=l_end+3 x2=r_end-3 elif diff1 < 8: return 0 elif diff1 <= 30: x1=x x2=r_end-3 else: x1=x x2=x+30 return x1,x2 def update_linetags(self, ind1, ind2): """update tags of the lines when a dot or a shape added to/ (deleted from) the canvas""" line_ind = range(ind1, self.line_count) if ind2 > 0: line_ind.reverse() for i in line_ind: self.canvas.itemconfigure('line%d'%(i,), tags=('line', 'line%d'%(i+ind2,))) def update_dottags(self, ind1, ind2): """update tags of the dots when a dot or a shape added to/ (deleted from) the canvas""" dot_ind =range(ind1, self.line_count) if len(dot_ind) == 0: return r_edge = None if ind2 > 0: dot_ind.reverse() if 'edge' in self.canvas.gettags('dot%d'%(dot_ind[0],)): self.canvas.itemconfigure('dot%d'%(dot_ind[0],), tags=('dot', 'dot%d'%(dot_ind[0]+ind2,),'edge')) dot_ind.pop(0) else: if 'edge' in self.canvas.gettags('dot%d'%(dot_ind[-1],)): r_edge = dot_ind.pop(-1) for i in dot_ind: self.canvas.itemconfigure('dot%d'%(i,), tags=('dot', 'dot%d'%(i+ind2,))) if r_edge: self.canvas.itemconfigure('dot%d'%(r_edge,), tags=('dot', 'dot%d'%(r_edge+ind2,),'edge')) def drawShape(self,event): """ Draw a shape that consists of four dots and five lines, find coordinates and values of the points and update the entry fields on the form""" self.last_event = 'Shift-Button-1' c = self.canvas # memorize the x and y coordinates of the cursor x = c.canvasx(event.x) y = c.canvasy(event.y) points = self.points shapes = self.shapes # find point where shape will be placed i=0 for point in points: if x < point[0]: r_point = point break i=i+1 ind = i-1 l_point = points[ind] # if pointer is over existing shape - do nothing if ind in shapes: newind=shapes.index(ind) rind=shapes[newind+1] if (rind-ind)>1: return else: return bounds = self.check_bounds(x, l_point[0], r_point[0]) if bounds == 0: return else : x1, x2 = bounds c.delete('line%d'%(ind,)) ## c.itemconfig('selected', fill=UNSELECTED_COLOR, ## outline=UNSELECTED_COLOR) #c.itemconfig('selected', outline='') c.itemconfig('selected', outline=UNSELECTED_COLOR) c.dtag('selected') if self.line_count > 1: self.update_linetags(ind+1,4) if self.dot_count > 1: self.update_dottags(ind+1,4) bott = self.bott # draw lines of the shape eps =1e-6 x1_1 = x1+self.sclx+eps x2_1 = x2-self.sclx+eps c.create_line(l_point[0], bott, x1, bott, width = 2, activefill='gray68', fill='black', tags= ('line', 'line%d'%(ind,))) c.create_line(x1, bott, x1_1, y, width = 2, fill='black', activefill='gray68', tags=('line', 'line%d'%(ind+1,))) c.create_line(x1_1, y, x2_1, y, width = 2, fill='black', activefill='gray68', tags=('line','line%d'%(ind+2,))) c.create_line(x2_1, y, x2, bott, width = 2, fill='black', activefill='gray68', tags=('line','line%d'%(ind+3,))) c.create_line(x2, bott, r_point[0], bott, width = 2, activefill='gray68', fill='black', tags=('line','line%d'%(ind+4,))) # update list of values and list of points xminval =self.xminval tkcolors = [] val_x1 = int(round((x1-self.left)/self.sclx))+xminval val_x2 = val_x1+int(round((x2-x1)/self.sclx)) for j, point, val in ([i,(x1,bott),val_x1], [i+1,(x1_1,y),val_x1+1],\ [i+2,(x2_1,y),val_x2-1], [i+3,(x2,bott),val_x2]): tkcolors.append(colorUtil.TkColor(self.color_arr[val-xminval])) points.insert(j,point) self.values.insert(j,val) # draw dots rad = self.dotrad c.create_oval(x1-rad, bott-rad, x1+rad, bott+rad, outline=UNSELECTED_COLOR, width=1, fill=tkcolors[0], activefill='gray68', tags=('dot','dot%d'%(ind+1,))) c.create_oval(x1_1-rad, y-rad, x1_1+rad, y+rad, outline=UNSELECTED_COLOR, width=1, fill=tkcolors[1], tags=('dot', 'dot%d'%(ind+2,))) c.create_oval(x2_1-rad, y-rad, x2_1+rad, y+rad, activefill='gray68', outline=UNSELECTED_COLOR, width=1, fill=tkcolors[2], tags=('dot','dot%d'%(ind+3,))) c.create_oval(x2-rad, bott-rad, x2+rad, bott+rad, outline=UNSELECTED_COLOR, activefill='gray68', width=1,fill=tkcolors[3], tags=('dot','dot%d'%(ind+4,))) # update list of shapes self.update_shapes(i,4) self.line_count = self.line_count+4 self.dot_count = self.dot_count+4 if ind > 0: c.lift('dot%d'%(ind,)) if ind+5 < self.line_count: c.lift('dot%d'%(ind+5,)) # calculate alphas val_y = round((bott-y)/self.scly) for j in range(val_x1+1-xminval, val_x2-xminval): self.alpha_arr[j] = val_y # update entry fields on the form self.callbacks['entries'](val_x1=val_x1, val_x2=val_x2, val_y=int(val_y)) # , val_r='', val_g='', val_b='') self.callbacks['setalpha']([val_x1+1, self.alpha_arr[val_x1+1-xminval:val_x2-xminval]]) def drawIsoVal(self, isoVal, isoA, isoRGB): """Draws a line with a circle representing an Iso Value""" y = self.bott-self.scly*isoA x = (isoVal - self.xminval)*self.sclx + self.left tkcolor = colorUtil.TkColor(isoRGB) n = len(self.isoVals) rad = self.isodotrad self.canvas.itemconfig('selected', outline=UNSELECTED_COLOR) self.canvas.dtag('selected') self.canvas.create_line(x, self.bott, x, y, fill="black", activefill='gray68', tags=('isoline', 'isoline%d'%(n,)) ) self.canvas.create_oval( x-rad, y-rad, x+rad, y+rad, fill=tkcolor, outline=SELECTED_COLOR, activefill='gray68', tags=('isodot','isodot%d'%(n,),'selected')) self.isoVals.append({'val':isoVal, 'alpha':isoA, 'rgb':isoRGB}) if self.continuous: self.callbacks['setalpha']([isoVal, Numeric.array([isoA]).astype(Numeric.Int16)]) self.callbacks['setcolor']([isoVal, Numeric.array([isoRGB],'f')]) self.callbacks['entries'](iso_val=isoVal, iso_y=isoA, iso_rgb = isoRGB) def removeIsoVal(self): c = self.canvas tags = c.gettags('selected') if len(tags) == 0: return if tags[0] != 'isodot': return iso_ind = int(tags[1][6:]) c.delete('selected') c.delete('isoline%d'%(iso_ind,)) isoVal = self.isoVals.pop(iso_ind) dots_id = c.find_withtag('isodot') lines_id = c.find_withtag('isoline') for i , j in map(None, dots_id, lines_id): d_ind = int(c.gettags(i)[1][6:]) l_ind = int(c.gettags(j)[1][7:]) if d_ind > iso_ind: c.itemconfigure(i, tags = ('isodot','isodot%d'%(d_ind-1,))) if l_ind > iso_ind: c.itemconfigure(j, tags = ('isoline','isoline%d'%(l_ind-1,))) val = isoVal['val'] alpha = self.alpha_arr[val-self.xmaxval] rgb = self.color_arr[val-self.xmaxval] if self.continuous: self.callbacks['setalpha']([val, Numeric.array([alpha]).astype(Numeric.Int16)]) self.callbacks['setcolor']([val, Numeric.array([rgb],'f')]) self.callbacks['entries'](iso_val=0, iso_y=0, iso_rgb = (0.0, 0.0, 0.0)) def flip_function(self): if self.values[0] !=self.values[1]: val0 = self.values[0] self.values.insert(0, val0) point0 = self.points[0] self.points.insert(0, point0) if self.values[-1] !=self.values[-2]: val1 = self.values[-1] self.values.append(val1) point1 = self.points[-1] self.points.append(point1) y_points = [] for point in self.points: y_points.append(point[1]) y_min = min(y_points) d = self.bott+y_min for i in range(1,len(self.points)-1): px, py = self.points[i] self.points[i] = (px, d-py) alpha_max= Numeric.maximum.reduce(self.alpha_arr) self.alpha_arr = (self.alpha_arr*(-1)+alpha_max).astype(Numeric.Int16) shapes = [0,1] num_points = len(self.points) if len(self.shapes) > 4: if num_points >=8: i = 3 while i < num_points-4: val = self.values[i]-self.xminval if self.alpha_arr[val] == 0: val1 = self.values[i+1]-self.xminval if self.alpha_arr[val1] == 0: shapes.append(i) shapes.append(i+1) self.points[i] = (self.points[i][0], self.bott) self.points[i+1] = (self.points[i+1][0], self.bott) i = i+3 else: i=i+1 else: i=i+1 if num_points - shapes[-1] > 3: shapes.append(num_points-2) else: shapes.append(num_points-2) else: shapes.append(num_points-2) shapes.append(num_points-1) self.shapes = shapes self.redraw(redrawIsoVals=0) self.callbacks['setalpha'] ([self.xminval, self.alpha_arr]) def redraw(self, xminval = None, xmaxval = None, redrawIsoVals = 1): """redraw canvas widget after interval splitting""" c = self.canvas if xminval is None: xminval =self.xminval if xmaxval is None: xmaxval = self.xmaxval ## c.delete('line0') c.delete('line') c.delete('dot') points = self.points p_len = len(points) if p_len == 2: c.create_line(points[0][0], points[0][1], points[1][0], points[1][1], width = 2, fill='black', activefill='gray68', tags= ('line', 'line0')) ## print 'points=', self.points ## print 'shapes=', self.shapes ## print 'values=', self.values self.line_count = p_len-1 self.dot_count = p_len-2 return rad = self.dotrad for i in range(p_len-1): c.create_line(points[i][0], points[i][1], points[i+1][0], points[i+1][1], activefill='gray68', width = 2, fill='black', tags= ('line', 'line%d'%(i,))) i = 1 for point in points[1:-1]: tkcolor = colorUtil.TkColor(self.color_arr[self.values[i]-xminval]) c.create_oval(point[0]-rad, point[1]-rad, point[0]+rad, point[1]+rad, fill=tkcolor, outline=UNSELECTED_COLOR, activefill='gray68', tags=('dot','dot%d'%(i,))) i = i+1 #if points[-2][0] == self.right: if self.values[-2] == xmaxval: c.addtag_withtag('edge', 'dot%d'%(p_len-2,)) #if points[1][0] == self.left: if self.values[1] == xminval: c.addtag_withtag('edge', 'dot1') self.line_count = p_len-1 self.dot_count = p_len-2 if redrawIsoVals: if len(self.isoVals): rad = self.isodotrad i = 0 for iso_val in self.isoVals: y = self.bott-self.scly*iso_val['alpha'] x = (iso_val['val'] - xminval)*self.sclx + self.left tkcolor = colorTool.TkColor(iso_val['rgb']) self.canvas.create_line(x, self.bott, x, y, fill="black", activefill='gray68', tags=('isoline', 'isoline%d'%(i,)) ) self.canvas.create_oval( x-rad, y-rad, x+rad, y+rad, fill=tkcolor, outline=UNSELECTED_COLOR, activefill='gray68', tags=('isodot','isodot%d'%(i,)) ) i = i + 1 def update_yaxis(self, ymaxval): self.scly = (self.bott-self.top)/ymaxval self.canvas.itemconfigure('ytext', text = str(ymaxval)) #self.alpha_arr = (self.alpha_arr*ymaxval/self.ymaxval).astype(Numeric.Int16) self.alpha_arr = Numeric.clip(self.alpha_arr, 0, ymaxval).astype(Numeric.Int16) for i in range(1, len(self.points)-1): arr_ind = self.values[i]-self.xminval alpha = self.alpha_arr[arr_ind] self.points[i] = (self.points[i][0], self.bott-self.scly*alpha) self.ymaxval = ymaxval self.redraw() self.callbacks['setalpha']([self.xminval, self.alpha_arr]) ind = self.values[self.curr_ind]-self.xminval self.callbacks['entries'](val_y=int(self.alpha_arr[ind])) def update_shapes(self, point_ind, num): """Update list of shapes """ if point_ind not in self.shapes: print "point %d is not in self.shapes"%point_ind return 0 shape_ind = self.shapes.index(point_ind) if num > 0: self.shapes.insert(shape_ind,point_ind) self.shapes.insert(shape_ind+1,point_ind+num-1) delta = 2 elif num <0: self.shapes.pop(shape_ind) self.shapes.pop(shape_ind) delta = 0 shapes_len = len(self.shapes) for i in range(shape_ind+delta, shapes_len): self.shapes[i]=self.shapes[i]+num def mouse1Down(self, event): self.last_event = 'Button-1' #print 'last_event =', self.last_event c= self.canvas tag = c.gettags(Tkinter.CURRENT)[1] curr_ind = int(tag[3:]) #memorize last position of the mouse-click on a point(dot) self.lastx = self.points[curr_ind][0] self.lasty = self.points[curr_ind][1] #find the scalar values and alpha values of the selected point #and its adjoining points self.next_l = self.points[curr_ind-1] #coords of left neighbor. point self.next_r = self.points[curr_ind+1] #coords of right neighbor. point scalars = [self.values[curr_ind-1], self.values[curr_ind], self.values[curr_ind+1]] xminval = self.xminval self.alphas = [self.alpha_arr[scalars[0]-xminval], self.alpha_arr[scalars[1]-xminval], self.alpha_arr[scalars[2]-xminval]] # change outline of the selected dot c.itemconfig('selected', outline=UNSELECTED_COLOR) c.dtag('selected') c.addtag_withtag('selected', Tkinter.CURRENT) c.itemconfig('selected', outline=SELECTED_COLOR) # get color of the selected (current) point curr_color = self.curr_color = list(self.color_arr[scalars[1]-xminval]) curr_hsv = ToHSV(curr_color) #print "curr_hsv in mouse1Down:", curr_hsv self.scalars = scalars self.curr_ind = curr_ind self.curr_ind_status = None if curr_ind in self.shapes: if 'edge' in c.gettags('dot%d'%(curr_ind,)): self.curr_ind_status = 'edge' else : self.curr_ind_status = 'shape' # update entry fields on the form self.callbacks['entries'](val_x1=scalars[1], val_x2='', val_y=int(self.alphas[1]), val_r=round(curr_color[0],2), val_g=round(curr_color[1],2), val_b=round(curr_color[2],2)) self.callbacks['rgbmap'](curr_hsv) #check if there is an Iso val in the interval scalars[0]...scalars[2] self.isoval_inrange = [] if len(self.isoVals): for iso_val in self.isoVals: v = iso_val['val'] if v >= scalars[0] and v <= scalars[2]: self.isoval_inrange.append(iso_val) def mouse1Move(self, event): self.last_event = 'B1-Motion' curr_ind = self.curr_ind c = self.canvas #current position of the mouse x = c.canvasx(event.x) y = c.canvasy(event.y) next_l = self.next_l next_r = self.next_r delta = self.delta top = self.top curr_tag = 'dot%d'%(curr_ind,) # the dot must not move beyond the canvas outline if y >= self.bott: y = self.bott elif y > top-15 and y <= top: y = top elif y <= top-15: if curr_ind in self.shapes: return #draggind the dot beyond the upper boundary delets either the shape #(if there is only three points in the shape) or the dot (if #there is more than three points in the shape). elif curr_ind-1 in self.shapes and curr_ind+1 in self.shapes: self.deleteShape() else: self.deleteDot() return if x < next_l[0]+delta: if curr_ind-1 == 0: x = self.left else: x = next_l[0]+delta elif x > next_r[0]-delta: if curr_ind+1 == len(self.points)-1: x = self.right else: x = next_r[0]-delta if self.curr_ind_status != None: if self.curr_ind_status == 'edge': lasty = self.lasty lastx = self.lastx if lasty < self.bott: c.move(curr_tag, 0, y-lasty) else : if abs(y-lasty)>abs(x-lastx): c.move(curr_tag, 0, y-lasty) else: if next_r[0] == self.right: self.alphas[2] = 0 elif next_l[0] == self.left : self.alphas[0] = 0 c.move(curr_tag, x-lastx, 0) self.curr_ind_status = 'shape' c.dtag(curr_tag, 'edge') elif self.curr_ind_status == 'shape': c.move(curr_tag, x-self.lastx, 0) else: c.move(curr_tag, x-self.lastx, y-self.lasty) dot = c.coords('dot%d'%(curr_ind,)) rad = self.dotrad X = dot[0]+rad Y = dot[1]+rad c.coords('line%d'%(curr_ind-1,), next_l[0], next_l[1], X, Y) c.coords('line%d'%(curr_ind,), X, Y, next_r[0], next_r[1]) if x == self.right: self.lastx = x elif x == self.left and dot[0]= scalars[2]: if scalars[2] == self.xmaxval: scalars[1] = self.xmaxval else : scalars[1] = scalars[2]-1 elif scalars[1] <= scalars[0]: if scalars[0] == xminval: scalars[1] = xminval else: scalars[1] = scalars[0]+1 self.alphas[1] = round((self.bott-Y)/self.scly) self.values[self.curr_ind] = scalars[1] self.compute_rgba(scalars, alphas) # update entry fields on the form self.callbacks['entries'](val_x1=scalars[1], val_y=int(alphas[1])) def compute_rgba(self, scalars, alphas): xminval = self.xminval xmaxval = self.xmaxval sc0 = scalars[0]-xminval sc1 = scalars[1]-xminval sc2 = scalars[2]-xminval red1, green1, blue1 = self.color_arr[sc0] red2, green2, blue2 = self.curr_color red3, green3, blue3 = self.color_arr[sc2] d = scalars[0]-scalars[1] if d != 0 : K = (alphas[0]-alphas[1])/d C = alphas[0]-K*scalars[0] Kr = (red1-red2)/d Kg = (green1-green2)/d Kb = (blue1-blue2)/d Cr = red1-Kr*scalars[0] Cg = green1-Kg *scalars[0] Cb = blue1-Kb*scalars[0] s = Numeric.arange(scalars[0], scalars[1]) self.alpha_arr[sc0:sc1] =\ (K*s+C).astype(Numeric.Int16) if scalars[1] > xminval or scalars[1] < xmaxval: self.color_arr[sc0:sc1] = \ Numeric.transpose(Numeric.array((Kr*s+Cr, Kg*s+Cg, Kb*s+Cb)).astype('f')) d = scalars[1]-scalars[2] if d != 0 : K = (alphas[1]-alphas[2])/d C = alphas[1]-K*scalars[1] Kr = (red2-red3)/d Kg = (green2-green3)/d Kb = (blue2-blue3)/d Cr = red2-Kr*scalars[1] Cg = green2-Kg *scalars[1] Cb = blue2-Kb*scalars[1] s = Numeric.arange(scalars[1], scalars[2]) self.alpha_arr[sc1:sc2] =\ (K*s+C).astype(Numeric.Int16) if scalars[1] > xminval or scalars[1] < xmaxval: self.color_arr[sc1:sc2] = \ Numeric.transpose(Numeric.array((Kr*s+Cr, Kg*s+Cg, Kb*s+Cb)).astype('f')) else: s = sc1 last_ind = xmaxval-xminval if s > last_ind: s=last_ind self.alpha_arr[s]=alphas[1] #if there is any Iso vals in the range: # memorize current rgba values , make changes in self.alpha_arr # and self.color_arr, do callbacks with new alphas and colors # then assign old values to self.alpha_arr and self.color_arr old_rgba = None if len(self.isoval_inrange): old_rgba = [] for iso_val in self.isoval_inrange: v = iso_val['val'] old_rgba.append((v, self.alpha_arr[v-xminval], self.color_arr[v-xminval].tolist())) self.alpha_arr[v-xminval] = iso_val['alpha'] self.color_arr[v-xminval] = iso_val['rgb'] if self.continuous: self.callbacks['setalpha']([scalars[0], self.alpha_arr[sc0:sc2+1] ]) if scalars[1] > xminval or scalars[1] < xmaxval: self.color_arr[sc1] = [red2, green2, blue2] ## curr_color = self.color_arr[sc1] ## tkcolor = colorUtil.TkColor(curr_color) ## l_color = colorUtil.TkColor(self.color_arr[sc0]) ## r_color = colorUtil.TkColor(self.color_arr[sc2]) ## self.canvas.itemconfig('dot%d'%(self.curr_ind+1,), fill=r_color) ## self.canvas.itemconfig('dot%d'%(self.curr_ind-1,), fill=l_color) ## self.canvas.itemconfig('selected', fill=tkcolor) if self.continuous: self.callbacks['setcolor']([scalars[0], self.color_arr[sc0:sc2+1] ]) if old_rgba: for rgba in old_rgba: v = rgba[0] self.alpha_arr[v-xminval] = rgba[1] self.color_arr[v-xminval] = rgba[2] #self.values[self.curr_ind] = scalars[1] # update entry fields on the form #self.callbacks['entries'](val_x1=scalars[1], val_y=int(alphas[1])) #self.alphas = alphas def mouse1Up(self, event): self.last_event = 'ButtonRelease-1' curr_ind = self.curr_ind if self.lastx == self.right or self.lastx == self.left: if 'edge' not in self.canvas.gettags('dot%d'%(curr_ind,)): self.canvas.addtag_withtag('edge', 'dot%d'%(curr_ind,)) if self.lastx != self.points[curr_ind][0] or \ self.lasty != self.points[curr_ind][1]: dot = self.canvas.coords('dot%d'%(curr_ind,)) X = dot[0]+self.dotrad Y = dot[1]+self.dotrad self.points[curr_ind] = (X,Y) def pickIsoVal(self, event): c= self.canvas tag = c.gettags(Tkinter.CURRENT)[1] #print "tag:", tag self.iso_ind = int(tag[6:]) #c.itemconfig('selected', outline='') c.itemconfig('selected', outline=UNSELECTED_COLOR) c.dtag('selected') c.addtag_withtag('selected', Tkinter.CURRENT) c.itemconfig('selected', outline=SELECTED_COLOR) rgb = self.isoVals[self.iso_ind]['rgb'] self.callbacks['entries'](iso_val=self.isoVals[self.iso_ind]['val'], iso_y=self.isoVals[self.iso_ind]['alpha'], iso_rgb=rgb) hsv = ToHSV(rgb) self.callbacks['rgbmap'](hsv) def moveIsoVal(self, event): """moves Iso dot when it is draged with mouse button 1""" x = self.canvas.canvasx(event.x) y = self.canvas.canvasy(event.y) if y >= self.bott: y = self.bott elif y > self.top-25 and y <= self.top: y = self.top elif y <= self.top-25: self.removeIsoVal() return if x <= self.left: x = self.left elif x >= self.right: x = self.right # calculate new scalar value and opacity of moved point val = int(round((x-self.left)/self.sclx))+ self.xminval alpha = int(round((self.bott-y)/self.scly)) self.doMoveIsoVal(x, y ,val, alpha) self.callbacks['entries'](iso_val=val, iso_y=alpha) def doMoveIsoVal(self, x, y ,val, alpha): rad = self.isodotrad iso_ind = self.iso_ind xminval = self.xminval #find values of all Iso dots #vals = map(lambda i: i['val'], self.isoVals) isoVal = self.isoVals[iso_ind] # move the dot in canvas widget c = self.canvas c.coords('isoline%d'%(iso_ind,), x, self.bott, x, y) c.coords('isodot%d'%(iso_ind,), x-rad, y+rad, x+rad, y-rad) c.update_idletasks() # get last values of the dot oldval = isoVal['val'] oldalpha = self.alpha_arr[oldval-xminval] oldrgb = self.color_arr[oldval-xminval] # update values for the dot isoVal['val'] = val isoVal['alpha'] = alpha rgb = isoVal['rgb'] #find values of all Iso dots vals = map(lambda i: i['val'], self.isoVals) #update LUT if oldval < val: #dot moved to the right d = val-oldval alphas = Numeric.zeros(d+1).astype(Numeric.Int16) rgbs = Numeric.zeros((d+1,3),'f') alphas[0] = oldalpha alphas[-1] = alpha rgbs[0] = oldrgb rgbs[-1] = rgb if d > 1: alphas[1:-1] = self.alpha_arr[oldval-xminval+1:val-xminval] rgbs[1:-1] = self.color_arr[oldval-xminval+1:val-xminval] # check if the dot moved across another iso dot if len(vals)>1: for v in vals: if v in range(oldval, val): other_ind = vals.index(v) alphas[v-oldval] = self.isoVals[other_ind]['alpha'] rgbs[v-oldval] = self.isoVals[other_ind]['rgb'] if self.continuous: self.callbacks['setalpha']([oldval, alphas]) self.callbacks['setcolor']([oldval, rgbs]) elif oldval > val: #dot moved to the left d = oldval - val alphas = Numeric.zeros(d+1).astype(Numeric.Int16) rgbs = Numeric.zeros((d+1,3),'f') alphas[0] = alpha alphas[-1] = oldalpha rgbs[0] = rgb rgbs[-1] = oldrgb if d > 1: alphas[1:-1] = self.alpha_arr[val-xminval+1:oldval-xminval] rgbs[1:-1] = self.color_arr[val-xminval+1:oldval-xminval] # check if the dot moved across another iso dot if len(vals)>1: for v in vals: if v in range(val+1, oldval+1): other_ind = vals.index(v) alphas[v-val] = self.isoVals[other_ind]['alpha'] rgbs[v-val] = self.isoVals[other_ind]['rgb'] if self.continuous: self.callbacks['setalpha']([val, alphas]) self.callbacks['setcolor']([val, rgbs]) #self.callbacks['entries'](iso_val=val, iso_y=alpha) def moveIsoVal_value(self, val): """Move selected iso dot when vol entry is changed""" c = self.canvas tags = c.gettags('selected') if len(tags) == 0: #no dot is selected return if tags[0] != 'isodot': return x = (val - self.xminval)*self.sclx + self.left y = c.coords('isoline%d'%self.iso_ind)[3] alpha = self.isoVals[self.iso_ind]['alpha'] self.doMoveIsoVal(x, y, val, alpha) def move_dot_alpha(self,alpha): """Move selected dot when alpha entry is changed""" c = self.canvas tags = c.gettags('selected') if len(tags) == 0: #no dot is selected self.callbacks['entries'](val_y='0') return if tags[0] != 'dot': return curr_ind = self.curr_ind curr_tag = 'dot%d'%(curr_ind,) if curr_ind in self.shapes: if 'edge' not in c.gettags(curr_tag): self.callbacks['entries'](val_y='0') return next_l = self.points[curr_ind-1] next_r = self.points[curr_ind+1] lasty = self.points[curr_ind][1] y = self.bott-self.scly*alpha c.move(curr_tag, 0, y-lasty) dot = c.coords(curr_tag) X = dot[0]+self.dotrad Y = dot[1]+self.dotrad c.coords('line%d'%(curr_ind-1,), next_l[0], next_l[1], X, Y) c.coords('line%d'%(curr_ind,), X, Y, next_r[0], next_r[1]) self.lasty = y c.update_idletasks() # calculate alphas in the interval between two neighboring # dots of the current (selected)dot xminval = self.xminval scalars = [self.values[curr_ind-1], self.values[curr_ind], self.values[curr_ind+1]] alphas = [self.alpha_arr[scalars[0]-xminval], round((self.bott-Y)/self.scly), self.alpha_arr[scalars[2]-xminval]] d = scalars[0]-scalars[1] if d != 0 : K = (alphas[0]-alphas[1])/d C = alphas[0]-K*scalars[0] s = Numeric.arange(scalars[0], scalars[1]) self.alpha_arr[scalars[0]-xminval:scalars[1]-xminval] =\ (K*s+C).astype(Numeric.Int16) d = scalars[1]-scalars[2] if d != 0 : K = (alphas[1]-alphas[2])/d C = alphas[1]-K*scalars[1] s = Numeric.arange(scalars[1], scalars[2]) self.alpha_arr[scalars[1]-xminval:scalars[2]-xminval] =\ (K*s+C).astype(Numeric.Int16) else: s = scalars[1]-xminval last_ind = self.xmaxval-xminval if s > last_ind: s=last_ind self.alpha_arr[s]=alphas[1] ## f=s+1-xminval ## try: ## self.alpha_arr[f] = K*(s+1)+C ## except: ## print 'index out of bounds:self.alpha_arr[%d]' % f ## print 'scalar[1]=%d, scalar[2]=%d'%(scalars[1],scalars[2]) #if there is any Iso vals in the range: # memorize current alpha values , make changes in self.alpha_arr, # do callbacks with new alphas , # then assign old values to self.alpha_arr old_alpha = None if len(self.isoval_inrange): old_alpha = [] for iso_val in self.isoval_inrange: v = iso_val['val'] old_alpha.append((v, self.alpha_arr[v-xminval])) self.alpha_arr[v-xminval] = iso_val['alpha'] if self.continuous: self.callbacks['setalpha']([scalars[0], self.alpha_arr[scalars[0]-xminval:scalars[2]+1-xminval]]) if old_alpha: for a in old_alpha: self.alpha_arr[a[0]-xminval] = a[1] self.last_event = 'ButtonRelease-1' self.points[curr_ind] = (X,Y) def check_scalarval(self, value): """Check if a new value for the selected dot lies in the range of its neighbors' values.""" val_l = self.values[self.curr_ind - 1] val_r = self.values[self.curr_ind + 1] if val_r == self.xmaxval and self.curr_ind == self.shapes[-2]: val_r = val_r + 1 if val_l == self.xminval and self.curr_ind == 1: val_l = val_l - 1 if value > val_l and value < val_r: x_ind = self.values[self.curr_ind]-self.xminval if 'edge' in self.canvas.gettags("dot%d"%self.curr_ind) and \ self.alpha_arr[x_ind] != 0: return 0 else: return 1 else : return 0 def move_dot_value(self, value): curr_ind = self.curr_ind old_val = self.values[curr_ind] if value == old_val: return c = self.canvas tags = c.gettags('selected') if len(tags) == 0: #no dot is selected self.callbacks['entries'](val_x='0') return if tags[0] != 'dot': return curr_tag = 'dot%d'%(curr_ind,) next_l = self.points[curr_ind-1] next_r = self.points[curr_ind+1] lastx = self.points[curr_ind][0] x = (value-self.xminval)*self.sclx+self.left c.move(curr_tag, x-lastx, 0) y = self.points[curr_ind][1] c.coords('line%d'%(curr_ind-1,), next_l[0], next_l[1], x, y) c.coords('line%d'%(curr_ind,), x, y, next_r[0], next_r[1]) if "edge" in tags: c.dtag(curr_tag, 'edge') self.lastx = x c.update_idletasks() self.points[curr_ind] = (x,y) self.values[curr_ind] = value scalars = [self.values[curr_ind-1], value, self.values[curr_ind+1]] alphas = [self.alpha_arr[scalars[0]-self.xminval], round((self.bott-y)/self.scly), #self.alpha_arr[old_val-self.xminval], self.alpha_arr[scalars[2]-self.xminval]] self.curr_color = list(self.color_arr[old_val-self.xminval]) self.compute_rgba(scalars, alphas) self.alphas = alphas self.last_event = 'ButtonRelease-1' def moveIsoVal_alpha(self, alpha): """Move selected Iso dot when alpha entry is changed""" c = self.canvas tags = c.gettags('selected') if len(tags) == 0: #no dot is selected return if tags[0] != 'isodot': return iso_ind = int(tags[1][6:]) y = self.bott-self.scly*alpha rad = self.dotrad x = c.coords('isoline%d'%(iso_ind,))[0] c.coords('isoline%d'%(iso_ind,), x, self.bott, x, y) c.coords('isodot%d'%(iso_ind,), x-rad, y+rad, x+rad, y-rad) c.update_idletasks() val = self.isoVals[iso_ind]['val'] self.isoVals[iso_ind]['alpha'] = alpha if self.continuous: self.callbacks['setalpha']([val, Numeric.array([alpha]).astype(Numeric.Int16)]) def mouse2Down(self, event): c= self.canvas points = self.points self.lastx = c.canvasx(event.x) self.lasty = c.canvasy(event.y) tag = c.gettags(Tkinter.CURRENT)[1] curr_ind = int(tag[3:]) shapes = self.shapes # find all points of selected shape & store them in select_shape i=0 for shape in shapes: if curr_ind <= shape: break i=i+1 l_shape = shapes[i-1] r_shape = shapes[i+1] if (shape-l_shape) > 1: select_shape = range(l_shape,shape+1) elif (r_shape-shape) >1: select_shape = range(shape, r_shape+1) # find coords of adjoining points of the shapes next to selected one next_l = select_shape[0]-1 next_r = select_shape[-1]+1 self.next_l = points[next_l][0] self.next_r = points[next_r][0] first_point = select_shape[0] # find distance between event.x and first and last points of shape rad = self.dotrad self.diffr = points[select_shape[-1]][0]+rad-self.lastx self.diffl = self.lastx-(points[first_point][0]-rad) self.firstx = self.lastx # calculate alphas, colors first_scal = self.values[select_shape[0]] last_scal = self.values[select_shape[-1]] # get alphas(colors) for every entry(scalar) in LUT in interval between # first and last points of the selected shape xminval = self.xminval if not(self.last_event == 'ButtonRelease-2'\ and select_shape == self.select_shape): #list of alphas of the shape self.alpha_list = list(self.alpha_arr[first_scal-xminval: last_scal-xminval+1]) #color arrays of the shape ## self.rgb = (self.color_arr[first_scal-xminval: ## last_scal+1-xminval]*1).astype('f') self.rgb = Numeric.array(self.color_arr[first_scal-xminval: last_scal+1-xminval]) # memorize initial value(scalar) of the first point self.old_valx1 = first_scal #c.itemconfig('selected', outline='') c.itemconfig('selected', outline=UNSELECTED_COLOR) ## c.itemconfig('selected', fill=UNSELECTED_COLOR, ## outline=UNSELECTED_COLOR) c.dtag('selected') c.addtag_withtag('selected', Tkinter.CURRENT) c.itemconfig('selected', outline=SELECTED_COLOR) ## c.itemconfig('selected', fill=SELECTED_COLOR, outline=SELECTED_COLOR) # get color of current poit curr_scal = self.values[curr_ind]-xminval curr_color = list(self.color_arr[curr_scal]) curr_hsv = ToHSV(curr_color) #print "curr_hsv in mouse2Down:", curr_hsv self.select_shape = select_shape self.counter = 0 self.curr_ind = curr_ind self.last_event = 'Button-2' #check if there is an Iso val in the interval self.isoval_inrange = [] if len(self.isoVals): for iso_val in self.isoVals: v = iso_val['val'] if v >= self.values[next_l] and v <= self.values[next_r]: self.isoval_inrange.append(iso_val) self.callbacks['entries'](val_x1=first_scal, val_x2=first_scal+len(self.alpha_list)-1, val_y = int(self.alpha_arr[curr_scal]), val_r=round(curr_color[0],2), val_g=round(curr_color[1],2), val_b=round(curr_color[2],2)) self.callbacks['rgbmap'](curr_hsv) def mouse2Move(self, event): self.last_event = 'B2-Motion' select_shape = self.select_shape c = self.canvas if 'edge' in c.gettags('dot%d'%(select_shape[-1],)) or \ 'edge' in c.gettags('dot%d'%(select_shape[0],)): return self.counter = self.counter+1 x = c.canvasx(event.x) eps = 1e-6 rad = self.dotrad if x+self.diffr >= self.next_r: if self.next_r == self.right: x=self.next_r-self.diffr+rad else: x=self.next_r-self.diffr-self.sclx+eps+rad if x-self.diffl <= self.next_l: if self.next_l == self.left: x=self.next_l+self.diffl-rad else: x=self.next_l+self.diffl+self.sclx+eps-rad dist = x-self.lastx # move current shape for i in select_shape: c.move('dot%d'%(i,), dist, 0) if i == select_shape[-1]: break else: c.move('line%d'%(i,), dist, 0) j=select_shape[0] # update side lines l_line = c.coords('line%d'%(j-1,)) r_line = c.coords('line%d'%(i,)) x1 = l_line[2]+dist x2 = r_line[0]+dist c.coords('line%d'%(j-1,), l_line[0], l_line[1], x1 , l_line[1]) c.coords('line%d'%(i,), x2, r_line[1], r_line[2], r_line[3]) self.lastx = x # update val --- alpha values if self.counter%20 == 0: old_valx1 = self.old_valx1 len_list = len(self.alpha_list) # get new value(scalar) of the first point of the shape new_valx1 = int(round((x1-self.left)/self.sclx))+self.xminval delta = old_valx1-new_valx1 end = new_valx1+len_list-1 xminval = self.xminval if delta < 0: r_val = self.values[select_shape[-1]+1] if end >= r_val: if r_val == self.xmaxval: end = r_val else: end = r_val-1 new_valx1 = end-len_list+1 start_p = old_valx1-xminval mid_p = new_valx1-xminval stop_p = mid_p+len_list self.alpha_arr[start_p:mid_p] = 0 self.alpha_arr[mid_p:stop_p] = self.alpha_list elif delta > 0: l_val = self.values[select_shape[0]-1] if new_valx1 <= l_val: if l_val == xminval: new_valx1 = xminval else: new_valx1 = l_val+1 end = new_valx1+len_list-1 delta = old_valx1-new_valx1 start_p = new_valx1-xminval mid_p = start_p+len_list stop_p = mid_p+delta self.alpha_arr[start_p:mid_p] = self.alpha_list self.alpha_arr[mid_p:stop_p] = 0 elif delta == 0: return self.color_arr[new_valx1-xminval:end-xminval+1] = self.rgb[:][:] self.old_valx1 = new_valx1 #if there is any Iso vals in the range: # memorize current rgba values , make changes in self.alpha_arr # and self.color_arr, do callbacks with new alphas and colors # then assign old values to self.alpha_arr and self.color_arr old_rgba = None if len(self.isoval_inrange): old_rgba = [] for iso_val in self.isoval_inrange: v = iso_val['val'] old_rgba.append((v, self.alpha_arr[v-xminval], self.color_arr[v-xminval].tolist())) self.alpha_arr[v-xminval] = iso_val['alpha'] self.color_arr[v-xminval] = iso_val['rgb'] if self.continuous: self.callbacks['setcolor']([new_valx1, self.color_arr[new_valx1-xminval:end-xminval+1]]) self.callbacks['setalpha']([start_p+xminval, self.alpha_arr[start_p:stop_p]]) if old_rgba: for rgba in old_rgba: v = rgba[0] self.alpha_arr[v-xminval] = rgba[1] self.color_arr[v-xminval] = rgba[2] self.callbacks['entries'](val_x1=new_valx1, val_x2=new_valx1+len_list-1) def mouse2Up(self, event): self.last_event = 'ButtonRelease-2' # update list of points dist = self.lastx - self.firstx sclx = self.sclx if dist == 0 : return if self.counter%20 == 0: diff = self.old_valx1 - self.values[self.select_shape[0]] else: diff = int(round(dist/sclx)) for k in self.select_shape: self.points[k] = (self.points[k][0]+dist, self.points[k][1]) self.values[k] = self.values[k]+diff # get alphas and colors left = self.left # get new value(scalar) of the first and last points of the shape new_valx1 = self.values[self.select_shape[0]] #first point len_list = len(self.alpha_list) end = self.values[self.select_shape[-1]] #last point if self.counter%20 != 0: delta = self.old_valx1-new_valx1 if delta < 0: #the shape moved to the right r_val = self.values[self.select_shape[-1]+1] if end >= r_val: if r_val == self.xmaxval: d = end - self.xmaxval end = r_val else: d = end-r_val+1 end = r_val-1 new_valx1 = end-len_list+1 if d>0: self.values[self.select_shape[0]: self.select_shape[-1]+1] = \ map(lambda val, d=d: val-d, self.values[self.select_shape[0]: self.select_shape[-1]+1]) start_p = self.old_valx1-self.xminval mid_p = new_valx1-self.xminval stop_p = mid_p+len_list self.alpha_arr[start_p:mid_p] = 0 self.alpha_arr[mid_p:stop_p] = self.alpha_list elif delta > 0: #the shape moved to the left l_val = self.values[self.select_shape[0]-1] if new_valx1 <= l_val: if l_val == self.xminval: d = self.xminval - new_valx1 new_valx1 = self.xminval else: d = l_val - new_valx1-1 new_valx1 = l_val+1 end = new_valx1+len_list-1 delta = self.old_valx1-new_valx1 if d < 0: self.values[self.select_shape[0]: self.select_shape[-1]+1] = \ map(lambda val, d=d: val+d, self.values[self.select_shape[0]: self.select_shape[-1]+1]) start_p = new_valx1-self.xminval mid_p = start_p+len_list stop_p = mid_p+delta self.alpha_arr[start_p:mid_p] = self.alpha_list self.alpha_arr[mid_p:stop_p] = 0 elif delta == 0: return self.color_arr[new_valx1-self.xminval:end-self.xminval+1] = \ self.rgb[:][:] # find scalar values of neighboring points of current shape next_l = self.values[self.select_shape[0]-1] next_r = self.values[self.select_shape[-1]+1] #print 'call to update_colors(%d,%d)'%(next_l-xminval,new_valx1-xminval) #update colors in the intervals outside of the shape self.update_colors(next_l-self.xminval, new_valx1-self.xminval) #print 'call to update_colors(%d,%d)'%(end-1-xminval, next_r-xminval) self.update_colors(end-self.xminval, next_r-self.xminval) #if there is any Iso vals in the range: # memorize current rgba values , make changes in self.alpha_arr # and self.color_arr, do callbacks with new alphas and colors # then assign old values to self.alpha_arr and self.color_arr old_rgba = None if len(self.isoval_inrange): old_rgba = [] for iso_val in self.isoval_inrange: v = iso_val['val'] old_rgba.append((v, self.alpha_arr[v-self.xminval], self.color_arr[v-self.xminval].tolist())) self.alpha_arr[v-self.xminval] = iso_val['alpha'] self.color_arr[v-self.xminval] = iso_val['rgb'] if self.counter%20 != 0: self.callbacks['entries'](val_x1=new_valx1, val_x2=new_valx1+len_list-1) if self.continuous: self.callbacks['setalpha']([start_p+self.xminval, self.alpha_arr[start_p:stop_p]]) if self.continuous: self.callbacks['setcolor']([next_l, self.color_arr[next_l-self.xminval:next_r+1-self.xminval]]) if old_rgba: for rgba in old_rgba: v = rgba[0] self.alpha_arr[v-self.xminval] = rgba[1] self.color_arr[v-self.xminval] = rgba[2] def apply_lut(self): """Called in non continuous mode (when the 'Apply LUT' button is pressed). """ if len(self.isoVals): for iso_val in self.isoVals: v = iso_val['val'] self.alpha_arr[v-self.xminval] = iso_val['alpha'] self.color_arr[v-self.xminval] = iso_val['rgb'] #self.callbacks['setalpha'] ([self.xminval, self.alpha_arr]) #self.callbacks['setcolor'] ([self.xminval, self.color_arr]) def addDot(self, event): ## self.last_event = 'Double-Button-1' self.last_event = 'ButtonRelease-1' c= self.canvas x = c.canvasx(event.x) y = c.canvasy(event.y) tag = c.gettags(Tkinter.CURRENT)[1] curr_ind = int(tag[4:]) # if line between two dots which values differ less than 2 is # picked - do nothing if self.points[curr_ind+1][0]-self.points[curr_ind][0]= l_scalar and v <= r_scalar: old_rgba.append((v, self.alpha_arr[v-xminval], self.color_arr[v-xminval].tolist())) self.alpha_arr[v-xminval] = iso_val['alpha'] self.color_arr[v-xminval] = iso_val['rgb'] if self.continuous: self.callbacks['setalpha']([scalars[0], self.alpha_arr[scalars[0]-xminval:scalars[2]+1-xminval]]) self.callbacks['setcolor']([l_scalar, self.color_arr[l_scalar-xminval: r_scalar-xminval+1]] ) if old_rgba: for rgba in old_rgba: v = rgba[0] self.alpha_arr[v-xminval] = rgba[1] self.color_arr[v-xminval] = rgba[2] self.callbacks['entries'](val_y='0', val_x1='0', val_x2='', val_r='1.0', val_g='1.0', val_b='1.0') def pick(self, event): current = self.canvas.gettags(Tkinter.CURRENT) print 'current' , current def set_colors(self, rgb, scalar1, scalar2, scalar3): """find range of data values(scalars) where colors are to be changed""" xminval = self.xminval if self.last_event == 'ButtonRelease-1' or \ self.last_event == 'ButtonRelease-2' or \ self.last_event == 'B1-Motion': ## print 'scalars(in set_colors)=[%d,%d,%d]'%(scalar1,scalar2,scalar3) red1, green1, blue1 = self.color_arr[scalar1] red2, green2, blue2 = rgb red3, green3, blue3 = self.color_arr[scalar3] d = scalar1-scalar2 if d != 0: Kr = (red1-red2)/d Kg = (green1-green2)/d Kb = (blue1-blue2)/d Cr = red1-Kr*scalar1 Cg = green1-Kg *scalar1 Cb = blue1-Kb*scalar1 s = Numeric.arange(scalar1, scalar2) self.color_arr[scalar1:scalar2] = \ Numeric.transpose(Numeric.array((Kr*s+Cr, Kg*s+Cg, Kb*s+Cb)).astype('f')) d = scalar2-scalar3 if d != 0: Kr = (red2-red3)/d Kg = (green2-green3)/d Kb = (blue2-blue3)/d Cr = red2-Kr*scalar2 Cg = green2-Kg *scalar2 Cb = blue2-Kb*scalar2 s = Numeric.arange(scalar2, scalar3) self.color_arr[scalar2:scalar3] = \ Numeric.transpose(Numeric.array((Kr*s+Cr, Kg*s+Cg, Kb*s+Cb)).astype('f')) self.color_arr[scalar2] = rgb curr_color = self.color_arr[scalar2] tkcolor = colorUtil.TkColor(curr_color) l_color = colorUtil.TkColor(self.color_arr[scalar1]) r_color = colorUtil.TkColor(self.color_arr[scalar3]) self.canvas.itemconfig('dot%d'%(self.curr_ind+1,), fill=r_color) self.canvas.itemconfig('dot%d'%(self.curr_ind-1,), fill=l_color) self.canvas.itemconfig('selected', fill=tkcolor) else : return def set_hue_satur_value(self, hsv): """find range of data values(scalars) where hue and saturation are to be changed. (Colormap object callback).""" tags = self.canvas.gettags('selected') if len(tags) == 0: # nothing is selected return if tags[0] == 'isodot': rgb = ToRGB(hsv) iso_ind = int(tags[1][6:]) self.setIsoColor(iso_ind, rgb) return xminval = self.xminval if self.last_event == 'ButtonRelease-1' or \ self.last_event == 'ButtonRelease-2': curr_ind = self.curr_ind scalar1 = self.values[curr_ind-1]-xminval scalar2 = self.values[curr_ind]-xminval scalar3 = self.values[curr_ind+1]-xminval self.last_event = 'ButtonRelease-1' ## print 'scalars(in set_colors)=[%d,%d,%d]'%(scalar1,scalar2,scalar3) else : return rgb = ToRGB(hsv) #print "hsv in set_hue_satur.. ", hsv, "rgb", rgb #print "scalar1: %d, scalar2: %d, scalar3: %d"%(scalar1,scalar2,scalar3) self.set_colors(rgb, scalar1, scalar2, scalar3) #if there is any Iso vals in the range: # memorize current rgb values , make changes in self.color_arr, #do callback with new colors, then assign old values to self.color_arr old_rgb = None if len(self.isoval_inrange): old_rgb = [] for iso_val in self.isoval_inrange: v = iso_val['val'] old_rgb.append((v, self.color_arr[v-xminval].tolist())) self.color_arr[v-xminval] = iso_val['rgb'] if self.continuous: self.callbacks['setcolor']([scalar1+xminval, self.color_arr[scalar1:scalar3+1]]) if old_rgb: for c in old_rgb: self.color_arr[c[0]-xminval] = c[1] self.callbacks['entries'](val_r=round(rgb[0],2), val_g=round(rgb[1],2), val_b=round(rgb[2],2)) def set_red_green_blue(self, rgb): """Sets new rgb (typed in entries) to selected value(dot), and updates(interpolates) colors between this dot and two neighboring dots""" tags = self.canvas.gettags('selected') if len(tags) == 0: # nothing is selected return if tags[0] != 'dot': return xminval = self.xminval if self.last_event == 'ButtonRelease-1' or \ self.last_event == 'ButtonRelease-2': curr_ind = self.curr_ind scalar1 = self.values[curr_ind-1]-xminval scalar2 = self.values[curr_ind]-xminval scalar3 = self.values[curr_ind+1]-xminval self.last_event = 'ButtonRelease-1' ## print 'scalars(in set_colors)=[%d,%d,%d]'%(scalar1,scalar2,scalar3) else : return self.set_colors(rgb, scalar1, scalar2, scalar3) #if there is any Iso vals in the range: # memorize current rgb values , make changes in self.color_arr, #do callback with new colors, then assign old values to self.color_arr old_rgb = None if len(self.isoval_inrange): old_rgb = [] for iso_val in self.isoval_inrange: v = iso_val['val'] old_rgb.append((v, self.color_arr[v-xminval].tolist())) self.color_arr[v-xminval] = iso_val['rgb'] if self.continuous: self.callbacks['setcolor']([scalar1+xminval, self.color_arr[scalar1:scalar3+1]]) if old_rgb: for c in old_rgb: self.color_arr[c[0]-xminval] = c[1] def update_colors(self,scalar1, scalar2): red1 = self.color_arr[scalar1][0] red2 = self.color_arr[scalar2][0] green1 = self.color_arr[scalar1][1] green2 = self.color_arr[scalar2][1] blue1 = self.color_arr[scalar1][2] blue2 = self.color_arr[scalar2][2] d = scalar2-scalar1 if d == 0: return [scalar1, scalar2, Numeric.zeros((0,3),'f')] r = (red2-red1)/d g = (green2-green1)/d b = (blue2-blue1)/d s = Numeric.arange(d) self.color_arr[scalar1:scalar2] = \ Numeric.transpose(Numeric.array((r*s+red1, g*s+green1, b*s+blue1)).astype('f')) def set_ISOcolor(self, rgb): """change the color of selected Iso value when new rgb values are entered in ISO entries """ tags = self.canvas.gettags('selected') if len(tags) == 0: # nothing is selected return if tags[0] != 'isodot': return iso_ind = int(tags[1][6:]) self.setIsoColor(iso_ind, rgb) def setIsoColor(self, iso_ind, rgb): tkcolor = colorUtil.TkColor(rgb) self.canvas.itemconfig('isodot%d'%(iso_ind,), fill=tkcolor) val = self.isoVals[iso_ind]['val'] iso_rgb = (round(rgb[0],2), round(rgb[1],2), round(rgb[2],2)) self.isoVals[iso_ind]['rgb'] = iso_rgb if self.continuous: self.callbacks['setcolor']([val, Numeric.array([rgb],'f')]) self.callbacks['entries'](iso_rgb = iso_rgb) def bind_tags(self): self.canvas.tag_bind('box', '', self.drawShape) self.canvas.tag_bind('line', '', self.addDot) self.canvas.tag_bind('dot', '', self.mouse2Down) self.canvas.tag_bind('dot','', self.mouse1Move) self.canvas.tag_bind('dot','', self.mouse2Move) self.canvas.tag_bind('dot', '', self.mouse2Up) def unbind_tags(self): self.canvas.tag_unbind('box', '') self.canvas.tag_unbind('line', '') self.canvas.tag_unbind('dot', '') self.canvas.tag_unbind('dot','') self.canvas.tag_unbind('dot','') self.canvas.tag_unbind('dot', '') def calculate_points(self, values, alphas): """Calculates points from given alpha values and scalar values at LUT points""" self.points = [(self.left, self.bott)] for i in range(1, len(values)-1): self.points.append(((values[i]-self.xminval)*self.sclx+self.left, self.bott-self.scly*alphas[i])) self.points.append((self.right, self.bott)) #print "points: ", self.points def calculate_alphas(self, values = None, alphas_points=None): """Calculate alpha array and values of the points from self.points list""" scly = self.scly bott = self.bott sclx = self.sclx left = self.left xminval = self.xminval if not values: values = [] for point in self.points: s = int(round((point[0]-left)/self.sclx))+xminval if s > self.xmaxval: s = self.xmaxval values.append(s) values[0] = xminval values[-1] = self.xmaxval if not alphas_points: alphas_points = [] for point in self.points: alphas_points.append(round((bott-point[1])/scly)) ## print 'values=', values k=0 for j in range(len(alphas_points)-1): d = (values[j]-values[j+1]) if d == 0: ## print 'values[%s],[%s]:%s,%s'%(j,j+1,values[j],values[j+1]), 'd=0' continue K = (alphas_points[j]-alphas_points[j+1])/d C = alphas_points[j]-K*values[j] for s in range(values[j], values[j+1]): self.alpha_arr[k] = K*s+C k=k+1 ## print 'k=',k, 's=',s, 'j=',j self.alpha_arr[k] = K*values[j+1]+C self.values = values def set_dotsize(self, rad, type = "dot"): """Set a new radius of the widget's dot (type = 'dot') or isodot (type = 'isodot').""" c = self.canvas if type == "dot": if rad == self.dotrad: return d = self.dotrad - rad self.dotrad = rad points=self.points num_dots = self.shapes[-1] for ind in range(1, num_dots): x0 = points[ind][0]-rad x1 = points[ind][0]+rad y0 = points[ind][1]-rad y1 = points[ind][1]+rad c.coords("dot%d"%ind , x0, y0, x1, y1) elif type == "isodot": if rad == self.isodotrad: return d = self.isodotrad - rad self.isodotrad = rad num_isodots = len(self.isoVals) for ind in range(num_isodots): coords = c.coords("isoline%d"%ind)[2:] x0 = coords[0]-rad x1=coords[0]+rad y0=coords[1]-rad y1=coords[1]+rad c.coords("isodot%d"%ind , x0, y0, x1, y1) class Colormap(CallbackFunctions): def __init__(self, master, file=None): self.callbacks = [] self.img = Tkinter.PhotoImage(file=file, master=master) width = self.img.width() height = self.img.height() self.axis_len = max(width, height)/2 self.X0 = width/2 self.Y0 = height/2 self.lastx = self.X0 self.lasty = self.Y0 self.hsv =[0.0, 0.0, 0.0] font = '-*-Helvetica-Bold-R-Normal-*-*-160-*-*-*-*-*-*' Tkinter.Label(master, text='Hue/Saturation', font=font,width=20).grid(row=0,column=0,sticky='NW') Tkinter.Label(master, text='Value', font=font).grid(row=0,column=1,sticky='NW') self.canvas = Tkinter.Canvas(master, width=width, height=height) self.canvas.grid(row=1, column=0, sticky='W') self.canvas.create_image(0,0, anchor='nw',image=self.img) rad=4 self.canvas.create_oval(self.X0-rad, self.Y0-rad, self.X0+rad, self.Y0+rad, fill='white', outline='black', activefill='gray68', tags='oval') Tkinter.Widget.bind(self.canvas, "", self.mouseDown) Tkinter.Widget.bind(self.canvas,'', self.mouseMove) Tkinter.Widget.bind(self.canvas,'', self.mouseUp) self.scale = Tkinter.Scale(master, orient=Tkinter.VERTICAL, length=height-5, from_=0.0, to=1.0, tickinterval=0, font=font, resolution=0.05, command=lambda v,s=self: s.get_value(v)) self.scale.grid(row=1, column=1, sticky='W') self.scale.set(1.0) self.updateval = 1 def get_value(self, val): hsv = [self.hsv[0], self.hsv[1], float(val)] if self.updateval: self.callbacks[0](hsv) else: self.updateval = 1 self.hsv = hsv def mouseDown(self, event): x = self.canvas.canvasx(event.x) y = self.canvas.canvasy(event.y) self.canvas.delete('oval') rad = 4 self.canvas.create_oval(x-rad, y-rad, x+rad, y+rad, activefill='gray68', fill='white', outline='black', tags='oval') self.lastx = x self.lasty = y def get_hsv(self, X, Y): if X!= 0 or Y!=0: hue = math.acos(X/math.sqrt(X*X+Y*Y)) if Y < 0: hue = 2*_PI-hue else: hue = 0 hue = hue/(2*_PI) dist = math.sqrt(X*X+Y*Y) if dist > self.axis_len: dist = self.axis_len sat = dist/self.axis_len val = self.scale.get() if hue > 1.0: hue = 1.0 elif hue < 0.0 : hue = 0.0 if sat > 1.0: sat = 1.0 elif sat < 0.0 : sat = 0.0 if val > 1.0: val = 1.0 elif val < 0.0 : val = 0.0 self.hsv = [hue, sat, val] return [hue, sat, val] def mouseMove(self, event): c = self.canvas x = c.canvasx(event.x) y = c.canvasy(event.y) if y < 0: y = 0 elif y > self.Y0*2: y=self.Y0*2 if x < 0: x = 0 elif x > self.X0*2: x = self.X0 * 2 c.move('oval', x-self.lastx, y-self.lasty) self.lastx = x self.lasty = y def mouseUp(self, event): X = self.lastx-self.X0 Y = self.Y0-self.lasty hsv = self.get_hsv(X,Y) self.callbacks[0](hsv) def show_color(self, hsv): h = hsv[0]*2*_PI s = hsv[1]*self.axis_len v = round(hsv[2],2) x = math.cos(h)*s+self.X0 y = self.Y0-math.sin(h)*s self.canvas.move('oval', x-self.lastx, y-self.lasty) self.updateval = 0 self.scale.set(v) self.lastx = x self.lasty = y self.hsv = hsv if __name__ == '__main__': def MyCallback1(value): print 'callback with alpha argument' #print 'alpha = ', value def MyCallback2(value): #print 'colors =', value print 'callback with color argument' root = Tkinter.Tk() root.title('Transfer Function') #t = TableManager(root,xmaxval=50) #t = TableManager(root,xmaxval=4095) t = TableManager(master=root, ymaxval=255, xminval = 0, xmaxval=255, alphaCallback=MyCallback1, colorCallback=MyCallback2) # mainloop() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/cw.ppm0000644000175000017500000015125007453425345025243 0ustar debiandebianP6 # CREATOR: The GIMP's PNM Filter Version 1.0 134 134 255 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿiÿnÿsÿwÿ|ÿ€ÿ…ÿ‰ÿÿ’ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿKÿPÿUÿYÿ^ÿcÿgÿlÿqÿuÿzÿÿƒÿˆÿŒÿÿ”ÿ˜ÿœÿ¡ÿ¥ÿ©ÿ®ÿ²ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ8ÿ=ÿBÿGÿMÿRÿVÿ[ÿ`ÿdÿiÿnÿsÿwÿ|ÿÿ…ÿ‰ÿŽÿ’ÿ–ÿ›ÿŸÿ¢ÿ§ÿ«ÿ¯ÿ´ÿ¸ÿ¼ÿÀÿÃÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ*ÿ/ÿ4ÿ:ÿ?ÿEÿJÿOÿUÿYÿ^ÿcÿ gÿ lÿ qÿ uÿ zÿ ÿ ƒÿ ˆÿ Œÿ ‘ÿ ”ÿ ˜ÿ ÿ ¡ÿ ¥ÿ ªÿ®ÿ²ÿµÿºÿ¾ÿÂÿÆÿÊÿÎÿÑÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!ÿ'ÿ,ÿ1ÿ7ÿ<ÿBÿGÿLÿ Qÿ Vÿ [ÿ `ÿ dÿ iÿnÿsÿwÿ|ÿÿ…ÿŠÿŽÿ’ÿ—ÿ›ÿŸÿ¤ÿ§ÿ «ÿ °ÿ ´ÿ ¸ÿ ¼ÿ ÀÿÅÿÈÿÌÿÐÿÔÿØÿÛÿßÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ$ÿ)ÿ/ÿ4ÿ9ÿ>ÿ Cÿ Hÿ Oÿ TÿYÿ^ÿcÿgÿlÿqÿuÿzÿÿƒÿˆÿÿ‘ÿ”ÿšÿÿ¡ÿ¦ÿªÿ®ÿ³ÿ·ÿºÿ¾ÿ Âÿ Æÿ Êÿ ÏÿÓÿÖÿÚÿÞÿáÿãþæûÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!ÿ&ÿ+ÿ0ÿ 5ÿ <ÿ AÿFÿKÿPÿVÿ[ÿ`ÿdÿiÿnÿrÿwÿ|ÿÿ…ÿŠÿŽÿ“ÿ—ÿ›ÿ ÿ¤ÿ§ÿ­ÿ°ÿ´ÿ¹ÿ½ÿÁÿÅÿÈÿÌÿÐÿ Ôÿ Ùÿ Ýÿáÿãþæüèûëúíùÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿ ÿ $ÿ )ÿ .ÿ 3ÿ8ÿ=ÿCÿHÿMÿRÿXÿ]ÿcÿgÿlÿqÿuÿzÿÿƒÿˆÿÿ‘ÿ–ÿšÿÿ¢ÿ¦ÿªÿ¯ÿ³ÿ·ÿºÿÀÿÃÿÇÿËÿÏÿÓÿÖÿÚÿßÿ âÿ äþ çüéûìúï÷ñöÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿ ÿ ÿ ÿ ÿ!ÿ&ÿ+ÿ0ÿ5ÿ:ÿ?ÿEÿJÿPÿUÿZÿ_ÿdÿiÿ nÿ rÿ wÿ!|ÿ!ÿ!…ÿ"Šÿ"ÿ"“ÿ"—ÿ"œÿ" ÿ!¤ÿ!©ÿ!­ÿ °ÿ µÿ ¹ÿ½ÿÁÿÅÿÊÿÎÿÑÿÕÿÙÿÝÿáÿãþæü èû ëú íùð÷òöõõ÷ôÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿ ÿÿÿÿ ÿ$ÿ)ÿ.ÿ1ÿ7ÿ=ÿBÿGÿLÿQÿXÿ]ÿ!bÿ"gÿ$lÿ$qÿ%uÿ%zÿ%ÿ&ƒÿ&ˆÿ&ÿ'‘ÿ'–ÿ'šÿ'Ÿÿ&¢ÿ&¦ÿ&«ÿ%¯ÿ%³ÿ%¸ÿ$¼ÿ$Àÿ"Ãÿ!ÇÿËÿÏÿÔÿØÿÛÿßÿãÿæþèüëûíú ðù ñ÷ôõöôùòûñþðÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿ"ÿ&ÿ+ÿ0ÿ4ÿ9ÿ>ÿEÿJÿ Oÿ!Tÿ"Yÿ$^ÿ%dÿ&iÿ'nÿ)rÿ)wÿ*|ÿ*€ÿ*…ÿ+Šÿ+ÿ+“ÿ,˜ÿ,œÿ+ ÿ+¥ÿ+©ÿ*­ÿ*²ÿ*µÿ)¹ÿ)¾ÿ'Âÿ&Æÿ%Êÿ$Îÿ"Ñÿ!Õÿ ÚÿÞÿâÿäÿçüéûìúïùñ÷ôö öõ ùôûòþñÿïÿëÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿ ÿ%ÿ)ÿ.ÿ3ÿ7ÿ<ÿ Aÿ!Fÿ"Kÿ$Qÿ%Vÿ&[ÿ)`ÿ*eÿ+lÿ,qÿ.uÿ.zÿ.ÿ/ƒÿ/ˆÿ/ÿ0‘ÿ0–ÿ0›ÿ0Ÿÿ0¢ÿ0§ÿ/«ÿ/¯ÿ/´ÿ.¸ÿ.¼ÿ.Àÿ,Åÿ+Èÿ*Ìÿ)Ðÿ&Ôÿ%Øÿ$Ûÿ"ßÿ!ãÿ æþèüëûíúðùò÷õö÷õúò üñ ÿðÿíÿéÿæÿâÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!ÿ ÿÿ ÿ ÿÿÿÿÿ"ÿ &ÿ!+ÿ!0ÿ"5ÿ$9ÿ$>ÿ%Cÿ&Hÿ'Mÿ)Rÿ*Yÿ+^ÿ,cÿ.hÿ/mÿ0rÿ1wÿ3|ÿ3€ÿ3…ÿ4Šÿ4ÿ4“ÿ5˜ÿ5œÿ5¡ÿ5¥ÿ4©ÿ4®ÿ4²ÿ3µÿ3ºÿ3¾ÿ1Âÿ0Æÿ/Ëÿ.Ïÿ,Óÿ+Öÿ*Úÿ)Þÿ'âÿ&æÿ$èþ"ëü íûðùñ÷ôööõùôûòþñÿï ÿë ÿçÿãÿßÿÛÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ'ÿ'ÿ&ÿ% ÿ$ ÿ$ÿ"ÿ!ÿ"ÿ" ÿ$%ÿ%)ÿ%.ÿ&3ÿ'7ÿ'<ÿ)Aÿ*Fÿ*Kÿ+Pÿ,Uÿ.Zÿ/_ÿ1eÿ3kÿ4pÿ5uÿ7zÿ7ÿ8ƒÿ8ˆÿ8ÿ9‘ÿ9–ÿ9›ÿ:Ÿÿ:¤ÿ9§ÿ9«ÿ9°ÿ8´ÿ8¸ÿ8½ÿ7Áÿ7Åÿ5Èÿ4Ìÿ3Ðÿ1Õÿ/Ùÿ.Ýÿ,áÿ+äÿ*çþ)éü&ìû$ïú!ñù ô÷ööùõûôþòÿðÿìÿè ÿä ÿáÿÝÿÙÿÕÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ/ÿ.ÿ,ÿ+ ÿ+ ÿ*ÿ)ÿ)ÿ'ÿ&ÿ'"ÿ)'ÿ)+ÿ*0ÿ+5ÿ+9ÿ,>ÿ.Cÿ.Gÿ/Lÿ0Rÿ1Xÿ3]ÿ4bÿ5gÿ7mÿ8rÿ9wÿ:|ÿ<€ÿ<…ÿ=Šÿ=ÿ=“ÿ>˜ÿ>ÿ>¡ÿ>¥ÿ>ªÿ>®ÿ=²ÿ=·ÿ=ºÿ<¾ÿ<Ãÿ:Çÿ9Ëÿ8Ïÿ7Óÿ5Öÿ4Úÿ3ßÿ1ãÿ0æÿ/èþ,ëü*íû'ðú&òù$õö!÷õúôüòÿñÿïÿéÿæÿâ ÿÞ ÿÚÿÖÿÓÿÏÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ7ÿ5ÿ4ÿ4ÿ3 ÿ1ÿ0ÿ0ÿ/ÿ.ÿ,ÿ, ÿ,%ÿ,*ÿ..ÿ/3ÿ/8ÿ0<ÿ1Aÿ1Fÿ3Jÿ4Oÿ4Tÿ5Zÿ7_ÿ8dÿ:iÿzÿ?ÿAƒÿAˆÿAÿB‘ÿB–ÿB›ÿCŸÿC¤ÿC§ÿC­ÿB°ÿB´ÿB¹ÿA½ÿAÁÿAÆÿ?Êÿ>Îÿ=Ñÿ<Õÿ:Ùÿ8Ýÿ7áÿ5äÿ4èþ3ëü0íû.ðú,ñù*ô÷'öö%ùõ$ûô!þòÿðÿìÿèÿäÿáÿÛÿØ ÿÔÿÐÿÌÿÈÿÅÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ=ÿ<ÿ<ÿ:ÿ9 ÿ8ÿ8ÿ7ÿ5ÿ4ÿ4ÿ3 ÿ1"ÿ1'ÿ1,ÿ30ÿ35ÿ4:ÿ5>ÿ5Cÿ7Hÿ8Lÿ8Qÿ9Vÿ:[ÿ<`ÿ=gÿ>lÿ?qÿAvÿB{ÿC€ÿE…ÿFŠÿFŽÿF“ÿG˜ÿGÿG¡ÿH¦ÿHªÿG®ÿG³ÿG·ÿFºÿFÀÿFÃÿEÇÿCËÿBÐÿAÔÿ?Øÿ>Ûÿ=ßÿ<ãÿ:çÿ9éþ7ìü4ïû3ñú0ôù.ö÷+ùö*ûô'þò%ÿñ"ÿí ÿéÿæÿâÿÞÿÚÿÖÿÓ ÿÎÿÊÿÆÿÂÿ¾ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿCÿBÿBÿA ÿA ÿ?ÿ>ÿ=ÿ=ÿ<ÿ:ÿ9!ÿ9$ÿ8&ÿ7*ÿ7.ÿ73ÿ88ÿ9=ÿ9Aÿ:FÿYÿ>^ÿ?cÿBhÿCnÿEsÿFyÿG~ÿHƒÿJˆÿJÿK‘ÿK–ÿK›ÿLŸÿL¤ÿL©ÿL­ÿL°ÿLµÿK¹ÿK½ÿKÂÿJÆÿJÊÿHÎÿGÑÿFÕÿEÚÿCÞÿBâÿ?æÿ>èÿ=ëþ:íü9ðú7òù4õ÷1÷ö0úõ.üô+ÿò)ÿï&ÿë$ÿç!ÿãÿßÿÛÿØÿÔÿÐÿÌ ÿÈ ÿÅÿÀÿ¼ÿ¸ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿHÿHÿG ÿG ÿFÿEÿEÿCÿBÿAÿA!ÿ?$ÿ>'ÿ=*ÿ=,ÿ<0ÿ<5ÿ=:ÿ=>ÿ>Cÿ?Hÿ?MÿAQÿBVÿB[ÿC`ÿEeÿFkÿGpÿHuÿJ{ÿK€ÿL…ÿMŠÿOŽÿO“ÿP˜ÿPÿP¡ÿQ¦ÿQªÿQ¯ÿQ³ÿP·ÿP¼ÿPÀÿOÃÿOÈÿMÌÿLÐÿKÔÿJØÿHÛÿGßÿFäÿEèÿCëþAíü>ðû=ñú:ôù8ö÷7ùö4ûõ1þô/ÿñ,ÿí*ÿè'ÿä$ÿá!ÿÝÿÙÿÕÿÑÿÎÿÊÿÆ ÿ ÿ¾ÿ¹ÿµÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿOÿMÿM ÿL ÿLÿLÿKÿJÿJÿHÿG"ÿF%ÿF'ÿE+ÿC.ÿB0ÿB4ÿA8ÿA=ÿBAÿCFÿCKÿEOÿFTÿFYÿG]ÿHbÿHhÿKmÿLrÿMwÿO|ÿPƒÿQˆÿRÿR‘ÿT–ÿT›ÿUŸÿU¤ÿU©ÿV­ÿV²ÿUµÿU¹ÿU¾ÿTÂÿTÆÿRËÿRÏÿQÓÿPÖÿOÚÿMÞÿLâÿKæÿHéÿGìþEïüCñûAôú>ö÷=ùö:ûõ8þô5ÿò4ÿï0ÿë.ÿç+ÿã'ÿß%ÿÚ"ÿÖÿÓÿÏÿËÿÇÿÃÿÀ ÿ¼ ÿ¸ÿ³ÿ¯ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿTÿTÿRÿR ÿRÿQÿQÿQÿPÿO ÿM"ÿM%ÿL)ÿK+ÿJ.ÿJ1ÿH4ÿG7ÿG:ÿF?ÿGCÿGHÿHMÿJQÿJVÿK[ÿL_ÿLdÿMiÿOpÿPuÿQzÿRÿT„ÿUŠÿVŽÿX“ÿY˜ÿYœÿY¡ÿZ¦ÿZ«ÿZ¯ÿZ³ÿZ¸ÿZ¼ÿYÀÿYÅÿXÈÿXÌÿVÐÿUÕÿTÙÿRÝÿQáÿPäÿOèÿMëþKíüJðûGòúEõùB÷÷Aúö>üõ<ÿô:ÿð7ÿì4ÿè1ÿä.ÿá+ÿÝ)ÿÙ%ÿÕ"ÿÑ ÿÎÿÈÿÅÿÁÿ½ÿ¹ ÿµÿ°ÿ­ÿ©ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿZÿYÿYÿY ÿXÿXÿXÿVÿVÿU ÿU$ÿT&ÿR)ÿR,ÿQ/ÿP1ÿO5ÿO8ÿM:ÿL>ÿKBÿKFÿLKÿMPÿMTÿOYÿP^ÿPbÿQgÿRlÿTqÿUvÿV|ÿXÿY†ÿZŒÿ[‘ÿ]–ÿ]›ÿ^Ÿÿ^¤ÿ^©ÿ_­ÿ_²ÿ_µÿ_ºÿ^¾ÿ^Âÿ^Çÿ]Ëÿ]Ïÿ[ÓÿZÖÿYÚÿXßÿVãÿUçÿTëÿQíþPðüMòûKôúHöùGù÷EûõBþôAÿñ>ÿí:ÿé8ÿæ5ÿâ1ÿÞ/ÿÚ,ÿÖ)ÿÓ&ÿÏ$ÿË ÿÇÿÂÿ¾ÿºÿ·ÿ³ ÿ¯ÿªÿ¦ÿ¢ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ_ÿ_ÿ_ÿ^ ÿ^ÿ^ÿ]ÿ]ÿ[ÿ[ ÿ[$ÿZ&ÿZ*ÿY,ÿX/ÿV3ÿV5ÿU8ÿT<ÿT>ÿRAÿQEÿPHÿQMÿQRÿRVÿT[ÿT`ÿUdÿViÿVnÿXsÿYyÿZ~ÿ[„ÿ]‰ÿ^Žÿ`“ÿ`˜ÿbœÿb¡ÿc¦ÿc«ÿc¯ÿd´ÿd¸ÿc¼ÿcÁÿcÅÿbÈÿbÎÿ`Ñÿ`Õÿ^Ùÿ]Ýÿ[áÿZäÿYéÿXìÿVïþTñûQôúOöùMù÷KûöHþõFÿôEÿðAÿì>ÿç<ÿã8ÿß5ÿÛ3ÿØ/ÿÔ,ÿÐ*ÿÌ&ÿÈ$ÿÅ ÿÁÿ¼ÿ¸ÿ´ÿ°ÿ­ ÿ§ÿ¤ÿ ÿœÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿeÿdÿd ÿcÿcÿcÿbÿbÿb ÿ`$ÿ`&ÿ`*ÿ_.ÿ_0ÿ^3ÿ]7ÿ[9ÿ[<ÿZ?ÿYBÿXEÿXHÿVKÿUPÿVUÿXYÿX^ÿYcÿZgÿZlÿ[qÿ]vÿ^{ÿ_€ÿ`…ÿbŒÿc‘ÿd–ÿe›ÿeŸÿg¤ÿg©ÿh­ÿh²ÿh·ÿhºÿh¾ÿhÃÿgÇÿgËÿeÐÿeÔÿdØÿcÛÿbßÿ`ãÿ_çÿ^ëÿ]íþZðüXòûUõúT÷ùQú÷OüöLÿõKÿñHÿíEÿéBÿæ?ÿâ<ÿÞ9ÿÚ7ÿÕ3ÿÑ0ÿÎ.ÿÊ*ÿÆ&ÿÂ$ÿ¾ ÿ¹ÿµÿ²ÿ®ÿªÿ¦ ÿ¡ÿÿšÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿkÿkÿi ÿi ÿiÿhÿhÿhÿgÿg"ÿg&ÿe*ÿe.ÿd0ÿd4ÿc7ÿc9ÿb=ÿ`?ÿ_Bÿ_Fÿ^Hÿ]Kÿ]Oÿ[Rÿ[Vÿ[[ÿ]`ÿ^dÿ^iÿ_nÿ`sÿ`yÿb~ÿcƒÿdˆÿeÿg’ÿi˜ÿkœÿk¡ÿl¦ÿlªÿl¯ÿm´ÿm¸ÿm½ÿmÁÿlÅÿlÊÿkÎÿkÑÿkÕÿiÚÿgÞÿeâÿdæÿcéÿbíÿ`ðþ^òü[ôûZöùXù÷UûöRþõQÿòOÿïKÿëHÿçFÿãBÿß?ÿÛ=ÿØ9ÿÔ7ÿÐ4ÿÌ0ÿÇ.ÿÃ*ÿÀ&ÿ¼"ÿ¸ÿ³ÿ¯ÿ«ÿ§ÿ¤ ÿŸ ÿ›ÿ—ÿ“ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿpÿpÿp ÿp ÿnÿnÿnÿmÿmÿm"ÿl%ÿl)ÿk,ÿk0ÿk4ÿi8ÿi:ÿh=ÿhAÿgCÿeFÿdJÿdLÿcOÿbRÿ`Uÿ`Yÿ`^ÿbcÿbgÿclÿdqÿduÿezÿgÿh…ÿiŠÿkÿl”ÿmšÿnŸÿp¤ÿp©ÿq­ÿq²ÿq·ÿrºÿrÀÿqÃÿqÇÿqÌÿpÐÿpÔÿnØÿmÛÿlßÿkäÿièÿhìÿgïþdñübôû`öú^ùù[û÷YþöXÿôUÿðRÿìOÿèLÿäJÿáFÿÝCÿÙAÿÕ=ÿÑ:ÿÎ8ÿÊ4ÿÅ0ÿÁ,ÿ½)ÿ¹%ÿµ"ÿ°ÿ­ÿ©ÿ¥ÿ¡ÿ ÿ˜ ÿ”ÿ‘ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿuÿuÿu ÿuÿuÿsÿsÿrÿr!ÿr%ÿq)ÿq,ÿq/ÿp3ÿp7ÿp:ÿn>ÿnAÿmCÿlGÿlJÿkLÿiPÿhRÿhUÿgYÿe[ÿe`ÿeeÿgiÿhnÿhsÿiwÿk|ÿkÿl†ÿmÿn’ÿq—ÿrœÿs¡ÿs¦ÿuªÿu¯ÿv´ÿv¹ÿv½ÿvÁÿvÆÿvÊÿuÎÿuÓÿsÖÿsÚÿrÞÿqâÿnæÿmëÿlíÿkðþhòügõûd÷úbúù_üö^ÿõ[ÿòYÿïUÿëRÿçPÿâLÿÞJÿÚGÿÖCÿÓAÿÏ>ÿË:ÿÇ7ÿÃ3ÿ¾/ÿº,ÿ·)ÿ³%ÿ¯!ÿªÿ¦ÿ¢ÿŸÿ›ÿ– ÿ’ÿŽÿ‰ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿzÿzÿz ÿzÿzÿzÿyÿyÿy!ÿw$ÿw'ÿw+ÿv/ÿv3ÿv7ÿu9ÿu=ÿsAÿsEÿsGÿrKÿqMÿqPÿpTÿnVÿmYÿm]ÿl_ÿkcÿkhÿllÿlqÿmvÿnzÿnÿp„ÿq‰ÿrŽÿs“ÿušÿvŸÿw¤ÿy©ÿy­ÿz²ÿz·ÿ{ºÿ{Àÿ{Ãÿ{ÈÿzÌÿzÐÿyÕÿyÙÿwÝÿváÿuäÿsèÿrìÿqðÿnòümôûköúhùùeû÷dþöbÿô_ÿð]ÿìYÿèVÿäTÿáPÿÝMÿÙKÿÕGÿÐEÿÌAÿÈ=ÿÅ9ÿÁ7ÿ¼3ÿ¸/ÿ´+ÿ°'ÿ­$ÿ§!ÿ¤ÿ ÿœÿ˜ÿ“ÿ ÿŒÿ†ÿƒÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿ~ ÿ~$ÿ~'ÿ|+ÿ|.ÿ{1ÿ{5ÿ{9ÿz=ÿzAÿzCÿyGÿyKÿyMÿwQÿvTÿuVÿuZÿs]ÿr_ÿrcÿqeÿpkÿpnÿqsÿryÿr|ÿsÿu†ÿuŒÿv‘ÿw–ÿz›ÿ{¡ÿ|¦ÿ~ªÿ~¯ÿ´ÿ¸ÿ½ÿ€Âÿ€ÆÿÊÿÏÿ~Óÿ~Öÿ~Úÿ|ßÿ{ãÿzçÿwëÿvïÿuñþsôüqöûnùúlûùkþ÷hÿõeÿñcÿí_ÿé]ÿæZÿâVÿÞTÿÚQÿÖMÿÓKÿÏGÿÊCÿÆAÿÂ=ÿ¾9ÿº5ÿµ1ÿ².ÿ®+ÿª'ÿ¦$ÿ¡ ÿÿšÿ–ÿ‘ÿ ÿˆÿ„ÿ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ„ÿ„ÿ„ ÿ„ÿ„ÿ„ÿ„ÿƒÿƒ"ÿƒ&ÿƒ*ÿ.ÿ1ÿ5ÿ€8ÿ€<ÿ€?ÿCÿGÿKÿ~Mÿ~Qÿ~Uÿ|Xÿ{Zÿz^ÿz`ÿycÿwgÿviÿvmÿuqÿvvÿv{ÿwÿy„ÿy‰ÿzŽÿ{“ÿ|˜ÿ~ÿ¢ÿ€§ÿ­ÿƒ²ÿƒ·ÿ„ºÿ„Àÿ„Åÿ„Èÿ„Ìÿ„ÑÿƒÕÿƒÙÿÝÿ€áÿæÿ~éÿ|íÿ{ðÿzòþwõüu÷úrúùqü÷nÿölÿôiÿïgÿëcÿç`ÿã^ÿßZÿÛXÿØUÿÔQÿÐMÿÌKÿÇGÿÃCÿÀ?ÿ¼<ÿ¸8ÿ³5ÿ¯1ÿ«.ÿ§*ÿ¤&ÿŸ"ÿ›ÿ—ÿ’ÿŽÿŠÿ… ÿÿ~ÿyÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ‰ÿ‰ÿ‰ÿ‰ ÿ‰ÿ‰ÿ‰ÿˆÿˆ!ÿˆ%ÿˆ)ÿˆ,ÿˆ0ÿ†4ÿ†8ÿ†<ÿ…?ÿ…Bÿ…Fÿ„Jÿ„MÿƒQÿƒUÿƒXÿ[ÿ^ÿ€`ÿdÿ~gÿ~iÿ|mÿ{pÿ{sÿ{yÿ{~ÿ|ÿ|†ÿ~Œÿÿ”ÿ›ÿƒ ÿ„¥ÿ…ªÿ†¯ÿ†´ÿˆ¸ÿˆ½ÿ‰Âÿ‰Æÿ‰Ëÿ‰ÏÿˆÓÿˆØÿ†Ûÿ†ßÿ…ãÿ„çÿƒëÿðÿòþ~ôü{öûyùúwûùuþ÷rÿõpÿñmÿíiÿégÿædÿâ`ÿÝ^ÿÙ[ÿÕXÿÑUÿÎQÿÊMÿÆJÿÁFÿ½Bÿ¹?ÿµ<ÿ²8ÿ­4ÿ©0ÿ¥,ÿ¡)ÿœ%ÿ˜!ÿ”ÿÿŒÿ†ÿƒ ÿÿzÿvÿrÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿŽÿŽÿŽ ÿŽÿŽÿŽÿÿÿ$ÿ'ÿ+ÿ/ÿ4ÿ7ÿŒ:ÿŒ>ÿŠBÿŠFÿŠJÿ‰Lÿ‰Pÿ‰TÿˆXÿˆ[ÿˆ_ÿ†bÿ†dÿ…hÿ„kÿƒmÿƒqÿsÿ€vÿ{ÿ€ÿ„ÿ‰ÿƒÿƒ’ÿ„—ÿ…œÿ†¢ÿˆ§ÿ‰­ÿвÿŒ·ÿŒºÿÀÿÅÿŽÈÿŽÎÿÑÿÕÿŒÚÿŒÞÿŠâÿ‰æÿˆéÿ†íÿ…ñÿ„ôþöüùû~ûú{þ÷yÿövÿòsÿïqÿëmÿçkÿãhÿßdÿÛbÿØ_ÿÓ[ÿÏXÿËTÿÇPÿÃLÿ¾JÿºFÿ·Bÿ³>ÿ¯:ÿª7ÿ¦4ÿ¢/ÿŸ+ÿš'ÿ–$ÿ‘ÿÿ‰ÿ„ÿ€ÿ| ÿwÿsÿnÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ“ÿ“ÿ“ ÿ“ ÿ“ÿ“ÿ“ÿ’ÿ’!ÿ’%ÿ’*ÿ’.ÿ’1ÿ’5ÿ‘:ÿ‘>ÿ‘Aÿ‘EÿHÿLÿPÿŽTÿŽVÿŽZÿ^ÿbÿeÿŒhÿŠkÿŠnÿ‰qÿˆsÿ†wÿ†zÿ…~ÿ…ÿ…†ÿ†Œÿ†ÿˆ”ÿ‰šÿŠŸÿŒ¤ÿ©ÿޝÿ´ÿ‘¸ÿ‘½ÿ’Âÿ’Æÿ’Ëÿ’Ïÿ’Ôÿ‘Øÿ‘Ûÿ‘áÿäÿŽèÿìÿŒðÿŠòþˆõü…÷û„úúüùÿ÷|ÿôzÿðwÿìsÿèqÿänÿákÿÝhÿÙeÿÕbÿÑ^ÿÌZÿÈVÿÅTÿÁPÿ½Lÿ¸Hÿ´Eÿ°Aÿ­>ÿ§:ÿ¤5ÿ 1ÿ›.ÿ—*ÿ“%ÿŽ!ÿŠÿ†ÿÿ~ÿy ÿu ÿqÿlÿhÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ˜ÿ˜ÿ˜ ÿ˜ÿ˜ÿ˜ÿ—ÿ— ÿ—$ÿ—'ÿ—+ÿ—0ÿ—4ÿ–8ÿ–<ÿ–Aÿ–Eÿ–Hÿ–Kÿ”Oÿ”Rÿ”Vÿ“Zÿ“^ÿ’`ÿ’dÿ’hÿ‘lÿ‘nÿrÿuÿŽwÿ{ÿŒ~ÿŒ€ÿŠ„ÿЉÿŒŽÿŒ’ÿ—ÿœÿŽ¡ÿ¦ÿ‘«ÿ’°ÿ“·ÿ”ºÿ–Àÿ–Åÿ—Èÿ—Îÿ—Ñÿ—Öÿ–Úÿ–Þÿ”âÿ“æÿ’ëÿ‘ïÿòÿŽôþŒöü‰ùûˆûú…þùƒÿö€ÿò~ÿï{ÿéwÿæuÿârÿÞnÿÚlÿÖhÿÓdÿÏ`ÿÊ^ÿÆZÿÂVÿ¾RÿºOÿµKÿ²Hÿ®EÿªAÿ¥<ÿ¡8ÿ4ÿ˜0ÿ”+ÿ'ÿŒ$ÿˆ ÿƒÿÿ{ÿvÿr ÿmÿiÿeÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿ ÿÿÿœÿœÿœ!ÿœ&ÿœ*ÿœ.ÿœ1ÿœ7ÿ›:ÿ›>ÿ›Bÿ›Fÿ›Kÿ›OÿšRÿšUÿšYÿ˜]ÿ˜`ÿ˜dÿ—hÿ—kÿ—nÿ–rÿ–uÿ”yÿ“{ÿ“~ÿ’ÿ‘„ÿ‘†ÿŒÿ‘ÿ‘”ÿ’šÿ’Ÿÿ“¤ÿ”©ÿ–®ÿ—³ÿ˜¸ÿš½ÿšÂÿ›Æÿ›ËÿœÐÿœÔÿ›Øÿ›Ýÿšáÿšäÿ˜èÿ—ìÿ–ðÿ”ôÿ’öþùûŽûúŒþù‰ÿ÷†ÿô„ÿðÿì~ÿè{ÿäyÿáuÿÝrÿØnÿÔkÿÐhÿÌdÿÈ`ÿÃ]ÿÀYÿ¼Uÿ¸Rÿ´Oÿ¯Kÿ«Fÿ§Bÿ¢>ÿŸ:ÿš7ÿ–1ÿ’.ÿ*ÿ‰&ÿ…!ÿ€ÿ|ÿwÿsÿp ÿk ÿgÿcÿ^ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¢ÿ¢ÿ¢ ÿ¢ÿ¢ÿ¡ÿ¡ÿ¡ ÿ¡$ÿ¡'ÿ¡,ÿ¡0ÿ¡4ÿ 8ÿ =ÿ Aÿ Eÿ Hÿ Lÿ QÿŸUÿŸYÿŸ]ÿŸ_ÿcÿgÿkÿœnÿœrÿœuÿ›yÿ›|ÿšÿ˜ÿ˜…ÿ—ˆÿ–Šÿ”Žÿ”“ÿ–—ÿ–œÿ—¡ÿ˜¥ÿ˜ªÿš°ÿ›µÿœºÿÀÿŸÅÿŸÈÿ Îÿ Óÿ Öÿ ÚÿŸßÿŸãÿçÿœëÿ›ïÿšòÿ˜õþ–÷ü”úû’üúÿùŽÿõŠÿñˆÿí…ÿéÿæÿâ|ÿÞyÿÚuÿÕrÿÑnÿÎkÿÊgÿÆcÿÁ_ÿ½]ÿ¹YÿµUÿ°Qÿ­Lÿ©Hÿ¤Eÿ Aÿœ=ÿ—8ÿ“4ÿ0ÿŠ,ÿ†'ÿ$ÿ~ ÿzÿuÿqÿmÿh ÿdÿ_ÿ[ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ§ÿ§ÿ§ ÿ§ÿ¦ÿ¦ÿ¦ÿ¦"ÿ¦&ÿ¦*ÿ¦.ÿ¦3ÿ¥7ÿ¥:ÿ¥>ÿ¥Bÿ¥Gÿ¥Kÿ¥Oÿ¥Rÿ¤Xÿ¤[ÿ¤_ÿ¤cÿ¤gÿ¢iÿ¢mÿ¡qÿ¡uÿ¡yÿ |ÿ ÿ ƒÿŸ…ÿˆÿœŒÿœŽÿ›‘ÿš–ÿššÿ›Ÿÿœ¤ÿœ§ÿ­ÿŸ²ÿ ¸ÿ¡½ÿ¢Âÿ¤Æÿ¤Ëÿ¥Ðÿ¥Ôÿ¥Ùÿ¤Ýÿ¤áÿ¤æÿ¢éÿ¡íÿ ñÿŸôÿœöþ›ùü˜ûû–þù“ÿö‘ÿòŽÿïŒÿëˆÿç…ÿãƒÿßÿÛ|ÿØyÿÓuÿÏqÿËmÿÇiÿÃgÿ¾cÿº_ÿ·[ÿ³Xÿ®RÿªOÿ¦Kÿ¡GÿBÿ˜>ÿ”:ÿ‘7ÿŒ3ÿˆ.ÿ„*ÿ&ÿ{"ÿvÿrÿnÿiÿe ÿ`ÿ]ÿXÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ«ÿ«ÿ« ÿ«ÿ«ÿ«ÿ«ÿ« ÿ«$ÿ«)ÿ«,ÿ«0ÿª4ÿª8ÿª=ÿªAÿªEÿªHÿªMÿªQÿ©Uÿ©Yÿ©^ÿ©bÿ©eÿ©iÿ§mÿ§qÿ§sÿ¦wÿ¦{ÿ¦ÿ¥ƒÿ¥†ÿ¥‰ÿ¤Œÿ¢ÿ¡’ÿ¡”ÿ ˜ÿŸœÿ ¡ÿ ¥ÿ¡ªÿ¢¯ÿ¢´ÿ¤¹ÿ¥¾ÿ¦Åÿ§Èÿ©Îÿ©ÓÿªÖÿ©Ûÿ©ßÿ©ãÿ§çÿ¦ëÿ¥ðÿ¤ôÿ¢öþ¡ùüŸûûœþúšÿù˜ÿõ”ÿñ’ÿíÿéŒÿä‰ÿá†ÿ݃ÿÙÿÕ{ÿÑwÿÌsÿÈqÿÅmÿÁiÿ½eÿ¸bÿ´^ÿ°Yÿ«Uÿ§Qÿ¢MÿŸHÿ›Eÿ–Aÿ’=ÿŽ8ÿ‰4ÿ…0ÿ€,ÿ|)ÿy$ÿs ÿpÿkÿgÿbÿ^ ÿYÿUÿPÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ°ÿ°ÿ° ÿ°ÿ°ÿ°ÿ°ÿ°!ÿ°&ÿ°*ÿ°.ÿ¯3ÿ¯7ÿ¯:ÿ¯>ÿ¯Cÿ¯Gÿ¯Kÿ¯Oÿ®Tÿ®Xÿ®[ÿ®_ÿ®dÿ®hÿ®lÿ®pÿ­sÿ­wÿ­{ÿ«~ÿ«ÿ«…ÿª‰ÿªÿ©ÿ©’ÿ§–ÿ¦˜ÿ¦›ÿ¥Ÿÿ¤¤ÿ¥§ÿ¦­ÿ¦²ÿ§·ÿ©¼ÿªÁÿ«Æÿ­Ëÿ­Ðÿ®Ôÿ®Ùÿ®Ýÿ®âÿ­æÿ­éÿ«íÿªñÿ©õÿ§÷þ¥úü¢üû ÿúŸÿö›ÿò˜ÿï–ÿë’ÿçÿãÿÞ‰ÿÚ…ÿÖÿÓ~ÿÏ{ÿÊwÿÆsÿÂpÿ¾lÿ¹hÿµdÿ²_ÿ­[ÿ©Xÿ¥Tÿ OÿœKÿ˜Gÿ“Cÿ>ÿŠ:ÿ†7ÿƒ3ÿ~.ÿz*ÿu&ÿq!ÿlÿhÿcÿ_ÿZ ÿVÿQÿLÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿµÿµÿ´ ÿ´ÿ´ÿ´ÿ´ÿ´"ÿ´'ÿ´+ÿ´0ÿ´4ÿ´9ÿ´=ÿ´Aÿ´Eÿ´Jÿ´Mÿ³Qÿ³Uÿ³Zÿ³^ÿ³bÿ³eÿ³kÿ³nÿ²rÿ²vÿ²zÿ²~ÿ°ÿ°…ÿ°ˆÿ¯Œÿ¯ÿ¯“ÿ®–ÿ®šÿ­œÿ«Ÿÿª¢ÿª¦ÿªªÿª¯ÿ«´ÿ­¹ÿ­¾ÿ®Ãÿ°Èÿ²Îÿ²Óÿ²Öÿ³Ûÿ³ßÿ²äÿ²èÿ²ìÿ°ðÿ®ôÿ­öÿ«ùü©ûû¦þú¥ÿ÷¢ÿôŸÿðœÿìšÿè–ÿä“ÿáÿÝŒÿ؈ÿÔ…ÿÐÿÌ~ÿÈzÿÃvÿÀrÿ¼nÿ·kÿ³eÿ¯bÿª^ÿ¦Zÿ¡UÿQÿšMÿ”Jÿ‘EÿAÿˆ=ÿ„9ÿ4ÿ{0ÿv+ÿr'ÿm"ÿiÿdÿ`ÿ[ÿV ÿRÿMÿJÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¹ÿ¹ÿ¹ ÿ¹ÿ¹ÿ¹ÿ¹ÿ¹ ÿ¹$ÿ¹)ÿ¹,ÿ¹1ÿ¹5ÿ¹:ÿ¹>ÿ¹Cÿ¹Gÿ¹Kÿ¹Pÿ¸Tÿ¸Xÿ¸[ÿ¸`ÿ¸dÿ¸hÿ¸lÿ·qÿ·uÿ·yÿ·|ÿ·€ÿ·„ÿµˆÿµŒÿµÿ´’ÿ´–ÿ´šÿ³ÿ² ÿ²¢ÿ°¦ÿ¯©ÿ¯­ÿ¯²ÿ°·ÿ°ºÿ²Àÿ³Æÿ´ËÿµÐÿ·Ôÿ·Ùÿ·Þÿ·âÿ·æÿ·ëÿµïÿ´òÿ³öÿ²ùþ¯ûü­þû«ÿú©ÿõ¥ÿñ¢ÿí ÿéœÿæšÿâ–ÿÞ’ÿÚÿÕŒÿшÿ΄ÿÊ€ÿÆ|ÿÁyÿ½uÿ¹qÿ´lÿ°hÿ«dÿ§`ÿ¤[ÿŸXÿ›Tÿ—Pÿ’KÿŽGÿ‰Cÿ…>ÿ€:ÿ|5ÿw1ÿs,ÿn)ÿk$ÿe ÿbÿ]ÿXÿTÿO ÿKÿFÿBÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¾ÿ¾ÿ¾ ÿ¾ÿ¾ÿ¾ÿ¾ÿ¾!ÿ¾%ÿ¾*ÿ¾.ÿ¾3ÿ¾7ÿ¾<ÿ½?ÿ½Eÿ½Hÿ½Mÿ½Qÿ½Vÿ½Zÿ½^ÿ½bÿ½gÿ½kÿ¼nÿ¼rÿ¼wÿ¼{ÿ¼ÿ¼ƒÿ¼†ÿ¼ŠÿºŽÿº’ÿ¹–ÿ¹šÿ¹œÿ¸ ÿ¸¤ÿ·¦ÿ·©ÿµ­ÿ´¯ÿ´´ÿ´¹ÿµ½ÿ·Âÿ·Çÿ¹ÎÿºÓÿºÖÿ¼Ûÿ¼ßÿ¼äÿ¼èÿºìÿºðÿ¹õÿ·÷ÿµúþ³üü²ÿú¯ÿ÷­ÿô©ÿð¦ÿì¤ÿè ÿãœÿßšÿÛ–ÿØ’ÿÔŽÿÏŠÿˆÿǃÿÂÿ¾{ÿºwÿµrÿ²nÿ®kÿ©gÿ¥bÿ¡^ÿœZÿ˜Vÿ“QÿMÿŠHÿ†Eÿ?ÿ~<ÿy7ÿu3ÿp.ÿl*ÿg%ÿb!ÿ^ÿYÿUÿPÿL ÿGÿCÿ>ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÃÿÂÿ ÿÂÿÂÿÂÿÂÿÂ"ÿÂ&ÿÂ+ÿÂ/ÿÂ4ÿÂ8ÿÂ=ÿÂBÿÂFÿÂKÿÂOÿÂTÿÂXÿÂ]ÿÂ`ÿÂdÿÂhÿÂmÿÁqÿÁuÿÁyÿÁ~ÿÁÿÁ…ÿÁ‰ÿÀÿÀ‘ÿÀ”ÿÀ˜ÿ¾œÿ¾ ÿ¾¤ÿ½§ÿ½ªÿ¼­ÿº°ÿº³ÿ¹·ÿ¹¼ÿºÀÿºÅÿ¼Êÿ½Ïÿ¾ÔÿÀÙÿÀÞÿÁâÿÁçÿÀëÿÀïÿ¾òÿ½öÿ¼ùþ¹ûü¸þûµÿù³ÿõ¯ÿñ­ÿíªÿé¦ÿæ¤ÿá ÿÝœÿÙ˜ÿÕ”ÿÑ‘ÿÌÿȉÿÅ…ÿÀÿ¼~ÿ¸yÿ³uÿ¯qÿªmÿ¦hÿ¢dÿ`ÿš]ÿ”Xÿ‘TÿŒOÿˆKÿƒFÿBÿz=ÿv8ÿq4ÿm/ÿh+ÿc&ÿ_"ÿZÿVÿQÿMÿH ÿEÿ?ÿ<ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÇÿÇ ÿÇ ÿÇÿÇÿÇÿÇÿÇ$ÿÇ)ÿÇ,ÿÇ1ÿÇ5ÿÇ:ÿÇ>ÿÇCÿÇGÿÇLÿÇPÿÇUÿÇYÿÇ^ÿÇbÿÇgÿÇkÿÆnÿÆsÿÆwÿÆ{ÿÆÿƃÿƈÿÆŒÿÅÿÅ“ÿŘÿÅ›ÿÅŸÿâÿæÿêÿ®ÿ°ÿÁ³ÿÀ·ÿÀ¹ÿ¾½ÿ¾ÂÿÀÇÿÁÌÿÂÑÿÃÖÿÅÛÿÅáÿÅäÿÅèÿÅíÿÅñÿÃõÿÂùÿÀûþ¾þü¼ÿú¹ÿö·ÿò³ÿï°ÿë®ÿçªÿã¦ÿߢÿÚŸÿÖ›ÿÓ˜ÿÏ“ÿÊÿÆŒÿˆÿ½„ÿ¹ÿ´{ÿ°wÿ­sÿ§nÿ¤kÿŸgÿ›bÿ–^ÿ’YÿUÿ‰Pÿ„Lÿ€Gÿ{Cÿw>ÿr:ÿm5ÿi1ÿd,ÿ`'ÿ[$ÿXÿRÿOÿJÿF ÿA ÿ=ÿ8ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÌÿÌÿÌ ÿÌÿÌÿÌÿÌÿÌ!ÿÌ%ÿÌ*ÿÌ.ÿÌ3ÿÌ7ÿË<ÿË?ÿËEÿËHÿËMÿËQÿËVÿËZÿË_ÿËcÿËhÿËlÿËqÿËuÿËzÿË~ÿËÿË…ÿˉÿÊŽÿÊ’ÿÊ–ÿÊšÿÊŸÿÊ¢ÿÈ¥ÿÈ©ÿÈ­ÿǰÿÇ´ÿÇ·ÿƺÿŽÿÅÀÿÃÅÿÅÊÿÅÏÿÆÔÿÇÙÿÈÞÿÊâÿÊçÿÊëÿÊðÿÈôÿÇ÷ÿÆúþÅüüÂÿûÀÿù½ÿõ¹ÿð·ÿì´ÿè°ÿä­ÿá©ÿÝ¥ÿØ¢ÿÔŸÿКÿË–ÿÇ’ÿÃŽÿ¾‰ÿº…ÿ·ÿ²~ÿ®zÿªuÿ¥qÿ lÿœhÿ—cÿ“_ÿŽZÿŠVÿ…QÿMÿ|HÿyEÿs?ÿn<ÿk7ÿe3ÿb.ÿ]*ÿY%ÿT!ÿPÿKÿGÿBÿ= ÿ9ÿ4ÿ0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÐÿÐÿÐ ÿÐÿÐÿÐÿÐÿÐ"ÿÐ&ÿÐ+ÿÐ/ÿÐ4ÿÐ8ÿÐ=ÿÐAÿÐFÿÐJÿÐOÿÐRÿÐXÿÐ[ÿÐ`ÿÐdÿÐiÿÐmÿÐrÿÐvÿÐ{ÿÐÿЄÿЈÿÏŒÿÏÿÏ”ÿϘÿÏœÿÏ ÿÏ¥ÿÏ©ÿέÿίÿγÿÌ·ÿ̺ÿ̽ÿËÁÿÊÃÿÈÇÿÈÌÿÊÐÿËÖÿÌÛÿÎáÿÎäÿÏéÿÏíÿÎñÿÎõÿÌùÿÊûþÈþüÆÿúÃÿöÁÿò½ÿïºÿé·ÿæ³ÿâ¯ÿÞ­ÿÚ©ÿÕ¥ÿÑ ÿΜÿȘÿÅ”ÿÁÿ¼Œÿ¸ˆÿ³„ÿ¯ÿª{ÿ¦vÿ¡rÿmÿ˜iÿ”dÿ`ÿŒ[ÿ†XÿƒRÿ~OÿyJÿuFÿpAÿl=ÿg8ÿc4ÿ^/ÿZ+ÿU&ÿQ"ÿLÿHÿCÿ>ÿ: ÿ5ÿ1ÿ,ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÕÿÕÿÕ ÿÕÿÕÿÕÿÕÿÕ$ÿÕ'ÿÕ,ÿÕ0ÿÕ5ÿÕ9ÿÕ>ÿÕBÿÕGÿÕKÿÕPÿÕTÿÕYÿÕ]ÿÕbÿÕeÿÕkÿÔnÿÔsÿÔwÿÔ|ÿÔÿÔ…ÿÔŠÿÔŽÿÔ’ÿÔ–ÿÔ›ÿÔŸÿÔ¢ÿÔ¦ÿÓ«ÿÓ¯ÿÓ³ÿÓ·ÿÓºÿѽÿÑÁÿÐÅÿÐÇÿÏÊÿÎÏÿÏÓÿÏØÿÐÝÿÑâÿÓçÿÓìÿÓðÿÓôÿÑ÷ÿÐûÿÏþþÌÿûÊÿ÷ÇÿôÅÿðÁÿì½ÿèºÿã·ÿß³ÿÛ¯ÿØ«ÿÓ¦ÿÏ¢ÿÊŸÿÆ›ÿ–ÿ½’ÿ¹ŽÿµŠÿ°…ÿ«€ÿ§|ÿ¢wÿŸsÿšnÿ–kÿ‘eÿbÿˆ]ÿ„YÿTÿzPÿvKÿqGÿmBÿh>ÿd9ÿ_5ÿ[0ÿV,ÿR'ÿM$ÿHÿEÿ?ÿ<ÿ7 ÿ1ÿ.ÿ)ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÙÿÙÿÙ ÿÙÿÙÿÙÿÙ ÿÙ$ÿÙ)ÿÙ.ÿÙ1ÿÙ7ÿÙ:ÿÙ?ÿÙCÿÙHÿÙLÿÙQÿÙUÿÙZÿÙ^ÿÙcÿÙgÿÙlÿÙqÿÙuÿÙzÿÙ~ÿÙƒÿÙ†ÿÙŒÿÙÿÙ”ÿÙ˜ÿÙœÿÙ¡ÿÙ¥ÿØ©ÿØ­ÿزÿصÿعÿؽÿÖÁÿÖÅÿÖÇÿÕËÿÕÎÿÔÑÿÓÕÿÔÚÿÕßÿÖäÿØéÿØíÿØòÿØöÿÖúÿÕüþÓÿüÐÿùÎÿõËÿñÇÿíÅÿéÁÿæ½ÿâ¹ÿݵÿÙ²ÿÔ­ÿЩÿÌ¥ÿÇ¡ÿÜÿÀ˜ÿº”ÿµÿ²Œÿ­†ÿ©ƒÿ¤~ÿ zÿ›uÿ—pÿ’lÿŽgÿ‰cÿ…^ÿ€Zÿ{UÿwQÿrLÿnHÿiCÿe?ÿ`:ÿ]7ÿX1ÿR,ÿO)ÿJ$ÿE ÿAÿ<ÿ7ÿ3 ÿ.ÿ)ÿ%ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÞÿÞ ÿÞ ÿÞÿÞÿÞÿÞ ÿÞ%ÿÞ)ÿÞ.ÿÞ3ÿÞ7ÿÞ<ÿÞAÿÞEÿÞJÿÞMÿÞRÿÞVÿÞ[ÿÞ_ÿÞdÿÞiÿÞmÿÞrÿÞvÿÞ{ÿÞÿÞ„ÿÞˆÿÞÿÞ‘ÿÞ–ÿÞšÿÞŸÿÝ¢ÿݧÿÝ«ÿݯÿݳÿݸÿݼÿÝÀÿÝÃÿÛÇÿÛËÿÛÏÿÚÑÿÙÔÿÙØÿÙÝÿÙâÿÚçÿÛìÿÝðÿÝõÿÛùÿÚûÿÙþþÖÿûÔÿ÷ÑÿôÏÿïËÿëÇÿçÃÿãÀÿÞ¼ÿÚ¸ÿÖ³ÿѯÿΫÿʧÿÅ¢ÿÁŸÿ¼šÿ·–ÿ³‘ÿ®ÿªˆÿ¥„ÿ¡ÿœ{ÿ˜vÿ“rÿmÿŠiÿ…dÿ_ÿ|[ÿyVÿsRÿpMÿkJÿeEÿb?ÿ]<ÿX7ÿT3ÿO.ÿK)ÿF%ÿA ÿ=ÿ8ÿ3ÿ/ ÿ* ÿ%ÿ!ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿâÿâ ÿâÿâÿâÿâÿâ ÿâ%ÿâ*ÿâ.ÿâ3ÿâ8ÿâ<ÿâAÿâFÿâJÿâOÿâRÿâXÿâ]ÿâ`ÿâeÿãkÿânÿâsÿâwÿâ|ÿâ€ÿâ…ÿâ‰ÿâŽÿâ’ÿâ—ÿâ›ÿâ ÿâ¤ÿâ©ÿâ­ÿâ²ÿâµÿâ¹ÿâ¾ÿâÂÿáÆÿáÊÿáÎÿáÑÿßÕÿߨÿÞÚÿÞßÿÞäÿßéÿáïÿáòÿáöÿáúÿßþþÝÿüÚÿùØÿõÕÿñÑÿìÎÿèÊÿäÆÿáÂÿÛ¾ÿعÿÓµÿϲÿË­ÿÆ©ÿÁ¤ÿ½ ÿ¸›ÿ´—ÿ¯’ÿ«Žÿ¦‰ÿ¢…ÿ€ÿš|ÿ”wÿ‘sÿŒnÿ†kÿƒeÿ~`ÿz]ÿuXÿpRÿlOÿgJÿbEÿ^AÿY<ÿT8ÿP3ÿK.ÿF*ÿB%ÿ= ÿ8ÿ4ÿ/ÿ*ÿ& ÿ!ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿçÿç ÿçÿçÿçÿçÿç!ÿç%ÿç*ÿç/ÿç3ÿç8ÿç=ÿçAÿçFÿçKÿçOÿçTÿçYÿç]ÿçbÿçeÿçkÿçpÿçsÿçyÿç~ÿçÿç†ÿçŠÿçÿç“ÿç˜ÿçœÿç¡ÿç¥ÿçªÿç®ÿç³ÿç·ÿç¼ÿçÀÿçÅÿæÈÿæÌÿæÐÿæÔÿæØÿäÛÿäÞÿãâÿãæÿãìÿäðÿæõÿæùÿäüÿãÿþáÿúÞÿöÛÿòØÿïÔÿëÐÿæÌÿâÈÿÝÅÿÙÀÿÕ¼ÿзÿ̳ÿÇ®ÿªÿ¾¥ÿ¹¡ÿµœÿ°˜ÿ­“ÿ§ÿ¤ŠÿŸ†ÿ›ÿ–~ÿ‘yÿsÿˆpÿƒkÿeÿzbÿu]ÿqXÿlTÿgOÿcKÿ^FÿZAÿU=ÿP8ÿL3ÿG/ÿB*ÿ>%ÿ9!ÿ4ÿ0ÿ+ÿ&ÿ" ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿëÿëÿë ÿëÿëÿëÿëÿë!ÿë&ÿë*ÿë/ÿë4ÿì8ÿì=ÿìBÿìFÿìKÿëPÿëTÿìYÿì^ÿìbÿìgÿìkÿìpÿìuÿìyÿì~ÿìƒÿì†ÿìŒÿì‘ÿì”ÿìšÿìÿë¢ÿë¦ÿë«ÿë°ÿë´ÿë¹ÿë½ÿëÂÿëÆÿëÊÿëÏÿëÓÿëÖÿëÚÿëÞÿéâÿéäÿèèÿèíÿéòÿë÷ÿëûÿéþÿçÿüäÿ÷âÿôÞÿðÚÿìÖÿçÓÿãÏÿßÊÿÚÆÿÖÂÿѽÿιÿÈ´ÿïÿÀ«ÿº¦ÿ·¢ÿ²ÿ®šÿ©”ÿ¥‘ÿ Œÿ›†ÿ—ƒÿ’~ÿyÿ‰uÿ„pÿkÿ{gÿvbÿq]ÿmYÿhTÿcPÿ_KÿZFÿUBÿQ=ÿL8ÿG4ÿC/ÿ>*ÿ9&ÿ5!ÿ0ÿ+ÿ'ÿ"ÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿðÿðÿð ÿðÿðÿðÿðÿð!ÿð&ÿð+ÿð/ÿð4ÿð9ÿð=ÿðBÿðGÿðKÿðPÿðUÿðYÿð^ÿðcÿðgÿðlÿðpÿðuÿðzÿð~ÿðƒÿðˆÿðŒÿð‘ÿð–ÿðšÿðŸÿð¤ÿð§ÿð­ÿð²ÿðµÿðºÿð¾ÿðÃÿðÇÿðÌÿðÐÿðÕÿðÙÿðÝÿðáÿïäÿïèÿïìÿíðÿíõÿïúÿïþÿíÿþìÿúèÿöäÿñáÿíÝÿéÙÿäÕÿáÐÿÛÌÿØÇÿÓÃÿξÿʺÿŵÿÁ²ÿ¼­ÿ¸§ÿ³¤ÿ®Ÿÿªšÿ¥–ÿ ‘ÿœŒÿ—ˆÿ’ƒÿŽ~ÿ‰zÿ„uÿ€pÿ{lÿvgÿrcÿm^ÿhYÿdUÿ_Pÿ[KÿVGÿQBÿM=ÿH9ÿC4ÿ?/ÿ:+ÿ5&ÿ1!ÿ,ÿ'ÿ$ÿÿ ÿÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿõÿõÿõ ÿõÿõÿõÿõÿõ"ÿõ&ÿõ+ÿõ0ÿõ4ÿõ9ÿõ>ÿõBÿõGÿõLÿõPÿõUÿõZÿõ^ÿõcÿõhÿõlÿõqÿõvÿõzÿõÿõ„ÿõˆÿõÿõ‘ÿõ–ÿõ›ÿõŸÿõ¤ÿõ©ÿõ­ÿõ²ÿõ·ÿõºÿõÀÿõÅÿõÈÿôÎÿôÑÿôÖÿôÚÿôßÿôãÿôçÿôìÿôïÿôòÿò÷ÿôûÿôÿÿòÿûïÿ÷ìÿôçÿïãÿëßÿæÚÿâÖÿÝÑÿÙÎÿÔÈÿÏÅÿËÀÿƺÿÁ·ÿ½²ÿ¸­ÿ´©ÿ¯¤ÿªŸÿ¦›ÿ¡–ÿœ‘ÿ˜ÿ“ˆÿŽ„ÿŠÿ…zÿ€vÿ|qÿwlÿrhÿncÿi^ÿdZÿ`Uÿ[PÿVLÿRGÿMBÿH>ÿE9ÿ?4ÿ:0ÿ7+ÿ1&ÿ,"ÿ)ÿ$ÿÿÿ ÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿùÿùÿù ÿùÿùÿùÿùÿù"ÿù'ÿù+ÿù0ÿù5ÿù9ÿù>ÿùCÿùGÿùLÿùQÿùUÿùZÿù_ÿùcÿùhÿùmÿùqÿùvÿù{ÿùÿù„ÿù‰ÿùÿù’ÿù—ÿù›ÿù ÿù¤ÿù©ÿù®ÿù²ÿù·ÿù¼ÿùÀÿùÅÿùÊÿùÎÿùÓÿùØÿùÛÿùáÿùäÿùéÿùíÿùòÿùöÿ÷úÿ÷þÿ÷ÿüöÿùòÿõíÿðéÿìäÿçáÿãÛÿÞØÿÙÓÿÕÎÿÐÊÿËÅÿÇÀÿ¼ÿ½·ÿ¹²ÿ´®ÿ¯©ÿ«¤ÿ¦ ÿ¡›ÿ—ÿ˜’ÿ“ÿ‰ÿŠ„ÿ…ÿ{ÿ|vÿwqÿsmÿnhÿicÿe_ÿ`Zÿ]UÿXQÿRLÿOGÿJCÿE>ÿA9ÿ<5ÿ70ÿ3+ÿ.'ÿ)"ÿ%ÿ ÿÿÿ ÿ ÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿþÿþ ÿþÿþÿþÿþÿþ"ÿþ'ÿþ,ÿþ0ÿþ5ÿþ:ÿþ>ÿþCÿþHÿþLÿþQÿþVÿþZÿþ_ÿþdÿþhÿþmÿþrÿþvÿþ{ÿþ€ÿþ„ÿþ‰ÿþŽÿþ’ÿþ—ÿþœÿþ ÿþ¥ÿþ©ÿþ®ÿþ³ÿþ·ÿþ¼ÿþÁÿþÅÿþÊÿþÏÿþÓÿþØÿþÝÿþáÿþæÿþëÿþïÿþôÿþ÷ÿþüÿüÿÿüÿú÷ÿöôÿñïÿìëÿèæÿãáÿÞÝÿÚØÿÕÓÿÐÏÿÌÊÿÇÅÿÃÁÿ¾¼ÿ¹·ÿµ³ÿ°®ÿ«©ÿ§¥ÿ¢ ÿœÿš—ÿ”’ÿŽÿŒ‰ÿ†„ÿ€ÿ~{ÿyvÿsrÿpmÿkhÿedÿb_ÿ]ZÿXVÿTQÿOLÿJHÿFCÿA>ÿ<:ÿ85ÿ30ÿ.,ÿ*'ÿ%"ÿ!ÿÿÿÿ ÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿþÿþÿ þÿþÿþÿþÿþÿ"þÿ'þÿ,þÿ0þÿ5þÿ:þÿ>þÿCþÿHþÿLþÿQþÿVþÿZþÿ_þÿdþÿhþÿmþÿrþÿvþÿ{þÿ€þÿ„þÿ‰þÿŽþÿ’þÿ—þÿœþÿ þÿ¥þÿ©þÿ®þÿ³þÿ·þÿ¼þÿÁþÿÅþÿÊþÿÏþÿÓþÿØþÿÝþÿáþÿæþÿëþÿïþÿôþÿ÷üÿüüÿÿüÿÿ÷úÿôöÿïñÿëìÿæèÿáãÿÝÞÿØÚÿÓÕÿÏÐÿÊÌÿÅÇÿÁÃÿ¼¾ÿ·¹ÿ³µÿ®°ÿ©«ÿ¥§ÿ ¢ÿœÿ—šÿ’”ÿŽÿ‰Œÿ„†ÿ€ÿ{~ÿvyÿrsÿmpÿhkÿdeÿ_bÿZ]ÿVXÿQTÿLOÿHJÿCFÿ>Aÿ:<ÿ58ÿ03ÿ,.ÿ'*ÿ"%ÿ!ÿÿÿÿ ÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿùÿùÿùÿ ùÿùÿùÿùÿùÿ"ùÿ'ùÿ+ùÿ0ùÿ5ùÿ9ùÿ>ùÿCùÿGùÿLùÿQùÿUùÿZùÿ_ùÿcùÿhùÿmùÿqùÿvùÿ{ùÿùÿ„ùÿ‰ùÿùÿ’ùÿ–ùÿ›ùÿ ùÿ¤ùÿ©ùÿ®ùÿ²ùÿ·ùÿ¼ùÿÀùÿÅùÿÊùÿÎùÿÓùÿØùÿÛùÿáùÿäùÿéùÿíùÿòùÿö÷ÿú÷ÿþ÷ÿÿöüÿòùÿíõÿéðÿäìÿáçÿÛãÿØÞÿÓÙÿÎÕÿÊÐÿÅËÿÀÇÿ¼Âÿ·½ÿ²¹ÿ®´ÿ©¯ÿ¤«ÿ ¦ÿ›¡ÿ–ÿ’˜ÿ“ÿ‰ÿ„Šÿ…ÿ{ÿv|ÿqwÿmsÿhnÿckÿ_eÿZ`ÿU]ÿQXÿLRÿGOÿCJÿ>Eÿ9Aÿ5<ÿ07ÿ+3ÿ'.ÿ")ÿ%ÿ ÿÿÿ ÿ ÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿôÿôÿôÿ ôÿôÿôÿôÿôÿ"ôÿ&ôÿ+ôÿ0ôÿ4ôÿ9ôÿ>ôÿBõÿGôÿLôÿPôÿUôÿZôÿ^ôÿcôÿhõÿlõÿqõÿvõÿzõÿõÿƒõÿˆõÿõÿ‘õÿ–õÿ›õÿŸõÿ¤ôÿ©ôÿ­ôÿ²ôÿ·ôÿºôÿÀôÿÅôÿÈôÿÎôÿÑôÿÖôÿÚôÿßôÿãôÿçôÿëôÿïôÿòòÿ÷ôÿûôÿÿòÿÿïûÿë÷ÿçôÿãïÿßëÿÚæÿÖâÿÑÝÿÎÙÿÈÔÿÅÏÿÀËÿºÆÿ·Âÿ²½ÿ­¸ÿ©´ÿ¤¯ÿŸªÿ›¦ÿ–¡ÿ‘œÿ˜ÿˆ“ÿƒŽÿŠÿz…ÿv€ÿq|ÿlwÿhrÿcnÿ^iÿZdÿU`ÿP[ÿLVÿGRÿBMÿ>Hÿ9Eÿ4?ÿ0:ÿ+7ÿ&1ÿ",ÿ)ÿ$ÿ ÿÿ ÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿðÿðÿðÿ ðÿðÿðÿðÿðÿ!ðÿ&ðÿ+ðÿ/ðÿ4ðÿ9ðÿ=ðÿBðÿGðÿKðÿPðÿUðÿYðÿ^ðÿcðÿgðÿlðÿpðÿuðÿzðÿ~ðÿƒðÿˆðÿŒðÿ‘ðÿ–ðÿšðÿŸðÿ¤ðÿ§ðÿ­ðÿ²ðÿµðÿºðÿ¾ðÿÃðÿÇðÿÌðÿÐðÿÕðÿÙðÿÝïÿáïÿäïÿèïÿëíÿðíÿõïÿúïÿþíÿÿëþÿèúÿäöÿáñÿÝíÿÙéÿÕäÿÐáÿÌÛÿÇØÿÃÓÿ¾ÏÿºÊÿµÅÿ²Áÿ­¼ÿ§¸ÿ¤³ÿŸ®ÿšªÿ–¥ÿ‘ ÿŒœÿˆ—ÿƒ’ÿ~Žÿz‰ÿu„ÿp€ÿl{ÿgvÿbrÿ^mÿYiÿUdÿP_ÿK[ÿGVÿBQÿ=Mÿ9Hÿ4Cÿ/?ÿ+:ÿ&5ÿ!1ÿ,ÿ'ÿ$ÿÿ ÿÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿëÿëÿëÿ ëÿëÿëÿëÿëÿ!ëÿ&ëÿ*ëÿ/ëÿ4ëÿ8ëÿ=ëÿBëÿFëÿKëÿPëÿTëÿYëÿ]ëÿbëÿgëÿkëÿpëÿuëÿyëÿ~ëÿƒëÿ†ëÿŒëÿ‘ëÿ”ëÿšëÿëÿ¢ëÿ¦ëÿ«ëÿ°ëÿ´ëÿ¹ëÿ½ëÿÂëÿÆëÿÊëÿÏëÿÓëÿÖëÿÚëÿÞéÿâéÿäèÿèèÿíéÿòëÿ÷ëÿûéÿþçÿÿäüÿâ÷ÿÞôÿÚðÿÖìÿÓçÿÏãÿÊßÿÆÚÿÂÖÿ½Ñÿ¹Îÿ´Èÿ¯Ãÿ«Àÿ¦ºÿ¢·ÿ²ÿš®ÿ”©ÿ‘¥ÿŒ ÿ†›ÿƒ—ÿ~’ÿyÿu‰ÿp„ÿkÿg{ÿbvÿ]qÿYmÿThÿPcÿK_ÿFZÿBUÿ=Qÿ8Lÿ4Gÿ/Cÿ*>ÿ&9ÿ!5ÿ0ÿ+ÿ'ÿ"ÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿçÿçÿ çÿçÿçÿçÿçÿ!çÿ%çÿ*çÿ/çÿ3çÿ8çÿ=çÿAçÿFçÿKçÿOçÿTçÿXçÿ]çÿbçÿeçÿkçÿpçÿsçÿyçÿ~çÿçÿ†çÿŠçÿçÿ“çÿ˜çÿœçÿ¡çÿ¥çÿªçÿ®çÿ³çÿ·çÿ¼çÿÀæÿÅæÿÈæÿÌæÿÐæÿÔæÿØäÿÛäÿÞãÿâãÿæãÿëäÿðæÿõæÿùäÿüãÿÿáþÿÞúÿÛöÿØòÿÔïÿÐëÿÌæÿÈâÿÃÝÿÀÙÿ¼Õÿ·Ðÿ³Ìÿ®ÇÿªÂÿ¥¾ÿ¡¹ÿœµÿ˜°ÿ“­ÿ§ÿФÿ†Ÿÿ›ÿ~–ÿy‘ÿsÿpˆÿkƒÿeÿbzÿ]uÿXqÿTlÿOgÿJcÿF^ÿAZÿ=Uÿ8Pÿ3Lÿ/Gÿ*Bÿ%>ÿ!9ÿ4ÿ0ÿ+ÿ&ÿ "ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿâÿâÿ âÿâÿâÿâÿâÿ âÿ%âÿ*âÿ.âÿ3âÿ8âÿ<âÿAâÿEâÿJâÿOâÿRâÿXâÿ]âÿ`âÿeâÿkâÿnâÿsâÿwâÿ|âÿ€âÿ…âÿ‰âÿŽâÿ’âÿ—âÿ›âÿ âÿ¤âÿ©âÿ­âÿ²âÿµâÿ¹âÿ¾âÿÂáÿÆáÿÊáÿÎáÿÑßÿÕßÿØÞÿÚÞÿßÞÿäßÿéáÿïáÿòáÿöáÿúßÿþÝþÿÚüÿØùÿÕõÿÑñÿÎíÿÊèÿÆäÿÂáÿ¾Ûÿ¹ØÿµÔÿ²Ïÿ­Ëÿ©Æÿ¤Âÿ ½ÿ›¸ÿ—´ÿ’¯ÿŽ«ÿ‰¦ÿ…¢ÿ€ÿ|šÿw”ÿs‘ÿnŒÿk†ÿeƒÿ`~ÿ]zÿXuÿRpÿOlÿJgÿEbÿA^ÿÕÿBÕÿGÕÿKÕÿPÕÿTÕÿYÕÿ]ÕÿbÔÿeÔÿkÔÿnÔÿsÔÿwÔÿ|ÔÿÔÿ…ÔÿŠÔÿŽÔÿ’Ôÿ–Ôÿ›ÔÿŸÔÿ¢Ôÿ¦Óÿ«Óÿ¯Óÿ³Óÿ·Ñÿ¹Ñÿ½ÑÿÁÐÿÃÐÿÇÏÿÊÎÿÏÏÿÓÏÿØÐÿÝÑÿâÓÿçÓÿìÓÿðÓÿôÑÿ÷ÐÿûÏÿþÌþÿÊûÿÇ÷ÿÃôÿÁðÿ½ìÿ¹èÿ·ãÿ³ßÿ¯Ûÿ«Øÿ¦Óÿ¢ÏÿŸËÿ›Æÿ–Âÿ’½ÿ޹ÿеÿ…°ÿ€«ÿ|§ÿw¢ÿsŸÿnšÿk–ÿe‘ÿbÿ]ˆÿY„ÿTÿPzÿKvÿGqÿBmÿ>hÿ9dÿ5_ÿ0[ÿ,Vÿ'Rÿ$MÿJÿEÿ?ÿ<ÿ 7ÿ1ÿ.ÿ)ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÐÿÐÿÐÿ ÐÿÐÿÐÿÐÿÐÿ"Ðÿ&Ðÿ+Ðÿ/Ðÿ4Ðÿ8Ðÿ=ÐÿAÐÿFÐÿJÐÿOÐÿRÐÿXÐÿ[Ðÿ`ÐÿdÐÿiÐÿmÐÿrÐÿvÐÿ{ÐÿÐÿ„ÐÿˆÏÿŒÏÿÏÿ”Ïÿ˜ÏÿœÏÿ Ïÿ¥Îÿ©Îÿ­Îÿ¯Îÿ³Ìÿ·ÌÿºÌÿ½ËÿÁÊÿÃÈÿÇÈÿÌÊÿÐËÿÕÌÿÛÎÿáÎÿäÏÿéÏÿíÎÿñÎÿõÌÿùÊÿûÈþþÆüÿÃúÿÁöÿ½òÿºïÿ·ëÿ³æÿ¯âÿ­Þÿ©Úÿ¥Õÿ ÑÿœÎÿ˜Èÿ”ÅÿÁÿŒ¼ÿˆ¸ÿ„³ÿ¯ÿ{«ÿv¦ÿr¡ÿmÿi˜ÿd”ÿ`ÿ[ŒÿX†ÿRƒÿO~ÿJzÿFuÿApÿ=lÿ8gÿ4cÿ/^ÿ+Zÿ&Uÿ"QÿLÿHÿCÿ>ÿ :ÿ5ÿ1ÿ,ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÌÿÌÿÌÿ ÌÿÌÿÌÿÌÿÌÿ!Ìÿ%Ìÿ*Ëÿ.Ëÿ3Ëÿ7Ëÿ<Ëÿ?ËÿEËÿHËÿMËÿQËÿVËÿZËÿ_ËÿcËÿhËÿlËÿqËÿuËÿyËÿ~ËÿËÿ…Ëÿ‰ÊÿŽÊÿ’Êÿ–ÊÿšÊÿŸÊÿ¢Èÿ¥Èÿ©Èÿ­Çÿ°Çÿ´Çÿ·Æÿ¹Åÿ½ÃÿÀÃÿÅÅÿÊÅÿÏÆÿÔÇÿÙÈÿÞÊÿâÊÿçÊÿëÊÿðÈÿôÇÿ÷ÆÿúÃþüÂüÿÀûÿ½ùÿ¹õÿ·ðÿ´ìÿ°èÿ­äÿ©áÿ¥Ýÿ¢ØÿŸÔÿšÐÿ–Ëÿ’ÇÿŽÃÿ‰¾ÿ…ºÿ·ÿ~²ÿy®ÿuªÿq¥ÿl ÿhœÿc—ÿ_“ÿZŽÿVŠÿQ…ÿMÿH|ÿEyÿ?sÿÿ9ÿ4ÿ0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÇÿÇÿ Çÿ ÇÿÇÿÇÿÇÿÇÿ$Çÿ'Çÿ,Çÿ1Çÿ5Çÿ:Çÿ>ÇÿCÇÿGÇÿLÇÿPÇÿUÇÿYÇÿ^ÇÿbÇÿgÆÿkÆÿnÆÿsÆÿwÆÿ{ÆÿÆÿƒÆÿˆÅÿŒÅÿÅÿ“Åÿ˜Åÿ›ÅÿŸÃÿ¢Ãÿ¦ÂÿªÂÿ®Âÿ°Áÿ³Àÿ·Àÿ¹¾ÿ½¾ÿÂÀÿÇÁÿÌÂÿÑÃÿÖÅÿÛÅÿáÅÿäÅÿèÅÿíÅÿñÃÿõÂÿùÀÿû¾þþ¼üÿ¹úÿ·öÿ³òÿ°ïÿ®ëÿªçÿ¦ãÿ¢ßÿŸÚÿ›Öÿ˜Óÿ“ÏÿÊÿŒÆÿˆÂÿƒ½ÿ¹ÿ{´ÿw°ÿs­ÿn§ÿk¤ÿg ÿb›ÿ^–ÿY’ÿUÿP‰ÿL„ÿG€ÿC{ÿ>wÿ:rÿ5nÿ0iÿ,dÿ'`ÿ$[ÿXÿRÿOÿJÿ Fÿ Aÿ=ÿ8ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÂÿÂÿÂÿ ÂÿÂÿÂÿÂÿÂÿ"Âÿ&Âÿ+Âÿ/Âÿ4Âÿ8Âÿ=ÂÿBÂÿFÂÿKÂÿOÂÿTÂÿXÂÿ]Âÿ`ÂÿdÂÿhÁÿmÁÿqÁÿuÁÿyÁÿ~ÁÿÁÿ…Áÿ‰ÀÿÀÿ‘Àÿ”Àÿ˜¾ÿœ¾ÿ ¾ÿ¤½ÿ¦½ÿª¼ÿ­ºÿ¯ºÿ³¹ÿ·¹ÿ¼ºÿÀºÿżÿʽÿϾÿÔÀÿÙÀÿÞÁÿâÁÿçÀÿëÀÿï¾ÿò½ÿö¼ÿù¹þû¸üþµûÿ³ùÿ¯õÿ­ñÿªíÿ¦éÿ¤æÿ áÿœÝÿ˜Ùÿ”Õÿ‘ÑÿÌÿ‰Èÿ…ÅÿÀÿ~¼ÿy¸ÿu³ÿq¯ÿmªÿh¦ÿd¢ÿ`ÿ]šÿX”ÿT‘ÿOŒÿKˆÿFƒÿAÿ=zÿ8vÿ4qÿ/mÿ+hÿ&cÿ"_ÿZÿVÿQÿMÿ HÿEÿ?ÿ<ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¾ÿ¾ÿ¾ÿ ¾ÿ¾ÿ¾ÿ¾ÿ¾ÿ!¾ÿ%¾ÿ*¾ÿ.½ÿ3½ÿ7½ÿ<½ÿ?½ÿE½ÿH½ÿM½ÿQ½ÿV½ÿZ½ÿ^½ÿb½ÿg½ÿk¼ÿn¼ÿr¼ÿw¼ÿ{¼ÿ¼ÿƒ¼ÿ†ºÿŠºÿŽºÿ’¹ÿ–¹ÿš¹ÿœ¸ÿ ¸ÿ¤·ÿ¦·ÿ©µÿ­´ÿ¯´ÿ´´ÿ¹µÿ½·ÿ·ÿǹÿκÿÓºÿÖ¼ÿÛ¼ÿß¼ÿä¼ÿèºÿìºÿð¸ÿõ·ÿ÷µÿú³þü²üÿ¯úÿ­÷ÿ©ôÿ¦ðÿ¤ìÿ èÿœãÿšßÿ–Ûÿ’ØÿŽÔÿŠÏÿ†ËÿƒÇÿÂÿ{¾ÿwºÿrµÿn²ÿk®ÿg©ÿb¥ÿ^¡ÿZœÿV˜ÿQ“ÿMÿHŠÿE†ÿ?ÿ<~ÿ7yÿ3uÿ.pÿ*lÿ%gÿ!cÿ^ÿYÿUÿPÿ LÿGÿCÿ>ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¹ÿ¹ÿ¹ÿ ¹ÿ¹ÿ¹ÿ¹ÿ¹ÿ ¹ÿ$¹ÿ)¹ÿ,¹ÿ1¹ÿ5¹ÿ:¹ÿ>¹ÿC¹ÿG¹ÿK¸ÿP¸ÿT¸ÿX¸ÿ[¸ÿ`¸ÿd¸ÿh¸ÿl·ÿq·ÿu·ÿy·ÿ|·ÿ€·ÿ„µÿˆµÿŒµÿ´ÿ’´ÿ–³ÿš³ÿœ²ÿ ²ÿ¢°ÿ¥¯ÿ©®ÿ­¯ÿ²°ÿ·°ÿº²ÿÀ³ÿÆ´ÿ˵ÿзÿÔ·ÿÙ·ÿÞ·ÿâ·ÿæ·ÿëµÿï´ÿò³ÿö²ÿù¯þû­üþ«ûÿ©úÿ¥öÿ¢ñÿ íÿœéÿšæÿ–âÿ’ÞÿÚÿŒÕÿˆÑÿ„Îÿ€Êÿ|ÆÿyÁÿu½ÿq¹ÿl´ÿh°ÿd«ÿ`§ÿ[¤ÿXŸÿT›ÿP—ÿK’ÿGŽÿC‰ÿ>…ÿ:€ÿ5|ÿ1wÿ,sÿ)nÿ$kÿ eÿbÿ]ÿXÿTÿ OÿKÿFÿBÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ´ÿ´ÿ´ÿ ´ÿ´ÿ´ÿ´ÿ´ÿ"´ÿ'´ÿ+´ÿ0´ÿ4´ÿ9´ÿ=´ÿA´ÿE´ÿJ´ÿM³ÿQ³ÿU³ÿZ³ÿ^³ÿb³ÿe³ÿk³ÿn²ÿr²ÿv²ÿz²ÿ~°ÿ°ÿ…°ÿˆ¯ÿŒ¯ÿ¯ÿ“®ÿ–®ÿš­ÿœ«ÿŸªÿ¢ªÿ¦ªÿªªÿ¯«ÿ´­ÿ¹­ÿ¾®ÿïÿȲÿβÿÓ²ÿÖ³ÿÛ³ÿß²ÿã²ÿè²ÿì¯ÿð®ÿô­ÿö«ÿù©üû¦ûþ¥úÿ¢÷ÿŸôÿœðÿšìÿ–èÿ“äÿáÿŒÝÿˆØÿ…ÔÿÐÿ~ÌÿzÈÿvÃÿrÀÿn¼ÿk·ÿe³ÿb¯ÿ^ªÿZ¦ÿU¡ÿQÿMšÿJ”ÿE‘ÿAÿ=ˆÿ9„ÿ4ÿ0{ÿ+vÿ'rÿ"mÿiÿdÿ`ÿ[ÿ VÿRÿMÿJÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ°ÿ°ÿ°ÿ °ÿ°ÿ°ÿ°ÿ°ÿ!°ÿ&°ÿ*°ÿ.¯ÿ3¯ÿ7¯ÿ:¯ÿ>¯ÿC¯ÿG¯ÿK¯ÿO®ÿT®ÿX®ÿ[®ÿ_®ÿd®ÿh®ÿl­ÿp­ÿs­ÿw«ÿ{«ÿ~«ÿªÿ…ªÿ‰ªÿ©ÿ©ÿ’§ÿ–¦ÿ˜¥ÿ›¥ÿŸ¤ÿ¤¥ÿ§¦ÿ­¦ÿ²§ÿ·©ÿ¼ªÿÁ«ÿÆ­ÿË­ÿЮÿÔ®ÿÙ®ÿÝ®ÿâ­ÿæ­ÿé«ÿíªÿñ©ÿõ§ÿ÷¥þú¢üü ûÿŸúÿ›öÿ˜òÿ–ïÿ’ëÿçÿãÿ‰Þÿ…ÚÿÖÿ~Óÿ{ÏÿwËÿsÆÿpÂÿl¾ÿh¹ÿdµÿ_²ÿ[­ÿX©ÿT¥ÿO ÿKœÿG˜ÿC“ÿ>ÿ:Šÿ7†ÿ3ƒÿ.~ÿ*zÿ&uÿ!qÿlÿhÿcÿ_ÿ ZÿVÿQÿLÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ«ÿ«ÿ«ÿ «ÿ«ÿ«ÿ«ÿ«ÿ «ÿ$«ÿ)«ÿ,«ÿ0ªÿ4ªÿ8ªÿ=ªÿAªÿEªÿHªÿMªÿQ©ÿU©ÿY©ÿ^©ÿb©ÿe©ÿi§ÿm§ÿq§ÿs¦ÿw¦ÿ{¦ÿ¥ÿƒ¥ÿ†¥ÿ‰¤ÿŒ¢ÿ¡ÿ’¡ÿ” ÿ˜Ÿÿœ ÿ¡ ÿ¥¡ÿª¢ÿ¯¢ÿ´¤ÿ¹¥ÿ¾¦ÿŧÿÈ©ÿΩÿÓ©ÿÖ©ÿÚ©ÿß©ÿã§ÿç¦ÿë¥ÿï¤ÿô¢ÿö¡þùŸüûœûþšúÿ˜ùÿ”õÿ’ñÿíÿŒéÿ‰äÿ†áÿƒÝÿÙÿ{ÕÿwÑÿsÌÿqÈÿmÅÿiÁÿe½ÿb¸ÿ^´ÿY°ÿU«ÿQ§ÿM¢ÿHŸÿE›ÿA–ÿ=’ÿ8Žÿ4‰ÿ0…ÿ,€ÿ)|ÿ$yÿ sÿpÿkÿgÿbÿ ^ÿYÿUÿPÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ§ÿ§ÿ¦ÿ ¦ÿ¦ÿ¦ÿ¦ÿ¦ÿ"¦ÿ&¦ÿ*¦ÿ.¦ÿ1¥ÿ7¥ÿ:¥ÿ>¥ÿB¥ÿG¥ÿK¥ÿO¤ÿR¤ÿX¤ÿ[¤ÿ_¤ÿc¢ÿg¢ÿi¢ÿm¡ÿq¡ÿu¡ÿy ÿ| ÿ ÿƒŸÿ…ÿˆœÿŒœÿŽ›ÿ‘šÿ”šÿš›ÿŸœÿ¤œÿ§ÿ­Ÿÿ² ÿ¸¡ÿ½¢ÿ¤ÿƤÿˤÿÐ¥ÿÔ¥ÿÙ¤ÿݤÿá¤ÿæ¢ÿé¡ÿí ÿñŸÿôœÿö›þù˜üû–ûþ“ùÿ‘öÿŽòÿŒïÿˆëÿ…çÿƒãÿßÿ|ÛÿyØÿuÔÿqÏÿmËÿiÇÿgÃÿcÀÿ_ºÿ[·ÿX³ÿR®ÿOªÿK¦ÿG¡ÿBÿ>˜ÿ:”ÿ7‘ÿ1Œÿ.ˆÿ*„ÿ&ÿ"{ÿwÿrÿnÿiÿ eÿ`ÿ]ÿXÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¢ÿ¢ÿ¢ÿ ¢ÿ¢ÿ¡ÿ¡ÿ¡ÿ ¡ÿ$¡ÿ'¡ÿ,¡ÿ0¡ÿ4 ÿ8 ÿ< ÿA ÿE ÿH ÿL ÿQŸÿUŸÿYŸÿ]Ÿÿ_ÿcÿgÿkœÿnœÿr›ÿu›ÿy›ÿ|šÿ˜ÿ˜ÿ…—ÿˆ–ÿŠ”ÿŽ”ÿ“–ÿ—–ÿœ—ÿ¡˜ÿ¥˜ÿªšÿ°›ÿµœÿºÿÀŸÿÅŸÿÈ ÿΠÿÑ ÿÖ ÿÚŸÿߟÿãÿçœÿë›ÿïšÿò˜ÿõ–þ÷”üú’ûüúÿùÿŠõÿˆñÿ…íÿéÿæÿ|âÿyÞÿuÚÿrÕÿnÑÿkÎÿgÊÿcÆÿ_Áÿ]½ÿY¹ÿUµÿQ°ÿL­ÿH©ÿE¤ÿA ÿ<œÿ8—ÿ4“ÿ0ÿ,Šÿ'†ÿ$ÿ ~ÿzÿuÿqÿmÿ hÿdÿ_ÿ[ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿ ÿÿœÿœÿœÿ!œÿ&œÿ*œÿ.œÿ1›ÿ7›ÿ:›ÿ>›ÿB›ÿF›ÿK›ÿOšÿRšÿUšÿY˜ÿ]˜ÿ`˜ÿd—ÿh—ÿk—ÿn–ÿr–ÿu”ÿy“ÿ{“ÿ~’ÿ‘ÿ„ÿ†ÿŒÿ‘‘ÿ”’ÿš’ÿŸ“ÿ¢”ÿ©–ÿ®—ÿ³˜ÿ¸šÿ½šÿ›ÿÆ›ÿËœÿЛÿÔ›ÿØ›ÿÝšÿášÿä˜ÿè—ÿì–ÿð”ÿô’ÿöþùŽûûŒúþ‰ùÿ†÷ÿ„ôÿðÿ~ìÿ{èÿyäÿuáÿrÝÿnØÿkÔÿhÐÿdÌÿ`Èÿ]ÃÿYÀÿU¼ÿQ¸ÿO´ÿK¯ÿF«ÿB§ÿ>¢ÿ:Ÿÿ7šÿ1–ÿ.’ÿ*ÿ&‰ÿ!…ÿ€ÿ|ÿwÿsÿ pÿ kÿgÿcÿ^ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ˜ÿ˜ÿ˜ÿ ˜ÿ˜ÿ˜ÿ—ÿ—ÿ —ÿ$—ÿ'—ÿ+—ÿ0—ÿ4–ÿ8–ÿ<–ÿA–ÿE–ÿG–ÿK”ÿO”ÿR“ÿV“ÿZ“ÿ^’ÿ`’ÿd’ÿh‘ÿl‘ÿnÿrÿuŽÿwÿ{Œÿ~Œÿ€Šÿ„Šÿ‰ŒÿŽŒÿ’ÿ—ÿœŽÿ¡ÿ¦‘ÿ«’ÿ°“ÿ·”ÿº–ÿÀ–ÿÅ–ÿÈ—ÿΗÿÑ–ÿÖ–ÿÚ–ÿÞ”ÿâ“ÿæ’ÿé‘ÿïÿñŽÿôŒþö‰üùˆûû…úþƒùÿ€öÿ~òÿ{ïÿwéÿuæÿrâÿnÞÿlÚÿhÖÿdÓÿ`Ïÿ^ÊÿZÆÿVÂÿR¾ÿOºÿKµÿG²ÿE®ÿ?ªÿ<¥ÿ8¡ÿ4ÿ0˜ÿ+”ÿ'ÿ$Œÿ ˆÿƒÿÿ{ÿvÿ rÿnÿiÿeÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ“ÿ“ÿ“ÿ “ÿ “ÿ“ÿ’ÿ’ÿ’ÿ!’ÿ%’ÿ*’ÿ.’ÿ1’ÿ5‘ÿ:‘ÿ=‘ÿA‘ÿEÿHÿLÿPŽÿTŽÿVŽÿZÿ^ÿbŒÿeŒÿhŠÿkŠÿn‰ÿqˆÿs†ÿw†ÿz…ÿ~…ÿ…ÿ††ÿŒ†ÿˆÿ”‰ÿšŠÿŸŒÿ¤ÿ©Žÿ¯ÿ´‘ÿ¸‘ÿ½‘ÿÂ’ÿÆ’ÿË’ÿÏ’ÿÔ‘ÿØ‘ÿÛ‘ÿßÿäŽÿèÿìŒÿðŠÿòˆþõ…ü÷ƒûúúüùÿ|÷ÿzôÿwðÿsìÿqèÿnäÿkáÿhÝÿeÙÿbÕÿ^ÑÿZÌÿVÈÿTÅÿPÁÿL½ÿH¸ÿE´ÿA°ÿ=­ÿ:§ÿ5¤ÿ1 ÿ.›ÿ*—ÿ%“ÿ!ŽÿŠÿ†ÿÿ~ÿ yÿ uÿqÿlÿhÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿŽÿŽÿŽÿ ŽÿŽÿŽÿÿÿÿ$ÿ'ÿ+ÿ/ÿ3ÿ7Œÿ:Œÿ>ŠÿBŠÿFŠÿJ‰ÿL‰ÿP‰ÿTˆÿXˆÿ[ˆÿ_†ÿb†ÿd…ÿh„ÿkƒÿmƒÿqÿs€ÿvÿ{€ÿ€ÿ„ÿ‰ƒÿƒÿ’„ÿ—…ÿœ†ÿ¡ˆÿ§‰ÿ­Šÿ²Œÿ·ŒÿºÿÀÿÅŽÿÈŽÿÌÿÑÿÕŒÿÚŒÿÞŠÿâ‰ÿæˆÿé†ÿí…ÿñ„ÿôþöüù|ûû{úþy÷ÿvöÿsòÿqïÿmëÿkçÿhãÿdßÿbÛÿ_Øÿ[ÓÿXÏÿTËÿPÇÿLÃÿJ¾ÿFºÿB·ÿ>³ÿ:¯ÿ7ªÿ3¦ÿ/¢ÿ+Ÿÿ'šÿ$–ÿ‘ÿÿ‰ÿ„ÿ€ÿ |ÿwÿsÿnÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ‰ÿ‰ÿ‰ÿ‰ÿ ‰ÿ‰ÿ‰ÿˆÿˆÿ!ˆÿ%ˆÿ)ˆÿ,ˆÿ0†ÿ4†ÿ8†ÿ<…ÿ?…ÿB…ÿF„ÿJ„ÿMƒÿQƒÿUƒÿXÿ[ÿ^€ÿ`ÿd~ÿg~ÿi|ÿm{ÿpzÿszÿy{ÿ||ÿ|ÿ†~ÿŒÿÿ”€ÿ›ƒÿ „ÿ¥…ÿª†ÿ¯†ÿ´ˆÿ¸ˆÿ½‰ÿ‰ÿƉÿˉÿψÿÓˆÿ؆ÿÛ†ÿß…ÿã„ÿçƒÿë€ÿïÿò~þô{üöyûùwúûuùþr÷ÿpõÿmñÿiíÿgéÿdæÿ`âÿ^Ýÿ[ÙÿXÕÿUÑÿQÎÿMÊÿJÆÿFÁÿB½ÿ?¹ÿ<µÿ8²ÿ4­ÿ0©ÿ,¥ÿ)¡ÿ%œÿ!˜ÿ”ÿÿŒÿˆÿ ƒÿÿzÿvÿrÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ„ÿ„ÿ„ÿ „ÿ„ÿ„ÿ„ÿƒÿƒÿ"ƒÿ&ƒÿ*ÿ.ÿ1ÿ5€ÿ8€ÿ<€ÿ?ÿCÿGÿK~ÿM~ÿQ|ÿU|ÿX{ÿZzÿ^zÿ`yÿcwÿgvÿivÿluÿqvÿvvÿ{wÿyÿ„yÿ‰zÿ{ÿ“|ÿ˜~ÿÿ¢€ÿ§ÿ­ƒÿ²ƒÿ·ƒÿº„ÿÀ„ÿÄÿÈ„ÿ̃ÿуÿÕƒÿÙÿÝ€ÿáÿä~ÿé|ÿí{ÿðyÿòwþõuü÷rúúqùün÷ÿlöÿiôÿgïÿcëÿ`çÿ^ãÿZßÿXÛÿUØÿQÔÿMÐÿKÌÿGÇÿCÃÿ?Àÿ<¼ÿ8¸ÿ4³ÿ1¯ÿ.«ÿ*§ÿ&¤ÿ"Ÿÿ›ÿ—ÿ’ÿŽÿŠÿ …ÿÿ~ÿyÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿ~ÿ~ÿ ~ÿ$~ÿ'|ÿ*|ÿ.{ÿ1{ÿ5{ÿ9zÿ=zÿAzÿCyÿGyÿKyÿMwÿQvÿTuÿVuÿZsÿ]rÿ_qÿcqÿepÿkpÿnqÿsrÿyrÿ|sÿuÿ†uÿŒvÿ‘wÿ–zÿ›{ÿ |ÿ¦~ÿª~ÿ¯~ÿ´ÿ¸ÿ½€ÿ€ÿÆÿÊÿÏ~ÿÓ~ÿÖ~ÿÚ|ÿß{ÿãzÿçwÿëvÿïuÿñrþôqüönûùlúûkùþh÷ÿeõÿcñÿ_íÿ]éÿZæÿVâÿTÞÿQÚÿMÖÿKÓÿGÏÿCÊÿAÆÿ=Âÿ9¾ÿ5ºÿ1µÿ.²ÿ*®ÿ'ªÿ$¦ÿ ¡ÿÿšÿ–ÿ‘ÿ ÿˆÿ„ÿ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿzÿzÿzÿ zÿzÿzÿyÿyÿyÿ wÿ$wÿ'wÿ+vÿ/vÿ3uÿ7uÿ9uÿ=sÿAsÿEsÿGrÿKqÿMpÿPpÿTnÿVmÿYmÿ]lÿ_kÿckÿhlÿllÿqmÿvnÿznÿpÿ„qÿ‰rÿŽsÿ“uÿšvÿŸwÿ¤yÿ©yÿ­zÿ²zÿ·{ÿº{ÿÀ{ÿÃ{ÿÈzÿÌzÿÐyÿÕyÿÙwÿÝvÿáuÿäsÿèrÿìqÿðnÿòmüôkûöhúùeùûd÷þböÿ_ôÿ]ðÿYìÿVèÿTäÿPáÿMÝÿKÙÿGÕÿEÐÿAÌÿ=Èÿ9Åÿ7Áÿ3¼ÿ/¸ÿ+´ÿ'°ÿ$­ÿ §ÿ¤ÿ ÿœÿ˜ÿ“ÿ ÿŒÿ†ÿƒÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿuÿuÿuÿ uÿsÿsÿsÿrÿrÿ!rÿ%qÿ)qÿ,qÿ/pÿ3pÿ7pÿ:nÿ>nÿAmÿClÿGlÿJkÿLiÿPhÿRhÿUgÿYeÿ[eÿ`eÿegÿihÿnhÿsiÿwkÿ|kÿlÿ†mÿŒnÿ’pÿ—rÿœsÿ¡sÿ¦uÿªuÿ¯vÿ´vÿ¸vÿ½vÿÁvÿÆuÿÊuÿÎuÿÓsÿÖsÿÚrÿÞpÿânÿæmÿélÿíkÿðhþògüõdû÷búú_ùü^öÿ[õÿYòÿUïÿRëÿPçÿLâÿJÞÿGÚÿCÖÿAÓÿ>Ïÿ:Ëÿ7Çÿ3Ãÿ/¾ÿ,ºÿ)·ÿ%³ÿ!¯ÿªÿ¦ÿ¢ÿŸÿ›ÿ –ÿ’ÿŽÿ‰ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿpÿpÿpÿ pÿ nÿnÿnÿmÿmÿlÿ"lÿ%lÿ)kÿ,kÿ0kÿ4iÿ8iÿ:hÿ=gÿAgÿCeÿFdÿJdÿLcÿObÿR`ÿU`ÿY`ÿ^bÿcbÿgcÿldÿqdÿueÿzgÿhÿ…iÿŠkÿlÿ”mÿšnÿŸpÿ¤pÿ©pÿ­qÿ²qÿ·rÿºrÿÀqÿÃqÿÇpÿÌpÿÐpÿÔnÿØmÿÛlÿßkÿäiÿèhÿìgÿïdþñbüô`ûö^úù[ùûY÷þXöÿUõÿRðÿOìÿLèÿJäÿFáÿCÝÿAÙÿ=Õÿ:Ñÿ8Îÿ4Êÿ0Åÿ,Áÿ)½ÿ%¹ÿ!µÿ°ÿ­ÿ©ÿ¥ÿ¡ÿ ÿ ˜ÿ”ÿ‘ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿkÿkÿiÿ iÿ iÿhÿhÿhÿgÿgÿ"eÿ&eÿ*eÿ.dÿ0dÿ4cÿ7cÿ9bÿ=`ÿ?_ÿB_ÿF^ÿH]ÿK[ÿO[ÿR[ÿV[ÿ[]ÿ`^ÿd^ÿi_ÿn`ÿs`ÿwbÿ~cÿƒdÿˆeÿgÿ’iÿ˜kÿœkÿ¡kÿ¦lÿªlÿ¯mÿ´mÿ¸mÿ½mÿÁlÿÅlÿÊkÿÎkÿÑkÿÕhÿÚgÿÞeÿâdÿæcÿébÿí`ÿð^þò[üôZûöXùùU÷ûRöþQõÿOòÿKïÿHëÿFçÿBãÿ?ßÿ=Ûÿ9Øÿ7Ôÿ4Ðÿ0Ìÿ.Çÿ*Ãÿ&Àÿ"¼ÿ¸ÿ³ÿ¯ÿ«ÿ§ÿ ¤ÿ Ÿÿ›ÿ—ÿ“ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿdÿdÿdÿ cÿ cÿcÿbÿbÿbÿ `ÿ$`ÿ&`ÿ*_ÿ.^ÿ0^ÿ3]ÿ7[ÿ9[ÿRÿAQÿEPÿHQÿMQÿRRÿVTÿ[Tÿ`UÿdVÿiVÿnXÿsYÿyZÿ~[ÿ„]ÿ‰^ÿŽ_ÿ“`ÿ˜bÿœbÿ¡bÿ¦cÿªcÿ¯dÿ´dÿ¸cÿ¼cÿÁbÿÅbÿÈbÿÎ`ÿÑ_ÿÕ^ÿÙ]ÿÝ[ÿáZÿäYÿéXÿìVÿïTþñQûôOúöMùùK÷ûHöþFõÿEôÿAðÿ>ìÿ<èÿ8ãÿ5ßÿ3Ûÿ/Øÿ,Ôÿ*Ðÿ&Ìÿ$Èÿ ÅÿÁÿ¼ÿ¸ÿ´ÿ°ÿ ­ÿ§ÿ¤ÿ ÿœÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿZÿYÿYÿYÿ XÿXÿXÿVÿVÿUÿ Uÿ$Tÿ&Rÿ)Qÿ,Qÿ/Pÿ1Oÿ5Oÿ8Mÿ:Lÿ>KÿBKÿFLÿKMÿPMÿTOÿYPÿ^PÿbQÿgRÿlTÿqUÿvVÿ|XÿYÿ†ZÿŒ[ÿ‘]ÿ–]ÿ›]ÿŸ^ÿ¤^ÿ©_ÿ­_ÿ²_ÿµ_ÿº^ÿ¾^ÿÂ]ÿÇ]ÿË]ÿÏ[ÿÓZÿÖYÿÚXÿßVÿãUÿçTÿëQÿíPþðMüñKûôHúöGùùE÷ûBõþAôÿ=ñÿ:íÿ8éÿ4æÿ1âÿ/Þÿ,Úÿ)Öÿ&Óÿ$Ïÿ ËÿÇÿÂÿ¾ÿºÿ·ÿ ³ÿ¯ÿªÿ¦ÿ¢ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿTÿTÿRÿRÿ RÿQÿQÿQÿPÿOÿ Mÿ"Mÿ%Lÿ)Kÿ+Jÿ.Jÿ1Hÿ4Gÿ7Fÿ:Fÿ?GÿCGÿHHÿMJÿQJÿVKÿ[Lÿ_LÿdMÿiOÿpPÿuQÿzRÿTÿ„Uÿ‰VÿŽXÿ“Xÿ˜YÿœYÿ¡Zÿ¦Zÿ«Zÿ¯Zÿ³Zÿ¸Zÿ¼YÿÀYÿÅXÿÈXÿÌVÿÐUÿÕTÿÙRÿÝQÿáPÿäOÿèMÿëKþíJüðGûòEúõBù÷A÷ú>öü<õÿ:ôÿ7ðÿ4ìÿ1èÿ.äÿ+áÿ)Ýÿ%Ùÿ"Õÿ ÑÿÎÿÈÿÅÿÁÿ½ÿ ¹ÿµÿ°ÿ­ÿ©ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿMÿMÿMÿ Lÿ LÿLÿKÿJÿHÿHÿGÿ"Fÿ%Fÿ'Eÿ+Cÿ.Bÿ0Bÿ3Aÿ8Aÿ=BÿACÿFCÿKEÿOFÿTFÿYGÿ]HÿbHÿhKÿmLÿrMÿwOÿ|PÿƒQÿˆRÿRÿ‘Tÿ–Tÿ›UÿŸUÿ¤Uÿ©Vÿ­Vÿ²UÿµUÿ¹Uÿ¾TÿÂTÿÆRÿËRÿÏQÿÓPÿÖOÿÚMÿÞLÿâKÿæHÿéGÿìEþïCüñAûô>úö<÷ù:öû8õþ5ôÿ3òÿ0ïÿ.ëÿ*çÿ'ãÿ%ßÿ"ÛÿÖÿÓÿÏÿËÿÇÿÃÿ Àÿ ¼ÿ¸ÿ³ÿ¯ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿHÿHÿGÿ Gÿ FÿEÿEÿCÿBÿAÿAÿ!?ÿ$>ÿ'=ÿ*=ÿ,<ÿ0<ÿ5=ÿ:=ÿ>>ÿC?ÿH?ÿLAÿQBÿVBÿ[Cÿ`EÿeFÿkGÿpHÿuJÿ{Kÿ€Lÿ…MÿŠOÿŽOÿ“Pÿ˜PÿœPÿ¡Qÿ¦QÿªQÿ¯Qÿ³Pÿ·Pÿ¼PÿÀOÿÃOÿÈMÿÌLÿÐKÿÔJÿØHÿÛGÿßFÿäEÿèCÿëAþí>üð=ûñ:úô8ùö7÷ù4öû1õþ/ôÿ,ñÿ*íÿ'èÿ$äÿ!áÿÝÿÙÿÕÿÑÿÎÿÊÿ Æÿ Âÿ¾ÿ¹ÿµÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿBÿBÿAÿ ?ÿ ?ÿ>ÿ=ÿ=ÿ<ÿ:ÿ9ÿ 9ÿ$8ÿ&7ÿ*7ÿ.7ÿ38ÿ89ÿ=9ÿA:ÿF<ÿK<ÿO=ÿT>ÿY>ÿ^?ÿcAÿhCÿnEÿsFÿyGÿ~HÿƒJÿˆJÿJÿ‘Kÿ–Kÿ›LÿŸLÿ¤Lÿ©Lÿ­Lÿ°LÿµKÿ¹Kÿ½JÿÂJÿÆJÿÊHÿÎGÿÑFÿÕEÿÚCÿÞAÿâ?ÿæ>ÿè=ÿë:þí8üð7úò4ùõ1÷÷0öú.õü+ôÿ)òÿ&ïÿ$ëÿ çÿãÿßÿÛÿØÿÔÿÐÿ Ìÿ ÈÿÅÿÁÿ¼ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ=ÿ<ÿ<ÿ:ÿ9ÿ 8ÿ8ÿ7ÿ5ÿ4ÿ4ÿ3ÿ 1ÿ"0ÿ'1ÿ,3ÿ03ÿ54ÿ:5ÿ>5ÿC7ÿH8ÿL8ÿQ9ÿV:ÿ[<ÿ`=ÿg>ÿl?ÿqAÿvBÿ{Cÿ€Eÿ…EÿŠFÿŽFÿ“Gÿ˜GÿGÿ¡Hÿ¦HÿªGÿ®Gÿ³Gÿ·FÿºFÿÀEÿÃEÿÇCÿËBÿÏAÿÔ?ÿØ>ÿÛ=ÿß<ÿã:ÿç9ÿé7þì4üï1ûñ0úô.ùö+÷ù*öû'ôþ%òÿ"ñÿ íÿéÿæÿâÿÞÿÚÿÖÿ ÓÿÏÿÊÿÆÿÂÿ¾ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ5ÿ4ÿ4ÿ3ÿ 1ÿ0ÿ0ÿ/ÿ.ÿ,ÿ,ÿ ,ÿ%,ÿ*.ÿ./ÿ3/ÿ80ÿ<1ÿA1ÿF3ÿJ3ÿO4ÿT5ÿZ7ÿ_8ÿd:ÿi<ÿn=ÿs>ÿz?ÿ?ÿƒAÿˆAÿBÿ‘Bÿ–Bÿ›CÿŸCÿ¤Cÿ§Cÿ­Bÿ°Bÿ´Bÿ¹Aÿ½AÿÁ?ÿÅ?ÿÊ>ÿÎ=ÿÑ<ÿÕ:ÿÙ8ÿÝ7ÿá5ÿä4ÿè3þë0üí.ûð,úñ*ùô'÷ö%öù$õû!ôþòÿðÿìÿèÿäÿáÿ Ýÿ ØÿÔÿÐÿÌÿÈÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ/ÿ.ÿ,ÿ+ÿ +ÿ *ÿ)ÿ'ÿ'ÿ&ÿ'ÿ")ÿ')ÿ+*ÿ0+ÿ5+ÿ9,ÿ>.ÿC.ÿG/ÿL0ÿR1ÿX3ÿ]4ÿb5ÿg7ÿm8ÿr9ÿw:ÿ|<ÿ€<ÿ…=ÿŠ=ÿŽ=ÿ“>ÿ˜>ÿ>ÿ¡>ÿ¥>ÿª>ÿ®=ÿ²=ÿ·=ÿº<ÿ¾<ÿÃ:ÿÇ9ÿË8ÿÏ7ÿÓ5ÿÖ4ÿÚ3ÿß1ÿã0ÿæ.ÿè,þë*üí'ûð&úò$ùõ!ö÷õúôüòÿñÿïÿéÿæÿ âÿ ÞÿÚÿÖÿÓÿÏÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ'ÿ'ÿ&ÿ%ÿ $ÿ $ÿ"ÿ!ÿ"ÿ"ÿ $ÿ%%ÿ)%ÿ.&ÿ3'ÿ7'ÿ<)ÿA)ÿF*ÿK+ÿP,ÿU.ÿZ/ÿ_0ÿe3ÿk4ÿp5ÿu7ÿz7ÿ8ÿƒ8ÿˆ8ÿ9ÿ‘9ÿ–9ÿ›:ÿŸ:ÿ¤9ÿ§9ÿ«9ÿ°8ÿ´8ÿ¸8ÿ½7ÿÁ7ÿÅ5ÿÈ4ÿÌ3ÿÐ0ÿÔ/ÿÙ.ÿÝ,ÿá+ÿä*ÿç)þé&üì$ûï!úñ ùô÷ööùõûôþòÿðÿìÿ èÿ äÿáÿÝÿÙÿÕÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!ÿ ÿÿÿ ÿ ÿÿÿÿÿ" ÿ&!ÿ+!ÿ0"ÿ5"ÿ9$ÿ>%ÿC&ÿH'ÿM)ÿR*ÿY+ÿ^,ÿc.ÿh/ÿm0ÿr1ÿw3ÿ|3ÿ€3ÿ…4ÿŠ4ÿ4ÿ“5ÿ˜5ÿœ5ÿ¡5ÿ¥4ÿ©4ÿ®4ÿ²3ÿµ3ÿº1ÿ¾1ÿÂ0ÿÆ/ÿÊ.ÿÏ,ÿÓ+ÿÖ*ÿÚ)ÿÞ'ÿâ&ÿæ$ÿè"þë üíûðùñ÷ôööõùôûòþñÿ ïÿ ëÿçÿãÿßÿÛÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿ ÿ%ÿ)ÿ.ÿ3ÿ7ÿ< ÿA!ÿF"ÿK$ÿQ%ÿV&ÿ['ÿ`*ÿe+ÿk,ÿq,ÿu.ÿz.ÿ/ÿƒ/ÿˆ/ÿ0ÿ‘0ÿ–0ÿ›0ÿŸ0ÿ¢0ÿ§/ÿ«/ÿ¯/ÿ´.ÿ¸.ÿ¼,ÿÀ,ÿÅ+ÿÈ*ÿÌ'ÿÐ&ÿÔ%ÿØ$ÿÛ"ÿß!ÿã ÿæþèüëûíúðùò÷õö÷õú òü ñÿðÿíÿéÿæÿâÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿ"ÿ&ÿ+ÿ0ÿ4ÿ9ÿ>ÿEÿJ ÿO!ÿT"ÿY$ÿ^%ÿd&ÿi'ÿn)ÿr)ÿw*ÿ|*ÿ€*ÿ…+ÿŠ+ÿ+ÿ“,ÿ˜,ÿœ+ÿ +ÿ¥+ÿ©*ÿ­*ÿ²*ÿµ)ÿ¹)ÿ¾'ÿÂ&ÿÆ%ÿÊ$ÿÎ"ÿÑ!ÿÕ ÿÙÿÞÿâÿäÿçüéûìúïùñ÷ô öö õùôûòþñÿðÿëÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿ ÿÿÿÿ ÿ$ÿ)ÿ.ÿ1ÿ7ÿ=ÿBÿGÿLÿQÿVÿ]!ÿb"ÿg$ÿl$ÿq%ÿu%ÿz%ÿ&ÿƒ&ÿˆ&ÿ'ÿ‘'ÿ–'ÿš'ÿŸ&ÿ¢&ÿ¦&ÿ«%ÿ¯%ÿ³%ÿ¸$ÿ¼$ÿÀ"ÿà ÿÇÿËÿÏÿÔÿØÿÛÿßÿãÿæþèüëûí úï ùñ÷ôõöôùòûñþðÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿ ÿ ÿ ÿ ÿÿ!ÿ&ÿ+ÿ/ÿ5ÿ:ÿ?ÿEÿJÿPÿUÿZÿ_ÿdÿi ÿn ÿr ÿw!ÿ|!ÿ!ÿ…"ÿŠ"ÿ"ÿ“"ÿ—"ÿœ"ÿ !ÿ¤!ÿ©!ÿ­ ÿ° ÿµ ÿ¹ÿ½ÿÁÿÅÿÊÿÎÿÑÿÕÿÙÿÝÿáÿãþæ üè ûë úíùð÷òöõõ÷ôÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿ ÿ ÿ$ ÿ) ÿ. ÿ3ÿ8ÿ=ÿBÿHÿMÿRÿXÿ]ÿcÿgÿlÿqÿuÿzÿÿƒÿˆÿÿ‘ÿ–ÿšÿÿ¢ÿ¦ÿªÿ¯ÿ³ÿ·ÿºÿÀÿÃÿÇÿËÿÏÿÓÿÖÿÚÿÞ ÿâ ÿä þçüéûìúï÷ñöÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!ÿ&ÿ+ÿ0 ÿ5 ÿ< ÿAÿFÿKÿPÿUÿ[ÿ`ÿdÿiÿnÿrÿwÿ|ÿÿ…ÿŠÿŽÿ“ÿ—ÿ›ÿ ÿ¤ÿ§ÿ­ÿ°ÿ´ÿ¹ÿ½ÿÁÿÅÿÈÿÌÿÐ ÿÔ ÿÙ ÿÝÿáÿãþæüèûëúíùÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ$ÿ)ÿ.ÿ4ÿ9ÿ> ÿC ÿH ÿO ÿTÿYÿ^ÿcÿgÿlÿqÿuÿzÿÿƒÿˆÿÿ‘ÿ”ÿšÿÿ¡ÿ¦ÿªÿ®ÿ³ÿ·ÿºÿ¾ ÿ ÿÆ ÿÊ ÿÏÿÓÿÖÿÚÿÞÿáÿãþæûÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!ÿ'ÿ,ÿ1ÿ7ÿ<ÿAÿGÿL ÿQ ÿV ÿ[ ÿ` ÿd ÿiÿnÿsÿwÿ|ÿÿ…ÿŠÿŽÿ’ÿ—ÿ›ÿŸÿ¤ÿ§ ÿ« ÿ° ÿ´ ÿ¸ ÿ¼ ÿÀÿÅÿÈÿÌÿÐÿÔÿØÿÛÿßÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ*ÿ/ÿ4ÿ:ÿ?ÿEÿJÿOÿTÿYÿ^ÿc ÿg ÿl ÿq ÿu ÿz ÿ ÿƒ ÿˆ ÿŒ ÿ‘ ÿ” ÿ˜ ÿ ÿ¡ ÿ¥ ÿªÿ®ÿ²ÿµÿºÿ¾ÿÂÿÆÿÊÿÎÿÑÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ8ÿ=ÿBÿGÿMÿRÿVÿ[ÿ`ÿdÿiÿnÿsÿwÿ|ÿÿ…ÿ‰ÿŽÿ’ÿ–ÿ›ÿŸÿ¢ÿ§ÿ«ÿ¯ÿ´ÿ¸ÿ¼ÿÀÿÃÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿKÿPÿUÿYÿ^ÿcÿgÿlÿqÿuÿzÿÿƒÿˆÿŒÿÿ”ÿ˜ÿœÿ¡ÿ¥ÿ©ÿ®ÿ²ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿiÿnÿsÿwÿ|ÿ€ÿ…ÿ‰ÿÿ’ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/canvasWidgets.py0000644000175000017500000001154010777524073027266 0ustar debiandebian############################################################################# # # Author: Alexandre T. GILLET # # Copyright: TSRI 2003 # ############################################################################# import types import Tkinter, Pmw, os from mglutil.util.callback import CallBackFunction, CallbackManager class PatternCanvas: def __init__(self,master,title=None,callback=None, size=5,border=1,tkCol=None,immediate=1): #tkCol is a list of list where each elemnt is a color # tkCol[0][0] = a Tk color # size = size of the sqare representing the Tkcolor on the canvas # border = border size # if not master: master = Tkinter.Toplevel() if title is not None: master.title(title) f = self.frame = Tkinter.Frame(master) if tkCol: self.Xelemt = len(tkCol) self.Yelemt = len(tkCol[0]) self.size = size self.border = border self.width =(self.Xelemt*self.size+2*self.border) self.height =(self.Yelemt*self.size+2*self.border) self.cwcanvas = Tkinter.Canvas(f,width=self.width, height=self.height, borderwidth=3 ) xo = self.border for i in range(self.Xelemt): xe = xo + self.size yo = self.border for j in range(self.Yelemt): ye = yo + self.size self.cwcanvas.create_rectangle(xo, yo, xe, ye, fill=tkCol[i][j]) yo = ye xo = xe self.cwcanvas.pack() #self.frame.pack() # CallBack Manager self.cbManager = CallbackManager() if callback: if type(callback) in [types.ListType, types.TupleType]: map(self.cbManager.AddCallback, callback) else: self.cbManager.AddCallback(callback) def get(self): pass def set(self): pass def pack(self,*args, **kw): apply(self.frame.pack, args, kw) def pack_forget(self,*args, **kw): apply(self.frame.pack_forget, args, kw) def grid(self,*args, **kw): apply(self.frame.grid, args, kw) def grid_forget(self,*args, **kw): apply(self.frame.grid_forget, args, kw) def destroy(self,*args, **kw): apply(self.frame.destroy, args, kw) class CoefCanvas: def __init__(self,master,title=None,width=150,height=50, callback=None): #tkCol is a list of list where each elemnt is a color # tkCol[0][0] = a Tk color # size = size of the sqare representing the Tkcolor on the canvas # border = border size # if not master: master = Tkinter.Toplevel() if title is not None: master.title(title) f = self.frame = Tkinter.Frame(master) self.coeff = 0.0 self.value = "%.1f"%self.coeff+'%' self.width = width self.height = height self.cwcanvas = Tkinter.Canvas(f,width=self.width, height=self.height) self.wrect = self.cwcanvas.create_rectangle(0,0,100,10, outline='black', fill='white') self.rrect = self.cwcanvas.create_rectangle(0,0,self.coeff,10, outline='black', fill='red') self.labelvalue = self.cwcanvas.create_text(120,10,text=self.value) self.cwcanvas.pack(side='top') #self.frame.pack() # CallBack Manager self.cbManager = CallbackManager() if callback: if type(callback) in [types.ListType, types.TupleType]: map(self.cbManager.AddCallback, callback) else: self.cbManager.AddCallback(callback) def get(self): pass def set(self,coeff,color): self.cwcanvas.coords(self.rrect,0,0,coeff,10) self.cwcanvas.itemconfigure(self.rrect,fill=color) self.cwcanvas.itemconfigure(self.labelvalue,text="%.1f"%coeff+'%') def pack(self,*args, **kw): apply(self.frame.pack, args, kw) def pack_forget(self,*args, **kw): apply(self.frame.pack_forget, args, kw) def grid(self,*args, **kw): apply(self.frame.grid, args, kw) def grid_forget(self,*args, **kw): apply(self.frame.grid_forget, args, kw) def destroy(self,*args, **kw): apply(self.frame.destroy, args, kw) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/progressBar.py0000644000175000017500000003763210615677212026762 0ustar debiandebian######################################################################### # # Date: Apr 2003 Authors: Daniel Stoffler # # stoffler@scripps.edu # # Copyright: Daniel Stoffler and TSRI # ######################################################################### import Tkinter class ProgressBarConf: """callable object to call the progress bar configure method. Used to overwrite methods of class instances (example: the MolKit/molecule.Molecule)""" def __init__(self, pb): self.pb = pb def __call__(self, **kw): apply(self.pb.configure, (), kw) class ProgressBarUpd: """callable object to call the progress bar set method. Used to overwrite methods of class instances (example: the MolKit/molecule.Molecule)""" def __init__(self, pb): self.pb = pb def __call__(self, value=None): self.pb.set(value) class ProgressBar: """This class provides a TKinter progress bar widget. SUMMARY: To use this widget, use the configure() method and the set() method. use show() to display the widget, use hide() to hide the widget . Example: # create an instance of the progress bar widh an additional label, # the label is packed above (top) of the bar mybar = ProgressBar(master=None, labelside='top') # configure the progress bar with my own width and height, set it to # percent mode, initialize it to 0 (init=1), and add a label # which says 'Read...' mybar.configure(height=150, width=18, init=1, mode='percent', 'labeltext'='Read...') mybar.set(20) # this sets the bar to 20% # now change the mode mybar.configure(mode='absolute', max=200) mybar.set(100) # this sets the bar to 50%, because the mas is now 200 INSTANCIATION: simplest case: instanciate it without any options. Example: mybar = ProgressBar() Additional init options: master: the Tkinter master of this widget. If master is None, the master will be set to Tkinter.Toplevel() height: the height of the progress bar (not of the entire widget) in pixel width: the width of the progress bar (not the entire widget) mode: the widget runs in 3 different modes: 'percent', 'absolute', and 'increment'. Explanation below. max: the maximum value. Explanation below. labelside: can be 'left', 'right', 'top', 'bottom' or None. Used to speicfy where to place the label. None will place the label inside the progress bar. THE CONFIGURE METHOD: The progress bar can be configured with many options. calling the configure without any arguments returns a dict with the current widget configuration. Usage: mybar.configure(key1=value1, key2=value2, ...) options are: init: can be 0 or 1. If set to 1, the progress bar is reset to 0 mode: 'percent' runs the progress bar in percent mode, i.e. setting the value to 0 means 0% and setting it to 100 means 100% 'absolute' means the widget's set() method computes the current percent value based on the max value. when in 'increment' mode, the progress bar automatically increments its value by 1 and computes the corresponding percent value. max: the max value is used to compute the current percent value (i.e., setting max to 200 and then set the progress bar to 100 will set it tp 50%) progressformat: can be either 'percent' or 'ratio'. 'Percent' displays the current value as 'xxx%', 'ratio' displays the current value as 'x/x, like 2/7' granularity: an integer describing at how many % the bar shall update. Default value is 1 (i.e. every 1% the bar redraws) This is onlu usefull when in 'increment' mode. width: see above height: see above labelformat: see above THE SET METHOD The progress bar has a set method to set the current value, depending on the mode (see above) the proper percent value is computed, and then the bar is redrawn if necessary usage: mybar.set(value) """ def __init__(self, master=None, width=150, height=30, max=None, mode='percent', labelside='top'): if master is None: master = Tkinter.Toplevel() master.protocol('WM_DELETE_WINDOW', self.hide ) self.master = master # master of this widget self.mode = mode # can be 'percent' or 'absolute' self.ONOFF = 'on' # can be on or off. When off, the # set method immediately returns self.width = width # total width of widget self.height = height # total height of widget self.borderwidth = 1 # the canvas borderwidth self.frame = None # the frame holding canvas & label self.canvas = None # the canvas holding the progress bar self.progressBar = None # the progress bar geometry self.backgroundBar = None # the background bar geometry self.progressLabel = None # the '%' label self.progressformat = 'percent'# the format of the progress label, # can be 'percent' or 'ratio' self.label = None # the text label self.labeltext = None # the text string of the label self.labelside = labelside # where the text label shall be packed self.progress = 0 # the progress value if max is None: max = 100 self.max = max # the max value used when mode='absol.' self.increment = None # increment used when mode = 'incr.' self.incrementCounter = 0 # counter used for increment self.granularity = 1 # update progress bar every 1% self.createWidget() # create the widget self.frame.pack() # pack the frame self.set(0.0) # initialize to 0% def createWidget(self): self.frame = Tkinter.Frame(self.master, borderwidth=self.borderwidth, relief='sunken') self.canvas = Tkinter.Canvas(self.frame) # create the background bar geometry bw = self.borderwidth self.backgroundBar = self.canvas.create_rectangle( #x0 y0 x1 y1 0, 0, self.width, self.height, fill='darkblue') # create the progress bar geometry self.progressBar = self.canvas.create_rectangle( #x0 y0 x1 y1 0, 0, self.width, self.height, fill='blue') # set overall height and with of the widget self.setWidth() self.setHeight() # create the progress label geometry self.progressLabel = self.canvas.create_text( int(self.width/2), int((self.height/2)+1), text="0%") self.canvas.itemconfig(self.progressLabel, fill='white') # create the text label geometry self.label = Tkinter.Label(self.frame, text='', width=20) if self.labelside is not None: self.label.pack(side=self.labelside) self.canvas.pack() def setWidth(self, width=None): # set overall widget width if width is not None: self.width = width self.canvas.configure(width=self.width) # set width self.canvas.coords(self.backgroundBar, # set background bar 0, 0, self.width, self.height) self.setBar() # update progress bar def setHeight(self, height=None): # set overall widget height if height is not None: self.height = height self.canvas.configure(height=self.height) self.canvas.coords(self.backgroundBar, # set background bar 0, 0, self.width, self.height) self.setBar() # update progress bar def set(self, value=None): # set the progress bar to value # Note: value can be None, which can be true when the mode is increment # if the mode is 'percent', the value represents the percentage, # the values must range from 0 100 # if the mode is 'absolute', the percentage has to be computed # based on self.max # if the mode is 'increment', set() is only executed when the new # value has reached another full percent if self.ONOFF == 'off': # no need to set and redraw if hidden return # test for mode if self.mode == 'percent': if value is None: return else: self.progress = value self.setBar() return elif self.mode == 'absolute': if value is None: return else: if self.max == 0: self.progress = 100 self.setBar() else: self.progress = value * 100.0 / self.max self.setBar() return elif self.mode == 'increment': # note that the value is not used here! self.incrementCounter = self.incrementCounter + 1 if self.max == 0: progress = 100 else: progress = (100.*self.incrementCounter)/self.max if (progress-self.progress)> self.granularity: self.progress = progress self.setBar() return ## if self.incrementCounter >= self.increment: ## if self.max == 0: ## self.progress = 100 ## self.incrementCounter = 0 ## self.setBar() ## return ## else: ## self.progress = self.progress + self.granularity +\ ## ( (self.incrementCounter-self.increment)*100.0/self.max ) ## self.incrementCounter = 0 ## self.setBar() ## return ## else: ## #print '.............',self.progress ## return def setBar(self): self.canvas.coords(self.progressBar, 0, 0, self.width * self.progress/100.0, self.height) # set the label if self.progressLabel: if self.progressformat == 'percent': #print self.progress text = str(int(self.progress))+'%' #print text elif self.progressformat == 'ratio': if self.mode == 'absolute' or self.mode == 'increment': text = str(int(self.progress*self.max/100.0))+\ '/'+str(self.max) #print text, self.progress elif self.mode == 'percent': text = str(self.progress)+'/'+str(self.max) text = self.label.cget('text')+' '+text self.canvas.itemconfig(self.progressLabel, text=text) self.canvas.coords(self.progressLabel, int(self.width/2), int(self.height/2)+1) # update idletasks self.canvas.update_idletasks() def get(self): return self.progress def reset(self): # initialize the bar oldmode = self.mode self.mode = 'percent' self.set(0) # reset progress bar to 0% self.mode = oldmode if self.mode == 'increment': self.setIncrement() # reset increment counter to 0 def setMax(self, max): if max is None: if mode == 'percent': max = 100 else: max = self.width # reset max self.max = max self.setIncrement() def setIncrement(self): self.increment = ( float(self.max) * self.granularity ) / 100.0 self.incrementCounter = 0 # reset increment counter to 0 def setMode(self, mode): if mode not in ['percent', 'absolute', 'increment']: mode = 'percent' print 'PROGRESSBAR Warning: illegal mode, set to "percent"' self.mode = mode if mode == 'increment': self.setIncrement() # this needs to be reset def setLabelText(self, label): if label is None: return self.label.configure(text=label) self.labeltext = label def setProgressFormat(self, format): if format not in ['percent','ratio']: format = 'percent' print 'PROGRESSBAR Warning: illegal progressformant, '+ \ 'set to "percent"' self.progressformat = format def setGranularity(self, value): self.granularity = value self.setIncrement() def show(self): if isinstance(self.master, Tkinter.Toplevel): self.master.deiconify() else: self.frame.pack(side='left', pady=3) self.ONOFF = 'on' def hide(self): if isinstance(self.master, Tkinter.Toplevel): self.master.withdraw() else: self.frame.forget() self.ONOFF = 'off' def configure(self, **kw): if len(kw)==0: # return a dict of the current configuration cfg = {} cfg['width'] = self.width cfg['height'] = self.height cfg['max'] = self.max cfg['mode'] = self.mode cfg['labeltext'] = self.labeltext cfg['labelside'] = self.labelside cfg['progressformat'] = self.progressformat cfg['granularity'] = self.granularity return cfg else: # do a configure mode = None init = 0 for key,value in kw.items(): if key=='width': self.setWidth(value) elif key=='height': self.setHeight(value) elif key=='max': self.setMax(value) elif key=='mode': mode = value elif key=='labeltext': self.setLabelText(value) elif key=='init': init = value elif key=='progressformat': self.setProgressFormat(value) elif key=='granularity': self.setGranularity(value) # some things have to be set in a particular order if mode: # this needs to be called after setting the max self.setMode(mode) if init: # this needs to be called last self.reset() ############################### if __name__ == '__main__': import time bar = ProgressBar(width=150, height=18) print 'type "loop()" and "loop2(max=value)" to run the progress bar' def loop(sleep=None): if sleep is None: sleep = 0.001 bar.configure(mode='percent', labeltext='Read...',progressformat='ratio') for i in range(101): bar.set(i) if i == 33: bar.configure(labeltext='Parse...') elif i == 66: bar.configure(labeltext='Compute...') elif i == 100: bar.configure(labeltext='Done') time.sleep(sleep) def loop2(sleep=None, max=None): if sleep is None: sleep = 0.000001 if max is None: max = 50 bar.configure(init=1, mode='increment', max=max, labeltext='Write...', progressformat='ratio') for i in range(max): bar.set() time.sleep(sleep) #bar.configure(labeltext='Done...') loop(0.1) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/RelabelingCascadeMenu.py0000644000175000017500000000616010615741645030620 0ustar debiandebian######################################################################## # # Date: Novembre 2005 Authors: Guillaume Vareille, Michel Sanner # # vareille@scripps.edu # sanner@scripps.edu # # The Scripps Research Institute (TSRI) # Molecular Graphics Lab # La Jolla, CA 92037, USA # # Copyright: Guillaume Vareille, Michel Sanner and TSRI # ######################################################################### # # $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/BasicWidgets/Tk/RelabelingCascadeMenu.py,v 1.4 2007/05/01 22:48:05 vareille Exp $ # # $Id: RelabelingCascadeMenu.py,v 1.4 2007/05/01 22:48:05 vareille Exp $ # import Tkinter import weakref class RelabelingCascadeMenu(Tkinter.Menu): """ """ def __init__(self, label, variable, master=None, cnf={}, **kw): #print "RelabelingCascadeMenu.__init__", cnf, kw Tkinter.Menu.__init__(self, *(master, cnf), **kw) self.baseLabel = label self.cascadeVariable = variable self._upperMenu = weakref.ref(master) self._cascadeMenuIndex = None self._externalCallbackFunction = None self._valuesLabels = {} if hasattr(self._upperMenu(), 'relabelingCascadeMenus') is False: self._upperMenu().relabelingCascadeMenus = {} self._upperMenu().relabelingCascadeMenus[self.baseLabel] = self def add_radiobutton(self, cnf={}, **kw): #print "add_radiobutton", cnf, kw if self._cascadeMenuIndex is None: self._cascadeMenuIndex = self._upperMenu().index(self.baseLabel) self._valuesLabels[kw['value']] = kw['label'] if kw.has_key('command') and kw['command'] is not None: self._externalCallbackFunction = kw['command'] kw['command'] = self._envelopeCallbackFunction Tkinter.Menu.add_radiobutton( self, *(cnf,), **kw) def setWithoutCallbackFunction(self, value): #print "setWithoutCallbackFunction", self.baseLabel, value self.cascadeVariable.set(value) self._relabelCascade() def setWithCallbackFunction(self, value=None): #print "setWithCallbackFunction", value if value is None: value = self.cascadeVariable.get() lLabel = self._valuesLabels[value] if lLabel == 'none': # because self.index can't deal with label 'none' lIndex = 0 # be sure to put label 'none' in index 0 !!!! else: # self.index also have problems with numeric label such as '1' # use ' 1' instead lIndex = self.index(lLabel) self.invoke(lIndex) def _relabelCascade(self): #print "_relabelCascade" self._upperMenu().entryconfigure( self._cascadeMenuIndex, label=self.baseLabel \ +' [ ' \ +str(self._valuesLabels[self.cascadeVariable.get()])+' ]') def _envelopeCallbackFunction(self): #print "_envelopeCallbackFunction" self._relabelCascade() if self._externalCallbackFunction is not None: self._externalCallbackFunction() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/customizedWidgets.py0000644000175000017500000013525411623255460030202 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ############################################################################# # # Author: Sophie COON, Michel F. SANNER, Daniel Stoffler # # Copyright: M. Sanner TSRI 2000 # ############################################################################# #$Header: /opt/cvs/python/packages/share1.5/mglutil/gui/BasicWidgets/Tk/customizedWidgets.py,v 1.52 2011/08/18 18:34:24 sanner Exp $ # #$Id: customizedWidgets.py,v 1.52 2011/08/18 18:34:24 sanner Exp $ # import sys import Tkinter, Pmw import types import tkMessageBox from mglutil.util.callback import CallBackFunction from mglutil.gui.InputForm.Tk.gui import InputFormDescr,InputForm,evalString from mglutil.gui import widgetsOnBackWindowsCanGrabFocus class KeySelectable: """Adds the ability to use keystrokes to quickly select items in a list. The widget has to be a widget supporting .bind .after, .focus_set and .focus_get""" def __init__(self, widget, command=None): self.matchCharIndex = 1 # number of char in matchString to be matched # by entry self.afterID = None self.matchString = '' self.widget = widget self.command = command self.oldfocus = None widget.bind('', self.setFocus_cb) #widget.bind('', self.Enter_cb) #widget.bind('', self.Leave_cb) widget.bind('', self.key_cb) if command: widget.bind('', self.enterKeyCb) self.matchCharIndex = 1 # number of char in matchString to be matched # by entry self.afterID = None self.matchString = '' def enterKeyCb(self, event): if self.command: #self.command(self._entryfield.get()) self.command(self.get()) def timeOut(self, event=None): """resets self.matchCharIndex to 0, called after a short period of time if no new character has been typed""" self.matchString = '' self.matchCharIndex = 1 self.afterID = None def key_cb(self, event=None): # use key strokes to select entry in listbox # strokes placed within 500 miliseconds are concatenated #print self.matchCharIndex, '|', self.matchString, '|', event.keysym try: l = self.getAllValues() i = 0 _str = self.matchString + event.keysym for e in l: if str(e)[:self.matchCharIndex]==_str: #print e, i self.clearSelection() self.selectItem(i) self.matchCharIndex = self.matchCharIndex + 1 if self.afterID is not None: self.widget.after_cancel(self.afterID) self.afterID = self.widget.after(500, self.timeOut) self.matchString = _str break i = i + 1 except: import traceback traceback.print_exc() def setFocus_cb(self, event=None): if widgetsOnBackWindowsCanGrabFocus is False: lActiveWindow = self.widget.focus_get() if lActiveWindow is not None \ and ( lActiveWindow.winfo_toplevel() != self.widget.winfo_toplevel() ): return self.oldfocus = self.widget.focus_get() self.widget.focus_set() def releaseFocus_cb(self, event=None): if self.oldfocus is not None: if widgetsOnBackWindowsCanGrabFocus is False: lActiveWindow = self.oldfocus.focus_get() if lActiveWindow is not None \ and ( lActiveWindow.winfo_toplevel() != self.oldfocus.winfo_toplevel() ): return self.oldfocus.focus_set() def Enter_cb(self, event=None): if widgetsOnBackWindowsCanGrabFocus is False: lActiveWindow = self.widget.focus_get() if lActiveWindow is not None \ and ( lActiveWindow.winfo_toplevel() != self.widget.winfo_toplevel() ): return self.oldfocus = self.widget.focus_get() self.widget.focus_set() def Leave_cb(self, event=None): if self.oldfocus is not None: if widgetsOnBackWindowsCanGrabFocus is False: lActiveWindow = self.oldfocus.focus_get() if lActiveWindow is not None \ and ( lActiveWindow.winfo_toplevel() != self.oldfocus.winfo_toplevel() ): return self.oldfocus.focus_set() ## These functions have to be sub-classed: def getAllValues(self): """returns all values in the chooser""" pass def selectItem(self, i): """do what has to be done to show what matches the typed string""" pass def clearSelection(self): """clear the current selection in the widget""" pass class KeySelectableListBox(KeySelectable): """Adds the ability to use keystrokes to quickly select items in a Tkinter.ListBox.""" def __init__(self, widget, command=None): KeySelectable.__init__(self, widget, command) def getAllValues(self): """returns all values in the chooser""" return self.widget.get(0, 'end') def selectItem(self, i): """do what has to be done to show what matches the typed string""" self.widget.see(i) self.widget.selection_set(i) def clearSelection(self): """clear the current selection in the widget""" sel = self.widget.curselection() if len(sel): for j in sel: self.widget.selection_clear(j) class KeySelectableScrolledCanvas(KeySelectable): """Adds the ability to use keystrokes to quickly select items in a Pmw.ScrolledCanvas. The names of the items on the canvas have to be passed as a separate argument""" def __init__(self, widget, itemNames): command = None KeySelectable.__init__(self, widget, command) self.itemNames = itemNames def getAllValues(self): """returns all values in the chooser""" return self.itemNames def selectItem(self, i): """do what has to be done to show what matches the typed string""" scrollTo = float(i) / float(len(self.itemNames)) # compensate for the first pixel: # 2.1 seems to work better than 2.0 scrollTo = scrollTo - ( (scrollTo / float(len(self.itemNames)) ) /2.1 ) self.widget.yview_moveto(scrollTo) def clearSelection(self): """clear the current selection in the widget""" pass class KeySelectableScrolledFrame(KeySelectable): """Adds the ability to use keystrokes to quickly select items in a Pmw.ScrolledFrame. Disclaimer: this works only if the items in the frame have an attribute name of type string. It is up to the user to add this attribute when building the ScrolledFrame widget.""" def __init__(self, widget): command = None KeySelectable.__init__(self, widget, command) self.itemNames = [] def getAllValues(self): """returns all the names of all children of this frame. Please note that this only works if the children have an attribute name of type string.""" itemNames = [] itemList = self.widget.interior().children.values() for item in itemList: if hasattr(item, 'name'): itemNames.append(item.name) itemNames.sort() self.itemNames = itemNames return itemNames def selectItem(self, i): """do what has to be done to show what matches the typed string""" scrollTo = float(i) / float(len(self.itemNames)) # there is some drift that has to be fixed: # this factor 2.2 is empiric... scrollTo = scrollTo - ( (scrollTo / float(len(self.itemNames)) ) /2.2 ) #FIXME # I am upset!! In the official Pmw documentation the method is called # 'yview()' but looking at the source code of Pmw widget I found out # they call it '_yview()'!!! Grrr!! And it doesnt work as described # in the manual. Even the official demos dont work. # this is the part of the scrolling method I am interested: frameHeight = self.widget._frame.winfo_reqheight() self.widget.startY = scrollTo * float(frameHeight) self.widget.reposition() def clearSelection(self): """clear the current selection in the widget""" pass class ListChooser(KeySelectableListBox): """ ListChooser presents a list of objects in a scrolled listbox. chooserObject <- ListChooser( root, mode='single', title='Choose', withComment=0, entries=[], cwcfg=None, command=None, commandEvent="", lbpackcfg={'fill':'both', 'expand':1}, lbwcfg={} ) - root will be the master in which the widget gets embedded - mode can be 'single', 'browse', 'multiple', 'extended' - entries can be given as a list of items associated with a description, (items,description) or (item,None) if no description is provided. double clicking on an entry display the associated comment in a textfield if withComment is True. - withComment can be True of False - command - commandEvent - cwcfg - lbpackcfg """ def __init__(self, root, mode='single', title='Choose', withComment=0, entries=[], cwcfg=None, command=None, commandEvent="", lbpackcfg={'fill':'both', 'expand':1}, lbwcfg={}): assert mode in ['single', 'browse', 'multiple', 'extended' ] cwcfg1={'usehullsize':1, 'hull_width':100,'hull_height':80, 'text_wrap':'none'} if cwcfg is not None: cwcfg1.update( cwcfg1 ) cwcfg = cwcfg1 # put everything inside a Frame self.top = Tkinter.Frame(root, bd=4) # Create a scrolled text widget to display comments if not None if withComment: self.comments = apply(Pmw.ScrolledText,(self.top,),cwcfg) self.comments.pack(fill='both', expand=1) self.withComment = withComment # add a title self.title = Tkinter.Label(self.top,text=title) self.title.pack(side='top', anchor='n') # build the scroll list f = Tkinter.Frame(self.top) self.mode = mode scrollbarY = Tkinter.Scrollbar(f, orient='vertical') scrollbarX = Tkinter.Scrollbar(f, orient='horizontal') lbwcfg['selectmode'] = mode lbwcfg['yscrollcommand'] = scrollbarY.set lbwcfg['xscrollcommand'] = scrollbarX.set self.lb = apply( Tkinter.Listbox, (f, ), lbwcfg) # assign command to event # command can either be a function name, in that case will get # the event from # commandEvent.command can also be a list of tuple (command, # commandEvent) use to assign more than one command. if command: # list of tuple [(command,commandEvent),] if type(command) == types.ListType: for c in command: if type(c) == types.TupleType: self.lb.bind(c[1],c[0],'+') else: self.lb.bind(commandEvent,command,'+') scrollbarY.config(command=self.lb.yview) scrollbarY.pack(side='right', fill='y') scrollbarX.config(command=self.lb.xview) scrollbarX.pack(side='bottom', fill='x') apply( self.lb.pack, (), lbpackcfg) f.pack(fill='both', expand=1) self.hasInfo = 0 KeySelectableListBox.__init__(self, self.lb, command) self.entries = [] # add entries if entries: for e in entries: self.add(e) # If no comments are associated to the item the scrolledText # is not shown. #if self.hasInfo==0 and withComment==0: # self.comments.forget() def add(self, entry): """add an entry to the list""" assert(type(entry)==types.TupleType) name = entry[0] if not isinstance (entry[0], str): name = repr(entry[0]) self.entries.append((name,)+tuple(entry[1:])) self.lb.insert('end', name) #No comments or comments==None. if self.withComment and len(entry) > 1 and entry[1] != None: self.lb.bind("", self.info, '+') self.hasInfo=1 #self.comments.pack() def insert(self, pos, entry, comment=None): """insert an entry to the list""" #assert pos < len(self.entries) if pos == 'end': self.entries.append( (entry, comment) ) else: self.entries.insert(pos, (entry, comment)) if not type(entry) in types.StringTypes: entry = repr(entry) self.lb.insert(pos, entry) def info(self, event=None): """dispaly information about the curent selection""" if not self.withComment: return self.comments.delete(0.0, 'end') if len(self.lb.curselection())!=0: s=self.entries[map( int, self.lb.curselection())[0]][1] self.comments.insert('end', s+'\n') def clear(self): """clear all entries""" #self.lb.delete(0.0, 'end') self.lb.delete(0, 'end') self.entries = [] def setlist(self, items): """ Replace all the items of the listbox component with those specified by the items sequence of the following type (entryName, comment) or(entryName, None) """ self.clear() map(self.add, items) def clearComments(self): """clear all entries""" self.comments.delete(0.0, 'end') def remove(self, entry): """remove an entry""" if not len(self.entries): return ## ind = map(lambda x: x[0],self.entries).index(entry) ## self.entries.remove(self.entries[ind]) ## self.lb.delete( ind ) if type(entry) in types.StringTypes: allEntries = [x[0] for x in self.entries] if entry in allEntries: ind = allEntries.index(entry) else: return elif isinstance(entry, types.IntType): ind = entry del self.entries[ind] self.lb.delete( ind ) def getInd(self,event=None): """ get index of current selection""" res =[] for ent in map( int, self.lb.curselection() ): res.append( ent) return res def get(self, event=None, index=0): """get the current selection""" res = [] for ent in map( int, self.lb.curselection() ): res.append( self.entries[ ent ][index] ) return res def getAll(self, event=None, index=0): """get the current selection""" res = [] for ent in self.entries: res.append( ent[index] ) return res def select(self, first, last=None): """add an entry to the current selection""" """select the given entry""" # need to get the index of first if first in self.entries: firstInd = self.entries.index(first) elif first in map(lambda x: x[0], self.entries): firstInd = self.entries.index((first,None)) else: firstInd = first # need to get the index of last if last in self.entries: lastInd = self.entries.index(last) elif last in map(lambda x: x[0], self.entries): lastInd = self.entries.index((last,None)) else: lastInd = last if lastInd and self.mode!='single': try: self.lb.selection_set(firstInd, lastInd) except: print "WARNING: Could not select the given entries %s, %s"%(first, last) else: try: self.lb.select_set(firstInd) self.lb.activate(firstInd) if self.withComment and self.hasInfo: self.info() except: print "WARNING: Could not select the given entries %s"%(first) def deselect(self, first, last=None): """remove an entry to the current selection""" # need to get the index of first if first in self.entries: firstInd = self.entries.index(first) elif first in map(lambda x: x[0], self.entries): firstInd = self.entries.index((first,None)) else: firstInd = first # need to get the index of last if last in self.entries: lastInd = self.entries.index(last) elif last in map(lambda x: x[0], self.entries): lastInd = self.entries.index((last,None)) else: lastInd = last if lastInd: try: self.lb.select_clear(firstInd, lastInd) except: print "WARNING: Could not unselect the given entries %s, %s"%(first, last) else: try: self.lb.select_clear(firstInd) if self.withComment and self.hasInfo: self.info() except: print "WARNING: Could not unselect the given entries %s"%(first) def set(self, item): """ item must be the entrie showing in """ assert item in map(lambda x: x[0], self.entries) # get the entry of the listBox corresponding to the value. defaultEntry = filter(lambda x, df = item: x[0] == df, self.entries)[0] # Get its index indexDefaultValue = self.entries.index(defaultEntry) # Set the the selection at this index using the select_set of the # listBox widget. self.lb.selection_set(indexDefaultValue) self.lb.activate(indexDefaultValue) # If has a comment show it: if self.withComment and len(defaultEntry)>1 and defaultEntry[1]!=None: self.info() def grid(self,**kw): #apply(self.top.grid,args,kw) self.top.grid(kw) if not kw.has_key('row'): row = 0 else: row = kw['row'] if not kw.has_key('column'): column=0 else: column=kw['column'] if kw.has_key('weight'): weight = kw['weight'] else: weight = 1 self.top.rowconfigure(row, weight=weight) self.top.columnconfigure(column, weight=weight) def pack_forget(self): self.top.pack_forget() def pack(self, **kw): ## apply(self.top.grid,(),kw) self.top.pack(kw) def grid_forget(self): self.top.grid_forget() class ObjectChooser(ListChooser): """Same as a ListChooser but we pass (name,object) pairs, the names are displayed but the objects handles are returned when selected. """ def __init__(self, root, mode='single', title='Choose', objects=None, cwcfg={'usehullsize':1, 'hull_width':100,'hull_height':80, 'text_wrap':'none'}, lbpackcfg={'fill':'x', 'expand':1}, lbwcfg={}, command=None): self.nameObject = {} # key is name in chooser, values object # used to insure name unicity self.entries = [] # order list of (name, object) pairs ListChooser.__init__(self, root, mode, title, command=command, cwcfg=cwcfg, lbpackcfg=lbpackcfg, lbwcfg=lbwcfg) if objects: for o in objects: self.add(o) def setObjects(self, objectList): self.clear() for o in objectList: self.add(o) def add(self, object): assert len(object)>=2 name, object = object self.nameObject[name]=object if not self.nameObject.has_key(name): self.nameObject[name] = object ListChooser.add(self, (name,)) def insert(self, pos, object): name, object = object[0] if not self.nameObject.has_key(name): self.nameObject[name]=object ListChooser.insert(self,pos,(name,)) def get(self, event = None): res = [] if not self.lb.curselection(): return res for ent in map( int, self.lb.curselection() ): obj= self.nameObject[self.entries[ ent ][0]] res.append(obj) if self.mode=='single' and res: res = res[0] return res class LoadOrSaveText: """Class to present a scrolled text widget with a save button allowing you to save the content of the scrolled text in a file or display the content of a file in the scrolled text.""" def __init__(self, parent, textwcfg={'usehullsize':1, 'hull_width':400, 'hull_height':300, 'text_wrap':'none'}, textpackcfg={}, savewcfg = {}, loadwcfg = {}): # Put everything inside a Frame self.top = Tkinter.Frame(parent, bd=4) # Create the Scrolled Text Region. self.text = apply(Pmw.ScrolledText, (self.top,),textwcfg) apply(self.text.pack, (), textpackcfg) # Create the Save and LoadButton savewcfg['callback'] = self.text.exportfile saveButton = apply(SaveButton,(self.top,),savewcfg) loadwcfg['callback'] = self.text.importfile loadButton = apply(LoadButton,(self.top,),loadwcfg) saveButton.pack(side='right',expand = 1,fill = 'both') loadButton.pack(side='left',expand = 1,fill='both') def get(self,first = None, last = None): return self.text.get(first,last) def set(self, value): if not type(value) in types.StringTypes: return try: self.text.importfile(value) except: self.text.settext(value) def grid(self,**kw): ## apply(self.top.grid,(),kw) self.top.grid(kw) def grid_forget(self): self.top.grid_forget() def pack(self,**kw): apply(self.top.pack,(),kw) def pack_forget(self): self.top.pack_forget() class SaveButton: def __init__(self, root, buttonType = Tkinter.Button, widgetwcfg={'text':'Save'}, title='Save In File ', idir = None, ifile = None, types = [('All types', '*.*')], callback=None): widgetwcfg['command']= CallBackFunction( self.save_cb, title, idir, ifile, types, callback) self.button = apply(buttonType, (root,), widgetwcfg) #self.master = master self.root = root self.filename = None def configure(self,title ='', idir=None, ifile = None, types=[('All types', '*.*')], callback=None): newcb = CallBackFunction(self.save_cb,title = title,idir=idir, ifile=ifile,types = types, callback=callback) self.button.configure(command =newcb) def save_cb(self, title = '',idir=None,ifile=None, types = [('All types', '*.*')], callback = None): from ViewerFramework.VFGUI import fileSaveAsk newfile = fileSaveAsk(self.root,idir=idir,ifile=ifile, types = types,title = title) if callback and newfile: callback(newfile) self.filename = newfile def get(self): return self.filename def pack(self, **kw): apply(self.button.pack,(),kw) def grid(self, **kw): #apply(self.button.grid,(),kw) self.button.grid(kw) def grid_forget(self): self.button.grid_forget() class LoadButton: def __init__(self, root, buttonType =Tkinter.Button, widgetwcfg={'text':'Load'}, title='Load File', idir = None, ifile = None, types = [('All types', '*.*')], callback = None): self.root = root widgetwcfg['command']= CallBackFunction(self.load_cb, title, idir, ifile, types, callback) self.button = apply(buttonType, (root,), widgetwcfg) #self.master = master self.filename = None def load_cb(self, title = '',idir=None,ifile=None, types = [('All types', '*.*')], callback = None): from ViewerFramework.VFGUI import fileOpenAsk newfile = fileOpenAsk(self.root,idir=idir,ifile=ifile, types = types,title = title) if callback and newfile: callback(newfile) self.filename = newfile def get(self): return self.filename def pack(self, **kw): apply(self.button.pack,(),kw) def grid(self, **kw): self.button.grid(kw) ## apply(self.button.grid,(),kw) def grid_forget(self): self.button.grid_forget() class FunctionButton: def __init__(self, parent, buttonType = Tkinter.Checkbutton, callback=None, buttonwcfg={'text':'function'},textwcfg = {}): buttonwcfg['command'] = CallBackFunction(self.buildText,parent, textwcfg, buttonwcfg) self.button = apply(buttonType,(parent,),buttonwcfg) self.callback = callback def buildText(self,parent,textwcfg, buttonwcfg): # Build the LoadOrSaveText widget or ScrolledText self.idf = InputFormDescr() textwcfg['name']='UserFunction' self.text = buttonwcfg['text'] self.idf.append(textwcfg) #windows = InputForm(parent, self.idf) master = parent root = None windows = InputForm(master,root, self.idf) self.vals = windows.go() # Uncheck the checkbutton if needed if isinstance(self.button,Tkinter.Checkbutton) and \ buttonwcfg.has_key('variable'): if isinstance(buttonwcfg['variable'], Tkinter.StringVar): buttonwcfg['variable'].set('0') elif isinstance(buttonwcfg['variable'], Tkinter.IntVar): buttonwcfg['variable'].set(0) def get(self): if not hasattr(self, 'vals'): return # Apply if Cancel button was checked self.result = None elif not self.vals: #self.result =(self.text,None,None) self.result = {} # No function defined is the text field. elif self.vals['UserFunction'] in ['\012','']: #self.result = (self.text,None,None) self.result = {} else: # Text lets remove comments # Function defined funcString = self.vals['UserFunction'] function = evalString(funcString) textwcfg = self.idf[0] if self.callback: ## self.result = (self.text, ## self.callback(function), funcString) self.result = (self.text, self.callback(function),function) else: ## self.result = (self.text,None,funcString) self.result = (self.text,None,function) # Have to send back a tuple (name of the widget, result, function) return self.result def set(self, value): pass def pack(self, **kw): apply(self.button.pack,(),kw) def grid(self, **kw): ## apply(self.button.grid,(),kw) self.button.grid(kw) def grid_forget(self): self.button.grid_forget() #from DejaVu.extendedSlider import ExtendedSlider #from DejaVu.Slider import Slider #from DejaVu.EventHandler import CallbackFunctions from mglutil.gui.BasicWidgets.Tk.eventHandler import CallbackFunctions import types class SliderWidget(CallbackFunctions): """Class for a simple slider""" options = ['labelfont', 'cursorfont', 'immediate', 'command', 'incr', 'width', 'minval', 'maxval', 'height', 'label', 'withValue', 'labelsCursorFormat', 'sliderType', 'lookup'] def __init__(self, master=None, label=None, minval=0.0, maxval=100.0, incr=None, init=None, width=150, height=20, withValue=1, immediate=1, left=10, right=10 , labelsCursorFormat = '%4.2f', sliderType = 'float', command = None, lookup=None): # Calls the base class constructor CallbackFunctions.__init__(self) # Create a toplevel if no master specified if master is None: self.master = Tkinter.Toplevel() else: self.master = master # Create the master frame self.frame = Tkinter.Frame(master) # Set some attributes self.lastx=0 self.immediate = immediate self.labelsCursorFormat = labelsCursorFormat self.sliderType = eval(sliderType) # Create the label widget if not label: label = 'slider' fnt='-*-helvetica-medium-r-narrow-*-*-120-*-*-*-*-*-*' self.label = Tkinter.Label(self.frame, text=label, font=fnt) self.label.pack(side=Tkinter.LEFT) if withValue: height = max(30, height) self.withValue = withValue # Create the canvas. self.draw = Tkinter.Canvas(self.frame, width=width, height=height, relief=Tkinter.SUNKEN) self.width = width self.height = height self.left = left self.right = width-right # MS May 1st add support for discrete set of values self.lookup = lookup # can be set to a list of values indexed by # int(value) if lookup is not None: # force min and max to provide proper indices # SC minval needs to be an int ! minval = 0 maxval = len(lookup)-1 incr = 1 self.max=maxval self.min=minval self._ComputeCst() self.incr = incr self.incrCanvas = None # Compute the increment on the canvas based on the given incr value. if incr: self.incrCanvas = round(incr*self.cst) if withValue: m = self.height / 2 else: m = int(self.height * 0.75) self.middle = m self.draw.create_line( self.left, m, self.right, m, width=2, fill='black', tag = 'line') y = m-10 # 10 is the cursor's height l = self.left self.cursor = self.draw.create_polygon( l, m, l+5, y, l-5, y, l, m, fill='blue', tag='cursor') self.valueLabel = None # create the cursor label which needs to be formatted properly. if withValue: y = self.middle+10 lv = (self.labelsCursorFormat)%minval self.valueLabel = self.draw.create_text( l, y, text= lv, font=fnt, tag='cursor') self.draw.pack(side = Tkinter.RIGHT) if init is None: if self.lookup: # SC init must be a value and not an index init = self.lookup[int(round(self.min))] else: init = self.min self.set(init) Tkinter.Widget.bind(self.draw, "<1>", self.MoveCursor) Tkinter.Widget.bind(self.draw, "", self.MoveCursor) if not immediate: Tkinter.Widget.bind(self.draw, "", self.MouseUp) self.command = command if command: self.AddCallback(command) def Callbacks(self): """Implement call to all callbacks""" if self.lookup: val = self.lookup[int(round(self.val))] else: val = self.val for f in self.callbacks: f(val) def MoveCursor(self, event): """Callback function for left mouse button""" x = event.x - self.left self._MoveCursor(x) def DrawCursor(self): """Update graphics representatin of the cursor""" # compute position x = (self.val-self.min)*self.cst deltax = x - self.lastx if self.withValue: if self.lookup: val = self.lookup[int(round(self.val))] else: val = self.val self.draw.itemconfig(self.valueLabel, text = (self.labelsCursorFormat)%val ) self.draw.move('cursor', deltax, 0 ) self.lastx = self.lastx + deltax def _MoveCursor(self, x): """Compute value and move the cursor to the new position""" # compute the new value val = self.min+self.cst1 * x if self.incrCanvas: val = round(val/self.incr)*self.incr if valself.max: val = self.max # check if redraw and callback are needed if self.val != val: self.val = val self.DrawCursor() if self.immediate: self.Callbacks() def set(self, val, update=1): """Set the cursor""" # Here needs to get the index of the given val in the # lookup table. # If the given val is smaller than the min then # set to the min if val bigger than the max then # set to the max.... if self.lookup: if not val in self.lookup: raise ValueError val = self.lookup.index(val) if valself.max: val = self.max else: if valself.max: val = self.max if self.incrCanvas: val = round(val/self.incr)*self.incr self.val = val self.DrawCursor() if update: self.Callbacks() #return self.val def setMin(self, val): """Set the minimum value of the slider""" if self.lookup: if val > self.lookup[int(round(self.max))]: return if val in self.lookup: self.min = self.lookup.index(val) else: raise ValueError else: if val>self.max: return self.min = val self._ComputeCst() if self.val < val: self.set(val) else: self.DrawCursor() def setMax(self, val): """Set the maximum value of the slider""" if self.lookup: if val < self.lookup[int(round(self.min))]: return if val in self.lookup: self.max = self.lookup.index(val) else: raise ValueError else: if val val: self.set(val) else: self.DrawCursor() def get(self): """Get the slider's value""" if self.lookup: val = self.lookup[int(round(self.val))] else: val = self.val return val def _ComputeCst(self, event=None): """Conversion factor between values and pixels""" self.cst = 1.0*(self.right-self.left) / (self.max-self.min) self.cst1 = 1.0 / self.cst def configure(self, **kw): """Method to modify the configuration options of the widget.""" if kw == {} : return self.options else: keys = kw.keys() for key in keys: if key not in self.options: print "WARNING: option %s is not available for the Slider widget" % key lf = kw.get('labelfont') if lf: self.label.configure(font=lf) cf = kw.get('cursorfont') if cf: if self.withValue: self.draw.itemconfig(self.valueLabel, font=cf) imm = kw.get('immediate', None) if imm is not None: assert imm == 1 or imm == 0 if self.immediate != imm: self.immediate = imm if imm == 1: #immediate mode Tkinter.Widget.unbind(self.draw, "") else: #not immediate mode Tkinter.Widget.bind(self.draw, "", self.MouseUp) com = kw.get('command') if com: if self.command: self.RemoveCallback(self.command) self.AddCallback(com) self.command = com incr = kw.get('incr') if incr: self.incrCanvas = round(incr*self.cst) self.incr = incr width = kw.get('width') if width: w_type = type(width) assert w_type == types.IntType or w_type == types.FloatType if width != self.width: self.draw.configure(width = width) old_width = self.width right = old_width - self.right self.right = width - right self._ComputeCst() self.draw.coords('line', self.left, self.middle, self.right, self.middle) self.width = width self.DrawCursor() height = kw.get('height') if height: h_type = type(height) assert h_type == types.IntType or h_type == types.FloatType if self.withValue: height = max(30, height) if height != self.height: self.draw.configure(height=height) self.height = height if self.withValue: m = height / 2 else: m = int(height * 0.75) self.middle = m l = self.left self.draw.coords('line', l, m, self.right, m) y = m-10 # 10 is the cursor's height x = self.draw.coords(self.cursor)[0] self.draw.coords(self.cursor, x, m, x+5, y, x-5, y, x, m) if self.withValue: y = m+10 self.draw.coords(self.valueLabel, x, y) maxval = kw.get('maxval', None) if maxval is not None: self.setMax(maxval) minval = kw.get('minval', None) if minval is not None: self.setMin(minval) label = kw.get('label') if label: self.label.configure(text = label) withval = kw.get('withValue', None) if withval is not None: if withval != self.withValue: self.withValue = withval x = self.draw.coords(self.cursor)[0] if withval: height = max(30, self.height) if height != self.height: self.draw.configure(height=height) self.height = height m = self.height / 2 y = m+10 fnt='-*-helvetica-medium-r-narrow-*-*-120-*-*-*-*-*-*' sv = (self.labelsCursorFormat)%withval self.valueLabel = self.draw.create_text(x, y, text= sv, font=fnt, tag='cursor') else: m = int(self.height * 0.75) if self.valueLabel: self.draw.delete(self.valueLabel) self.valueLabel = None y = m-10 # 10 is the cursor's height self.draw.coords('line', self.left, m, self.right, m) self.draw.coords(self.cursor, x, m, x+5, y, x-5, y, x, m) self.middle = m lcf = kw.get('labelsCursorFormat') if lcf: self.labelsCursorFormat = lcf self.set(self.val, update=0) st = kw.get('sliderType') if st: self.sliderType = st self.set(self.val, update=0) def grid(self, **kw): #apply(self.frame.grid,(),kw) self.frame.grid(kw) def grid_forget(self): self.frame.grid_forget() def pack(self, **kw): self.frame.pack(kw) def pack_forget(self): self.frame.pack_forget() class ExtendedSliderWidget(SliderWidget): #"""Composite slider which includes a simple slider # and an entry window used to set self.value """ def __init__(self, master=None, label=None, minval=0.0, maxval=100.0, incr=None, init=None, width=150, height=20, withValue=1, immediate=0, left=10, right=10, entrywcfg = None, entrypackcfg = {'side':'top'}, labelsCursorFormat = '%4.2f', sliderType = 'float',command = None, lookup=None): if not entrywcfg: entrywcfg = self.entrywcfg = {'width':5} if entrywcfg.has_key('textvariable'): self.entryContent = entrywcfg['textvariable'] else: self.entryContent = entrywcfg['textvariable'] = Tkinter.StringVar() try: SliderWidget.__init__(self, master=master, label=label, minval=minval,maxval=maxval, incr=incr, init=init, width=width, height=height, withValue=withValue, immediate=immediate,left=left, right=right, labelsCursorFormat=labelsCursorFormat, sliderType=sliderType, command=command, lookup=lookup) except ValueError: print "problem w/Slider.__init__" # CREATE THE ENTRY if entrywcfg.has_key('label'): # Label defined for the entry entrylabel = Tkinter.Label(self.frame) #FIXME!!!! #apply(entrylabel.pack, (), entrypackcfg) entrylabel.pack(side='top', before = self.draw, anchor = 'w') label = entrywcfg['label'] entrylabel.config(text=label) # remove this entry from the configuration dictionary del entrywcfg['label'] else: label = None self.entry = apply(Tkinter.Entry, (self.frame,), entrywcfg) entrypackcfg['before'] = self.draw apply(self.entry.pack, (), entrypackcfg) # Bind the setval method to the entry and Return is the event. self.entry.bind('', self.setval) # Set the entryContent to the init self.entryContent.set(self.labelsCursorFormat%self.get()) def MoveCursor(self, event): """Callback function for left mouse button""" SliderWidget.MoveCursor(self,event) ## x = event.x - self.left ## self._MoveCursor(x) ## val = x ## val = self.min+self.cst1 * x ## if self.incrCanvas: ## val = round(val/self.incr)*self.incr ## if valself.max: val = self.max ## if self.lookup: ## val = self.lookup[int(round(self.val))] ## else: ## val = self.val if self.lookup: sval = self.lookup[int(round(self.val))] else: sval = self.val self.entryContent.set(self.labelsCursorFormat%sval) def _FixedMoveCursor(self, x): """move cursor to new position which is typed into the entry window""" # compute the new value # Problem with the lookup val = x if self.incrCanvas: val = round(val/self.incr)*self.incr if valself.max: val = self.max # check if redraw and callback are needed if self.val != val: self.val = val self.DrawCursor() if self.immediate: self.Callbacks() def set(self, val, update=1): """Set Both the cursor and entry window""" SliderWidget.set(self, val, update=update) if self.lookup: sval = self.lookup[int(round(self.val))] else: sval = self.val self.entryContent.set(self.labelsCursorFormat%sval) def setval(self, event): """Bound to Button-1""" try: newx=self.sliderType(self.entryContent.get()) if self.lookup: if not newx in self.lookup: raise ValueError #return val = self.lookup.index(newx) else: val = newx self._FixedMoveCursor(val) if not self.immediate: self.Callbacks() except ValueError: if self.lookup: val = self.lookup[int(round(self.val))] else: val = self.val self.entryContent.set('') def grid(self, **kw): #apply(self.frame.grid,(),kw) self.frame.grid(kw) def grid_forget(self): self.frame.grid_forget() def pack(self, **kw): self.frame.pack(kw) def pack_forget(self): self.frame.pack_forget() class kbComboBox(Pmw.ComboBox, KeySelectableListBox): def __init__(self, *args, **kw): apply( Pmw.ComboBox.__init__, (self,)+args, kw) cmd=None if kw.has_key('selectioncommand'): cmd = kw['selectioncommand'] lb = self.component('scrolledlist').component('listbox') KeySelectableListBox.__init__(self, lb, command = cmd) self.master = self.widget.master def selectItem(self, i, run=1): self.selectitem(i) # check if i is an index or an item in the list before calling # the command with it. val = self.get() if self.command and run: self.command(val) def set(self, value, run=1): self.selectitem(value) if self.command and run: self.command(value) def _addHistory(self): """ overwrite Pmw.ComboBox._addHistory, so the case where input == '' is accessible """ input = self._entryWidget.get() if input == '': self.command(input) else: apply( Pmw.ComboBox._addHistory, (self,) , ) class kbScrolledListBox(Pmw.ScrolledListBox, KeySelectableListBox): """ Adds the ability to use keystrokes to quickly select items in a Pmw.ScrolledListBox. """ def __init__(self, *args, **kw): apply(Pmw.ScrolledListBox.__init__, (self,)+args, kw) cmd=None if kw.has_key('selectioncommand'): cmd = kw['selectioncommand'] lb = self.component('listbox') KeySelectableListBox.__init__(self, lb, command = cmd) self.master = self.widget.master self.widget.bind('', self.Enter_cb) self.widget.bind('', self.Leave_cb) def selectItem(self, i, run=1): self.select_set(i) self.see(i) self.activate(i) if self.command and run: self.command() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/vector3DGUI.py0000644000175000017500000005332210651433500026507 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ######################################################################### # # Date: Nov 2001 Authors: Michel Sanner, Daniel Stoffler # # sanner@scripps.edu # stoffler@scripps.edu # # Copyright: Michel Sanner, Daniel Stoffler and TSRI # ######################################################################### import Tkinter, numpy.oldnumeric as Numeric, string, math from mglutil.math.rotax import rotax from mglutil.gui.Misc.Tk.KeybdModMonitor import KeyboardModifierMonitor from mglutil.util.callback import CallbackManager from thumbwheel import ThumbWheel from optionsPanel import VectorOptionsPanel class vectorGUI(Tkinter.Frame, KeyboardModifierMonitor): """ This class implements a vector widget. The widget has a vector which can be moved within a sphere to generate a 3D vector. Values are normalized and stored in self.vector In addition, the vector can be rotated with 3 thumbwheels. Values can be entered directly by typing them into the 3 entry forms. Then, the 'normalize and set' button has to be pressed in order to normalize and set the new vector. The widget has a configure() method: vector, mode, precision and continuous can be set this way. vector is a list of 3 floating values, e.g. [0., 0., 1.] mode describes the axis movement (rotation around an axis): is type string and can be either 'X', 'Y' or 'Z'. Free movement (standard value) is 'XY'. continuous can be either 0 (or None) or 1. Default is 0 precision is type int and ranges from 1 - 10 master, name and size can be passed only to the constructor. a lock() method is used to disable the various gui components of the options panel. Usage: .lock(=) component is continuous, precision or mode. value is 0 or 1. 1 disables, 0 enables. """ def __init__(self, master=None, name='vector', size=200, continuous = 1, vector=[0.0, 0.0, 1.0], mode='XY', precision=5, lockContinuous=0, lockPrecision=0, lockMode=0, callback=None, labelSide='top'): KeyboardModifierMonitor.__init__(self) self.callback = callback # user specified callback self.name=name # title inside canvas self.labelSide=labelSide # where title gets packed self.mode=mode # axe mode: can be 'XY', 'X', 'Y' or 'Z' self.precision=precision # floating number digits self.continuous=continuous # can be 1 or 0 self.vector=vector # initial vector value self.size=size # size of vector widget self.lockContinuous = lockContinuous # set to 1 to lock menus in # option panel self.lockPrecision = lockPrecision self.lockMode = lockMode self.r = self.size/2 self.r2 = self.r*self.r self.drawShadowX = 0 self.drawShadowY = 1 self.drawShadowZ = 0 self.fillShadowPlanes = 1 Tkinter.Frame.__init__(self, master) Tkinter.Pack.config(self) self.callbacks = CallbackManager() # object to manage callback # functions. They get called with the # current value as an argument self.zeros = Numeric.array( (0,0,0), 's') self.viewingMatInv = Numeric.array( [[ 0.96770716, -0.03229283, -0.25 , 0. ], [ 0.03229283, -0.96770716, 0.25 , 0. ], [ 0.25 , 0.25 , 0.93541437, 0. ], [ 0. , 0. , 0. , 1. ]],'f') self.viewingMat = Numeric.transpose(self.viewingMatInv) self.createCanvas(master, size) self.createEntries(self.frame) Tkinter.Widget.bind(self.canvas, "", self.mouseDown) Tkinter.Widget.bind(self.canvas, "", self.mouseUp) Tkinter.Widget.bind(self.canvas, "", self.mouseMove) self.setEntries() self.opPanel = VectorOptionsPanel(master = self, title="Vector GUI Options") Tkinter.Widget.bind(self.canvas, "", self.toggleOptPanel) if self.callback: self.callbacks.AddCallback(self.callback) def toggleOptPanel(self, event=None): # opens and closes options panel by right clicking on widget if self.opPanel.flag: self.opPanel.Dismiss_cb() else: if not hasattr(self.opPanel, 'optionsForm'): self.opPanel.displayPanel(create=1) else: self.opPanel.displayPanel(create=0) def mouseUp(self, event): if not self.continuous: self.callbacks.CallCallbacks(self.vector) def mouseDown(self, event): # remember where the mouse went down xc = event.x - self.xm yc = self.ym - event.y # compute the intersection point between z2 = self.r2-(xc*xc)-(yc*yc) if z2>=0: # we picked inside the sphere. going for a XY rotation self.lastPt3D = (xc, yc, math.sqrt(z2)) else: # going for a Z rotation pass def mouseMove(self, event): # simple trackball, only works inside cirle # creates an XY rotation defined by pts intersecting the spheres xc = event.x - self.xm yc = self.ym - event.y # compute the intersection point between xc2 = xc*xc yc2 = yc*yc z2 = self.r2-xc2-yc2 if z2 < 0: lInvMag = 1./math.sqrt(xc2 + yc2) xc *= lInvMag * (self.r) yc *= lInvMag * (self.r) z2 = 0 # compute rotation angle a = self.lastPt3D b = (xc, yc, math.sqrt(z2)) ang = math.acos((a[0]*b[0]+a[1]*b[1]+a[2]*b[2])/self.r2) if self.mode=='XY': #compute rotation axis rotaxis = Numeric.array( (a[1]*b[2] - a[2]*b[1], a[2]*b[0] - a[0]*b[2], a[0]*b[1] - a[1]*b[0] ), 'f' ) elif self.mode=='X': rotaxis = Numeric.array( (1.,0.,0.), 'f') elif self.mode=='Y': rotaxis = Numeric.array( (0.,1.,0.), 'f') elif self.mode=='Z': rotaxis = Numeric.array( (0.,0.,1.), 'f') mat = rotax( self.zeros, rotaxis, ang ) self.lastPt3D = b self.updateVector(mat) def updateVector(self, mat): mat = Numeric.reshape(mat, (4,4)) newPts = self.vector + [1] newPts = Numeric.dot( [newPts], mat )[0] self.vector = [newPts[0], newPts[1], newPts[2]] self.setEntries() self.drawVector() if self.continuous: self.callbacks.CallCallbacks(self.vector) def drawVector(self): coords3D = self.vector + [1] # apply viewing transformation to vector newPtsWithView = Numeric.dot( [coords3D], self.viewingMat)[0] # compute 2D projection of vector (broken on 2 segments for # depth cueing x1 = self.xm+int(newPtsWithView[0]*(self.xm)) y1 = self.ym+int(newPtsWithView[1]*(self.ym)) # change vector's segments coordinates self.canvas.coords(self.lId1, self.xm, self.ym, x1, y1) # update vector shadows # Y=0 plane if self.drawShadowY: pt = [coords3D[0], 0, coords3D[2], 1.] newPtsWithView = Numeric.dot( [pt], self.viewingMat)[0] xm = self.xm+int(newPtsWithView[0]*(self.xm)) ym = self.ym+int(newPtsWithView[1]*(self.ym)) if self.fillShadowPlanes: self.canvas.coords(self.shadowPY,self.xm,self.ym,xm,ym,x1,y1) self.canvas.coords(self.shadowY,self.xm,self.ym,xm,ym,x1,y1) # X=0 plane if self.drawShadowX: pt = [0, coords3D[1], coords3D[2], 1.] newPtsWithView = Numeric.dot( [pt], self.viewingMat)[0] xm = self.xm+int(newPtsWithView[0]*(self.xm)) ym = self.ym+int(newPtsWithView[1]*(self.ym)) if self.fillShadowPlanes: self.canvas.coords(self.shadowPX,self.xm,self.ym,xm,ym,x1,y1) self.canvas.coords(self.shadowX, self.xm, self.ym, xm, ym, x1,y1) # Z=0 plane if self.drawShadowZ: pt = [coords3D[0], coords3D[1], 0, 1.] newPtsWithView = Numeric.dot( [pt], self.viewingMat)[0] xm = self.xm+int(newPtsWithView[0]*(self.xm)) ym = self.ym+int(newPtsWithView[1]*(self.ym)) if self.fillShadowPlanes: self.canvas.coords(self.shadowPZ,self.xm,self.ym,xm,ym,x1,y1) self.canvas.coords(self.shadowZ, self.xm, self.ym, xm, ym, x1,y1) if self.vector[0]<0.0: self.canvas.tag_raise('verticalCircle', 'moving') else: self.canvas.tag_lower('verticalCircle', 'moving') if self.vector[1]<0.0: self.canvas.tag_raise('horizontalCircle', 'moving') else: self.canvas.tag_lower('horizontalCircle', 'moving') if self.vector[2]<0.0 or self.vector[1]<0.0: self.canvas.tag_raise('axis', 'moving') else: self.canvas.tag_lower('axis', 'moving') def thumbx_cb(self, events=None): val=self.thumbx.value ## valX=self.thumbx.value ## valY=self.thumby.value ## valZ=self.thumbz.value ## n = math.sqrt(valX*valX+valY*valY+valZ*valZ) ## if n == 0.0: v = [0.0, 0.0, 1.0] ## else: v = [valX/n, valY/n, valZ/n] ## val = v[0] rot = Numeric.zeros( (4,4), 'f' ) rot[0][0] = 1.0 rot[1][1] = math.cos(val) rot[1][2] = -math.sin(val) rot[2][1] = math.sin(val) rot[2][2] = math.cos(val) self.updateVector(rot) def thumby_cb(self, events=None): val=self.thumby.value rot = Numeric.zeros( (4,4), 'f' ) rot[0][0] = math.cos(val) rot[0][2] = -math.sin(val) rot[1][1] = 1.0 rot[2][0] = math.sin(val) rot[2][2] = math.cos(val) self.updateVector(rot) def thumbz_cb(self, events=None): val=self.thumbz.value rot = Numeric.zeros( (4,4), 'f' ) rot[0][0] = math.cos(val) rot[0][1] = -math.sin(val) rot[1][0] = math.sin(val) rot[1][1] = math.cos(val) rot[2][2] = 1.0 self.updateVector(rot) def entryX_cb(self, event=None): val = self.entryXTk.get() if len(val) == 0: val = self.vector[0] try: val = float(val) self.entryXTk.set(self.thumbx.labelFormat%val) except ValueError: # put back original value if someone types garbage self.entryXTk.set(self.thumbx.labelFormat%self.vector[0]) def entryY_cb(self, event=None): val = self.entryYTk.get() if len(val) == 0: val = self.vector[1] try: val = float(val) self.entryYTk.set(self.thumby.labelFormat%val) except ValueError: # put back original value if someone types garbage self.entryYTk.set(self.thumby.labelFormat%self.vector[1]) def entryZ_cb(self, event=None): val = self.entryZTk.get() if len(val) == 0: val = self.vector[2] try: val = float(val) self.entryZTk.set(self.thumbz.labelFormat%val) except ValueError: # put back original value if someone types garbage self.entryZTk.set(self.thumbz.labelFormat%self.vector[2]) def entryV_cb(self, event=None): v = self.entryVTk.get() try: val = string.split(v) except: self.setEntries() return if val is None or len(val)!= 3: self.setEntries() return try: valX = float(val[0]) valY = float(val[1]) valZ = float(val[2]) except: self.setEntries() return # compute normalized vector n = math.sqrt(valX*valX+valY*valY+valZ*valZ) if n == 0.0: v = [0.0, 0.0, 1.0] else: v = [valX/n, valY/n, valZ/n] self.vector = v self.setEntries() self.drawVector() if self.continuous: self.callbacks.CallCallbacks(self.vector) def setButton_cb(self, event=None): valX = float(self.entryXTk.get()) valY = float(self.entryYTk.get()) valZ = float(self.entryZTk.get()) # compute normalized vector n = math.sqrt(valX*valX+valY*valY+valZ*valZ) if n == 0.0: v = [0.0, 0.0, 1.0] else: v = [valX/n, valY/n, valZ/n] self.vector = v self.setEntries() self.drawVector() if self.continuous: self.callbacks.CallCallbacks(self.vector) def createEntries(self, master): self.f = Tkinter.Frame(master) self.f.grid(column=3, rowspan=3) def fX(): self.vector = [1.,0.,0.]; self.setEntries(); self.callbacks.CallCallbacks(self.vector) def fY(): self.vector = [0.,1.,0.]; self.setEntries(); self.callbacks.CallCallbacks(self.vector) def fZ(): self.vector = [0.,0.,1.]; self.setEntries(); self.callbacks.CallCallbacks(self.vector) lX = Tkinter.Button(master=self.f, text='x', command=fX) lY = Tkinter.Button(master=self.f, text='y', command=fY) lZ = Tkinter.Button(master=self.f, text='z', command=fZ) lX.grid(row=0, column=0) lY.grid(row=1, column=0) lZ.grid(row=2, column=0) self.thumbx = ThumbWheel(master=self.f, width=50, height=20, labcfg={'text':'X:','side':'left'}, wheelPad=2, oneTurn=.1, min=-1, max=1, showLabel=0, precision=5, type=float) self.thumbx.callbacks.AddCallback(self.thumbx_cb) self.thumbx.unbind("") self.thumbx.canvas.unbind("") self.thumbx.grid(row=0, column=1) self.thumby = ThumbWheel(master=self.f, width=50, height=20, labcfg={'text':'Y:','side':'left'}, wheelPad=2, oneTurn=.1, min=-1, max=1, showLabel=0, precision=5, type=float) self.thumby.callbacks.AddCallback(self.thumby_cb) self.thumby.unbind("") self.thumby.canvas.unbind("") self.thumby.grid(row=1, column=1) self.thumbz = ThumbWheel(master=self.f, width=50, height=20, labcfg={'text':'Z:','side':'left'}, wheelPad=2, oneTurn=.1, min=-1, max=1, showLabel=0, precision=5, type=float) self.thumbz.callbacks.AddCallback(self.thumbz_cb) self.thumbz.unbind("") self.thumbz.canvas.unbind("") self.thumbz.grid(row=2, column=1) self.entryXTk = Tkinter.StringVar() self.entryX = Tkinter.Entry(master=self.f, textvariable=self.entryXTk, width=8) self.entryX.bind('', self.entryX_cb) self.entryX.grid(row=0, column=2) self.entryYTk = Tkinter.StringVar() self.entryY = Tkinter.Entry(master=self.f, textvariable=self.entryYTk, width=8) self.entryY.bind('', self.entryY_cb) self.entryY.grid(row=1, column=2) self.entryZTk = Tkinter.StringVar() self.entryZ = Tkinter.Entry(master=self.f, textvariable=self.entryZTk, width=8) self.entryZ.bind('', self.entryZ_cb) self.entryZ.grid(row=2, column=2) self.entryVTk = Tkinter.StringVar() self.entryV = Tkinter.Entry(master, textvariable=self.entryVTk, width=18) self.entryV.bind('', self.entryV_cb) self.f.pack(side='top', expand=1) self.entryV.pack() self.setButton=Tkinter.Button(master, text='normalize and set', command = self.setButton_cb) self.setButton.pack(side='bottom') def setEntries(self): self.entryXTk.set(self.thumbx.labelFormat%self.vector[0]) self.entryYTk.set(self.thumby.labelFormat%self.vector[1]) self.entryZTk.set(self.thumbz.labelFormat%self.vector[2]) lf = '%.3f' self.entryVTk.set(lf%self.vector[0]+' '+lf%self.vector[1]+' '\ +lf%self.vector[2]) self.drawVector() def createCanvas(self, master, size=200): self.frame = Tkinter.Frame(self, relief = 'sunken', borderwidth=5) if self.name is not None: self.title = Tkinter.Label(self.frame, text=self.name) self.title.pack(side=self.labelSide) self.canvas = Tkinter.Canvas(self.frame, width=size, height=size) # set the focus so that we get keyboard events, and add callbacks self.canvas.bind('', self.modifierDown) self.canvas.bind("", self.modifierUp) xm = self.xm = ym = self.ym = self.r self.canvas.create_oval(0, 0, size, size) self.canvas.create_oval(xm-(xm/4), 0, xm+(xm/4), size, tags='verticalCircle') self.canvas.create_oval(0, ym-(ym/4), size, ym+(ym/4), tags='horizontalCircle') # apply viewing transformation to vector XaxisWithView = Numeric.dot([(1.,0.,0.,1.)],self.viewingMat)[0] x1 = self.xm+int(XaxisWithView[0]*(self.xm)) y1 = self.ym+int(XaxisWithView[1]*(self.ym)) self.canvas.create_line(xm, ym, x1, y1, fill='red', tags='axis') XaxisWithView = Numeric.dot([(0.,1.,0.,1.)],self.viewingMat)[0] x2 = self.xm+int(XaxisWithView[0]*(self.xm)) y2 = self.ym+int(XaxisWithView[1]*(self.ym)) self.canvas.create_line(xm, ym, x2, y2, fill='green', tags='axis') XaxisWithView = Numeric.dot([(0.,0.,1.,1.)],self.viewingMat)[0] x3 = self.xm+int(XaxisWithView[0]*(self.xm)) y3 = self.ym+int(XaxisWithView[1]*(self.ym)) self.canvas.create_line(xm, ym, x3, y3, fill='blue', tags='axis') self.textId = self.canvas.create_text(0, size, anchor='sw', text="XY") # shadow line in X=0 plane self.shadowPX = self.canvas.create_polygon(0,0,0,0,0,0, fill='red', tag='moving') self.shadowPY = self.canvas.create_polygon(0,0,0,0,0,0, fill='green', tag='moving') self.shadowPZ = self.canvas.create_polygon(0,0,0,0,0,0, fill='blue', tag='moving') self.shadowX = self.canvas.create_line(0, 0, 0, 0, fill='black', tag='moving') self.shadowY = self.canvas.create_line(0, 0, 0, 0, fill='black', tag='moving') self.shadowZ = self.canvas.create_line(0, 0, 0, 0, fill='black', tag='moving') self.lId1 = self.canvas.create_line(0, 0, 0, 0, fill='black', width=3, arrow='last') self.canvas.pack(side='top') self.frame.pack(expand=1, fill='x') self.xm = self.ym = self.r self.drawVector() def setVector(self, value): #setVector does not call a callback! v = value # compute normalized vector n = math.sqrt(v[0]*v[0]+v[1]*v[1]+v[2]*v[2]) if n == 0.0: v = [0.0, 0.0, 1.0] else: v = [v[0]/n, v[1]/n, v[2]/n] self.vector = v self.setEntries() self.drawVector() ##################################################################### # the 'configure' methods: ##################################################################### def configure(self, **kw): for key,value in kw.items(): # the 'set parameter' callbacks if key=='continuous': self.setContinuous(value) elif key=='mode': self.setMode(value) elif key=='precision': self.setPrecision(value) # the 'lock entries' callbacks elif key=='lockContinuous': self.lockContinuousCB(value) elif key=='lockMode': self.lockModeCB(value) elif key=='lockPrecision': self.lockPrecisionCB(value) def setContinuous(self, cont): """ cont can be None, 0 or 1 """ if cont != 1: cont = None self.continuous = cont if hasattr(self.opPanel, 'optionsForm'): w=self.opPanel.idf.entryByName['togCont']['widget'] if cont: w.setvalue('on') else: w.setvalue('off') def setMode(self, mode): if mode!='XY' and mode!='X' and mode!='Y' and mode!='Z': mode = 'XY' self.canvas.itemconfigure( self.textId, text=mode) self.mode = mode if hasattr(self.opPanel, 'optionsForm'): w=self.opPanel.idf.entryByName['togAxes']['widget'] w.setvalue(mode) def setPrecision(self, val): val = int(val) if val > 10: val = 10 if val < 1: val = 1 self.thumbx.configure(precision=val) self.thumby.configure(precision=val) self.thumbz.configure(precision=val) self.entryXTk.set(self.thumbx.labelFormat%self.vector[0]) self.entryYTk.set(self.thumby.labelFormat%self.vector[1]) self.entryZTk.set(self.thumbz.labelFormat%self.vector[2]) if hasattr(self.opPanel, 'optionsForm'): w = self.opPanel.idf.entryByName['selPrec']['widget'] w.setvalue(val) if self.opPanel: self.opPanel.updateDisplay() ##################################################################### # the 'lock' methods: ##################################################################### def lockContinuousCB(self, mode): if mode != 0: mode = 1 self.lockContinuous = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockPrecisionCB(self, mode): if mode != 0: mode = 1 self.lockPrecision = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockModeCB(self, mode): if mode != 0: mode = 1 self.lockMode = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() if __name__ == '__main__': test = vectorGUI(size = 200) def foo(val): print val test.callbacks.AddCallback(foo) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/multiListbox.py0000644000175000017500000001424111075735626027164 0ustar debiandebian# $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/BasicWidgets/Tk/multiListbox.py,v 1.5 2008/10/16 22:09:26 vareille Exp $ # $Id: multiListbox.py,v 1.5 2008/10/16 22:09:26 vareille Exp $ # Source: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/52266 # Modifed by: Sargis Dallakyan sargis@scripps.edu from Tkinter import * import Pmw import tkFont from mglutil.util.misc import ensureFontCase class MultiListbox(Pmw.ScrolledFrame): """This is a compound widget that gangs multiple Tk Listboxes to a single scrollbar to achieve a simple multi-column scrolled listbox. Most of the Listbox API is mirrored to make it act like the normal Listbox but with multiple values per row. """ def __init__(self, master, lists, **kw): Pmw.ScrolledFrame.__init__(self, master, horizflex='expand',vertflex='elastic', vscrollmode='none', **kw) self.lists = [] self.colmapping = {} self.origData = None self.rows = None self.myFont = tkFont.Font(font = (ensureFontCase('helvetica'), 11, "bold")) frame_main = Frame(self.interior()) frame_main.pack(side=LEFT, expand=YES, fill=BOTH) frame_sb = Frame(self.interior()) frame_sb.pack(side=LEFT, fill=Y) sb = Scrollbar(frame_sb, orient=VERTICAL, command=self._scroll) m = PanedWindow(frame_main,bd=0,handlepad=0,handlesize=0,sashpad=0) m.pack(fill=BOTH, expand=1) self.PanedWindow = m for l,w in lists: frame = Frame(m,bd=0); frame.pack(side=LEFT, expand=YES, fill=BOTH) b = Button(frame, text=unicode(l), relief=RAISED, font=self.myFont,bd=1) b.pack(fill = X) b.bind('', self._sort) self.colmapping[b]=(len(self.lists),1) lb = Listbox(frame, width=w, bd=0, exportselection=FALSE,bg='white') lb.pack(expand=YES, fill=BOTH) self.lists.append(lb) lb.bind('', lambda e, s=self: s._select(e.y)) lb.bind('', lambda e, s=self: s._select(e.y)) lb.bind('', lambda e, s=self: s.output(e.y)) lb.bind('', lambda e: 'break') lb.bind('', lambda e, s=self: s._b2motion(e.x, e.y)) lb.bind('', lambda e, s = self: s._button2(e.x, e.y)) # import pdb # pdb.set_trace() m.add(frame, width=lb.winfo_reqwidth()) sb.pack(expand=YES, fill=Y) self.lists[0]['yscrollcommand']=sb.set self.interior().pack(expand=YES, fill=BOTH) def _sort(self, e): # get the listbox to sort by (mapped by the header button) b=e.widget col, direction = self.colmapping[b] # get the entire table data into mem tableData = self.get(0,END) if self.origData == None: import copy self.origData = copy.deepcopy(tableData) rowcount = len(tableData) #remove old sort indicators if it exists for btn in self.colmapping.keys(): lab = btn.cget('text') if lab[-1] == u"\u25BC" or lab[-1] ==u"\u25B2": btn.config(text=unicode(lab[:-2])) btnLabel = b.cget('text') #sort data based on direction if direction==0: tableData = self.origData else: if direction==1: b.config(text = unicode(btnLabel + " " + u"\u25B2"), font=self.myFont) else: b.config(text=unicode(btnLabel + " " + u"\u25BC"),font=self.myFont) # sort by col def colsort(x, y, mycol=col, direction=direction): return direction*cmp(x[mycol], y[mycol]) tableData.sort(colsort) #clear widget self.delete(0,END) # refill widget for row in range(rowcount): self.insert(END, tableData[row]) # toggle direction flag if(direction==1): direction=-1 else: direction += 1 self.colmapping[b] = (col, direction) def _select(self, y): row = self.lists[0].nearest(y) self.selection_clear(0, END) self.selection_set(row) return 'break' def _button2(self, x, y): for l in self.lists: l.scan_mark(x, y) return 'break' def _b2motion(self, x, y): for l in self.lists: l.scan_dragto(x, y) return 'break' def _scroll(self, *args): for l in self.lists: apply(l.yview, args) def curselection(self): return self.lists[0].curselection() def delete(self, first, last=None): for l in self.lists: l.delete(first, last) def get(self, first, last=None): result = [] for l in self.lists: result.append(l.get(first,last)) if last: return apply(map, [None] + result) return result def index(self, index): self.lists[0].index(index) def insert(self, index, *elements): for e in elements: i = 0 for l in self.lists: l.insert(index, e[i]) i = i + 1 def size(self): return self.lists[0].size() def see(self, index): for l in self.lists: l.see(index) def selection_anchor(self, index): for l in self.lists: l.selection_anchor(index) def selection_clear(self, first, last=None): for l in self.lists: l.selection_clear(first, last) def selection_includes(self, index): return self.lists[0].selection_includes(index) def selection_set(self, first, last=None): for l in self.lists: l.selection_set(first, last) def output(self, y): row = self.lists[0].nearest(y) if self.rows: print self.rows[row][1] if __name__ == '__main__': tk = Tk() mlb = MultiListbox(tk, (('Subject', 40), ('Sender', 20), ('Date', 10))) mlb.pack(expand=YES,fill=BOTH) for i in range(10): mlb.insert(END, ('Important Message: %d' % i, 'John Doe', '10/10/%04d' % (1900+i))) mlb.reposition() tk.mainloop()mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/0000755000175000017500000000000012146210075025175 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/test_player.py0000644000175000017500000003031610256036503030107 0ustar debiandebian######################################################################### # # Date: Jan 2003 Authors: Ruth Huey, ???? # # rhuey@scripps.edu # ?????@scripps.edu # # Copyright: Ruth Huey, and TSRI # ######################################################################### # # # $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/BasicWidgets/Tk/Tests/test_player.py,v 1.3 2005/06/21 16:16:03 sowjanya Exp $ # # $Id: test_player.py,v 1.3 2005/06/21 16:16:03 sowjanya Exp $ # # # # import sys, Tkinter,unittest from mglutil.regression import testplus from mglutil.gui.BasicWidgets.Tk.player import Player from time import sleep widget = None wasCalled = 0 def pause(sleepTime=1): widget.master.update() sleep(sleepTime) class PlayerBaseTest(unittest.TestCase): def test_constructor(self): # test if we can display a very basic Player global widget root = Tkinter.Toplevel() widget = Player( master=root,gui=1) widget.master.update() pause() widget.master.master.destroy() def test_constructorOptionsForm1(self): # test all possible constructor options global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, maxFrame=30, stepSize=3, playMode=3, titleStr='Player Widget', gotoStartfile = 'stop.gif', gotoEndfile = 'stop.gif', ff_revfile = 'stop.gif', ff_fwdfile = 'stop.gif', stopfile = 'stop.gif', playfile = 'stop.gif', playRevfile = 'stop.gif', chmodfile = 'stop.gif', closefile = 'stop.gif', iconpath = None, counter = 0, form2=0,gui=1) widget.master.update() pause() widget.master.master.destroy() def test_constructorOptionsForm2(self): # test all possible constructor options global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, maxFrame=30, stepSize=3, playMode=3, titleStr='Player Widget', gotoStartfile = 'stop.gif', gotoEndfile = 'stop.gif', ff_revfile = 'stop.gif', ff_fwdfile = 'stop.gif', stopfile = 'stop.gif', playfile = 'stop.gif', playRevfile = 'stop.gif', chmodfile = 'stop.gif', closefile = 'stop.gif', iconpath = None, counter = 0, form2=1,gui=1) pause() widget.master.master.destroy() def test_nextFrame(self): #THIS SHOULD BE OVERWRITTEN for other players global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.nextFrame(5) self.assertEqual(widget.currentFrameIndex, 5) pause() widget.master.master.destroy() def test_getnextFrame(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) frameIndex0 = widget.currentFrameIndex frameIndex1 = widget.getNextFrameIndex(frameIndex0) self.assertEqual(frameIndex1 == frameIndex0 + widget.stepSize*widget.increment,True) widget.stepSize = 2 frameIndex2 = widget.getNextFrameIndex(frameIndex1) self.assertEqual(frameIndex2 == frameIndex1 + 2*widget.increment,True) widget.increment = -1 frameIndex3 = widget.getNextFrameIndex(frameIndex2) self.assertEqual(frameIndex3 == frameIndex2 - 2,True) pause() widget.master.master.destroy() #add code to change increment, step size #add code to test what happens at the end of range #add code to test the different play modes ## def xtest_waitTime(): ## global widget ## from mglutil.gui.BasicWidgets.Tk.player import Player ## import time ## root = Tkinter.Toplevel() ## ## widget = Player( master=root, ## width=100, height=26, ## currentFrameIndex=1, ## startFrame=1, ## endFrame=10, ## form2=1,gui=1) ## t0 = time.time() ## print t0 ## widget.waitTime() ## t1 = time.time() ## print t1 ## assert t1!= t0 ## pause() ## widget.master.master.destroy() def test_Play_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.Play_cb() self.assertEqual(widget.currentFrameIndex == widget.endFrame,True) pause() widget.master.master.destroy() def test_PlayRev_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.nextFrame(widget.endFrame) widget.PlayRev_cb() self.assertEqual(widget.startFrame==widget.currentFrameIndex,True) pause() widget.master.master.destroy() def test_FastForward_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.FastForward_cb() self.assertEqual(widget.currentFrameIndex == widget.endFrame,True) pause() widget.master.master.destroy() def test_FastReverse_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.nextFrame(widget.endFrame) widget.FastReverse_cb() self.assertEqual(widget.startFrame==widget.currentFrameIndex,True) pause() widget.master.master.destroy() def test_Stop_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.Stop_cb() self.assertEqual(widget.stop==1,True) pause() widget.master.master.destroy() def test_GoToStart_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1) widget.GoToStart_cb() self.assertEqual(widget.currentFrameIndex==widget.startFrame,True) pause() widget.master.master.destroy() def test_GoToEnd_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.GoToEnd_cb() self.assertEqual(widget.currentFrameIndex==widget.endFrame,True) pause() widget.master.master.destroy() def test_SetState_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.form.ent2.delete(0, 'end') widget.form.ent2.insert(0, '5') widget.SetState_cb() self.assertEqual(widget.currentFrameIndex==5,True) pause() pause() widget.master.master.destroy() def test_SetMode_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.SetMode_cb() self.assertEqual(widget.playModeForm.root.winfo_ismapped(),1) pause() widget.master.master.destroy() #add tests of changing mode here def test_SetPlayMode_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.SetMode_cb() widget.playModeVar.set('once in 2 directions') widget.framerateWidget.set(10.) #widget.playDelayWidget.set(.5) #widget.playAfterDelayWidget.set(57) widget.startFrameWidget.set(2) widget.endFrameWidget.set(8) widget.setPlayMode_cb() self.assertEqual(widget.playMode==2,True) self.assertEqual(widget.framerate==10.,True) #assert widget.delay==.5 #assert widget.afterDelay==57 self.assertEqual(widget.startFrame==2,True) self.assertEqual(widget.endFrame==8,True) self.assertEqual(widget.oneDirection==0,True) pause() widget.master.master.destroy() #add tests of changing mode here def test_cancelPlayMode_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.SetMode_cb() widget.master.master.update() pause() widget.cancelPlayMode_cb() self.assertEqual(widget.playModeForm.root.winfo_ismapped()==0,True) pause() widget.master.master.destroy() #add tests of changing mode here def test_Close_cb(self): global widget root = Tkinter.Toplevel() widget = Player( master=root, width=100, height=26, currentFrameIndex=1, startFrame=1, endFrame=10, form2=1,gui=1) widget.Close_cb() self.assertEqual(widget.form.root.winfo_ismapped()==0,True) pause() widget.master.master.destroy() if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/test_vector3DGUI.py0000644000175000017500000000520510256040152030643 0ustar debiandebian######################################################################### # # Date: Jun 2002 Authors: Daniel Stoffler, Michel Sanner # # stoffler@scripps.edu # sanner@scripps.edu # # Copyright: Daniel Stoffler, Michel Sanner, and TSRI # ######################################################################### import sys,unittest from mglutil.regression import testplus from time import sleep from mglutil.gui.BasicWidgets.Tk.vector3DGUI import vectorGUI widget = None wasCalled = 0 def pause(sleepTime=0.2): widget.master.update() sleep(sleepTime) class Vector3DGUIBaseTest(unittest.TestCase): def test_constructor(self): # test if we can display a vectorGUI global widget widget = vectorGUI(size=100) pause() widget.master.destroy() def test_setPrecision(self): global widget from mglutil.gui.BasicWidgets.Tk.vector3DGUI import vectorGUI widget = vectorGUI(size=100) widget.configure(type='float') widget.configure(precision=5) # increase precision to 5 - this is only visual. value is not changed self.assertEqual(widget.precision == 5,True) pause() widget.master.destroy() def test_setContinuous(self): global widget from mglutil.gui.BasicWidgets.Tk.vector3DGUI import vectorGUI widget = vectorGUI(size=100) widget.configure(continuous=1) self.assertEqual(widget.continuous == 1,True) widget.configure(continuous=0) self.assertEqual(widget.continuous == (0 or None),True) pause() widget.master.destroy() def test_setMode(self): global widget from mglutil.gui.BasicWidgets.Tk.vector3DGUI import vectorGUI widget = vectorGUI(size=100) widget.configure(mode='XY') self.assertEqual(widget.mode == 'XY',True) widget.configure(mode='X') self.assertEqual(widget.mode == 'X',True) widget.configure(mode='Y') self.assertEqual(widget.mode == 'Y',True) widget.configure(mode='Z') self.assertEqual(widget.mode == 'Z',True) pause() widget.master.destroy() def test_setVector(self): # setVector does NOT call callback global widget def foo(val): global wasCalled print "I should not be called" wasCalled=1 from mglutil.gui.BasicWidgets.Tk.vector3DGUI import vectorGUI widget = vectorGUI(size=100) widget.setVector([1.0,0.0,0.0]) if wasCalled: raise RuntimeError widget.master.destroy() if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/test_optionsPanel.py0000644000175000017500000001574410255576623031311 0ustar debiandebian######################################################################### # # Date: Jun 2002 Authors: Daniel Stoffler, Michel Sanner # # stoffler@scripps.edu # sanner@scripps.edu # # Copyright: Daniel Stoffler, Sowjanya Karnati, Michel Sanner, and TSRI # ######################################################################### # $Id: test_optionsPanel.py,v 1.4 2005/06/20 17:32:03 sowjanya Exp $ import sys,unittest,Tkinter from time import sleep from mglutil.gui.BasicWidgets.Tk.optionsPanel import OptionsPanel,VectorOptionsPanel widget = None wasCalled = 0 def pause(): import time time.sleep(0.1) class OptionsPanelBaseTest(unittest.TestCase): def test_inpval(self): """checks value entry in options panel widget """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) oppanel.idf.entryByName['inpVal']['wcfg']['textvariable'].set(1) oppanel.master.update() pause() self.assertEqual(oppanel.valInput.get(),'1') oppanel.master.destroy() def test_inpMin(self): """checks minimum value entry in options panel widget """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) oppanel.bmin_entry.invoke() oppanel.idf.entryByName['inpMin']['wcfg']['textvariable'].set(1) oppanel.master.update() pause() self.assertEqual(oppanel.minInput.get(),'1') oppanel.master.destroy() def test_inpMax(self): """checks maximum value entry in options panel widget """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) oppanel.bmax_entry.invoke() oppanel.idf.entryByName['inpMax']['wcfg']['textvariable'].set(1) oppanel.master.update() pause() self.assertEqual(oppanel.maxInput.get(),'1') oppanel.master.destroy() def test_inputIncr(self): """checks increment value entry in options panel widget """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) oppanel.idf.entryByName['inpIncr']['wcfg']['textvariable'].set(1) oppanel.master.update() pause() self.assertEqual(oppanel.incrInput.get(),'1') oppanel.master.destroy() def test_togglemin(self): """checks toggle min button """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) oppanel.idf.entryByName['togMin']['widget'].invoke() oppanel.master.update() pause() self.assertEqual(oppanel.min_entry.cget('state'),'normal') oppanel.master.destroy() def test_togglemax(self): """checks toggle max button """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) oppanel.idf.entryByName['togMax']['widget'].invoke() oppanel.master.update() pause() self.assertEqual(oppanel.max_entry.cget('state'),'normal') oppanel.master.destroy() def test_toggleIncr(self): """checks toggleIncr button """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) oppanel.idf.entryByName['togIncr']['widget'].invoke() oppanel.master.update() pause() self.assertEqual(oppanel.incr_entry.cget('state'),'normal') oppanel.master.destroy() def test_Continuous(self): """checks continuous setting on,off """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) pause() oppanel.idf.entryByName['togCont']['widget'].setitems(items=('on','off'), index=1) oppanel.master.update() pause() self.assertEqual(oppanel.idf.entryByName['togCont']['widget'].getvalue(),'off') oppanel.idf.entryByName['togCont']['widget'].setitems(items=('on','off'), index=0) oppanel.master.destroy() def test_showLabel(self): """checks show label setting all 'never', 'always', 'move' """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) pause() oppanel.lab_entry.setitems(('never', 'always', 'move'), index=0) oppanel.master.update() pause() self.assertEqual(oppanel.idf.entryByName['togLabel']['widget'].getvalue(),'never') oppanel.lab_entry.setitems(('never', 'always', 'move'), index=1) oppanel.master.update() pause() self.assertEqual(oppanel.idf.entryByName['togLabel']['widget'].getvalue(),'always') oppanel.lab_entry.setitems(('never', 'always', 'move'), index=2) oppanel.master.update() pause() self.assertEqual(oppanel.idf.entryByName['togLabel']['widget'].getvalue(),'move') oppanel.master.destroy() def test_type(self): """checks setting type int,float """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) oppanel.master.update() pause() oppanel.idf.entryByName['togIntFloat']['widget'].setitems(items=('float','int'), index=1) oppanel.master.update() pause() self.assertEqual(oppanel.idf.entryByName['togIntFloat']['widget'].getvalue(),'int') oppanel.idf.entryByName['togIntFloat']['widget'].setitems(items=('float','int'), index=0) oppanel.master.update() pause() self.assertEqual(oppanel.idf.entryByName['togIntFloat']['widget'].getvalue(),'float') oppanel.master.destroy() def test_Precision(self): """checks setting precision 1 to 10 """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) items = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'] for i in range(10): oppanel.idf.entryByName['selPrec']['widget'].setitems(items=('1', '2', '3', '4', '5', '6', '7', '8', '9', '10'),index=i) oppanel.master.update() pause() self.assertEqual(oppanel.idf.entryByName['selPrec']['widget'].getvalue(),items[i]) oppanel.master.destroy() def test_setTitle(self): """checks setting title """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) oppanel.setTitle("mypanel") self.assertEqual(oppanel.title ,'mypanel') oppanel.master.destroy() def test_setSensitivity(self): """checks setting sensitivity """ oppanel = OptionsPanel(title="My Options Panel") oppanel.displayPanel(create=1) oppanel.idf.entryByName['inpSens']['wcfg']['textvariable'].set(300) oppanel.master.update() pause() self.assertEqual(oppanel.idf.entryByName['inpSens']['widget'].get(),'300') oppanel.master.destroy() if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/__init__.py0000644000175000017500000000000007723713313027304 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/test_xyzGUI.py0000644000175000017500000000145510256040457030017 0ustar debiandebian######################################################################### # # Date: Jun 2002 Authors: Daniel Stoffler, Michel Sanner # # stoffler@scripps.edu # sanner@scripps.edu # # Copyright: Daniel Stoffler, Michel Sanner, and TSRI # ######################################################################### import sys,unittest from time import sleep from mglutil.gui.BasicWidgets.Tk.xyzGUI import xyzGUI widget = None wasCalled = 0 def pause(sleepTime=0.2): widget.master.update() sleep(sleepTime) class XYZGUIBaseTest(unittest.TestCase): def test_constructor(self): # test if we can display the xyzGUI (consists of 3 thumbwheels) global widget widget = xyzGUI() pause(0.6) widget.master.destroy() if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/test_thumbwheel.py0000644000175000017500000004677710725343144031004 0ustar debiandebian######################################################################### # # Date: Jun 2002 Authors: Daniel Stoffler, Michel Sanner # # stoffler@scripps.edu # sanner@scripps.edu # # Copyright: Daniel Stoffler, Michel Sanner, and TSRI # ######################################################################### # $Id: test_thumbwheel.py,v 1.12 2007/12/04 21:28:04 vareille Exp $ import sys,unittest,Tkinter from time import sleep tw = None wasCalled = False mySum = 0. from mglutil.gui.BasicWidgets.Tk.thumbwheel import ThumbWheel from mglutil.util.misc import ensureFontCase class Dummyevent: def __init__(self,y = 'None',x = 'None'): self.y = y self.x = x def pause(): import time time.sleep(0.1) class ThumbWheelBaseTest(unittest.TestCase,Dummyevent): def test_constructorOptions(self): # test all possible constructor options root = Tkinter.Tk() tw = ThumbWheel(width=100, height=26,wheelPad=4,master = root, labcfg={'fg':'black', 'side':'left', 'text':'Test:'}, wheelLabcfg1={'font':(ensureFontCase('times'),14,'bold')}, wheelLabcfg2={'font':(ensureFontCase('times'),14,'bold')}, canvascfg={'bg':'blue'}) tw.master.update() pause() tw.master.destroy() def test_setValue(self): # test setting of a value root = Tkinter.Tk() tw = ThumbWheel(width=100, height=26, value=1.0,master = root) tw.set(10) tw.master.update() #tw.master.update() pause() self.assertEqual(tw.value,10.0) tw.configure(type=float) tw.set(20.0) tw.master.update() #tw.master.update() pause() self.assertEqual(tw.value,20.0) tw.master.destroy() def test_callback_1(self): global wasCalled def foo(val): global wasCalled wasCalled=True root = Tkinter.Tk() tw = ThumbWheel(width=100, height=26,master = root) tw.callbacks.AddCallback(foo) # setValue(val) should NOT call callback wasCalled = 0 tw.setValue(5.0) #tw.master.update() if wasCalled: raise RuntimeError # set(val) should call callback tw.set(6.0) if not wasCalled: raise RuntimeError wasCalled = False tw.set(7.0, update=0) if wasCalled: raise RuntimeError tw.master.update() pause() tw.master.destroy() def test_callback_2(self): global wasCalled def foo(val): global wasCalled wasCalled=True root = Tkinter.Tk() tw = ThumbWheel(width=100, height=26, master=root, callback=foo) self.assertEqual(tw.callbacks.callbacks, [foo,], "Expecting to have foo added to the callbackmanager callbacks list") #tw.callbacks.AddCallback(foo) # setValue(val) should NOT call callback wasCalled = 0 tw.setValue(5.0) #tw.master.update() if wasCalled: raise RuntimeError # set(val) should call callback tw.set(6.0) if not wasCalled: raise RuntimeError wasCalled = False tw.set(7.0, update=0) if wasCalled: raise RuntimeError tw.master.update() pause() tw.master.destroy() def test_callback_3(self): global wasCalled1 global wasCalled2 def foo1(val): global wasCalled1 wasCalled1=True def foo2(val): global wasCalled2 wasCalled2=True root = Tkinter.Tk() tw = ThumbWheel(width=100, height=26, master=root, callback=[foo1, foo2]) self.assertEqual(tw.callbacks.callbacks, [foo1,foo2], "Expecting to have foo added to the callbackmanager callbacks list") # setValue(val) should NOT call callback wasCalled1 = False wasCalled2 = False tw.setValue(5.0) if wasCalled1 and wasCalled2: raise RuntimeError # set(val) should call callback tw.set(6.0) if not wasCalled1 and not wasCalled2: raise RuntimeError wasCalled1 = False wasCalled2 = False tw.set(7.0, update=0) if wasCalled1 and wasCalled2: raise RuntimeError tw.master.update() pause() tw.master.destroy() def test_setType(self): # test setting of type tw = ThumbWheel(width=100, height=26, type='float') tw.set(100.0) # we can mix configure(type=float) and configure(type='float') tw.configure(type=float) self.assertEqual(tw.type,float) self.assertEqual(type(tw.get()),type(1.0)) tw.configure(type='int') tw.master.update() pause() self.assertEqual(tw.type,int) self.assertEqual(type(tw.get()),type(1)) tw.master.update() pause() tw.master.destroy() def test_setMin(self): global wasCalled # test that we do not call the callback when we set the minimum value def foo(val): global wasCalled # print "I should not be called" wasCalled=1 from mglutil.gui.BasicWidgets.Tk.thumbwheel import ThumbWheel tw = ThumbWheel(width=100, height=26) tw.callbacks.AddCallback(foo) wasCalled=0 # set the value without calling callback tw.setValue(4) # change minimum without affecting value ==> nocallback tw.configure(min=2) tw.master.update() pause() if wasCalled: raise RuntimeError # change minimum with affecting value ==> callback tw.configure(min=6) if wasCalled==0: raise RuntimeError tw.master.update() pause() tw.master.destroy() def test_setMax(self): global wasCalled # test that we do not call the callback when we set the maximum value def foo(val): global wasCalled # print "I should not be called" wasCalled=1 tw = ThumbWheel(width=100, height=26) tw.callbacks.AddCallback(foo) tw.master.update() pause() wasCalled=0 # set the value without calling callback tw.setValue(4) # change maximum without affecting value ==> nocallback tw.configure(max=6) if wasCalled: raise RuntimeError # change maximum with affecting value ==> callback tw.configure(max=2) if wasCalled==0: raise RuntimeError tw.master.update() pause() tw.master.destroy() def test_setIncrement(self): #THIS IS A BUG #it is not working correctly tw = ThumbWheel(width=100, height=26) tw.set(5.0) tw.master.update() pause() tw.configure(increment=10) tw.set(24.0) self.assertEqual(tw.increment,10.0) #24 is shown instead of 25 self.assertEqual(tw.get(),24.0) tw.master.update() pause() tw.master.destroy() def test_setPrecision(self): tw = ThumbWheel(width=100, height=26) tw.configure(type='float') tw.configure(precision=5) # increase precision to 5 - this is only visual. value is not changed self.assertEqual(tw.precision,5) tw.set(4.123456789) tw.master.update() pause() # make sure that value did not change self.assertEqual(tw.value,4.123456789) # test that out-of-range values are set to 1 - 10 tw.configure(precision=0) self.assertEqual(tw.precision,1) tw.configure(precision=11) self.assertEqual(tw.precision,10) tw.master.update() pause() tw.master.destroy() def test_setContinuous(self): """tests setContinuous """ tw = ThumbWheel(width=100, height=26) tw.configure(continuous=1) tw.master.update() pause() self.assertEqual(tw.continuous,(1 or True)) tw.configure(continuous=0) self.assertEqual(tw.continuous,(0 or False)) tw.master.update() pause() tw.master.destroy() def test_setOneTurn(self): """tests setOneturn """ tw = ThumbWheel(width=100, height=26) tw.configure(oneTurn=23.0) tw.master.update() self.assertEqual(tw.oneTurn,23.0) tw.master.update() pause() tw.master.destroy() def test_setShowLabel(self): """tests setShowLAbel """ tw = ThumbWheel(width=100, height=26) tw.configure(showLabel=0) self.assertEqual(tw.showLabel,0) tw.configure(showLabel=1) tw.master.update() pause() self.assertEqual(tw.showLabel,1) tw.configure(showLabel=2) self.assertEqual(tw.showLabel,2) tw.master.update() pause() tw.master.destroy() def test_setOrient_horizontal_to_vertical(self): """tests setOrient vertical """ tw = ThumbWheel(width=100, height=50) tw.setOrient('vertical') tw.set(100) tw.master.update() pause() myevent = Dummyevent(y = 100) tw.mouseDown(myevent) tw.mouseMove(myevent) self.assertEqual(tw.orient,'vertical') tw.master.update() pause() tw.master.destroy() def test_setOrient_vertical_to_horizontal(self): """tests setOrient horizontal """ tw = ThumbWheel(width=100, height=50,orient = 'vertical') tw.setOrient('horizontal') tw.set(100) tw.master.update() pause() tw.lasty =100 myevent = Dummyevent(y = 100,x =100) tw.mouseDown(myevent) tw.mouseMove(myevent) self.assertEqual(tw.orient,'horizontal') tw.master.update() pause() tw.master.destroy() def test_setReportDelta(self): """tests setReportDelta """ global mySum mySum = 0. ### define callback method ### def foo(val): global mySum mySum = mySum + val self.assertEqual(val, 1.0) tw = ThumbWheel(width=100, height=26, reportDelta=1) tw.callbacks.AddCallback(foo) tw.master.update() pause() for i in xrange(10): tw.computeNewValue(1.) # emulate mouse rotation self.assertEqual(tw.value,10.0) #check that the get method returns deltaValue when setReportDelta is True self.assertEqual(tw.get(), 1.0) #mySum will be 1.0 because the value is deltaVal and never changes #so the callback is only called once self.assertEqual(mySum, 1.0) tw.master.update() pause() tw.master.destroy() #invalid input def test_thumbwheel_invalid_type(self): """tests thumbwheel invalid type """ root = Tkinter.Tk() self.assertRaises(AssertionError,ThumbWheel,type ='hai',master = root) root.destroy() def test_thumbwheel_invalid_value(self): """tests thumbwheel invlaid value """ root = Tkinter.Tk() self.assertRaises(AssertionError,ThumbWheel,value = 'hai',master = root) root.destroy() def test_thumbwheel_invalid_oneTurn(self): """tests thumbwheel invalid oneturn """ root = Tkinter.Tk() self.assertRaises(AssertionError,ThumbWheel,oneTurn = 'hai',master = root) root.destroy() def test_thumbwheel_invalid_height(self): """tests thumbwheel invalid size """ root = Tkinter.Tk() self.assertRaises(AssertionError,ThumbWheel,height = 'hai',master = root) root.destroy() def test_thumbwheel_invalid_width(self): """tests thumbwheel invalid size """ root = Tkinter.Tk() self.assertRaises(AssertionError,ThumbWheel, width = 'hai',master = root) root.destroy() def test_thumbwheel_invalid_callbacks(self): """tests thumbwheel invalid callbacks """ root = Tkinter.Tk() self.assertRaises(AssertionError,ThumbWheel, callback='jlsd', master = root) self.assertRaises(AssertionError,ThumbWheel, callback=['jlsd', 'afd'], master = root) root.destroy() def test_thumbwheel_invalid_master(self): """tests thumbwheel invalid master """ root = Tkinter.Tk() self.assertRaises(AttributeError,ThumbWheel,master = 'asgjf') root.destroy() def test_thumbwheel_invalid_labcfg(self): """tests invalid labcfg """ root = Tkinter.Tk() self.assertRaises(AttributeError,ThumbWheel,labCfg = 'abcd',master = root) root.destroy() def test_thumbwheel_invalid_min(self): """tests thumbwheel invalid min """ root = Tkinter.Tk() self.assertRaises(AssertionError,ThumbWheel,min = 'hkdf',master = root) root.destroy() def test_thumbwheel_invalid_max(self): """tests thumbwheel invalid max """ root = Tkinter.Tk() self.assertRaises(AssertionError,ThumbWheel,max = 'hkdf',master = root) root.destroy() def test_thumbwheel_invalid_increment(self): """tests invalid increment """ root = Tkinter.Tk() self.assertRaises(AssertionError,ThumbWheel,increment = 'hkdf',master = root) root.destroy() def test_thumbwheel_invalid_continuous(self): """tests invalid continuous """ root = Tkinter.Tk() self.assertRaises(AssertionError,ThumbWheel,continuous = 'hkdf') root.destroy() def test_thumbwheel_invalid_precision(self): """tests invalid precision """ root = Tkinter.Tk() self.assertRaises(AssertionError,ThumbWheel,precision = 'jhgdfj',master = root) root.destroy() def test_thumbwheel_options_widget_is_mapped(self): """tests widget is mapped """ thumbwheel = ThumbWheel(size = 100) thumbwheel.opPanel.displayPanel(1) thumbwheel.master.update() pause() self.assertEqual(thumbwheel.opPanel.optionsForm.root.winfo_ismapped(),1) thumbwheel.opPanel.optionsForm.root.withdraw() thumbwheel.master.destroy() #invalid input for configure methods def test_invalid_setMin(self): """tests invalid input for setMin """ root =Tkinter.Tk() tw =ThumbWheel(master = root) self.assertRaises(AssertionError,tw.setMin,'hai') tw.master.destroy() def test_invalid_setMax(self): """tests invalid input for setMax """ root =Tkinter.Tk() tw =ThumbWheel(master = root) self.assertRaises(AssertionError,tw.setMax,'hai') tw.master.destroy() def test_invalid_setIncrement(self): """tests invalid input for setIncrement """ root =Tkinter.Tk() tw =ThumbWheel(master = root) self.assertRaises(AssertionError,tw.setIncrement,'hai') tw.master.destroy() def test_invalid_setValue(self): """tests invalid input for setValue """ root =Tkinter.Tk() tw =ThumbWheel(master = root) self.assertRaises(AssertionError,tw.setValue,'hai') tw.master.destroy() def test_invalid_setType(self): """tests invalid input for setType """ root =Tkinter.Tk() tw =ThumbWheel(master = root) self.assertRaises(AssertionError,tw.setType,'hai') tw.master.destroy() def test_invalid_setShowLabel(self): """tests invalid input for setShowLabel """ root =Tkinter.Tk() tw =ThumbWheel(master = root) self.assertRaises(AssertionError,tw.setShowLabel,"iurey") tw.master.destroy() def test_invalid_setLabel(self): """tests invalid input for setLabel """ root =Tkinter.Tk() tw =ThumbWheel(master = root) self.assertRaises(AttributeError,tw.setLabel,'hai') tw.master.destroy() def test_invalid_setPrecision(self): """tests invalid input for setPrecision """ root =Tkinter.Tk() tw =ThumbWheel(master = root) self.assertRaises(AssertionError,tw.setPrecision,'hai') tw.master.destroy() def test_invalid_setContinuous(self): """tests invalid input for setContinuous """ root =Tkinter.Tk() tw =ThumbWheel(master = root) self.assertRaises(AssertionError,tw.setContinuous,"iurey") tw.master.destroy() def test_invalid_setOneTurn(self): """tests invalid input for setOneTurn """ root =Tkinter.Tk() tw =ThumbWheel(master = root) self.assertRaises(AssertionError,tw.setOneTurn,'hai') tw.master.destroy() def test_invalid_setOrient(self): """tests invalid input for setOrient """ root =Tkinter.Tk() tw =ThumbWheel(master = root) self.assertRaises(AssertionError,tw.setOrient,'hai') tw.master.destroy() #lockmethods def test_tw_lockmin(self): """tests lockmin """ tw = ThumbWheel(size = 100) tw.opPanel.displayPanel(1) tw.master.update() pause() self.assertEqual(tw.opPanel.min_entry.cget('state'),'disabled') tw.lockMinCB(1) self.assertEqual(tw.opPanel.min_entry.cget('state'),'normal') tw.opPanel.Dismiss_cb() tw.master.destroy() def test_tw_lockmax(self): """tests lockmax """ tw = ThumbWheel(size = 100) tw.opPanel.displayPanel(1) tw.master.update() pause() self.assertEqual(tw.opPanel.max_entry.cget('state'),'disabled') tw.lockMaxCB(1) self.assertEqual(tw.opPanel.max_entry.cget('state'),'normal') tw.opPanel.Dismiss_cb() tw.master.destroy() def test_tw_lockincrement(self): """tests lockincrement """ tw = ThumbWheel(size = 100) tw.opPanel.displayPanel(1) tw.master.update() pause() self.assertEqual(tw.opPanel.incr_entry.cget('state'),'disabled') tw.lockIncrementCB(1) self.assertEqual(tw.opPanel.incr_entry.cget('state'),'normal') tw.opPanel.Dismiss_cb() tw.master.destroy() def test_tw_lockOneTurnCB(self): """tests lockoneturn """ tw = ThumbWheel(size = 100) tw.opPanel.displayPanel(1) tw.lockOneTurnCB(1) tw.master.update() pause() self.assertEqual(tw.opPanel.sens_entry.cget('state'),'disabled') tw.lockOneTurnCB(0) self.assertEqual(tw.opPanel.sens_entry.cget('state'),'normal') tw.opPanel.Dismiss_cb() tw.master.destroy() def test_tw_lockValueCB(self): """tests lockvalue """ tw = ThumbWheel(size = 100) tw.opPanel.displayPanel(1) tw.lockValueCB(1) tw.master.update() pause() self.assertEqual(tw.opPanel.val_entry.cget('state'),'disabled') tw.lockValueCB(0) self.assertEqual(tw.opPanel.val_entry.cget('state'),'normal') tw.opPanel.Dismiss_cb() tw.master.destroy() if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/test_toolbarbutton.py0000644000175000017500000000545710256041433031517 0ustar debiandebian######################################################################### # # Date: Jul 2002 Author: Daniel Stoffler # # stoffler@scripps.edu # # Copyright: Daniel Stoffler, and TSRI # ######################################################################### import sys,unittest from time import sleep from mglutil.gui.BasicWidgets.Tk.toolbarbutton import ToolBarButton import Tkinter,Pmw buttonFuncs = {} widget = None pushedButton = 0 def pause(sleepTime=0.2): widget.master.update() sleep(sleepTime) def selectFunc(name): global buttonFuncs curFunc = buttonFuncs[name] if curFunc: curFunc() def pushButton(): global pushedButton pushedButton = 1 class ToolBarButtonBaseTest(unittest.TestCase): def test_01_constructor(self): # test if we can display a button global widget widget = Tkinter.Frame() widget.balloons = Pmw.Balloon(widget) ToolBarButton(balloonmaster=widget, master=widget, name='smiley', icon1='smiley.gif') widget.pack() pause(0.4) widget.master.destroy() def test_02_multipleButtons(self): # test if we can have multiple buttons global widget global buttonFuncs widget = Tkinter.Frame() widget.balloons = Pmw.Balloon(widget) # add separator, 5 smilies, separator for key, func, balloon in [ ('sep1', None, None), ('smiley1', None, 'This is icon1'), ('smiley2', None, 'This is icon2'), ('smiley3', None, 'This is icon3'), ('smiley4', None, 'This is icon4'), ('smiley5', None, 'This is icon5'), ('sep2', None, None) ]: ToolBarButton(widget, widget, name=key, icon1='%s.gif' % key[:-1], command=selectFunc, balloonhelp=balloon) buttonFuncs[key] = func widget.pack() pause(0.6) widget.master.destroy() def test_03_buttonCommand(self): # test if we can activate button function global widget global buttonFuncs global pushedButton widget = Tkinter.Frame() widget.balloons = Pmw.Balloon(widget) tb=ToolBarButton(balloonmaster=widget, master=widget, name='smiley', icon1='smiley.gif', command=selectFunc, state='normal') buttonFuncs['smiley'] = pushButton widget.pack() # call the button command which will call the method pushButton # which will set the value pushedButton from 0 to 1 tb.buttonFocus = 1 # simulate mouse pointer entering button, else the # callback is not called tb.buttonUp(None) self.assertEqual(pushedButton == 1,True) pause(0.4) widget.master.destroy() if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/test_customizedWidgets.py0000644000175000017500000002343410256043316032333 0ustar debiandebian# # $Header: /opt/cvs/python/packages/share1.5/mglutil/gui/BasicWidgets/Tk/Tests/test_customizedWidgets.py,v 1.3 2005/06/21 16:56:46 sowjanya Exp $ # # $Id: test_customizedWidgets.py,v 1.3 2005/06/21 16:56:46 sowjanya Exp $ # import sys,unittest from mglutil.regression import testplus from time import sleep inCB = False widget = None wasCalled = 0 def pause(sleepTime=0.2): widget.master.update() sleep(sleepTime) ######################################################################### ### TEST KBCOMBOBOX ######################################################################### class KBComboBox(unittest.TestCase): def test_kbComboBox(self): global widget from mglutil.gui.BasicWidgets.Tk.customizedWidgets import kbComboBox # default root widget widget = kbComboBox(label_text='Numbers:', labelpos='w') widget.pack() pause() widget.master.destroy() # with root widget import Tkinter root = Tkinter.Toplevel() widget = kbComboBox(root, label_text='Numbers:', labelpos='w') widget.pack() pause() widget.master.destroy() def test_kbComboBox_setValue(self): # test if we can set the value of a kbComboBox global widget, wasCalled from mglutil.gui.BasicWidgets.Tk.customizedWidgets import kbComboBox def chooseNumber(number): global wasCalled print 'A you chose:', number wasCalled=1 namelist = map(str, range(30)) widget = kbComboBox(label_text='Numbers:', labelpos='w', selectioncommand = chooseNumber, scrolledlist_items = namelist ) widget.pack() pause() # set value and call command wasCalled = 0 widget.set( 8 ) pause() self.assertEqual(wasCalled == 1,True) self.assertEqual(widget.get() == '8',True) # set value and dio NOT call command wasCalled = 0 widget.set( 2, run=0 ) pause() self.assertEqual(wasCalled == 0,True) self.assertEqual(widget.get() == '2',True) widget.master.destroy() ######################################################################### ### TEST SLIDERWIDGET ######################################################################### class SLIDERWIDGETBaseTest(unittest.TestCase): def test_sliderwidget(self): global widget from mglutil.gui.BasicWidgets.Tk.customizedWidgets import SliderWidget # default root widget widget = SliderWidget() widget.pack() pause() widget.master.destroy() # with root widget import Tkinter root = Tkinter.Toplevel() widget = SliderWidget(root) widget.pack() pause() widget.master.destroy() def test_sliderwidget_set(self): global inCB inCB = False def slider_cb(val): global inCB inCB = True global widget from mglutil.gui.BasicWidgets.Tk.customizedWidgets import SliderWidget import Tkinter root = Tkinter.Toplevel() widget = SliderWidget(root, command=slider_cb) widget.pack() pause() widget.set(9.567, update=0) self.assertEqual(not inCB,True) val = widget.get() self.assertEqual(val == 9.567,True) widget.set(10.567, update=1) self.assertEqual(inCB,True) val = widget.get() self.assertEqual(val==10.567,True) # need to check if the cursorlabel has the proper format pause() widget.master.destroy() def test_sliderwidget_discrete(self): global widget from mglutil.gui.BasicWidgets.Tk.customizedWidgets import SliderWidget import Tkinter root = Tkinter.Toplevel() widget = SliderWidget(root,label='discrete slider', labelsCursorFormat='%4d', immediate=0, lookup=[10, 15, 25, 46, 78, 99] ) widget.pack() # the widget min, max and val are indices in the lookup table. self.assertEqual(widget.min==0,True) pause() # set a non existent val the val must be the min. try: widget.set(9.567) except ValueError: val = widget.get() self.assertEqual(val == 10,True) pause() # set to a value in the lookup table. the widget.val must be the index of # this val. widget.set(78) val = widget.get() self.assertEqual(val == 78,True) self.assertEqual(widget.val == widget.lookup.index(78),True) pause() # set to a value greater than the last value of the look up table. try: widget.set(110) except ValueError: val = widget.get() self.assertEqual(val == 78,True) pause() # set the min value of the discrete slider widget.setMin(15) val = widget.get() self.assertEqual(val == 15,True) self.assertEqual(widget.min == 1,True) widget.set(10) val = widget.get() self.assertEqual(val == widget.lookup[widget.min],True) pval = widget.get() widget.setMax(78) val = widget.get() self.assertEqual(val == pval,True) self.assertEqual(widget.max == widget.lookup.index(78),True) widget.set(99) self.assertEqual(widget.get() == widget.lookup[widget.max],True) pause() widget.master.destroy() ######################################################################### ### TEST EXTENDEDSLIDERWIDGET ######################################################################### class EXTENDEDSLIDERWIDGETBaseTest(unittest.TestCase): def test_extendedsliderwidget_discrete(self): global widget from mglutil.gui.BasicWidgets.Tk.customizedWidgets import ExtendedSliderWidget import Tkinter root = Tkinter.Toplevel() widget = ExtendedSliderWidget(root,label='discrete extendedslider', labelsCursorFormat='%4d', immediate=0, lookup=[10, 15, 25, 46, 78, 99] ) widget.pack() # the widget min, max and val are indices in the lookup table. self.assertEqual(widget.min==0,True) pause() # set a non existent val the val must be the min. try: widget.set(9.567) except ValueError: val = widget.get() self.assertEqual(val == 10,True) # need to check the value of the entry though. entryval = widget.entryContent.get() self.assertEqual(entryval == widget.labelsCursorFormat%val,True) pause() # set to a value in the lookup table. the widget.val must be the index of # this val. widget.set(78) val = widget.get() self.assertEqual(val == 78,True) self.assertEqual(widget.val == widget.lookup.index(78),True) # need to check the value of the entry though. entryval = widget.entryContent.get() self.assertEqual(entryval == widget.labelsCursorFormat%val,True) pause() # set to a value greater than the last value of the look up table. try: widget.set(110) except ValueError: val = widget.get() self.assertEqual(val == 78,True) #self.assertEqual(val == widget.lookup[widget.max] #self.assertEqual(widget.val == widget.max pause() # set the min value of the discrete slider widget.setMin(15) val = widget.get() self.assertEqual(val == 15,True) self.assertEqual(widget.min == 1,True) widget.set(10) val = widget.get() self.assertEqual(val == widget.lookup[widget.min],True) widget.setMax(78) self.assertEqual(widget.max == widget.lookup.index(78),True) widget.set(99) self.assertEqual(widget.get() == widget.lookup[widget.max],True) # TEST THE CALLBACK OF THE entry widget.entryContent.set(46) widget.setval('') self.assertEqual(widget.get() == 46,True) pause() try: widget.entryContent.set(110) widget.setval('') except ValueError: self.assertEqual(widget.get() == 46,True) pause() widget.master.destroy() def test_extendedsliderwidget(self): global widget from mglutil.gui.BasicWidgets.Tk.customizedWidgets import ExtendedSliderWidget import Tkinter root = Tkinter.Toplevel() widget = ExtendedSliderWidget(root) widget.pack() pause() # TEST SET method and the labelsCursorFormat widget.set(9.567) val = widget.get() self.assertEqual(val == 9.567,True) # need to check the value of the entry though. entryval = widget.entryContent.get() self.assertEqual(entryval == widget.labelsCursorFormat%val,True) pause() # TEST THE CALLBACK OF THE entry widget.entryContent.set(12.956) widget.setval('') self.assertEqual(widget.get() == 12.956,True) # TEST SETMIN widget.setMin(3.564) widget.set(0.0) val = widget.get() self.assertEqual(val == 3.564,True) pause() widget.setMin(5.) val = widget.get() self.assertEqual(val == 5.,True) pause() # TEST SETMAX widget.setMax(30.566) val = widget.get() self.assertEqual(val == 5.0,True) pause() widget.set(25.9) self.assertEqual(widget.get()==25.9,True) widget.setMax(20.) self.assertEqual(widget.get()==20.,True) pause() widget.master.destroy() if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/test_graphtool.py0000644000175000017500000001324310677015002030610 0ustar debiandebian############################################################################## # # # Author: Sowjanya Karnati # # ############################################################################### # # # # #$Id: test_graphtool.py,v 1.8 2007/09/27 21:00:50 annao Exp $ import sys,unittest from Tkinter import Tk from time import sleep from mglutil.gui.BasicWidgets.Tk.graphtool import GraphApp import numpy import os def pause(): import time time.sleep(0.1) class GrapToolTest(unittest.TestCase): def test_default_graphtool(self): """create and withdarw""" root=Tk() app=GraphApp(root) app.master.update() pause() app.master.destroy() def test_graphtool_default_curve(self): """testing default curve""" root=Tk() app=GraphApp(root) app.master.update() app.defaultcurve_cb() app.master.update() pause() self.assertEqual(app.getControlPoints()[1:-1],app.default_points) app.master.destroy() def test_graphtool_reset(self): """testing resetting graph""" root=Tk() app=GraphApp(root) app.master.update() app.resetAll_cb() app.master.update() self.assertEqual(app.getControlPoints(),[(50, 275), (305, 20)]) self.assertEqual(len(app.curovals),2) self.assertEqual(app.history,[]) self.assertEqual(app.oldpoints,[(50, 275), (305, 20)]) pause() app.master.destroy() def test_graphtool_setControlPoints(self): """tests setControlPoints""" root=Tk() app=GraphApp(root) app.master.update() points=[(100,150),(150,200)] app.setControlPoints(points) app.master.update() pause() self.assertEqual(app.getControlPoints()[1:-1],points) self.assertEqual(len(app.curovals),len(points)) pause() app.master.destroy() def test_stepback_cb(self): """testing setback function""" root=Tk() app=GraphApp(root) app.master.update() points=[(100,150),(150,200)] app.setControlPoints(points) app.master.update() npoints=[(200,200)] app.setControlPoints(npoints) app.master.update() app.stepBack_cb() app.master.update() self.assertEqual(app.getControlPoints()[1:-1],[(100,150),(150,200)]) app.master.destroy() def test_graphtool_setSensitivity(self): """testing setSensitivity function""" root=Tk() app=GraphApp(root) app.master.update() app.setSensitivity(0.06) app.master.update() self.assertEqual(app.d1scalewheel.get(),0.06) app.master.destroy() def test_graphtool_MouseButtonUp(self): """testing when mousebuttonup var set to 1""" root=Tk() app=GraphApp(root) app.master.update() pause() val1=app.caluculate_ramp() app.mousebuttonup=1 points=[(100,150),(150,200)] app.setControlPoints(points) app.master.update() val2=app.caluculate_ramp() self.assertFalse(numpy.alltrue(val1 == val2) ) #self.assertEqual(val1!=val2,True) app.master.destroy() def test_graphtool_Continuous(self): """testing when continuous var set to 1""" root=Tk() app=GraphApp(root) app.master.update() val1=app.caluculate_ramp() app.continuous=1 points=[(100,150),(150,200)] app.setControlPoints(points) app.master.update() val2=app.caluculate_ramp() self.assertFalse(numpy.alltrue(val1 == val2) ) app.master.destroy() def test_graphtool_Update(self): """testing when update var set to 1""" root=Tk() app=GraphApp(root) app.master.update() points=[(130,150)] app.setControlPoints(points) val1=app.caluculate_ramp() app.update=1 points=[(100,150),(150,200)] app.setControlPoints(points) app.Update() app.master.update() val2=app.caluculate_ramp() #self.assertEqual(val1!=val2,True) self.assertFalse(numpy.alltrue(val1 == val2) ) app.master.destroy() def test_graphtool_read_write(self): """testing read ,write functions""" root=Tk() app=GraphApp(root) app.master.update() app.setControlPoints(app.default_points) app.master.update() app.write("new1_Graph.py") app.master.update() self.assertEqual(os.path.exists("new1_Graph.py"),True) fptr=open("new1_Graph.py") data=fptr.readlines() points=[(38, 37), (51, 125), (104, 197), (25, 4)] self.assertEqual(eval(data[0][:-1])[1:-1],app.default_points) app.read("new1_Graph.py") app.master.update() self.assertEqual(app.getControlPoints()[1:-1],app.default_points) os.system("rm -rf new1_Graph.py") app.master.destroy() ####TESTING ILLEGAL INPUT def test_graphtool_setControlpoints_illegal_input(self): """testing illegal input for setControlpoints""" root=Tk() app=GraphApp(root) app.master.update() self.assertRaises(AssertionError,app.setControlPoints,"abc") app.master.destroy() def test_graphtool_setControlpoints_illegal_input_1(self): """testing illegal input coordinates out of range raises assertion error""" root=Tk() app=GraphApp(root) app.master.update() self.assertRaises(AssertionError,app.setControlPoints,[(0,200)]) app.master.destroy() if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/test_dial.py0000644000175000017500000004560111207605430027525 0ustar debiandebian######################################################################### # # Date: Jun 2002 Authors: Daniel Stoffler, Michel Sanner # # stoffler@scripps.edu # sanner@scripps.edu # # Copyright: Daniel Stoffler, Michel Sanner, and TSRI # ######################################################################### # $Id: test_dial.py,v 1.8 2009/05/28 22:07:20 vareille Exp $ import sys,unittest,Tkinter from time import sleep from mglutil.gui.BasicWidgets.Tk.Dial import Dial wasCalled = False def MyCallback(val): global wasCalled print val wasCalled = True def pause(): import time time.sleep(0.1) class DialBaseTest(unittest.TestCase): def test_setValue(self): # test setting of a value dial = Dial(size=50, value=10.0) dial.master.update() pause() self.assertEqual(dial.value == 10.0,True) dial.configure(type=float) dial.set(20.0) self.assertEqual(dial.value == 20.0,True) dial.master.update() pause() dial.master.withdraw() dial.master.destroy() def test_setValueWithIncrement(self): dial = Dial(size=50, value=5.0) dial.master.update() pause() self.assertEqual(dial.increment == 0.0,True) # increment is 0.0 if not set self.assertEqual(dial.value == 5.0,True) # now set increment and then set a new value dial.configure(increment=2.0) self.assertEqual(dial.increment == 2.0,True) dial.set(21.0) #set value is 21 but 23 is shown #print dial.value self.assertEqual(dial.value == 21.0,True) dial.master.update() pause() dial.master.withdraw() dial.master.destroy() def test_callback(self): # test callback global wasCalled dial = Dial(size=50, value=10.0) dial.callbacks.AddCallback(MyCallback) dial.master.update() pause() self.assertEqual(len(dial.callbacks.callbacks),1) dial.callbacks.RemoveCallback(MyCallback) self.assertEqual(len(dial.callbacks.callbacks),0) # setValue(val) should NOT call callback dial.callbacks.AddCallback(MyCallback) dial.setValue(5.0) dial.master.update() pause() if wasCalled == True: raise RuntimeError # set(val) should call callback dial.set(6.0) dial.master.update() pause() if wasCalled == False: raise RuntimeError wasCalled = False dial.set(7.0, update=0) if wasCalled: raise RuntimeError dial.master.destroy() def test_callback_2(self): global wasCalled1 global wasCalled2 def foo1(val): global wasCalled1 wasCalled1=True def foo2(val): global wasCalled2 wasCalled2=True dial = Dial(size=50, value=10.0, callback=[foo1,foo2]) self.assertEqual(dial.callbacks.callbacks, [foo1,foo2], "Expecting to have foo added to the callbackmanager callbacks list") # setValue(val) should NOT call callback wasCalled1 = False wasCalled2 = False dial.setValue(5.0) if wasCalled1 and wasCalled2: raise RuntimeError # set(val) should call callback dial.set(6.0) if not wasCalled1 and not wasCalled2: raise RuntimeError wasCalled1 = False wasCalled2 = False dial.set(7.0, update=0) if wasCalled1 and wasCalled2: raise RuntimeError dial.master.update() pause() dial.master.destroy() def test_setType(self): # test setting of type dial = Dial(size=50, type='float') dial.set(100.0) dial.master.update() pause() # we can mix configure(type=float) and configure(type='float') dial.configure(type=float) self.assertEqual(dial.type == float,True) self.assertEqual(type(dial.get()) == type(1.0),True) dial.configure(type='int') self.assertEqual(dial.type == int,True) self.assertEqual(type(dial.get()) == type(1),True) dial.master.update() pause() dial.master.withdraw() dial.master.destroy() def test_setMin(self): global wasCalled # test that we do not call the callback when we set the minimum value dial = Dial(size=50) dial.callbacks.AddCallback(MyCallback) # set the value without calling callback dial.setValue(4) # change minimum without affecting value ==> nocallback dial.configure(min=2) dial.master.update() pause() if wasCalled == True: raise RuntimeError # change minimum with affecting value ==> callback dial.configure(min=6) if wasCalled == False: raise RuntimeError wasCalled = False dial.master.update() pause() dial.master.destroy() def test_setMax(self): global wasCalled # test that we do not call the callback when we set the maximum value dial = Dial(size=50) dial.callbacks.AddCallback(MyCallback) dial.master.update() pause() # set the value without calling callback dial.setValue(4) # change maximum without affecting value ==> nocallback dial.configure(max=6) if wasCalled == True: raise RuntimeError # change maximum with affecting value ==> callback dial.configure(max=2) if wasCalled == False: raise RuntimeError wasCalled = False dial.master.update() pause() dial.master.destroy() def test_setIncrement(self): """tests set increment """ dial = Dial(size=50) dial.configure(increment=5) self.assertEqual(dial.increment == 5,True) dial.master.update() pause() dial.master.destroy() def test_setPrecision(self): """tests set precision """ dial = Dial(size=50) dial.configure(type='float') dial.configure(precision=5) dial.master.update() pause() # increase precision to 5 - this is only visual. value is not changed self.assertEqual(dial.precision == 5,True) dial.set(4.123456789) dial.master.update() pause() # make sure that value did not change self.assertEqual(dial.value == 4.123456789,True) dial.master.destroy() def test_setContinuous(self): """tests setcontinuous """ dial = Dial(size=50) dial.configure(continuous=1) dial.master.update() pause() self.assertEqual(dial.continuous == 1,True) dial.configure(continuous=0) dial.master.update() pause() self.assertEqual(dial.continuous == (0 or None),True) dial.master.destroy() def test_setOneTurn(self): """tests setoneturn """ dial = Dial(size=50) dial.configure(oneTurn=23.0) dial.master.update() pause() self.assertEqual(dial.oneTurn == 23.0,True) dial.master.destroy() def test_setShowLabel(self): """tests set showlabel """ dial = Dial(size=50) dial.configure(showLabel=0) dial.master.update() pause() self.assertEqual(dial.showLabel == 0,True) dial.configure(showLabel=1) dial.master.update() pause() self.assertEqual(dial.showLabel == 1,True) dial.configure(showLabel=2) dial.master.update() pause() self.assertEqual(dial.showLabel == 2,True) dial.master.destroy() def test_setArrow(self): """tests set arrow """ dial = Dial(size=50) dial.setArrow(200) dial.master.update() pause() #arrowLength = max(3,3*size/40) self.assertEqual(dial.arrowLength,15) dial.setArrow(160) dial.master.update() pause() self.assertEqual(dial.arrowLength,12) dial.master.destroy() def test_dial_default_parameters(self): """tests set default parameters """ dial = Dial(master=None, type='float', labCfg={'fg':'black','side':'left', 'text':None}, min=None, max=None, increment=0.0, precision=2, showLabel=1, value=0.0, continuous=1, oneTurn=360., size=50, callback=None, lockMin=0, lockBMin=0, lockMax=0, lockBMax=0, lockIncrement=0, lockBIncrement=0, lockPrecision=0, lockShowLabel=0, lockValue=0, lockType=0, lockContinuous=0, lockOneTurn=0) self.assertEqual(str(dial.opPanel.type),"") self.assertEqual(dial.opPanel.minInput.get(),'') self.assertEqual(dial.opPanel.maxInput.get(),'') self.assertEqual(dial.opPanel.incrInput.get(),'') dial.opPanel.displayPanel(1) dial.master.update() pause() self.assertEqual(dial.precision,2) self.assertEqual(dial.showLabel,1) self.assertEqual(dial.value,0.0) self.assertEqual(dial.continuous,1) self.assertEqual(dial.oneTurn,360) self.assertEqual(dial.size,50) dial.opPanel.Apply_cb() dial.master.destroy() def test_set_arguements(self): """tests set arguements """ root =Tkinter.Tk() dial = Dial(master=root,type='int',labCfg={'fg':'blue','side':'left', 'text':'hai'},min = 2,max = 100, increment = 2,precision =4,showlabel =0,value =10,continuous =0,oneTurn =180,size = 100,callback = None) dial.opPanel.displayPanel(1) dial.master.update() pause() self.assertEqual(str(dial.opPanel.type),"") self.assertEqual(dial.opPanel.minInput.get(),'2') self.assertEqual(dial.opPanel.maxInput.get(),'100') self.assertEqual(dial.opPanel.incrInput.get(),'2') self.assertEqual(dial.precision,4) self.assertEqual(dial.labCfg,{'fg':'blue','side':'left','text':'hai'}) self.assertEqual(dial.value,10) self.assertEqual(dial.continuous,None) dial.opPanel.Apply_cb() dial.master.destroy() def test_dial_set_lock_arguements(self): """tests set lock arguements """ dial = Dial(size = 100,lockMin=1, lockBMin=1, lockMax=1, lockBMax=1,lockIncrement=1, lockBIncrement=1,lockPrecision=1, lockShowLabel=1, lockValue=1,lockType=1, lockContinuous=1, lockOneTurn=1) dial.master.update() pause() self.assertEqual(dial.lockMin,1) self.assertEqual(dial.lockMax,1) self.assertEqual(dial.lockBMin,1) self.assertEqual(dial.lockBMax,1) self.assertEqual(dial.lockIncrement,1) self.assertEqual(dial.lockIncrement,1) self.assertEqual(dial.lockValue,1) self.assertEqual(dial.lockType,1) self.assertEqual(dial.lockContinuous,1) self.assertEqual(dial.lockOneTurn,1) dial.master.destroy() #Invalid Inputs def test_dial_invalid_type(self): """tests dial invalid type """ root =Tkinter.Tk() self.assertRaises(AssertionError,Dial,type ='hai',master =root) root.destroy() def test_dial_invalid_value(self): """tests dial invlaid value """ root =Tkinter.Tk() self.assertRaises(ValueError,Dial,value = 'hai',master =root) root.destroy() def test_dial_invalid_oneTurn(self): """tests dial invalid oneturn """ root =Tkinter.Tk() self.assertRaises(AssertionError,Dial,oneTurn = 'hai',master =root) root.destroy() def test_dial_invalid_size(self): """tests dial invalid size """ root =Tkinter.Tk() self.assertRaises(AssertionError,Dial,size = 'hai',master =root) root.destroy() def test_dial_invalid_callback(self): """tests dial invalid callback """ root =Tkinter.Tk() self.assertRaises(AssertionError,Dial,callback ='jlsd',master =root) root.destroy() def test_dial_invalid_master(self): """tests dial invalid master """ root =Tkinter.Tk() self.assertRaises(AttributeError,Dial,master = 'asgjf') root.destroy() def test_dial_invalid_labcfg(self): """tests invalid labcfg """ root =Tkinter.Tk() self.assertRaises(AttributeError,Dial,labCfg = 'abcd',master =root) root.destroy() def test_dial_invalid_min(self): """tests dial invalid min """ root =Tkinter.Tk() self.assertRaises(AssertionError,Dial,min = 'hkdf',master =root) root.destroy() def test_dial_invalid_max(self): """tests dial invalid max """ root =Tkinter.Tk() self.assertRaises(AssertionError,Dial,max = 'hkdf',master =root) root.destroy() def test_dial_invalid_increment(self): """tests invalid increment """ root =Tkinter.Tk() self.assertRaises(AssertionError,Dial,increment = 'hkdf',master =root) root.destroy() def test_dial_invalid_continuous(self): """tests invalid continuous:failed """ root =Tkinter.Tk() self.assertRaises(AssertionError,Dial,continuous = 'hkdf',master =root) root.destroy() def test_dial_invalid_precision(self): """tests invalid precision """ root =Tkinter.Tk() self.assertRaises(AssertionError,Dial,precision = 'jhgdfj',master =root) root.destroy() def test_dial_options_widget_is_mapped(self): """tests widget is mapped """ dial = Dial(size = 100) dial.opPanel.displayPanel(1) dial.master.update() pause() self.assertEqual(dial.opPanel.optionsForm.root.winfo_ismapped(),1) dial.opPanel.optionsForm.root.withdraw() dial.master.destroy() #lockmethods def test_dial_lockmin(self): """tests lockmin """ dial = Dial(size = 100) dial.opPanel.displayPanel(1) dial.master.update() pause() self.assertEqual(dial.opPanel.min_entry.cget('state'),'disabled') dial.lockMinCB(1) self.assertEqual(dial.opPanel.min_entry.cget('state'),'normal') dial.opPanel.Dismiss_cb() dial.master.destroy() def test_dial_lockmax(self): """tests lockmax """ dial = Dial(size = 100) dial.opPanel.displayPanel(1) dial.master.update() pause() self.assertEqual(dial.opPanel.max_entry.cget('state'),'disabled') dial.lockMaxCB(1) self.assertEqual(dial.opPanel.max_entry.cget('state'),'normal') dial.opPanel.Dismiss_cb() dial.master.destroy() def test_dial_lockincrement(self): """tests lockincrement """ dial = Dial(size = 100) dial.opPanel.displayPanel(1) dial.master.update() pause() self.assertEqual(dial.opPanel.incr_entry.cget('state'),'disabled') dial.lockIncrementCB(1) self.assertEqual(dial.opPanel.incr_entry.cget('state'),'normal') dial.opPanel.Dismiss_cb() dial.master.destroy() def test_dial_lockOneTurnCB(self): """tests lockoneturn """ dial = Dial(size = 100) dial.opPanel.displayPanel(1) dial.lockOneTurnCB(1) dial.master.update() pause() self.assertEqual(dial.opPanel.sens_entry.cget('state'),'disabled') dial.lockOneTurnCB(0) self.assertEqual(dial.opPanel.sens_entry.cget('state'),'normal') dial.opPanel.Dismiss_cb() dial.master.destroy() def test_dial_lockValueCB(self): """tests lockvalue """ dial = Dial(size = 100) dial.opPanel.displayPanel(1) dial.lockValueCB(1) dial.master.update() pause() self.assertEqual(dial.opPanel.val_entry.cget('state'),'disabled') dial.lockValueCB(0) self.assertEqual(dial.opPanel.val_entry.cget('state'),'normal') dial.opPanel.Dismiss_cb() dial.master.destroy() #invalid input for configure methods def test_invalid_setMin(self): """tests invalid input for setMin """ root =Tkinter.Tk() dial =Dial(master = root) self.assertRaises(AssertionError,dial.setMin,'hai') dial.master.destroy() def test_invalid_setMax(self): """tests invalid input for setMax """ root =Tkinter.Tk() dial =Dial(master = root) self.assertRaises(AssertionError,dial.setMax,'hai') dial.master.destroy() def test_invalid_setIncrement(self): """tests invalid input for setIncrement """ root =Tkinter.Tk() dial =Dial(master = root) self.assertRaises(AssertionError,dial.setIncrement,'hai') dial.master.destroy() def test_invalid_setValue(self): """tests invalid input for setValue """ root =Tkinter.Tk() dial =Dial(master = root) self.assertRaises(ValueError,dial.setValue,'hai') dial.master.destroy() def test_invalid_setType(self): """tests invalid input for setType """ root =Tkinter.Tk() dial =Dial(master = root) self.assertRaises(AssertionError,dial.setType,'hai') dial.master.destroy() def test_invalid_setShowLabel(self): """tests invalid input for setShowLabel """ root =Tkinter.Tk() dial =Dial(master = root) self.assertRaises(AssertionError,dial.setShowLabel,"iurey") dial.master.destroy() def test_invalid_setLabel(self): """tests invalid input for setLabel """ root =Tkinter.Tk() dial =Dial(master = root) self.assertRaises(AttributeError,dial.setLabel,'hai') dial.master.destroy() def test_invalid_setPrecision(self): """tests invalid input for setPrecision """ root =Tkinter.Tk() dial =Dial(master = root) self.assertRaises(AssertionError,dial.setPrecision,'hai') dial.master.destroy() def test_invalid_setContinuous(self): """tests invalid input for setContinuous """ root =Tkinter.Tk() dial =Dial(master = root) self.assertRaises(AssertionError,dial.setContinuous,"iurey") dial.master.destroy() def test_invalid_setOneTurn(self): """tests invalid input for setOneTurn """ root =Tkinter.Tk() dial =Dial(master = root) self.assertRaises(AssertionError,dial.setOneTurn,'hai') dial.master.destroy() if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Tests/test_colorWidgets.py0000644000175000017500000002324611451162410031257 0ustar debiandebian# # # #$Id: test_colorWidgets.py,v 1.3 2010/09/30 19:29:12 annao Exp $ # ########################################################################### # # Authors : Sowjanya Karnati,Michel F Sanner # ########################################################################### # # # import sys,unittest,Tkinter from time import sleep from mglutil.gui.BasicWidgets.Tk.colorWidgets import * from mglutil.util.colorUtil import * def pause(): sleep(0.1) class colorEditorTest(unittest.TestCase): #####set and get method tests def test_colorEditor_set_HSV(self): """tests setting color when mode is HSV""" self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() color=(0.5,0.5,0.5) ce.set(color=color,mode='HSV') rgbcolor=ToRGB(color) for i in range(0,len(rgbcolor)-1): self.assertEqual(rgbcolor[i],ce.get()[i]) ce.master.update() pause() ce.master.master.destroy() def test_colorEditor_set_HEX(self): """tests setting color when mode is HEX""" self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() color='#FFFF00' ce.set(color=color,mode='HEX') rgbcolor=ToRGB(color,mode="HEX") for i in range(0,len(rgbcolor)-1): self.assertEqual(rgbcolor[i],ce.get()[i]) ce.master.update() pause() ce.master.master.destroy() def test_colorEditor_set_RGB(self): """tests setting color when mode is RGB""" self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() color=(1.0, 0.0, 0.0) ce.set(color=color,mode='RGB') for i in range(0,len(color)-1): self.assertEqual(ce.get()[i],color[i]) ce.master.update() pause() ce.master.master.destroy() #####updateWidgetColor method tests def test_colorEditor_updateWidgetColor_HSV(self): """tests updateWidgetColor when mode is 'hsv' """ self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() old_hVal = ce.hVal.get() old_sVal = ce.sVal.get() old_vVal = ce.vVal.get() ce.master.update() pause() ce.updateWidgetsColor((0.0,1.0,0.0),who='hsv') ce.master.update() pause() new_hVal = ce.hVal.get() new_sVal = ce.sVal.get() new_vVal = ce.vVal.get() self.assertEqual(old_hVal!=new_hVal ,True) self.assertEqual(old_sVal!=new_sVal ,True) #self.assertEqual(old_vVal!=new_vVal ,True) ce.master.update() pause() ce.master.master.destroy() def test_colorEditor_updateWidgetColor_RGB(self): """tests updateWidgetColor when mode is 'rgb' """ self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() old_rVal = ce.rVal.get() old_gVal = ce.gVal.get() old_bVal = ce.bVal.get() ce.updateWidgetsColor((0.5,0.5,0.5),who='rgb') new_rVal = ce.rVal.get() new_gVal = ce.gVal.get() new_bVal = ce.bVal.get() self.assertEqual(old_rVal!=new_rVal ,True) self.assertEqual(old_gVal!=new_gVal ,True) self.assertEqual(old_bVal!=new_bVal ,True) ce.master.update() pause() ce.master.master.destroy() def test_colorEditor_updateWidgetColor_HEX(self): """tests updateWidgetColor when mode is 'hex' """ self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() old_hexVal = ce.hexVal.get() ce.updateWidgetsColor((0.5,1.0,0.5),who='hex') new_hexVal = ce.hexVal.get() self.assertEqual(old_hexVal!=new_hexVal,True) ce.master.update() pause() ce.master.master.destroy() ###########Entry Val Tests################ def test_colorEditor_rVal(self): """tests colorEditor values by setting rVal and invoking """ self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() oldcol=ce.get() ce.rVal.setvalue(0.5) ce.master.update() pause() ce.rVal.invoke() newcol = ce.get() self.assertEqual(oldcol!=newcol,True) ce.master.update() pause() ce.master.master.destroy() def test_colorEditor_gVal(self): """tests colorEditor values by setting gVal and invoking """ self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() oldcol=ce.get() ce.gVal.setvalue(0.5) ce.master.update() pause() ce.gVal.invoke() newcol = ce.get() self.assertEqual(oldcol!=newcol,True) ce.master.update() pause() ce.master.master.destroy() def test_colorEditor_bVal(self): """tests colorEditor values by setting bVal and invoking """ self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() oldcol=ce.get() ce.bVal.setvalue(0.5) ce.master.update() pause() ce.bVal.invoke() newcol = ce.get() self.assertEqual(oldcol!=newcol,True) ce.master.update() pause() ce.master.master.destroy() def test_colorEditor_hVal(self): """tests colorEditor values by setting hVal and invoking """ self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() oldcol=ce.get() #set vVal,sVal also since they shouldn't be 0.0 and 1.0 ce.sVal.setvalue(0.32) ce.sVal.setvalue(0.32) ce.hVal.setvalue(0.32) ce.vVal.invoke() ce.sVal.invoke() ce.hVal.invoke() newcol = ce.get() self.assertEqual(oldcol!=newcol,True) ce.master.update() pause() ce.master.master.destroy() def test_colorEditor_sVal(self): """tests colorEditor values by setting sVal and invoking """ self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() oldcol=ce.get() ce.sVal.setvalue(0.5) ce.master.update() pause() ce.sVal.invoke() newcol = ce.get() self.assertEqual(oldcol!=newcol,True) ce.master.update() pause() ce.master.master.destroy() def test_colorEditor_vVal(self): """tests colorEditor values by setting vVal and invoking """ self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() oldcol=ce.get() ce.vVal.setvalue(0.5) ce.vVal.invoke() newcol = ce.get() self.assertEqual(oldcol!=newcol,True) ce.master.update() pause() ce.master.master.destroy() def test_colorEditor_hexVal(self): """tests colorEditor values by setting hexVal and invoking """ self.master = Tkinter.Toplevel() editFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') ce = ColorEditor(editFrame) ce.pack() editFrame.pack() oldcol=ce.get() ce.hexVal.setvalue("#FFFF00") ce.hexVal.invoke() newcol = ce.get() self.assertEqual(oldcol!=newcol,True) ce.master.update() pause() ce.master.master.destroy() class ColorChooserTest(unittest.TestCase): def test_colorChooser_1(self): """tests colorchooser by invoking color radio select buttons """ self.master = Tkinter.Toplevel() self.masterFrame = Tkinter.Frame(self.master,borderwidth=2,relief='ridge') self.menuBar = Pmw.MenuBar(self.masterFrame, hull_relief = 'raised', hull_borderwidth = 1) self.mainFrame = Tkinter.Frame(self.masterFrame, borderwidth=2, relief='ridge', width=150, height=200) cc = ColorChooser(self.mainFrame) cc.pack() self.mainFrame.pack() self.masterFrame.pack() pause() cc.master.update() #cc.editColor() #cc.colorChips.invoke(0) cc.master.update() pause() color = cc.ce.get() self.assertEqual(color,[1.0, 1.0, 1.0]) cc.master.master.master.destroy() if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/defaultColors.py0000644000175000017500000000045407454674466027306 0ustar debiandebiandefaultColor = {'1':(1,1,1),# white '2':(0,0,0),#black '3':(0.,0.,1.),#blue '4':(0.,1.,0.),#green '5': (1.,0.,0.,),#red '6':(0.,1.,1.),#cyan '7':(1.,0.,1.),#magenta '8':(1.,1.,0.)}#yellow mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/__init__.py0000644000175000017500000000000007300046146026174 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/thumbwheel.py0000755000175000017500000010770611462606235026636 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ######################################################################### # # Date: May 2001 Authors: Michel Sanner, Daniel Stoffler # # sanner@scripps.edu # stoffler@scripps.edu # # Copyright: Michel Sanner, Daniel Stoffler and TSRI # ######################################################################### import Tkinter import numpy.oldnumeric as Numeric import math import types import sys import os from mglutil.util.callback import CallbackManager from mglutil.util.misc import ensureFontCase from optionsPanel import OptionsPanel from KeyboardEntry import KeyboardEntry class ThumbWheel(Tkinter.Frame, KeyboardEntry): """ This class builds a thumbwheel put onto a wheelpad. constructor options: - master: the master into the thumwheel can be packed. If one is specified, the widget gets packed in a toplevel() window - height, width, orient specify the size and orientation of the widget. - wheelpad specifies the pad onto which the thumbwheel gets packed optional is a canvascfg to configure the wheelpad canvas Tkinter options. for example if the wheelpad needs a blue background: canvascfg={'bg':'blue'} - continuous: boolean. When set to True, continuous is 'on' and the callback functions will be called each time the value changes. Otherwise continuous will be 'off' and callback functions will be called on mouse release. - callback: (None, callable function or list of callable functions).to specify function to be called when the value of the thumbwheel is modified. - type: ('float', 'int' ...) string describing the type of the thumbwheel - min, max, increment, precision, oneTurn specify the parameters of the thumbwheel. - labCfg describes the label of the thumbwheel which will be packed to the left of the widget by default unless 'side' is specified. Possible keywords are text and side. - wheelLabCfg describes the label located on the wheel where the value of the thumbwheel will be displayed - showLabel Flag to specify whether to display the wheelLabel always 1, never 0, only on motion 2. - canvasCfg describe the canvas containing the thumbwheel. An option panel is available to the user to modify the thumbwheel settings by right clicking on the widget - lockMin, lockBMin, lockMax, lockBMax, lockIncrement, lockBIncrement, lockPrecision, lockShowLabel, lockValue, lockType, lockContinuous, lockOneTurn: These flags specifies whether (when set to 1) or not (when set to 0) the user will be allowed to change the setting of the thumbwheel. - reportDelta is flag to specify whether value differences should be reported rathe than absolute values The widget has a configure() method: type, min, max, increment, precision, showLabel, value, continuous, oneTurn, orient, reportDelta can be set this way. a lock() method is used to disable the various gui components of the options panel. Usage: .configure(=) components see configure(). value is 0 or 1. 1 disables,0 enables. """ #FIXME: this would be the mechanism to remove all arguments from the # init (see DejaVu) # keywords = [ # 'master', # 'oneTurn', # ] def __init__(self, master=None, labCfg={'fg':'black','side':'left', 'text':None}, wheelLabCfg={}, canvasCfg={}, callback=None, type='float', min=None, max=None, increment=0.0, precision=2, showLabel=1, value=0.0, continuous=True, width=200, height=40, oneTurn=10., wheelPad=6, lockMin=0, lockBMin=0, lockMax=0,lockBMax=0, lockIncrement=0, lockBIncrement=0, lockPrecision=0, lockShowLabel=0, lockValue=0, lockType=0, lockContinuous=0, lockOneTurn=0, orient=None, reportDelta=0, **kw): # See FIXME init # if __debug__: # checkkeywords(kw) Tkinter.Frame.__init__(self, master) Tkinter.Pack.config(self, side='left', anchor='w') #FIXME: nblines are not dynamically computed self.nblines = 30 self.callback = None self.callbacks = CallbackManager() # object to manage callback # functions. They get called with the # current value as an argument self.width = 200 self.height = 40 self.setWidth(width) self.setHeight(height) # set widget orientation: either horizontal or vertical self.setOrient(orient) # initialize various attributes with default values self.precision = 2 # decimal places self.min = None # minimum value self.max = None # maximum value self.increment = increment # value increment self.minOld = 0. # used to store old values self.maxOld = 0. self.incrementOld = increment self.size = 50 # defines widget size self.offsetValue = 0. # used to set increment correctly self.lab = None # label self.opPanel = None # option panel widget self.oneTurn = 360. # value increment for 1 full turn self.value = 0.0 # current value of widget self.oldValue = 0.0 # old value of widget self.showLabel = 1 # turn on to display label on self.continuous = True # set to 1 to call callbacks at # each value change, else gets called # on button release event self.angle = 0. # angle corresponding to value self.labCfg = labCfg # Tkinter Label options self.labelFont = ( ensureFontCase('helvetica'), 14, 'bold') # label font self.labelColor = 'yellow' # label color self.canvas = None # the canvas to create the widget in self.usedArcColor = '#aaaaaa' # filled arc color of used portion self.unusedArcColor = '#cccccc' # filled arc color of unused portion self.pyOver180 = math.pi/180.0 # constants used in various places self.threeSixtyOver1turn = 1 self.piOver1turn = math.pi/360. self.wheelLabCfg = wheelLabCfg # Tkinter wheel label options self.canvasCfg = canvasCfg # Tkinter Canvas options self.wheelPad = wheelPad # pad between wheel and widget borders self.deltaVal = 0. # delta with value at last callback self.valueLabel = None # Tkinter Label self.setType(type) # can be float or int self.discreteValue = 0. # value in discrete space self.lockMin = lockMin # lock variables in configure() self.lockMax = lockMax # to lock/unlock entries in options # panel self.lockMin = lockMin # lock vars are used in self.lock() self.lockMax = lockMax # to lock/unlock entries in optionpanel self.lockIncrement = lockIncrement self.lockBMin = lockBMin self.lockBMax = lockBMax self.lockBIncrement = lockBIncrement self.lockPrecision = lockPrecision self.lockShowLabel = lockShowLabel self.lockValue = lockValue self.lockType = lockType self.lockContinuous = lockContinuous self.lockOneTurn = lockOneTurn self.reportDelta = reportDelta self.setLabel(self.labCfg) self.createCanvas(master, wheelPad=wheelPad) self.canvas.bind("", self.mouseDown) self.canvas.bind("", self.mouseUp) self.canvas.bind("", self.mouseMove) self.canvas.bind("", self.toggleOptPanel) self.valueLabel.bind("", self.mouseDown) self.valueLabel.bind("", self.mouseUp) self.valueLabel.bind("", self.mouseMove) self.valueLabel.bind("", self.toggleOptPanel) if os.name == 'nt': #sys.platform == 'win32': self.canvas.bind("", self.mouseWheel) self.valueLabel.bind("", self.mouseWheel) else: self.canvas.bind("", self.mouseWheel) self.valueLabel.bind("", self.mouseWheel) self.canvas.bind("", self.mouseWheel) self.valueLabel.bind("", self.mouseWheel) self.bind("", self.toggleOptPanel) KeyboardEntry.__init__(self, (self, self.canvas, self.valueLabel), self.setFromEntry) self.opPanel = OptionsPanel(master = self, title="Thumbwheel Options") # now set the constructor options correctly using the configure method self.setValue(value) apply( self.configure, (), {'type':type, 'min':min, 'max':max, 'increment':increment, 'precision':precision, 'showLabel':showLabel, 'continuous':continuous, 'oneTurn':oneTurn, 'lockType':lockType, 'lockMin':lockMin, 'lockBMin':lockBMin, 'lockMax':lockMax, 'lockBMax':lockBMax, 'lockIncrement':lockIncrement, 'lockBIncrement':lockBIncrement, 'lockPrecision':lockPrecision, 'lockShowLabel':lockShowLabel, 'lockValue':lockValue, 'lockContinuous':lockContinuous, 'lockOneTurn':lockOneTurn, 'orient':orient, 'reportDelta':reportDelta, 'callback':callback }) def setFromEntry(self, valueString): try: self.set(self.type(valueString), force=1) except ValueError: # fixme we would like to pop this up in a window maybe import traceback traceback.print_stack() traceback.print_exc() def handleKeyStroke(self, event): # handle key strokes for numbers only in widget keyboard entry label key = event.keysym if key.isdigit() or key=='period' or key=='minus' or key=='plus': if key == 'period': key = '.' elif key == 'minus': key = '-' elif key == 'plus': key = '+' self.typedValue += key self.typedValueTK.configure(text=self.typedValue) else: KeyboardEntry.handleKeyStroke(self, event) def setWidth(self, width): assert isinstance(width, types.IntType),\ "Illegal width: expected %s, got %s"%(type(1),type(width)) assert width > 0,"Illegal width: must be > 0, got %s"%width self.width = width def setHeight(self, height): assert isinstance(height, types.IntType),\ "Illegal height: expected %s, got %s"%(type(1),type(height)) assert height > 0,"Illegal height: must be > 0, got %s"%height self.height = height def setCallbacks(self, cb): """Set widget callback. Must be callable function. Callback is called every time the widget value is set/modified""" assert cb is None or callable(cb) or type(cb) is types.ListType,\ "Illegal callback: must be either None or callable. Got %s"%cb if cb is None: return elif type(cb) is types.ListType: for func in cb: assert callable(func), "Illegal callback must be callable. Got %s"%func self.callbacks.AddCallback(func) else: self.callbacks.AddCallback(cb) self.callback = cb def toggleOptPanel(self, event=None): if self.opPanel.flag: self.opPanel.Dismiss_cb() else: if not hasattr(self.opPanel, 'optionsForm'): self.opPanel.displayPanel(create=1) else: self.opPanel.displayPanel(create=0) def mouseDown(self, event): # remember where the mouse went down if self.orient=='horizontal': self.lastx = event.x else: self.lastx = event.y def mouseUp(self, event): # call callbacks if not in continuous mode newVal = self.get() if self.oldValue != newVal: if not self.continuous: self.oldValue = newVal self.callbacks.CallCallbacks(newVal) if self.showLabel == 2: # no widget labels on mouse release self.valueLabel.place_forget() def mouseMove(self, event): if self.orient=='horizontal': dx = event.x - self.lastx self.lastx = event.x else: dx = event.y - self.lastx self.lasty = event.y dang = dx * math.pi / 180. val = dang*self.oneTurnOver2pi self.computeNewValue(val) def mouseWheel(self, event): #print "mouseWheel", event, event.num if os.name == 'nt': #sys.platform == 'win32': if event.delta > 0: lEventNum = 4 else: lEventNum = 5 else: lEventNum = event.num if lEventNum == 4: self.computeNewValue(self.oneTurn/10) else: self.computeNewValue(-self.oneTurn/10) def get(self): if self.reportDelta: return self.type(self.deltaVal) else: return self.type(self.value) def printLabel(self): if not self.showLabel in [1,2]: return hl = self.valueLabel.winfo_reqheight() wl = self.valueLabel.winfo_reqwidth() h = self.canvas.winfo_reqheight() w = self.canvas.winfo_reqwidth() self.valueLabel.place(in_=self.canvas, x=(w-wl)*.5, y=((h-hl)*0.5)- self.height/4) self.valueLabel.configure(text=self.labelFormat%self.value) def set(self, val, update=1, force=0): # if force is set to 1, we call this method regardless of the # widget configuration. This is for example the case if the thumwheel # is set to continuous=0, but the value is set in the options panel if self.min is not None and val <= self.min: val = self.min elif self.max is not None and val >= self.max: val = self.max oldval = self.value self.value = val self.deltaVal = self.value - oldval newVal = self.get() if update and self.continuous or force: if self.oldValue != self.value or force: self.oldValue = newVal self.callbacks.CallCallbacks(newVal) if self.showLabel==2: self.printLabel() if self.showLabel==1: self.printLabel() if self.opPanel: self.opPanel.valInput.set(self.labelFormat%self.value) #FIXME: this could be renamed increment (to parallel the set method) # some code in this method is duplicated in set method def computeNewValue(self, val): # snap to closest increment oldval = self.value if self.increment is not None and self.increment != 0.: self.discreteValue = self.discreteValue + val if self.discreteValue>=self.increment: self.value = self.value+self.increment self.discreteValue=0. elif -self.discreteValue>=self.increment: self.value = self.value-self.increment self.discreteValue=0. else: self.value = self.value + val if self.min is not None and self.value <= self.min: self.value = self.min val = 0 elif self.max is not None and self.value >= self.max: self.value = self.max val = 0 self.deltaVal = self.value - oldval # self.angle is used in drawLines() self.angle = val/self.oneTurnOver2pi self.drawLines() if self.showLabel>0: # ALWAYS self.printLabel() if self.opPanel: self.opPanel.valInput.set(self.labelFormat%self.value) newVal = self.get() if self.oldValue != newVal and not self.reportDelta: # this part is called either when the value is float OR when # continuous is off if self.continuous: self.oldValue = newVal self.callbacks.CallCallbacks(newVal) else: pass else: # this part is usually called when the datatype is INT AND # continuous is on if self.oldValue != newVal: # only call this part when we "reach" a new value self.oldValue = newVal self.callbacks.CallCallbacks(newVal) else: # else we need nothing to do pass def createCanvas(self, master, wheelPad=6): bw = self.borderWidth = wheelPad # distance between wheel and raise cd={'width':self.width+bw, 'height':self.height+bw, 'relief':'raised', 'borderwidth':3} for k, w in self.canvasCfg.items(): cd[k] = w self.canvas = Tkinter.Canvas(self, cd) cbdw = int(self.canvas.cget('borderwidth')) bd = self.borderWidth + cbdw + 1 # +1 for pixel0 that is not drawn height = self.height-bw width = self.width-bw cp = self.canvas.create_polygon self.outline1 = cp( bd, bd, bd, height+cbdw, width+cbdw, height+cbdw, width+cbdw, bd, bd, bd, width=1, outline='gray60', fill='gray85') ul = bd+1 # upper left pixel l = (width+cbdw-1) - (bd+1) # length of the inner box cl25 = 2.*l/25. cl = self.canvas.create_line self.outline2 = cl( ul+int(cl25), ul, ul, ul, ul, height+cbdw-1, ul+int(cl25), height+cbdw-1, width=1, fill='gray20') self.outline3 = cl( ul+int(cl25), ul, ul+int(3*cl25), ul, width=1, fill='gray60') self.outline4 = cl( ul+int(cl25), height+cbdw-1, ul+int(3*cl25), height+cbdw-1, width=1, fill='gray60') self.outline5 = cl( ul+int(5*cl25), ul, ul+int(7.5*cl25), ul, width=1, fill='white') self.outline4 = cl( ul+int(5*cl25), height+cbdw-1, ul+int(7.5*cl25), height+cbdw-1, width=1, fill='white') self.outline6 = cl( ul+int(9.5*cl25), ul, ul+int(11.5*cl25), ul, width=1, fill='gray60') self.outline7 = cl( ul+int(9.5*cl25), height+cbdw-1, ul+int(11.5*cl25), height+cbdw-1, width=1, fill='gray60') re = ul+l self.outline8 = cl( ul+int(11.5*cl25), ul, re, ul, re, height+cbdw-1, ul+int(11.5*cl25), height+cbdw-1, width=1, fill='gray20') # corners of the box where the lines have to be drawn self.innerbox = (ul+1, ul+1, re-1, height+cbdw-1) self.circlePtsAngles = [] inc = 2*math.pi/float(self.nblines) for i in range(self.nblines): self.circlePtsAngles.append( i*inc ) self.circlePtsAngles = Numeric.array(self.circlePtsAngles, 'f') self.linesIds = [] self.shLinesIds = [] # this table should depend on the number of lines # currently it is of length 15 (self.nblines/2) # It should be resized automatically to self.nblines/2 self.shadowLinesOptions = [ ( 0, 'black', 1), # offset, color, width ( 2, 'gray30', 1), ( 2, 'gray30', 1), ( 0, 'gray30', 1), (-1, 'white', 1), (-1, 'white', 1), (-1, 'white', 2), (-1, 'white', 2), (-1, 'white', 2), (-1, 'white', 2), (-1, 'white', 1), (-1, 'white', 1), ( 0, 'gray30', 1), (-2, 'gray30', 1), (-2, 'gray30', 1), ( 0, 'black', 1), # offset, color, width ( 0, 'black', 1), # offset, color, width ] for i in range(self.nblines): self.linesIds.append(cl(0,0,0,0,width=1, fill='black')) self.shLinesIds.append(cl(0,0,0,0)) wlabCfg = {'padx':0,'pady':0} wlabCfg.update(self.wheelLabCfg) self.valueLabel = apply( Tkinter.Label, (self.master,), wlabCfg) self.drawLines() self.canvas.pack(side=Tkinter.LEFT) self.toggleWidgetLabel(self.showLabel) def drawLines(self): # angle has to be provided in radians angle = self.angle self.circlePtsAngles = self.circlePtsAngles+angle self.circlePtsAngles = Numeric.remainder(self.circlePtsAngles, 2*math.pi) xcoords = Numeric.cos(self.circlePtsAngles) xsin = Numeric.sin(self.circlePtsAngles) if self.orient=='horizontal': w = self.innerbox[2] - self.innerbox[0] r = w/2 c = self.innerbox[0] + r y1 = self.innerbox[1] y2 = self.innerbox[3] else: w = self.innerbox[3] - self.innerbox[1] r = w/2 c = self.innerbox[1] + r y1 = self.innerbox[0] y2 = self.innerbox[2] cl = self.canvas.create_line setCoords = self.canvas.coords setOpt = self.canvas.itemconfigure pi2 = math.pi/2. drawLines = 0 co = Numeric.take(xcoords, Numeric.nonzero(Numeric.greater_equal(xsin, 0.0))) co = Numeric.sort(co) co = [-1]+list(co) for i in range(len(co)): x = c - int(co[i]*r) if self.orient=='horizontal': setCoords(self.linesIds[i], x, y1, x, y2) else: setCoords(self.linesIds[i], y1, x, y2, x) shopt = self.shadowLinesOptions[i] x = x + shopt[0] if self.orient=='horizontal': setCoords(self.shLinesIds[i], x, y1, x, y2) else: setCoords(self.shLinesIds[i], y1, x, y2, x) setOpt(self.shLinesIds[i], fill = shopt[1], width=shopt[2]) def toggleWidgetLabel(self, val): if val == 0: # no widget labels self.showLabel=0 self.valueLabel.place_forget() if val == 1: # show always widget labels self.showLabel=1 self.printLabel() if val == 2: # show widget labels only when mouse moves self.showLabel=2 self.valueLabel.place_forget() def setValue(self, val): assert type(val) in [types.IntType, types.FloatType],\ "Illegal type for value: expected %s or %s, got %s"%( type(1), type(1.0), type(val) ) # setValue does NOT call a callback! if self.min is not None and val < self.min: val = self.min if self.max is not None and val > self.max: val = self.max self.value = self.type(val) self.oldValue = self.value self.offsetValue=self.value if self.showLabel == 1: self.printLabel() ##################################################################### # the 'configure' methods: ##################################################################### def configure(self, **kw): if 'type' in kw.keys(): # make sure type is set first self.setType(kw['type']) del kw['type'] for key,value in kw.items(): # the 'set' parameter callbacks if key=='labCfg': self.setLabel(value) elif key=='callback': self.setCallbacks(value) elif key=='wheelLabCfg': self.wheelLablCfg.update(value) self.printLabel() elif key=='min': self.setMin(value) elif key=='max': self.setMax(value) elif key=='increment': self.setIncrement(value) elif key=='precision': self.setPrecision(value) elif key=='showLabel': self.setShowLabel(value) elif key=='continuous': self.setContinuous(value) elif key=='oneTurn': self.setOneTurn(value) elif key=='orient': self.setOrient(value) elif key=='reportDelta': self.setReportDelta(value) # the 'lock' entries callbacks elif key=='lockType': self.lockTypeCB(value) elif key=='lockMin': self.lockMinCB(value) elif key=='lockBMin': self.lockBMinCB(value) elif key=='lockMax': self.lockMaxCB(value) elif key=='lockBMax': self.lockBMaxCB(value) elif key=='lockIncrement': self.lockIncrementCB(value) elif key=='lockBIncrement': self.lockBIncrementCB(value) elif key=='lockPrecision': self.lockPrecisionCB(value) elif key=='lockShowLabel': self.lockShowLabelCB(value) elif key=='lockValue': self.lockValueCB(value) elif key=='lockContinuous': self.lockContinuousCB(value) elif key=='lockOneTurn': self.lockOneTurnCB(value) def setLabel(self, labCfg): self.labCfg = labCfg text = labCfg.get('text', None) if text is None or text=='': return d={} for k, w in self.labCfg.items(): if k == 'side': continue else: d[k] = w if not 'side' in self.labCfg.keys(): self.labCfg['side'] = 'left' if not self.lab: self.lab = Tkinter.Label(self, d) self.lab.pack(side=self.labCfg['side']) self.lab.bind("", self.toggleOptPanel) else: self.lab.configure(text) def setType(self, Type): assert type(Type) in [types.StringType, types.TypeType],\ "Illegal type for datatype. Expected %s or %s, got %s"%( type('a'), type(type), type(Type) ) if type(Type) == type(""): # type str assert Type in ('int','float'),\ "Illegal type descriptor. Expected 'int' or 'float', got '%s'"%Type self.type = eval(Type) else: self.type = Type if self.type == int: self.labelFormat = "%d" self.int_value = self.value else: self.labelFormat = "%."+str(self.precision)+"f" if hasattr(self.opPanel, 'optionsForm'): w = self.opPanel.idf.entryByName['togIntFloat']['widget'] if self.type == int: w.setvalue('int') elif self.type == 'float': w.setvalue('float') if self.opPanel: self.opPanel.updateDisplay() if self.valueLabel and self.showLabel == 1: self.printLabel() def setMin(self, min): if min is not None: assert type(min) in [types.IntType, types.FloatType],\ "Illegal type for minimum. Expected type %s or %s, got %s"%( type(0), type(0.0), type(min) ) if self.max and min > self.max: min = self.max self.min = self.type(min) if self.showLabel == 1: self.printLabel() if self.value < self.min: self.set(self.min) if hasattr(self.opPanel, 'optionsForm'): self.opPanel.minInput.set(self.labelFormat%self.min) self.opPanel.toggleMin.set(1) self.opPanel.min_entry.configure(state='normal', fg='gray0') self.minOld = self.min else: self.min = None if hasattr(self.opPanel, 'optionsForm'): self.opPanel.toggleMin.set(0) self.opPanel.min_entry.configure(state='disabled', fg='gray40') def setMax(self, max): if max is not None: assert type(max) in [types.IntType, types.FloatType],\ "Illegal type for maximum. Expected type %s or %s, got %s"%( type(0), type(0.0), type(max) ) if self.min and max < self.min: max = self.min self.max = self.type(max) if self.showLabel == 1: self.printLabel() if self.value > self.max: self.set(self.max) if hasattr(self.opPanel, 'optionsForm'): self.opPanel.maxInput.set(self.labelFormat%self.max) self.opPanel.toggleMax.set(1) self.opPanel.max_entry.configure(state='normal', fg='gray0') self.maxOld = self.max else: self.max = None if hasattr(self.opPanel, 'optionsForm'): self.opPanel.toggleMax.set(0) self.opPanel.max_entry.configure(state='disabled', fg='gray40') def setIncrement(self, incr): if incr is not None: assert type(incr) in [types.IntType, types.FloatType],\ "Illegal type for increment. Expected type %s or %s, got %s"%( type(0), type(0.0), type(incr) ) self.increment = self.type(incr) self.offsetValue = self.value self.incrementOld = self.increment if hasattr(self.opPanel, 'optionsForm'): self.opPanel.incrInput.set(self.labelFormat%self.increment) self.opPanel.toggleIncr.set(1) self.opPanel.incr_entry.configure(state='normal', fg='gray0') else: self.increment = None if hasattr(self.opPanel, 'optionsForm'): self.opPanel.toggleIncr.set(0) self.opPanel.incr_entry.configure(state='disabled', fg='gray40') def setPrecision(self, val): assert type(val) in [types.IntType, types.FloatType],\ "Illegal type for precision. Expected type %s or %s, got %s"%( type(0), type(0.0), type(val) ) val = int(val) if val > 10: val = 10 if val < 1: val = 1 self.precision = val if self.type == float: self.labelFormat = "%."+str(self.precision)+"f" else: self.labelFormat = "%d" if hasattr(self.opPanel, 'optionsForm'): w = self.opPanel.idf.entryByName['selPrec']['widget'] w.setvalue(val) if self.opPanel: self.opPanel.updateDisplay() # and update the printed label if self.canvas and self.showLabel == 1: self.printLabel() def setContinuous(self, cont): """ cont can be None, 0 or 1 """ assert cont in [True, False, 0, 1],\ "Illegal value for continuous: expecting a boolean True, False, got %s"%cont self.continuous = cont if hasattr(self.opPanel, 'optionsForm'): w=self.opPanel.idf.entryByName['togCont']['widget'] if cont: w.setvalue('on') else: w.setvalue('off') def setShowLabel(self, val): """Show label can be 0, 1 or 2 0: no label 1: show label only when value changes 2: label is always shown""" assert val in [0,1,2],\ "Illegal value for showLabel. Expected 0, 1 or 2, got %s"%val if val != 0 and val != 1 and val != 2: print "Illegal value. Must be 0, 1 or 2" return self.showLabel = val self.toggleWidgetLabel(val) if hasattr(self.opPanel, 'optionsForm'): w = self.opPanel.idf.entryByName['togLabel']['widget'] if self.showLabel == 0: label = 'never' elif self.showLabel == 1: label = 'always' elif self.showLabel == 2: label = 'move' w.setvalue(label) if self.opPanel: self.opPanel.updateDisplay() def setOneTurn(self, oneTurn): assert type(oneTurn) in [types.IntType, types.FloatType],\ "Illegal type for oneTurn. Expected %s or %s, got %s"%( type(0), type(0.0), type(oneTurn) ) self.oneTurn = oneTurn self.threeSixtyOver1turn = 360./oneTurn self.piOver1turn = math.pi/oneTurn self.oneTurnOver2pi = oneTurn / (2*math.pi) if self.opPanel: self.opPanel.updateDisplay() def setOrient(self, orient): if orient is None: if self.width > self.height: orient='horizontal' else: orient = 'vertical' assert orient in ['horizontal', 'vertical'],\ "Expected 'vertical' or 'horizontal', got '%s'"%orient self.orient = orient def setReportDelta(self, rD): assert rD in [None, 0, 1],\ "Expected None, 0 or 1, got %s"%rD if rD is None or rD == 0: self.reportDelta = 0 else: self.reportDelta = 1 ##################################################################### # the 'lock' methods: ##################################################################### def lockTypeCB(self, mode): if mode != 0: mode = 1 self.lockType = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockMinCB(self, mode): #min entry field if mode != 0: mode = 1 self.lockMin = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockBMinCB(self, mode): # min checkbutton if mode != 0: mode = 1 self.lockBMin = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockMaxCB(self, mode): # max entry field if mode != 0: mode = 1 self.lockMax = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockBMaxCB(self, mode): # max checkbutton if mode != 0: mode = 1 self.lockBMax = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockIncrementCB(self, mode): # increment entry field if mode != 0: mode = 1 self.lockIncrement = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockBIncrementCB(self, mode): # increment checkbutton if mode != 0: mode = 1 self.lockBIncrement = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockPrecisionCB(self, mode): if mode != 0: mode = 1 self.lockPrecision = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockShowLabelCB(self, mode): if mode != 0: mode = 1 self.lockShowLabel = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockValueCB(self, mode): if mode != 0: mode = 1 self.lockValue = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockContinuousCB(self, mode): if mode != 0: mode = 1 self.lockContinuous = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockOneTurnCB(self, mode): if mode != 0: mode = 1 self.lockOneTurn = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() if __name__ == '__main__': def foo(val): print val tw = ThumbWheel(width=100, height=20, labCfg={'text':'X:'}, # tw = ThumbWheel(width=20, height=100, labCfg={'text':'X:'}, # orient='vertical', wheelPad=2, type=float, min=10) tw.configure(showLabel=1) tw.callbacks.AddCallback(foo) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/0000755000175000017500000000000012146210076026137 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/TV_sample.py0000644000175000017500000000325707763505213030423 0ustar debiandebianfrom TreeWidget.tree import TreeView if __name__ == '__main__': tv = TreeView() # addNode(nodename, parentname = None) tv.addNode('protein_1') tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') tv.addNode('H', parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') tv.addNode('protein_3') tv.addNode('residue_21', parent='protein_2') tv.addNode('residue_25', parent='protein_2') tv.addNode('basdfe', parent='protein_2|residue_21') tv.addNode('AminoAcid', parent='protein_2|residue_21') tv.addNode('etc', parent='protein_1|residue_11') tv.addNode('color', parent='protein_1|residue_11|etc') tv.addNode('density', parent='protein_1|residue_11|etc') tv.addNode('residue_12',parent='protein_1') for a in range(1): name = 'AA' + str(a) tv.addNode(name, parent='protein_1|residue_11|AminoAcid') tv.addNode('2', parent='protein_2|residue_21') tv.addNode('3', parent='protein_2|residue_21') tv.addNode('4', parent='protein_2|residue_21') tv.addNode('L', parent='protein_2|residue_21|AminoAcid') tv.addNode('S', parent='protein_2|residue_21|AminoAcid') for a in range(10): name = 'A' + str(a) tv.addNode(name, parent='protein_2|residue_21|AminoAcid') tv.addNode('protein_4') tv.addNode('residue_22', parent='protein_2') ## to delete a node: # tv.deleteNode(nodename, parentname) # e.g. >>> tv.deleteNode('residue_21', 'protein_2') # e.g. >>> tv.deleteNode('protein_2') mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/RELNOTES0000644000175000017500000001375610112737246027335 0ustar debiandebianTreeView Widget Release Notes ============================ Release September, 2004 What's New - displayValueInTree() to hide/show value of tree objects - The tree node and all the sub tree can be moved under another parent node (newParent) using moveNode(node, newParent) - removed all unused canvasIDs - draw_new_root() is moved from class Node to class TreeView - added expandAllNodes() and collapseAllNodes() to tree - add the new method addNodeSet to add a batch of children node to parent node - treat empty list/dictionary as leaf node (coz they are not expandable) - moved drawing of the parent node above call to first expand in Expand method this speeds things up because we do not destroy the parent and all the children, but as a side effect the parent might be missing the + icon beacuse it has not children when it is drawn - commented out the checking of unique name for children, which is very expensive while children list is long - changed TreeView to use Pmw.ScrolledCanvas. This allows to automatically shown/hide the scrollbars - tried drawing + and - icons rather than using PhotoImage but not much faster - chande pickNode of Tree to set self.selected to True rather than not selected - removed folder drawing to speed up - removed ballons and replaced by right click - split text labels into 2 labels to get alignment right - added right click on label to print full label - modified addNode method to test if object is hash-able - ballooms added to nodes, but disabled because of the high cost - fixed bugs. now using object as key in objToNode{}, if object is not an instance, use an ingeter as key. - added method addFirstExpandCallback() to specify a callback - added some tests for setting self.firstExpand_cb correctly - new warning messages now use warnings.warn - add hasChildren to Node class to save time for adding all children (children nodes only added when + icon first clicked) - add firstExpand_cb call back function to add children - mousebinding can be specified for a node when it is added to tree. - add deleteAllChildren() to tree class to delete properly all the children of a node - added a way to specify differrent mouse binding functions to a node: see mouseBinding dictionnary pass when a node is created., The mouseBinding dictionnary is updated with the new value. As now It pass when the Tree is created. example: value = { '':func}, tv= TreeView(mouseBinding= value) - added 'nohistory', if set to True allow to not create the history frame in the TreeView gui, default is False example: tv = TreeView(nohistory=True) - added 'obj2Node', if set to False, there is no one on one relation between an object and a node. TreeView.objToNode dictionnary is not populated. It was create to allow associate one object with different node Default is True - add 2 methods to copy the root of the tree to another tree. The methods are 'copy' and 'copyNode'. User must specify the newTree where the root of the tree should be copied. - display the selected node when program starts Bug Fixes - Not Available (please report bugs to yongzhao@scripps.edu ) Backwards compatible Changes (renaming of methods, attributes) - Not Available Backwards INCOMPATIBLE Changes - Not Available Suggested Fix for users: In case of some nodes not properly shown in the TreeView, try to collapse the TreeView and then expand it. (Refresh the TreeView) ========================= Release December 17, 2003 ------------------------- What's New (compared to release Sep 18, 2003) - New added widget, as a replacement of the list representation of objects in DejaVu. - The objects are organized as a tree-like structure based on the hierarchical relationship among the objects. e.g. In Pmv, each molecule can be displayed as lines, CPK, Sticks and Balls, MSMS etc. In the TreeView, the name of the molecule is shown as parent node, while different geometry objects are shown as children nodes of the molecule - The TreeView can expand or collapse the children nodes of a given parent node. By clicking the "+" or "-" icon to the left of the parent node, the subtree can be expanded or collapsed. Double click the folder icon between +/- icon and name of the parent can also toggle the expand / collapse. - Single click on the NAME of any node in the tree can make that specific node be the current object in Pmv. Any further operation will be applied to the selected object. The current selected object is highlighted by a yellow box in the TreeView. For now, only one object can be selected as current object. - There is history list recording all the last 10 (by default) object selected. The History List can be visible by changing the size of TreeView pane. Please be noticed that there is a small handel in the top-left of TreeView, which is used to resize the TreeView and History List. - Any object can be added to the History List by double clicking on the name of the node. - The items in the History List can be locked (saved) by clicking the checkbox to the left of the history item. - The History List is a First In First Out (FIFO) list. When the list is full, ( by default, length of the list is 10 ), the first unsaved item will be removed and the new item will be appended to the end of the list. - Double click on any item in the History List will set that object to be the current object, the corresponding node in the TreeView will be selected, highlighted and put within the visible region of users Bug Fixes - Not Available ( The TreeView is a new released feature) Backwards compatible Changes (renaming of methods, attributes) - Not Available ( The TreeView is a new released feature) Backwards INCOMPATIBLE Changes - Not Available ( The TreeView is a new released feature) Suggested Fix for users: In case of some nodes not properly shown in the TreeView, try to collapse the TreeView and then expand it. (Refresh the TreeView) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/icons/0000755000175000017500000000000012146210076027252 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/icons/plusnode.gif0000644000175000017500000000011707763505213031602 0ustar debiandebianGIF89a ‘ÿÿÿÿÀÀÀ!ù, @ œÀ ¡šhp,Çê3§¯â(FL÷Dº¦–D…ä8;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/icons/pinDown.gif0000644000175000017500000000076607763505213031401 0ustar debiandebian à( Œ  ææææææææææææææææææææææææææææææææææææææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€€€ææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææææææææææææææææææææææææææææææææææææææÿÿÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿÿÿÿÿmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/icons/logo.gif0000644000175000017500000002055607763505213030722 0ustar debiandebianGIF89an÷÷÷÷ÿûÿçççÖÓÖïëïÎËέÞÛÞE­Iµ4„<”Ƶ²µ÷ó÷Œƾ½½º½MÆçãçïïïÆÃÆ÷óï½¾½ÆÇÆQÎÏÎ$c!YÖÖ$Ö×ÖQΜžœïºÞßÞeÖ®c–ï1eÖJ}ç<¥µ¶µœšœs¢ïÞßç9qÞk }ÿϽ¶½­¦­¥¢¥çI1)Qµÿuc½–ZŠï¥¦¥Eµ­ª­Æž­®­÷iRçm˜›¥+bÚ›™—›¶ò‘¬æš›ŸÑÝó÷ë÷……‹¸µ°.aóôöÿÿÿ,nÿÿ H° Áƒ*\Ȱ¡Ã‡#JœH±¢Å‹3jÜȱ£Ç CŠI²¤É“(Sª\ɲ¥Ë—0cÊœI³¦Í›8sêÜɳ§ÏŸ@ƒ J´¨Ñ£Hƒb)Ä´-Dˆ|›ú QR†sŒ]13¥Š×*SÌ\1–éªY†X´yª¶O¨$/^Œ0Çé¬ÁLfŒ(2ÁAB‚¿:ÿ•ÀÁĉUtQ°{ÖY4FAºtéÁR(¬ˆÑ¦ÍŒb©V-šíjN‰D¹œ¡ ,ÀFzeÅ } X°  !8þÀ!ÔD9 #G¾º…›I±‘bÿÒ-*ž=r3 +P@Ã8½R¢ßÌ e‘h€œÿ¨¡•H’!Ê ¶jÄ¢KxC`©Tƒo0‚z)Ä€ðÉ7”ÆÙ‡ßYˆr€r X0^ #Œ/–‘Eu¨q÷AvŠl!PÀÂZ@†Þ†êõÐ@GT&UàpB ø) " €AŒtéå— „™‚ f§š_( `Èp?ê$ ©Tv^z¸"Ã’"P "P$Ji RI‹2vƒ—/b è¢0¦f*’æ`~)§€MÐæN8@…áv¦0|C™Q‚”,°ÁÆÿ f‡´7@€+Š Â àâaZ‘E™ °€lÇlnjÓf"ĨH– âž>}V_ È‚¡AJ*yîéܧÂY€®ôªŽÞQC`Æ"»Á °à¤³9a"-µdžzUE Û"{ ÜÙ@ø'@p ÇÙÅœyú›À«B ËÙ;Hã6i¿8ù;m(t ÁÂ¥í ܾz 9XÑ@­ïŒñB ÉñÍMˆ  ;\p*l`‹²KüË2’.çùóN3×ÜE9 ½óÀ5ûPÐYFPô½*¤ô©˜Ñ,àÃfD F„Tá}4Ã^Æ$ŸñÄ‘ð †0„t`?$ ha„!†‚F:20ˆ$ ~á m|¤ ~¸Â6ÉÉ®|ŃŒƒ(c FäP¹b²¨CƒÔ" A$ 0ÈZrQb`ðÿÀ&pcx°>€ ¡ §î„[Øc`€"<ášEø#-ið> ‘ÙÆ!`ðà7°…:y@42’DÆ)2’‰+Ððø<ÆÿO)Ù§/hB ;þ•DP%+R üÀ (‚DµYˇ íãÃþ1¤!æAòBÃ?!K„2¨ŸÅnbŠ0H³ššHÄ'ˆ¡E$BOЦ,ÐM4"Ðgx „l°"jÐ'‚Á [´ó‘åô…ò bÌãdG;†Ùg 4ç§ä„lt æJªJ¼P‹1E4‡ ÑK!6%/r:Ë>2àà,#0ÛŇ€8È­ÇcÝ+guìáK`áƒP¡^ ÃÚ€ˆGðê ˜½@ ²ùG»2€ â È2†Ü ¯ÈÓ$†4€[¬`ç#ÛyŒyÿFdU°*þ F0"(L òi @‚YHî•&4ø ‡¬¼Ye–¦Æ:¶_H"(;$Nœ¡—ài§É€'à |ÈA0 ¸ Ì ð qª´.܉}:‰Dh@|ámè•þ¶ô¢y¢<…("º‰Ü‚ ¥u-Ô@³§À3z…SÝYNsÚB !‘}vûu`Ä+$c¾TJ-jmþ46û¡"•Ñ5+uâˆýö7@Ç.L#Q"Áä5Àò:•þ#0È ë“€K½jmpòLò„þ~aE¦1|à+Øh0òà“‚ÿWaN£º”ƒ ·ÓœçqCès‚?ÑaBîp.ðì\µ^tÖ¡ÆU4úìÆ ÍñtÑ*Gø ËòâŒaYñÉÔ4À%b&3¬à€€BÖH¸œp™ ^€B£¹1ÈWƒ€'ÌëPài3 ¤ ÓÚV·þÕ+Øygœ3zV}pЂÝjØs ˜z)`n´jOž i!uŒwÿnç9•@ gJYsq|YÉõîx÷ W-Ö±P Ø*l"*÷¹ÑjŠ‚á ÿ–ÈÍÅ.“õ¾·0U†TáÔÇùwÀh“†Úàè`Þ9W>AÛ ÂÛk4? `«w80Ô2JdµBc6­ q‰ÌªsÇR˜7™´W±«±\±I®!à˜ë­àZ±AF÷ÝÚ€9ÀŸ0®–ê˜Z7& _Áÿ³mÙ®T'1)ŸÇB>Ê©GÉb_Üó—þªè&°#ûvê·|ù£(Pí‘yC¨‘£;¨ÇÒ—$2%ЩO[ŃH†ò +²x‡H³?ªAzi*©½H/K®J`—Kвö ³C%9{·Òp‰©Áµ  M¢X¥@m5“=ÌÄ,{’´«ÔŽÆÈ´m{ol ƒ£+›¦(¶’z5ûº«†Ð¸!b-†&0\%JÆah Q-){” (pK[0°uËŠ9ƒ7;œ$©¿+™0N8ÛŒàX •‡„ö‹nØ£83Еgi¦°ê„ÿнúµ_¼;‘ßê½r+ šgB-€ºõ´ÊưFÈ5¿5  §ö>(™2!zb¨Žº¤ X¢„Á´Ã›¨ˆ œŠ¥uðµ¾é¼,h—Ð ƒÀmÝÆ†@ä{S3ƒ 6 z˜ßû¯‹¹|”wXÁÃ.{ªo1މkyÇÂýé™P ŒP o€Ygo¶âû$%Òé*]Ð"4.ÅM0|o_0¨áÀZ©= žVмjÅÁÉ ­ ½‚a(àµ`XUBƒ°8f媯š˜4«Ý[ J:–U 6x‹À¬9g,ÍQÖYÏÿ ‚3 Ï9%¶kX[cvs°b)‘^ª\ÛeYì2×b tI’ À61λ–9ûŠPA" j¬Æ5ð¹W{÷Ò;ËÆýºÂJ»˜ ›vxoe9¿&Ó[,õ’"lžÒ.£hðœÿôo]pzï©ÐM•ÃÇI¨Á‹i¬HŠ)ª'§0Êvé Ç9Ê„KÆäLuœ!$t`̱(P¦_¹eRcªC•Þc¹² ­òšug‚ßœ0UȆ\P›l€!qŒRnà¡je]`|ø5Â@o¡FÅo`¤Ì[pþÇ… i¤™@ƒvuI 'ÿm|¸–ÊŒL^; p!¨†°s÷ŒÏ:Л0 “àŸÑg€" ð7‚h˜AÐx|ЋðGIv‡ž0 ‹j†æÜ%†µrA Û++«¥-;I‡%xoÍÍA*ÅڣɜaˆvN2‹y@¡!®äÄ–d¼×¨ù›ð e—r)Ì‘Ð8pj0gÜ¢â0&Èã‰ì½v0:f ŒpÊÐ ŒpÖݦ 6쟃BÛ038úÿ€TÐvwh›ÆìJ—6…m8¦ü“0x6X—¬À Ç]sad,̾h>ÿwhÙ( -0»¬Ù @r.J®^IÕÛddÀS©mo°]fMA" ”ÛÊñ¡í°1U¦v¡Ö̯‰—ÎǦð— ¡_+{Úc¸ ÍVx‹á Œ,¸Êñ¼Úr(j/Vw0*N’)¹- €…‚Í.ÚÙ™¥½Rr@^÷mù¦d‚݆Ììžu½$P0ùi÷ý¼ / вº{|°=e$È€g…gxGÝ @ZÖç–“HÇ0!á“PÝ™  UJÞŽr|v­–«“OèPß Žf?ÎÚà“CNäÞIÿÞÛõÕªõÙ)Ÿ€` ívž@{q[=˽Ëèæè¶àlÎ&Óã§]¥ëርݚŽViÎÈ&Ž3 `ÃÕgU‚´ qçÛ)Àl×ç¥Îðð“Bè€ ÜÀ‰N‹Œ¾¨ò höìÏ^Ÿ } A ¶*|£xæöšê‰€NÞêÙ 5» ¤5ÆlÀ8 _ºâc±Ëóúm$s- á¯#€9n€°>q¼& ¸46°ð q¸0Ê ÃNìØáµœɾä°í¿QÐíx•q ! õØÞMÙ½I›ð ßþí´psPéAZËÈç>B¯ÿ™ê2»2p½ÿĵM`ªhç¢òr¡!ù^DïïOÐë@ã fOr°ž&põÿ]ÔÇŽª²7`X‹nÁðÓñhv çµE÷߆]£í]-t¯ v÷vŸò TƒË  Ë“÷á)º}þ”WŸÏ• qˆF2ôBðí4A eíþNd@ Sõ °õað@ YpÏv€õÿ-q ¶aSRcöÛÞ)›V^ðf_L=6HW››¹:„­î›ö Ù0~Np÷é$U ± «0Tv€½Cü5ŽÿÙ)q0%ÿÕm àð¡{?é/ƒ ';$—Ÿô½Ö? š€A …Õt^SÑÖi¢`Á;&`(A‡Xºü£XÑâE‹Œ˜¨@Áºä© ÂB€‹x”ã˘dʼD¦LÕŠdH‡"¾äxÓcFŽ<ȉ‘",­’RÕ‰%7xóEíä?hÛn­ AB PÍ‘téD§q/êja‚ƒC†yuÄ‚+÷–=I^Œ‘Á0á/Ò™3÷ÍCFÞxòóÁÌ™ 4wÐÜY¦Pqÿ,Œnê×ô? @pøÔ ΃"È+áÃÿ‡qÌ@izŽŸ*88"赡ßq‘$Mö¶è@À€ •ê¼´œ™*4~ Ñ,ó‹'oÈáV€æNC¯$†øU³òØŠìׯ²ÀK/†PÈ‚¿®Ùã…Á ³ð0ÄÒ‰¦¯PIª@*³,&Ì0ƒÉ‹:˜š`øê@¿R¥eø¹ƒrŒm¡Únãà„XܨŒ+Š¼ÂŒ)Œ(á»$ðho6g.Àa‡’^Liöô¨ƒ I,Ñ€/Id0H¡‡R°ÀŠ ¬È.£ÓÃ=PàCB¾úTâOZX M5Ùtó-9OkÿÃ3Jq#ŽŽf£-¯P€d¹P©&œpÈIÃPCu…rÂôÒ[/:À|À…c… Š:4˜ä€ð@¦8„1. F™ÀdGwä±! l»íÙg›­t&éâŽrÆÑVÛ0`AKÈê\Sê„/ÒM—MÈX„D¸„ z#À`)ô€N–ÆUAŒ:H˜Ze%‘OXdAƒèè½ |H£L®¨bêºKòxY*­¿ Ò @PYå>àåK£ˆ_;AHƒ (rÖ9g6ñdÀ*º€x•ùW¹€8‚‚”a¦1ÆdsôÿIgCa뎫ýÃQ4`x—´Ågb(`‚|À¨ ¸ ÈÓC•J €˜“Gúþ"|À\œØ©Là>@nºs(ãî>ƒüf8ðÁ5(ü踸Â&lë&J/]YQ¨…Î#Ã`¼£b·"©¡€³¢·Ÿ«eÇUãw1@¡Mzë•Üö¶‘>-Ø ‘ešV £‹©©®º;¨­Ž, ‘$lN9ŃdÙE†Òß!… 6¼d¸”{ܺˆà‚¡:p 4gÛWµ!~ÿ™Wêg?üa@ØŸÞü‡“Ó` %ÐX¥@ˆîg€šr@ÿÙLŠ!°o0•ÅÍ­xËÜl.ŠÀm ã]f°2:®^„»òP@â(ÙZ1ü+õ(¶@ð¸]È¢ÊЀ;4  @L±ë…,"° 0ÊB°'zè Ä/<À\b0¸€hr`ç”ç¬so„ãþäX´ÿ®"WÀ“j@-:âÚ˜ÅøÖÈ;¼k©Sºá«Üáªbãd'=P8œ$ *LÃÆ“ƒº¥²^€ØæéCŒ¤æ£ˆŸ%Q/2C—̨[+¬°fL£Ó`3òfð#€%>¡F¸°XÃpaG¹ÿì‹N½ùGÚ.fƒeJ?tó››Û'áÊV¡88$B‡¥Èa ¬€/ƒSî ˜d^p7pN›,"@‹àЇ6žsŽ4ÉÀ °‘<@XÎ*mXC'à ­]Ú:(¡ÅOP¢Ñ<@':!€j€×t€@N‹¼òsTЉ&$• µ@ª@šÍѰ©K¥ª‹z # (iI5P@. ¹aø«@xæ UläÔ8ÕCØWQéZÔ_-TS}Ù”jUl>uy©‘%h¹tBà :a‰¥>´ÿE.Å,kYÂÊjç<´/P€4 í¬`ëZÔÐÒµ©¥ê J°U ¡¬|D+ú×ξ⊆ èˆAaÓ[V°!êi)pÜÑ~t¸Ëensû\jöÜ@浃zíí¯:=îåV†èÀ!ÍQ1¾ÅZè¦W½ëeo{Ÿz…¸¶MI±Êc/@àmG+*À IH‹¼¸¢Ü{`'XÁ 6 Vp®8e-+(…û >çtl6† OtÁ#&q‰M|]¬@I-ð’؃hNÄ~!ªE/`yx oRî‰}üc «÷b3Á6àâ¶„½¢ÿ!€qƒáa§ r•­|åáºÁÁ6²‹±„/•q€òG]Ëkfó•5"ßCÆícP9«/i¸ÁèòœÓ¼ä6ZÐŽÃ<÷ ¨ ƽ©ž#<ˆò¤yГ¦´ãp‚º8 6;&P< H‘t¥M}êö¢DÏM"¯W Ë6œ€F„ÊÔFeTçZ×ÌE‰8p›ñ$ r` HÁ‘¨à(xõ®ýlåuCÒ! aBXú¡‡üp*½Ch‡[ÜN)ƒ$ l#Í'àóÆ`ß(yã¦7½`C`MRyD)r´)´€Ï•,€ÿQÚw€×[áЦ€²Àµ}‹·nxD7üâ€)àÊMЃÚ2yzá#_ózèà±6ähAA¤#UÁSPDzàÂÆø¼$ç¹³Qø  u΂´¤Õ18ˆB«’{þt]«: Ãk†Þ,¬´k‰ÜkXcPV„‹êc÷1Íb`…;Œ¥[–Pƒ|Mù¼\æŒ&v²çÄf·‚ãþu0ÐAð†ð^1DÑ?ü§bÅßR®wȳy=ŒÛAf ;âÑöŸ‚Cë׉f;¼F^ô‚V‰ü7žTÚ­<õZf†6:>~ô³·²QÑD¾Å§5»§mYsS3ýâöÃ?pãÇÍÄçJù¹ú¤_cæiâG?Èû:nw'pÎÉê4¹q’~÷Ûœ“¢Bßûã'ùÍï”ô&ýçgÿì×ß~øÇ_þ´ÿûçü( ;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/icons/folder.gif0000644000175000017500000000164707763505213031235 0ustar debiandebianGIF89a÷3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿf3f33f3ff3™f3Ìf3ÿ™3™33™3f™3™™3Ì™3ÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿff3fff™fÌfÿ3f3f33ff3f™3fÌ3fÿffff3fffff™ffÌffÿ™f™f3™ff™f™™fÌ™fÿÌfÌf3ÌffÌf™ÌfÌÌfÿÿfÿf3ÿffÿf™ÿfÌÿfÿ™™3™f™™™Ì™ÿ3™3™33™f3™™3™Ì3™ÿf™f™3f™ff™™f™Ìf™ÿ™™™™3™™f™™™™™Ì™™ÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿìÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÌÌ3ÌfÌ™ÌÌÌÿ3Ì3Ì33Ìf3Ì™3ÌÌ3ÌÿfÌfÌ3fÌffÌ™fÌÌfÌÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™ÌÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿ3ÿfÿ™ÿÌÿÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ---DDDQQQjjjyyyŠŠŠ   £££¹¹¹¿¿¿ÑÑÑâââêêêðððóóóÿÿ!ù#,@„G8Aƒ VƒÅpCE°)RµœB†3.¢xN ·nܶ‰ÜÖdÈmá \Ér  …>„Åñ¢Lˆ%R—°àµj0| ´¨Ñjªº |™±¡+†IÍ]l1"ÅrS1B”8eAU`Ê»çqà¾yûÖ­8pÞ¼Á;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/icons/pinUp.gif0000644000175000017500000000076607763505213031056 0ustar debiandebian à( Œ  ææææææææææææææææææææææææææææææææææææææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿææææææææææææææææææææææææææææææææææææææææææÿÿÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿ€?ÿÿÿÿÿÿmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/icons/minusnode.gif0000644000175000017500000000011307763505213031746 0ustar debiandebianGIF89a ‘ÿÿÿÿÀÀÀ!ù, @œÀ ¡\ƒcÉ/M<øÿeµ¦‰UW ¶C;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/icons/openfolder.gif0000644000175000017500000000164307763505213032113 0ustar debiandebianGIF89a÷3f™Ìÿ3333f3™3Ì3ÿff3fff™fÌfÿ™™3™f™™™Ì™ÿÌÌ3ÌfÌ™ÌÌÌÿÿÿ3ÿfÿ™ÿÌÿÿ3333f3™3Ì3ÿ3333333f33™33Ì33ÿf3f33f3ff3™f3Ìf3ÿ™3™33™3f™3™™3Ì™3ÿÌ3Ì33Ì3fÌ3™Ì3ÌÌ3ÿÿ3ÿ33ÿ3fÿ3™ÿ3Ìÿ3ÿff3fff™fÌfÿ3f3f33ff3f™3fÌ3fÿffff3fffff™ffÌffÿ™f™f3™ff™f™™fÌ™fÿÌfÌf3ÌffÌf™ÌfÌÌfÿÿfÿf3ÿffÿf™ÿfÌÿfÿ™™3™f™™™Ì™ÿ3™3™33™f3™™3™Ì3™ÿf™f™3f™ff™™f™Ìf™ÿ™™™™3™™f™™™™™Ì™™ÿ̙̙3Ì™fÌ™™Ì™ÌÌ™ÿìÿ™3ÿ™fÿ™™ÿ™Ìÿ™ÿÌÌ3ÌfÌ™ÌÌÌÿ3Ì3Ì33Ìf3Ì™3ÌÌ3ÌÿfÌfÌ3fÌffÌ™fÌÌfÌÿ™Ì™Ì3™Ìf™Ì™™ÌÌ™ÌÿÌÌÌÌ3ÌÌfÌÌ™ÌÌÌÌÌÿÿÌÿÌ3ÿÌfÿÌ™ÿÌÌÿÌÿÿÿ3ÿfÿ™ÿÌÿÿ3ÿ3ÿ33ÿf3ÿ™3ÿÌ3ÿÿfÿfÿ3fÿffÿ™fÿÌfÿÿ™ÿ™ÿ3™ÿf™ÿ™™ÿÌ™ÿÿÌÿÌÿ3ÌÿfÌÿ™ÌÿÌÌÿÿÿÿÿÿ3ÿÿfÿÿ™ÿÿÌÿÿÿ---DDDQQQjjjyyyŠŠŠ   £££¹¹¹¿¿¿ÑÑÑâââêêêðððóóóÿÿ!ù#,@€G8AƒUƒÅÖ"†Š`qS¥j¹‚×2jÜx­â9ݶ‰Ém·’ÛÂ<Ȳ¥À–0UuÜöÑ CˆUq´MÁ—«U”ЕѣH]©ê”#Ç¥æ6œ K·™å .œQ )_ÂlÙSà7oÝÐv[›Ö›[p;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/icons/__init__.py0000644000175000017500000000000007763505213031362 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/tree.py0000644000175000017500000026672511354216305027473 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ############################################################################# # # author: Yong Zhao # # Copyright: Yong Zhao, TSRI 2003 # ############################################################################# """ Package: Module : This module provides 4 classes. TK based GUI (graphical user interface) of 1) tree-view The tree view is designed to display hierarchical data structure. each level of the tree can be expanded / collapsed to show / hide subtree one or more items of the tree could be selected by mouse click 2) list-view The list view is designed to display a list of objects each item in the list can be locked (to prevent deletion) and unlocked the list is mainteined by FIFO principle (first in, first out), unless locked by user """ import sys import os import Tkinter, types from warnings import warn from Tkinter import Scrollbar, Listbox, Button, Label, Toplevel import Pmw from time import sleep import types import numpy.oldnumeric as Numeric try: from PIL import Image, ImageTk except: pass from mglutil.util.packageFilePath import findFilePath from os import path # find path to TreeWidget.icons directory ICONDIR= path.split( findFilePath('folder.gif', 'mglutil.gui.BasicWidgets.Tk.TreeWidget.icons') )[0] OFFSET= 20 class ListItem: """ ListItem Class, defines the items in ListView class. Key properties include draw (display), toggle (save or unsaved). the saved / unsaved mark is drawn to the left of the item name. """ def __init__(self, list=None, name=None, highlight='yellow'): """ Constructor of ListItem Class. list: the list that self (ListItem object) belongs to name: name of the item that will be displayed """ self.name =name self.icon =None # canvas ID of the "save" icons self.caption=None # canvas ID of the "save" icons self.list = list # the list that self (listItem) belongs to self.y = 0 self.x = 2 self.locked = False self.tree = None #self.selected = False self.canvasIDs = [] self.highlight = highlight def Draw(self): """ Draw the ListItem Object on canvas. """ ## if self.icon: # if has a representation, remove them ## canvas.delete(self.icon) ## canvas.delete(self.caption) canvas = self.list.canvas if len(self.canvasIDs): for id in self.canvasIDs[:]: canvas.delete(id) #self.canvasIDs=[] if self.list.selection == self: idx = (self.y*OFFSET -2 + OFFSET/2)/OFFSET if idx <1 or idx > self.list.length: return box =self.list.selectionBox canvas=self.list.canvas if box: canvas.delete(box) if self.highlight is not None: box=canvas.create_rectangle( 2+OFFSET, 2+OFFSET * idx - OFFSET/2, 400, 2+OFFSET * (idx+1) -OFFSET/2, fill = self.highlight, outline="") self.list.selectionBox = box self.canvasIDs.append(box) if self.locked: img = self.list.pinDown_icon else: img = self.list.pinUp_icon h= self.y self.icon = canvas.create_image(2, 2+OFFSET*h, image=img, anchor='w') self.caption = canvas.create_text(2+OFFSET ,2+OFFSET*h, text=self.name, anchor='w') self.canvasIDs.append(self.icon) self.canvasIDs.append(self.caption) canvas.tag_bind(self.icon, "<1>", self.Toggle_cb) #canvas.tag_bind(self.caption, "", self.Chosen_cb) canvas.tag_bind(self.caption, "<1>", self.PickItem_cb) lcanvas = canvas.component('canvas') balloon = Pmw.Balloon(lcanvas) balloon.tagbind(lcanvas, self.icon, "if checked it won't go down in history") def Toggle_cb(self,event=None): """ call back function when icon is clicked. toggle the status between 'locked' and 'unlocked' """ self.locked = not self.locked self.Draw() def Chosen_cb(self, event=None): """ call back function when picking the current history item, the node cooresponding to this item should be selected in the TreeView """ # fixme.. will be removed.. #print 'DOUBLE PICK' return if self.tree: self.tree.Select(self.name) def PickItem_cb(self, event=None): """ Pick the current history item, (hilight with yellow box) the node cooresponding to this item should be selected in the TreeView """ ## """callback for left mouse picking event""" ## print "bar" ## # check if we clicked inside the list ## if event.x", self.pickNode_cb) self.canvas.pack(side='left', expand=1, fill='both') join = path.join down_icon = Image.open(join(ICONDIR, "pinDown.gif")) self.pinDown_icon = ImageTk.PhotoImage(master=master, image=down_icon) up_icon = Image.open(join(ICONDIR, "pinUp.gif")) self.pinUp_icon = ImageTk.PhotoImage(master=master, image=up_icon) def FindListItembyName(self, name): """ name : the full name of the item to be found returns the index of a given item in the list returns -1 if not found """ list=self.ItemList for idx in range(self.length): if list.name==name: return idx return -1 def Insert(self, name=None, object=None,locked=False): """ Insert a ListItem object in the list. name : name of the new ListItem to be displayed object: the object to be added locked: lock the object """ if name==None: return for i in self.ItemList: if i.name ==name: warn( name +" is already on the list") return # if list is full, delete the first unsaved item if self.length == self.number: space_available = False idx = 0 for i in self.ItemList: if i.locked==False: self.Delete(idx) space_available=True break idx += 1 if not space_available: warn( "List is full, please remove some saved items first") return # append to the end of list new_item=ListItem(self, name, highlight=None) # create a new obj new_item.tree=self.tree new_item.locked=locked new_item.y=self.length+1 self.length +=1 self.ItemList.append(new_item) self.ObjList.append(object) new_item.Draw() bb = self.canvas.bbox(Tkinter.ALL) canvas = self.canvas.component('canvas') canvas.configure( scrollregion=(0, 0,bb[2]+OFFSET, bb[3]+OFFSET)) ## def pickNode_cb(self, event=None): ## """callback for left mouse picking event""" ## print "bar" ## # check if we clicked inside the list ## if event.x self.length: ## return ## box =self.selectionBox ## canvas=self.canvas ## if box: ## canvas.delete(box) ## self.selectionBox=canvas.create_rectangle( ## 2+OFFSET, 2+OFFSET * idx - OFFSET/2, ## 400, 2+OFFSET * (idx+1) -OFFSET/2, ## fill = 'yellow', outline="") ## canvas.lower(self.selectionBox) ## self.current = idx-1 def Delete(self, index): """ Delete the index-th ListItem object from the history list index : specifies which item to be removed, range [0, len_of_list-1] """ if index >= self.length or index <0: warn( "The list index specified is out of range") return to_remove = self.ItemList[index] if to_remove.locked: warn( "Can't delete saved item. Uncheck the save mark") return # delete the representation from canvas self.canvas.delete(to_remove.icon) self.canvas.delete(to_remove.caption) # If the item to be deleted is selected, remove the selection box if self.current==index: self.canvas.delete(self.selectionBox) self.current_selected = None self.ItemList.remove(to_remove) self.length -= 1 if index <= self.length: self.MoveUp(index, self.length) return def Delete_multi(self, index=[]): """ Delete the items from the list. The items to be removed are specified by index """ removeList=[] for idx in index: if idx >= self.length or idx <0: warn( "The list index specified is out of range") return to_remove = self.ItemList[idx] removeList.append(to_remove) if to_remove.locked: warn( "Can't delete saved item. Uncheck the save mark") return # delete the representation from canvas self.canvas.delete(to_remove.icon) self.canvas.delete(to_remove.caption) # If the item to be deleted is selected, remove the selection box if self.current==idx: self.canvas.delete(self.selectionBox) self.current_selected = None for r in removeList: self.ItemList.remove(r) #del r # Update GUI of the list self.length -= len(index) i=1 for item in self.ItemList: item.y=i item.Draw() i+=1 def MoveUp(self, begin, end): """After deleting an item, move the items below up by one unit a private function: not meant to be called by user""" for n in range(begin, end): to_move = self.ItemList[n] to_move.y -= 1 to_move.Draw() def GetCurrentSelection(self): """ returns current selected ListItem object, None if nothing is selected """ if self.current != -1: return self.ItemList[self.current] else: return None def SaveItem(self, index = 0): """ Save the n-th ListItem object in the history list n is specified as index, range [0, len_of_list-1] After saving, the item cannot be deleted unless unsaved by UnSaveItem function """ if index >= self.length or index <0: warn( "The list index specified is out of range") return item = self.ItemList[index] if item.locked ==False: item.locked = True item.Draw() def UnSaveItem(self, index = 0): """ Unsave the n-th ListItem object in the history list n is specified as index, range [0, len_of_list-1] After unsaving, the item can be deleted unless saved by SaveItem function """ if index >= self.length or index <0: warn( "The list index specified is out of range") return item = self.ItemList[index] if item.locked ==True: item.locked = False item.Draw() def LockItem(self, index = 0): """ same as calling SaveItem """ self.SaveItem(index=index) def UnlockItem(self, index = 0): """ same as calling UnSaveItem """ self.UnSaveItem(index=index) class Node: """ Tree node object Integrated with TreeView. (Each item in TreeView is a Node object) """ def __init__(self, name, object=None, mouseBinding=None, hasChildren=False, firstExpand_cb=None): """Constructor name # name of the node to be displayed object = object # the object associated with this Node objectKey= None # the key to look up object haschildren =False # any children node ? firstExpand_cb # call back function when first expand the node """ self.name = name self.visible = False self.object = object # the object associated with this Node self.objectKey= None # the key to look up object self.children = [] self.parent = None # handle to parent node self.maxy = None # maximum y value used by this node self.canvasIDs = [] # will store list of Canvas items # used to draw this node self.uniqueID = None # unique number associated with # this node in a tree self.tag=None # Tkinter tag self.tree=None # tree object to which this node is added self.expanded=False self.x=self.y=OFFSET # the x,y of the nodes self.deleted=False # FIXME this should really be fullName of this node self.parentFullname=None# Full name of parent self.height=1 # height of the subtree, # including this node,all its children self.update=False # if true, will redraw the node # when expanding or colapsing self.inserted=False # this node is being inserted/deleted self.selected=False # this node is selected ? self.selectboxID=None # the canvas ID for selection box # if node added as 'hasChildren', + and folder will be drawn # however, the children will NOT be added to save loading time self.hasChildren = hasChildren self.firstExpanded = True if self.hasChildren: self.firstExpanded = False # the first time to expand a node that 'hasChildren'=True, # the call_back function self.firstExpand_cb = None # FIXME: We do not pass this through the constructor right now # but use the method self.addFirstExpandCallback() if firstExpand_cb is not None: try: assert callable(firstExpand_cb) self.firstExpand_cb = firstExpand_cb except: warn( "ERROR: Callback %s not callable!"%firstExpand_cb) self.mouseBinding = {'<1>':self.pickNode_cb, '':self.double1PickNode_cb, '':self.addToHistory_cb, '':self.double2PickNode_cb, '':self.double3PickNode_cb, '':self.addToHistory_cb, '':self.ctrlPickNode_cb, '':self.shiftPickNode_cb} if mouseBinding: self.mouseBinding.update(mouseBinding) # temp varibles used for deleting a node self.x1 = self.x2 = self.y1 = self.y2 = self.move_up =0 def addFirstExpandCallback(self, cb): """ """ try: assert callable(cb) self.firstExpand_cb = cb except: warn( "ERROR: Callback %s not callable!"%cb) self.firstExpand_cb = None def findChildByName(self, master,name): """ returns the child node anmesd 'name'. return None if not found """ path = name.split('|') for c in master.children: tmp = c.name.split('|') if tmp[-1]==path[0]: newName = name[len(path[0])+1:] if len(newName): res = self.findChildByName(c,newName) return res else: return c return None def invoke(self,event=None): """ Callback function when the plus/minus icon is clicked switch between the expanded / collapsed status expand the tree if not expanded or collapsed the tree if already expanded """ if self.expanded: self.Collapse() else: self.Expand() def ctrlPickNode_cb(self, event=None): """ used for multiple selection, control + left mouse button down Attention: not fully implimented yet, 12-1-2004 """ #print 'CTRL PICK' tree = self.tree tree.selectionHistory.append(tree.list_selected) if self.selected: tree.list_selected.remove(self) self.selected = False tree.canvas.delete(self.selectboxID) else: self.tree.list_selected.append(self) self.selected = True self.drawSelectionBox() def triple1PickNode_cb(self, event=None): """ customizable, override """ #print 'TRIPLE' #self.tree.double1PickNode_Func(self) def double1PickNode_cb(self, event=None): """ customizable, override """ #print 'DOUBLE' self.tree.double1PickNode_Func(self) def double2PickNode_cb(self, event=None): """ customizable, override """ self.tree.double2PickNode_Func(self) def double3PickNode_cb(self, event=None): """ customizable, override """ self.tree.double3PickNode_Func(self) def shiftPickNode_cb(self, event=None): """ used for multiple selection, shift + left mouse button down Attention: not fully implimented yet, 12-1-2004 """ tree = self.tree if len(tree.list_selected)==0: return last = tree.list_selected[-1] all = self.parent.children try: i1 = all.index(self) i2 = all.index(last) except ValueError: raise ValueError, "range only work over sibblings" if i1 > i2: tmp=i1; i1=i2; i2=tmp tree.selectionHistory.append(tree.list_selected) for node in all[i1:i2+1]: if node==last: continue if node.selected: tree.list_selected.remove(node) node.selected = False tree.canvas.delete(node.selectboxID) else: tree.list_selected.append(node) node.selected = True node.drawSelectionBox() def pickNode_cb(self,event=None): """callback function bound to left mouse picking on tree canvas""" #self.selected = not self.selected #print 'PICK' tree = self.tree for node in tree.list_selected: node.selected = False node.tree.canvas.delete(node.selectboxID) tree.selectionHistory.append(tree.list_selected) tree.list_selected = [self] self.selected = True self.drawSelectionBox() if self.selected: if tree.actions['select'] is not None: tree.actions['select'](self) else: if tree.actions['deselect'] is not None: tree.actions['deselect'](self) def displayChildren(self,master): """ Display all the children nodes of given master node """ for c in master.children: c.draw() if c.children and c.expanded: c.displayChildren(c) def updateHeight(self,master): """ Recursively update the height of parents """ if master is not None: master.height =1 if master.expanded: for c in master.children: #if c.expanded: master.height += c.height self.updateHeight(master.parent) else: master.height =1 def hideChildren(self): """ Recursively remove the representation of all the children """ for c in self.children: c.visible = False for id in c.canvasIDs[:]: self.tree.canvas.delete(id) c.canvasIDs.remove(id) c.hideChildren() def updateX (self): """ Update the coordination x value """ if self.parent==None: self.x=OFFSET else: self.x=self.parent.x+OFFSET for c in self.children: c.x = c.parent.x + OFFSET c.updateX() return def updateVLines (self, current, master): """ Recursively redraw the vertical lines to the left of the node, which is being expanded or collapsed """ if master is not None: if current==master.children[-1]: self.updateVLines(master, master.parent) return # if current node is not the last child of parent index = master.children.index(current) x1 = master.children[index+1].x y1 = master.children[index+1].y v_line = self.tree.canvas.create_line(current.x,current.y+5, x1,y1, fill='gray') self.tree.canvas.lower(v_line) master.children[index+1].canvasIDs.append(v_line) # recursively updateVLines self.updateVLines(master, master.parent) return else: # we are now at the roots.. if current==self.tree.roots[-1]: return index = self.tree.roots.index(current) x1 = self.tree.roots[index+1].x y1 = self.tree.roots[index+1].y v_line = self.tree.canvas.create_line(current.x,current.y+5, x1,y1, fill='gray') self.tree.canvas.lower(v_line) self.tree.roots[index+1].canvasIDs.append(v_line) return # end of UpdateVLines def updateVLines_after_Del (self, current, master): """private function, not meant to be called by user.""" if master is not None: if current==master.children[-1]: # the current was already erased # not more vertical line needed under current node self.updateVLines_after_Del(master, master.parent) return # if current node is not the last child of parent index = master.children.index(current) x1 = current.x # print "from", current.name, if index ==0 : if current.deleted: y1 = master.y else: y1 = master.children[index-1].y else: if current.deleted : y1 = master.children[index-1].y else: y1 = master.children[index+1].y v_line = self.tree.canvas.create_line(current.x,current.y, x1,y1, fill='gray') self.tree.canvas.lower(v_line) master.children[index+1].canvasIDs.append(v_line) # recursively updateVLines self.updateVLines_after_Del(master, master.parent) return else: # we are now at the roots.. if current==self.tree.roots[-1] or current==self.tree.roots[0]: return index = self.tree.roots.index(current) x1 = current.x if current.deleted: y1 = self.tree.roots[index-1].y else: y1 = self.tree.roots[index+1].y v_line = self.tree.canvas.create_line(current.x,current.y, x1,y1, fill='gray') self.tree.canvas.lower(v_line) self.tree.roots[index+1].canvasIDs.append(v_line) return def Expand(self): """ The Expand() function will expand current node, show the "minus" icon, display all the children node. """ if self.expanded: return canvas = self.tree.canvas canvas.configure(cursor='watch') canvas.update_idletasks() prev_selection = self.tree.current_selected self.expanded = not self.expanded self.update = True self.draw() if self.firstExpanded==False: if self.firstExpand_cb: self.firstExpand_cb(node=self, object=self.object) self.firstExpanded = True #else: # warn("Warning: firstExpand_cb not defined!") # redraw the selection node.. # to make sure the yellow box is in lower layer of background if prev_selection and prev_selection != self: prev_selection.draw() canvas.configure(cursor='') def Collapse(self): """ The Collapse() function will collaps current node, show the "plus" icon, hide all the children node. """ if not self.expanded: return self.expanded = not self.expanded prev_selction = self.tree.current_selected self.update = True self.draw() def getHeight(self): """Returns the Height of node. height, stored in self.height, is the layer number of all the children and grand-children. e.g. Every leaf node displayed has height of 1. The height of a parent node with 4 leaf nodes is 4+1=5 """ h=0 if self.children: for c in self.children: if c.expanded: h += c.getHeight() else: h += 1 return h + 1 # the node itself has a representation, so, + 1 def UpdateNode(self): """self.update is a flag indicating whether expanding or collapsing is triggered. The UpdateNode function handle the expanding or collapsing of the tree self.update=True means toggle the expanding status. ( expand <-> collapse ) """ self.update = False all_items = self.tree.canvas.bbox(Tkinter.ALL) xx = all_items[2]+100 yy = all_items[3]+OFFSET if self.expanded: # now delete / re-draw the vertical lines self.tree.canvas.addtag_overlapping("VLines", 0,self.y + 6, self.x, self.y + 6) v_line_removed = self.tree.canvas.find_withtag("VLines") for i in v_line_removed: self.tree.canvas.dtag(i, "VLines") self.tree.canvas.delete(i) #self.tree.canvas.addtag_overlapping("tmp",0,self.y, xx, yy) self.tree.canvas.addtag_enclosed("tag_"+self.name,0,self.y, xx, yy) items_moved = self.tree.canvas.find_withtag("tag_"+self.name) self.height = self.getHeight() self.updateHeight(self.parent) self.tree.updateY() #self.displayChildren(self) # display all children # update the vertical lines to the left of the node self.updateVLines(self,self.parent) # move down the partition # that is right below the expanded part deltaY = self.height - 1 if deltaY > 0: self.tree.canvas.move("tag_"+self.name, 0, deltaY*OFFSET) self.displayChildren(self) # display all children # delete tag "tmp" for i in items_moved: self.tree.canvas.dtag(i, "tag_"+self.name) #resize the canvas' scrolling region bb = self.tree.canvas.bbox(Tkinter.ALL) self.tree.canvas.configure( scrollregion=(0, 0,bb[2]+OFFSET, bb[3]+OFFSET) ) # end of Expand else: deltaY = self.getHeight() - 1 self.height = 1 self.updateHeight(self.parent) self.tree.updateY() # now delete / re-draw the vertical lines vTag = 'V_' + self.name self.tree.canvas.addtag_overlapping(vTag, 0,self.y - 6, self.x, self.y + 6) #self.tree.canvas.create_line(0,self.y + 10, self.x, self.y + 10) v_line_removed = self.tree.canvas.find_withtag(vTag) for i in v_line_removed: self.tree.canvas.dtag(i, vTag) self.tree.canvas.delete(i) self.hideChildren() mTag='M_' + self.name self.tree.canvas.addtag_enclosed(mTag, 0, self.y, xx,yy) if deltaY > 0: self.tree.canvas.move(mTag, 0,-deltaY*OFFSET) # update the vertical lines to the left of the node self.updateVLines(self,self.parent) # delete tag "tmp" items_moved = self.tree.canvas.find_withtag(mTag) for i in items_moved: self.tree.canvas.dtag(i, mTag) # resize the canvas' scrolling region bb = self.tree.canvas.bbox(Tkinter.ALL) self.tree.canvas.configure( scrollregion=(0, 0,bb[2]+OFFSET, bb[3]+OFFSET) ) # end of Collapse def Erase(self): """ erase the representation of the node from canvas All the children nodes will also be erased. """ if self.parent: if self.parent.expanded == False: return if len(self.canvasIDs): # the node has a representation for id in self.canvasIDs[:]: self.tree.canvas.delete(id) self.canvasIDs.remove(id) self.hideChildren() self.x1 = 0 self.y1 = self.y + (self.height -1)*OFFSET all_items = self.tree.canvas.bbox(Tkinter.ALL) if all_items: self.x2 = all_items[2]+100 self.y2 = all_items[3]+OFFSET self.move_up= -self.height * OFFSET else: # all_items is None, nothing left on canvas self.x2 = self.x1 self.x2 = self.x1 # save the old height for future use (in vertical line drawing) self.deleted = True self.height = 0 self.updateHeight(self.parent) self.tree.updateY() # Move up the region below the current node if self.isShown(): self._moveUp() def _moveUp(self): """find the vertical lines to delete / re-draw NOTE: private function. should not be called directly from user """ self.tree.canvas.addtag_overlapping("V_lines", 0, self.y+10, self.x, self.y+10) v_line_removed = self.tree.canvas.find_withtag("V_lines") for i in v_line_removed: self.tree.canvas.dtag(i, "V_lines") self.tree.canvas.delete(i) # find the region to move upward self.tree.canvas.addtag_enclosed("tmp", self.x1, self.y1, self.x2, self.y2) self.tree.canvas.move("tmp", 0, self.move_up) items_moved = self.tree.canvas.find_withtag("tmp") for i in items_moved: self.tree.canvas.dtag(i, "tmp") #update the vertical lines to the left of the node self.updateVLines_after_Del(self,self.parent) def draw_new_insert(self, num=1, mode='single'): """this function draws the canvas representation when one new node is added as the child of 'self'. Two modes are alowed: single : a new child node just added batch : a set of children nodes added. """ if self.parent: if self.parent.expanded == False: return if len(self.canvasIDs): # the node has a representation for id in self.canvasIDs[:]: self.tree.canvas.delete(id) self.canvasIDs.remove(id) if self.expanded: if mode == 'single': # newNode = self.children[-1] #insert to the end of children list last_y = newNode.y last_x = newNode.x elif mode =='batch': last_x = self.children[0].x last_y = self.children[0].y else: warn('Unknown mode') all_items = self.tree.canvas.bbox(Tkinter.ALL) if all_items: xx = all_items[2]+100 yy = all_items[3]+OFFSET self.tree.canvas.addtag_enclosed("tmp", 0, last_y-10, xx, yy) self.tree.canvas.move("tmp", 0, OFFSET*num) # now delete the vertical lines self.tree.canvas.addtag_overlapping("V_lines", 0,last_y + 10, last_x, last_y + 10) v_line_removed = self.tree.canvas.find_withtag("V_lines") for i in v_line_removed: self.tree.canvas.dtag(i, "V_lines") self.tree.canvas.delete(i) #re-draw the vertical lines to the left of the node self.updateVLines(self,self.parent) # delete tag "tmp" items_moved = self.tree.canvas.find_withtag("tmp") for i in items_moved: self.tree.canvas.dtag(i, "tmp") if mode == 'single': newNode.draw() else: for n in self.children: n.draw() # draw the line between plus/minus icon and the folder icon self.canvasIDs.append( self.tree.canvas.create_line(self.x,self.y, self.x + OFFSET,self.y,fill='gray') ) # draw vertical line above node if self.parent: parent=self.parent if self == parent.children[0]: x1 = parent.children[0].x y1 = parent.y else: index= parent.children.index(self) x1 = parent.children[index-1].x y1 = parent.children[index-1].y v_line = self.tree.canvas.create_line( self.x,self.y,x1,y1,fill='gray') self.tree.canvas.lower(v_line) self.canvasIDs.append(v_line) else: roots = self.tree.roots if self != roots[0]: index=roots.index(self) x1 =roots[index-1].x y1 =roots[index-1].y v_line = self.tree.canvas.create_line( self.x,self.y,x1,y1,fill='gray') self.tree.canvas.lower(v_line) self.canvasIDs.append(v_line) self.draw_caption_icon() ## def getValueOfObject(self): ## """ returns a string that represents the value of the object associated with current Node""" ## obj = self.object ## t=type(obj) ## if t is types.StringType: return obj ## if t is types.NoneType : return 'None' ## if t in [types.BooleanType, types.FloatType, types.IntType, ## types.LongType, types.NoneType]: ## return str(obj) ## if hasattr(obj,'__class__'): ## return '<'+obj.__class__.__name__+' Instance>' ## else: ## return "Unknown "+str(t) def draw_caption_icon(self): """Display the name of the node, as well as the folder icon """ self.visible = True fullText = self.name # add ... to the end if caption is too long if len(fullText) > 60: caption = fullText[:57] + '...' else: caption = fullText if self.expanded: signText='-' # img = self.tree.open_folder_icon plus_minus = self.tree.minus_icon else: signText='+' # img = self.tree.close_folder_icon plus_minus =self.tree.plus_icon canvas=self.tree.canvas if len(self.children) or self.hasChildren: # draw folder and +/- ## folder=canvas.create_image(self.x+OFFSET,self.y, ## image=img, anchor=Tkinter.CENTER) ## self.canvasIDs.append(folder) ## canvas.lift(folder) ## signBox = canvas.create_rectangle(self.x+OFFSET-25,self.y+5, ## self.x+OFFSET-15,self.y-5, ## fill='white') ## sign=canvas.create_text(self.x+OFFSET-20,self.y, text=signText) ## canvas.tag_bind(sign, "<1>", self.invoke) sign = canvas.create_image(self.x,self.y, image=plus_minus, anchor=Tkinter.CENTER) self.canvasIDs.append(sign) canvas.lift(sign) # bind the click action with function "invoke" canvas.tag_bind(sign, "<1>", self.invoke) ## canvas.tag_bind(folder,"", self.invoke) ## txt = canvas.create_text(self.x + 2*OFFSET ,self.y, ## text=caption,anchor=Tkinter.W) ## canvas.lift(txt) ## else: ## txt = canvas.create_text(self.x + OFFSET ,self.y, ## text=caption,anchor=Tkinter.W) txt = canvas.create_text(self.x + OFFSET ,self.y, text=caption,anchor=Tkinter.W) canvas.tag_bind(txt, "", self.showFullText1_cb) self.canvasIDs.append(txt) # THIS IS EXPANSIVE #balloon = Pmw.Balloon(self.tree.topFrame_1) #balloon.tagbind(canvas, txt, repr(self.object).replace('\\n','\n')) #'This is help for\nan arc item')#fullText) # Set the mouse binding for action,func in self.mouseBinding.iteritems(): if action == "": if self.tree.multi_choice: canvas.tag_bind(txt, action,func , '+') else: canvas.tag_bind(txt, action,func , '+') ## canvas.tag_bind(txt, "<1>", self.pickNode_cb, '+') ## canvas.tag_bind(txt, "", self.addToHistory_cb,'+') ## if self.tree.multi_choice: ## canvas.tag_bind(txt, ## "", self.ctrlPickNode_cb, '+') if self.tree.displayValue: self.displayValue() def displayValue(self): """Add things to the rigth side of the tree """ canvas = self.tree.canvas if type(self.object) == Numeric.arraytype: sh = self.object.shape dim=1 for i in range(len(sh)): dim *= sh[i] #print "Large array found !!", dim if dim > 10: counter = 0 text = str(sh) text +=' array(' text += self._getElement(self.object, \ counter=counter)[0] text += '...)' else: text = repr(self.object) else: text = repr(self.object) text= text.replace('\n', '') #if len(text)>80: # text = text[:77] + "..." valueStr = canvas.create_text(self.x + OFFSET + 150,self.y, \ text=text, anchor=Tkinter.W) canvas.tag_bind(valueStr, "<1>", self.pickNode_cb, '+') canvas.tag_bind(valueStr, "", self.showFullText2_cb) # add canvas ID to list so they will be erased and moved properly self.canvasIDs.append(valueStr) def _getElement(self, array, counter): """recursive function for displaying first 20 elements of large, multi-dimentional array""" shape = array.shape sh = len(shape) element = '[' if sh ==1: c=0 for i in range(shape[0]): e = repr(array[i]) counter +=1 element += e +', ' if counter >= 20: return element, counter element += '], ' else: c=counter for i in range(shape[0]): e,c = self._getElement(array=array[i], counter=c) element += e counter = c if c >= 20: element += '], ' break return element, counter def showFullText1_cb(self, event=None): print self.name def showFullText2_cb(self, event=None): print repr(self.object).replace('\\n','\n') def addToHistory_cb(self, event=None): """ Callback function. When double clicked on the tree node, the node will be added to the history list""" tree =self.tree tree.AddToHistoryList() # please be noticed that by double-clicking the history item # the system would first take action on the click event, then the # double click event. self.selected=True self.draw() def rename(self, newName): """this function renames the node and updates the caption on canvas """ if type(newName) is not types.StringType: return self.name = newName self.draw() def draw(self): """place items on the canvas to represent that node. if the node has a current representation it will be deleted first. put a folder is node has children""" parent = self.parent canvas = self.tree.canvas canvasIDs = self.canvasIDs if parent: if parent.expanded == False: return if self.update: self.UpdateNode() if len(canvasIDs): # erase the current representation of 'self' for id in canvasIDs: canvas.delete(id) #if self.selectboxID: # canvas.delete(self.selectboxID) # draw the '-' line between plus/minus icon and the folder icon canvasIDs.append( self.tree.canvas.create_line(self.x,self.y, self.x + OFFSET,self.y,fill='gray') ) # draw vertical line above node if parent: if self == parent.children[0]: x1 = parent.children[0].x y1 = parent.y else: index= parent.children.index(self) x1 = parent.children[index-1].x y1 = parent.children[index-1].y v_line = self.tree.canvas.create_line( self.x,self.y,x1,y1,fill='gray') canvas.lower(v_line) canvasIDs.append(v_line) else: # if this is a new root if self != self.tree.roots[0]: index = self.tree.roots.index(self) x1 = self.tree.roots[index-1].x y1 = self.tree.roots[index-1].y h_line = self.tree.canvas.create_line(self.x,self.y, x1,y1, fill='gray') canvas.lower(h_line) canvasIDs.append(h_line) self.visible = True self.draw_caption_icon() self.drawSelectionBox() def drawSelectionBox(self): # Draw the selection box canvas = self.tree.canvas canvasIDs = self.canvasIDs prev_selection = self.tree.current_selected if self.selected: if prev_selection and not self.tree.multi_choice: if prev_selection != self: prev_selection.selected = False if prev_selection.parent: if prev_selection.parent.expanded: prev_selection.draw() else: prev_selection.draw() # save current node as current_selected self.tree.current_selected = self bb = self.tree.canvas.bbox(Tkinter.ALL) if len(self.tree.list_selected)>0: yoff=1 else: yoff=0 selectionBox = canvas.create_rectangle( 1, self.y - OFFSET/2, bb[2]-yoff, self.y+OFFSET/2, tags="selected", fill = "yellow") canvas.lower(selectionBox) self.selectboxID = selectionBox canvasIDs.append(selectionBox) def DoSelect(self, parent, path=None): """ Called by TreeView function Select() The DoSelect function select a node, if the node's parent is collapsed, the parent will be expanded (recursively) """ result = False for c in parent.children: if c.name == path[0]: path.remove(path[0]) if len(path)==0: c.selected = True c.draw() return True else: if not c.expanded: c.invoke() return c.DoSelect(c,path) def GetFullName(self): """Returns the full name of current node """ if self.parent: return self.parentFullname +'|'+self.name else: return self.name def _expandAll(self): """recursively expand all the subtrees""" for c in self.children: if not c.expanded: c.invoke() c._expandAll() def _collapseAll(self): """recursively collapse all the subtrees """ if self.isShown() is False: return for c in self.children: if c.expanded: c.Collapse() c._collapseAll() # collapse all the children will do the job def increaseParentHeight(self, offset=1): """ After adding a new node, the height of the parent is increased by 1 This functions also update the height of all the acestors.""" self.height += offset if self.parent: # recursively increase the height of parent by 1 self.parent.increaseParentHeight(offset=offset) def isShown(self): """check if self is shown in the tree """ parent=self.parent if parent is not None: if parent.expanded == False: # collapsed return False else: return self.parent.isShown() else: # root node is always shown return True def getRootNode(self): """ returns the root node of current branch where the node liad in""" name=self.GetFullName().split('|')[0] for root in self.tree.roots: if root.name == name: return root return None def moveUp(self): """ move self up by one position in the children nodes list of self.parent""" ## NOTE: This is achieved by collapse parent node and rebuild the children node list. if self.parent is None: # self is one of the root nodes try: nodeList=self.tree.roots index=nodeList.index(self) except: return else: nodeList=self.parent.children index=nodeList.index(self) if index==0: print "already at the top of children node list" return nodeList.remove(self) nodeList.insert(index-1, self) if self.isShown(): if self.parent: self.parent.invoke() self.parent.invoke() else: # no parent: one of the roots self.redraw_all_roots() else: pass def moveDown(self): """ move self down by one position in the children nodes list of self.parent""" ## NOTE: This is achieved by collapse parent node and rebuild the children node list. if self.parent is None: # self is one of the root nodes try: nodeList=self.tree.roots index=nodeList.index(self) except: return else: nodeList=self.parent.children index=nodeList.index(self) if index==len(nodeList)-1: print "already at the end of children node list" return nodeList.remove(self) nodeList.append(self) if self.isShown(): if self.parent: self.parent.invoke() self.parent.invoke() else: # no parent: one of the roots self.redraw_all_roots() else: pass def redraw_all_roots(self): """ redraw all the nodes in root.nodes """ ## FIXME: the selection box is still in wrong position nodeList=self.tree.roots for n in nodeList: n.Collapse() n.Erase() n.height=1 nodeList[0].y=OFFSET self.tree.updateY() for n in nodeList: n.draw_caption_icon() class TreeView: """Tree Widget class A TreeWiget contains tree nodes (object of Class Node). Each node can have children. Nodes that do have children can be expanded and collapsed using the + - icon placed before de nodes' icon. Each no has an icon and a name. It is possible to associate an arbitrary Python object to each node. The node in the tree is the graphical representation of the object. """ def __init__(self, master=None, name='Tree', multi_choice=False, width=200, height=200, treeWidth=140, treeHeight=100, historyWidth=100, historyHeight=100, mode='Extended', historyVisible=False,nohistory=False, mouseBinding=None,obj2Node=True, displayValue=False, offx=0, offy=0, canvasHeaderCol=False): """Constructor: Creates the canvas used to draw the tree """ self.multi_choice = multi_choice # True: ctrl or shift click to select # False: only one node can be selected self.name=name # name of the window if this widget # is in its own window self.numberOfNodes=0 # high water mark of number of nodes # used to create a unique id for each node # which can be used to create tags as well self.roots=[] # define list of root nodes self.selectionHistory = [] # only works in multi_choice mode self.list_selected=[] # the list of nodes picked by mouse # in multi_choice mode self.current_selected=None # the seleced node # in single selection mode self.width = width # width of paned widget (Tree and history) self.height = height # height of paned widget self.obj2Node = obj2Node # True or False,false we do not make # the correspondance between object and a node self.objToNode = {} # lookup to find the TreeNode that # correspond to an object for a given application self.objIndex=0 # index for objects in this tree self.displayValue =displayValue # whether to display value of objects self.nohistory = nohistory # if True do not create the history frame self.mouseBinding = mouseBinding # dictionary of event to be # associate with a mouse button event # when a node is selected # see class Node for default value # This is the multiple selection that is dsiable currently self.mode = mode # selection mode TO BE IMPLMEENTED # offset of tree from upper left corner self.offx = offx self.offy = offy # functions to be called upon events self.actions = {'select':None, 'deselect':None, 'expand':None, 'collapse':None } self.ownsMaster = True # when set to True, destroying the tree will # destroy the Tree's master if master is None: master = Toplevel() else: self.ownsMaster = False self.master = master # GUI related self.topFrame = Pmw.PanedWidget( master, orient='horizontal', hull_relief='sunken', hull_width=width, hull_height=height, command=self.savePaneWidth_cb, ) if hasattr(self.topFrame.component('hull').master, 'title'): self.topFrame.component('hull').master.title(name) if not nohistory: self.topFrame.bind("", self.configureTopFrame_cb, '+') self.historyWidth=historyWidth self.treeWidth=treeWidth if not nohistory: self.topFrame_2 = self.topFrame.add('history', min=0, size=historyWidth) self.topFrame_1 = self.topFrame.add('tree', min=20, size=treeWidth) # create the Canvas if canvasHeaderCol: self.canvasHeaderCol = Tkinter.Canvas(self.topFrame_1, height=50) #self.canvasHeaderCol.grid(column=0, row=0, sticky='ew') self.canvasHeaderCol.pack(side='top', expand=0, fill='x') self.scrolledCanvas = Pmw.ScrolledCanvas( self.topFrame_1, vscrollmode='dynamic', hscrollmode='none', horizscrollbar_command=self.scrollAll, canvas_bg='white') #canvas_bg='#c3d0a6') else: self.scrolledCanvas = Pmw.ScrolledCanvas( self.topFrame_1, vscrollmode='dynamic', hscrollmode='dynamic', horizscrollbar_command=self.scrollAll, canvas_bg='white') #canvas_bg='#c3d0a6') self.canvasHeaderCol = None self.scrolledCanvas.pack(side='left', expand=1, fill='both') self.canvas = self.scrolledCanvas.interior() if os.name == 'nt': #sys.platform == 'win32': self.canvas.bind("", self.scrollUpDown) else: self.canvas.bind("", self.scrollUp) self.canvas.bind("", self.scrollDown) #self.canvas.configure(width=treeWidth, height=treeHeight, # borderwidth=2) #if canvasHeaderCol: #self.sbx=Scrollbar(self.topFrame_1, orient="horizontal") #self.sbx.grid(column=nextCol, row=2, sticky='ew') #self.sbx.pack(side='bottom', expand=1, fill='x') #self.canvasHeaderCol['xscrollcommand']=self.sb.set join = path.join plus_icon = Image.open(join(ICONDIR, "plusnode.gif")) self.plus_icon = ImageTk.PhotoImage( master=master,image=plus_icon) minus_icon = Image.open(join(ICONDIR, "minusnode.gif")) self.minus_icon = ImageTk.PhotoImage( master=master,image=minus_icon) # create the frame for "History" Label and the two hide/show labels #frame = Tkinter.Frame(master=self.topFrame_1, ) #self.showHideHistoryIcon=Label(frame, text="Show History") #self.showHideHistoryIcon.pack(side="left", anchor='nw') #frame.pack(side='top') #self.showHideHistoryIcon.bind('<1>', self.toggleHistoryVisibility) if not nohistory: frame = Tkinter.Frame(master=self.topFrame_2, ) Label(frame, text = "History").pack(side="left") frame.pack(side='top') # Add HistoryList box self.historyList = ListView(self, master=self.topFrame_2, width=self.historyWidth) self.show() self.topFrame.update() self.currentPanesWidth = [historyWidth, treeWidth] # hide history is that was specified: if not historyVisible and not nohistory: self.currentPanesWidth[0] = 0. self.topFrame.configurepane('history', size=0.) #self.historyShown=True #self.toggleHistoryVisibility() #self.canvas.bind_all("", self.handle_key) # class level binding . P105 Grayson TKinter book self.canvas.bind_class('Canvas', "", self.handle_key) self.canvas.bind_class('Canvas', "", self.handle_key) self.canvas.bind_class('Canvas', "", self.handle_key) self.canvas.bind_class('Canvas', "", self.handle_key) self.canvas.bind('', self.Enter_cb) self.double1PickNode_Func_cb = None # call back for left double click on # tree node label self.double2PickNode_Func_cb = None # call back for left double click self.double3PickNode_Func_cb = None # call back for left double click def double1PickNode_Func(self, node): if self.double1PickNode_Func_cb: self.double1PickNode_Func_cb(node) def double2PickNode_Func(self, node): if self.double2PickNode_Func_cb: self.double2PickNode_Func_cb(node) def double3PickNode_Func(self, node): if self.double3PickNode_Func_cb: self.double3PickNode_Func_cb(node) def scrollAll(self, *args): #print "scrollAll", args apply( self.canvas.xview, args) canvas = self.canvasHeaderCol if canvas: region = self.canvas.configure('scrollregion')[4] #print region, self.canvasHeaderCol.configure('scrollregion')[4] #print self.canvas.configure('width') #print canvas.configure('width') canvas.configure(scrollregion=region) apply( canvas.xview, args) def scrollUp(self, event): self.canvas.yview_scroll(-1, "units") def scrollDown(self, event): self.canvas.yview_scroll(1, "units") def scrollUpDown(self, event): if event.delta < 0: self.scrollDown(event) else: self.scrollUp(event) def handle_key(self, event): """handle the keyboard operations.. Up / Down / Left / Right arrow keys are supported""" # widget-wide key dispatcher ## atFocus = self.canvas.focus() ## if not atFocus: ## return # navigation if self.multi_choice: return if event.keysym == "Up": self.moveSelectionUp() elif event.keysym == "Down": self.moveSelectionDown() elif event.keysym == "Right": sel = self.GetSelected() if sel: sel.Expand() elif event.keysym == "Left": sel = self.GetSelected() if sel: sel.Collapse() else: pass # print event.keysym def Enter_cb(self, event): """Call back function trigger when the mouse enters the cavas """ #print 'entering tree' self.canvas.focus_set() #atFocus = self.canvas.focus() def moveSelectionUp(self): """handle the 'up' key.. """ selection = self.GetSelected() if selection.parent is None : idx = self.roots.index(selection) if idx ==0 : return else: self.Select( self.lastVisibleNodeOf( self.roots[ idx -1 ])) return children = selection.parent.children idx = children.index(selection) if idx is not 0: self.Select ( self.lastVisibleNodeOf( children[ idx -1 ] ) ) return else: self.Select(selection.parent) return def lastVisibleNodeOf(self, node): """ return the last visible node of 'node' """ if len(node.children ) == 0 or not node.expanded: return node return self.lastVisibleNodeOf(node.children[-1]) def moveSelectionDown(self): """handle the 'down' key.. """ selection = self.GetSelected() if selection.expanded and len(selection.children) is not 0: self.Select(selection.children[0]) return self.Select (self.nextVisibleNodeOf( selection ) ) ## if selection.parent is None : ## idx = self.roots.index(selection) ## if idx == len(self.roots) -1: # last root ## pass ## else: ## self.Select( self.roots[ idx +1 ]) ## else: ## children = selection.parent.children ## idx = children.index(selection) ## if idx is len(children)-1: ## self.Select ( self.nextVisibleNodeOf( selection ) ) ## else: ## self.Select(children[idx + 1 ]) return ######## fix me fix me def nextVisibleNodeOf(self, node): """ return the next visible node of 'node' """ if node.parent is None: idx = self.roots.index(node) if idx == len(self.roots) -1: # last root return node else: return self.roots[idx+1] else: children = node.parent.children idx = children.index(node) if idx is len(children)-1: return self.nextVisibleNodeOf( node.parent ) else: return children[idx + 1 ] if len(node.children ) == 0 or not node.expanded: return node return self.lastVisibleNodeOf(node.children[-1]) def setAction(self, event, function): """define function to be called when an event occurs current events are 'select', 'deselect', 'expand', 'collapse' function has to be a callable and accept one argument which wil be the node on which the event occurs. Function can be None to not unregister the callback """ assert event in ['select', 'deselect', 'expand', 'collapse'] assert function is None or callable(function) self.actions[event] = function def destroy(self): """Destroy the frame, including TreeView and history list""" if self.ownsMaster: self.master.destroy() else: self.topFrame.destroy() def hide(self): """ Hide the frame, including TreeView and history list """ self.topFrame.forget() def forget(self): self.hide() def show(self): """ Display the frame, including TreeView and history list """ self.topFrame.pack(expand=1, fill='both') def findNodeFromName(self, name): """walks the tree and find the node matching the name name is the full name of the node""" path = name.split('|') for root in self.roots: if root.name==path[0]: newName = name[len(path[0])+1:] if len(newName): n = root.findChildByName(root, newName) if n: return n else: return root return None def draw_new_root(self, newRoot): """ this function draw the canvas representation of a root node when a new root node is added """ root = newRoot canvasIDs= root.canvasIDs if len(canvasIDs): # the node has a representation for id in canvasIDs: self.canvas.delete(id) # draw the line between plus/minus icon and the folder icon canvasIDs.append( self.canvas.create_line(root.x,root.y, root.x + OFFSET, root.y,fill='gray') ) # draw vertical line above node # if this is a new root and not the first root if root != self.roots[0]: index = self.roots.index(root) x1 = self.roots[index-1].x y1 = self.roots[index-1].y h_line = self.canvas.create_line(root.x, root.y, x1,y1, fill='gray') self.canvas.lower(h_line) canvasIDs.append(h_line) root.draw_caption_icon() def addNodeSet(self, name, object=None, parent=None, mouseBinding={},\ hasChildren=False, firstExpand_cb=None, nodeClass=Node): """Add a set of children nodes to a node and returns handle of parenet The node has a name, an optional object that will be associated with the node in the tree. parent : the node to which children nodes are added. Cane be a string, a node isntance or an object already added to the tree. name : list of children names objects : list of objects associated with the children nodes hasChildren : list of True/False, whether the added child has children mouseBinding: list of mouseBinding firstExpand_cb : call_back fucntions (not a list, always objectBrower.expandTreeNode_cb) """ if (type(object) is not types.ListType) or \ (type(name) is not types.ListType) or \ (type(hasChildren) is not types.ListType): warn("List of children needed, non-list type found") return None if self.mouseBinding is not None: mouseBinding.update(self.mouseBinding) num = len(name) nodeList=[] for i in range(num): if self.mouseBinding is not None: mouseBinding.update(self.mouseBinding[i]) node = nodeClass(name[i], object[i], \ hasChildren=hasChildren[i], firstExpand_cb=firstExpand_cb) nodeList.append(node) node.tree = self try: hash(object[i]) node.objectKey = object[i] except TypeError: node.objectKey = self.objIndex self.objIndex +=1 ## if type(object) is not types.InstanceType: ## node.objectKey = self.objIndex ## self.objIndex +=1 ## else: ## node.objectKey = object if self.obj2Node: self.objToNode[node.objectKey] = node self.numberOfNodes += 1 node.uniqueID = self.numberOfNodes node.tag = [str(node.uniqueID)] # if parent given as a string, find the Node obj of the parent if type(parent) is types.StringType: input=parent parent = self.findNodeFromName(parent) if parent is None: node.parentFullname = None warn( "error in addNode, check name of parent: "+ input) return else: node.parentFullname = input elif self.objToNode.has_key(parent): parent = self.objToNode[parent] elif not isinstance(parent, Node) and parent is not None: raise RuntimeError('bad parent') # if parent is given as None,we have a new root node # The new root is added to the end(bottom) of the tree if parent is None: node.parentFullname = None h = 0 for r in self.roots: if r.name == name : warn("The node with name"+name + "already exists") return h += r.height # calc the Y offset of current node node.y += h * OFFSET + self.offy node.x += self.offx self.roots.append(node) else: assert isinstance(parent, Node) if parent.parentFullname != None: node.parentFullname = parent.parentFullname + '|' + \ parent.name else: node.parentFullname = parent.name node.parent = parent if parent is not None: # check duplicated node # FIXME ... this is expensive ## for c in parent.children: ## if c.name == node.name: ## print "The node with name", name, "already exists" ## return for node in nodeList: node.x = parent.x + OFFSET parent.children.append(node) if parent.expanded: parent.increaseParentHeight(offset=num) parent.inserted = True self.updateY() if parent.inserted: parent.draw_new_insert(num=num, mode = 'batch') parent.inserted = False parent.draw() else: for i in range(num): self.draw_new_root(nodeList[i]) bb = self.canvas.bbox(Tkinter.ALL) self.canvas.configure(scrollregion=(0, 0,bb[2]+OFFSET, bb[3]+OFFSET)) return nodeList def addNode(self, name, object=None, parent=None, mouseBinding={},\ hasChildren=False, firstExpand_cb=None, nodeClass=Node): """Add a node to the tree and returns a handle to it The node has a name, an optional object that will be associated with the node in the tree. Parent can be a string specifying the full name of a node or an isntance of a Node. If no parent is specified this node will become the next root node """ # the '|' is not allowed as name of the node if name.find('|')!=-1: warn( "No '|' is allowed in node name ") return if self.mouseBinding is not None: mouseBinding.update(self.mouseBinding) node = nodeClass(name, object, mouseBinding=mouseBinding, \ hasChildren=hasChildren, firstExpand_cb=firstExpand_cb) node.tree = self try: hash(object) node.objectKey = object except TypeError: node.objectKey = self.objIndex self.objIndex +=1 ## if type(object) is not types.InstanceType: ## node.objectKey = self.objIndex ## self.objIndex +=1 ## else: ## node.objectKey = object if self.obj2Node: self.objToNode[node.objectKey] = node self.numberOfNodes += 1 node.uniqueID = self.numberOfNodes node.tag = [str(node.uniqueID)] # if parent is given as None,we have a new root node # The new root is added to the end(bottom) of the tree if parent is None: node.parentFullname = None h = 0 for r in self.roots: if r.name == name : warn( "The node with name"+ name + "already exists") return h += r.height # calc the Y offset of current node node.y += h * OFFSET + self.offy node.x += self.offx self.roots.append(node) self.draw_new_root(node) else: # if parent given as a string, find the Node obj of the parent if type(parent) is types.StringType: input=parent parent = self.findNodeFromName(parent) if parent is None: node.parentFullname = None warn( "error in addNode, check name of parent:"+ input) return elif self.objToNode.has_key(parent): parent = self.objToNode[parent] elif not isinstance(parent, Node): raise RuntimeError('bad parent') #else: # # only Node type is accepted. # assert isinstance(parent, Node) if parent.parentFullname != None: node.parentFullname = parent.parentFullname + '|' + parent.name else: node.parentFullname = parent.name node.parent = parent # check duplicated node # FIXME ... this is expensive ## for c in parent.children: ## if c.name == node.name: ## print "The node with name", name, "already exists" ## return node.x = parent.x + OFFSET parent.children.append(node) if parent.expanded: parent.increaseParentHeight() parent.inserted = True self.updateY() if parent.inserted: parent.draw_new_insert() parent.inserted = False # FIXME erasing the parent is very expensif, we only need to # draw from node to end of children and move everything below # parent down parent.draw() bb = self.canvas.bbox(Tkinter.ALL) self.canvas.configure( scrollregion=(0, 0,bb[2]+OFFSET, bb[3]+OFFSET)) return node def deleteNode_byName(self, name, parent=None):#, object=None): """Delete a node from TreeView. using the full name of the node parent should be given as full name of parent node""" if name==None : warn( "Node cannot be None") return if type(parent) is types.StringType: input=parent parent=self.findNodeFromName(parent) if parent is None: warn( "error in Delete, check name of parent: " +input) return bFound=False if parent is None: for r in self.roots: if r.name==name: r.Erase() self.roots.remove(r) bFound=True break else: assert isinstance(parent, Node) # check for duplicated node for c in parent.children: if c.name==name: c.Erase() parent.children.remove(c) bFound=True break if bFound==False: warn( "The node with name"+ name+ "is not found", stacklevel=2) return def deleteNode(self, node): """ Delete a node from the TreeView. Node can be given as the Node object, or full name of the node""" if type(node) is types.StringType: n = self.findNodeFromName(node) if n is None: warn( node+" not found") else: node = n if node in self.list_selected: self.list_selected.remove(node) assert isinstance(node, Node) if not node.tree: warn(node.name +" is not part of tree") return fullname=node.GetFullName() if self.current_selected: current_select_name= self.current_selected.GetFullName() # if the selected node is (grand) child of the node to be deleted # their fullnames should share same prefix if current_select_name.find(fullname)==0: self.current_selected=None node.Erase() self.cleanUpOnNodeDelete(node) parent = node.parent if parent is None: # root node self.roots.remove(node) else: parent.children.remove(node) if len(parent.children) == 0: parent.draw() if self.nohistory: return # remove all the related items in the History list list=self.historyList.ItemList index=0 to_delete=[] # the list for item in list: if item.name.find(fullname)==0: # All items begin with node.name item.locked=False # unlock the item to_delete.append(index) index+=1 self.historyList.Delete_multi(to_delete) del node #remove node from namespace return def cleanUpOnNodeDelete(self, node): # recursively traverse sub tree and update tree to reflect deletion # of subtree for c in node.children: self.cleanUpOnNodeDelete(c) if node.object is not None and self.obj2Node: del self.objToNode[node.objectKey] # remove object from dict node.tree = None # remove handle to tree del node.object # remove handle to object self.numberOfNodes -= 1 def do_updateY(self, from_root): """Called by updateY(), recursively update the y coordination of all the children""" h=1 for node in from_root.children: node.y=node.parent.y + OFFSET * h if node.height==0: # if the node was deleted.. height=0 continue if node.expanded and len(node.children) >0: h +=node.height self.do_updateY(node) else: h +=1 def updateY(self): """Recursively update the y coordination all the root nodes""" index=0 for r in self.roots: index=self.roots.index(r) # if this is the first root node in Canvas if index>0: r.y =self.roots[index-1].y+OFFSET*(self.roots[index-1].height) index +=1 self.do_updateY(r) def GetSelected(self): """returns the selected Node object """ return self.current_selected def ExpandNode(self, node): """ Expand a given node in TreeView. used only by commandline node can be full name or a handel to Node object""" if Node == None: return self.Select(node) tmp=self.GetSelected() if tmp is not None: tmp.Expand() self.deSelect() def CollapseNode(self, node): """ Collapse a given node in TreeView. used only by commandline node can be full name or a handel to Node object""" if Node == None: return self.Select(node) tmp=self.GetSelected() if tmp is not None: tmp.Collapse() self.deSelect() def clearSelection(self): if not self.multi_choice: return canvas = self.canvas for node in self.list_selected: node.selected = False canvas.delete(node.selectboxID) self.list_selected = [] def expandPath(self, node): while node and node.parent: if not node.parent.expanded: node.parent.Expand() node = node.parent self.expandPath(node.parent) def selectNodes(self, nodeList): # given a list of objects or node select them if the tree is in # multi_choice mode if not self.multi_choice: return firstNode = None self.selectionHistory.append(self.list_selected) for node in nodeList: if isinstance(node, Node): if firstNode==None: firstNode = node if not node.selected: if len(node.children): #prevent last elevel expansion self.expandPath(node) if node.visible: node.selected= True self.list_selected.append(node) node.draw() elif self.objToNode.has_key(node): node = self.objToNode[node] if firstNode==None: firstNode = node if not node.selected: if len(node.children): #prevent last elevel expansion self.expandPath(node) if node.visible: node.selected= True self.list_selected.append(node) node.draw() else: raise ValueError, 'Node %s not found'%str(node) if firstNode is not None: self.showNode(firstNode) def undoSelect(self, event=None): canvas = self.canvas for n in self.list_selected: n.selected = False canvas.delete(n.selectboxID) if len(self.selectionHistory): newSelection = self.selectionHistory.pop() self.list_selected = newSelection for n in newSelection: n.selected = True n.drawSelectionBox() def Select(self, node=None): """ Select a node, given as a string (full name), or as a Node object. """ if self.multi_choice: if self not in self.list_selected: self.selectionHistory.append(self.list_selected) self.list_selected.append(self) prev_selection=self.GetSelected() result = False if type(node) is types.StringType: fullname=node else: assert isinstance(node, Node) if node.parent: fullname = node.parentFullname + "|"+node.name else: fullname = node.name path = fullname.split('|') for root in self.roots: if root.name == path[0]: path.remove(path[0]) if len(path)==0: root.selected = True root.draw() result = True else: if not root.expanded: root.invoke() result = root.DoSelect(root,path) break # make sure the selected is visible in canvas n = self.GetSelected() if result and n==prev_selection: return #warn( "The node" + n.name + " was already selected") self.showNode(n) if not result: warn( "Selection failed. Check the input") return else: if self.actions['select'] is not None: self.actions['select'](self.current_selected) def showNode(self, n): """move the tree to make sure the node n is visible """ y = n.y - OFFSET + 0.0 bb = self.canvas.bbox(Tkinter.ALL) self.canvas.yview_moveto(y/bb[3]) def deSelect(self): if self.current_selected: self.current_selected.selected = False self.current_selected.draw() if self.actions['deselect'] is not None: self.actions['deselect'](self.current_selected) self.current_selected = None return def ButtonAdd_cb(self, event = None): """Callback function, when the Button is clicked""" self.AddToHistoryList() def AddToHistoryList(self): """Add current selelcted node to the history list""" if self.nohistory: return current=self.current_selected if current==None: return if current.parentFullname is not None: fullname=current.parentFullname + "|"+current.name else: fullname=current.name self.historyList.Insert(fullname, current) return def DeleteFromHistoryList(self, index=0): self.historyList.Delete(index) def LockHistoryItem(self, index): """Lock the n-th ListItem object in the history list n is specified as index, range [0, len_of_list-1] After locking, the item cannot be deleted """ self.historyList.SaveItem(index) def UnLockHistoryItem(self, index): """Unlock the n-th ListItem object in the history list n is specified as index, range [0, len_of_list-1] After unlocking, the item can be deleted """ self.historyList.UnSaveItem(index) def savePaneWidth_cb(self, sizes): # only way I found to keep track of pane sizes self.currentPanesWidth = sizes def configureTopFrame_cb(self, event=None): # prevent history from growing when width changes w = self.currentPanesWidth[0] # width = 0 makes pane full width while width=0. make it disappear # savePaneWidth_cb saved 0 when panes is configured with 0. if w==0: w = 0. self.topFrame.configurepane('history', size=w) def copy(self,newtree): """ copy the tree root to another specify NewTree. Also allow to update the new tree. """ assert isinstance(newtree, TreeView) for root in self.roots: self.copyNode(newtree,root,root.children) def copyNode(self,newtree,node,children,parent=None): """ add a node from tree to a new tree Function use recursively to go through all the children of a node """ # test if node already in newtree new_node = newtree.findNodeFromName(node.GetFullName()) if not new_node: new_node = newtree.addNode(node.name,object=node.object, parent=parent) for child in children: self.copyNode(newtree,child,child.children,parent=new_node) def deleteAllChildren(self,node): """ delete all the children of a node """ # we make a deep copy of the children list # so we do not work on a truncated one after # a node has been deleted children = node.children[:] for child in children: self.deleteNode(child) ## def toggleHistoryVisibility(self, event=None): ## """Callback function. Show or hide the HistoryList ## """ ## if self.historyShown: ## self.historyShown=False ## self.showHideHistoryIcon.configure(text="Hide History") ## self.oldHistSize = self.currentPanesWidth[0] ## self.topFrame.configurepane('history', size=0.) ## else: ## self.historyShown=True ## self.showHideHistoryIcon.configure(text="Show History") ## self.topFrame.configurepane('history', size=self.oldHistSize) def moveNode(self,nodeFrom, newParent=None): """ this function change the parent of node 'nodeFrom' to be newParent. The whole sub-tree of nodeFrom should be appended as the child of newParent node. nodeFrom : a Node object or fullName of Node newParent: a Node object or fullName of Node, if None, add as new root """ if nodeFrom == None: return # if newParent is None: add as new root node if type(newParent) is types.StringType: input=newParent newParent = self.findNodeFromName(newParent) if newParent is None: warn( "error in moveNode, check name of parent: "+ input ) return if type(nodeFrom) is types.StringType: input=nodeFrom nodeFrom = self.findNodeFromName(nodeFrom) if nodeFrom is None: warn("error in moveNode, check name of node to move: "+input) return # now the nodeFrom and newParent both are Node object. if nodeFrom.parent == newParent: return # same parent? node = nodeFrom parent = newParent oldParent=node.parent node._collapseAll() if parent is not None: if parent.expanded and parent.isShown(): parent.invoke() self.deleteNode_byName(nodeFrom.name, nodeFrom.parentFullname) parent.children.append(node) node.parent=parent node.parentFullname = parent.GetFullName() node.height=1 node.expanded =False node.updateHeight(parent) node.updateHeight(oldParent) node.updateX() root = node.getRootNode() self.do_updateY(root) if parent.isShown(): parent.draw_new_insert() if oldParent is not None and oldParent.isShown(): oldParent.draw() else: self.deleteNode_byName(nodeFrom.name, nodeFrom.parentFullname) self.roots.append(node) node.parent=None node.parentFullname = None node.height=1 node.expanded=False node.updateHeight(oldParent) node.updateX() self.updateY() self.draw_new_root(node) bb = self.canvas.bbox(Tkinter.ALL) self.canvas.configure( scrollregion=(0, 0,bb[2]+OFFSET, bb[3]+OFFSET)) return def expandAllNodes(self): """ expanding all the tree nodes """ canvas = self.tree.canvas canvas.configure(cursor='watch') canvas.update_idletasks() for r in self.roots: if not r.expanded: r.invoke() r._expandAll() canvas.configure(cursor='') def collapseAllNodes(self): """only showing the root nodes""" for r in self.roots: if r.expanded: r.invoke() #r._collapseAll() # Notice: this function is never called.. # collapse the root nodes will do the job def displayValueInTree(self, display=False): if display == self.displayValue: return self.displayValue = display for r in self.roots: r.invoke() ## end of file mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/README0000644000175000017500000000010607763505213027025 0ustar debiandebianplease refer to the TV_sample.py for information about insert/delete mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/objectBrowser.py0000644000175000017500000002047610440106057031332 0ustar debiandebian######################################################################### # # Date: Jun 2004 Author: Daniel Stoffler # # stoffler@scripps.edu # # The Scripps Research Institute (TSRI) # Molecular Graphics Lab # La Jolla, CA 92037, USA # # Copyright: Daniel Stoffler and TSRI # ######################################################################### import Tkinter import types import inspect from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView class ObjectBrowser: """Introspect an object with a tree-browser GUI. Click on the [+] or double-click on the folder icons to expand 1 level. At the top of this GUI 3 Radiobuttons are visible. Default is 'Attributes' which means we do not include callable methods. 'Methods' will only display callable methods. 'All' will display everything. Required constructor argument: the objetc to be browsed. Optional constructor arguments: rootName: a string used as the name for the root node. Default: 'root' title: a string used as window title. Default: 'Python Introspector' refresh: this has to be either None or a callable method that returns an object to be introspected. If refresh is not None a new button is added to the left of the Dismiss button. Clicking this button calls the callable method (which must return a new object) and rebuilds the tree. If refresh is None, we do not add the 'Refresh' button. Default: None API: show() displays the GUI hide() hides the GUI (this does not destroy the window) rebuild() destroys the current tree and rebuilds it To get an idea of how this thing works, start Python, import this class, then type: browser = ObjectBrowser( __builtins__ ) """ def __init__(self, object, rootName='root', title='Python Introspector', refresh=None): self.object = object # the object to be introspeced self.rootName = rootName # name the root node self.title = title # title of the GUI assert refresh is None or callable(refresh) self.refresh = refresh # used to rebuild tree with new data self.busyRebuilding = False self.buildGUI() def buildGUI(self): self.root = Tkinter.Toplevel() self.root.title(self.title) self.root.protocol('WM_DELETE_WINDOW', self.hide ) self.topFrame = Tkinter.Frame(self.root, relief='raised', bd=4) self.topFrame.pack(fill="x", side='top', ) choices = ['All', 'Attributes', 'Methods'] self.choicesVarTk = Tkinter.StringVar() self.choicesVarTk.set('Attributes') for c in choices: b = Tkinter.Radiobutton( self.topFrame, variable = self.choicesVarTk, text=c, value=c, command=self.rebuild) b.pack(side='left', expand=1, fill='x') self.frame = Tkinter.Frame(self.root) self.frame.pack(expand=1, fill="both")#, side='bottom') frame = Tkinter.Frame(self.root, bd=3) frame.pack(fill="x", side='bottom') # add Refresh button if specified if self.refresh is not None: button1 = Tkinter.Button(frame, text='Refresh', command=self.refresh_cb) button1.pack(expand=1, fill="x", side='left') button2 = Tkinter.Button(frame, text='Dismiss', command=self.hide) button2.pack(expand=1, fill="x", side='left') else: button2 = Tkinter.Button(frame, text='Dismiss', command=self.hide) button2.pack(expand=1, fill="x") # add root node self.createTree() def show(self, event=None): """show GUI""" self.root.deiconify() if self.refresh is not None: data = self.refresh() if data != self.object: self.object = data self.rebuild() def hide(self, event=None): """hide GUI, note: this does not destroy the GUI""" self.root.withdraw() def createTree(self): """build a TreeView object, add it to the GUI""" self.tree = TreeView(master=self.frame, nohistory=True, displayValue=True) # I want white background, so: self.tree.canvas.configure(bg='white') hasChildren = not self.isLeafNode(self.object) node = self.tree.addNode(parent=None, name=self.rootName, object=self.object, hasChildren=hasChildren, firstExpand_cb=self.expandTreeNode_cb) def expandTreeNode_cb(self, node=None, object=None): """expand the given object by 1 level (i.e. all its children)""" if type(object) in [types.ListType, types.TupleType]: children = [] i = 0 for o in object: children.append( (str(i), o) ) i = i + 1 elif type(object) == types.DictType: children = [] for k, v in object.items(): children.append( (k, v) ) elif type(object) in [ types.BooleanType, types.FloatType, types.IntType, types.LongType, types.NoneType, types.StringType ]: children = [] else: if self.choicesVarTk.get() == 'All': children = inspect.getmembers(object) elif self.choicesVarTk.get() == 'Attributes': children = inspect.getmembers(object, lambda x: type(x) is not types.MethodType) elif self.choicesVarTk.get() == 'Methods': if node.parent is None: # only at the first level do we # distinguish between methods, attributes, etc children = inspect.getmembers(object, inspect.ismethod) else: #second and deeper levels: here we want to see everything children = inspect.getmembers(object) from time import time t1 = time() nameList=[] objList=[] hasChildrenList=[] for (name, data) in children: hasChildren = not self.isLeafNode(data) hasChildrenList.append(hasChildren) nameList.append(str(name)) objList.append(data) n = self.tree.addNodeSet(parent=node, name=nameList, object=objList, hasChildren=hasChildrenList, firstExpand_cb=self.expandTreeNode_cb) # self.tree.canvas.update() #print "firstExpand_cb :", time()-t1 def isLeafNode(self, x): """Helper method: returns True if this object does not have children (e.g., int, float, boolean, etc)""" if type(x) in [ types.BooleanType, types.FloatType, types.IntType, types.LongType, types.NoneType, types.StringType]: return True elif type(x) in [types.DictionaryType, types.ListType] and \ len(x)==0: return True else: return False def rebuild(self, event=None): """destroy old tree, delete frame, create new tree and add it to the GUI""" self.tree.destroy() self.tree = None self.createTree() self.busyRebuilding = False def refresh_cb(self, event=None): """rebuild tree with new data (calls rebuild)""" # Note: on slow machines, if one repeatetly clicks the 'Refresh' # button very, very fast, we can reach a state where the canvas has # been destroyed while we try to add an icon on it if self.busyRebuilding is True: return if self.refresh is not None: self.busyRebuilding = True # call the callback to get a new object to introspect self.object = self.refresh() # and rebuild tree self.rebuild() if __name__ == "__main__": # define a callback method def foo(): return __builtins__ # instanciate the browser, passing the Python moduel __builtins__ to be # browsed, and a callback function foo that will add the 'Refresh' # button browser = ObjectBrowser( __builtins__, refresh=foo ) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/Tests/0000755000175000017500000000000012146210076027241 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/Tests/testTree.py0000644000175000017500000003514310363025030031411 0ustar debiandebianfrom time import sleep from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView import Tkinter def pause(sleepTime=None): if sleepTime is None: from mglutil.gui.BasicWidgets.Tk.TreeWidget.Tests import pauseLength as sleepTime sleep(sleepTime) def test_addNode(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView tv = TreeView() # addNode(nodename, parentname = None) tv.addNode('protein_1') tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') tv.addNode('H', parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') tv.addNode('protein_3') tv.addNode('residue_21', parent='protein_2') tv.addNode('residue_25', parent='protein_2') tv.addNode('basdfe', parent='protein_2|residue_21') tv.addNode('AminoAcid', parent='protein_2|residue_21') tv.addNode('etc', parent='protein_1|residue_11') tv.addNode('color', parent='protein_1|residue_11|etc') tv.addNode('density', parent='protein_1|residue_11|etc') tv.addNode('residue_12',parent='protein_1') tv.addNode('2', parent='protein_2|residue_21') tv.addNode('3', parent='protein_2|residue_21') tv.addNode('4', parent='protein_2|residue_21') tv.addNode('L', parent='protein_2|residue_21|AminoAcid') for a in range(10): name = 'A' + str(a) tv.addNode(name, parent='protein_2|residue_21|AminoAcid') tv.addNode('protein_4') tv.addNode('residue_22', parent='protein_2') # the addNode function check the node before adding to the parentname # if already in the child list, the new node will NOT be added. tv.addNode('residue_22', parent='protein_2') # addNode returns the handle of the noded added node = tv.addNode('S', parent='protein_2|residue_21|AminoAcid') print node.name, "was added to" , node.parentFullname tv.destroy() def test_createTree(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView tv = TreeView() # paint canvas red so we see it disappear when distroyed tv.canvas.configure(bg='red') Tkinter._default_root.update() pause(0.2) tv.destroy() def test_createWithMaster(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView import Tkinter master = Tkinter.Toplevel() tv = TreeView(master) tv.canvas.configure(bg='red') tv.canvas.update() pause(1) tv.destroy() def test_hideShow(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView tv = TreeView() # paint canvas red so we see it disappear when distroyed tv.canvas.configure(bg='red') tv.hide() tv.canvas.update() pause(1) tv.show() tv.canvas.update() pause(1) tv.destroy() def test_deleteNode(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView tv = TreeView() #Add some nodes tv.addNode('protein_1') tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') node = tv.addNode('H', parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') # Now deleteing tv.deleteNode_byName('A', parent='protein_1|residue_11|AminoAcid') tv.deleteNode_byName('protein_2') tv.deleteNode(node) # the following returns error message, # since AminoAcid is NOT the child of 'protein_1' tv.deleteNode_byName('AminoAcid', parent='protein_1') # This should work tv.deleteNode_byName('AminoAcid', parent='protein_1|residue_11') tv.destroy() def test_Expand_or_Collaps(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView tv = TreeView() #Add some nodes tv.addNode('protein_1') node = tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') tv.addNode('H', parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') # equivalent to print "Is node", node.name, "expanded?: ", print node.expanded tv.ExpandNode('protein_1|residue_11') print "After expanding, is node", node.name, "expanded?: ", print node.expanded tv.CollapseNode('protein_1|residue_11') print "After collapsing, is node", node.name, "expanded?: ", print node.expanded tv.destroy() def test_SelectNode_deSelectNode(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView tv = TreeView() #Add some nodes tv.addNode('protein_1') node = tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') tv.addNode('H', parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') selection = tv.GetSelected() if selection: print "Now", selection.name, "is selected" else: print "Nothing is selected" # Now select a node tv.Select("protein_1|residue_11|AminoAcid|A") selection = tv.GetSelected() if selection: print "***", selection.name, "is selected ***" else: print "Nothing is selected" tv.destroy() def test_Add_to_History(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView tv = TreeView() tv.addNode('protein_1') tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') tv.addNode('H', parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') tv.Select("protein_1|residue_11|AminoAcid|A") selection = tv.GetSelected() if selection: print "Adding", selection.name, "to the history list" else: print "Nothing is selected" # add the current selected node to the list tv.AddToHistoryList() tv.destroy() def test_Delete_from_History(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView tv = TreeView() tv.addNode('protein_1') tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') tv.addNode('H', parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') tv.Select("protein_1|residue_11|AminoAcid|A") tv.AddToHistoryList() tv.Select("protein_2") tv.AddToHistoryList() tv.Select("protein_1|residue_11") tv.AddToHistoryList() tv.Select("protein_1|residue_11|AminoAcid|H") tv.AddToHistoryList() # delete tv.DeleteFromHistoryList(2) list=[0,2] tv.historyList.Delete_multi(list) tv.destroy() def test_Lock_Unlock_History(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView tv = TreeView() tv.addNode('protein_1') tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') tv.addNode('H', parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') tv.Select("protein_1|residue_11|AminoAcid|A") tv.AddToHistoryList() tv.Select("protein_2") tv.AddToHistoryList() tv.Select("protein_1|residue_11") tv.AddToHistoryList() tv.Select("protein_1|residue_11|AminoAcid|H") tv.AddToHistoryList() # lock tv.LockHistoryItem(2) tv.LockHistoryItem(3) # unlock tv.UnLockHistoryItem(2) tv.destroy() def foo(item): # called by test_SetAction() print item.name def test_SetAction(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView tv = TreeView() tv.addNode('protein_1') tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') #Set what to do after an action here. tv.setAction(event='select', function=foo) tv.Select("protein_1") tv.destroy() def test_template(): from mglutil.gui.BasicWidgets.Tk.TreeWidget.tree import TreeView tv = TreeView() tv.destroy() def test_NoHistory(): """ Test the crateion of a TreeView with no history Pane """ tv = TreeView(nohistory=True) # paint canvas red so we see it disappear when distroyed tv.canvas.configure(bg='red') tv.addNode('protein_1') tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') tv.addNode('H', parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') tv.Select("protein_1|residue_11|AminoAcid|A") selection = tv.GetSelected() if selection: print "Adding", selection.name, "to the history list" else: print "Nothing is selected" # add the current selected node to the list tv.AddToHistoryList() #tv.topFrame.master.update() pause(0.2) tv.destroy() def test_obj2Node(): """ Test the creation of a TreeView with obj2Node == false In that case there is not 1to 1 relation between object and node tv.objToNode should stay empty. """ tv = TreeView(obj2Node=False) # paint canvas red so we see it disappear when distroyed tv.canvas.configure(bg='red') tv.addNode('protein_1') tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') tv.addNode('H', parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') tv.Select("protein_1|residue_11|AminoAcid|A") assert tv.objToNode == {} #tv.topFrame.master.update() pause(0.2) tv.destroy() #""" def test_copyTree(): """ Test the function to copy a tree into another one""" tv = TreeView() tv2 = TreeView() # paint canvas red so we see it disappear when distroyed tv.canvas.configure(bg='red') tv.addNode('protein_1') tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') nodetest = tv.addNode('H',parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') tv.copy(tv2) node = tv2.findNodeFromName(nodetest.GetFullName()) assert node.name == 'H' Tkinter._default_root.update() pause() tv.destroy() tv2.destroy() def test_delete2TreesWithSameMaster(): """ Test the function that if a tree does not own its master it does not destgroy it""" tv = TreeView() tv2 = TreeView() Tkinter._default_root.update() pause() tv.destroy() tv2.destroy() def test_moveNode(): """ Test the function to move a tree node (including subtree) """ tv = TreeView() # paint canvas red so we see it disappear when distroyed tv.canvas.configure(bg='red') tv.addNode('protein_1') tv.addNode('residue_11',parent='protein_1') tv.addNode('AminoAcid',parent='protein_1|residue_11') tv.addNode('A',parent='protein_1|residue_11|AminoAcid') tv.addNode('H',parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') tv.addNode('protein_333') tv.addNode('residue_21',parent='protein_2') tv.addNode('residue_Root',parent='protein_2') tv.addNode('basdfe',parent='protein_2|residue_21') tv.addNode('AminoAcidXXX',parent='protein_2|residue_21') tv.addNode('etc',parent='protein_1|residue_11') tv.addNode('color',parent='protein_1|residue_11|etc') tv.addNode('density',parent='protein_1|residue_11|etc') tv.addNode('residue_Moving',parent='protein_1') tv.addNode('2',parent='protein_2|residue_21') tv.addNode('3',parent='protein_2|residue_21') tv.addNode('4',parent='protein_2|residue_21') tv.addNode('L',parent='protein_2|residue_21|AminoAcidXXX') tv.addNode('protein_33xxxxxxx') node=tv.roots[0].children[1] dest=tv.roots[1].children[1] tv.moveNode(node,dest) assert node.parent ==dest node.GetFullName()=='protein_2|residue_Root|residue_Moving' assert dest.children[0] == node #tv.topFrame.master.update() pause(0.2) tv.destroy() def test_moveNodeUpOrDown(): """ Test the function to move a tree node up and down in the node list """ tv = TreeView() # paint canvas red so we see it disappear when distroyed tv.addNode('protein_1') tv.addNode('residue_11', parent='protein_1') tv.addNode('AminoAcid', parent='protein_1|residue_11') tv.addNode('A', parent='protein_1|residue_11|AminoAcid') tv.addNode('H', parent='protein_1|residue_11|AminoAcid') tv.addNode('protein_2') tv.addNode('protein_3') tv.addNode('residue_21', parent='protein_2') tv.addNode('residue_25', parent='protein_2') tv.addNode('basdfe', parent='protein_2|residue_21') tv.addNode('AminoAcid', parent='protein_2|residue_21') tv.addNode('etc', parent='protein_1|residue_11') tv.addNode('color', parent='protein_1|residue_11|etc') tv.addNode('density', parent='protein_1|residue_11|etc') tv.addNode('residue_12',parent='protein_1') tv.addNode('2', parent='protein_2|residue_21') tv.addNode('3', parent='protein_2|residue_21') tv.addNode('4', parent='protein_2|residue_21') tv.addNode('L', parent='protein_2|residue_21|AminoAcid') tv.addNode('protein_33xxxxxxx') node=tv.roots[0].children[1] dest=tv.roots[1].children[1] ## NOTE: self.objToNode can also return node instance. n2=tv.findNodeFromName('protein_1|residue_12') n1=tv.findNodeFromName('protein_1|residue_11') p1=tv.findNodeFromName('protein_1') n2.moveUp() assert p1.children.index(n2)==0 n2.moveDown() assert p1.children.index(n1)==0 #tv.topFrame.master.update() pause(0.2) tv.destroy() if __name__=='__main__': test_createTree() test_createWithMaster() test_hideShow() test_addNode() test_deleteNode() test_Expand_or_Collaps() test_SelectNode_deSelectNode() test_Add_to_History() test_Delete_from_History() test_Lock_Unlock_History() test_SetAction() test_template() test_NoHistory() test_obj2Node() test_copyTree() test_delete2TreesWithSameMaster() test_moveNode() test_moveNodeUpOrDown() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/Tests/__init__.py0000644000175000017500000000002510114736317031353 0ustar debiandebianpauseLength = 0.001 mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/TreeWidget/__init__.py0000644000175000017500000000000007763505213030247 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/Tk/Dial.py0000755000175000017500000007724211216252251025334 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ######################################################################### # # Date: Mai 2001 Authors: Michel Sanner, Daniel Stoffler # # sanner@scripps.edu # stoffler@scripps.edu # # Copyright: Michel Sanner, Daniel Stoffler and TSRI # ######################################################################### import Tkinter import math import types import sys import os from mglutil.util.callback import CallbackManager from mglutil.util.misc import ensureFontCase from optionsPanel import OptionsPanel from KeyboardEntry import KeyboardEntry class Dial(Tkinter.Frame, KeyboardEntry): """This class implements a Dial widget. The widget has a pointer that can be moved around a circle. The range corresponding to one full turn can be specified as well as the min and max values that are allowed. By defaults these are set to None meaning that there is no min and no max. One turn corresponds to 360 units by default. A dial can also operate in discrete mode (if self.increment is set to x). In this mode the values will be restrained to be multiples of self.increment. The Widget has a Callback manager. Callback functions get called at every value change if self.contiguous is set to 1, else they get called when the mouse button is released. They always get called with the current value as an argument. An optional label can be displayed at the center of the Dial widget. The size of the dial has to be specified at instanciation. Other parameters can be set after the widget has been created. The widget tried to adjust automatically the size of the arrow according to the size of the dial. The widget has a configure() method: type, min, max, increment, precision, showLabel, value, continuous, oneTurn can be set this way. master, labCfg and size can be passed only to the constructor. a lock() method is used to disable the various gui components of the options panel. Usage: .lock(=) components see configure(). value is 0 or 1. 1 disables, 0 enables. Setting values with increment enabled: if using the method set(), the actual value will 'snap' to the next increment. i.e., if the value is set to 3, and the increment is set to 2, setting the value to 6 will actually result in 7 (3,5,7,9,.....) To still be able to set the value, disregarding the current active increment, the set method understands the optional keyword force=True, i.e. dial.set(, force=True)), which will set the value to . The increment will now be added to this new """ def __init__(self, master=None, type='float', labCfg={'fg':'black','side':'left', 'text':None}, min=None, max=None, increment=.0, precision=2, showLabel=1, value=0.0, continuous=1, oneTurn=360., size=50, callback=None, lockMin=0, lockBMin=0, lockMax=0, lockBMax=0, lockIncrement=0, lockBIncrement=0, lockPrecision=0, lockShowLabel=0, lockValue=0, lockType=0, lockContinuous=0, lockOneTurn=0, **kw): Tkinter.Frame.__init__(self, master) Tkinter.Pack.config(self) self.callbacks = CallbackManager() # object to manage callback # functions. They get called with the # current value as an argument # initialize various attributes with default values self.precision = 2 # decimal places self.min = None # minimum value self.max = None # maximum value self.increment = increment # value increment self.minOld = 0. # used to store old values self.maxOld = 0. self.incrementOld = increment self.size = 50 # defines widget size self.offsetValue = 0. # used to set increment correctly self.lab = None # label self.callback = None # user specified callback self.opPanel = None # option panel widget self.oneTurn = 360. # value increment for 1 full turn self.value = 0.0 # current value of widget self.oldValue = 0.0 # old value of widget self.showLabel = 1 # turn on to display label on self.continuous = 1 # set to 1 to call callbacks at # each value change, else gets called # on button release event self.angle = 0. # angle corresponding to value self.labCfg = labCfg # Tkinter Label options self.labelFont = ( ensureFontCase('helvetica'), 14, 'bold') # label font self.labelColor = 'yellow' # label color self.canvas = None # the canvas to create the widget in self.usedArcColor = '#aaaaaa' # filled arc color of used portion self.unusedArcColor = '#cccccc' # filled arc color of unused portion self.pyOver180 = math.pi/180.0 # constants used in various places self.threeSixtyOver1turn = 1 self.piOver1turn = math.pi/360. self.lockMin = lockMin # lock vars are used in self.lock() self.lockMax = lockMax # to lock/unlock entries in optionpanel self.lockIncrement = lockIncrement self.lockBMin = lockBMin self.lockBMax = lockBMax self.lockBIncrement = lockBIncrement self.lockPrecision = lockPrecision self.lockShowLabel = lockShowLabel self.lockValue = lockValue self.lockType = lockType self.lockContinuous = lockContinuous self.lockOneTurn = lockOneTurn self.setArrow() # configure with user-defined values self.setSize(size) self.setCallback(callback) self.setContinuous(continuous) self.setType(type) self.setPrecision(precision) self.setOneTurn(oneTurn) self.setMin(min) self.setMax(max) self.setIncrement(increment) self.setShowLabel(showLabel) self.setValue(value) self.setLabel(self.labCfg) self.createCanvas(master) canvas = self.canvas canvas.bind("", self.mouseDown) canvas.bind("", self.mouseUp) canvas.bind("", self.mouseMove) canvas.bind("", self.toggleOptPanel) if os.name == 'nt': #sys.platform == 'win32': canvas.bind("", self.mouseWheel) else: canvas.bind("", self.mouseWheel) canvas.bind("", self.mouseWheel) KeyboardEntry.__init__(self, (canvas,), self.setFromEntry) self.opPanel = OptionsPanel(master = self, title="Dial Options") ## if self.callback: ## self.callbacks.AddCallback(self.callback) def setFromEntry(self, valueString): try: self.set(self.type(valueString)) except ValueError: # fixme we would like to pop this up in a window maybe import traceback traceback.print_stack() traceback.print_exc() def handleKeyStroke(self, event): # handle key strokes for numbers only in widget keyboard entry label key = event.keysym if key.isdigit() or key=='period' or key=='minus' or key=='plus': if key == 'period': key = '.' elif key == 'minus': key = '-' elif key == 'plus': key = '+' self.typedValue += key self.typedValueTK.configure(text=self.typedValue) else: KeyboardEntry.handleKeyStroke(self, event) def setSize(self, size): """Set widget size. Size must be of type int and greater than 0""" assert isinstance(size, types.IntType),\ "Illegal size: expected type %s, got %s"%(type(1), type(size) ) assert size > 0, "Illegal size: must be > 0, got %s"%size self.size = size def setCallback(self, cb): """Set widget callback. Must be callable function. Callback is called every time the widget value is set/modified""" assert cb is None or callable(cb) or type(cb) is types.ListType,\ "Illegal callback: must be either None or callable, or list. Got %s"%cb if cb is None: return elif type(cb) is types.ListType: for func in cb: assert callable(func), "Illegal callback must be callable. Got %s"%func self.callbacks.AddCallback(func) else: self.callbacks.AddCallback(cb) self.callback = cb def toggleOptPanel(self, event=None): if self.opPanel.flag: self.opPanel.Dismiss_cb() else: if not hasattr(self.opPanel, 'optionsForm'): self.opPanel.displayPanel(create=1) else: self.opPanel.displayPanel(create=0) def setArrow(self, size=None): if size is not None: self.setSize(size) aS = self.size/40 self.arrowLength = max(3, 3*aS) # arrow head length self.arrowWidth = max(2, aS) # half the arrow body width self.arrowBorderwidth = max(1, self.arrowWidth/2) # width of arrow # shadow lines self.arrowHeadWidth = 2*self.arrowWidth # width of arrow head base def mouseDown(self, event): # remember where the mouse went down self.lastx = event.x self.lasty = event.y def mouseUp(self, event): # call callbacks if not in continuous mode if not self.continuous: self.callbacks.CallCallbacks(self.opPanel.valInput.get()) if self.showLabel == 2: # no widget labels on mouse release self.canvas.itemconfigure(self.labelId2, text='') self.canvas.itemconfigure(self.labelId, text='') def mouseMove(self, event): dx = event.x-self.xm dy = self.ym-event.y n = math.sqrt(dx*dx+dy*dy) if n == 0.0: v = [0.0, 0.0] else: v = [dx/n, dy/n] # find the cosine of the angle between new hand position and previous # hand position ma = v[0]*self.vector[0] + v[1]*self.vector[1] # assure no rounding errors if ma > 1.0: ma = 1.0 elif ma < -1.0: ma = -1.0 # compute angle increment compared to current vector ang = math.acos(ma) # find the sign of the rotation, sign of z component of vector prod. oldv = self.vector normz = oldv[0]*v[1] - oldv[1]*v[0] if normz>0: ang = -1. * ang # compute the new value val = self.value + ang*self.oneTurnOver2pi self.set(val) self.lastx = event.x self.lasty = event.y def mouseWheel(self, event): #print "mouseWheel", event, event.num if os.name == 'nt': #sys.platform == 'win32': if event.delta > 0: lEventNum = 4 else: lEventNum = 5 else: lEventNum = event.num if lEventNum == 4: self.set(self.value+self.oneTurn) else: self.set(self.value-self.oneTurn) def get(self): return self.type(self.value) def printLabel(self): if self.canvas is None: return self.canvas.itemconfigure(self.labelId2, text=self.labelFormat%self.value)#newVal) self.canvas.itemconfigure(self.labelId, text=self.labelFormat%self.value)#newVal) def set(self, val, update=1, force=0): # if force is set to 1, we call this method regardless of the # widget configuration. This is for example the case if the dial # is set to continuous=0, but the value is set in the options panel # snap to closest increment if self.increment is not None and self.increment != 0. and not force: offset = self.offsetValue%self.increment dval = round(val/self.increment) * self.increment if val < dval: dval = dval + offset - self.increment else: dval = dval + offset if self.min is not None and dval < self.min: dval = self.min elif self.max is not None and dval > self.max: dval = self.max # recompute vector and angle corresponding to val self.angle = (dval%self.oneTurn)*self.threeSixtyOver1turn if dval <0.0: self.angle = self.angle - 360.0 a = self.angle*self.pyOver180 self.vector = [math.sin(a), math.cos(a)] self.value = dval self.offsetValue = dval else: # 'regular' mode, i.e. no step-wise increment if self.min is not None and val < self.min: val = self.min elif self.max is not None and val > self.max: val = self.max # recompute vector and angle corresponding to val self.angle = (val%self.oneTurn)*self.threeSixtyOver1turn if val <0.0: self.angle = self.angle - 360.0 a = self.angle*self.pyOver180 self.vector = [math.sin(a), math.cos(a)] self.value = val self.offsetValue = val #update arrow in display self.drawArrow() newVal = self.get() if self.continuous or force: if update and self.oldValue != newVal or force: self.oldValue = newVal self.callbacks.CallCallbacks(newVal) if self.showLabel==2: self.printLabel() else: if self.showLabel==2: self.printLabel() if self.showLabel==1: self.printLabel() if self.opPanel: self.opPanel.valInput.set(self.labelFormat%newVal) def drawArrow(self): if self.canvas is None: return # end point x1 = self.xm + self.vector[0]*self.rad y1 = self.ym - self.vector[1]*self.rad # point at arrow head base xb = self.xm + self.vector[0]*self.radNoArrow yb = self.xm - self.vector[1]*self.radNoArrow # vector orthogonal to arrow n = [-self.vector[1], -self.vector[0]] pts1 = [ self.xm+n[0]*self.arrowWidth, self.ym+n[1]*self.arrowWidth, xb+n[0]*self.arrowWidth, yb+n[1]*self.arrowWidth, xb+n[0]*self.arrowHeadWidth, yb+n[1]*self.arrowHeadWidth, x1, y1 ] pts2 = [ x1, y1, xb-n[0]*self.arrowHeadWidth, yb-n[1]*self.arrowHeadWidth, xb-n[0]*self.arrowWidth, yb-n[1]*self.arrowWidth, self.xm-n[0]*self.arrowWidth, self.ym-n[1]*self.arrowWidth ] canvas = self.canvas if self.vector[0] > 0.0: col1 = '#DDDDDD' col2 = 'black' else: col1 = 'black' col2 = '#DDDDDD' apply( canvas.coords, (self.arrowPolId,) + tuple(pts1+pts2) ) apply( canvas.coords, (self.arrowPolborder1,) + tuple(pts1) ) canvas.itemconfigure( self.arrowPolborder1, fill=col1 ) apply( canvas.coords, (self.arrowPolborder2,) + tuple(pts2) ) canvas.itemconfigure( self.arrowPolborder2, fill=col2 ) canvas.itemconfigure(self.arcId, extent = 0.0-self.angle) def createCanvas(self, master): size = self.size self.frame = Tkinter.Frame(self, borderwidth=3, relief='sunken') self.canvas = Tkinter.Canvas(self.frame, width=size+2, height=size+2) self.xm = self.ym = size/2+2 self.rad = size/2 self.radNoArrow = self.rad-self.arrowLength self.vector = [0, 1] x1 = self.xm + self.vector[0]*self.rad y1 = self.ym + self.vector[1]*self.rad canvas = self.canvas self.circleId = canvas.create_oval(2,2,size,size, width=1, fill=self.unusedArcColor) self.arcId = canvas.create_arc(2,2,size,size, start=90., extent=0, fill=self.usedArcColor) canvas.create_line(2, self.ym, size+2, self.ym) canvas.create_line(self.xm, 2, self.ym, size+2) self.arrowPolId = canvas.create_polygon( 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, fill='gray75' ) self.arrowPolborder1 = canvas.create_line( 0,0,0,0,0,0,0,0, fill='black', width = self.arrowBorderwidth) self.arrowPolborder2 = canvas.create_line( 0,0,0,0,0,0,0,0, fill='white', width = self.arrowBorderwidth ) r = size/20 off = self.arrowBorderwidth canvas.create_oval(self.xm-r,self.ym-r-off/2,self.xm+r,self.ym+r-off/2, fill='#DDDDDD', outline='white') canvas.create_oval(self.xm-r,self.ym-r+off,self.xm+r,self.ym+r+off, fill='black', outline='black') canvas.create_oval(self.xm-r,self.ym-r,self.xm+r,self.ym+r, fill='gray70', outline='#DDDDDD') self.labelId2 = canvas.create_text(self.xm+2, self.ym+2, fill='black', justify='center', text='', font = self.labelFont) self.labelId = canvas.create_text(self.xm, self.ym, fill=self.labelColor, justify='center', text='', font = self.labelFont) self.drawArrow() self.opPanel = OptionsPanel(master = self, title="Dial Options") # pack em up self.canvas.pack(side=Tkinter.TOP) self.frame.pack(expand=1, fill='x') self.toggleWidgetLabel(self.showLabel) def toggleWidgetLabel(self, val): if val == 0: # no widget labels self.showLabel=0 self.canvas.itemconfigure(self.labelId2, text='') self.canvas.itemconfigure(self.labelId, text='') if val == 1: # show always widget labels self.showLabel=1 self.printLabel() if val == 2: # show widget labels only when mouse moves self.showLabel=2 self.canvas.itemconfigure(self.labelId2, text='') self.canvas.itemconfigure(self.labelId, text='') def setValue(self, val): if type(val) == types.StringType: val = float(val) assert type(val) in [types.IntType, types.FloatType],\ "Illegal type for value: expected %s or %s, got %s"%( type(1), type(1.0), type(val) ) # setValue does NOT call a callback! if self.min is not None and val < self.min: val = self.min if self.max is not None and val > self.max: val = self.max self.value = self.type(val) self.offsetValue=self.value self.oldValue = self.value #update arrow in display self.angle = (self.value%self.oneTurn)*self.threeSixtyOver1turn if self.value <0.0: self.angle = self.angle - 360.0 a = self.angle*self.pyOver180 self.vector = [math.sin(a), math.cos(a)] self.drawArrow() if self.showLabel == 1: self.printLabel() if self.opPanel: self.opPanel.valInput.set(self.labelFormat%self.value) def setLabel(self, labCfg): self.labCfg = labCfg text = labCfg.get('text', None) if text is None or text=='': return d={} for k, w in self.labCfg.items(): if k == 'side': continue else: d[k] = w if not 'side' in self.labCfg.keys(): self.labCfg['side'] = 'left' if not self.lab: self.lab = Tkinter.Label(self, d) self.lab.pack(side=self.labCfg['side']) self.lab.bind("", self.toggleOptPanel) else: self.lab.configure(text) ##################################################################### # the 'configure' methods: ##################################################################### def configure(self, **kw): for key,value in kw.items(): # the 'set' parameter callbacks if key=='labCfg': self.setLabel(value) elif key=='type': self.setType(value) elif key=='min': self.setMin(value) elif key=='max': self.setMax(value) elif key=='increment': self.setIncrement(value) elif key=='precision': self.setPrecision(value) elif key=='showLabel': self.setShowLabel(value) elif key=='continuous': self.setContinuous(value) elif key=='oneTurn': self.setOneTurn(value) # the 'lock' entries callbacks elif key=='lockType': self.lockTypeCB(value) elif key=='lockMin': self.lockMinCB(value) elif key=='lockBMin': self.lockBMinCB(value) elif key=='lockMax': self.lockMaxCB(value) elif key=='lockBMax': self.lockBMaxCB(value) elif key=='lockIncrement': self.lockIncrementCB(value) elif key=='lockBIncrement': self.lockBIncrementCB(value) elif key=='lockPrecision': self.lockPrecisionCB(value) elif key=='lockShowLabel': self.lockShowLabelCB(value) elif key=='lockValue': self.lockValueCB(value) elif key=='lockContinuous': self.lockContinuousCB(value) elif key=='lockOneTurn': self.lockOneTurnCB(value) def setType(self, Type): assert type(Type) in [types.StringType, types.TypeType],\ "Illegal type for datatype. Expected %s or %s, got %s"%( type('a'), type(type), type(Type) ) if type(Type) == type(""): # type str assert Type in ('int','float'),\ "Illegal type descriptor. Expected 'int' or 'float', got '%s'"%Type self.type = eval(Type) else: self.type = Type if self.type == int: self.labelFormat = "%d" self.int_value = self.value else: self.labelFormat = "%."+str(self.precision)+"f" if hasattr(self.opPanel, 'optionsForm'): w = self.opPanel.idf.entryByName['togIntFloat']['widget'] if self.type == int: w.setvalue('int') elif self.type == 'float': w.setvalue('float') if self.opPanel: self.opPanel.updateDisplay() # and update the printed label if self.canvas and self.showLabel == 1: self.printLabel() def setMin(self, min): if min is not None: assert type(min) in [types.IntType, types.FloatType],\ "Illegal type for minimum. Expected type %s or %s, got %s"%( type(0), type(0.0), type(min) ) if self.max and min > self.max: min = self.max self.min = self.type(min) if self.showLabel == 1: self.printLabel() if self.value < self.min: self.set(self.min) if hasattr(self.opPanel, 'optionsForm'): self.opPanel.minInput.set(self.labelFormat%self.min) self.opPanel.toggleMin.set(1) self.opPanel.min_entry.configure(state='normal', fg='gray0') self.minOld = self.min else: self.min = None if hasattr(self.opPanel, 'optionsForm'): self.opPanel.toggleMin.set(0) self.opPanel.min_entry.configure(state='disabled', fg='gray40') def setMax(self, max): if max is not None: assert type(max) in [types.IntType, types.FloatType],\ "Illegal type for maximum. Expected type %s or %s, got %s"%( type(0), type(0.0), type(max) ) if self.min and max < self.min: max = self.min self.max = self.type(max) if self.showLabel == 1: self.printLabel() if self.value > self.max: self.set(self.max) if hasattr(self.opPanel, 'optionsForm'): self.opPanel.maxInput.set(self.labelFormat%self.max) self.opPanel.toggleMax.set(1) self.opPanel.max_entry.configure(state='normal', fg='gray0') self.maxOld = self.max else: self.max = None if hasattr(self.opPanel, 'optionsForm'): self.opPanel.toggleMax.set(0) self.opPanel.max_entry.configure(state='disabled', fg='gray40') def setIncrement(self, incr): if incr is not None: assert type(incr) in [types.IntType, types.FloatType],\ "Illegal type for increment. Expected type %s or %s, got %s"%( type(0), type(0.0), type(incr) ) self.increment = self.type(incr) self.offsetValue = self.value self.incrementOld = self.increment if hasattr(self.opPanel, 'optionsForm'): self.opPanel.incrInput.set(self.labelFormat%self.increment) self.opPanel.toggleIncr.set(1) self.opPanel.incr_entry.configure(state='normal', fg='gray0') else: self.increment = self.type(0) if hasattr(self.opPanel, 'optionsForm'): self.opPanel.toggleIncr.set(0) self.opPanel.incrInput.set(self.labelFormat%0) self.opPanel.incr_entry.configure(state='disabled', fg='gray40') def setPrecision(self, val): assert type(val) in [types.IntType, types.FloatType],\ "Illegal type for precision. Expected type %s or %s, got %s"%( type(0), type(0.0), type(val) ) val = int(val) if val > 10: val = 10 if val < 1: val = 1 self.precision = val if self.type == float: self.labelFormat = "%."+str(self.precision)+"f" else: self.labelFormat = "%d" if hasattr(self.opPanel, 'optionsForm'): w = self.opPanel.idf.entryByName['selPrec']['widget'] w.setvalue(val) if self.opPanel: self.opPanel.updateDisplay() # and update the printed label if self.canvas and self.showLabel == 1: self.printLabel() def setContinuous(self, cont): """ cont can be None, 0 or 1 """ assert cont in [None, 0, 1],\ "Illegal value for continuous: expected None, 0 or 1, got %s"%cont if cont != 1: cont = None self.continuous = cont if hasattr(self.opPanel, 'optionsForm'): w = self.opPanel.idf.entryByName['togCont']['widget'] if cont: w.setvalue('on')#i=1 else: w.setvalue('off')#i=0 if self.opPanel: self.opPanel.updateDisplay() def setShowLabel(self, val): """Show label can be 0, 1 or 2 0: no label 1: label is always shown 2: show label only when value changes""" assert val in [0,1,2],\ "Illegal value for showLabel. Expected 0, 1 or 2, got %s"%val if val != 0 and val != 1 and val != 2: print "Illegal value. Must be 0, 1 or 2" return self.showLabel = val self.toggleWidgetLabel(val) if hasattr(self.opPanel, 'optionsForm'): w = self.opPanel.idf.entryByName['togLabel']['widget'] if self.showLabel == 0: label = 'never' elif self.showLabel == 1: label = 'always' elif self.showLabel == 2: label = 'move' w.setvalue(label) if self.opPanel: self.opPanel.updateDisplay() def setOneTurn(self, oneTurn): assert type(oneTurn) in [types.IntType, types.FloatType],\ "Illegal type for oneTurn. Expected %s or %s, got %s"%( type(0), type(0.0), type(oneTurn) ) self.oneTurn = oneTurn self.threeSixtyOver1turn = 360./oneTurn self.piOver1turn = math.pi/oneTurn self.oneTurnOver2pi = oneTurn / (2*math.pi) if self.opPanel: self.opPanel.updateDisplay() ##################################################################### # the 'lock' methods: ##################################################################### def lockTypeCB(self, mode): if mode != 0: mode = 1 self.lockType = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockMinCB(self, mode): #min entry field if mode != 0: mode = 1 self.lockMin = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockBMinCB(self, mode): # min checkbutton if mode != 0: mode = 1 self.lockBMin = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockMaxCB(self, mode): # max entry field if mode != 0: mode = 1 self.lockMax = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockBMaxCB(self, mode): # max checkbutton if mode != 0: mode = 1 self.lockBMax = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockIncrementCB(self, mode): # increment entry field if mode != 0: mode = 1 self.lockIncrement = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockBIncrementCB(self, mode): # increment checkbutton if mode != 0: mode = 1 self.lockBIncrement = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockPrecisionCB(self, mode): if mode != 0: mode = 1 self.lockPrecision = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockShowLabelCB(self, mode): if mode != 0: mode = 1 self.lockShowLabel = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockValueCB(self, mode): if mode != 0: mode = 1 self.lockValue = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockContinuousCB(self, mode): if mode != 0: mode = 1 self.lockContinuous = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() def lockOneTurnCB(self, mode): if mode != 0: mode = 1 self.lockOneTurn = mode if hasattr(self.opPanel, 'optionsForm'): self.opPanel.lockUnlockDisplay() if __name__ == '__main__': def foo(val): print val d = Dial(size=50) d.configure(showLabel=1) d.callbacks.AddCallback(foo) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/gui/BasicWidgets/__init__.py0000644000175000017500000000000007300046146025616 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/0000755000175000017500000000000012146210177022141 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/MultipartPostHandler.py0000644000175000017500000001122510506774040026643 0ustar debiandebian#!/usr/bin/python #### # 02/2006 Will Holcomb # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # """ Usage: Enables the use of multipart/form-data for posting forms Inspirations: Upload files in python: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/146306 urllib2_file: Fabien Seisen: Example: import MultipartPostHandler, urllib2, cookielib cookies = cookielib.CookieJar() opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookies), MultipartPostHandler.MultipartPostHandler) params = { "username" : "bob", "password" : "riviera", "file" : open("filename", "rb") } opener.open("http://wwww.bobsite.com/upload/", params) Further Example: The main function of this file is a sample which downloads a page and then uploads it to the W3C validator. """ import urllib import urllib2 import mimetools, mimetypes import os, stat class Callable: def __init__(self, anycallable): self.__call__ = anycallable # Controls how sequences are uncoded. If true, elements may be given multiple values by # assigning a sequence. doseq = 1 class MultipartPostHandler(urllib2.BaseHandler): handler_order = urllib2.HTTPHandler.handler_order - 10 # needs to run first def http_request(self, request): data = request.get_data() if data is not None and type(data) != str: v_files = [] v_vars = [] try: for(key, value) in data.items(): if type(value) == file: v_files.append((key, value)) else: v_vars.append((key, value)) except TypeError: systype, value, traceback = sys.exc_info() raise TypeError, "not a valid non-string sequence or mapping object", traceback if len(v_files) == 0: data = urllib.urlencode(v_vars, doseq) else: boundary, data = self.multipart_encode(v_vars, v_files) contenttype = 'multipart/form-data; boundary=%s' % boundary if request.has_header('Content-type'): pass # print "Replacing %s with %s" % (request.get_header('content-type'), contenttype) request.add_unredirected_header('Content-type', contenttype) request.add_data(data) return request def multipart_encode(vars, files, boundary = None, buffer = None): if boundary is None: boundary = mimetools.choose_boundary() if buffer is None: buffer = '' for(key, value) in vars: buffer += '--%s\r\n' % boundary buffer += 'Content-Disposition: form-data; name="%s"' % key buffer += '\r\n\r\n' + value + '\r\n' for(key, fd) in files: file_size = os.fstat(fd.fileno())[stat.ST_SIZE] filename = fd.name.split('/')[-1] contenttype = mimetypes.guess_type(filename)[0] or 'application/octet-stream' buffer += '--%s\r\n' % boundary buffer += 'Content-Disposition: form-data; name="%s"; filename="%s"\r\n' % (key, filename) buffer += 'Content-Type: %s\r\n' % contenttype # buffer += 'Content-Length: %s\r\n' % file_size fd.seek(0) buffer += '\r\n' + fd.read() + '\r\n' buffer += '--%s--\r\n\r\n' % boundary return boundary, buffer multipart_encode = Callable(multipart_encode) https_request = http_request def main(): import tempfile, sys validatorURL = "http://validator.w3.org/check" opener = urllib2.build_opener(MultipartPostHandler) def validateFile(url): temp = tempfile.mkstemp(suffix=".html") os.write(temp[0], opener.open(url).read()) params = { "ss" : "0", # show source "doctype" : "Inline", "uploaded_file" : open(temp[1], "rb") } print opener.open(validatorURL, params).read() os.remove(temp[1]) if len(sys.argv[1:]) > 0: for arg in sys.argv[1:]: validateFile(arg) else: validateFile("http://www.google.com") if __name__=="__main__": main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/BugReport.py0000644000175000017500000002020411573240503024421 0ustar debiandebian################################################################################## ## ##Authors: Sowjanya Karnati,Michel F Sanner ## ## ################################################################################ ##This command is for reporting Bug in to BugZilla Database ## ##$Id: BugReport.py,v 1.17 2011/06/06 21:06:11 sargis Exp $ import Tkinter, Pmw from string import join import webbrowser,os,sys from types import StringType from Tkinter import * import warnings #from htmlDoc import * class BugReportCommand: def __init__(self,component=None): self.component=component def showuploadpage_cb(self,sumcont,desccont,atcont,email_ent, product="Pure Python", version="unspecified"): if self.component==None: return import urllib idnum = None ################### #find date and time ################### d = os.popen("date '+20%y-%m-%d'") date = d.readlines()[0][:-1] t = os.popen("date '+%H:%M:%S'") time = t.readlines()[0][:-1] deltaval = date+" "+time desccont += "\n sys.version: " + sys.version from mglutil.util.packageFilePath import findFilePath, getResourceFolderWithVersion registration = getResourceFolderWithVersion() + os.sep + '.registration' if os.path.exists(registration): import pickle try: desccont += "\n UserID: " + pickle.load(open(registration))['UserID'].strip() except Exception, inst: warnings.warn(inst) desccont += "\n Unregistered User" else: desccont += "\n Unregistered User" ############################################### ##Feeding post_bug.cgi form with required input ############################################### params = urllib.urlencode({"Bugzilla_login":"anonymous_bugzilla@yahoo.com", "Bugzilla_password":"mgltools","version":version, "rep_platform":"All","priority":"P2", "op_sys":"All","bug_severity":"normal", "bug_status":"NEW","cc":" ", "product":product, "component":"%s" %self.component, "assigned_to":"mgltools@scripps.edu", "short_desc":"%s" %sumcont, "comment":"%s" %desccont, "bug_file_loc":" ","cc":email_ent} ) #post fptr = urllib.urlopen("http://mgldev.scripps.edu/bugs/post_bug.cgi",params) data =fptr.readlines() for d in data: if d.endswith("\n"): idnum = d.split(" ")[5] break if not idnum: return try: #this part is needed for debugging int(idnum) except: print data #for attaching files if len(atcont)>0: filelist=list(atcont) for f in filelist: if len(f)>=1: params1 = {"Bugzilla_login":"anonymous_bugzilla@yahoo.com","Bugzilla_password":"mgltools","bugid":"%i" %int(idnum), "action":"insert","description":"file attached","ispatch":"0","contenttypemethod":"autodetect","comment":" ", "obsolete":"",'contenttypeselection':"",'contenttypeentry':"",'data':open(f)} ################### #HTTP + MULTIPART ######################## import urllib2 import MultipartPostHandler opener = urllib2.build_opener(MultipartPostHandler.MultipartPostHandler) urllib2.install_opener(opener) req = urllib2.Request("http://mgldev.scripps.edu/bugs/attachment.cgi",params1) req.add_header('Content-Type', 'text/plain') response = urllib2.urlopen(req).read().strip() return idnum ########################################## ###HTML PAGE ############################################ #document = Tag.HTML() #docTitle = Tag.TITLE("Bug Submitted") #docHead = Tag.HEAD(docTitle) #docBody = [Tag.BR(),"Bug Report has been successfully submitted in to Bugzilla",Tag.BR(),Tag.BR(),"You can visit Bug at",Tag.A(href="http://mgldev.scripps.edu/bugs/show_bug.cgi?id=idnum")) #document.append([docHead,docBody]) #fptr =open("./Pmv/BugReport.html","w") #HtmlElement.writeToHtml(document,HtmlFile(fptr)) #fptr.close() #pwd = os.path.abspath("./Pmv/BugReport.html") # #newcont=[Tag.inputHidden("Bugzilla_login","anonymous_bugzilla@yahoo.com"),Tag.inputHidden("Bugzilla_password","mgltools"),Tag.inputHidden("version","version python2.3"),Tag.inputHidden("rep_platform","All"),Tag.inputHidden("priority","P2"),Tag.inputHidden("op_sys","All"),Tag.inputHidden("bug_severity","normal"),Tag.inputHidden("bug_status","NEW"),Tag.inputHidden("cc"," "),Tag.inputHidden("product","Pure Python"),Tag.inputHidden("component",component_n),Tag.inputHidden("assigned_to","sowjanya@scripps.edu"),Tag.inputHidden("short_desc",sumcont),Tag.inputHidden("comment",desccont),Tag.inputHidden("bug_file_loc"," ")] # ##newcont2 = [Tag.inputHidden("bugid"," "),Tag.inputHidden("data",atcont),Tag.inputHidden("description"," "),Tag.inputHidden("ispatch","1"),Tag.inputHidden("contenttypemethod","autodetect"),Tag.inputHidden("comment"," ")] # #newcont1 = [Tag.BR(),"Please press submit to submit the bug in to Bugzilla",Tag.inputSubmit(name="Submit",value="Commit")] #newcont#=["Reporter :",Tag.TEXTAREA("Bugzilla_login",20,1,contents="anonymous_bugzilla@yahoo.com"),Tag.BR(),Tag.BR(),"Password:",Tag.inputPassword("Bugzilla_password","mgltools"),Tag.BR(),"Version: ",Tag.TEXTAREA("version",20,1,contents="version python2.3")," ","Platform:",Tag.TEXTAREA("rep_platform",20,1,contents="other"),Tag.BR(),"Priority:",Tag.TEXTAREA("version",20,1,contents="P2")," ","OS:",Tag.TEXTAREA("op_sys",20,1,contents="other"),Tag.BR(),"severity:",Tag.TEXTAREA("bug_severity",20,1,contents="normal"),Tag.BR(),"InitialState:",Tag.TEXTAREA("bug_status",20,1,contents="NEW"),Tag.BR(),"CC",Tag.TEXTAREA("cc",20,1,contents=" "),Tag.BR(),"Product:",Tag.SELECT("product",contents=[poptcont1,poptcont2],size=1),Tag.BR(),Tag.BR(),"Component:",Tag.TEXTAREA("component",20,1,contents = component_n),Tag.BR(),Tag.BR(),"AssignedTo:",Tag.TEXTAREA("assigned_to",20,1,contents = owner),Tag.BR(),"Summary:",Tag.BR(),Tag.BR(),Tag.TEXTAREA("short_desc",20,1,contents =sumcont),Tag.BR(),Tag.BR(),"Description:",Tag.BR(),Tag.TEXTAREA("comment",40,10,contents=desccont),Tag.BR(),Tag.BR(),"Attach File: ",Tag.BR(),Tag.TEXTAREA("bug_file_loc",20,1,contents = atcont),Tag.BR(),Tag.BR(),Tag.BR(),Tag.inputSubmit(name="Commit",value="Commit")] # #docBody =Tag.BODY([ Tag.heading('H2',"Report Bug"),Tag.BR(),Tag.FORM(contents=[newcont1,newcont],action="http://mgldev.scripps.edu/bugs/enter_bug.cgi",method="POST")]) #document.append([docHead,docBody]) ##Writing to html file #fptr =open("./Pmv/BugReport.html","w") #HtmlElement.writeToHtml(document,HtmlFile(fptr)) #fptr.close() # #pwd = os.path.abspath("./Pmv/BugReport.html") ##print sumcont,desccont #if len(sumcont)<=1 or len(desccont)<=1 or component_n not in ["PMV","AutoDockTools","Vision","DejaVu","FlexTree","idle","NetworkEditor","PyBabel","Pmw","ViewerFramework","Volume","tester","MolKit","mglutil","symserv"]: # import tkMessageBox # ok = tkMessageBox.askokcancel("Input","Please enter valid package,summary and description") # return # #else: # webbrowser.open("file://%s" %pwd) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/publishPack.csh0000755000175000017500000000054711015331714025111 0ustar debiandebian#!/bin/tcsh # 1) go to the mgl version of the packages # cd /mgl/python/share/lib/python2.5/site-packages/ cd /usr/local/home/sophiec/MGL # 2) Tag the current mgl tag with the given new tag cvs tag -r mgl $1 $2 # 3) Update the mgl version of the given package cvs co $2 # 4) Move the mgl tag to the latest version of the given packages cvs tag -F mgl $2 mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/README0000644000175000017500000001137410153212354023022 0ustar debiandebian ======================================================================== TESTER ======================================================================== This tool allows the user to run series of tests for Python packages. The tests can be written either as simple python function or as unittest subclass. The tester can either: - execute a test function - all the test contained in a test class (subclass of unittest.TestCase) - a test module which is a python file implementing either test functions or test Class. - all the test modules contained in the Tests package of a Python package - recursively all the Tests packages contained in a Python package and its sub packages. (see example later) 1- Tester options: ----------------------------------------------- -h, --help show this help message and exit -q, --quiet quiet -v, --verbose verbose, default behavior -V, --noisy noisy -r, --recursive option to get tests from package recursively (default=false) -tTESTDIR, --testdir=TESTDIR option to specify the name of the directory containing the tests (default='Tests') -fFUNCPREFIX, --funcPrefix=FUNCPREFIX option to specify the prefix a method or a function needs, to be included in the list of tests. (default='test_') -mMODPREFIX, --modPrefix=MODPREFIX option to specify the prefix a test module needs, to be included in the list of tests. (default= no prefix) -oOUTPUT, --output=OUTPUT name of an output file -s, --subprocess option to specify whether or not to run each test module in a subprocess (default=False) --noreport option to specify whether or not a report file will be created. When the option is given no report will be created otherwise a report will be created in a TESTREPORT subdirectory. (default=a report will be created) -e, --exitOnFail option to specify whether or not the tester should exit after the first failed test. (default=False) 2- Organizing and implementing tests. ---------------------------------------------------- - Each python package should have a Tests subpackage which will contain all the python module. By default the tester considers all python module to be test modules. This behavior can be changed by using the --modPrefix. It is better to use the "test_" as a module prefix. The "setUp" and "tearDown" method/function will be called before and after each testt method/function. example Pmv.Tests.test_SSCommands Each test method/function is self contained and should not depend on any result from a previous test. If implementing functions you can also implement a setUpSuite and tearDownSuite method to be executed before and after all the test functions. Functions or methods in the test module need to have "test" as a prefix otherwise they will be ignored by the tester unless the --funcPrefix option is specified. The __init__.py of the Tests package can implement some variable that will affect the tester behavior: - ignore dictionary specifies which tests to be ignored. The key is the name of the test module and the value is the list of test functions to be ignored. If an empty list is provided then the whole module will be ignored. example: ignore = {'test_Misc':[]} all the tests of the test_Misc module will be ignored ignore = {'test_Misc':['test_SourceLogBug_1']} the test_SourceLogBug_1 from the test_Misc module will be ignored - modPrefix : Same than the --modPrefix option which specifies the prefix of the test module. Only the module with the modPrefix will be considered by the tester. This will be overwritten by the --modPrefix option if specified - funcPrefix: Same than the --funcPrefix option which specifies the prefix of the test functions/methods. Only the method/functionw with this prefix will be considered by the tester. It will be overwritten by --funcPrefix options if specified. EXAMPLES: 1- Run all the tests in the Pmv package: tester Pmv tester Pmv.Tests will crash because tester tries to find the "Tests" subpackage in the Tests package. 2- tester Pmv.Tests.test_fileCommands will run all the tests in test_fileCommands module 3- tester Pmv.Tests.test_fileCommands.test_ReadMolecule_1 will only run this test function. 4- tester -r mglutil will run all the tests from the mglutil package but also all its subpackage. mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/Tests/0000755000175000017500000000000012146210066023240 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/Tests/dependenciestest.py0000644000175000017500000000332510406102702027135 0ustar debiandebian# ########################################################################## # Author : Sowjanya Karnati ########################################################################## # # # # Notes:Class that runs the Dependency script and compares with critical and # noncritical dependencies of the pack import os,re from types import StringType class DependencyTester: def rundeptester(self,pack,listdependencies =[],v=True,V=False,loc=None): self.pack = pack from mglutil.TestUtil import Dependencytester deptester = Dependencytester.DEPENDENCYCHECKER() Total_packs = deptester.rundependencychecker(pack,v,V,loc) if type(self.pack) is not StringType: print "pack must be a string" result = [] if listdependencies == []: pat =re.compile('result_%s' %self.pack) for a in Total_packs: match = pat.search(a) if match: listdependencies = eval("a.split('result_%s'%self.pack)[1]") ld =eval(listdependencies) exec('import %s' %pack) p=eval(pack) try: DEPENDENCIES=p.CRITICAL_DEPENDENCIES+p.NONCRITICAL_DEPENDENCIES for d in ld: if d not in DEPENDENCIES: result.append(d) if result!=[]: return result else: return result except: print "CRITICAL_DEPENDENCIES,NONCRITICAL_DEPENDENCIES not listed in %s.__init__.py" %self.pack mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/Tests/Data/0000755000175000017500000000000012146210066024111 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/Tests/Data/test_secondarystructure.py0000644000175000017500000003655111156273021031504 0ustar debiandebian############################################################################# # # Author: Sophie I. COON, Michel F. SANNER # # Copyright: M. Sanner TSRI 2000 # ############################################################################# # # $Header: /opt/cvs/python/packages/share1.5/mglutil/TestUtil/Tests/Data/test_secondarystructure.py,v 1.3 2009/03/12 20:52:33 vareille Exp $ # # $Id: test_secondarystructure.py,v 1.3 2009/03/12 20:52:33 vareille Exp $ # import sys """ This module implements a set of functions to test the commands of the secondarystructurecommands module """ mv= None setUp='startMoleculeViewer' tearDown = 'quitMoleculeViewer' # We should create a test protein directory .... def startMoleculeViewer(): global mv from Pmv.moleculeViewer import MoleculeViewer mv = MoleculeViewer(customizer = './.empty', logMode = 'overwrite', withShell=0) mv.setUserPreference(('trapExceptions', '0'), log = 0) mv.setUserPreference(('warningMsgFormat', 'printed'), log = 0) mv.loadCommand('fileCommands', 'readMolecule', 'Pmv') mv.loadCommand('deleteCommands','deleteMol', 'Pmv') mv.loadCommand("bondsCommands", "buildBondsByDistance", "Pmv") mv.setOnAddObjectCommands(['buildBondsByDistance','displayLines'], log=0) mv.loadModule("interactiveCommands", 'Pmv') mv.loadModule('secondaryStructureCommands', 'Pmv') def quitMoleculeViewer(): mv.Exit(0) ############################################################ # ComputeSecondaryStructureCommand Tests # ############################################################ def test_computeSecondaryStructure_emptyViewer(): """ Test if the computeSecondaryStructure behaves properly when no molecule has been loaded in the viewer and with the default values """ mv.computeSecondaryStructure(mv.getSelection()) def test_computeSecondaryStructure_Normal(): """ Test the normal behavior of the computeSecondaryStructure on 1crn """ # When computing the secondary structure of a 1crn we expect: # - a secondary structure set containing 10 secondary structure elements # - the selectionCommands.sets__ dictionnary contains 10 extra keys # - a new attribute of the mol has been created called hasSS its value # should be ['From File'] # - resWithSS ? mv.readMolecule("1crn.pdb") mv.computeSecondaryStructure("1crn", molModes = {'1crn':'From File'}) mol = mv.Mols[0] assert hasattr(mol, 'hasSS') and mol.hasSS == ['From File'] assert hasattr(mol.chains[0], 'secondarystructureset') and \ len(mol.chains[0].secondarystructureset)==10 assert not hasattr(mol,'_ExtrudeSecondaryStructureCommand__hasSSGeom') or \ mol._ExtrudeSecondaryStructureCommand__hasSSGeom == 0 mv.deleteMol("1crn") assert len(mv.Mols)==0 def test_colorSecondaryStructure_Normal(): """ Test the normal behavior of the computeSecondaryStructure on 1crn """ # When computing the secondary structure of a 1crn we expect: # - a secondary structure set containing 10 secondary structure elements # - the selectionCommands.sets__ dictionnary contains 10 extra keys # - a new attribute of the mol has been created called hasSS its value # should be ['From File'] # - resWithSS ? mv.readMolecule("1crn.pdb") mv.computeSecondaryStructure("1crn", molModes = {'1crn':'From File'}) mv.colorBySecondaryStructure("1crn") mol = mv.Mols[0] #assert hasattr(mol, 'hasSS') and mol.hasSS == ['From File'] #assert hasattr(mol.chains[0], 'secondarystructureset') and \ # len(mol.chains[0].secondarystructureset)==10 #assert not hasattr(mol,'_ExtrudeSecondaryStructureCommand__hasSSGeom') or \ # mol._ExtrudeSecondaryStructureCommand__hasSSGeom == 0 mv.deleteMol("1crn") assert len(mv.Mols)==0 def test_computeSecondaryStructure_nosheet2D(): """ Test the computeSecondaryStructure on a molecule (1crnnosheet2D) created using 1crn.pdb (res1-res29) removing all the O atoms, but leaving the Secondary Structure information in the file. We expect to: - create the proper secondarystructureset containing 5 SS elements - but no sheet2D """ mv.readMolecule('1crnnosheet2D.pdb') mv.select('1crnnosheet2D') mv.computeSecondaryStructure(mv.getSelection()) chain = mv.Mols[0].chains[0] mol = mv.Mols[0] assert mol.hasSS == ['From File'] assert hasattr(chain, 'secondarystructureset') assert len(chain.secondarystructureset) == 5 mv.deleteMol('1crnnosheet2D') assert len(mv.Mols) == 0 def test_computeSecondaryStructure_fileThenStrideOnMol(): """ ComputeSecondaryStructure on 1crn using the info in the file then using stride.""" mv.readMolecule("1crn.pdb") mv.select("1crn") mv.computeSecondaryStructure(mv.getSelection(), {'1crn':'From File'}) mol = mv.Mols[0] assert mol.hasSS == ['From File'] assert hasattr(mol.chains[0], 'secondarystructureset') and \ len(mol.chains[0].secondarystructureset)==10 mv.computeSecondaryStructure(mv.getSelection(), {'1crn':'From Stride'}) assert mol.hasSS == ['From Stride'] assert hasattr(mol.chains[0], 'secondarystructureset') and \ len(mol.chains[0].secondarystructureset)==11 mv.deleteMol('1crn') assert len(mv.Mols)==0 def test_computeSecondaryStructure_twochains(): """ Test computeSecondaryStructure on a molecule protease.pdb with two chains """ mv.readMolecule('protease.pdb') mv.select('protease') mv.computeSecondaryStructure(mv.getSelection()) mol = mv.Mols[0] assert mol.hasSS == ['From File'] assert hasattr(mol.chains[0], 'secondarystructureset') assert hasattr(mol.chains[1], 'secondarystructureset') mv.deleteMol('protease') assert len(mv.Mols) == 0 def test_computeSecondaryStructure_nofileinfo(): """ Test computeSecondaryStructure on 7ins.pdb with no information in the file using stride by default """ from MolKit.protein import SecondaryStructureSet mv.readMolecule('7ins.pdb') mv.select('7ins') mv.computeSecondaryStructure(mv.getSelection()) mol = mv.Mols[0] assert mol.hasSS == ['From Stride'] c0 = mol.chains[0] assert (isinstance(c0.secondarystructureset, SecondaryStructureSet) and \ len(c0.secondarystructureset)==6) c1 = mol.chains[1] assert (isinstance(c1.secondarystructureset, SecondaryStructureSet) and \ len(c1.secondarystructureset)==3) c2 = mol.chains[2] assert (isinstance(c2.secondarystructureset, SecondaryStructureSet) and \ len(c2.secondarystructureset)==4) c3 = mol.chains[3] assert (isinstance(c3.secondarystructureset, SecondaryStructureSet) and \ len(c3.secondarystructureset)==3) c4 = mol.chains[4] assert (isinstance(c4.secondarystructureset, SecondaryStructureSet) and \ len(c4.secondarystructureset)==4) c5 = mol.chains[5] assert (isinstance(c5.secondarystructureset, SecondaryStructureSet) and \ len(c5.secondarystructureset)==2) c6 = mol.chains[6] assert not hasattr(c6, 'secondarystructureset') c7 = mol.chains[7] assert not hasattr(c7, 'secondarystructureset') mv.deleteMol('7ins') assert len(mv.Mols) == 0 def test_computeSecondaryStructure_fileOnMolAndStrideOnMol(): """ Test computeSecondaryStructure command on two proteins protease.pdb with File information and 7ins with no File information. The molMode are specified protease : From File and 7ins From Stride """ from MolKit.protein import SecondaryStructureSet mv.readMolecule('protease.pdb') mv.readMolecule('7ins.pdb') mv.computeSecondaryStructure(mv.getSelection(), molModes={'protease':'From File', '7ins':'From Stride'}) prot = mv.Mols[0] ins = mv.Mols[1] assert prot.hasSS == ['From File'] assert isinstance(prot.chains[0].secondarystructureset, SecondaryStructureSet) assert isinstance(prot.chains[1].secondarystructureset, SecondaryStructureSet) assert ins.hasSS == ['From Stride'] c0 = ins.chains[0] assert (isinstance(c0.secondarystructureset, SecondaryStructureSet) and \ len(c0.secondarystructureset)==6) c1 = ins.chains[1] assert (isinstance(c1.secondarystructureset, SecondaryStructureSet) and \ len(c1.secondarystructureset)==3) c2 = ins.chains[2] assert (isinstance(c2.secondarystructureset, SecondaryStructureSet) and \ len(c2.secondarystructureset)==4) c3 = ins.chains[3] assert (isinstance(c3.secondarystructureset, SecondaryStructureSet) and \ len(c3.secondarystructureset)==3) c4 = ins.chains[4] assert (isinstance(c4.secondarystructureset, SecondaryStructureSet) and \ len(c4.secondarystructureset)==4) c5 = ins.chains[5] assert (isinstance(c5.secondarystructureset, SecondaryStructureSet) and \ len(c5.secondarystructureset)==2) c6 = ins.chains[6] assert not hasattr(c6, 'secondarystructureset') c7 = ins.chains[7] assert not hasattr(c7, 'secondarystructureset') mv.deleteMol('7ins') mv.deleteMol('protease') assert len(mv.Mols) == 0 def test_computeSecondaryStructure_forceFileWhenNoInfo(): """ Test computeSecondaryStructure command on 7ins.pdb which doesn't have information on the secondarystructure in its file. Forces to compute from the file information. What do we expect ? """ from MolKit.protein import SecondaryStructureSet mv.readMolecule('7ins.pdb') mv.select('7ins') mv.computeSecondaryStructure(mv.getSelection(), molModes={'7ins':'From File'}) ins = mv.Mols[0] assert ins.hasSS == [] c0 = ins.chains[0] assert not hasattr(c0, 'secondarystructureset') c1 = ins.chains[1] assert not hasattr(c1, 'secondarystructureset') c2 = ins.chains[2] assert not hasattr(c2, 'secondarystructureset') c3 = ins.chains[3] assert not hasattr(c3, 'secondarystructureset') c4 = ins.chains[4] assert not hasattr(c4, 'secondarystructureset') c5 = ins.chains[5] assert not hasattr(c5, 'secondarystructureset') c6 = ins.chains[6] assert not hasattr(c6, 'secondarystructureset') c7 = ins.chains[7] assert not hasattr(c7, 'secondarystructureset') mv.deleteMol('7ins') assert len(mv.Mols) == 0 ############################################################ # ExtrudeSecondaryStructureCommand Tests # ############################################################ def test_extrudeSecondaryStructure_emptyViewer(): """ Test if extrudeSecondaryStructure behaves properly when no molecule has been loaded in the viewer and with the default values""" mv.extrudeSecondaryStructure(mv.getSelection()) def test_extrudeSecondaryStructure_noDheet2D(): """ Testing extrudeSecondaryStructure for a protein 1crnnosheet2D with 1 chain having a secondarystructureset holding 5 secondary structure elements but no sheet2D because no residues have an O. """ mv.readMolecule('1crnnosheet2D.pdb') mv.computeSecondaryStructure(mv.getSelection()) chain = mv.Mols[0].chains[0] mv.extrudeSecondaryStructure(mv.getSelection(), display=1) assert hasattr(chain, 'sheet2D') assert chain.sheet2D['ssSheet2D'] is None mv.deleteMol('1crnnosheet2D') assert len(mv.Mols)==0 def test_extrudeSecondaryStructure_defaultParam(): """ Function to test the extrudeSecondaryStructure command for 1crn with 1 chain with the default parameters """ mv.readMolecule('1crn.pdb') mv.computeSecondaryStructure(mv.getSelection()) chain = mv.Mols[0].chains[0] mv.extrudeSecondaryStructure(mv.getSelection(), display=1) mv.deleteMol('1crn') assert len(mv.Mols)==0 ################################################################ # DisplayExtrudedSSCommand Tests # ################################################################ def test_displaySecondaryStructure_emptyViewer(): """ Test if displaySecondaryStructure behaves properly when no molecule has been loaded in the viewer and with the default values""" mv.displayExtrudedSS(mv.getSelection()) def test_displaySecondaryStructure_beforeCompute(): """ Test the display secondarystructurecommands before the computing and extruding the secondary structure information """ mv.readMolecule('1crn.pdb') mv.displayExtrudedSS(mv.getSelection()) mv.deleteMol('1crn') assert len(mv.Mols) == 0 ################################################################ # OTHER secondaryStructure Tests # ################################################################ def test_secondaryStructure_fileThenStrideOnMol(): """ ComputeSecondaryStructure on 1crn using the info in the file then using stride.""" mv.readMolecule("1crn.pdb") mv.select("1crn") mv.computeSecondaryStructure(mv.getSelection(), {'1crn':'From File'}) mv.extrudeSecondaryStructure(mv.getSelection()) mol = mv.Mols[0] assert mol.hasSS == ['From File'] assert hasattr(mol.chains[0], 'secondarystructureset') and \ len(mol.chains[0].secondarystructureset)==10 mv.computeSecondaryStructure(mv.getSelection(), {'1crn':'From Stride'}) mv.extrudeSecondaryStructure(mv.getSelection()) assert mol.hasSS == ['From Stride'] assert hasattr(mol.chains[0], 'secondarystructureset') and \ len(mol.chains[0].secondarystructureset)==11 mv.deleteMol('1crn') assert len(mv.Mols)==0 def test_secondaryStructure_cleanBeforeExtrude(): """ This test makes sure that everything is cleaned by the clean method The clean method is called when computing the SS using stride after using the info in the file. """ mv.readMolecule('1crn.pdb') mv.select('1crn') mv.computeSecondaryStructure(mv.getSelection(), {'1crn':'From File'}) mol = mv.Mols[0] mv.computeSecondaryStructure.clean(mol) mv.deleteMol('1crn') assert len(mv.Mols) == 0 ############################################################ # RibbonCommand Tests # ############################################################ def test_ribbon_emptyViewer(): """ Test if the ribbon behaves properly when no molecule has been loaded in the viewer and with the default values""" mv.ribbon(mv.getSelection()) def test_ribbon_2tbv(): """ Test if ribbon on the 2tbv with the default param""" mv.readMolecule('./2tbv.pdb') assert len(mv.Mols) == 1 and mv.Mols[0].name == '2tbv' mv.select('2tbv') mv.ribbon(mv.getSelection()) mv.deleteMol('2tbv') ############################################################ # OTHER BUGS # ############################################################ def test_DanielBug(): mv.readMolecule("./fx.pdb") mv.loadCommand("selectionCommands", ['selectFromString',], 'Pmv') mv.loadModule("editCommands",'Pmv') mv.loadModule("deleteCommands", 'Pmv') mv.selectFromString('','','','H*',1) mv.deleteAtomSet(mv.getSelection()) mv.add_hGC("fx:::", polarOnly = 1, renumber = 1, method = 'noBondOrder', log = 0) mv.computeS ## if __name__ == '__main__': ## testplus.chdir() ## print harness ## sys.exit( len( harness)) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/Tests/Data/test_displayCommands.py0000644000175000017500000002574711156273021030670 0ustar debiandebian# # $Header: /opt/cvs/python/packages/share1.5/mglutil/TestUtil/Tests/Data/test_displayCommands.py,v 1.3 2009/03/12 20:52:33 vareille Exp $ # # $Id: test_displayCommands.py,v 1.3 2009/03/12 20:52:33 vareille Exp $ # import sys from exceptions import ValueError, AssertionError #from mglutil.regression import testplus import unittest """ Test module for the Pmv module: displayCommands """ ## ############################################################################ ## ### BASE TEST CLASS FOR THE DISPLAY MODULE ## ############################################################################ class DisplayBaseTest(unittest.TestCase): def setUp(self): from Pmv.moleculeViewer import MoleculeViewer self.mv = MoleculeViewer(customizer = './.empty', logMode = 'overwrite', withShell=0) self.mv.loadCommand('fileCommands', 'readMolecule', 'Pmv') self.mv.loadCommand('deleteCommands','deleteMol', 'Pmv') self.mv.loadCommand("bondsCommands", "buildBondsByDistance", "Pmv") self.mv.setOnAddObjectCommands(['buildBondsByDistance', 'displayLines'], log=0) self.mv.loadModule("interactiveCommands", 'Pmv') # Don't want to trap exceptions and errors... # the user pref is set to 1 by # default self.mv.setUserPreference(('trapExceptions', '0'), log = 0) self.mv.setUserPreference(('warningMsgFormat', 'printed'), log = 0) self.mv.loadModule('displayCommands', 'Pmv') def tearDown(self): self.mv.Exit(0) ## ############################################################################ ## ### DISPLAYLINES TESTS ## ############################################################################ class DisplayLinesTest(DisplayBaseTest): def test_displaylines_emptyviewer(self): """ Testing __call__ on empty viewer """ # here we test if the command can be called with nodes arg only if self.mv.displayLines.flag & 1: self.mv.displayLines(self.mv.getSelection()) def test_displaylines_defaultargs(self): """ Testing __call__ on 7ins with default arguments not specified """ # Reading the test molecule self.mv.readMolecule('7ins.pdb') assert len(self.mv.Mols) == 1 and self.mv.Mols[0].name == '7ins' # Test body self.mv.displayLines(self.mv.getSelection()) self.assertEqual(self.mv.Mols[0].geomContainer.atoms['bonded'], self.mv.Mols[0].allAtoms) def test_displaylines_negate(self): """ Testing __call__ on 7ins with only = 0 and negate = 1 """ # Reading the test molecule self.mv.readMolecule('7ins.pdb') # Test body self.mv.displayLines(self.mv.getSelection(), negate=1) self.assertEqual(len(self.mv.Mols[0].geomContainer.atoms['bonded']), 0) def test_displaylines_only(self): """ Testing __call__ on 7ins with only = 1 and negate = 0 """ # Reading the test molecule self.mv.readMolecule('7ins.pdb') # Test body self.mv.select(self.mv.Mols[0].chains[0]) self.mv.displayLines(self.mv.getSelection(), only = 1) from MolKit.molecule import Atom # need to assert something about the lines geom as well. self.assertEqual(len(self.mv.Mols[0].geomContainer.atoms['bonded']), len(self.mv.Mols[0].chains[0].findType(Atom))) def test_displaylines_bug33(self): """ Test written for the bug #33 reported in MGLBUGZILLA by Daniel. only does not work when multiple molecule and selection only on one mol. """ # Reading the test molecules self.mv.readMolecule('7ins.pdb') self.mv.readMolecule('1crn.pdb') # Test body self.mv.select(self.mv.Mols[0].chains[0].residues[1:15]) nodes = self.mv.getSelection() self.mv.displayLines(nodes, only=1) self.assertEqual(self.mv.Mols[0].geomContainer.atoms['bonded'], nodes.atoms.uniq()) self.assertEqual(len(self.mv.Mols[1].geomContainer.atoms['bonded']), 0) ############################################################################ ### TEST SHOWMOLECULE ############################################################################ class ShowMoleculeTest(DisplayBaseTest): def test_showmolecules_emptyviewer(self): """ __call__ on empty viewer """ from exceptions import ValueError if self.mv.showMolecules.flag & 1: self.mv.showMolecules(self.mv.getSelection()) else: print "Cannot be called with empty selection" def test_showmolecules_defaultargs(self): """ Testing __call__ with default argument on the 7ins. negate = 0 """ # Reading the test molecule self.mv.readMolecule('7ins.pdb') # Test body self.mv.showMolecules(['7ins',]) self.assertEqual(self.mv.Mols[0].geomContainer.geoms['master'].visible, 1) # Deleting the test molecule. # self.mv.deleteMol('7ins') def test_showmolecules_withargs(self): """ Testing __call__ with the following arguments: molName = ['7ins',] negate = 1 """ # Reading the test molecule self.mv.readMolecule('7ins.pdb') # Test body self.mv.showMolecules(['7ins',], negate=1) self.assertEqual(self.mv.Mols[0].geomContainer.geoms['master'].visible, 0) # Deleting the test molecule. # self.mv.deleteMol('7ins') def test_showmolecules_withargs2(self): """ Testing __call__ with the following arguments: molName = '7ins' bad input the molName should a list of molecule name. negate = 1 """ # Reading the test molecule self.mv.readMolecule('7ins.pdb') # Test body oldvisible = self.mv.Mols[0].geomContainer.geoms['master'].visible self.mv.showMolecules('7ins', negate=1) self.assertEqual(self.mv.Mols[0].geomContainer.geoms['master'].visible, oldvisible) # Deleting the test molecule. # self.mv.deleteMol('7ins') ############################################################################ ### TEST DISPLAYCPK ############################################################################ class DisplayCPKTest(DisplayBaseTest): def test_displaycpk_emptyviewer(self): """ __call__ on empty viewer """ # here we test if the command can be called with nodes arg only if self.mv.displayCPK.flag & 1 : self.mv.displayCPK(self.mv.getSelection()) else: raise ValueError("WARNING: self.mv.displayCPK cannot be called with only self.mv.getSelection()") def test_displaycpk_bug33(self): """ Test written for the bug #33 reported in MGLBUGZILLA by Daniel. only does not work when multiple molecule and selection only on one mol. """ # Reading the test molecules self.mv.readMolecule('7ins.pdb') self.mv.readMolecule('1crn.pdb') self.mv.displayCPK(self.mv.getSelection()) # Test body self.mv.select(self.mv.Mols[0].chains[0].residues[1:15]) nodes = self.mv.getSelection() self.mv.displayCPK(nodes, only=1) self.assertEqual(self.mv.Mols[0].geomContainer.atoms['cpk'].sort(), nodes.atoms.uniq().sort()) self.assertEqual(len(self.mv.Mols[1].geomContainer.atoms['cpk']),0) # delete molecules. ## self.mv.deleteMol('7ins') ## self.mv.deleteMol('1crn') def test_dispalyCPKWithVariousScaleFactors(self): self.mv.loadCommand("selectionCommands","selectFromString", "Pmv") self.mv.loadCommand("selectionCommands","clearSelection", "Pmv") self.mv.readMolecule('1crn.pdb') self.mv.selectFromString('', '', '1-10', 'CA', 1) self.mv.displayCPK(self.mv.getSelection(), scaleFactor=2.0, quality=10) self.mv.clearSelection() self.mv.selectFromString('', '', '11-20', 'CA', 1) self.mv.displayCPK(self.mv.getSelection(), scaleFactor=.5, quality=10) self.mv.displayCPK('1crn', negate=1) self.mv.displayCPK('1crn') self.mv.deleteMol('1crn') def test_dispalyCPKAssignRadii_1(self): self.mv.readMolecule('1crn.pdb') # no radius assigned nodes = self.mv.getSelection() wrad = filter(lambda x: hasattr(x, 'radius'), self.mv.allAtoms) self.assertEqual(len(wrad), 0) self.mv.displayCPK(nodes) wrad = filter(lambda x: hasattr(x, 'radius'), self.mv.allAtoms) self.assertEqual(len(wrad),len(self.mv.allAtoms)) self.assertEqual(self.mv.Mols[0].unitedRadii,1) self.mv.displayCPK(nodes, negate=1) self.mv.assignAtomsRadii("1crn", united=0, overwrite=1) self.mv.displayCPK(nodes) self.assertEqual(self.mv.Mols[0].unitedRadii,0) ## self.mv.deleteMol("1crn") ## assert len(self.mv.Mols)==0 ############################################################################ ### TEST DISPLAYSTICKSANDBALLS ############################################################################ class DisplaySticksAndBallsTest(DisplayBaseTest): def test_displaysticksballs_emptyviewer(self): """ __call__ on empty viewer """ # here we test if the command can be called with nodes arg only if self.mv.displaySticksAndBalls.flag & 1: self.mv.displaySticksAndBalls(self.mv.getSelection()) else: raise ValueError("WARNING: self.mv.displaySticksAndBalls cannot be called with only self.mv.getSelection()") def test_displaysticksballs_bug33(self): """ Test written for the bug #33 reported in MGLBUGZILLA by Daniel. only does not work when multiple molecule and selection only on one mol. """ # Reading the test molecules self.mv.readMolecule('7ins.pdb') self.mv.readMolecule('1crn.pdb') self.mv.displaySticksAndBalls(self.mv.getSelection()) # not bondsBOTest body self.mv.select(self.mv.Mols[0].chains[0].residues[1:15]) nodes = self.mv.getSelection() self.mv.displaySticksAndBalls(nodes, only=1) self.assertEqual(self.mv.Mols[0].geomContainer.atoms['sticks'], nodes.atoms.uniq()) self.assertEqual(self.mv.Mols[0].geomContainer.atoms['balls'], nodes.atoms.uniq()) self.assertEqual(len(self.mv.Mols[1].geomContainer.atoms['sticks']), 0) self.assertEqual(len(self.mv.Mols[1].geomContainer.atoms['balls']),0) ## # delete molecules. ## self.mv.deleteMol('7ins') ## self.mv.deleteMol('1crn') ## assert len(self.mv.Mols) == 0 if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/Tests/Data/__init__.py0000644000175000017500000000000007723713313026220 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/Tests/test_tester.py0000644000175000017500000000645307723713313026177 0ustar debiandebian# # # $Id: test_tester.py,v 1.3 2003/08/29 18:09:15 sophiec Exp $ # ######################################################################### # # Date: July 2003 Author: Sophie Coon # # sophiec@scripps.edu # # Copyright: TSRI, Sophie Coon. # ######################################################################### import unittest, os class TestSuiteTest(unittest.TestCase): pass class TestLoaderTest(unittest.TestCase): """ TestCase class implementing methods to test Tester functionalities """ def setUp(self): from mglutil.TestUtil.tester import TestLoader self.tl = TestLoader() def tearDown(self): self.tl = None def test_loadTestsFromTestCase1(self): from Data.test_displayCommands import DisplayLinesTest suite = self.tl.loadTestsFromTestCase(DisplayLinesTest) self.failUnless(isinstance(suite, self.tl.suiteClass)) self.assertEqual(len(suite._tests), 5) ## def test_loadTestsFromFunctions(self): ## from Data import test_secondarystructure ## mod = test_secondarystructure ## import types ## funcs = [] ## for name in dir(test_secondarystructure): ## if name[:4]=='test': ## f = getattr(mod,name) ## if type(f) is types.FunctionType: ## funcs.append(f) ## setUp = getattr(mod,"startMoleculeViewer") ## tearDown = getattr(mod,"quitMoleculeViewer") ## path,testSuite = self.tl.loadTestsFromFunctions(funcs,setUp=setUp, ## tearDown=tearDown) ## self.failUnless(isinstance(testSuite, self.tl.suiteClass)) ## self.assertEqual(len(testSuite._tests),19) ## path, testSuite = self.tl.loadTestsFromFunctions(funcs[0]) ## self.failUnless(isinstance(testSuite, self.tl.suiteClass)) ## self.assertEqual(len(testSuite._tests),1) def test_loadTestsFromModule_1(self): from Data import test_secondarystructure mod = test_secondarystructure path,testSuite = self.tl.loadTestsFromModule(mod) self.failUnless(isinstance(testSuite, self.tl.suiteClass)) self.assertEqual(len(testSuite._tests), 19) def test_loadTestsFromModule_2(self): from Data import test_displayCommands mod = test_displayCommands path,testSuite = self.tl.loadTestsFromModule(mod) def test_loadTestsFromName_1(self): name = 'mglutil.TestUtil.Tests.test_tester' path,ts = self.tl.loadTestsFromName(name) self.failUnless(isinstance(ts, self.tl.suiteClass)) self.failUnless(len(ts._tests)!=0) def test_loadTestsFromName_2(self): name = 'mglutil.TestUtil' path,ts = self.tl.loadTestsFromName(name) self.failUnless(isinstance(ts, self.tl.suiteClass)) self.failUnless(len(ts._tests)!=0) def test_loadTestsFromPackage_1(self): from mglutil import TestUtil print os.path.abspath(TestUtil.__path__[0]) r = self.tl.loadTestsFromPackage(TestUtil) print r #self.failUnless(isinstance(ts, self.tl.suiteClass)) #self.failUnless(len(ts._tests)!=0) class TesterTest(unittest.TestCase): pass if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/Tests/__init__.py0000644000175000017500000000010310473163646025357 0ustar debiandebianignore = {'test_tester':[], #'test_dependencytester':[] } mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/tester.py0000644000175000017500000004354410113671720024030 0ustar debiandebian# # # $Id: tester.py,v 1.9 2004/08/27 17:48:00 sophiec Exp $ # ######################################################################### # # Date: July 2003 Author: Sophie Coon, William Lindstrom # # sophiec@scripps.edu # lindy@scripps.edu # # Copyright: Michel Sanner, Sophie Coon, William Lindstrom and TSRI # ######################################################################### import unittest, sys import types, os, glob, string class TestSuite(unittest.TestSuite): def __init__(self, tests=(), setUpSuite=None, tearDownSuite=None): # Need to know what my tests contain. self.setUpSuite = setUpSuite self.tearDownSuite = tearDownSuite unittest.TestSuite.__init__(self, tests=tests) def __call__(self, result=None): if not self.setUpSuite is None: ## if type(self.setUpSuite) is types.MethodType and len(self._tests): ## self._tests[1].setUpSuite() ## else: self.setUpSuite() for test in self._tests: if result.shouldStop: break test(result) if not self.tearDownSuite is None: ## if type(self.tearDownSuite) is types.MethodType and len(self._tests): ## self._tests[0].tearDownSuite() ## else: self.tearDownSuite() return result def __exc_info(self): """Return a version of sys.exc_info() with the traceback frame minimised; usually the top level of the traceback frame is not needed. """ exctype, excvalue, tb = sys.exc_info() if sys.platform[:4] == 'java': ## tracebacks look different in Jython return (exctype, excvalue, tb) newtb = tb.tb_next if newtb is None: return (exctype, excvalue, tb) return (exctype, excvalue, newtb) class TestLoader(unittest.TestLoader): """ """ testMethodPrefix = 'test_' ignore = {} ignoredChecked = False suiteClass = TestSuite def loadTestsFromFunctions(self, functions, setUp=None, tearDown=None): """ The functions needs to be from the same module. creates a FunctionTestCase for each function in the sequence and returns a TestSuite. """ ftc = [] if not type(functions) in [types.TupleType, types.ListType] and \ type(functions) is types.FunctionType: functions = [functions,] m = functions[0].__module__ modName = m.split('.')[-1] parts = m.split(".")[:-1] import string p = string.join(parts, '/') modPath = os.path.abspath(p) for func in functions: if not type(func) is types.FunctionType:continue ftc.append(unittest.FunctionTestCase(func, setUp=setUp, tearDown=tearDown)) return (modPath, self.suiteClass(ftc)) def loadTestsFromModule(self, module, funcPrefix=None): modName = module.__name__.split('.')[-1] tests = [] modPath = os.path.split(module.__file__)[0] modPath = os.path.abspath(modPath) ignoring = [] if self.ignore.has_key(modName): # ignore the whole testModule ignoring = self.ignore[modName] if len(ignoring)==0: return (modPath, self.suiteClass(tests)) if not funcPrefix is None: self.testMethodPrefix = funcPrefix # Look in the module if a setUp or setUpSuite is defined and a tearDown # and tearDownSuite inModule = dir(module) if 'setUp' in inModule: setUp = getattr(module, 'setUp') if not type(setUp) is types.FunctionType: setUp=None inModule.remove('setUp') else: setUp = None if 'tearDown' in inModule: tearDown = getattr(module, 'tearDown') if not type(tearDown) is types.FunctionType: tearDown=None inModule.remove('tearDown') else: tearDown = None if 'setUpSuite' in inModule: setUpSuite = getattr(module, 'setUpSuite') if not type(setUpSuite) is types.FunctionType: setUpSuite=None inModule.remove('setUpSuite') else: setUpSuite = None if 'tearDownSuite' in inModule: tearDownSuite = getattr(module, 'tearDownSuite') if not type(tearDownSuite) is types.FunctionType: tearDownSuite=None inModule.remove('tearDownSuite') else: tearDownSuite = None testsFunc = [] for name in dir(module): if name in ignoring: continue obj = getattr(module, name) if (isinstance(obj, (type, types.ClassType)) and issubclass(obj, unittest.TestCase)): ## inClass = dir(obj) # Look if a setUpSuite and a tearDownSuite have been implemented # for a testCase.else if one was implemented for the whole # module it will be used. ## if 'setUpSuite' in inClass: ## print 'in setUpSuite' ## setUpSuite = getattr(obj, 'setUpSuite') ## if not type(setUpSuite) is types.MethodType: ## setUpSuite=None ## if 'tearDownSuite' in inClass: ## tearDownSuite = getattr(obj, 'tearDownSuite') ## if not type(tearDownSuite) is types.MethodType: ## tearDownSuite=None ts = self.suiteClass(tests = map(obj, self.getTestCaseNames(obj)), setUpSuite=setUpSuite, tearDownSuite=tearDownSuite) tests.append(ts) elif type(obj) is types.FunctionType : p = len(self.testMethodPrefix) if name[:p]==self.testMethodPrefix: testsFunc.append(unittest.FunctionTestCase(obj, setUp=setUp, tearDown=tearDown)) if len(testsFunc): ts = self.suiteClass(tests = testsFunc, setUpSuite=setUpSuite, tearDownSuite=tearDownSuite) tests.append(ts) return (modPath, self.suiteClass(tests=tests)) def loadTestsFromPackageRecur(self, package, testDirName='Tests', modPrefix=None, funcPrefix=None): # Need to make sure that package is the proper thing pathPack = package.__path__[0] tests = [] pName = package.__name__ for root, dirs, files in os.walk(pathPack): if testDirName in dirs: #packName = root.replace("/", ".") packName = "" dir, name = os.path.split(root) while name != pName: if packName: packName = name+"."+packName else: packName = name dir, name = os.path.split(dir) if packName: packName = pName + "." + packName else: packName = pName tests.append(self.loadTestsFromName(packName, testDirName=testDirName, modPrefix=modPrefix, funcPrefix=funcPrefix)) return tests def loadTestsFromPackage(self, package, testDirName="Tests", modPrefix=None, funcPrefix=None): """ import all the module from a the given package test directory, parse the __init__.py of the Tests directory to get the information on which tests to not run. __init__.py empty then takes all the pythonmodule with testName.py """ # package : package # testDirName : string representing the name of the test directory # 1- Needs to get the test directory pathPack = package.__path__[0] pathTests = os.path.join(pathPack, testDirName) if not os.path.exists(pathTests): return testPackName = package.__name__ + "." + testDirName testPack = __import__(testPackName) components = testPackName.split('.') for comp in components[1:]: testPack = getattr(testPack, comp) if testPack.__dict__.has_key('ignore') : ignore = getattr(testPack, 'ignore') if modPrefix is None and testPack.__dict__.has_key('modPrefix'): modPrefix = getattr(testPack, "modPrefix") if funcPrefix is None and testPack.__dict__.has_key('funcPrefix'): funcPrefix = getattr(testPack,'funcPrefix') # Then need to go in the given directory and get all the python files # starting with the proper testMethodPrefix. # 2- get the __init__.py and parse the file. # Either use glob or walk. if modPrefix is None: modName = "/*.py" else: modName = "/%s*.py"%modPrefix testModules = glob.glob(pathTests+modName) ts = [] for testMod in testModules: dir, file = os.path.split(testMod) if file in ["__init__.py", "mvAll.log.py"]: continue modName = os.path.splitext(file)[0] ts.append(self.loadTestsFromName(testPackName+"."+modName, funcPrefix=funcPrefix)[1]) # 3- Create a suite of all the tests in this module. packSuite = self.suiteClass(ts) return (pathTests, packSuite) def getTestsModulesFromPackRecur(self, pack, testDirName='Tests', modPrefix=None): pathPack = pack.__path__[0] testModules = [] pName = pack.__name__ for root, dirs, files in os.walk(pathPack): if testDirName in dirs: packName = "" dir, name = os.path.split(root) while name != pName: if packName: packName = name+"."+packName else: packName = name dir, name = os.path.split(dir) if packName != "": packName = pName + "." + packName else: packName = pName pack = self.getObjFromName(packName, testDirName=testDirName) testModules = testModules + self.getTestsModulesFromPack(pack, testDirName=testDirName, modPrefix=modPrefix) return testModules def getTestsModulesFromPack(self, pack, testDirName='Tests', modPrefix=None): pathPack = pack.__path__[0] pathTests = os.path.join(pathPack, testDirName) if modPrefix is None: modName = "/*.py" else: modName = "/%s*.py"%modPrefix tm = glob.glob(pathTests+modName) testModules = [] for testMod in tm: dir, file = os.path.split(testMod) if file in ["__init__.py", "mvAll.log.py"]: continue modName = os.path.splitext(file)[0] pName = pack.__name__+"."+testDirName+"."+modName testModules.append(pName) return testModules def getTestsModules(self, name, recursive=False, module=None, testDirName='Tests', modPrefix=None, funcPrefix=None): if funcPrefix: self.testMethodPrefix=funcPrefix obj = self.getObjFromName(name, module=module, testDirName=testDirName) import unittest if type(obj) == types.ModuleType: # Can either be a python module or a python package. if hasattr(obj,'__path__') and os.path.isdir(obj.__path__[0]): if recursive: testModules = self.getTestsModulesFromPackRecur(obj, testDirName=testDirName, modPrefix=modPrefix) return testModules else: testModules = self.getTestsModulesFromPack(obj, testDirName=testDirName, modPrefix=modPrefix) return testModules else: return [obj.__name__,] elif (isinstance(obj, (type, types.ClassType)) and issubclass(obj, unittest.TestCase)): return [obj.__module__+'.'+obj.__name__,] elif type(obj) == types.FunctionType: return [obj.__module__+'.'+obj.__name__,] def getObjFromName(self, name, module=None, testDirName='Tests'): if name[-3:] == '.py': name = name[:-3] if '/' in name: parts = name.split('/') parts = filter(lambda x: x, parts) else: parts = name.split('.') parts = filter(lambda x: x, parts) if module is None: if not parts: raise ValueError, "incomplete test name: %s" % name else: parts_copy = parts[:] while parts_copy: try: module = __import__(string.join(parts_copy,'.')) break except ImportError: del parts_copy[-1] if not parts_copy: raise parts = parts[1:] obj = module for part in parts: obj = getattr(obj, part) if part==testDirName: if obj.__dict__.has_key('ignore'): self.ignore = getattr(obj,'ignore') return obj def loadTestsFromName(self, name, recursive=False, module=None, testDirName='Tests', modPrefix=None, funcPrefix=None): """ Returns a suite of all tests cases given a string specifier. The name may resolve either a package, a module, a test case class, a test method within a test case class, a test function or a callable object which returns a TestCase or TestSuite instance. The metod optionally resolves the names relative to a given module. """ if funcPrefix: self.testMethodPrefix=funcPrefix ## if name[-3:] == '.py': ## name = name[:-3] ## if '/' in name: ## parts = name.split('/') ## else: ## parts = name.split('.') obj = self.getObjFromName(name, module=module, testDirName=testDirName) import unittest if type(obj) == types.ModuleType: # Can either be a python module or a python package. if hasattr(obj,'__path__') and os.path.isdir(obj.__path__[0]): if recursive: return self.loadTestsFromPackageRecur(obj, testDirName=testDirName, modPrefix=modPrefix ) else: return self.loadTestsFromPackage(obj, testDirName=testDirName, modPrefix=modPrefix) else: return self.loadTestsFromModule(obj) elif (isinstance(obj, (type, types.ClassType)) and issubclass(obj, unittest.TestCase)): m = obj.__module__ parts = m.split(".")[:-1] p = string.join(parts, "/") return (p, self.loadTestsFromTestCase(obj)) elif type(obj) == types.FunctionType: # need to get the setUp and tearDown method. m = obj.__module__ module = __import__(m) parts = m.split('.') p = string.join(parts[:-1], '/') modPath = os.path.abspath(p) for part in parts[1:]: module = getattr(module , part) setUp = None tearDown = None setUpSuite = None tearDownSuite = None if module .__dict__.has_key('setUp'): setUp = getattr(module , 'setUp') if module .__dict__.has_key('tearDown'): tearDown = getattr(module , 'tearDown') if module .__dict__.has_key('setUpSuite'): setUpSuite = getattr(module, 'setUpSuite') if not type(setUpSuite) is types.FunctionType: setUpSuite=None if module .__dict__.has_key('tearDownSuite'): tearDownSuite = getattr(module, 'tearDownSuite') if not type(tearDownSuite) is types.FunctionType: tearDownSuite=None tfc = unittest.FunctionTestCase(obj, setUp=setUp, tearDown=tearDown) ts = self.suiteClass(tests = [tfc,], setUpSuite=setUpSuite, tearDownSuite=tearDownSuite) return (modPath, ts) elif type(obj) == types.UnboundMethodType: newobj = obj.im_class(obj.__name__) m = newobj.__module__ parts = m.split(".")[:-1] p = string.join(parts, "/") return (p, obj.im_class(obj.__name__)) elif callable(obj): test = obj() if not isinstance(test, unittest.TestCase) and \ not isinstance(test, unittest.TestSuite): raise ValueError, \ "calling %s returned %s, not a test" % (obj,test) return (None,test) else: raise ValueError, "don't know how to make test from: %s" % obj mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/__init__.py0000644000175000017500000000000007723713313024245 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/bin/0000755000175000017500000000000012146210067022707 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/bin/tester0000755000175000017500000003057311174420223024150 0ustar debiandebian#!/usr/bin/env python2.5 # import sys print "running Python:", sys.executable from optparse import OptionParser import time import sys import warnings #funcPrefix = 'tests' ########################################################################## # CREATE THE OPTIONS LIST ########################################################################## parser = OptionParser() # Nothing is printed on the standard error output parser.add_option("-q", "--quiet", action="store_const", const=0, dest="verbose", default=1, help="quiet") parser.add_option("-v", "--verbose", action="store_const", const=1, dest="verbose", default=1,help="verbose, default behavior") parser.add_option("-V","--noisy", action="store_const", const=2, dest="verbose", default=1,help="noisy") # It will go down the subtree and look for test directory parser.add_option("-r", "--recursive", action="store_true", dest="recursive", default=False, help="option to get tests from package recursively (default=false)") # Allows the user to specify the test directory name parser.add_option("-t","--testdir", dest="testDir", default="Tests", help="option to specify the name of the directory containing the tests (default='Tests')", metavar="TESTDIR") # Allows the user to specify the function prefix for tests functions. parser.add_option("-f","--funcPrefix", dest="funcPrefix", default=None, help="option to specify the prefix a method or a function needs, to be included in the list of tests. (default='test_')") # Allows the user to specify the mod prefix for test modules. parser.add_option("-m","--modPrefix", dest="modPrefix", default=None, help="option to specify the prefix a test module needs, to be included in the list of tests. (default= no prefix)") # Allows the user to give a filename where the standard error will be redirected. parser.add_option("-o", "--output", dest="stream", default=sys.stderr, metavar='OUTPUT', help="name of an output file") # Allows the user to chose to run each testModule in a different python subprocess parser.add_option("-s", "--subprocess", dest="usesubprocess", default=False, action="store_true", help="option to specify whether or not to run each test module in a subprocess (default=False)") # option to write or not a report file parser.add_option("--noreport", dest="noreport", default=False, action="store_true", help="option to specify whether or not a report file will be created. When the option is given no report will be created otherwise a report will be created in a TESTREPORT subdirectory. (default=a report will be created)") parser.add_option("-e", "--exitOnFail", dest="exitOnFail", default=False, action="store_true", help="option to specify whether or not the tester should exit after the first failed test. (default=False)") ########################################################################## # FUNCTION TO RECREATE THE OPTIONS STRING ########################################################################## def findTesterPythonScript(): """looks for tester in current directory, else looks for it in mglutil.TestUtil.bin""" cwd = os.getcwd() # look for tester in current directory if os.path.exists(os.path.join(cwd, 'tester')): return os.path.join(cwd, 'tester') else: # look for tester in mglutil/TestUtil/bin from mglutil import TestUtil tester = os.path.join(os.path.abspath(TestUtil.__path__[0]), 'bin', 'tester') if os.path.exists(tester): return tester else: raise RuntimeError("tester not found in current dir or mglutil package") def recreateOptionstr(options): PyInterp = sys.executable relMajor = sys.version[0] relMinor = sys.version[2] assert int(relMajor)>=2, "Python2.3 or higher is needed but not found" assert int(relMinor)>=3, "Python2.3 or higher is needed but not found" tester = findTesterPythonScript() cmd = "%s %s --noreport "%(PyInterp, tester) # Verbose status if options.verbose == 0: cmd = cmd +"-q " elif options.verbose == 1: cmd = cmd + "-v " elif options.verbose == 2: cmd = cmd + "-V " if options.exitOnFail: cmd = cmd + "-e " # TestDirectory if options.testDir != 'Tests': cmd = cmd + "-t%s "%options.testDir # FuncPrefix if not options.funcPrefix is None: cmd = cmd + "-f%s "%options.funcPrefix # modPrefix if not options.modPrefix is None: cmd = cmd + "-m%s "%options.modPrefix # output if options.stream != sys.stderr: cmd = cmd + "-o%s "%options.stream return cmd ########################################################################## # TESTER SCRIPT ########################################################################## # retrieve the options and arguments from the command line (options, args) = parser.parse_args() import os,sys,unittest, types import gc # Need to create a baton when wanting to publish a package. This baton will be # released when the testing fails or when the publishing succeeds # This mechanism will prevent two people trying to publish at the same time. ## if options.publish: ## # Creates the baton... ## baton = "bat2e09dfjk90-0kkjad98" ## if os.path.exists("/mgl/temp/%s"%baton): ## sys.exit("CANNOT GET BATON") ## out = os.system("touch /mgl/temp/%s"%baton) ## if out: ## sys.exit("FAILED TO CREATE BATON") ## # Set recursive to True automatically... ## options.recursive = True sys.path.insert(0, os.getcwd()) from mglutil.TestUtil.tester import TestLoader tl = TestLoader() # The user wants to run each testmodule of a package in a different subprocess if options.usesubprocess: # Need first to get each test module to run them each in a different # python process modlist = [] for arg in args: modlist = modlist + tl.getTestsModules(arg, testDirName=options.testDir, recursive=options.recursive, funcPrefix=options.funcPrefix, modPrefix=options.modPrefix) cmd = recreateOptionstr(options) outputs = {} failed = 0 tstart = time.time() ntests = 0 for mod in modlist: cmdline = cmd + mod print "Executing: ", cmdline # This will start the tests. from mglutil.process import Popen, PIPE import sys, os, string try: plist = Popen(cmdline.split(), stdout=PIPE, stderr=PIPE) out, err = plist.communicate() outputs[mod] = (out, err) nerr =string.split(err, "\n") for l in nerr: nl = string.split(l) if len(nl) == 5: if nl[0] == "Ran" and string.count(nl[2], "test")==1 : ntests = ntests + int (nl[1]) except OSError, e: if e.errno == errno.ENOENT: print "The file didn't exist. I thought so..." print "Child traceback:" print e.child_traceback else: print "Error", e.errno else: pass #print >>sys.stderr, "Gosh. No error." #outptr, inptr, errptr = popen2.popen3(cmdline)#, 1000000) #inptr.flush() #err = errptr.readlines() #outputs[mod] = (outptr.readlines(), err) # All the tests must be successful when trying to publish a module or # package. ## if options.publish: if options.exitOnFail: failed=filter(lambda x: "FAILED" in x, err) if len(failed) != 0: failed = 1 break tend = time.time() if not options.noreport: if not os.path.exists("./TESTREPORT"): os.mkdir("./TESTREPORT") reportFile = "TESTREPORT/sReport-" for arg in args: n = arg.replace('/','.') reportFile = reportFile + n reportFile = reportFile + sys.platform + ".txt" f = open(reportFile, "w") f.write("RAN %s TESTS IN %f\n"%(ntests, tend-tstart)) for modName, val in outputs.items(): f.write(modName+"\n") #for l in val[1]: # f.write(l) f.write(val[1]) f.write("##################################\n\n") f.close() if failed: sys.exit("FAILED") else: testSuites = [] for arg in args: res = tl.loadTestsFromName(arg, testDirName=options.testDir, recursive=options.recursive, funcPrefix=options.funcPrefix, modPrefix=options.modPrefix) if not res: warnings.warn('no "%s" nothing found for'%(testDirName,arg)) continue if type(res[0]) is types.TupleType: testSuites.append(res) else: testSuites.append([res,]) results = [] if options.stream != sys.stderr and \ type(options.stream) is types.StringType: output = open(options.stream,'w') else: output = options.stream tr = unittest.TextTestRunner(stream=output, verbosity=options.verbose) tstart = time.time() ntests = 0 for ts in testSuites: for p, suite in map(None,ts): os.chdir(p) r = tr.run(suite) ntests = ntests + r.testsRun results.append((p,r)) failure = filter(lambda x: not x[1].wasSuccessful(), results) tend = time.time() print "TESTS RAN IN %f s"%(tend-tstart) if len(failure): wasSuccessful="FAILED" else: wasSuccessful="SUCCESS" # Writing a report file. if not options.noreport: #report=""" """ report="RAN %s TESTS IN %f\n"%(ntests, tend-tstart) for res in results: for test, err in res[1].errors: report = report + res[1].separator1 + "\n" report = report + "ERROR: %s\n" % str(test) report = report + res[1].separator2 + "\n" report = report + "%s\n" % err for test, err in res[1].failures: report = report + res[1].separator1 + "\n" report = report + "FAIL: %s\n" % str(test) report = report + res[1].separator2 + "\n" report = report + "%s\n" % err report = report + res[1].separator2 + "\n" if not res[1].wasSuccessful(): report = report + "FAILED (" failed, errored = map(len, (res[1].failures, res[1].errors)) if failed: report = report + "failures=%d" % failed if errored: if failed: report = report + ", " report = report + "errors=%d" % errored report = report + ")\n" else: report = report + "OK\n" ## report = report + """%s\n"""%res[0] ## #report = report + """test was successful:%s\nFAILURES:\n"""%res[1].wasSuccessful() ## report = report + """test was successful:%s\n"""%res[1].wasSuccessful() ## if len(res[1].failures): ## report = report + """FAILURES:\n""" ## for failed in res[1].failures: ## report = report + """%s:\n%s\n"""%(str(failed[0]), failed[1]) ## #report = report + """ERRORS:\n""" ## if len(res[1].errors): ## report = report + """ERRORS:\n""" ## for err in res[1].errors: ## report = report + """%s:\n%s\n"""%(str(err[0]), err[1]) ## report = report + """ -------------------------------------\n""" os.chdir(sys.path[0]) if not os.path.exists("./TESTREPORT"): os.mkdir("./TESTREPORT") reportFile = "TESTREPORT/report-" for arg in args: n = arg.replace('/','.') reportFile = reportFile + n reportFile = reportFile + sys.platform + ".txt" f = open(reportFile, 'wa') f.write(report) f.close() sys.path = sys.path[1:] sys.exit(wasSuccessful) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/bin/publish0000755000175000017500000001336210711450042024303 0ustar debiandebian#!/usr/bin/env python2.5 # from optparse import OptionParser import time, sys, os, string ########################################################################## # CREATE THE OPTIONS LIST ########################################################################## parser = OptionParser() # option to specify what is going to be printed out: # Nothing parser.add_option("-q", "--quiet", action="store_const", const=0, default=1, dest="verbose", help="quiet") # Something parser.add_option("-v", "--verbose", action="store_const", const=1, default=1, dest="verbose", help="verbose, default behavior") # Everything parser.add_option("-V","--noisy", action="store_const", const=2, default=1, dest="verbose", help="noisy" ) # option to specify the test directory name parser.add_option("-t","--testdir", dest="testDir", default="Tests", help="specifies the name of the directory containing \ the tests", metavar="TESTDIR") # option to specify the function prefix for tests functions. parser.add_option("-f","--funcPrefix", dest="funcPrefix", default=None, help="specifies the prefix a method or a function needs \ to be included in the list of tests.") # option to specify the prefix to get the test modules. parser.add_option("-m","--modPrefix", dest="modPrefix", default=None, help="specifies the prefix a tests module needs to be \ included in the list of tests.") # option to redirect the stderr. parser.add_option("-o", "--output", dest="stream", default=sys.stderr, metavar='OUTPUT', help="name of an output file") # option to run each testModule in a subprocess. parser.add_option("-s", "--subprocess", dest="usesubprocess", default=False, action="store_true", help="run each test module in a subprocess") ######################################################################### # UTILISTY FUNCTIONS ######################################################################### def getTesterCmdStr(options): # Command to create the "tester" command line # Certain options are mandatory such as the -r and -e cmd = "tester -re " # Verbose status if options.verbose == 0: cmd = cmd +"-q " elif options.verbose == 1: cmd = cmd + "-v " elif options.verbose == 2: cmd = cmd + "-V " # subprocess if options.usesubprocess: cmd = cmd + "-s " # TestDirectory if options.testDir != 'Tests': cmd = cmd + "-t%s "%options.testDir # FuncPrefix if not options.funcPrefix is None: cmd = cmd + "-f%s "%options.funcPrefix # modPrefix if not options.modPrefix is None: cmd = cmd + "-m%s "%options.modPrefix # output if options.stream != sys.stderr: cmd = cmd + "-o%s "%options.stream return cmd def isPackFromName(name): if name[-3:] == '.py': name = name[:-3] if '/' in name: parts = name.split('/') else: parts = name.split('.') if not parts: raise ValueError, "incomplete test name: %s" % name else: parts_copy = parts[:] while parts_copy: try: module = __import__(string.join(parts_copy,'.')) break except ImportError: del parts_copy[-1] if not parts_copy: raise parts = parts[1:] obj = module for part in parts: obj = getattr(obj, part) if type(obj) is types.ModuleType and hasattr(obj, '__path__'): return obj, True else: return obj, False ########################################################################## # PUBLISH SCRIPT ########################################################################## # retrieve the options and arguments from the command line (options, args) = parser.parse_args() import os,sys,unittest, types, popen2 import gc # Creates the lockfile... lockfile = "/mgl/temp/bat2e09dfjk90-0kkjad98" if os.path.exists(lockfile): sys.exit("ERROR: LOCKFILE ALREADY EXISTS") out = os.system("touch %s"%lockfile) if out: sys.exit("ERROR: FAILED TO CREATE LOCKFILE") # Get the tester command line string cmd = getTesterCmdStr(options) outputs = {} import mglutil.TestUtil from NormalDate.normalDate import NormalDate publishPath = os.path.join(mglutil.TestUtil.__path__[0], 'publishPack.csh') for arg in args: obj, isPack = isPackFromName(arg) # Can only publish a package if not isPack: continue cmdline = cmd + arg print "Executing: ", cmdline outptr, inptr, errptr = popen2.popen3(cmdline, bufsize=0) inptr.flush() err = errptr.readlines() output = outptr.readlines() outputs[arg] = (output, err) failed=filter(lambda x: "FAILED" in x, err) if len(failed) != 0: continue print "Publishing the %s"%arg nd = NormalDate() # SC 2003 newtag= "mgltest-%s%s%s"%(nd.day(), nd.month(), nd.year()) # The publishPack.csh will do the following as the user mgltools: # cd /usr/local/home/sophiec/MGL # cvs tag -r mgl mgl-DATE PACKNAME # cvs update -r py-2-3 PACKNAME # cvs tag -F mgl PACKNAME # resPub = os.system("ssh mgltools@levi %s %s %s"%(publishPath, newtag, arg)) if resPub: # NEED TO RELEASE THE LOCKFILE BEFORE EXITING relbat = os.system("rm -f %s"%lockfile) if relbat: sys.exit("ERROR: COULD NOT PUBLISH %s AND COULD NOT RELEASE THE LOCK FILE %s"%(arg, lockfile)) else: sys.exit("ERROR: COULD NOT PUBLISH %s"%arg) relBat = os.system("rm -f %s"%lockfile) if relBat: sys.exit("COULD NOT RELEASE LOCKFILE %s"%lockfile ) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/bin/getlatest0000644000175000017500000002117011216031311024615 0ustar debiandebian#!/usr/bin/env python # ## ##Authors : Michel F Sanner , Sowjanya Karnati ## ## import sys,getopt,os import types,string ###################################################################### # COMMAND LINE OPTIONS ###################################################################### def Usage(): "Print helpful accurate statement to Usage statement" print "Usage:getlatest" print "Description of Command:" print "-----------------------" print "This command cvs co and installs package or pacakges " print "Optional parameters:" print "--------------------" print "-p : packages seperated by commas or a pacakge" print " eg: ./getlatest -psymserv,gle,opengltk " print " or ./getlatest -psymserv" print " or ./getlatest -pall ,it updates all the packages " print " or ./getlatest -p platdep ,Updates only platform dependent packages ie, eg: opengltk,gle,bhtree etc" print " or ./getlatest -p platindep ,Updates only platform independent packages ie, pure python packages eg: Pmv,Vision,AutoDockTools etc" print " [consistent with all other packages] " print "-h : help" try: exec("opt_list,args=getopt.getopt(sys.argv[1:],'p:h')") except getopt.GetoptError,msg: print "getlatest:'%s'"%msg Usage() sys.exit(2) #initialize required parameters package = None for o,a in opt_list: if o in ('-p','--p'): package = a if o in ('-h','--h'): Usage() sys.exit() ###########MGLPACKS ########################## DPACKAGES =['bhtree','gle','geomutils','mslib','opengltk','sff','SpatialLogic','stride','UTpackages','QSlimLib','cAutoDock','OpenCSG'] INDPACKAGES =['AutoDockTools','Vision','symserv','DejaVu','NetworkEditor','ViewerFramework','Pmv','PyAutoDock','mglutil','Volume','MolKit','PyBabel'] DISTPACKAGES = DPACKAGES+INDPACKAGES ####caluculating todays date cmd = "date '+%m/%d/%y'" pipe =os.popen(cmd) datelines=pipe.readlines() todays_date = str(datelines[0]).replace('/','-')[:-1] if not package: print "packupdate requires package name to be updated" sys.exit() #find $PATH cmd ="echo $PATH" pipe1 = os.popen(cmd) allines= pipe1.readlines() x = allines[0].replace(':',',') pathstring =x.split(',') ############FIND SWIG################# def findswig(pathstring): list = [] from distutils.command import build_ext from distutils.dist import Distribution d =Distribution() a = build_ext.build_ext(d) yourswig = a.find_swig() for a in pathstring: if os.path.exists('%s/%s' %(a,yourswig)): list.append('%s/%s' %(a,yourswig)) if list == []: print "YOU DON'T HAVE SWIG" sys.exit() ############FIND CC################## def findcc(pathstring): list = [] from distutils import ccompiler yourcompiler = ccompiler.get_default_compiler() if sys.platform == 'sun' or 'irix6': for a in pathstring: if os.path.exists('%s/cc' %a) or os.path.exists('%s/CC' %a): list.append('%s' %a) if list == []: print "YOU DON'T HAVE A C-COMPILER" sys.exit() if (sys.platform == 'cygwin') or (os.name == 'nt'): for a in pathstring: if os.path.exists('%s/cc' %a): list.append('%s' %a) if list == []: print "YOU DON'T HAVE A C-COMPILER" sys.exit() if (sys.platform == 'linux2') or (sys.platform == 'darwin'): for a in pathstring: if os.path.exists('%s/gcc' %a) or os.path.exists('%s/g++' %a): list.append('%s' %a) if list == []: print "YOU DON'T HAVE A C-COMPILER" sys.exit() #############FIND CVS################# def findcvs(pathstring): list =[] for a in pathstring: if os.path.exists('%s/cvs' %a): list.append('%s/cvs' %a) if list == []: print "YOU DONT HAVE CVS" sys.exit() findswig(pathstring) findcc(pathstring) findcvs(pathstring) ##########ARCHOSV################# if sys.platform == 'linux2': ARCHOSV = 'i86Linux2' if sys.platform =='darwin': ARCHOSV = 'ppcDarwin7' if sys.platform =='sun': ARCHOSV ='sunSunOS5' if sys.platform == 'irix6': ARCHOSV = 'sgi4DIRIX646' if sys.platform == 'cygwin': ARCHOSV = 'cygwin' uninstlist =[] #curdir = os.getcwd() os.system( 'rm -rf ./MGLPACKS') cmd = 'echo $MGL_ROOT' pipe2 = os.popen(cmd) all=pipe2.readlines() curdir=all cmd = 'echo $MGL_ARCHOSV' pipe3 = os.popen(cmd) all1=pipe3.readlines() archosvdir=all1 dpdir="%s/%s/lib/python2.5/site-packages" %(curdir[0][:-1],archosvdir[0][:-1]) indpdir="%s/share/lib/python2.5/site-packages" %(curdir[0][:-1]) bindir="%s/%s/bin" %(curdir[0][:-1],archosvdir[0][:-1]) os.system('rm -rf %s/MGLPACKS' %dpdir) PACKLIST=[] uninstlist=[] if package=='all': os.chdir(dpdir) DPLIST=os.listdir('./') os.chdir(indpdir) INDPLIST=os.listdir('./') PACKLIST=DPLIST+INDPLIST PACK_DIST=[] for p in PACKLIST: if p in DISTPACKAGES: PACK_DIST.append(p) if package=='platdep': os.chdir(dpdir) PACKLIST=os.listdir('./') PACK_DIST=[] for p in PACKLIST: if p in DISTPACKAGES: PACK_DIST.append(p) if package=='platindep': os.chdir(indpdir) PACKLIST=os.listdir('./') PACK_DIST=[] for p in PACKLIST: if p in DISTPACKAGES: PACK_DIST.append(p) if not package in ['all','platdep','platindep']: PACK_DIST=[] PACKLIST = string.split(package,',') for p in PACKLIST: PACK_DIST.append(p) if PACK_DIST!=[]: for p in PACK_DIST: if p in DPACKAGES: if not os.path.exists('%s/MGLPACKS' %(dpdir)): os.mkdir('%s/MGLPACKS' %dpdir) if not os.path.exists('%s/MGLPACKS%s' %(dpdir,todays_date)): os.mkdir('%s/MGLPACKS%s' %(dpdir,todays_date)) if p in INDPACKAGES: if not os.path.exists('%s/MGLPACKS%s' %(indpdir,todays_date)): os.mkdir('%s/MGLPACKS%s' %(indpdir,todays_date)) if p in PACKLIST and p in DPACKAGES: os.chdir('%s' %dpdir) if not os.path.exists('./MGLPACKS%s/%s' %(todays_date,p)): os.system('mv %s MGLPACKS%s/%s' %(p,todays_date,p)) else: os.system('rm -rf %s' %p) if p in PACKLIST and p in INDPACKAGES: os.chdir(indpdir) if not os.path.exists('./MGLPACKS%s/%s' %(todays_date,p)): os.system('mv %s MGLPACKS%s/%s' %(p,todays_date,p)) else: os.system('rm -rf %s' %p) #Connecting to CVS #CVS login print "PRESS ENTER WHEN ASKED FOR PASSWORD" os.system('/usr/bin/cvs -d:pserver:anonymous@moses.scripps.edu:/export/cvs login') print PACK_DIST if PACK_DIST==[]: print "No Packages are found in the current directory to update.So use getlatest -ppackname to update packages you want" sys.exit() #CVS check out for pack in PACK_DIST: if pack in DPACKAGES: pack=pack+"DIST" os.chdir(dpdir) if os.path.exists('./MGLPACKS'): os.chdir('./MGLPACKS') st =os.system('/usr/bin/cvs -z3 -d:pserver:anonymous@moses.scripps.edu:/export/cvs co %s' %pack) if st!=0: print "cannot cvs co" sys.exit() os.chdir('./%s' %pack) #cmd = 'python2.5 setup.py install --install-platlib=%s --install-purelib=%s --install-scripts=%s'%(dpdir,indpdir,bindir) cmd = 'python setup.py install' st = os.system(cmd) if st!=0: print "%s not installed" %pack uninstlist.append(pack) continue else: print "Updating %s package success" %pack if pack in INDPACKAGES: os.chdir(indpdir) st =os.system('/usr/bin/cvs -z3 -d:pserver:anonymous@moses.scripps.edu:/export/cvs co %s' %pack) if st!=0: print "cannot cvs co" sys.exit() if pack not in DISTPACKAGES: print "%s pack not found" %pack sys.exit() if uninstlist!=[]: print "New version of %s packages are not installed" %uninstlist for ui in uninstlist: if ui in DPACKAGES: os.chdir(dpdir) os.system('mv MGLPACKS%s/%s .' %(todays_date,ui)) if ui in INDPACKAGES: os.chdir(indpdir) os.system('mv MGLPACKS%s/%s .' %(todays_date,ui)) else: if os.path.exists('%s/MGLPACKS' %dpdir): os.chdir(dpdir) os.system('rm -rf MGLPACKS') print "Installation Success" mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/bin/Dependencytester0000755000175000017500000000473610406051164026152 0ustar debiandebian#!/usr/bin/env python # #Authors: Michel F Sanner,Sowjanya Karnati # #NOTES:This script finds and prints dependencies of all packages or one #patricular package.When run with -V option finds dependencies at file level # # import os, sys, re,string from os.path import walk import getopt,warnings #os.system('rm -rf depresult') ###################################################################### # COMMAND LINE OPTIONS ###################################################################### def Usage(): "Print helpful accurate statement to Usage statement" print "Usage:Dependency" print "Description of Command:" print "Optional parameters:" print " -v pack level(default is True) prints for all packages" print " -V file level(default is False) prints for all packages" print " -p pack" print " -h help" print " Script can be called for each pack like this:" print " ./Dependency -v -pPACKNAME" print " For list of Packs:" print " ./Dependency -v -pPACK1,PACK2,PACK3..." print " For each file :" print " ./Dependency -V -pPACKNAME.FILE(full path using '.')" print " Location of output file:" print " ./Dependency -l '/directory where you want to view result' " exec("opt_list,args=getopt.getopt(sys.argv[1:],'p:rvhVl:')") #initialize required parameters pack = None #optinal parameters loc = None v = True V = False for o,a in opt_list: if o in ('-p','--p'): pack = a if o in ('-h','--'): Usage() sys.exit() if o in ('-v','--v'): v = False if o in ('-V','--V'): V = True if o in ('-l','--l'): loc = a from mglutil.TestUtil import Dependencytester deptester = Dependencytester.DEPENDENCYCHECKER() Total_packs = deptester.rundependencychecker(pack,v,V,loc) if loc: if os.path.exists(loc): os.chdir("%s" %loc) if os.path.exists("%s/depresult" %loc): os.system('rm -rf %s/depresult' %loc) fptr = open("depresult",'w') fptr.writelines("DEPENDENCIES OF THE FOLLOWING PACKAGES:\n") for i in Total_packs: fptr.writelines(i) fptr.writelines("\n") fptr.writelines("\n") fptr.close() print "\n" print "You can also view result at %s/depresult" %loc print "DEPENDENCIES OF THE FOLLOWING PACKAGES:\n" for i in Total_packs: print "%s" %i print "\n" mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/bin/getlatest.py0000644000175000017500000002136411216031311025251 0ustar debiandebian## ##Authors : Michel F Sanner , Sowjanya Karnati ## ## import sys,getopt,os import types,string ###################################################################### # COMMAND LINE OPTIONS ###################################################################### def Usage(): "Print helpful accurate statement to Usage statement" print "Usage:getlatest" print "Description of Command:" print "-----------------------" print "This command cvs co and installs package or pacakges " print "Optional parameters:" print "--------------------" print "-p : packages seperated by commas or a pacakge" print " eg: ./getlatest -psymserv,gle,opengltk " print " or ./getlatest -psymserv" print " or ./getlatest -pall ,it updates all the packages " print " or ./getlatest -p platdep ,Updates only platform dependent packages ie, eg: opengltk,gle,bhtree etc" print " or ./getlatest -p platindep ,Updates only platform independent packages ie, pure python packages eg: Pmv,Vision,AutoDockTools etc" print "-t : tag to use with cvs" print " [consistent with all other packages] " print "-h : help" try: exec("opt_list,args=getopt.getopt(sys.argv[1:],'p:t:h')") except getopt.GetoptError,msg: print "getlatest:'%s'"%msg Usage() sys.exit(2) #initialize required parameters package = None cvsTag = None for o,a in opt_list: if o in ('-p','--p'): package = a if o in ('-t', '--t'): cvsTag = a if o in ('-h','--h'): Usage() sys.exit() ###########MGLPACKS ########################## DPACKAGES =['bhtree','gle','geomutils','mslib','opengltk','sff','stride','UTpackages','QSlimLib','cAutoDock','OpenCSG'] INDPACKAGES =['AutoDockTools','Vision','symserv','DejaVu','NetworkEditor','ViewerFramework','Pmv','PyAutoDock','mglutil','Volume','MolKit','PyBabel'] DISTPACKAGES = DPACKAGES + INDPACKAGES ####caluculating todays date datestr = os.system("date '+%m/%d/%y' >datefile.txt") fptr=open('datefile.txt','r') datelines=fptr.readlines() todays_date = str(datelines[0]).replace('/','-')[:-1] os.system('rm -rf datefile.txt') if not package: print "packupdate requires package name to be updated" sys.exit() #find $PATH #os.popen("echo $PATH >myfile.txt") #fptr=open('myfile.txt') #allines= fptr.readlines() #x = allines[0].replace(':',',') #pathstring =x.split(',') #fptr.close() #os.system('rm -rf myfile.txt') pathstring=string.split(os.environ["PATH"], ":") ############FIND SWIG################# def findswig(pathstring): list = [] from distutils.command import build_ext from distutils.dist import Distribution d =Distribution() a = build_ext.build_ext(d) yourswig = a.find_swig() for a in pathstring: if os.path.exists('%s/%s' %(a,yourswig)): list.append('%s/%s' %(a,yourswig)) if list == []: print "YOU DON'T HAVE SWIG" sys.exit() ############FIND CC################## def findcc(pathstring): list = [] from distutils import ccompiler yourcompiler = ccompiler.get_default_compiler() if sys.platform == 'sunos5"' or 'irix6': for a in pathstring: if os.path.exists('%s/cc' %a) or os.path.exists('%s/CC' %a): list.append('%s' %a) if list == []: print "YOU DO NOT HAVE A C-COMPILER" sys.exit() if (sys.platform == 'cygwin') or (os.name == 'nt'): for a in pathstring: if os.path.exists('%s/cc' %a): list.append('%s' %a) if list == []: print "YOU DO NOT HAVE A C-COMPILER" sys.exit() if (sys.platform == 'linux2') or (sys.platform == 'darwin'): for a in pathstring: if os.path.exists('%s/gcc' %a) or os.path.exists('%s/g++' %a): list.append('%s' %a) if list == []: print "YOU DO NOT HAVE A C-COMPILER" sys.exit() #############FIND CVS################# def findcvs(pathstring): list =[] for a in pathstring: if os.path.exists('%s/cvs' %a): list.append('%s/cvs' %a) if list == []: print "YOU DO NOT HAVE CVS" sys.exit() findswig(pathstring) findcc(pathstring) findcvs(pathstring) uninstlist =[] curdir = os.getcwd() curdir= os.environ["MGL_ROOT"] archosvdir = os.environ["MGL_ARCHOSV"] py_version = (string.split(sys.version))[0][0:3] dpdir=os.path.join(curdir, archosvdir, "lib", "python"+py_version, "site-packages") indpdir=os.path.join(curdir,"share", "lib", "python"+py_version, "site-packages") bindir=os.path.join(curdir ,archosvdir, "bin") if os.path.exists(os.path.join(dpdir, "MGLPACKS")): os.system('rm -rf %s' % os.path.join(dpdir, "MGLPACKS")) PACKLIST=[] uninstlist=[] if package=='all': os.chdir(dpdir) DPLIST=os.listdir('./') os.chdir(indpdir) INDPLIST=os.listdir('./') PACKLIST=DPLIST+INDPLIST PACK_DIST=[] for p in PACKLIST: if p in DISTPACKAGES: PACK_DIST.append(p) if package=='platdep': os.chdir(dpdir) PACKLIST=os.listdir('./') PACK_DIST=[] for p in PACKLIST: if p in DISTPACKAGES: PACK_DIST.append(p) if package=='platindep': os.chdir(indpdir) PACKLIST=os.listdir('./') PACK_DIST=[] for p in PACKLIST: if p in DISTPACKAGES: PACK_DIST.append(p) if not package in ['all','platdep','platindep']: PACK_DIST=[] PACKLIST = string.split(package,',') for p in PACKLIST: PACK_DIST.append(p) print "PACK_DIST:", PACK_DIST if PACK_DIST!=[]: for p in PACK_DIST: if p in DPACKAGES: if not os.path.exists('%s/MGLPACKS' %(dpdir)): os.mkdir('%s/MGLPACKS' %dpdir) if not os.path.exists('%s/MGLPACKS%s' %(dpdir,todays_date)): os.mkdir('%s/MGLPACKS%s' %(dpdir,todays_date)) if p in INDPACKAGES: if not os.path.exists('%s/MGLPACKS%s' %(indpdir,todays_date)): os.mkdir('%s/MGLPACKS%s' %(indpdir,todays_date)) if p in PACKLIST and p in DPACKAGES: os.chdir('%s' %dpdir) if not os.path.exists('./MGLPACKS%s/%s' %(todays_date,p)): os.system('mv %s MGLPACKS%s/%s' %(p,todays_date,p)) else: os.system('rm -rf %s' %p) if p in PACKLIST and p in INDPACKAGES: os.chdir(indpdir) if not os.path.exists('./MGLPACKS%s/%s' %(todays_date,p)): os.system('mv %s MGLPACKS%s/%s' %(p,todays_date,p)) else: os.system('rm -rf %s' %p) #Connecting to CVS #CVS login print "PRESS ENTER WHEN ASKED FOR PASSWORD" os.system('/usr/bin/cvs -d:pserver:anonymous@moses.scripps.edu:/export/cvs login') print PACK_DIST if PACK_DIST==[]: print "No Packages are found in the current installation to update.Use getlatest -ppackname to update packages you want" sys.exit() #CVS check out PYTHON = sys.executable for pack in PACK_DIST: if pack in DPACKAGES: pack=pack+"DIST" os.chdir(dpdir) if os.path.exists('./MGLPACKS'): os.chdir('./MGLPACKS') if cvsTag: st =os.system('/usr/bin/cvs -z3 -d:pserver:anonymous@moses.scripps.edu:/export/cvs co -r %s %s' % (cvsTag, pack)) else: st =os.system('/usr/bin/cvs -z3 -d:pserver:anonymous@moses.scripps.edu:/export/cvs co -A %s' %pack) if st!=0: print "cannot cvs co package %s" % pack sys.exit() os.chdir('./%s' %pack) #cmd = 'python2.5 setup.py install --install-platlib=%s --install-purelib=%s --install-scripts=%s'%(dpdir,indpdir,bindir) #cmd = 'python setup.py install' cmd = "%s setup.py install --install-platlib=%s" % (PYTHON, dpdir) st = os.system(cmd) if st!=0: print "%s not installed" %pack uninstlist.append(pack) continue else: print "Updating %s package success" %pack else: if pack in INDPACKAGES: os.chdir(indpdir) if cvsTag: st =os.system('/usr/bin/cvs -z3 -d:pserver:anonymous@moses.scripps.edu:/export/cvs co -r %s %s' % (cvsTag, pack)) else: st =os.system('/usr/bin/cvs -z3 -d:pserver:anonymous@moses.scripps.edu:/export/cvs co -A %s' %pack) if st!=0: print "cannot cvs co pack %s" % pack sys.exit() if uninstlist!=[]: print "%s packages are not installed" %uninstlist else: if os.path.exists('%s/MGLPACKS' %dpdir): os.chdir(dpdir) os.system('rm -rf MGLPACKS') print "Installation Success" mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/TestUtil/Dependencytester.py0000644000175000017500000006740012104045547026030 0ustar debiandebian# #Authors: Michel F Sanner,Sowjanya Karnati # #NOTES:This class finds and returns dependencies of all packages or one #patricular package.When run with -V option finds dependencies at file level # # import os, sys, re,string from os.path import walk import getopt,warnings os.system('rm -rf depresult') vinfo = sys.version_info pythonv = "python%d.%d"%(vinfo[0], vinfo[1]) ###################################################################### # COMMAND LINE OPTIONS ###################################################################### class DEPENDENCYCHECKER: ######################################################################## # Findind packages ######################################################################## def rundependencychecker(self,pack,v=True,V=False,loc=None): cwd = os.getcwd() import string packages = {} pn =[] for i in sys.path: s =i.split('/') if s[-1]=="MGLToolsPckgs" or s[-1]== 'site-packages': #if s[-1]=='FDepPackages' or s[-1]=='RDepPackages' or s[-1]=='FSharedPackages' or s[-1]=='RSharedPackages' or s[-1]== 'site-packages': pn.append(i) for p in pn: os.chdir(p) files = os.listdir(p) for f in files: if not os.path.isdir(f): continue pwdir = os.path.join(p, f) if os.path.exists( os.path.join( pwdir, '__init__.py')): if not packages.has_key(f): packages[f] = pwdir elif os.path.exists( os.path.join( p, '.pth') ): if not packages.has_key(f): packages[f] = pwdir os.chdir(cwd) ################################################################ # packages in site-packages ################################################################### pack_site=packages.keys() ########################################################################## # Finding list of import statements used in all packages ########################################################################### Total_packs = [] if V == True: if pack!=None: packn = string.split(pack,'.') pack =packn[0] exec('packages={"%s":"%s"}'%(pack,packages[pack])) if packn[-1]!='py': pack_file =packn[-1] if packn[-1]=='py': pack_file =packn[-2] else: pack_file=None for pack in packages: files = [] pat = re.compile('import') print "please wait ...." for root, dirs, files in os.walk(packages[pack]): # remove directories not to visit for rem in ['CVS', 'regression', 'Tutorial', 'test','Doc','doc']: if rem in dirs: dirs.remove(rem) # look for files that contain the string 'import' for fi in files: if fi[-3:]!='.py': continue if fi[-3:]=='.py': #finds pattern "import" match in that particular file if pack_file!=pack: if pack_file!=None: if fi !=pack_file+'.py': continue else: candidates = [] f = open( os.path.join(root, fi) ) data = f.readlines() f.close() found = 0 for line in data: match = pat.search(line) if match: candidates.append( (root, fi, line) ) #finds pattern "import" for packages given with option p at file level if pack_file==pack: candidates = [] f = open( os.path.join(root, fi) ) data = f.readlines() f.close() found = 0 for line in data: match = pat.search(line) if match: candidates.append( (root, fi, line) ) #finds pattern "import" match for all packages at file level else: candidates = [] f = open( os.path.join(root, fi) ) data = f.readlines() f.close() found = 0 for line in data: match = pat.search(line) if match: candidates.append( (root, fi, line) ) ####################################### #finding dependencies ####################################### result= [] import string if len(candidates)>0: for candidate_num in candidates: p, f, imp = candidate_num path =string.split(p,'site-packages')[-1] implist =[] fromlist=[] y =string.split(imp) #omitting commemted imports if '.' not in imp and y[0]=="import": len_space = len(imp.split(' ')) len_comma=len(imp.split(',')) if (len_space -1) > len_comma: continue # as im import statement if "as" in y: for a in y: if a=='as': aind = y.index(a) if '.' not in y[aind-1] : implist.append(y[aind-1]) continue else: newa = y[aind-1].split('.') implist.append(newa[0]) continue if '#' in y: continue #if first word is import in the list if y[0]=='import': for i in range(1,len(y)): if y[i][-1]==";": y[i]=y[i][:-1] if y[i] not in implist: implist.append(y[i]) break if 'as' in y: break if y[i][-1]==',': y[i]=y[i][:-1] if ',' in y[i]: srg = string.split(y[i],',') for j in srg: if j not in implist: implist.append(j) continue elif len(y[i])<=2: continue #if import statement is like a.q elif len(string.split(y[i],'.'))!=1: sr = string.split(y[i],'.') if sr[0] not in implist: #if module doesn't starts with __ #append to list if sr[0][0]!='__': implist.append(sr[0]) #if import statement with out '.' else: if y[i] not in implist: #print y[i] if y[i][0]!='__': implist.append(y[i]) #import statement with out ',' in the end else: if len(y[i])==1: continue elif ',' in y[i]: srg = string.split(y[i],',') for j in srg: if j not in implist: implist.append(j) continue #import statement as a.b.c.d elif len(string.split(y[i],'.'))>1: sr = string.split(y[i],'.') if sr[0] not in implist: if sr[0][0]!='__': implist.append(sr[0]) continue #import statement without '.' elif y[i] not in implist: if y[i][0]!='__': implist.append(y[i]) continue for im in implist: #try importing module in implist try: exec('import %s'%im) if im == 'Pmw': if im not in result: if im!=pack: result.append(im) continue else: continue #if module.__file__ exists check in #site-packages and append to result exec('fi = %s.__file__'%im) fil = os.path.abspath('%s'%fi) if os.path.exists(fil): file = string.split(str(fil),'/') if file[-2] in pack_site: if file[-2] not in result: if file[-2] !=pack: result.append(file[-2]) elif file[-2]=='Numeric': if 'Numeric' not in result: if 'Numeric'!=pack: result.append('Numeric') elif file[-2] not in ['lib-dynload', pythonv,'lib-tk']: if im not in result: if im!=pack: result.append(im) except: if im in ['sys','gc','thread','exceptions', 'signal']: continue else: if im not in result: result.append(im) #if first word is from in list if y[0]=='from': #if from statement is like a.b.c if len(string.split(y[1],'.'))!=1: sr = string.split(y[1],'.') if sr[0] not in fromlist: fromlist.append(sr[0]) else: if y[1]!=pack: if y[1] not in fromlist: if y[1][0]!='__': fromlist.append(y[1]) for i in fromlist: #checks importing module try: exec('import %s'%i) if i == 'Pmw': if i not in result: if i !=pack: result.append(i) continue else: continue #if __file exixts check in site-pacakges #and append to result exec('fi = %s.__file__'%i) fil = os.path.abspath('%s'%fi) if os.path.exists(fil): file = string.split(str(fil),'/') if file[-2] in pack_site: if file[-2] not in result: if file[-2] !=pack: result.append(file[-2]) elif file[-2]=='Numeric': if 'Numeric' not in result: if 'Numeric'!=pack: result.append('Numeric') elif file[-2] not in ['lib-dynload', pythonv,'lib-tk']: if i not in result: if i!=pack : result.append(i) except: if i in ['sys','gc','thread','exceptions', 'signal']: continue else: if i not in result: result.append(i) listdf=[] for r,d,lf in os.walk(packages[pack]): for rem in ['CVS', 'regression', 'Tutorial', 'test','Doc','doc']: if rem in d: d.remove(rem) #when files in pack are imported listd = os.listdir(r) for ld in listd: if ld.endswith('.py')==True or ld.endswith('.so')==True: for res in result: if res == ld[:-3]: if res in result: result.remove(res) for files in lf: for res in result: pat1 = re.compile('"%s"' %res) pat2 = re.compile("%s.py" %res) fptr=open("%s/%s" %(r,files)) lines = fptr.readlines() for line in lines: match1 = pat1.search(line) match2 = pat2.search(line) if match1 or match2: if res in result: ind = result.index(res) if result[ind] not in pack_site: del result[ind] continue #In case of Pmv multires,pdb2qr etc if res in files: if res in result: ind = result.index(res) if result[ind] not in pack_site: del result[ind] for res in result: if res[:3] in ['tmp','TMP','win']: result.remove(res) continue exec('l = len("%s")'%f) if l>60: exec('md = string.split("%s",",")[0]'%f) exec('f = string.split("%s","/")[-1][:-1]'%md) Total_packs.append('result_%s %s %s %s' %(pack,path,f,result)) #return Total_packs else: Total_packs.append('result_%s %s %s %s' %(pack,path,f,result)) print "result_%s %s %s %s" %(pack,path,f,result) if Total_packs: return Total_packs else: if pack != None: #print pack pack_list = pack.split(',') if len(pack_list)>=1: packs = {} for p in pack_list: packs[p]=packages[p] packages = packs print "please wait ......." for pack in packages: files = [] pat = re.compile('import') candidates = [] for root, dirs, files in os.walk(packages[pack]): # remove directories not to visit for rem in ['CVS', 'regression', 'Tutorial', 'test','Doc','doc']: if rem in dirs: dirs.remove(rem) # look for files that contain the string 'import' for fi in files: if fi[-3:]!='.py': continue #finding pattern "import" match if fi[-3:]=='.py': f = open( os.path.join(root, fi) ) data = f.readlines() f.close() found = 0 for line in data: match = pat.search(line) if match: candidates.append( (root, fi, line) ) ############################## #finding dependencies ############################## result= [] import string for candidate_num in candidates: #print candidate_num p, f, imp = candidate_num implist =[] fromlist=[] y =string.split(imp) #omitting commemted imports if '.' not in imp and y[0]=="import": len_space = len(imp.split(' ')) len_comma=len(imp.split(',')) if (len_space -1) > len_comma: continue if "as" in y: for a in y: if a=='as': aind = y.index(a) if '.' not in y[aind-1] : if y[aind-1] not in implist: implist.append(y[aind-1]) continue else: newa = y[aind-1].split('.') if newa[0] not in implist: implist.append(newa[0]) continue if '#' in y: continue #if first word is import in the list if y[0]=='import': for i in range(1,len(y)): if y[i][-1]==";": y[i]=y[i][:-1] if y[i] not in implist: implist.append(y[i]) break if "as" in y: break if y[i][-1]==',': y[i]=y[i][:-1] if ',' in y[i]: srg = string.split(y[i],',') for j in srg: if j not in implist: implist.append(j) continue elif len(y[i])<=2: continue elif len(string.split(y[i],'.'))!=1: sr = string.split(y[i],'.') if sr[0]!=pack: if sr[0] not in implist: if sr[0][0]!='__': implist.append(sr[0]) else: if y[i]!=pack: if y[i] not in implist: if y[i][0]!='__': implist.append(y[i]) else: if len(y[i])==1: continue if len(string.split(y[i],','))!=1: srg = string.split(y[i],',') for j in range(0,len(srg)): if srg[j] not in implist: implist.append(srg[j]) else: continue elif len(string.split(y[i],'.'))!=1: sr = string.split(y[i],'.') if sr[0] not in implist: if sr[0][0]!='__': implist.append(sr[0]) elif y[i] not in implist: if y[i][0]!='__': implist.append(y[i]) for im in implist: try: exec('import %s'%im) if im == 'Pmw': if im not in result: if im!=pack: result.append(im) continue else: continue exec('fi = %s.__file__'%im) fil = os.path.abspath('%s'%fi) if os.path.exists(fil): file = string.split(str(fil),'/') if file[-2] in pack_site: if file[-2] not in result: if file[-2] !=pack: result.append(file[-2]) elif file[-2]=='Numeric': if 'Numeric' not in result: if 'Numeric'!=pack: result.append('Numeric') elif file[-2] not in ['lib-dynload', pythonv,'lib-tk']: if im not in result: if im!=pack: result.append(im) except: if im in ['sys','gc','thread','exceptions', 'signal']: continue if im not in result: if im!=pack: result.append(im) #if first word is from in list if y[0]=='from': if len(string.split(y[1],'.'))!=1: sr = string.split(y[1],'.') if sr[0] != pack: if sr[0] not in fromlist: fromlist.append(sr[0]) else: if y[1]!=pack: if y[1] not in fromlist: fromlist.append(y[1]) for i in fromlist: try: exec('import %s'%i) if i == 'Pmw': if i not in result: if i !=pack: result.append(i) continue else: continue exec('fi = %s.__file__'%i) fil = os.path.abspath('%s'%fi) if os.path.exists(fil): file = string.split(str(fil),'/') if file[-2] in pack_site: if file[-2] not in result: if file[-2] !=pack: result.append(file[-2]) elif file[-2]=='Numeric': if 'Numeric' not in result: if 'Numeric'!=pack: result.append('Numeric') elif file[-2] not in ['lib-dynload', pythonv,'lib-tk']: if i not in result: if i!=pack : result.append(i) except: if i in ['sys','gc','thread','exceptions', 'signal']: continue if i not in result: if i!=pack: result.append(i) listdf =[] for r,d,lf in os.walk(packages[pack]): for rem in ['CVS', 'regression', 'Tutorial', 'test','Doc','doc']: if rem in d: d.remove(rem) #when directory is imported eg: import extent(opengltk/extent) for res in result: if res in d: if res in result: result.remove(res) continue #when files in pack are imported listd = os.listdir(r) for ld in listd: if ld.endswith('.py')==True or ld.endswith('.so')==True: for res in result: if res == ld[:-3]: if res in result: result.remove(res) #This is for cases in which (mainly tests) some file is created and #for tests purpose and removed .but imported in testfile #like tmpSourceDial.py in mglutil for files in lf: if files[-3:]!=".py": lf.remove(files) continue for res in result: pat1 = re.compile('%s' %res) pat2 = re.compile('%s.py' %res) fptr=open("%s/%s" %(r,files)) lines = fptr.readlines() for line in lines: match1 = pat1.search(line) match2 = pat2.search(line) if match1 or match2: if res in result: ind = result.index(res) if result[ind] not in pack_site: del result[ind] continue #In case of Pmv multires,pdb2qr etc if res in files: if res in result: ind = result.index(res) if result[ind] not in pack_site: del result[ind] continue for res in result: if res[:3] in ['tmp','TMP','win']: result.remove(res) continue print "result_%s %s" %(pack,result) Total_packs.append('result_%s %s' %(pack,result)) return Total_packs ############################################################ # PRINTING DEPENDENCIES AND COPYING THEM TO FILE ############################################################ mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/splashregister/0000755000175000017500000000000012146210176023422 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/splashregister/NIH.gif0000644000175000017500000000205110732267546024541 0ustar debiandebianGIF89a56„333@@@MMMYYYfffsss€€€™™™¥¥¥²²²¿¿¿ÌÌÌÙÙÙåååòòòÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!þCreated with The GIMP!ù ,56þ $Ždižhª®,„ Р´4 8ç4À šp1"ÌLD‚x0gC¸bADáD`Âð jêÑ8\F ¡(ÈäÑ€bªŽ’EM s D"p Xz}”"‚=8"ˆ’ ˜X GT˜±« A* ±l„h4{”/j˜’nÄQ24Žˆj [•×+@¾ |}"n ã( cnç'‘÷iùŠt0@ …¾E$ЉÁ >D8Ð@”ŠŽ#€H‚ˆ%–è²âÁ(þ€KÁ0ˆ®G&&áq+Þ<” pˆË…§P&%*¯$PM¤¥àÀ Ià`]ÍšAQ€!"<à ŠD³€·Ðh)$&|$ÂŒ‘ ‚t²ÎSò¶*|b¢ ãëEÄ 0Çá&À‰¼ÍÓ|!0ª¥ðFÑ„Œ¼9´n'_:Ô¿> Ä €`Ƹ8„Û dÃóÐD}B;mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/splashregister/register.py0000644000175000017500000004304112122717366025631 0ustar debiandebian# This module handles User Registration # $Author: sanner $ # $Header: /opt/cvs/python/packages/share1.5/mglutil/splashregister/register.py,v 1.25.2.1 2013/03/21 23:59:50 sanner Exp $ # $Date: 2013/03/21 23:59:50 $ # $Id: register.py,v 1.25.2.1 2013/03/21 23:59:50 sanner Exp $ import Tkinter, tkMessageBox, Pmw import os, sys, socket, httplib, urllib, pickle, time, shutil from mglutil.util.packageFilePath import getResourceFolderWithVersion, getResourceFolder class Register_User: """Opens TopLevel Dialog for User Registration""" def __init__(self, version=None, app=None): self.version = version self.app = app master = Tkinter.Toplevel() self.master = master #font = self.master.option_get('font', '*') #self.master.option_add('*font',"Times 12 bold") x = self.master.winfo_screenwidth()/6 y = self.master.winfo_screenheight()/6 geometry = '+%d+%d' % ( x, y) self.master.geometry(geometry) #self.master.config(font="Helvetica 10 bold italic") master.title("MGLTools Registration Form") Tkinter.Label(master, text="MGLTools Registration Form").\ grid(row=0,columnspan=5) text = """This data will be kept confidential and will not be made available to any third party.""" Tkinter.Label(master, text=text).grid(row=1,columnspan=5) Tkinter.Label(master, text="Fields in Red are Required",fg="Red" ).\ grid(row=2,columnspan=5) Tkinter.Label(master, text="First Name", fg='Red').grid(row=3,sticky='W') Tkinter.Label(master, text="Last Name", fg='Red').grid(row=4,sticky='W') Tkinter.Label(master, text="Email", fg='Red').grid(row=5,sticky='W') Tkinter.Label(master, text="Institution", fg='Red').grid(row=6,sticky='W') Tkinter.Label(master, text="Institution Type", fg='Red').grid(row=7,sticky='W') Tkinter.Label(master, text="Position").grid(row=8,sticky='W') Tkinter.Label(master, text="Department", ).grid(row=9,sticky='W') Tkinter.Label(master, text=" ").grid(row=6,column=2) #placeholder Tkinter.Label(master, text="Address").grid(row=3,column=3,sticky='W') Tkinter.Label(master, text="City" ).grid(row=4,column=3,sticky='W') Tkinter.Label(master, text="State" ).grid(row=5,column=3,sticky='W') Tkinter.Label(master, text="PostalCode").grid(row=6,column=3,sticky='W') Tkinter.Label(master, text="Country").grid(row=7,column=3,sticky='W') Tkinter.Label(master, text="Phone").grid(row=8,column=3,sticky='W') Tkinter.Label(master, text="Fax").grid(row=9,column=3,sticky='W') self.e_First_Name = Tkinter.Entry(master,bg="White") self.e_Last_Name = Tkinter.Entry(master,bg="White") self.e_Email = Tkinter.Entry(master,bg="White") self.e_Institution = Tkinter.Entry(master,bg="White") self.e_Institution_Type = Pmw.OptionMenu(master, items = ['Academic','Government','Commercial'], menubutton_width = 16) self.e_Position = Tkinter.Entry(master,bg="White") self.e_Department = Tkinter.Entry(master,bg="White") self.e_Address = Tkinter.Entry(master,bg="White") self.e_City = Tkinter.Entry(master,bg="White") self.e_State = Tkinter.Entry(master,bg="White") self.e_PostalCode = Tkinter.Entry(master,bg="White") self.e_Country = Tkinter.Entry(master,bg="White") self.e_Phone = Tkinter.Entry(master,bg="White") self.e_Fax = Tkinter.Entry(master,bg="White") self.e_First_Name.grid(row=3, column=1) self.e_Last_Name.grid(row=4, column=1) self.e_Email.grid(row=5, column=1) self.e_Institution.grid(row=6, column=1) self.e_Institution_Type.grid(row=7, column=1) self.e_Position.grid(row=8, column=1) self.e_Department.grid(row=9, column=1) self.e_Address.grid(row=3, column=4) self.e_City.grid(row=4, column=4) self.e_State.grid(row=5, column=4) self.e_PostalCode.grid(row=6, column=4) self.e_Country.grid(row=7, column=4) self.e_Phone.grid(row=8, column=4) self.e_Fax.grid(row=9, column=4) mgl_group = Tkinter.LabelFrame(master, text="Which of the "+ "following program(s) are you planning to use?",labelanchor='n') mgl_group.grid(row=11,columnspan=8,sticky='WESN',pady=5) label_message = Tkinter.Label(mgl_group, text="Check all that apply") label_message.grid(row=12,columnspan=5) val = 0 if self.app=='ADT' or self.app==None: val = 1 self.adt_var = Tkinter.IntVar(value=val) checkbutton = Tkinter.Checkbutton(mgl_group, text="AutoDockTools ", variable=self.adt_var) checkbutton.grid(row=13, column=0) val = 0 if self.app=='Pmv' or self.app==None: val = 1 self.pmv_var = Tkinter.IntVar(value=val) checkbutton = Tkinter.Checkbutton(mgl_group, text="PMV ", variable=self.pmv_var) checkbutton.grid(row=13,column=2) val = 0 if self.app=='Vision' or self.app==None: val = 1 self.vision_var = Tkinter.IntVar(value=val) checkbutton = Tkinter.Checkbutton(mgl_group, text="Vision ", variable=self.vision_var) checkbutton.grid(row=13,column=4) val = 0 if self.app=='DejaVu' or self.app==None: val = 1 self.DejaVu_var = Tkinter.IntVar(value=val) checkbutton = Tkinter.Checkbutton(mgl_group, text="DejaVu", variable=self.DejaVu_var) checkbutton.grid(row=13,column=5) val = 0 if self.app=='Raccoon' or self.app==None: val = 1 self.Raccoon_var = Tkinter.IntVar(value=val) checkbutton = Tkinter.Checkbutton(mgl_group, text="Raccoon", variable=self.Raccoon_var) checkbutton.grid(row=13,column=6) bin_source = Tkinter.LabelFrame(master, text="Did you install MGLTools "+ "from Binary and/or Source?",labelanchor='n') bin_source.grid(row=14,columnspan=8,sticky='WESN',pady=5) self.bin_var = Tkinter.IntVar() checkbutton = Tkinter.Checkbutton(bin_source, text="Binary ", variable=self.bin_var) checkbutton.grid(row=15, column=0) self.source_var = Tkinter.IntVar() checkbutton = Tkinter.Checkbutton(bin_source, text="Source ", variable=self.source_var) checkbutton.grid(row=15,column=2) self.label_message = Tkinter.Label(master, text="") self.label_message.grid(row=16,columnspan=5) #placeholder self.regButton = Tkinter.Button(master, text='Register', command=self.Register) self.regButton.grid(row=17,column=1,columnspan=2) Tkinter.Button(master, text='Cancel', command=self.Cancel).grid(row=17, column=3, columnspan=2, pady=2) #if font: # self.master.option_add('*font', font) self.preFill() def Register(self): self.regButton.configure(state='disabled') form_dict = {} First_Name = self.e_First_Name.get() First_Name = First_Name.strip() if not First_Name: self.label_message.configure(text='First Name is missing', fg='Red') self.e_First_Name.configure(bg='Red') self.regButton.configure(state='normal') return else: self.e_First_Name.configure(bg='White') self.label_message.configure(text = '') form_dict['First_Name'] = First_Name Last_Name = self.e_Last_Name.get() Last_Name = Last_Name.strip() if not Last_Name: self.label_message.configure(text='Last Name is missing', fg='Red') self.e_Last_Name.configure(bg='Red') self.regButton.configure(state='normal') return else: self.e_Last_Name.configure(bg='White') self.label_message.configure(text='') form_dict['Last_Name'] = Last_Name Email = self.e_Email.get() Email = Email.strip() if not Email or Email.find('@') == -1: self.label_message.configure(text='Please provide a valid Email address', fg = 'Red') self.e_Email.configure(bg='Red') self.regButton.configure(state='normal') return else: self.e_Email.configure(bg='White') self.label_message.configure(text='') form_dict['Email'] = Email Institution = self.e_Institution.get() Institution = Institution.strip() if not Institution: self.label_message.configure(text = 'Institution is missing', fg = 'Red') self.e_Institution.configure(bg='Red') self.regButton.configure(state='normal') return else: self.e_Institution.configure(bg='White') self.label_message.configure(text = '') form_dict['Institution'] = Institution Institution_Type = self.e_Institution_Type.getvalue() if Institution_Type not in ['Academic','Government','Commercial']: self.label_message.configure(text = 'Institution Type should be\ Academic,Government or Commercial', fg = 'Red') self.regButton.configure(state='normal') return else: self.label_message.configure(text = '') form_dict['Institution_Type'] = Institution_Type Position = self.e_Position.get() Position = Position.strip() if not Position: Position = ' ' form_dict['Position'] = Position Department = self.e_Department.get() Department = Department.strip() form_dict['Department'] = Department Address = self.e_Address.get() Address = Address.strip() form_dict['Address'] = Address City = self.e_City.get() City = City.strip() form_dict['City'] = City State = self.e_State.get() State = State.strip() form_dict['State'] = State PostalCode = self.e_PostalCode.get() PostalCode = PostalCode.strip() form_dict['PostalCode'] = PostalCode Country = self.e_Country.get() Country = Country.strip() form_dict['Country'] = Country Phone = self.e_Phone.get() Phone = Phone.strip() form_dict['Phone'] = Phone Fax = self.e_Fax.get() Fax = Fax.strip() form_dict['Fax'] = Fax planning_to_use = '' if self.adt_var.get(): planning_to_use = 'ADT' if self.pmv_var.get(): planning_to_use += ',PMV' if self.vision_var.get(): planning_to_use += ',Vision' if self.DejaVu_var.get(): planning_to_use += ',DejaVu' if self.Raccoon_var.get(): planning_to_use += ',Raccoon' form_dict['PlanningToUse'] = planning_to_use build_from = '' if self.bin_var.get(): build_from = 'Binary' if self.source_var.get(): build_from += ',Source' form_dict['BuildFrom'] = build_from self.label_message.configure(text = 'Submitting the Registration Form') form_dict['version'] = self.version.split('(')[0] os_name = os.name form_dict['os_name'] = os_name sys_platfrom = sys.platform form_dict['sys_platfrom'] = sys_platfrom sys_version = sys.version form_dict['sys_version'] = sys_version.replace('\n','') try: hostname = gethostname() form_dict['hostname'] = hostname except: form_dict['hostname'] = "problem" params = urllib.urlencode(form_dict) self.label_message.configure(text = 'Please Wait', fg = 'Red') headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"} conn = httplib.HTTPConnection("www.scripps.edu:80") try: conn.request("POST", "/cgi-bin/sanner/register_mgltools.py", params, headers) response = conn.getresponse() except Exception, inst: from traceback import print_exc print_exc() return self.master.update() if response.status == 200: getResourceFolder reg_file = os.path.join(getResourceFolder(), '.registration') UserID = response.read() if UserID: form_dict['UserID'] = UserID file = open(reg_file,'w') pickle.dump(form_dict, file) file.close() c_reg_file = os.path.join(getResourceFolderWithVersion(), '.registration') shutil.copy(reg_file, c_reg_file) else: tkMessageBox.showerror("ERROR", "Registration failed.") self.regButton.configure(state='normal') return else: tkMessageBox.showerror("ERROR", "Unable to connect to Registration Database" + "\nPlease try again") self.regButton.configure(state='normal') return conn.close() self.Cancel() tkMessageBox.showinfo("Thank You", "Thank you for registering MGLTools!") def Cancel(self): self.master.destroy() self.master = None def preFill(self): old_rc = getResourceFolder() regfile = os.path.join(old_rc, ".registration") if os.path.exists(regfile): try: f = open(regfile, "r") form_dict = pickle.load(f) f.close() except: return if form_dict.has_key("First_Name"): self.e_First_Name.insert(0, form_dict['First_Name']) if form_dict.has_key("Last_Name"): self.e_Last_Name.insert(0, form_dict['Last_Name']) if form_dict.has_key("Email"): self.e_Email.insert(0, form_dict['Email']) if form_dict.has_key("Institution"): self.e_Institution.insert(0, form_dict['Institution']) if form_dict.has_key("Institution_Type"): self.e_Institution_Type.setvalue(form_dict['Institution_Type']) if form_dict.has_key("Position"): self.e_Position.insert(0, form_dict['Position']) if form_dict.has_key("Department"): self.e_Department.insert(0, form_dict['Department']) if form_dict.has_key("Address"): self.e_Address.insert(0, form_dict['Address']) if form_dict.has_key("City"): self.e_City.insert(0, form_dict['City']) if form_dict.has_key("State"): self.e_State.insert(0, form_dict['State']) if form_dict.has_key("PostalCode"): self.e_PostalCode.insert(0, form_dict['PostalCode']) if form_dict.has_key("Country"): self.e_Country.insert(0, form_dict['Country']) if form_dict.has_key("Phone"): self.e_Phone.insert(0, form_dict['Phone']) if form_dict.has_key("Fax"): self.e_Fax.insert(0, form_dict['Fax']) def Update(self): regfile = None old_rc = getResourceFolder() rcWithVersion = getResourceFolderWithVersion() regfile = os.path.join(old_rc, ".registration") if os.path.exists(old_rc + os.sep + ".registration"): regfile = old_rc + os.sep + ".registration" else: dirlist = os.listdir(old_rc) for item in dirlist: tmpRegFile = old_rc+os.sep+item+os.sep + ".registration" if os.path.exists(tmpRegFile): regfile = tmpRegFile break regDict = pickle.load(open(regfile)) regDict['Version'] = Version form_dict = {} form_dict['UserID'] = regDict['UserID'] form_dict['Version'] = regDict['Version'] import httplib, urllib params = urllib.urlencode(form_dict) headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"} conn = httplib.HTTPConnection("www.scripps.edu:80") conn.request("POST", "/cgi-bin/sanner/update_mgltools_version.py", params, headers) response = conn.getresponse() if response.status == 200: reg = open(lRessourceFolder + os.sep + ".registration", 'w') pickle.dump(regDict,reg) reg.close() conn.close() def getdnsnames(name): d = socket.gethostbyaddr(name) names = [ d[0] ] + d[1] + d[2] return names def resolve(name): names = getdnsnames(name) for dnsname in names: if '.' in dnsname: fullname = dnsname break else: fullname = name return fullname def gethostname(): fullname = socket.gethostname() if '.' not in fullname: fullname = resolve(fullname) return fullname def Update_User(registration): """To be implemented """ pass if __name__ == '__main__': m = Tkinter.Tk() Register_User('sd') m.mainloop() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/splashregister/license.py0000644000175000017500000000161311433310247025415 0ustar debiandebian# $Header: /opt/cvs/python/packages/share1.5/mglutil/splashregister/license.py,v 1.15 2010/08/19 20:14:31 sargis Exp $ # $Id: license.py,v 1.15 2010/08/19 20:14:31 sargis Exp $ # import Tkinter tk_root = Tkinter.Tk() tk_root.title("Commercial Usage") txt = """ The software component for computing molecular surfaces (MSMS) is not free for commercial usage. If you plan to use MSMS for commercial research please contact sanner@scripps.edu Some software components such at the volume rendering and isocontouring were developed at UT Austin. If you publish scientific results generated using this software please cite the appropriate software components. A list of papers is provided under Help -> Citation Information menu in PMV and ADT. """ Tkinter.Label(tk_root, text=txt, justify=Tkinter.LEFT).pack() Tkinter.Button(tk_root, text="OK", command=tk_root.quit).pack() tk_root.mainloop() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/splashregister/about.py0000644000175000017500000000637111564266263025130 0ustar debiandebian# $Header: /opt/cvs/python/packages/share1.5/mglutil/splashregister/about.py,v 1.10 2011/05/16 18:28:03 sargis Exp $ # $Id: about.py,v 1.10 2011/05/16 18:28:03 sargis Exp $ import Tkinter, os from mglutil.util.misc import ensureFontCase try: from PIL import Image, ImageTk except: pass class About: """ package : mglutil module : splashregister.about class : About description: Displays information needed for About widget """ def __init__(self, title=None, image_dir='.', version='', revision=None, authors=None, icon=None, copyright=None, third_party='', path_data=''): self.title = title self.image_dir = image_dir self.version = version self.revision = revision self.authors = authors self.icon = icon self.copyright = copyright self.third_party = third_party self.path_data = path_data def gui(self, master): Tkinter.Label(master, text=self.title, font =(ensureFontCase('helvetica'), 16, 'bold') ).\ pack(side='top') text = 'Version ' + self.version if self.revision is not None: text += ' ' + self.revision night = self.path_data.find(" Nightly ") if night != -1: tmpTxt = self.path_data[night:].split() text += " - Update Nightly Build " + tmpTxt[1] else: tested = self.path_data.find(" Tested ") if tested != -1: tmpTxt = self.path_data[tested:].split() text += " - Update Tested Build " + tmpTxt[1] Tkinter.Label(master, text=text).pack(side='top') files = os.listdir(self.image_dir) import fnmatch files = fnmatch.filter(files,'*.jpg') + fnmatch.filter(files,'*.png') import random rand = random.randint(0,len(files)-1) image_file = os.path.join(os.path.join(self.image_dir ,files[rand])) image = Image.open(image_file) self.image1 = ImageTk.PhotoImage(image, master=master) self.imageTk = Tkinter.Label(master,image=self.image1 ) self.imageTk.pack() Tkinter.Label(master, text=self.copyright, relief='sunken' ).pack() logoFrame = Tkinter.Frame(master, bg='white') logoFrame.pack(fill='x',expand=True) basepath = os.path.split(__file__)[0] NBCR = Image.open(os.path.join(basepath,'NBCR.jpg')) self.NBCR1 = ImageTk.PhotoImage(NBCR, master=master) self.NBCRTk = Tkinter.Label(logoFrame,image=self.NBCR1, bd=0 ) self.NBCRTk.pack(side='left', padx=40, expand=True) NIH = Image.open(os.path.join(basepath,'NIH.gif')) self.NIH1 = ImageTk.PhotoImage(NIH, master=master) self.NIHTk = Tkinter.Label(logoFrame,image=self.NIH1, bd=0) self.NIHTk.pack(side='left', padx=40,expand=True) NSF = Image.open(os.path.join(basepath,'NSF.gif')) self.NSF1 = ImageTk.PhotoImage(NSF, master=master) self.NSFTk = Tkinter.Label(logoFrame,image=self.NSF1, bd=0) self.NSFTk.pack(side='left', padx=40, expand=True) if __name__ == '__main__': root = Tkinter.Tk() about = About(image_dir='../../Pmv/Icons/Images') about.gui(root) root.mainloop()mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/splashregister/NSF.gif0000644000175000017500000000231010732267546024547 0ustar debiandebianGIF89a23Ä$$$$I$IUIIUImImUmmmmUm’Um’ªm’ÿ’’U¶’¶¶ªÛ’Û¶Û¶UÛÛÛÛUÛÛªÛÛÿÿ’ÿ¶ÿ¶UÿÛÿÛUÿÛªÿÿUÿÿªÿÿÿ!ùÿ,23ÿà'ŽdiŠ[älë¾"‡QpÝVÝÊrT4é§ÄÆòL6VfÙh$ÀIMHγòP:›É‘‰‰D8\Ïô|=yÅ› e‚æùŽr GlŽTÛ&pH@>$‡€%”Š$4$l’"oNq%)až1e¤€^F›­rH#²‘m\½qVtÉ]K¯#Qn‹”@ƒ½IFÇzMj˜"ÁÄïØ#•⃶$VrG^AšæZ;*ÿˆ¨Ào%úPDhÐ  ¤c6Kâ(?QhÓA7:9ÿ(P`04°E¬D0? 3Ç+.É6TX¹`Á—$0ÀÔ ÄüøI¸ÓÄ•„†é$AÁQ`¾<ÀÔÀf„hAVH¶dÑ!¨Á‚–,€ePô@‚0à€¬g0¼Ñ)¯˜]ðàÞ¢ =0€³ ’T€ïC…ª%(ìä¡§« *ï ;ÖlàÎ!Ql;Sƒ¼®T°`6ß̼2= @€¬ßíË ¤A‚ `w^ bŸ®\!A…$$ Q•+M¯NÌ[Qô²…š(ñ×BlÕAŒ6¡'¸œqHÿ4 ‚”õÁEp€± aa=äÁT(†Â&ˆ1‡jÌ4@€ XöA^^= °P4‡@$Å@ÐHBêm"dh‰@KÌ÷Áp ̇†47]xbBìÒ!ÄH@@P@$6 Ô ØøAÿ Pe6‘¢fÐOñ†ÎØH£Tà`ÈØÒŒ€cž–^—VAgÚ¨çŠfU¤gÂÔ 'j"„YB2$Ùœ’9Þ6©’’âÚœ¯„ ìt JÒ*€`Ç €¬³ÈP6;ÓBÿ"1L,A³Þ˜®·ÞÚà‘ µÃêˆ 138«¤vâ .4 âÚ\Õ‹‰0ŠÿòÊ„8 d¤ÉB{,²õª‡ÐT8p®õ‘–:€²òÀq<7Í?\¶ì#Î…¤€€±ï6'@g$#(—ëá#•9@Jhü™±ƒN6Al²!fÏÓüQŒ,m9¬Þ¯SXõÕª(º:É0DÖQ'¨>”†¯ÚÓ¼0ZÎR-ýÉêeÖBu‚TkISü¶Ú@}…è£A²ä¤ËÜlÉo)G›!÷Ñ„—€3å˜#TÇBåÜcEBýô99€:ËS|Ø–?„; 8ç5}1À”ÜÖ?1 s¹$Ôž0Z苵^z L?É\R²Nå)™ßZoî7›«Ï.4´¶>b\AÑ FÁI׫uÝ.ç:Õ†e:‡#º¢’{ÑÞ·KW¤Ô*57ê&o}M[‡~ßyÐÒ§Þ*å<Ï‘yâýf&£Y²ðe‡:zÊ•^oj[Q­þ)îAÒÖU­ö/oÎÛ_½†ÿÔµòÍñÉ‚EbcIy¦Ÿñ»Ò… éÏN¨ø]u^*„(Éœdޏ‡0v›Í+2úÊÛǧ٧ÿ»_-òŸ!ñ§B¾d0qôårg–>NÚ¸Þ™Ø{ßhßÒúª«§;º¢2’N60ãs7ªTû‡e=Ieµ»"ƒiÀÛ‹pa2KÈ}+ìW˜$x¾±ç^·ÊúýÇŸÿ»RÚs)*j.Gö‡¤Û)R?áEšâÙ×ÍñkLÙ[Q´©iÒÁœ¥lhû)Lûb«{‚$sViÝ\ÊU»Œç:Êʚш’žÕÿ›ø×ÃÓVÔœ Ú¥¶ïQÝ•#cÓã¥]‡÷}Ÿ åºÏ¾®f_‡`‘—µKqO:‘ê*!ßÚ~ªÞñô2Î=;m˜í²”@ìAN¾ÊÖãúU_ÜìXû 9Ì+°÷’×F= %ʰieIT+m²}'Ãsþšª/˜'‹Np»z/,n´ÇU6E—÷Ö‰}_Ї‚¨+ÇN¾ÇSöV›Ö®Hl¼iÖÓšvïv ->²Òz¿˜ }u½ÅªÝêT[é«ÂOçþLyiR›•ú°g…Ñô4aü9˜ç× J–ä‡Ôµy6 ûNþ5Èt*ý­.S˜ä7hQ¥=¦d<”)JZŠÖ¡³]_.ÜчtrÕ‘¢•q-CPGçŸgà}zÝ.ðÖ;†ml£·Ün¹>,†ö°‚­${´7õÓ·5ér.k¹8¨ü#=E¹ ø›ŸÝž%úËiþ-Ö¦nºsY »Âq™ÌÝ$Ê–©/7aÂ4;I×å*QýšÝ¾ò\Oú…eýÏþÔÅ"¶ÛÖÌ;&=¢ß C-ÉCšC}ÏG¤ƒî¤4zvÜóVžI@[pÛØ™½BØÁï€vl1#ýµiÕ5ç*iP=Ur}Ûs C©Šúñ¹®ùÈx– Г ã›>Ao,!$û€UY ‹D.eë2óâ—³Ã}ÖœYNÛŽŸACÌm`Ÿ®«ú}U+µÃtE'ñ&·Ly–V>í–Ñbk>‰¶ú|‚RŸe~—lŠÍn¶JžýÒ[ŽÒQ/§Ðÿ-f¿ƒw~ŠŸÿ ïõ©vûƒXlX3‚]Û’æ7&sm¡…È_øo$|íïȨ|*¶–׌Ü5@,~Q¾:ãæƒ;/iÕt•#‘yG4̯1~S IZQâš\uбõ¥(þjU{†b˜þeEŸ¶1o†“ÝØØúJõ’}$ûiXj£ÜW/L•]€‚JS`ÉŽÓlŸÊ}`JÈźoÜõ‘¿ ™/Ç[hQB S®à=+Rˆöj„‚·¡Ú¥G[nÒæ’žÓ籯*ìéK^Ý›¢˜ Ú-ZϘÁÁßï$Þ®°»Ã0°ìîÏl•&M²B‘40ÑZÒ‚¤­²@óÐ!Cö«Åäù3y»™°{=žÙqvÑ(zs«Šãhd­AoT´”í#B¬ÊS–Ú¹£Mƒ,€9þ^˜íï.–ªŠ„ºÈ±æ›å¯Çñ›Í R¹ THk[eJÐy$V™‹òõÚÃÛ,‘¸_<ð`Dj25^a ßÑöVûJ§ÄQ­ÒÝé‚=Èë&¿$aLėΗþÅx|-•ëæƒ @ïí¬ë¸§;#Ìy''¶.×v¹F”›lgÈ—^k#ü£G´oÏΫ*T&¤(Ód¡L/S’vñ¼×ƒ'$È·¦·³.“‘"ùÅ9eÊmÁmüH¥i G~ÆÀ ì«{¶o¿¥óýÏ‚Wÿ5¶R­s©Rº¨jÕ¤ SB£Ì·äü‚ûeÈ&ž6É,ʶÁSÑ“5…wËwGµ´#·gÏ_Ê:Ár+-ë(Ȳ«%ÊÛ1ä¡–¾]M)Îå-C¸ ù¿}U4¬Æ JTÐøî{IàÉž‘RGY¸>U#•qœÇÇîwE¦2Cæ e:P¶\îIWh:ØXšj·¥eazÖU¹ª3ÔcÞK¯Äø¬S¸YaNz;±}„8ã. ¡m¨€JH>`ƒJûiI““´´R”¨„R”¢JRˆE)J!¥(„R”¢JRˆE)J!?ÿÙmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/splashregister/__init__.py0000644000175000017500000000045210430446073025535 0ustar debiandebian# This package handles splash screen creation and user registration # # $Author: sargis $ # $Header: /opt/cvs/python/packages/share1.5/mglutil/splashregister/__init__.py,v 1.1 2006/05/10 20:25:31 sargis Exp $ # $Date: 2006/05/10 20:25:31 $ # $Id: __init__.py,v 1.1 2006/05/10 20:25:31 sargis Exp $ mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/splashregister/splashscreen.py0000755000175000017500000001652012124115264026473 0ustar debiandebian# This module handles Splash Screen # $Header: /opt/cvs/python/packages/share1.5/mglutil/splashregister/splashscreen.py,v 1.23.4.3 2013/03/25 18:43:00 annao Exp $ # $Date: 2013/03/25 18:43:00 $ # $Id: splashscreen.py,v 1.23.4.3 2013/03/25 18:43:00 annao Exp $ from mglutil.gui.BasicWidgets.Tk.progressBar import ProgressBar from mglutil.util.packageFilePath import getResourceFolderWithVersion, findFilePath from mglutil.util.misc import ensureFontCase import Tkinter, os, sys, time import string def _allowedfilenamechars(is_path=False, posix=False): """provide basic set of chars that can be used to save files on pretty much all architectures (kinda) """ a = "-_.+,%s%s" % (string.ascii_letters, string.digits) if is_path: if posix: a += '/' + '~' else: a += '\\', '%' return a def validFilename(string): """ return a valid filename from the input string stripping characters that are not allowed """ out = '' allowed = _allowedfilenamechars() for s in string: if s in allowed: out += s return out class SplashScreen: """ package : mglutil module : splashregister.splashscreen class : SplashScreen description: Provides splash screen """ def __init__(self, about, noSplash=False, app=None): """Constructor for SplashScreen""" name = validFilename(about.title) self.version = about.version rcWithVersion = getResourceFolderWithVersion() if rcWithVersion is not None: registration = rcWithVersion + os.sep + '.registration' self.timing_rc = rcWithVersion + os.sep + '.timing_' + name self.usage_rc = rcWithVersion + os.sep + '.usage_' + name try: open(self.usage_rc,'a').write(str(time.time())+"\n") except: pass else: registration = None self.timing_rc = None self.usage_rc = None self.noSplash = noSplash self.registered = False # change this to False to check registration self.register = None # check if the user has registered if registration is None or os.path.exists(registration): self.registered = True #self.check_for_updates(registration) else: # count number of use and ask to register lines = open(self.usage_rc).readlines() if len(lines) < 10: self.registered = True self.waitTk = Tkinter.IntVar() self.percent = 0 if self.timing_rc is None: self.timing_data = [] else: try: timing_file = open(self.timing_rc,'r+') except: timing_file = open(self.timing_rc,'w+') self.timing_data = timing_file.readlines() timing_file.close() ###self.percent = 0 if self.timing_data: for data in self.timing_data: self.percent += int(data) self.percent = int( self.percent/len(self.timing_data) ) self.percent = 100 / self.percent if self.percent == 0: self.percent = 1 self.counter = 0 if self.registered and self.noSplash: return self.splash_win = Tkinter.Toplevel() self.splash_win.overrideredirect(1) self.splash_win.withdraw() frame = Tkinter.Frame(self.splash_win,relief='raised', bd=3) frame.pack() try: about.gui(master=frame) except Exception, inst: print inst self.progressBar = ProgressBar(master=frame, labelside=None, width=420, height=20, mode='percent') self.progressBar.setLabelText('Loading Modules...') self.progressBar.set(0) if not self.registered: text = """ Please Register! It helps us secure funding for supporting development and you won't have to click these buttons again in the future. Thanks.""" Tkinter.Label(frame, text = text, font =(ensureFontCase('helvetica'), 14, 'bold') ).\ pack() Tkinter.Button(frame, text='Register Now', bg = 'Green', command=self.Register_Now).pack(side='left') self.Later_Button = Tkinter.Button(frame, text='Remind Me Later', state='disabled', command=self.Later ) self.Later_Button.pack(side='right') self._updateprogressBar() self.splash_win.update_idletasks() width = self.splash_win.winfo_reqwidth() height = self.splash_win.winfo_reqheight() screenwidth = self.splash_win.winfo_screenwidth() if screenwidth > 2000: screenwidth = 1000 x = (screenwidth - width) / 2 - self.splash_win.winfo_vrootx() y = (self.splash_win.winfo_screenheight() - height) / 4 - \ self.splash_win.winfo_vrooty() if x < 0: x = 0 if y < 0: y = 0 geometry = '%dx%d+%d+%d' % (width, height, x, y) self.splash_win.geometry(geometry) self.splash_win.update_idletasks() self.splash_win.deiconify() self.splash_win.update() self.splash_win_children = self.splash_win.children self.splash_win.children = [] # this is needed to avoid problems self.changeFont def _updateprogressBar(self): """Updates Progress Bar""" abs_percent = (self.counter + 1)*self.percent self.counter += 1 if abs_percent < 100: self.progressBar.set(abs_percent) self.splash_win.after(1, lambda:self._updateprogressBar()) else: self.progressBar.setLabelText('Please wait ') self.progressBar.set(100) def finish(self): """Used to remove Splash Screen""" if self.registered and self.noSplash: return if not self.registered: if self.splash_win.wm_state() == 'normal': self.Later_Button.config(state='normal', bg='red') self.splash_win.update() self.splash_win.wait_variable(self.waitTk) self.splash_win.children = self.splash_win_children self.splash_win.destroy() if len(self.timing_data) > 10: self.timing_data = self.timing_data[1:10] self.timing_data.append(str(self.counter)+'\n') try: timing_file = open(self.timing_rc,'w') timing_file.writelines(self.timing_data) timing_file.close() except: pass def Later(self): """Command for self.Later_Button""" self.waitTk.set(1) def Register_Now(self): if not self.register or not self.register.master: from mglutil.splashregister.register import Register_User self.splash_win.withdraw() self.register = Register_User(self.version) self.waitTk.set(1) def check_for_updates(self,registration): """To be implemented """ self.registered = True #from mglutil.splashregister.register import Update_User #Update_User(registration) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/0000755000175000017500000000000012146210177021141 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/services/0000755000175000017500000000000012146210177022764 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/services/AppService_server.py0000644000175000017500000001137510770004311026764 0ustar debiandebian################################################## # file: AppService_server.py # # skeleton generated by "ZSI.generate.wsdl2dispatch.ServiceModuleWriter" # /usr/local/bin/wsdl2py wsdl/opal.wsdl # ################################################## from ZSI.schema import GED, GTD from ZSI.TCcompound import ComplexType, Struct from AppService_types import * from ZSI.ServiceContainer import ServiceSOAPBinding # Messages getAppMetadataRequest = GED("http://nbcr.sdsc.edu/opal/types", "getAppMetadataInput").pyclass getAppMetadataResponse = GED("http://nbcr.sdsc.edu/opal/types", "getAppMetadataOutput").pyclass getAppConfigRequest = GED("http://nbcr.sdsc.edu/opal/types", "getAppConfigInput").pyclass getAppConfigResponse = GED("http://nbcr.sdsc.edu/opal/types", "getAppConfigOutput").pyclass launchJobRequest = GED("http://nbcr.sdsc.edu/opal/types", "launchJobInput").pyclass launchJobResponse = GED("http://nbcr.sdsc.edu/opal/types", "launchJobOutput").pyclass launchJobBlockingRequest = GED("http://nbcr.sdsc.edu/opal/types", "launchJobBlockingInput").pyclass launchJobBlockingResponse = GED("http://nbcr.sdsc.edu/opal/types", "launchJobBlockingOutput").pyclass queryStatusRequest = GED("http://nbcr.sdsc.edu/opal/types", "queryStatusInput").pyclass queryStatusResponse = GED("http://nbcr.sdsc.edu/opal/types", "queryStatusOutput").pyclass getOutputsRequest = GED("http://nbcr.sdsc.edu/opal/types", "getOutputsInput").pyclass getOutputsResponse = GED("http://nbcr.sdsc.edu/opal/types", "getOutputsOutput").pyclass getOutputAsBase64ByNameRequest = GED("http://nbcr.sdsc.edu/opal/types", "getOutputAsBase64ByNameInput").pyclass getOutputAsBase64ByNameResponse = GED("http://nbcr.sdsc.edu/opal/types", "getOutputAsBase64ByNameOutput").pyclass destroyRequest = GED("http://nbcr.sdsc.edu/opal/types", "destroyInput").pyclass destroyResponse = GED("http://nbcr.sdsc.edu/opal/types", "destroyOutput").pyclass # Service Skeletons class AppService(ServiceSOAPBinding): soapAction = {} root = {} def __init__(self, post='/axis/services/AppServicePort', **kw): ServiceSOAPBinding.__init__(self, post) def soap_getAppMetadata(self, ps, **kw): request = ps.Parse(getAppMetadataRequest.typecode) return request,getAppMetadataResponse() soapAction['http://nbcr.sdsc.edu/opal/getAppMetadata'] = 'soap_getAppMetadata' root[(getAppMetadataRequest.typecode.nspname,getAppMetadataRequest.typecode.pname)] = 'soap_getAppMetadata' def soap_getAppConfig(self, ps, **kw): request = ps.Parse(getAppConfigRequest.typecode) return request,getAppConfigResponse() soapAction['http://nbcr.sdsc.edu/opal/getAppConfig'] = 'soap_getAppConfig' root[(getAppConfigRequest.typecode.nspname,getAppConfigRequest.typecode.pname)] = 'soap_getAppConfig' def soap_launchJob(self, ps, **kw): request = ps.Parse(launchJobRequest.typecode) return request,launchJobResponse() soapAction['http://nbcr.sdsc.edu/opal/launchJob'] = 'soap_launchJob' root[(launchJobRequest.typecode.nspname,launchJobRequest.typecode.pname)] = 'soap_launchJob' def soap_launchJobBlocking(self, ps, **kw): request = ps.Parse(launchJobBlockingRequest.typecode) return request,launchJobBlockingResponse() soapAction['http://nbcr.sdsc.edu/opal/launchJobBlocking'] = 'soap_launchJobBlocking' root[(launchJobBlockingRequest.typecode.nspname,launchJobBlockingRequest.typecode.pname)] = 'soap_launchJobBlocking' def soap_queryStatus(self, ps, **kw): request = ps.Parse(queryStatusRequest.typecode) return request,queryStatusResponse() soapAction['http://nbcr.sdsc.edu/opal/queryStatus'] = 'soap_queryStatus' root[(queryStatusRequest.typecode.nspname,queryStatusRequest.typecode.pname)] = 'soap_queryStatus' def soap_getOutputs(self, ps, **kw): request = ps.Parse(getOutputsRequest.typecode) return request,getOutputsResponse() soapAction['http://nbcr.sdsc.edu/opal/getOutputs'] = 'soap_getOutputs' root[(getOutputsRequest.typecode.nspname,getOutputsRequest.typecode.pname)] = 'soap_getOutputs' def soap_getOutputAsBase64ByName(self, ps, **kw): request = ps.Parse(getOutputAsBase64ByNameRequest.typecode) return request,getOutputAsBase64ByNameResponse() soapAction['http://nbcr.sdsc.edu/opal/getOutputAsBase64ByName'] = 'soap_getOutputAsBase64ByName' root[(getOutputAsBase64ByNameRequest.typecode.nspname,getOutputAsBase64ByNameRequest.typecode.pname)] = 'soap_getOutputAsBase64ByName' def soap_destroy(self, ps, **kw): request = ps.Parse(destroyRequest.typecode) return request,destroyResponse() soapAction['http://nbcr.sdsc.edu/opal/destroy'] = 'soap_destroy' root[(destroyRequest.typecode.nspname,destroyRequest.typecode.pname)] = 'soap_destroy' mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/services/AppService_client.py0000644000175000017500000001570411231662433026744 0ustar debiandebian################################################## # file: AppService_client.py # # client stubs generated by "ZSI.generate.wsdl2python.WriteServiceModule" # /home/clem/projects/opal/sf/opal/opal-py/temp/zsi/build/scripts-2.6/wsdl2py opal.wsdl # ################################################## from AppService_types import * import urlparse, types from ZSI.TCcompound import ComplexType, Struct from ZSI import client from ZSI.schema import GED, GTD import ZSI # Locator class AppServiceLocator: AppServicePort_address = "http://ws.nbcr.net:8080/axis/services/AppServicePort" def getAppServicePortAddress(self): return AppServiceLocator.AppServicePort_address def getAppServicePort(self, url=None, **kw): return AppServicePortTypeSoapBindingSOAP(url or AppServiceLocator.AppServicePort_address, **kw) # Methods class AppServicePortTypeSoapBindingSOAP: def __init__(self, url, **kw): kw.setdefault("readerclass", None) kw.setdefault("writerclass", None) # no resource properties self.binding = client.Binding(url=url, **kw) # no ws-addressing # op: getAppMetadata def getAppMetadata(self, request, **kw): if isinstance(request, getAppMetadataRequest) is False: raise TypeError, "%s incorrect request type" % (request.__class__) # no input wsaction self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/getAppMetadata", **kw) # no output wsaction response = self.binding.Receive(getAppMetadataResponse.typecode) return response # op: getAppConfig def getAppConfig(self, request, **kw): if isinstance(request, getAppConfigRequest) is False: raise TypeError, "%s incorrect request type" % (request.__class__) # no input wsaction self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/getAppConfig", **kw) # no output wsaction response = self.binding.Receive(getAppConfigResponse.typecode) return response # op: launchJob def launchJob(self, request, **kw): if isinstance(request, launchJobRequest) is False: raise TypeError, "%s incorrect request type" % (request.__class__) # no input wsaction self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/launchJob", **kw) # no output wsaction response = self.binding.Receive(launchJobResponse.typecode) return response # op: launchJobBlocking def launchJobBlocking(self, request, **kw): if isinstance(request, launchJobBlockingRequest) is False: raise TypeError, "%s incorrect request type" % (request.__class__) # no input wsaction self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/launchJobBlocking", **kw) # no output wsaction response = self.binding.Receive(launchJobBlockingResponse.typecode) return response # op: queryStatus def queryStatus(self, request, **kw): if isinstance(request, queryStatusRequest) is False: raise TypeError, "%s incorrect request type" % (request.__class__) # no input wsaction self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/queryStatus", **kw) # no output wsaction response = self.binding.Receive(queryStatusResponse.typecode) return response # op: getJobStatistics def getJobStatistics(self, request, **kw): if isinstance(request, getJobStatisticsRequest) is False: raise TypeError, "%s incorrect request type" % (request.__class__) # no input wsaction self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/getJobStatistics", **kw) # no output wsaction response = self.binding.Receive(getJobStatisticsResponse.typecode) return response # op: getOutputs def getOutputs(self, request, **kw): if isinstance(request, getOutputsRequest) is False: raise TypeError, "%s incorrect request type" % (request.__class__) # no input wsaction self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/getOutputs", **kw) # no output wsaction response = self.binding.Receive(getOutputsResponse.typecode) return response # op: getOutputAsBase64ByName def getOutputAsBase64ByName(self, request, **kw): if isinstance(request, getOutputAsBase64ByNameRequest) is False: raise TypeError, "%s incorrect request type" % (request.__class__) # no input wsaction self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/getOutputAsBase64ByName", **kw) # no output wsaction response = self.binding.Receive(getOutputAsBase64ByNameResponse.typecode) return getOutputAsBase64ByNameResponse(response) # op: destroy def destroy(self, request, **kw): if isinstance(request, destroyRequest) is False: raise TypeError, "%s incorrect request type" % (request.__class__) # no input wsaction self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/destroy", **kw) # no output wsaction response = self.binding.Receive(destroyResponse.typecode) return response getAppMetadataRequest = GED("http://nbcr.sdsc.edu/opal/types", "getAppMetadataInput").pyclass getAppMetadataResponse = GED("http://nbcr.sdsc.edu/opal/types", "getAppMetadataOutput").pyclass getAppConfigRequest = GED("http://nbcr.sdsc.edu/opal/types", "getAppConfigInput").pyclass getAppConfigResponse = GED("http://nbcr.sdsc.edu/opal/types", "getAppConfigOutput").pyclass launchJobRequest = GED("http://nbcr.sdsc.edu/opal/types", "launchJobInput").pyclass launchJobResponse = GED("http://nbcr.sdsc.edu/opal/types", "launchJobOutput").pyclass launchJobBlockingRequest = GED("http://nbcr.sdsc.edu/opal/types", "launchJobBlockingInput").pyclass launchJobBlockingResponse = GED("http://nbcr.sdsc.edu/opal/types", "launchJobBlockingOutput").pyclass queryStatusRequest = GED("http://nbcr.sdsc.edu/opal/types", "queryStatusInput").pyclass queryStatusResponse = GED("http://nbcr.sdsc.edu/opal/types", "queryStatusOutput").pyclass getJobStatisticsRequest = GED("http://nbcr.sdsc.edu/opal/types", "getJobStatisticsInput").pyclass getJobStatisticsResponse = GED("http://nbcr.sdsc.edu/opal/types", "getJobStatisticsOutput").pyclass getOutputsRequest = GED("http://nbcr.sdsc.edu/opal/types", "getOutputsInput").pyclass getOutputsResponse = GED("http://nbcr.sdsc.edu/opal/types", "getOutputsOutput").pyclass getOutputAsBase64ByNameRequest = GED("http://nbcr.sdsc.edu/opal/types", "getOutputAsBase64ByNameInput").pyclass getOutputAsBase64ByNameResponse = GED("http://nbcr.sdsc.edu/opal/types", "getOutputAsBase64ByNameOutput").pyclass destroyRequest = GED("http://nbcr.sdsc.edu/opal/types", "destroyInput").pyclass destroyResponse = GED("http://nbcr.sdsc.edu/opal/types", "destroyOutput").pyclass mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/services/AppService_services_types.py0000644000175000017500000010560610714651244030541 0ustar debiandebian################################################## # ./AppService_services_types.py # generated by ZSI.wsdl2python # # ################################################## import ZSI from ZSI.TCcompound import Struct ############################## # targetNamespace # # http://nbcr.sdsc.edu/opal/types ############################## # imported as: ns1 class nbcr_sdsc_edu_opal_types: targetNamespace = 'http://nbcr.sdsc.edu/opal/types' class OutputsByNameInputType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'OutputsByNameInputType' def __init__(self, name=None, ns=None, **kw): # internal vars self._jobID = None self._fileName = None TClist = [ZSI.TC.String(pname="jobID",aname="_jobID"), ZSI.TC.String(pname="fileName",aname="_fileName"), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, **kw) def Get_jobID(self): return self._jobID def Set_jobID(self,_jobID): self._jobID = _jobID def Get_fileName(self): return self._fileName def Set_fileName(self,_fileName): self._fileName = _fileName class ParamsType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'ParamsType' def __init__(self, name=None, ns=None, **kw): # internal vars self._id = None self._tag = None self._paramType = None self._ioType = None self._required = None self._value = None self._semanticType = None self._textDesc = None TClist = [ZSI.TC.String(pname="id",aname="_id"), ZSI.TC.String(pname="tag",aname="_tag", optional=1), ns1.ParamType_Def(name="paramType",ns=ns), ns1.IOType_Def(name="ioType",ns=ns, optional=1), ZSI.TC.Boolean(pname="required",aname="_required", optional=1), ZSI.TC.String(pname="value",aname="_value", repeatable=1, optional=1), ZSI.TC.String(pname="semanticType",aname="_semanticType", optional=1), ZSI.TC.String(pname="textDesc",aname="_textDesc", optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, hasextras=1, **kw) def Get_id(self): return self._id def Set_id(self,_id): self._id = _id def Get_tag(self): return self._tag def Set_tag(self,_tag): self._tag = _tag def Get_paramType(self): return self._paramType def Set_paramType(self,_paramType): self._paramType = _paramType def Get_ioType(self): return self._ioType def Set_ioType(self,_ioType): self._ioType = _ioType def Get_required(self): return self._required def Set_required(self,_required): self._required = _required def Get_value(self): return self._value def Set_value(self,_value): self._value = _value def Get_semanticType(self): return self._semanticType def Set_semanticType(self,_semanticType): self._semanticType = _semanticType def Get_textDesc(self): return self._textDesc def Set_textDesc(self,_textDesc): self._textDesc = _textDesc class InputFileType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'InputFileType' def __init__(self, name=None, ns=None, **kw): # internal vars self._name = None self._contents = None TClist = [ZSI.TC.String(pname="name",aname="_name"), ZSI.TC.Base64String(pname="contents",aname="_contents"), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, **kw) def Get_name(self): return self._name def Set_name(self,_name): self._name = _name def Get_contents(self): return self._contents def Set_contents(self,_contents): self._contents = _contents class FaultType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'FaultType' def __init__(self, name=None, ns=None, **kw): # internal vars self._message = None TClist = [ZSI.TC.String(pname="message",aname="_message", optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, **kw) def Get_message(self): return self._message def Set_message(self,_message): self._message = _message class FlagsType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'FlagsType' def __init__(self, name=None, ns=None, **kw): # internal vars self._id = None self._tag = None self._textDesc = None TClist = [ZSI.TC.String(pname="id",aname="_id"), ZSI.TC.String(pname="tag",aname="_tag"), ZSI.TC.String(pname="textDesc",aname="_textDesc", optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, **kw) def Get_id(self): return self._id def Set_id(self,_id): self._id = _id def Get_tag(self): return self._tag def Set_tag(self,_tag): self._tag = _tag def Get_textDesc(self): return self._textDesc def Set_textDesc(self,_textDesc): self._textDesc = _textDesc class ImplicitParamsType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'ImplicitParamsType' def __init__(self, name=None, ns=None, **kw): # internal vars self._id = None self._name = None self._extension = None self._ioType = None self._required = None self._semanticType = None self._textDesc = None self._min = None self._max = None TClist = [ZSI.TC.String(pname="id",aname="_id"), ZSI.TC.String(pname="name",aname="_name", optional=1), ZSI.TC.String(pname="extension",aname="_extension", optional=1), ns1.IOType_Def(name="ioType",ns=ns), ZSI.TC.Boolean(pname="required",aname="_required", optional=1), ZSI.TC.String(pname="semanticType",aname="_semanticType", optional=1), ZSI.TC.String(pname="textDesc",aname="_textDesc", optional=1), ZSI.TCnumbers.Iint(pname="min",aname="_min", optional=1), ZSI.TCnumbers.Iint(pname="max",aname="_max", optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, **kw) def Get_id(self): return self._id def Set_id(self,_id): self._id = _id def Get_name(self): return self._name def Set_name(self,_name): self._name = _name def Get_extension(self): return self._extension def Set_extension(self,_extension): self._extension = _extension def Get_ioType(self): return self._ioType def Set_ioType(self,_ioType): self._ioType = _ioType def Get_required(self): return self._required def Set_required(self,_required): self._required = _required def Get_semanticType(self): return self._semanticType def Set_semanticType(self,_semanticType): self._semanticType = _semanticType def Get_textDesc(self): return self._textDesc def Set_textDesc(self,_textDesc): self._textDesc = _textDesc def Get_min(self): return self._min def Set_min(self,_min): self._min = _min def Get_max(self): return self._max def Set_max(self,_max): self._max = _max class StatusOutputType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'StatusOutputType' def __init__(self, name=None, ns=None, **kw): # internal vars self._code = None self._message = None self._baseURL = None TClist = [ZSI.TCnumbers.Iint(pname="code",aname="_code"), ZSI.TC.String(pname="message",aname="_message"), ZSI.TC.URI(pname="baseURL",aname="_baseURL"), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, **kw) def Get_code(self): return self._code def Set_code(self,_code): self._code = _code def Get_message(self): return self._message def Set_message(self,_message): self._message = _message def Get_baseURL(self): return self._baseURL def Set_baseURL(self,_baseURL): self._baseURL = _baseURL class OutputFileType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'OutputFileType' def __init__(self, name=None, ns=None, **kw): # internal vars self._name = None self._url = None TClist = [ZSI.TC.String(pname="name",aname="_name"), ZSI.TC.URI(pname="url",aname="_url"), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, **kw) def Get_name(self): return self._name def Set_name(self,_name): self._name = _name def Get_url(self): return self._url def Set_url(self,_url): self._url = _url class getOutputAsBase64ByNameOutput_Dec(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/literals' literal = 'getOutputAsBase64ByNameOutput' def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema # internal vars self._item = None TClist = [ZSI.TCnumbers.Ibyte(pname="item",aname="_item", repeatable=1, optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, hasextras=1, **kw) def Get_item(self): return self._item def Set_item(self,_item): self._item = _item class getOutputAsBase64ByNameInput_Dec(OutputsByNameInputType_Def): literal = "getOutputAsBase64ByNameInput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema ns1.OutputsByNameInputType_Def.__init__(self, name=name, ns=ns, **kw) self.typecode = ns1.OutputsByNameInputType_Def(name=name, ns=ns, **kw) class ParamsArrayType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'ParamsArrayType' def __init__(self, name=None, ns=None, **kw): # internal vars self._separator = None self._param = None TClist = [ZSI.TC.String(pname="separator",aname="_separator", optional=1), ns1.ParamsType_Def(name="param", ns=ns, repeatable=1, optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, hasextras=1, **kw) def Get_separator(self): return self._separator def Set_separator(self,_separator): self._separator = _separator def Get_param(self): return self._param def Set_param(self,_param): self._param = _param class JobInputType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'JobInputType' def __init__(self, name=None, ns=None, **kw): # internal vars self._argList = None self._numProcs = None self._inputFile = None TClist = [ZSI.TC.String(pname="argList",aname="_argList", optional=1), ZSI.TCnumbers.Iint(pname="numProcs",aname="_numProcs", optional=1), ns1.InputFileType_Def(name="inputFile", ns=ns, repeatable=1, optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, hasextras=1, **kw) def Get_argList(self): return self._argList def Set_argList(self,_argList): self._argList = _argList def Get_numProcs(self): return self._numProcs def Set_numProcs(self,_numProcs): self._numProcs = _numProcs def Get_inputFile(self): return self._inputFile def Set_inputFile(self,_inputFile): self._inputFile = _inputFile class opalFaultOutput_Dec(FaultType_Def): literal = "opalFaultOutput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema ns1.FaultType_Def.__init__(self, name=name, ns=ns, **kw) self.typecode = ns1.FaultType_Def(name=name, ns=ns, **kw) class FlagsArrayType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'FlagsArrayType' def __init__(self, name=None, ns=None, **kw): # internal vars self._flag = None TClist = [ns1.FlagsType_Def(name="flag", ns=ns, repeatable=1, optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, hasextras=1, **kw) def Get_flag(self): return self._flag def Set_flag(self,_flag): self._flag = _flag class ImplicitParamsArrayType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'ImplicitParamsArrayType' def __init__(self, name=None, ns=None, **kw): # internal vars self._param = None TClist = [ns1.ImplicitParamsType_Def(name="param", ns=ns, repeatable=1, optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, hasextras=1, **kw) def Get_param(self): return self._param def Set_param(self,_param): self._param = _param class JobSubOutputType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'JobSubOutputType' def __init__(self, name=None, ns=None, **kw): # internal vars self._jobID = None self._status = None TClist = [ZSI.TC.String(pname="jobID",aname="_jobID"), ns1.StatusOutputType_Def(name="status", ns=ns), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, **kw) def Get_jobID(self): return self._jobID def Set_jobID(self,_jobID): self._jobID = _jobID def Get_status(self): return self._status def Set_status(self,_status): self._status = _status class queryStatusOutput_Dec(StatusOutputType_Def): literal = "queryStatusOutput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema ns1.StatusOutputType_Def.__init__(self, name=name, ns=ns, **kw) self.typecode = ns1.StatusOutputType_Def(name=name, ns=ns, **kw) class destroyOutput_Dec(StatusOutputType_Def): literal = "destroyOutput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema ns1.StatusOutputType_Def.__init__(self, name=name, ns=ns, **kw) self.typecode = ns1.StatusOutputType_Def(name=name, ns=ns, **kw) class JobOutputType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'JobOutputType' def __init__(self, name=None, ns=None, **kw): # internal vars self._stdOut = None self._stdErr = None self._outputFile = None TClist = [ZSI.TC.URI(pname="stdOut",aname="_stdOut", optional=1), ZSI.TC.URI(pname="stdErr",aname="_stdErr", optional=1), ns1.OutputFileType_Def(name="outputFile", ns=ns, repeatable=1, optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, hasextras=1, **kw) def Get_stdOut(self): return self._stdOut def Set_stdOut(self,_stdOut): self._stdOut = _stdOut def Get_stdErr(self): return self._stdErr def Set_stdErr(self,_stdErr): self._stdErr = _stdErr def Get_outputFile(self): return self._outputFile def Set_outputFile(self,_outputFile): self._outputFile = _outputFile class launchJobInput_Dec(JobInputType_Def): literal = "launchJobInput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema ns1.JobInputType_Def.__init__(self, name=name, ns=ns, **kw) self.typecode = ns1.JobInputType_Def(name=name, ns=ns, **kw) class launchJobBlockingInput_Dec(JobInputType_Def): literal = "launchJobBlockingInput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema ns1.JobInputType_Def.__init__(self, name=name, ns=ns, **kw) self.typecode = ns1.JobInputType_Def(name=name, ns=ns, **kw) class ArgumentsType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'ArgumentsType' def __init__(self, name=None, ns=None, **kw): # internal vars self._flags = None self._taggedParams = None self._untaggedParams = None self._implicitParams = None TClist = [ns1.FlagsArrayType_Def(name="flags", ns=ns, optional=1), ns1.ParamsArrayType_Def(name="taggedParams", ns=ns, optional=1), ns1.ParamsArrayType_Def(name="untaggedParams", ns=ns, optional=1), ns1.ImplicitParamsArrayType_Def(name="implicitParams", ns=ns, optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, **kw) def Get_flags(self): return self._flags def Set_flags(self,_flags): self._flags = _flags def Get_taggedParams(self): return self._taggedParams def Set_taggedParams(self,_taggedParams): self._taggedParams = _taggedParams def Get_untaggedParams(self): return self._untaggedParams def Set_untaggedParams(self,_untaggedParams): self._untaggedParams = _untaggedParams def Get_implicitParams(self): return self._implicitParams def Set_implicitParams(self,_implicitParams): self._implicitParams = _implicitParams class launchJobOutput_Dec(JobSubOutputType_Def): literal = "launchJobOutput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema ns1.JobSubOutputType_Def.__init__(self, name=name, ns=ns, **kw) self.typecode = ns1.JobSubOutputType_Def(name=name, ns=ns, **kw) class BlockingOutputType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'BlockingOutputType' def __init__(self, name=None, ns=None, **kw): # internal vars self._status = None self._jobOut = None TClist = [ns1.StatusOutputType_Def(name="status", ns=ns), ns1.JobOutputType_Def(name="jobOut", ns=ns), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, **kw) def Get_status(self): return self._status def Set_status(self,_status): self._status = _status def Get_jobOut(self): return self._jobOut def Set_jobOut(self,_jobOut): self._jobOut = _jobOut class getOutputsOutput_Dec(JobOutputType_Def): literal = "getOutputsOutput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema ns1.JobOutputType_Def.__init__(self, name=name, ns=ns, **kw) self.typecode = ns1.JobOutputType_Def(name=name, ns=ns, **kw) class AppMetadataType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'AppMetadataType' def __init__(self, name=None, ns=None, **kw): # internal vars self._usage = None self._info = None self._types = None TClist = [ZSI.TC.String(pname="usage",aname="_usage"), ZSI.TC.String(pname="info",aname="_info", repeatable=1, optional=1), ns1.ArgumentsType_Def(name="types", ns=ns, optional=1), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, hasextras=1, **kw) def Get_usage(self): return self._usage def Set_usage(self,_usage): self._usage = _usage def Get_info(self): return self._info def Set_info(self,_info): self._info = _info def Get_types(self): return self._types def Set_types(self,_types): self._types = _types class launchJobBlockingOutput_Dec(BlockingOutputType_Def): literal = "launchJobBlockingOutput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema ns1.BlockingOutputType_Def.__init__(self, name=name, ns=ns, **kw) self.typecode = ns1.BlockingOutputType_Def(name=name, ns=ns, **kw) class AppConfigType_Def(ZSI.TCcompound.Struct): schema = 'http://nbcr.sdsc.edu/opal/types' type = 'AppConfigType' def __init__(self, name=None, ns=None, **kw): # internal vars self._metadata = None self._binaryLocation = None self._defaultArgs = None self._parallel = None TClist = [ns1.AppMetadataType_Def(name="metadata", ns=ns), ZSI.TC.String(pname="binaryLocation",aname="_binaryLocation"), ZSI.TC.String(pname="defaultArgs",aname="_defaultArgs", optional=1), ZSI.TC.Boolean(pname="parallel",aname="_parallel"), ] oname = name if name: aname = '_%s' % name if ns: oname += ' xmlns="%s"' % ns else: oname += ' xmlns="%s"' % self.__class__.schema else: aname = None ZSI.TCcompound.Struct.__init__(self, self.__class__, TClist, pname=name, inorder=0, aname=aname, oname=oname, **kw) def Get_metadata(self): return self._metadata def Set_metadata(self,_metadata): self._metadata = _metadata def Get_binaryLocation(self): return self._binaryLocation def Set_binaryLocation(self,_binaryLocation): self._binaryLocation = _binaryLocation def Get_defaultArgs(self): return self._defaultArgs def Set_defaultArgs(self,_defaultArgs): self._defaultArgs = _defaultArgs def Get_parallel(self): return self._parallel def Set_parallel(self,_parallel): self._parallel = _parallel class getAppMetadataOutput_Dec(AppMetadataType_Def): literal = "getAppMetadataOutput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema ns1.AppMetadataType_Def.__init__(self, name=name, ns=ns, **kw) self.typecode = ns1.AppMetadataType_Def(name=name, ns=ns, **kw) class getAppConfigOutput_Dec(AppConfigType_Def): literal = "getAppConfigOutput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema ns1.AppConfigType_Def.__init__(self, name=name, ns=ns, **kw) self.typecode = ns1.AppConfigType_Def(name=name, ns=ns, **kw) class ParamType_Def(ZSI.TC.String): tag = "tns:ParamType" def __init__(self, name=None, ns=None, **kw): aname = None if name: kw["pname"] = name kw["aname"] = "_%s" % name kw["oname"] = '%s xmlns:tns="%s"' %(name,ns1.targetNamespace) ZSI.TC.String.__init__(self, **kw) class IOType_Def(ZSI.TC.String): tag = "tns:IOType" def __init__(self, name=None, ns=None, **kw): aname = None if name: kw["pname"] = name kw["aname"] = "_%s" % name kw["oname"] = '%s xmlns:tns="%s"' %(name,ns1.targetNamespace) ZSI.TC.String.__init__(self, **kw) class queryStatusInput_Dec(ZSI.TC.String): literal = "queryStatusInput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema kw["oname"] = '%s xmlns="%s"' %(name, ns) ZSI.TC.String.__init__(self,pname=name, aname="%s" % name, **kw) class getOutputsInput_Dec(ZSI.TC.String): literal = "getOutputsInput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema kw["oname"] = '%s xmlns="%s"' %(name, ns) ZSI.TC.String.__init__(self,pname=name, aname="%s" % name, **kw) class destroyInput_Dec(ZSI.TC.String): literal = "destroyInput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, name=None, ns=None, **kw): name = name or self.__class__.literal ns = ns or self.__class__.schema kw["oname"] = '%s xmlns="%s"' %(name, ns) ZSI.TC.String.__init__(self,pname=name, aname="%s" % name, **kw) # define class alias for subsequent ns classes ns1 = nbcr_sdsc_edu_opal_types ././@LongLink0000000000000000000000000000015100000000000011562 Lustar rootrootmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/services/SecuritymyproxyloginImplService_services.pymgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/services/SecuritymyproxyloginImplService_service0000644000175000017500000000766310714651244033121 0ustar debiandebian################################################## # ./SecuritymyproxyloginImplService_services.py # generated by ZSI.wsdl2python # # ################################################## import urlparse, types from ZSI.TCcompound import Struct from ZSI import client import ZSI class SecuritymyproxyloginImplServiceInterface: def getSecuritymyproxyloginImpl(self, portAddress=None, **kw): raise NonImplementationError, "method not implemented" class SecuritymyproxyloginImplServiceLocator(SecuritymyproxyloginImplServiceInterface): SecuritymyproxyloginImpl_address = "https://gama.nbcr.net:9443/axis/services/SecurityMyproxyloginService" def getSecuritymyproxyloginImplAddress(self): return SecuritymyproxyloginImplServiceLocator.SecuritymyproxyloginImpl_address def getSecuritymyproxyloginImpl(self, portAddress=None, **kw): return SecurityMyproxyloginServiceSoapBindingSOAP(portAddress or SecuritymyproxyloginImplServiceLocator.SecuritymyproxyloginImpl_address, **kw) class SecurityMyproxyloginServiceSoapBindingSOAP: def __init__(self, addr, **kw): netloc = (urlparse.urlparse(addr)[1]).split(":") + [80,] if not kw.has_key("host"): kw["host"] = netloc[0] if not kw.has_key("port"): kw["port"] = int(netloc[1]) if not kw.has_key("url"): kw["url"] = urlparse.urlparse(addr)[2] self.binding = client.Binding(**kw) def loginUserMyProxy(self, request): """ @param: request to loginUserMyProxyRequest:: _passwd: str _username: str @return: response from loginUserMyProxyResponse:: _loginUserMyProxyReturn: str """ if not isinstance(request, loginUserMyProxyRequest) and\ not issubclass(loginUserMyProxyRequest, request.__class__): raise TypeError, "%s incorrect request type" %(request.__class__) kw = {} response = self.binding.Send(None, None, request, soapaction="", **kw) response = self.binding.Receive(loginUserMyProxyResponseWrapper()) if not isinstance(response, loginUserMyProxyResponse) and\ not issubclass(loginUserMyProxyResponse, response.__class__): raise TypeError, "%s incorrect response type" %(response.__class__) return response class loginUserMyProxyRequest (ZSI.TCcompound.Struct): def __init__(self, name=None, ns=None): self._username = None self._passwd = None oname = None if name: oname = name if ns: oname += ' xmlns="%s"' % ns ZSI.TC.Struct.__init__(self, loginUserMyProxyRequest, [ZSI.TC.String(pname="username",aname="_username",optional=1),ZSI.TC.String(pname="passwd",aname="_passwd",optional=1),], pname=name, aname="%s" % name, oname=oname ) class loginUserMyProxyRequestWrapper(loginUserMyProxyRequest): """wrapper for rpc:encoded message""" typecode = loginUserMyProxyRequest(name='loginUserMyProxy', ns='urn:axis') def __init__( self, name=None, ns=None, **kw ): loginUserMyProxyRequest.__init__( self, name='loginUserMyProxy', ns='urn:axis' ) class loginUserMyProxyResponse (ZSI.TCcompound.Struct): def __init__(self, name=None, ns=None): self._loginUserMyProxyReturn = None oname = None if name: oname = name if ns: oname += ' xmlns="%s"' % ns ZSI.TC.Struct.__init__(self, loginUserMyProxyResponse, [ZSI.TC.String(pname="loginUserMyProxyReturn",aname="_loginUserMyProxyReturn",optional=1),], pname=name, aname="%s" % name, oname=oname ) class loginUserMyProxyResponseWrapper(loginUserMyProxyResponse): """wrapper for rpc:encoded message""" typecode = loginUserMyProxyResponse(name='loginUserMyProxyResponse', ns='urn:axis') def __init__( self, name=None, ns=None, **kw ): loginUserMyProxyResponse.__init__( self, name='loginUserMyProxyResponse', ns='urn:axis' ) ././@LongLink0000000000000000000000000000014700000000000011567 Lustar rootrootmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/services/SecurityuserimportImplService_services.pymgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/services/SecurityuserimportImplService_services.0000644000175000017500000000675610714651244033015 0ustar debiandebian################################################## # ./SecurityuserimportImplService_services.py # generated by ZSI.wsdl2python # # ################################################## import urlparse, types from ZSI.TCcompound import Struct from ZSI import client import ZSI class SecurityuserimportImplServiceInterface: def getSecurityuserimportImpl(self, portAddress=None, **kw): raise NonImplementationError, "method not implemented" class SecurityuserimportImplServiceLocator(SecurityuserimportImplServiceInterface): SecurityuserimportImpl_address = "https://gama.nbcr.net:9443/axis/services/SecurityUserImportService" def getSecurityuserimportImplAddress(self): return SecurityuserimportImplServiceLocator.SecurityuserimportImpl_address def getSecurityuserimportImpl(self, portAddress=None, **kw): return SecurityUserImportServiceSoapBindingSOAP(portAddress or SecurityuserimportImplServiceLocator.SecurityuserimportImpl_address, **kw) class SecurityUserImportServiceSoapBindingSOAP: def __init__(self, addr, **kw): netloc = (urlparse.urlparse(addr)[1]).split(":") + [80,] if not kw.has_key("host"): kw["host"] = netloc[0] if not kw.has_key("port"): kw["port"] = int(netloc[1]) if not kw.has_key("url"): kw["url"] = urlparse.urlparse(addr)[2] self.binding = client.Binding(**kw) def listUsers(self, request): """ @param: request to listUsersRequest @return: response from listUsersResponse:: _listUsersReturn: str """ if not isinstance(request, listUsersRequest) and\ not issubclass(listUsersRequest, request.__class__): raise TypeError, "%s incorrect request type" %(request.__class__) kw = {} response = self.binding.Send(None, None, request, soapaction="", **kw) response = self.binding.Receive(listUsersResponseWrapper()) if not isinstance(response, listUsersResponse) and\ not issubclass(listUsersResponse, response.__class__): raise TypeError, "%s incorrect response type" %(response.__class__) return response class listUsersRequest (ZSI.TCcompound.Struct): def __init__(self, name=None, ns=None): oname = None if name: oname = name if ns: oname += ' xmlns="%s"' % ns ZSI.TC.Struct.__init__(self, listUsersRequest, [], pname=name, aname="%s" % name, oname=oname ) class listUsersRequestWrapper(listUsersRequest): """wrapper for rpc:encoded message""" typecode = listUsersRequest(name='listUsers', ns='urn:axis') def __init__( self, name=None, ns=None, **kw ): listUsersRequest.__init__( self, name='listUsers', ns='urn:axis' ) class listUsersResponse (ZSI.TCcompound.Struct): def __init__(self, name=None, ns=None): self._listUsersReturn = None oname = None if name: oname = name if ns: oname += ' xmlns="%s"' % ns ZSI.TC.Struct.__init__(self, listUsersResponse, [ZSI.TC.String(pname="listUsersReturn",aname="_listUsersReturn",optional=1),], pname=name, aname="%s" % name, oname=oname ) class listUsersResponseWrapper(listUsersResponse): """wrapper for rpc:encoded message""" typecode = listUsersResponse(name='listUsersResponse', ns='urn:axis') def __init__( self, name=None, ns=None, **kw ): listUsersResponse.__init__( self, name='listUsersResponse', ns='urn:axis' ) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/services/AppService_services.py0000644000175000017500000005322010714651244027307 0ustar debiandebian################################################## # ./AppService_services.py # generated by ZSI.wsdl2python # # ################################################## from AppService_services_types import * from AppService_services_types import \ nbcr_sdsc_edu_opal_types as ns1 import urlparse, types from ZSI.TCcompound import Struct from ZSI import client import ZSI class AppServiceInterface: def getAppServicePortType(self, portAddress=None, **kw): raise NonImplementationError, "method not implemented" class AppServiceLocator(AppServiceInterface): AppServicePortType_address = "https://rocks-106.sdsc.edu:8443/axis/services/AutogridServicePort" def getAppServicePortTypeAddress(self): return AppServiceLocator.AppServicePortType_address def getAppServicePortType(self, portAddress=None, **kw): return AppServicePortSoapBindingSOAP(portAddress or AppServiceLocator.AppServicePortType_address, **kw) class AppServicePortSoapBindingSOAP: def __init__(self, addr, **kw): netloc = (urlparse.urlparse(addr)[1]).split(":") + [80,] if not kw.has_key("host"): kw["host"] = netloc[0] if not kw.has_key("port"): kw["port"] = int(netloc[1]) if not kw.has_key("url"): kw["url"] = urlparse.urlparse(addr)[2] self.binding = client.Binding(**kw) def destroy(self, request): """ @param: request is str @return: response from destroyResponse:: _destroyOutput: ns1.StatusOutputType_Def _baseURL: str _code: int _message: str """ if not isinstance(request, basestring): raise TypeError, "%s incorrect request type" %(request.__class__) kw = {'requestclass': destroyRequestWrapper} response = self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/destroy", **kw) response = self.binding.Receive(destroyResponseWrapper()) if not isinstance(response, destroyResponse) and\ not issubclass(destroyResponse, response.__class__): raise TypeError, "%s incorrect response type" %(response.__class__) return response def getAppConfig(self, request): """ @param: request to getAppConfigRequest @return: response from getAppConfigResponse:: _getAppConfigOutput: ns1.AppConfigType_Def _binaryLocation: str _defaultArgs: str, optional _metadata: ns1.AppMetadataType_Def _info: str, optional _types: ns1.ArgumentsType_Def, optional _flags: ns1.FlagsArrayType_Def, optional _flag: ns1.FlagsType_Def, optional _id: str _tag: str _textDesc: str, optional _implicitParams: ns1.ImplicitParamsArrayType_Def, optional _param: ns1.ImplicitParamsType_Def, optional _extension: str, optional _id: str _ioType: ns1.IOType_Def _IOType: str, optional _max: int, optional _min: int, optional _name: str, optional _required: boolean, optional _semanticType: str, optional _textDesc: str, optional _taggedParams: ns1.ParamsArrayType_Def, optional _param: ns1.ParamsType_Def, optional _id: str _ioType: ns1.IOType_Def, optional _paramType: ns1.ParamType_Def _ParamType: str, optional _required: boolean, optional _semanticType: str, optional _tag: str, optional _textDesc: str, optional _value: str, optional _separator: str, optional _untaggedParams: ns1.ParamsArrayType_Def, optional _usage: str _parallel: boolean """ if not isinstance(request, getAppConfigRequest) and\ not issubclass(getAppConfigRequest, request.__class__): raise TypeError, "%s incorrect request type" %(request.__class__) kw = {} response = self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/getAppConfig", **kw) response = self.binding.Receive(getAppConfigResponseWrapper()) if not isinstance(response, getAppConfigResponse) and\ not issubclass(getAppConfigResponse, response.__class__): raise TypeError, "%s incorrect response type" %(response.__class__) return response def getAppMetadata(self, request): """ @param: request to getAppMetadataRequest @return: response from getAppMetadataResponse:: _getAppMetadataOutput: ns1.AppMetadataType_Def _info: str, optional _types: ns1.ArgumentsType_Def, optional _flags: ns1.FlagsArrayType_Def, optional _flag: ns1.FlagsType_Def, optional _id: str _tag: str _textDesc: str, optional _implicitParams: ns1.ImplicitParamsArrayType_Def, optional _param: ns1.ImplicitParamsType_Def, optional _extension: str, optional _id: str _ioType: ns1.IOType_Def _IOType: str, optional _max: int, optional _min: int, optional _name: str, optional _required: boolean, optional _semanticType: str, optional _textDesc: str, optional _taggedParams: ns1.ParamsArrayType_Def, optional _param: ns1.ParamsType_Def, optional _id: str _ioType: ns1.IOType_Def, optional _paramType: ns1.ParamType_Def _ParamType: str, optional _required: boolean, optional _semanticType: str, optional _tag: str, optional _textDesc: str, optional _value: str, optional _separator: str, optional _untaggedParams: ns1.ParamsArrayType_Def, optional _usage: str """ if not isinstance(request, getAppMetadataRequest) and\ not issubclass(getAppMetadataRequest, request.__class__): raise TypeError, "%s incorrect request type" %(request.__class__) kw = {} response = self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/getAppMetadata", **kw) response = self.binding.Receive(getAppMetadataResponseWrapper()) if not isinstance(response, getAppMetadataResponse) and\ not issubclass(getAppMetadataResponse, response.__class__): raise TypeError, "%s incorrect response type" %(response.__class__) return response def getOutputAsBase64ByName(self, request): """ @param: request to getOutputAsBase64ByNameRequest:: _getOutputAsBase64ByNameInput: ns1.OutputsByNameInputType_Def _fileName: str _jobID: str @return: response from getOutputAsBase64ByNameResponse:: _item: str, optional """ if not isinstance(request, getOutputAsBase64ByNameRequest) and\ not issubclass(getOutputAsBase64ByNameRequest, request.__class__): raise TypeError, "%s incorrect request type" %(request.__class__) kw = {} response = self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/getOutputAsBase64ByName", **kw) response = self.binding.Receive(getOutputAsBase64ByNameResponseWrapper()) if not isinstance(response, getOutputAsBase64ByNameResponse) and\ not issubclass(getOutputAsBase64ByNameResponse, response.__class__): raise TypeError, "%s incorrect response type" %(response.__class__) return response def getOutputs(self, request): """ @param: request is str @return: response from getOutputsResponse:: _getOutputsOutput: ns1.JobOutputType_Def _outputFile: ns1.OutputFileType_Def, optional _name: str _url: str _stdErr: str, optional _stdOut: str, optional """ if not isinstance(request, basestring): raise TypeError, "%s incorrect request type" %(request.__class__) kw = {'requestclass': getOutputsRequestWrapper} response = self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/getOutputs", **kw) response = self.binding.Receive(getOutputsResponseWrapper()) if not isinstance(response, getOutputsResponse) and\ not issubclass(getOutputsResponse, response.__class__): raise TypeError, "%s incorrect response type" %(response.__class__) return response def launchJob(self, request): """ @param: request to launchJobRequest:: _launchJobInput: ns1.JobInputType_Def _argList: str, optional _inputFile: ns1.InputFileType_Def, optional _contents: str _name: str _numProcs: int, optional @return: response from launchJobResponse:: _launchJobOutput: ns1.JobSubOutputType_Def _jobID: str _status: ns1.StatusOutputType_Def _baseURL: str _code: int _message: str """ if not isinstance(request, launchJobRequest) and\ not issubclass(launchJobRequest, request.__class__): raise TypeError, "%s incorrect request type" %(request.__class__) kw = {} response = self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/launchJob", **kw) response = self.binding.Receive(launchJobResponseWrapper()) if not isinstance(response, launchJobResponse) and\ not issubclass(launchJobResponse, response.__class__): raise TypeError, "%s incorrect response type" %(response.__class__) return response def launchJobBlocking(self, request): """ @param: request to launchJobBlockingRequest:: _launchJobBlockingInput: ns1.JobInputType_Def _argList: str, optional _inputFile: ns1.InputFileType_Def, optional _contents: str _name: str _numProcs: int, optional @return: response from launchJobBlockingResponse:: _launchJobBlockingOutput: ns1.BlockingOutputType_Def _jobOut: ns1.JobOutputType_Def _outputFile: ns1.OutputFileType_Def, optional _name: str _url: str _stdErr: str, optional _stdOut: str, optional _status: ns1.StatusOutputType_Def _baseURL: str _code: int _message: str """ if not isinstance(request, launchJobBlockingRequest) and\ not issubclass(launchJobBlockingRequest, request.__class__): raise TypeError, "%s incorrect request type" %(request.__class__) kw = {} response = self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/launchJobBlocking", **kw) response = self.binding.Receive(launchJobBlockingResponseWrapper()) if not isinstance(response, launchJobBlockingResponse) and\ not issubclass(launchJobBlockingResponse, response.__class__): raise TypeError, "%s incorrect response type" %(response.__class__) return response def queryStatus(self, request): """ @param: request is str @return: response from queryStatusResponse:: _queryStatusOutput: ns1.StatusOutputType_Def _baseURL: str _code: int _message: str """ if not isinstance(request, basestring): raise TypeError, "%s incorrect request type" %(request.__class__) kw = {'requestclass': queryStatusRequestWrapper} response = self.binding.Send(None, None, request, soapaction="http://nbcr.sdsc.edu/opal/queryStatus", **kw) response = self.binding.Receive(queryStatusResponseWrapper()) if not isinstance(response, queryStatusResponse) and\ not issubclass(queryStatusResponse, response.__class__): raise TypeError, "%s incorrect response type" %(response.__class__) return response class destroyRequest(ns1.destroyInput_Dec): if not hasattr( ns1.destroyInput_Dec(), "typecode" ): typecode = ns1.destroyInput_Dec() def __init__(self, name=None, ns=None): ns1.destroyInput_Dec.__init__(self, name=None, ns=None) class destroyRequestWrapper(destroyRequest): """wrapper for document:literal message""" typecode = destroyRequest( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): destroyRequest.__init__( self, name=None, ns=None ) class destroyResponse(ns1.destroyOutput_Dec): if not hasattr( ns1.destroyOutput_Dec(), "typecode" ): typecode = ns1.destroyOutput_Dec() def __init__(self, name=None, ns=None): ns1.destroyOutput_Dec.__init__(self, name=None, ns=None) class destroyResponseWrapper(destroyResponse): """wrapper for document:literal message""" typecode = destroyResponse( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): destroyResponse.__init__( self, name=None, ns=None ) class getAppConfigRequest: def __init__(self, name=None, ns=None): getAppConfigRequest.typecode = Struct(getAppConfigRequest,[], pname=name, aname="%s" % name, oname="%s xmlns=\"\"" % name ) class getAppConfigRequestWrapper(getAppConfigRequest): """wrapper for document:literal message""" typecode = getAppConfigRequest( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): getAppConfigRequest.__init__( self, name=None, ns=None ) class getAppConfigResponse(ns1.getAppConfigOutput_Dec): if not hasattr( ns1.getAppConfigOutput_Dec(), "typecode" ): typecode = ns1.getAppConfigOutput_Dec() def __init__(self, name=None, ns=None): ns1.getAppConfigOutput_Dec.__init__(self, name=None, ns=None) class getAppConfigResponseWrapper(getAppConfigResponse): """wrapper for document:literal message""" typecode = getAppConfigResponse( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): getAppConfigResponse.__init__( self, name=None, ns=None ) class getAppMetadataRequest: def __init__(self, name=None, ns=None): getAppMetadataRequest.typecode = Struct(getAppMetadataRequest,[], pname=name, aname="%s" % name, oname="%s xmlns=\"\"" % name ) class getAppMetadataRequestWrapper(getAppMetadataRequest): """wrapper for document:literal message""" typecode = getAppMetadataRequest( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): getAppMetadataRequest.__init__( self, name=None, ns=None ) class getAppMetadataResponse(ns1.getAppMetadataOutput_Dec): if not hasattr( ns1.getAppMetadataOutput_Dec(), "typecode" ): typecode = ns1.getAppMetadataOutput_Dec() def __init__(self, name=None, ns=None): ns1.getAppMetadataOutput_Dec.__init__(self, name=None, ns=None) class getAppMetadataResponseWrapper(getAppMetadataResponse): """wrapper for document:literal message""" typecode = getAppMetadataResponse( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): getAppMetadataResponse.__init__( self, name=None, ns=None ) class getOutputAsBase64ByNameRequest(ns1.getOutputAsBase64ByNameInput_Dec): if not hasattr( ns1.getOutputAsBase64ByNameInput_Dec(), "typecode" ): typecode = ns1.getOutputAsBase64ByNameInput_Dec() def __init__(self, name=None, ns=None): ns1.getOutputAsBase64ByNameInput_Dec.__init__(self, name=None, ns=None) class getOutputAsBase64ByNameRequestWrapper(getOutputAsBase64ByNameRequest): """wrapper for document:literal message""" typecode = getOutputAsBase64ByNameRequest( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): getOutputAsBase64ByNameRequest.__init__( self, name=None, ns=None ) class getOutputAsBase64ByNameResponse(ns1.getOutputAsBase64ByNameOutput_Dec): if not hasattr( ns1.getOutputAsBase64ByNameOutput_Dec(), "typecode" ): typecode = ns1.getOutputAsBase64ByNameOutput_Dec() def __init__(self, name=None, ns=None): ns1.getOutputAsBase64ByNameOutput_Dec.__init__(self, name=None, ns=None) class getOutputAsBase64ByNameResponseWrapper(getOutputAsBase64ByNameResponse): """wrapper for document:literal message""" typecode = getOutputAsBase64ByNameResponse( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): getOutputAsBase64ByNameResponse.__init__( self, name=None, ns=None ) class getOutputsRequest(ns1.getOutputsInput_Dec): if not hasattr( ns1.getOutputsInput_Dec(), "typecode" ): typecode = ns1.getOutputsInput_Dec() def __init__(self, name=None, ns=None): ns1.getOutputsInput_Dec.__init__(self, name=None, ns=None) class getOutputsRequestWrapper(getOutputsRequest): """wrapper for document:literal message""" typecode = getOutputsRequest( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): getOutputsRequest.__init__( self, name=None, ns=None ) class getOutputsResponse(ns1.getOutputsOutput_Dec): if not hasattr( ns1.getOutputsOutput_Dec(), "typecode" ): typecode = ns1.getOutputsOutput_Dec() def __init__(self, name=None, ns=None): ns1.getOutputsOutput_Dec.__init__(self, name=None, ns=None) class getOutputsResponseWrapper(getOutputsResponse): """wrapper for document:literal message""" typecode = getOutputsResponse( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): getOutputsResponse.__init__( self, name=None, ns=None ) class launchJobBlockingRequest(ns1.launchJobBlockingInput_Dec): if not hasattr( ns1.launchJobBlockingInput_Dec(), "typecode" ): typecode = ns1.launchJobBlockingInput_Dec() def __init__(self, name=None, ns=None): ns1.launchJobBlockingInput_Dec.__init__(self, name=None, ns=None) class launchJobBlockingRequestWrapper(launchJobBlockingRequest): """wrapper for document:literal message""" typecode = launchJobBlockingRequest( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): launchJobBlockingRequest.__init__( self, name=None, ns=None ) class launchJobBlockingResponse(ns1.launchJobBlockingOutput_Dec): if not hasattr( ns1.launchJobBlockingOutput_Dec(), "typecode" ): typecode = ns1.launchJobBlockingOutput_Dec() def __init__(self, name=None, ns=None): ns1.launchJobBlockingOutput_Dec.__init__(self, name=None, ns=None) class launchJobBlockingResponseWrapper(launchJobBlockingResponse): """wrapper for document:literal message""" typecode = launchJobBlockingResponse( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): launchJobBlockingResponse.__init__( self, name=None, ns=None ) class launchJobRequest(ns1.launchJobInput_Dec): if not hasattr( ns1.launchJobInput_Dec(), "typecode" ): typecode = ns1.launchJobInput_Dec() def __init__(self, name=None, ns=None): ns1.launchJobInput_Dec.__init__(self, name=None, ns=None) class launchJobRequestWrapper(launchJobRequest): """wrapper for document:literal message""" typecode = launchJobRequest( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): launchJobRequest.__init__( self, name=None, ns=None ) class launchJobResponse(ns1.launchJobOutput_Dec): if not hasattr( ns1.launchJobOutput_Dec(), "typecode" ): typecode = ns1.launchJobOutput_Dec() def __init__(self, name=None, ns=None): ns1.launchJobOutput_Dec.__init__(self, name=None, ns=None) class launchJobResponseWrapper(launchJobResponse): """wrapper for document:literal message""" typecode = launchJobResponse( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): launchJobResponse.__init__( self, name=None, ns=None ) class queryStatusRequest(ns1.queryStatusInput_Dec): if not hasattr( ns1.queryStatusInput_Dec(), "typecode" ): typecode = ns1.queryStatusInput_Dec() def __init__(self, name=None, ns=None): ns1.queryStatusInput_Dec.__init__(self, name=None, ns=None) class queryStatusRequestWrapper(queryStatusRequest): """wrapper for document:literal message""" typecode = queryStatusRequest( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): queryStatusRequest.__init__( self, name=None, ns=None ) class queryStatusResponse(ns1.queryStatusOutput_Dec): if not hasattr( ns1.queryStatusOutput_Dec(), "typecode" ): typecode = ns1.queryStatusOutput_Dec() def __init__(self, name=None, ns=None): ns1.queryStatusOutput_Dec.__init__(self, name=None, ns=None) class queryStatusResponseWrapper(queryStatusResponse): """wrapper for document:literal message""" typecode = queryStatusResponse( name=None, ns=None ).typecode def __init__( self, name=None, ns=None, **kw ): queryStatusResponse.__init__( self, name=None, ns=None ) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/services/AppService_types.py0000644000175000017500000013627211231662433026636 0ustar debiandebian################################################## # file: AppService_types.py # # schema types generated by "ZSI.generate.wsdl2python.WriteServiceModule" # /home/clem/projects/opal/sf/opal/opal-py/temp/zsi/build/scripts-2.6/wsdl2py opal.wsdl # ################################################## import ZSI import ZSI.TCcompound from ZSI.schema import LocalElementDeclaration, ElementDeclaration, TypeDefinition, GTD, GED ############################## # targetNamespace # http://nbcr.sdsc.edu/opal/types ############################## class ns0: targetNamespace = "http://nbcr.sdsc.edu/opal/types" class ParamType_Def(ZSI.TC.String, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "ParamType") def __init__(self, pname, **kw): ZSI.TC.String.__init__(self, pname, pyclass=None, **kw) class Holder(str): typecode = self self.pyclass = Holder class IOType_Def(ZSI.TC.String, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "IOType") def __init__(self, pname, **kw): ZSI.TC.String.__init__(self, pname, pyclass=None, **kw) class Holder(str): typecode = self self.pyclass = Holder class FlagsType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "FlagsType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.FlagsType_Def.schema TClist = [ZSI.TC.String(pname="id", aname="_id", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="tag", aname="_tag", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.Boolean(pname="default", aname="_default", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="textDesc", aname="_textDesc", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._id = None self._tag = None self._default = None self._textDesc = None return Holder.__name__ = "FlagsType_Holder" self.pyclass = Holder class ParamsType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "ParamsType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.ParamsType_Def.schema TClist = [ZSI.TC.String(pname="id", aname="_id", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="tag", aname="_tag", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="default", aname="_default", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","ParamType",lazy=False)(pname="paramType", aname="_paramType", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","IOType",lazy=False)(pname="ioType", aname="_ioType", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.Boolean(pname="required", aname="_required", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="value", aname="_value", minOccurs=0, maxOccurs="unbounded", nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="semanticType", aname="_semanticType", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="textDesc", aname="_textDesc", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._id = None self._tag = None self._default = None self._paramType = None self._ioType = None self._required = None self._value = [] self._semanticType = None self._textDesc = None return Holder.__name__ = "ParamsType_Holder" self.pyclass = Holder class GroupsType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "GroupsType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.GroupsType_Def.schema TClist = [ZSI.TC.String(pname="name", aname="_name", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="elements", aname="_elements", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.Boolean(pname="required", aname="_required", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.Boolean(pname="exclusive", aname="_exclusive", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="semanticType", aname="_semanticType", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="textDesc", aname="_textDesc", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._name = None self._elements = None self._required = None self._exclusive = None self._semanticType = None self._textDesc = None return Holder.__name__ = "GroupsType_Holder" self.pyclass = Holder class ImplicitParamsType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "ImplicitParamsType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.ImplicitParamsType_Def.schema TClist = [ZSI.TC.String(pname="id", aname="_id", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="name", aname="_name", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="extension", aname="_extension", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","IOType",lazy=False)(pname="ioType", aname="_ioType", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.Boolean(pname="required", aname="_required", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="semanticType", aname="_semanticType", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="textDesc", aname="_textDesc", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TCnumbers.Iint(pname="min", aname="_min", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TCnumbers.Iint(pname="max", aname="_max", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._id = None self._name = None self._extension = None self._ioType = None self._required = None self._semanticType = None self._textDesc = None self._min = None self._max = None return Holder.__name__ = "ImplicitParamsType_Holder" self.pyclass = Holder class FlagsArrayType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "FlagsArrayType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.FlagsArrayType_Def.schema TClist = [GTD("http://nbcr.sdsc.edu/opal/types","FlagsType",lazy=False)(pname="flag", aname="_flag", minOccurs=0, maxOccurs="unbounded", nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._flag = [] return Holder.__name__ = "FlagsArrayType_Holder" self.pyclass = Holder class ParamsArrayType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "ParamsArrayType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.ParamsArrayType_Def.schema TClist = [ZSI.TC.String(pname="separator", aname="_separator", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","ParamsType",lazy=False)(pname="param", aname="_param", minOccurs=0, maxOccurs="unbounded", nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._separator = None self._param = [] return Holder.__name__ = "ParamsArrayType_Holder" self.pyclass = Holder class GroupsArrayType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "GroupsArrayType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.GroupsArrayType_Def.schema TClist = [GTD("http://nbcr.sdsc.edu/opal/types","GroupsType",lazy=False)(pname="group", aname="_group", minOccurs=0, maxOccurs="unbounded", nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._group = [] return Holder.__name__ = "GroupsArrayType_Holder" self.pyclass = Holder class ImplicitParamsArrayType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "ImplicitParamsArrayType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.ImplicitParamsArrayType_Def.schema TClist = [GTD("http://nbcr.sdsc.edu/opal/types","ImplicitParamsType",lazy=False)(pname="param", aname="_param", minOccurs=0, maxOccurs="unbounded", nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._param = [] return Holder.__name__ = "ImplicitParamsArrayType_Holder" self.pyclass = Holder class ArgumentsType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "ArgumentsType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.ArgumentsType_Def.schema TClist = [GTD("http://nbcr.sdsc.edu/opal/types","FlagsArrayType",lazy=False)(pname="flags", aname="_flags", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","ParamsArrayType",lazy=False)(pname="taggedParams", aname="_taggedParams", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","ParamsArrayType",lazy=False)(pname="untaggedParams", aname="_untaggedParams", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","ImplicitParamsArrayType",lazy=False)(pname="implicitParams", aname="_implicitParams", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","GroupsArrayType",lazy=False)(pname="groups", aname="_groups", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._flags = None self._taggedParams = None self._untaggedParams = None self._implicitParams = None self._groups = None return Holder.__name__ = "ArgumentsType_Holder" self.pyclass = Holder class AppMetadataInputType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "AppMetadataInputType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.AppMetadataInputType_Def.schema TClist = [] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass return Holder.__name__ = "AppMetadataInputType_Holder" self.pyclass = Holder class AppMetadataType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "AppMetadataType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.AppMetadataType_Def.schema TClist = [ZSI.TC.String(pname="usage", aname="_usage", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="info", aname="_info", minOccurs=0, maxOccurs="unbounded", nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="version", aname="_version", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","ArgumentsType",lazy=False)(pname="types", aname="_types", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat else: # attribute handling code self.attribute_typecode_dict["appName"] = ZSI.TC.String() ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._usage = None self._info = [] self._version = None self._types = None return Holder.__name__ = "AppMetadataType_Holder" self.pyclass = Holder class AppConfigInputType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "AppConfigInputType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.AppConfigInputType_Def.schema TClist = [] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass return Holder.__name__ = "AppConfigInputType_Holder" self.pyclass = Holder class AppConfigType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "AppConfigType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.AppConfigType_Def.schema TClist = [GTD("http://nbcr.sdsc.edu/opal/types","AppMetadataType",lazy=False)(pname="metadata", aname="_metadata", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="binaryLocation", aname="_binaryLocation", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="defaultArgs", aname="_defaultArgs", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.Boolean(pname="validateArgs", aname="_validateArgs", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="jobManagerFQCN", aname="_jobManagerFQCN", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.URI(pname="globusGatekeeper", aname="_globusGatekeeper", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.URI(pname="gridftpBase", aname="_gridftpBase", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.Boolean(pname="parallel", aname="_parallel", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._metadata = None self._binaryLocation = None self._defaultArgs = None self._validateArgs = None self._jobManagerFQCN = None self._globusGatekeeper = None self._gridftpBase = None self._parallel = None return Holder.__name__ = "AppConfigType_Holder" self.pyclass = Holder class InputFileType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "InputFileType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.InputFileType_Def.schema TClist = [ZSI.TC.String(pname="name", aname="_name", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.Base64String(pname="contents", aname="_contents", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.URI(pname="location", aname="_location", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TCapache.AttachmentRef(pname="attachment", aname="_attachment", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._name = None self._contents = None self._location = None self._attachment = None return Holder.__name__ = "InputFileType_Holder" self.pyclass = Holder class JobInputType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "JobInputType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.JobInputType_Def.schema TClist = [ZSI.TC.String(pname="argList", aname="_argList", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TCnumbers.Iint(pname="numProcs", aname="_numProcs", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TCnumbers.InonNegativeInteger(pname="wallClockTime", aname="_wallClockTime", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","InputFileType",lazy=False)(pname="inputFile", aname="_inputFile", minOccurs=0, maxOccurs="unbounded", nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._argList = None self._numProcs = None self._wallClockTime = None self._inputFile = [] return Holder.__name__ = "JobInputType_Holder" self.pyclass = Holder class StatusOutputType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "StatusOutputType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.StatusOutputType_Def.schema TClist = [ZSI.TCnumbers.Iint(pname="code", aname="_code", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="message", aname="_message", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.URI(pname="baseURL", aname="_baseURL", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._code = None self._message = None self._baseURL = None return Holder.__name__ = "StatusOutputType_Holder" self.pyclass = Holder class JobSubOutputType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "JobSubOutputType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.JobSubOutputType_Def.schema TClist = [ZSI.TC.String(pname="jobID", aname="_jobID", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","StatusOutputType",lazy=False)(pname="status", aname="_status", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._jobID = None self._status = None return Holder.__name__ = "JobSubOutputType_Holder" self.pyclass = Holder class OutputsByNameInputType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "OutputsByNameInputType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.OutputsByNameInputType_Def.schema TClist = [ZSI.TC.String(pname="jobID", aname="_jobID", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.String(pname="fileName", aname="_fileName", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._jobID = None self._fileName = None return Holder.__name__ = "OutputsByNameInputType_Holder" self.pyclass = Holder class OutputFileType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "OutputFileType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.OutputFileType_Def.schema TClist = [ZSI.TC.String(pname="name", aname="_name", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.URI(pname="url", aname="_url", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._name = None self._url = None return Holder.__name__ = "OutputFileType_Holder" self.pyclass = Holder class JobOutputType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "JobOutputType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.JobOutputType_Def.schema TClist = [ZSI.TC.URI(pname="stdOut", aname="_stdOut", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TC.URI(pname="stdErr", aname="_stdErr", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","OutputFileType",lazy=False)(pname="outputFile", aname="_outputFile", minOccurs=0, maxOccurs="unbounded", nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._stdOut = None self._stdErr = None self._outputFile = [] return Holder.__name__ = "JobOutputType_Holder" self.pyclass = Holder class JobStatisticsType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "JobStatisticsType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.JobStatisticsType_Def.schema TClist = [ZSI.TCtimes.gDateTime(pname="startTime", aname="_startTime", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TCtimes.gDateTime(pname="activationTime", aname="_activationTime", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), ZSI.TCtimes.gDateTime(pname="completionTime", aname="_completionTime", minOccurs=0, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._startTime = None self._activationTime = None self._completionTime = None return Holder.__name__ = "JobStatisticsType_Holder" self.pyclass = Holder class BlockingOutputType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "BlockingOutputType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.BlockingOutputType_Def.schema TClist = [GTD("http://nbcr.sdsc.edu/opal/types","StatusOutputType",lazy=False)(pname="status", aname="_status", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded")), GTD("http://nbcr.sdsc.edu/opal/types","JobOutputType",lazy=False)(pname="jobOut", aname="_jobOut", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._status = None self._jobOut = None return Holder.__name__ = "BlockingOutputType_Holder" self.pyclass = Holder class FaultType_Def(ZSI.TCcompound.ComplexType, TypeDefinition): schema = "http://nbcr.sdsc.edu/opal/types" type = (schema, "FaultType") def __init__(self, pname, ofwhat=(), attributes=None, extend=False, restrict=False, **kw): ns = ns0.FaultType_Def.schema TClist = [ZSI.TC.String(pname="message", aname="_message", minOccurs=1, maxOccurs=1, nillable=False, typed=False, encoded=kw.get("encoded"))] self.attribute_typecode_dict = attributes or {} if extend: TClist += ofwhat if restrict: TClist = ofwhat ZSI.TCcompound.ComplexType.__init__(self, None, TClist, pname=pname, inorder=0, **kw) class Holder: typecode = self def __init__(self): # pyclass self._message = None return Holder.__name__ = "FaultType_Holder" self.pyclass = Holder class getAppMetadataInput_Dec(ElementDeclaration): literal = "getAppMetadataInput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'getAppMetadataInput') kw["aname"] = "_getAppMetadataInput" if ns0.AppMetadataInputType_Def not in ns0.getAppMetadataInput_Dec.__bases__: bases = list(ns0.getAppMetadataInput_Dec.__bases__) bases.insert(0, ns0.AppMetadataInputType_Def) ns0.getAppMetadataInput_Dec.__bases__ = tuple(bases) ns0.AppMetadataInputType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "getAppMetadataInput_Dec_Holder" class getAppMetadataOutput_Dec(ElementDeclaration): literal = "getAppMetadataOutput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'getAppMetadataOutput') kw["aname"] = "_getAppMetadataOutput" if ns0.AppMetadataType_Def not in ns0.getAppMetadataOutput_Dec.__bases__: bases = list(ns0.getAppMetadataOutput_Dec.__bases__) bases.insert(0, ns0.AppMetadataType_Def) ns0.getAppMetadataOutput_Dec.__bases__ = tuple(bases) ns0.AppMetadataType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "getAppMetadataOutput_Dec_Holder" class getAppConfigInput_Dec(ElementDeclaration): literal = "getAppConfigInput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'getAppConfigInput') kw["aname"] = "_getAppConfigInput" if ns0.AppConfigInputType_Def not in ns0.getAppConfigInput_Dec.__bases__: bases = list(ns0.getAppConfigInput_Dec.__bases__) bases.insert(0, ns0.AppConfigInputType_Def) ns0.getAppConfigInput_Dec.__bases__ = tuple(bases) ns0.AppConfigInputType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "getAppConfigInput_Dec_Holder" class getAppConfigOutput_Dec(ElementDeclaration): literal = "getAppConfigOutput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'getAppConfigOutput') kw["aname"] = "_getAppConfigOutput" if ns0.AppConfigType_Def not in ns0.getAppConfigOutput_Dec.__bases__: bases = list(ns0.getAppConfigOutput_Dec.__bases__) bases.insert(0, ns0.AppConfigType_Def) ns0.getAppConfigOutput_Dec.__bases__ = tuple(bases) ns0.AppConfigType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "getAppConfigOutput_Dec_Holder" class launchJobInput_Dec(ElementDeclaration): literal = "launchJobInput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'launchJobInput') kw["aname"] = "_launchJobInput" if ns0.JobInputType_Def not in ns0.launchJobInput_Dec.__bases__: bases = list(ns0.launchJobInput_Dec.__bases__) bases.insert(0, ns0.JobInputType_Def) ns0.launchJobInput_Dec.__bases__ = tuple(bases) ns0.JobInputType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "launchJobInput_Dec_Holder" class launchJobOutput_Dec(ElementDeclaration): literal = "launchJobOutput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'launchJobOutput') kw["aname"] = "_launchJobOutput" if ns0.JobSubOutputType_Def not in ns0.launchJobOutput_Dec.__bases__: bases = list(ns0.launchJobOutput_Dec.__bases__) bases.insert(0, ns0.JobSubOutputType_Def) ns0.launchJobOutput_Dec.__bases__ = tuple(bases) ns0.JobSubOutputType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "launchJobOutput_Dec_Holder" class launchJobBlockingInput_Dec(ElementDeclaration): literal = "launchJobBlockingInput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'launchJobBlockingInput') kw["aname"] = "_launchJobBlockingInput" if ns0.JobInputType_Def not in ns0.launchJobBlockingInput_Dec.__bases__: bases = list(ns0.launchJobBlockingInput_Dec.__bases__) bases.insert(0, ns0.JobInputType_Def) ns0.launchJobBlockingInput_Dec.__bases__ = tuple(bases) ns0.JobInputType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "launchJobBlockingInput_Dec_Holder" class launchJobBlockingOutput_Dec(ElementDeclaration): literal = "launchJobBlockingOutput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'launchJobBlockingOutput') kw["aname"] = "_launchJobBlockingOutput" if ns0.BlockingOutputType_Def not in ns0.launchJobBlockingOutput_Dec.__bases__: bases = list(ns0.launchJobBlockingOutput_Dec.__bases__) bases.insert(0, ns0.BlockingOutputType_Def) ns0.launchJobBlockingOutput_Dec.__bases__ = tuple(bases) ns0.BlockingOutputType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "launchJobBlockingOutput_Dec_Holder" class queryStatusInput_Dec(ZSI.TC.String, ElementDeclaration): literal = "queryStatusInput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'queryStatusInput') kw["aname"] = "_queryStatusInput" class IHolder(str): typecode=self kw["pyclass"] = IHolder IHolder.__name__ = "_queryStatusInput_immutable_holder" ZSI.TC.String.__init__(self, **kw) class queryStatusOutput_Dec(ElementDeclaration): literal = "queryStatusOutput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'queryStatusOutput') kw["aname"] = "_queryStatusOutput" if ns0.StatusOutputType_Def not in ns0.queryStatusOutput_Dec.__bases__: bases = list(ns0.queryStatusOutput_Dec.__bases__) bases.insert(0, ns0.StatusOutputType_Def) ns0.queryStatusOutput_Dec.__bases__ = tuple(bases) ns0.StatusOutputType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "queryStatusOutput_Dec_Holder" class getJobStatisticsInput_Dec(ZSI.TC.String, ElementDeclaration): literal = "getJobStatisticsInput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'getJobStatisticsInput') kw["aname"] = "_getJobStatisticsInput" class IHolder(str): typecode=self kw["pyclass"] = IHolder IHolder.__name__ = "_getJobStatisticsInput_immutable_holder" ZSI.TC.String.__init__(self, **kw) class getJobStatisticsOutput_Dec(ElementDeclaration): literal = "getJobStatisticsOutput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'getJobStatisticsOutput') kw["aname"] = "_getJobStatisticsOutput" if ns0.JobStatisticsType_Def not in ns0.getJobStatisticsOutput_Dec.__bases__: bases = list(ns0.getJobStatisticsOutput_Dec.__bases__) bases.insert(0, ns0.JobStatisticsType_Def) ns0.getJobStatisticsOutput_Dec.__bases__ = tuple(bases) ns0.JobStatisticsType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "getJobStatisticsOutput_Dec_Holder" class getOutputsInput_Dec(ZSI.TC.String, ElementDeclaration): literal = "getOutputsInput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'getOutputsInput') kw["aname"] = "_getOutputsInput" class IHolder(str): typecode=self kw["pyclass"] = IHolder IHolder.__name__ = "_getOutputsInput_immutable_holder" ZSI.TC.String.__init__(self, **kw) class getOutputsOutput_Dec(ElementDeclaration): literal = "getOutputsOutput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'getOutputsOutput') kw["aname"] = "_getOutputsOutput" if ns0.JobOutputType_Def not in ns0.getOutputsOutput_Dec.__bases__: bases = list(ns0.getOutputsOutput_Dec.__bases__) bases.insert(0, ns0.JobOutputType_Def) ns0.getOutputsOutput_Dec.__bases__ = tuple(bases) ns0.JobOutputType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "getOutputsOutput_Dec_Holder" class getOutputAsBase64ByNameInput_Dec(ElementDeclaration): literal = "getOutputAsBase64ByNameInput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'getOutputAsBase64ByNameInput') kw["aname"] = "_getOutputAsBase64ByNameInput" if ns0.OutputsByNameInputType_Def not in ns0.getOutputAsBase64ByNameInput_Dec.__bases__: bases = list(ns0.getOutputAsBase64ByNameInput_Dec.__bases__) bases.insert(0, ns0.OutputsByNameInputType_Def) ns0.getOutputAsBase64ByNameInput_Dec.__bases__ = tuple(bases) ns0.OutputsByNameInputType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "getOutputAsBase64ByNameInput_Dec_Holder" class getOutputAsBase64ByNameOutput_Dec(ZSI.TC.Base64String, ElementDeclaration): literal = "getOutputAsBase64ByNameOutput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'getOutputAsBase64ByNameOutput') kw["aname"] = "_getOutputAsBase64ByNameOutput" class IHolder(str): typecode=self kw["pyclass"] = IHolder IHolder.__name__ = "_getOutputAsBase64ByNameOutput_immutable_holder" ZSI.TC.Base64String.__init__(self, **kw) class destroyInput_Dec(ZSI.TC.String, ElementDeclaration): literal = "destroyInput" schema = "http://nbcr.sdsc.edu/opal/types" def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'destroyInput') kw["aname"] = "_destroyInput" class IHolder(str): typecode=self kw["pyclass"] = IHolder IHolder.__name__ = "_destroyInput_immutable_holder" ZSI.TC.String.__init__(self, **kw) class destroyOutput_Dec(ElementDeclaration): literal = "destroyOutput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'destroyOutput') kw["aname"] = "_destroyOutput" if ns0.StatusOutputType_Def not in ns0.destroyOutput_Dec.__bases__: bases = list(ns0.destroyOutput_Dec.__bases__) bases.insert(0, ns0.StatusOutputType_Def) ns0.destroyOutput_Dec.__bases__ = tuple(bases) ns0.StatusOutputType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "destroyOutput_Dec_Holder" class opalFaultOutput_Dec(ElementDeclaration): literal = "opalFaultOutput" schema = "http://nbcr.sdsc.edu/opal/types" substitutionGroup = None def __init__(self, **kw): kw["pname"] = (u'http://nbcr.sdsc.edu/opal/types', u'opalFaultOutput') kw["aname"] = "_opalFaultOutput" if ns0.FaultType_Def not in ns0.opalFaultOutput_Dec.__bases__: bases = list(ns0.opalFaultOutput_Dec.__bases__) bases.insert(0, ns0.FaultType_Def) ns0.opalFaultOutput_Dec.__bases__ = tuple(bases) ns0.FaultType_Def.__init__(self, **kw) if self.pyclass is not None: self.pyclass.__name__ = "opalFaultOutput_Dec_Holder" # end class ns0 (tns: http://nbcr.sdsc.edu/opal/types) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/services/__init__.py0000644000175000017500000000000010714651244025066 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/HTMLParser.py0000644000175000017500000005221510651433500023435 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ######################################################################### # # Date: Oct. 2002 Author: Daniel Stoffler # # Copyright: Daniel Stoffler and TSRI # ######################################################################### import string, re, urllib, types class CGIForm: """this object stores the forms data parsed from a HTML file by the ParseForForms class.""" def __init__(self, url=None, name=None, method=None, action=None, enctype=None, input=None, radiobutton=None, checkbutton=None, select=None, textarea=None, arguments=None, hiddenInput=None, fieldOrder=None): # note: something i don't understand: in the constructor, i cannot say # radiobutton={} and then self.radiobutton = radiobutton # because every new instance of this class would point to the # dictionary of the first instance (tested with python1.5 to 2.2). # Instead, i have to initialise radiobutton=None and do the test below self.url = url # url: e.g. 'http://www.google.com' self.name = name # name of this form object if method is None: method = 'get' assert string.lower(method) in ['post', 'get'] self.method = method # default cgi method, if not specified self.action = action # the cgi action. In case of google: '/search' self.enctype = enctype # enctype of CGI Form if input is None: input = {} self.input = input # dictionary with all the 'inputs' of this form # note that input of type 'hidden' is not added # to this dict, but to self.hiddenInput, input of # type 'radio' and 'checkbox' are added to # different dicts too as well as input of type # 'select' and 'textarea' if radiobutton is None: radiobutton = {} self.radiobutton = radiobutton # dict holding the radiobuttons if checkbutton is None: checkbutton = {} self.checkbutton = checkbutton # dict holding the checkbox buttons if select is None: select = {} self.select = select # dictionary with all the 'selects' of this form if textarea is None: textarea = {} self.textarea = textarea # dictionary with all the 'textareas' if arguments is None: arguments = {} self.arguments = arguments # dict with the arguments that are used to # generate the string to be sent to the # server if hiddenInput is None: hiddenInput = {} self.hiddenInput = hiddenInput # dictionary with all the inputs of # type 'hidden' if fieldOrder is None: fieldOrder = [] self.fieldOrder = fieldOrder # stores tuples of (inputname, dictname) # in the order they appear in the
def run(self): args = self.arguments.copy() args.update(self.hiddenInput) args = urllib.urlencode(args) if self.method == 'post': f = urllib.urlopen(self.url+self.action, args) else: # method is 'get' if self.action is not None: link = self.url+self.action+'?'+args else: link = self.url f=urllib.urlopen(link) return f.read() def setArguments(self, **kw): for k,v in kw.items(): if type(v) in (types.FloatType, types.IntType, types.LongType, types.StringType): self.arguments[k] = v else: pat = re.compile("[\[,\]\012]") arrayStr = re.sub(pat, '', str(Numeric.array(v).ravel()) ) c = string.split(arrayStr) c = map( float, c ) c = re.sub(pat, '', str(c) ) self.arguments[k] = c def setURL(self, url): if url is None: return self.url = url if self.action is not None: if self.url[-1] != '/' and self.action[0] != '/': self.action = '/' + self.action def dump(self): print '............'+repr(self)+'............' for k,v in self.__dict__.items(): print '%s\t:'%(k,), v print '...............................................................' def getCreationSourceCode(self): url = self.url if url is None: url = '' name = self.name if name is None: name = '' method = self.method if method is None: method = 'get' enctype = self.enctype if enctype is None: enctype = '' action = self.action if action is None: action = '' input = self.input if input is None: input = {} radiobutton = self.radiobutton if radiobutton is None: radiobutton = {} checkbutton = self.checkbutton if checkbutton is None: checkbutton = {} select = self.select if select is None: select = {} textarea = self.textarea if textarea is None: textarea = {} arguments = self.arguments if arguments is None: arguments = {} hiddenInput = self.hiddenInput if hiddenInput is None: hiddenInput = {} fieldOrder = self.fieldOrder if fieldOrder is None: fieldOrder = [] txt = 'CGIForm(url="'+url+'", name="'+name+'",\n'+\ 'method="'+method+'", enctype="'+enctype+'", action="'+\ action+'",\n'+\ 'input='+`input`+',\n'+\ 'radiobutton='+`radiobutton`+',\n'+\ 'checkbutton='+`checkbutton`+',\n'+\ 'select='+`select`+',\n'+\ 'textarea='+`textarea`+',\n'+\ 'arguments='+`arguments`+',\n'+\ 'hiddenInput='+`hiddenInput`+',\n'+\ 'fieldOrder='+`fieldOrder`+')\n' return txt class ParseForCGIForms: """ parsing HTML files for forms. The forms description of forms found in the html page is stored in the dictionary self.data """ def __init__(self): self.data = [] # stores all found forms as objects def getAllTags(self, html): # currently not used """ parses html page for tags, merges multi-line tags in a single line, and puts each tag in a new line, and discards everything between tags""" starttagPat = re.compile('<') endtagPat = re.compile('>') newhtml = [] tagData = "" for line in html: i = 0 n = len(line) while i < n: startmatch = starttagPat.search(line, i) endmatch = endtagPat.search(line, i) if startmatch and endmatch: if startmatch.start() > endmatch.start(): tagData = tagData + " " + line[:endmatch.end()] newhtml.append(tagData) tagData = "" i = endmatch.end() else: tagData = line[startmatch.start():endmatch.end()] newhtml.append(tagData) tagData = "" i = endmatch.end() elif startmatch: tagData = line[startmatch.start():-1]+ " " i = n break elif endmatch: tagData = tagData + " " + line[:endmatch.end()] newhtml.append(tagData) tagData = "" i = endmatch.end() else: i = n if line is not None and line != '' and line != '\n': tagData = tagData + line[:-1] break return newhtml def orderHTML(self, html): """ parses html page for tags, merges multi-line tags in a single line, and puts each tag in a new line, as well as raw data""" _openTag = 0 starttagPat = re.compile('<') endtagPat = re.compile('>') newhtml = [] tagData = "" for line in html: if line[-1] == '\n': line = line[:-1] # get rif of '\n' i = 0 n = len(line) while i < n: startmatch = starttagPat.search(line, i) endmatch = endtagPat.search(line, i) if startmatch and endmatch: if startmatch.start() > endmatch.end(): _openTag = 0 tagData = tagData + " " + line[i:endmatch.end()] if tagData != '': newhtml.append(tagData) tagData = "" i = endmatch.end() else: tagData = line[startmatch.start():endmatch.end()] rawData = string.strip(line[i:startmatch.start()]) rawmatch = endtagPat.search(rawData) if not rawmatch and rawData != '': newhtml.append(rawData) i = endmatch.end() if tagData != '': newhtml.append(tagData) elif startmatch: _openTag = 1 rawData = string.strip(line[i:startmatch.start()]) if rawData != '': newhtml.append(rawData) tagData = line[startmatch.start():] break elif endmatch: _openTag = 0 tagData = tagData + " " + line[i:endmatch.end()] if tagData != '': newhtml.append(tagData) tagData = "" i = endmatch.end() else: if _openTag: tagData = tagData + line else: rawData = string.strip(line[i:]) if rawData != '': newhtml.append(rawData) break return newhtml def get_starttag(self, html, tag): data = [] starttagPat = re.compile('<'+tag, re.IGNORECASE) for line in html: st = starttagPat.search(line) if st: data.append(line) return data def get_startendtag(self, html, tag): tagdata = [] data = [] _tagfound = 0 text = "" starttagPat = re.compile('<'+tag, re.IGNORECASE) endtagPat = re.compile('', re.IGNORECASE) for line in html: st = starttagPat.search(line) et = endtagPat.search(line) if st and not _tagfound: _tagfound = 1 tagdata.append(line) elif et and _tagfound: tagdata.append(line) data.append(tagdata) _tagfound = 0 tagdata = [] elif _tagfound: tagdata.append(line) else: continue return data def get_Attr(self, html, pattern, lc=0): attrPat =re.compile( ('([%s]*=[%s]*' % (string.whitespace, string.whitespace)) + r'(\'[^\']*\'|"[^"]*"|[-a-zA-Z0-9./:+*%?!\(\)_#=~]*))?') found = pattern.search(html) if found: attrP = attrPat.search(html[found.end():]) if attrP: attr = attrP.group()[1:] if attr and attr[0] == '"' and attr[-1] == '"': if len(attr)>2: attr = attr[1:-1] if lc: return string.lower(attr) else: return attr else: return None def parse(self, url, html): """ call this method to parse html for forms """ attrPat = re.compile('".*?"') namePat = re.compile('name', re.IGNORECASE) methodPat = re.compile('method', re.IGNORECASE) actionPat = re.compile('action', re.IGNORECASE) enctypePat = re.compile('enctype', re.IGNORECASE) typePat = re.compile('type', re.IGNORECASE) valuePat = re.compile('value', re.IGNORECASE) checkedPat = re.compile('checked', re.IGNORECASE) sizePat = re.compile('size', re.IGNORECASE) maxlengthPat = re.compile('maxlength', re.IGNORECASE) buttonstatusPat = re.compile('checked', re.IGNORECASE) opentagPat = re.compile('<') rowsPat = re.compile('rows', re.IGNORECASE) colsPat = re.compile('cols', re.IGNORECASE) # first, extract all tags in this html page, and merge multi-line # tags in a single line, and put every tag in a single line ohtml = self.orderHTML(html) # now lets find all tags that belong to a cgi form formsdata = self.get_startendtag(ohtml, tag='form') formnameindex = 0 # these indices (see below) are used to generate # names if no name was specified in the tag for form in formsdata: formObject = CGIForm() # this class stores the information we are # going to parse formObject.url = url inputnameindex = 0 # see formnameindex selectnameindex = 0 textnameindex = 0 # first, we process what is in side formtag = self.get_starttag(form, tag='form')[0] method = self.get_Attr(formtag, methodPat, lc=1) if method: formObject.method = method action = self.get_Attr(formtag, actionPat) if action: formObject.action = action enctype = self.get_Attr(formtag, enctypePat, lc=1) if enctype: formObject.enctype = enctype formname = self.get_Attr(formtag, namePat) if formname is None: formname = 'form_' + `formnameindex` formnameindex = formnameindex + 1 formObject.name = formname # now, let's find all the tags: inputsdata = self.get_starttag(form, tag='input') if inputsdata != []: radiobuttonDict = {} checkbuttonDict = {} for ipt in inputsdata: inputname = self.get_Attr(ipt, namePat) if inputname is None: inputname = 'input_'+`inputnameindex` inputnameindex = inputnameindex + 1 value = self.get_Attr(ipt, valuePat) type = self.get_Attr(ipt, typePat, lc=1) if type == 'hidden': dict = {} dict['value'] = value formObject.hiddenInput[inputname] = dict formObject.fieldOrder.append((inputname, 'hiddenInput')) continue if type == 'radio': check = buttonstatusPat.search(ipt) if check: entry = (value,'on') else: entry = (value,'off') if not radiobuttonDict.has_key(inputname): radiobuttonDict[inputname] = [] formObject.fieldOrder.append((inputname, 'radiobutton')) radiobuttonDict[inputname].append(entry) continue if type == 'checkbox': check = buttonstatusPat.search(ipt) if check: entry = (value, 'on') else: entry = (value, 'off') if not checkbuttonDict.has_key(inputname): checkbuttonDict[inputname] = [] formObject.fieldOrder.append((inputname, 'checkbutton')) checkbuttonDict[inputname].append(entry) continue inputDict = {} inputDict['type'] = None inputDict['value'] = None inputDict['checked'] = None inputDict['size'] = None inputDict['maxlength'] = None if type: inputDict['type'] = type if value: inputDict['value'] = value checked = self.get_Attr(ipt, checkedPat) if checked: inputDict['checked'] = checked size = self.get_Attr(ipt, sizePat) if size: inputDict['size'] = size maxlength = self.get_Attr(ipt, maxlengthPat) if maxlength: inputDict['maxlength'] = maxlength formObject.input[inputname] = inputDict formObject.fieldOrder.append((inputname,'input')) if radiobuttonDict != {}: formObject.radiobutton = radiobuttonDict if checkbuttonDict != {}: formObject.checkbutton = checkbuttonDict # now, let's find if we got tags: selectdata = self.get_startendtag(form, tag='select') if selectdata != []: for select in selectdata: selectDict = {} options = [] selname = self.get_Attr(select[0], namePat) if selname is None: selname = 'selection_'+`selectnameindex` selectnameindex = selectnameindex + 1 for sel in select: opt = opentagPat.search(sel) if not opt: options.append(sel) size = self.get_Attr(sel, sizePat) if size: selectDict['size'] = size selectDict['options'] = options formObject.select[selname] = selectDict formObject.fieldOrder.append((selname,'select')) # and now let's see if we got any tags textareadata = self.get_startendtag(form, tag='textarea') if textareadata != []: for textarea in textareadata: textareaDict = {} areatext = [] textname = self.get_Attr(textarea[0], namePat) if textname is None: textname = 'textarea_' + `textnameindex` textnameindex = textnameindex + 1 for area in textarea: txt = opentagPat.search(area) if not txt: areatext.append(area) textareaDict['text'] = areatext rows = self.get_Attr(textarea[0], rowsPat) if rows: textareaDict['rows'] = rows cols = self.get_Attr(textarea[0], colsPat) if cols: textareaDict['cols'] = cols formObject.textarea[textname] = textareaDict formObject.fieldOrder.append((textname,'textarea')) # append this new form to self.data self.data.append(formObject) #formObject.dump() class ParseHTML: """ Parses HTML files by specifying a parser. Current parsers: - ParseForCGIForms """ def __init__(self, mode=None): self.mode = mode self.parsers = {} # dictionary storing the various parser objects # add new parsers here: self.parsers['forms'] = ParseForCGIForms() def parse(self, url, html): if html is None or html == [] or html == '': return if self.parsers.has_key(self.mode): self.currentParser = self.parsers[self.mode] else: return self.currentParser.parse(url, html) return self.currentParser.data def doit(self, url): """ call this with url to parse html.""" f = urllib.urlopen(url) data = f.read() f.close() parsedData = self.parse(url, [data]) return parsedData def test1(): f = open('../../web/example7.html','r') txt = f.readlines() P = ParseHTML(mode='forms') forms = P.parse(txt) f.close() return forms def test2(): #url = 'http://www.google.com' url = 'http://www.amazon.com' P = ParseHTML(mode='forms') forms = P.doit(url) return forms if __name__=='__main__': f=test2() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/regression/0000755000175000017500000000000012146210177023321 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/regression/testAll.py0000644000175000017500000000060507560601454025312 0ustar debiandebianimport sys from mglutil.regression import testplus import test_htmlparser harness = testplus.TestHarness( __name__, funs = [], dependents = [test_htmlparser.harness, ], ) if __name__ == '__main__': print harness sys.exit( len( harness)) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/regression/test_htmlparser.py0000644000175000017500000000602707562041146027124 0ustar debiandebian######################################################################### # # Date: Nov. 2002 Author: Daniel Stoffler # # Copyright: Daniel Stoffler and TSRI # ######################################################################### import sys from mglutil.regression import testplus from mglutil.web import HTMLParser from time import sleep def pause(sleepTime=0.4): ed.master.update() sleep(sleepTime) def test_ParseCGIForms(): f = open('testfile.html','r') txt = f.readlines() P = HTMLParser.ParseHTML(mode='forms') forms = P.parse(txt) f.close() # we have 4 forms in this testfile (INPUT) assert len(forms) == 4 # FORM 0: # form 0 has a text entry and a sumbit button (INPUT) assert len(forms[0].input.keys()) == 2 # form 0 has no name, the parser should set the name to 'form_0' assert forms[0].name == 'form_0' # the method of form 0 is 'post' assert forms[0].method == 'post' # the action of form 0 is http://hoohoo.ncsa.uiuc.edu/cgi-bin/post-query assert forms[0].action == 'http://hoohoo.ncsa.uiuc.edu/cgi-bin/post-query' # testing the inputs: assert forms[0].input['input_0']['type'] == 'submit' assert forms[0].input['input_0']['value'] == 'Submit Query' ########################################################################## # FORM 1 # form[1] has 2 text entry, 3 checkbuttons, 7 radiobuttons, 1 submit button assert len(forms[1].input.keys()) == 3 # 2 text entries, 1 submit button assert len(forms[1].radiobutton.items()) == 2 # 2 categories assert len(forms[1].radiobutton['paymethod']) == 5 assert len(forms[1].radiobutton['callfirst']) == 2 # 5 + 2 = 7 assert len(forms[1].checkbutton.items()) == 1 # 1 category assert len(forms[1].checkbutton['topping']) == 3 # 3 buttons ########################################################################## # FORM 2 # form[2] has 2 comboboxes (SELECT) and 2 buttons (INPUT) assert len(forms[2].select.keys()) == 2 assert len(forms[2].input.keys()) == 2 # testing comboboxes: assert len(forms[2].select['what-to-do']['options']) == 5 assert forms[2].select['what-to-do']['options'][0] == 'Drink Coffee' assert len(forms[2].select['who-to-do-it-with']['options']) == 6 assert forms[2].select['who-to-do-it-with']['options'][-1] == 'Chouck' ########################################################################## # FORM 3 # form[3] has 3 textareas (TEXTAREA) and 2 buttons (INPUT) print forms[3].textarea assert len(forms[3].textarea.items()) == 3 assert len(forms[3].input) == 2 # testing textareas: assert forms[3].textarea['positive']['cols'] == '60' assert forms[3].textarea['positive']['rows'] == '20' assert forms[3].textarea['username']['text'][0] == 'Your Name Here' harness = testplus.TestHarness( __name__, funs = testplus.testcollect( globals()), ) if __name__ == '__main__': print harness sys.exit( len( harness)) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/regression/testfile.html0000644000175000017500000000734307560601454026043 0ustar debiandebian TEST HTML FILE FOR REGRESSION TESTS

THIS IS BASED on Example 1, 7, 9 and 11 of

http://archive.ncsa.uiuc.edu/SDG/Software/Mosaic/Docs/fill-out-forms/overview.html

Fill-Out Form Example #1

This is a very simple fill-out form example.

A single text entry field goes here:

Note that it has no default value.

To submit the query, press this button: .

That's it.

This is another fill-out form example, with toggle buttons: Example #7

Godzilla's Pizza -- Internet Delivery Service, Part II

Type in your street address:

Type in your phone number:

Which toppings would you like?

  1. Pepperoni.
  2. Sausage.
  3. Anchovies.
How would you like to pay? Choose any one of the following:

  1. Cash.
  2. Check.
  3. Credit card:
    • Mastercard.
    • Visa.
    • American Express.
Would you like the driver to call before leaving the store?

Yes.
No.
To order your pizza, press this button: .

This is another fill-out form example, with option menus: Example #9

Your Daily Planner

What would you like to do today?

Who would you like to do it with?

To submit your choices, press this button: .

To reset the form, press this button: .

This is another fill-out form example, with multiline text entry areas: Example #11

Comments And Feedback Welcome

Please enter any positive comments below:

Please enter any negative comments below:

Please enter your name below:

To submit your comments, press this button: .

To clear the form, press this button: .

mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/regression/__init__.py0000644000175000017500000000000007560601454025426 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/Tests/0000755000175000017500000000000012146210177022243 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/Tests/test_htmlparser.py0000644000175000017500000000603407723713314026046 0ustar debiandebian######################################################################### # # Date: Nov. 2002 Author: Daniel Stoffler # # Copyright: Daniel Stoffler and TSRI # ######################################################################### import sys from mglutil.regression import testplus from mglutil.web import HTMLParser from time import sleep def pause(sleepTime=0.4): ed.master.update() sleep(sleepTime) def test_ParseCGIForms(): f = open('Data/testfile.html','r') txt = f.readlines() P = HTMLParser.ParseHTML(mode='forms') forms = P.parse(txt) f.close() # we have 4 forms in this testfile (INPUT) assert len(forms) == 4 # FORM 0: # form 0 has a text entry and a sumbit button (INPUT) assert len(forms[0].input.keys()) == 2 # form 0 has no name, the parser should set the name to 'form_0' assert forms[0].name == 'form_0' # the method of form 0 is 'post' assert forms[0].method == 'post' # the action of form 0 is http://hoohoo.ncsa.uiuc.edu/cgi-bin/post-query assert forms[0].action == 'http://hoohoo.ncsa.uiuc.edu/cgi-bin/post-query' # testing the inputs: assert forms[0].input['input_0']['type'] == 'submit' assert forms[0].input['input_0']['value'] == 'Submit Query' ########################################################################## # FORM 1 # form[1] has 2 text entry, 3 checkbuttons, 7 radiobuttons, 1 submit button assert len(forms[1].input.keys()) == 3 # 2 text entries, 1 submit button assert len(forms[1].radiobutton.items()) == 2 # 2 categories assert len(forms[1].radiobutton['paymethod']) == 5 assert len(forms[1].radiobutton['callfirst']) == 2 # 5 + 2 = 7 assert len(forms[1].checkbutton.items()) == 1 # 1 category assert len(forms[1].checkbutton['topping']) == 3 # 3 buttons ########################################################################## # FORM 2 # form[2] has 2 comboboxes (SELECT) and 2 buttons (INPUT) assert len(forms[2].select.keys()) == 2 assert len(forms[2].input.keys()) == 2 # testing comboboxes: assert len(forms[2].select['what-to-do']['options']) == 5 assert forms[2].select['what-to-do']['options'][0] == 'Drink Coffee' assert len(forms[2].select['who-to-do-it-with']['options']) == 6 assert forms[2].select['who-to-do-it-with']['options'][-1] == 'Chouck' ########################################################################## # FORM 3 # form[3] has 3 textareas (TEXTAREA) and 2 buttons (INPUT) print forms[3].textarea assert len(forms[3].textarea.items()) == 3 assert len(forms[3].input) == 2 # testing textareas: assert forms[3].textarea['positive']['cols'] == '60' assert forms[3].textarea['positive']['rows'] == '20' assert forms[3].textarea['username']['text'][0] == 'Your Name Here' harness = testplus.TestHarness( __name__, funs = testplus.testcollect( globals()), ) if __name__ == '__main__': print harness sys.exit( len( harness)) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/Tests/Data/0000755000175000017500000000000012146210177023114 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/Tests/Data/testfile.html0000644000175000017500000000734307723713314025636 0ustar debiandebian TEST HTML FILE FOR REGRESSION TESTS

THIS IS BASED on Example 1, 7, 9 and 11 of

http://archive.ncsa.uiuc.edu/SDG/Software/Mosaic/Docs/fill-out-forms/overview.html

Fill-Out Form Example #1

This is a very simple fill-out form example.

A single text entry field goes here:

Note that it has no default value.

To submit the query, press this button: .

That's it.

This is another fill-out form example, with toggle buttons: Example #7

Godzilla's Pizza -- Internet Delivery Service, Part II

Type in your street address:

Type in your phone number:

Which toppings would you like?

  1. Pepperoni.
  2. Sausage.
  3. Anchovies.
How would you like to pay? Choose any one of the following:

  1. Cash.
  2. Check.
  3. Credit card:
    • Mastercard.
    • Visa.
    • American Express.
Would you like the driver to call before leaving the store?

Yes.
No.
To order your pizza, press this button: .

This is another fill-out form example, with option menus: Example #9

Your Daily Planner

What would you like to do today?

Who would you like to do it with?

To submit your choices, press this button: .

To reset the form, press this button: .

This is another fill-out form example, with multiline text entry areas: Example #11

Comments And Feedback Welcome

Please enter any positive comments below:

Please enter any negative comments below:

Please enter your name below:

To submit your comments, press this button: .

To clear the form, press this button: .

mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/Tests/__init__.py0000644000175000017500000000003607757177564024403 0ustar debiandebianignore={'test_htmlparser':[]} mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/web/__init__.py0000644000175000017500000000000007560574354023256 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/LICENSE0000644000175000017500000000436411033235507021376 0ustar debiandebianThis software is copyrighted by Michel F. Sanner (sanner@scripps.edu) and TSRI. The following terms apply to all files associated with the software unless explicitly disclaimed in individual files. MGLTOOLS SOFTWARE LICENSE AGREEMENT. 1. Grant Of Limited License; Software Use Restrictions. The programs received by you will be used only for NON COMMERCIAL purposes. This license is issued to you as an individual. For COMMERCIAL use done with the software please contact Michel F. Sanner for details about commercial usage license agreements. For any question regarding license agreements, please contact Michel Sanner: TSRI, Molecular Biology Department, TCP 26, 10550 North Torrey Pines Road, La Jolla, CA 92037 sanner@scripps.edu tel (858) 784-7742 fax (858) 784-2341 2. COMMERCIAL USAGE is defined as revenues generating activities. These include using this software for consulting activities and selling applications built on top of, or using this software. Scientific research in an academic environment and teaching are considered NON COMMERCIAL. 3. Copying Restrictions. You will not sell or otherwise distribute commercially these programs or derivatives to any other party, whether with or without consideration. 4. Ownership of Software. You will not obtain, and will not attempt to obtain copyright coverage thereon without the express purpose written consent of The Scripps Research Institute and Dr. Sanner. 5. IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 6. THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/0000755000175000017500000000000012146210176021340 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/colorUtil.py0000644000175000017500000002276610651433500023700 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ############################################################################# # # Author: Sophie COON, Michel F. SANNER # # Copyright: M. Sanner TSRI 2000 # ############################################################################# # $Header: /opt/cvs/python/packages/share1.5/mglutil/util/colorUtil.py,v 1.15 2007/07/24 17:30:40 vareille Exp $ # # $Id: colorUtil.py,v 1.15 2007/07/24 17:30:40 vareille Exp $ # import numpy.oldnumeric as Numeric, math from types import FunctionType """ This Python module implements a set of methods and classes to manipulate colors representation. Should put ColorMap here later on... """ def TkColor(col): """ col can be a : - RGB triplet of int (0-255) or floats (0.0, 1.0) """ if max(col)<=1.0: col = map( lambda x: x*255, col) return '#%02X%02X%02X' % (col[0],col[1],col[2]) def ToHEX(col, mode="RGB", flag255=0): """ ToHEX takes a : - RGB triplet of int (0-255) or floats (0.0, 1.0) - HSV triplet of float (0.0, 1.0) and converts it to a string representing the hexadecimal value '#%02X%02X%02X' """ # If HSV need to convert it to RGB assert mode in ['RGB','HSV'] assert flag255 in [0,1] if mode == "HSV": col = ToRGB(col) # If float (0.0-1.0) need to transform it into (0-255) if flag255 == 0: col = Numeric.array(col,'f')*255 col.tolist() return '#%02X%02X%02X'%(col[0],col[1],col[2]) def ToRGBA(col, mode="HSV", flag255=0): assert mode in ['HSV'] if mode=="HSV": assert len(col)==4 rgbCol = list(col) rgb = ToRGB(col[:3],mode, flag255) if not rgb is None: rgbCol[:3] = ToRGB(col[:3],mode, flag255) return rgbCol elif mode == 'HEX': print 'I am not sure of what to do ?' def ToRGB(col, mode="HSV", flag255=0): """ ToRGB takes a: - HSV triplet - HEX string and returns a the corresponding rgb triplet (0.0 to 1.0) or (0-255) if the 255Flag is set to 1. """ assert mode in ['HSV', 'HEX'] if mode == 'HEX': if not col[0] == '#' or len(col)!=7: print 'invalid HEX color needs to be "#rrggbb" ' else: r = float(eval('0x'+col[1:3])) g = float(eval('0x'+col[3:5])) b = float(eval('0x'+col[5:])) #print a if flag255 == 0: return (r/255.,g/255.,b/255.) else: return (int(r), int(g), int(b)) elif mode == 'HSV': l = len(col) assert l==3 assert max(col) <= 1.0 assert min(col) >= 0.0 v = col[2] if v == 0.0: return (0.0, 0.0, 0.0) s = col[1] if s == 0.0: if flag255: nCol = Numeric.array((v,v,v),'f')*255 return tuple(nCol) return (v, v, v) h = col[0]*6.0 if h>=6.0: h = 0.0 i = int(h) f = h - i p = v*(1.0 - s) q = v*(1.0-(s*f)) t = v*(1.0-s*(1.0-f)) if i==0: if flag255: nCol = Numeric.array((v,t,p),'f')*255 return tuple(nCol) return (v,t,p) elif i==1: if flag255: nCol = Numeric.array((q,v,p),'f')*255 return tuple(nCol) return (q,v,p) elif i==2: if flag255: nCol = Numeric.array((p,v,t),'f')*255 return tuple(nCol) return (p,v,t) elif i==3: if flag255: nCol = Numeric.array((p,q,v),'f')*255 return tuple(nCol) return (p,q,v) elif i==4: if flag255: nCol = Numeric.array((t,p,v),'f')*255 return tuple(nCol) return (t,p,v) elif i==5: if flag255: nCol = Numeric.array((v,p,q),'f')*255 return tuple(nCol) return (v,p,q) else: print "botch in col_to_rgb" def Hue2RGB( v1, v2, vH ): """ used by fromHslToRgb """ if vH < 0: vH += 1 if vH > 1: vH -= 1 if ( 6 * vH ) < 1: return v1 + ( v2 - v1 ) * 6 * vH if ( 2 * vH ) < 1: return v2 if ( 3 * vH ) < 2: return v1 + ( v2 - v1 ) * ( ( 2 / 3. ) - vH ) * 6 return v1 def HSL2RGB(H,S,L): """ HSL values = 0 - 1 RGB results = 0 - 1 """ if S == 0: R = L G = L B = L else: if L < 0.5 : var_2 = L * ( 1 + S ) else: var_2 = ( L + S ) - ( S * L ) var_1 = 2 * L - var_2 R = Hue2RGB( var_1, var_2, H + ( 1 / 3. ) ) G = Hue2RGB( var_1, var_2, H ) B = Hue2RGB( var_1, var_2, H - ( 1 / 3. ) ) return [R,G,B] def RGB2HSL(R,G,B): """ RGB values = 0 - 1 HSL results = 0 - 1 """ var_Min = min( R, G, B ) var_Max = max( R, G, B ) del_Max = var_Max - var_Min L = ( var_Max + var_Min ) / 2 if del_Max == 0: H = 0 S = 0 else: if L < .5: S = del_Max / ( var_Max + var_Min ) else: S = del_Max / ( 2. - var_Max - var_Min ) del_R = ( ( ( var_Max - R ) / 6. ) + ( del_Max / 2. ) ) / del_Max del_G = ( ( ( var_Max - G ) / 6. ) + ( del_Max / 2. ) ) / del_Max del_B = ( ( ( var_Max - B ) / 6. ) + ( del_Max / 2. ) ) / del_Max if R == var_Max: H = del_B - del_G elif G == var_Max: H = ( 1 / 3. ) + del_R - del_B elif B == var_Max: H = ( 2 / 3. ) + del_G - del_R if H < 0: H += 1 if H > 1: H -= 1 return [H, S, L] def RGB2HSL_list(RGB): """ RGB values = 0 - 1 HSL results = 0 - 1 """ return RGB2HSL(RGB[0], RGB[1], RGB[2]) def RGBA2HSLA_list(RGBA): """ RGB values = 0 - 1 HSL results = 0 - 1 """ hsla = RGB2HSL(RGBA[0], RGBA[1], RGBA[2]) hsla.append(RGBA[3]) return hsla def HSLA2RGBA_list(HSLA): """ RGB values = 0 - 1 HSL results = 0 - 1 """ rgba = HSL2RGB(HSLA[0], HSLA[1], HSLA[2]) rgba.append(HSLA[3]) return rgba def ToHSV(col, mode="RGB", flag255=0): """ ToHSV takes a: - RGB triplet (0-255 or 0.0-1.0) - HEX string ('#%02x%02x%02x'%(rr,gg,bb)) and returns a the corresponding HSV triplet (0.0 to 1.0) """ assert mode in ['HEX','RGB'] assert flag255 in [0,1] if mode == "HEX": if col[0] != '#' or len(col)!=7: print 'invalid HEX color needs to be "#rrggbb" ' else: r = float(eval('0x'+col[1:3])) g = float(eval('0x'+col[3:5])) b = float(eval('0x'+col[5:])) newCol = Numeric.array([r,g,b], 'f') assert min(newCol) >=0.0 assert max(newCol) <=255.0 col= Numeric.array(newCol,'f')/255 elif mode == "RGB": assert len(col)==3 if flag255: col = Numeric.array(col,'f')/255 else: print "color mode should be 'HEX' or 'RGB'" maxi = max(col) mini = min(col) r,g,b = col assert maxi<= 1.0 assert mini >= 0.0 if maxi > 0.0001: s = (maxi - mini)/maxi else: s = 0.0 if s < 0.0001: h = 0.0 else: delta = maxi - mini if r == maxi: h = (g - b)/delta elif g == maxi: h = 2.0 + (b - r)/delta elif b == maxi: h = 4.0 + (r - g)/delta h = h/6.0 if h < 0.0: h = h + 1.0 return (h,s,maxi) def ToHSVA(rgb): pass #class ColorPalette0: # FLOAT = 0 # INT = 1 # # def __init__(self, name, colorDict={}, readonly=0, colortype=None, # info='', sortedkeys=None, lookupMember=None): # self.name = name # self.readonly = readonly # self.colors = colorDict # self.info = info # self.viewer = None # self.sortedkeys = sortedkeys # if colortype is None: # self.colortype = self.FLOAT # self.lookupMember = lookupMember # # def _lookup(self, name): # if not name in self.colors.keys(): # return (0., 1., 0.) # return self.colors[name] # # def lookup(self, objects): # # Maybe should try that first in case all the objects don't have the # # lookup member # names = objects.getAll(self.lookupMember) # return map( self._lookup, names) # # def display(self,*args, **kw): # """ Will create an instance of PaletteChooser later on""" # pass # # def undisplay(self, *args, **kw): # pass # # def copy(self): # """make a deep copy of a palette""" # import copy # c = copy.copy(self) # c.readonly = 0 # c.colors = copy.deepcopy(self.colors) # if self.sortedkeys: # c.sortedkeys = self.sortedkeys[:] # return c # # #class ColorPaletteFunction0(ColorPalette0): # def __init__(self, name, colorDict={}, readonly=0, colortype=None, # info='', sortedkeys=None, lookupFunction = None): # """ lookupFunction : needs to be function or a lambda function""" # ColorPalette.__init__(self, name, colorDict, readonly,colortype, # info, sortedkeys) # if not type(lookupFunction) is FunctionType: # self.lookupFunction = None # # self.lookupFunction = lookupFunction # # def lookup(self, objects): # # maybe should do that in a try to catch the exception in case it # # doesnt work # names = map(self.lookupFunction, objects) # return map(self._lookup, names) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/callback.py0000644000175000017500000000415511001441355023445 0ustar debiandebian# # Author Michel F. Sanner (may 2001) Copyright M. Sanner, TSRI # # $Id: callback.py,v 1.10 2008/04/16 18:18:21 annao Exp $ # # $Author: annao $ # import traceback import types class CallbackManager: """Class to manage a list of callback functions""" def __init__(self): self.callbacks = [] def FindFunctionByName(self, funcName): """find a function with a given name in a list of functions""" for f in self.callbacks: if f.__name__==funcName: return f return None def SetCallback(self, func): """Delete all and set a callback fuction""" assert func is None or callable(func) if func is None: self.callbacks = [] else: self.callbacks = [func, ] def AddCallback(self, func): """Add a callback fuction""" assert callable(func) self.callbacks.append(func) def CallCallbacks(self, *args, **kw): """call all callback fuctions""" results = [] for func in self.callbacks: try: results.append( apply(func, args, kw) ) except: print 'ERROR ************************************************' traceback.print_exc() return 'ERROR' return results def ListCallbacks(self): for func in self.callbacks: print func.__name__,func def RemoveCallback(self, func): """Delete a callback fuction""" if type(func)==types.StringType: func = self.FindFunctionByName(func) if func is None: return "function %s not found"%func if func in self.callbacks: self.callbacks.remove(func) else: return "function %s not found"%func.__name__ class CallbackFunction: """Class to allow to specify arguments to a callback function""" def __init__(self, function, *args, **kw): self.function = function self.args = args self.kw = kw def __call__(self, *args, **kw): args = self.args + args kw.update(self.kw) return apply(self.function, args, kw) CallBackFunction = CallbackFunction mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/qhullUtils.py0000644000175000017500000001403611115051505024056 0ustar debiandebian######################################################################### # # Date: Jan 2004 Author: Daniel Stoffler # # stoffler@scripps.edu # # The Scripps Research Institute (TSRI) # Molecular Graphics Lab # La Jolla, CA 92037, USA # # Copyright: Daniel Stoffler and TSRI # ######################################################################### import os, sys, string from DejaVu.IndexedPolygons import IndexedPolygons from mglutil.util.packageFilePath import which def findQhullModule(modname): """return (platform-dependent) path to qhull module""" if modname not in ['qconvex', 'qdelaunay', 'qhalf', 'qhull', 'qvoronoi', 'rbox']: print 'QHULL ERROR! Illegal module name %s.'%modname return None try: mod = __import__('binaries') pth = mod.__path__[0] except ImportError: pth = '' pth = os.path.join( pth, modname) if which(pth): #print pth return pth else: #print 'QHULL ERROR! Module not found in %s'%pth return None class QConvex: """Compute convex hull based on a list of 3-D coordinates. Return a DejaVu IndexedPolygon geometry. Usage: self.computeConvex(coords, tpath) coords: a list of [x,y,z] values tpath = optional path for temporary files """ def __init__(self, name='qconvex'): self.geom = IndexedPolygons(name, inheritMaterial=0) self.tmpPath = './' # user can specify path for tmp files # using setTmpPath() method #------------------ HELPER FUNCTIONS ---------------------------------# def writeQConvex(self, filename, coords): """QConvex: http://www.qhull.org/html/qconvex.htm Input a filename and [x,y,z]-coordinates, save this in QConvex format.""" data = [] data.append('3 RBOX c\n') data.append( str(len(coords))+'\n') for (x,y,z) in coords: data.append( '%f %f %f\n'%(x,y,z)) try: f = open( os.path.join(self.tmpPath, filename), 'w') f.writelines(data) f.close() except: print 'QCONVEX ERROR! Cannot write into %s'%self.tmpPath def readQConvex(self, filename): """QConvex: http://www.qhull.org/html/qconvex.htm Read a QConvex output file, output a DejaVu IndexedPolygon. Data Format: [...]print vertices and facets of the convex hull in OFF format. The first line is the dimension. The second line is the number of vertices, facets, and ridges. The vertex coordinates are next, followed by the facets. Each facet starts with the number of vertices. The cube example has four vertices per facet.""" try: f = open( os.path.join(self.tmpPath, filename), 'r') data = f.readlines() f.close() except: print 'QCONVEX ERROR! Temp. file not found in %s'%self.tmpPath return # get more header info header = string.split(data[1]) lenVerts = int(header[0]) lenFaces = int(header[1]) vertices = [] faces = [] for d in data[2:lenVerts+2]: # offset of 2 because of file header spl = string.split(d) vertices.append( [float(spl[0]), float(spl[1]), float(spl[2])] ) for d in data[lenVerts+2:]: # offset of 2 because of file header spl = map( int, string.split(d) ) for i in range(3, len(spl)): faces.append( [spl[1], spl[i], spl[i-1]] ) self.geom.Set(vertices=vertices, faces=faces) def setTmpPath(self, path): """set the path for the two temporary files. Note: if the specified path does not exist, we try to write into the startup directory""" if path is None: path = './' if path == '': path = os.path.abspath("./") if not os.path.exists(path): print 'QCONVEX ERROR! Path %s does not exist!'%path # use path where we started Python process self.tmpPath = os.path.join( os.path.abspath('./'), '') print 'Trying to save temp. file in: %s'%self.tmpPath else: self.tmpPath = os.path.join( os.path.abspath(path), '') def getGeom(self): """returns the DejaVu IndexedPolygon geometry""" return self.geom #------------------ END HELPER FUNCTIONS ------------------------------# #------------------ USE THIS METHOD: ----------------------------------# def computeConvex(self, coords, tpath=None): ### 1) clean directory, save file in qconvex format: if tpath is not None: self.setTmpPath(tpath) try: os.remove( os.path.join(self.tmpPath, 'tmp_qconvex_input') ) except: pass try: os.remove( os.path.join(self.tmpPath, 'tmp_qconvex_output') ) except: pass self.writeQConvex( os.path.join(self.tmpPath, 'tmp_qconvex_input'), coords) ### 2) run qconvex, create new output file # FIXME: Please note, this is a hack: we build the path where # qconvex resides, depending on the operating system. In the future, # qconvex might be accessed through a SOAP service! # build a path string for the file qconvex pth = findQhullModule('qconvex') if pth is None: return # build string to be executed execstring = pth + ' o < ' + self.tmpPath + 'tmp_qconvex_input > '+\ self.tmpPath + 'tmp_qconvex_output' os.system(execstring) ### 3) load output, return IndexedPolygon self.readQConvex( os.path.join(self.tmpPath, 'tmp_qconvex_output') ) ### 4) clean up temporary files try: os.remove( os.path.join(self.tmpPath, 'tmp_qconvex_input') ) except: print 'Cannot delete temporary input file' try: os.remove( os.path.join(self.tmpPath, 'tmp_qconvex_output') ) except: print 'Cannot delete temporary output file' mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/relpath.py0000644000175000017500000000562110665067277023375 0ustar debiandebian""" Author: Alan Ezust Version: 2.2 Date: October 30, 2004 (relpath.py v1 originally by Cimarron Taylor from Oreilly/Activestate Python cookbook 2003) helper functions for relative paths. This package includes rel2abs() and abs2rel(), based on the perl functions from cpan File::Spec Version 2.1 fixes/simplifies pathsplit - uses the string split instead of a very inefficient recursive routine. Also fixed rel2abs to do a normpath on already absolute paths. """ import os import os.path import re # matches http:// and ftp:// and mailto:// protocolPattern = re.compile(r'^\w+://') parent = ".." + os.path.sep # use urlparse.urljoin for relative urls def isabs(string): """ @return true if string is an absolute path or protocoladdress for addresses beginning in http:// or ftp:// or ldap:// - they are considered "absolute" paths. """ if protocolPattern.match(string): return 1 return os.path.isabs(string) def rel2abs(path, base = os.curdir): """ converts a relative path to an absolute path. @param path the path to convert - if already absolute, is returned normalized @param base - optional. Defaults to the current location The base is intelligently concatenated to the given relative path. @return the relative path of path from base """ if isabs(path): return os.path.normpath(path) retval = os.path.join(base,path) return os.path.abspath(retval) def commonpath(l1, l2, common=[]): if len(l1) < 1: return (common, l1, l2) if len(l2) < 1: return (common, l1, l2) if l1[0] != l2[0]: return (common, l1, l2) return commonpath(l1[1:], l2[1:], common+[l1[0]]) def relpath(base, path): """ returns the relative path from base to path """ baselist = base.split(os.path.sep) pathlist = path.split(os.path.sep) (common,l1,l2) = commonpath(baselist, pathlist) p = [] if len(l1) > 0: p = [ parent * len(l1) ] p = p + l2 if len(p) is 0: return "." return os.path.join( *p ) def abs2rel(path, base = os.curdir): """ @return a relative path from base to path. base can be absolute, or relative to curdir, or defaults to curdir. """ if protocolPattern.match(path): return path base = rel2abs(base) return relpath(base, path) if __name__ == "__main__" : filename = "/home/alan/public_html/oopdocbook/icons/home.png" path1 = "/home/alan/public_html/oopdocbook" path2 = "/home/alan/public_html/oopdocbook/" rel1 = abs2rel(filename, path1) rel2 = abs2rel(filename, path2) assert (rel1 == rel2) assert (rel2 == "icons/home.png") path3 = "/home/alan/public_html/photos/misc/jewel.png" path4 = "/home/alan/public_html/oopdocbook/docs/" relpath = abs2rel(path3, path4) expected = os.path.join("..", "..", "photos", "misc", "jewel.png") assert (relpath == expected) print "done" mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/misc.py0000644000175000017500000001045211623254555022657 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by ############################################################################# # # Author: Michel F. SANNER # # Copyright: M. Sanner TSRI 2000 # ############################################################################# # # $Header: /opt/cvs/python/packages/share1.5/mglutil/util/misc.py,v 1.19 2011/08/18 18:26:53 sanner Exp $ # # $Id: misc.py,v 1.19 2011/08/18 18:26:53 sanner Exp $ # import types import sys import numpy.oldnumeric as Numeric import os _proc_status = '/proc/%d/status' % os.getpid() _scale = {'kB': 1024.0, 'mB': 1024.0*1024.0, 'KB': 1024.0, 'MB': 1024.0*1024.0} def _VmB(VmKey): '''Private. ''' global _proc_status, _scale # get pseudo file /proc//status try: t = open(_proc_status) v = t.read() t.close() except: return 0.0 # non-Linux? # get VmKey line e.g. 'VmRSS: 9999 kB\n ...' i = v.index(VmKey) v = v[i:].split(None, 3) # whitespace if len(v) < 3: return 0.0 # invalid format? # convert Vm value to bytes return float(v[1]) * _scale[v[2]] def memory(since=0.0): '''Return memory usage in bytes. ''' return _VmB('VmSize:') - since def resident(since=0.0): '''Return resident memory usage in bytes. ''' return _VmB('VmRSS:') - since def stacksize(since=0.0): '''Return stack size in bytes. ''' return _VmB('VmStk:') - since def issequence(a): return type(a) is types.TupleType or \ type(a) is types.ListType or \ isinstance(a, Numeric.ArrayType) def isnumericstring(a): try: float(a) return 1 except: return 0 def uniq(objectSequence): """Remove the duplicates from a list while keeping the original list order """ l = [] d = {} for o in objectSequence: if not d.has_key(o): d[o] = None l.append(o) return l def deepCopySeq(sequence): """ returns the deep copy of the given sequence """ import numpy.oldnumeric as Numeric from types import TupleType, ListType assert type(sequence) in (TupleType, ListType, type(Numeric.array([1,2,3]))) if hasattr(sequence, 'copy'): dcSeq = sequence.copy() else: dcSeq = sequence[:] return dcSeq def ensureFontCase(font): return font # from Tkinter import TkVersion # lFont = font[0].upper() + font[1:].lower() # if TkVersion == '8.4' and sys.platform != "win32": # lFont = font.lower() # return lFont def isInstance(lObject): import types if sys.version.startswith('2.5'): #detect python25 if type(lObject) == types.InstanceType: return True else: return False else: import inspect ltype = type(lObject) if ltype == types.InstanceType: return True elif inspect.isclass(lObject) is False \ and isinstance(lObject, ltype) is True: from abc import ABCMeta if ltype == types.ClassType is True: return True elif type(ltype) == ABCMeta: return True else: return False else: return False def importMainOrIPythonMain(): try: from IPython import ipapi mainDict = ipapi.get().user_ns except: mainDict = __import__('__main__').__dict__ return mainDict def suppressMultipleQuotes(aString): lStringToSimplify = aString lSimplifiedString = lStringToSimplify while type(lStringToSimplify) == types.StringType: lSimplifiedString = lStringToSimplify try: lStringToSimplify = eval(lSimplifiedString) except: break return lSimplifiedString class IntVar: def __init__(self, val=0): self.set(val) def get(self): return self.val def set(self,val): self.val = int(val) class StringVar: def __init__(self, val=""): self.set(val) def get(self): return self.val def set(self,val): self.val = str(val) class BooleanVar: def __init__(self, val=False): self.set(val) def get(self): return self.val def set(self,val): self.val = (val==True) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/parser.py0000644000175000017500000000741010651433500023205 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # Author Daniel Stoffler (Dec 2001) Copyright D. Stoffler, TSRI import numpy.oldnumeric as Numeric, string class VRML2IndexedFaceSetToCoords: """ VRML2 IndexedFaceSet -> coords & indices. Please note this is BY NO MEANS a VRML parser but rather a hack that allows to convert SIMPLE VRML2 indexedFaceSets into coords and indices which can be displayed using the IndexedPolygon node of the ViPEr environment """ def init(self, data=None): self.data = data def set(self, data): self.data = data def compute(self): spl=[] coordflag = 0 indexflag = 0 scaleflag = 0 coords = [] indices = [] scale=[] llc = [] lli = [] result = [] ind = [] length = 0 for i in range(len(self.data)): d = self.data[i] spl = string.split(d) for k in range(len(spl)): if spl[k] == 'coord' and spl[k+1] == 'Coordinate': coordflag = 1 if spl[k] == 'coordIndex': indexflag = 1 if spl[k] == 'scale': scaleflag = 1 if coordflag == 1: if spl[0]=='}': # we reach the end of 'coords' coordflag=0 continue if spl[0] == 'coord': #this is the first line which we dont continue #want to parse if spl[-1] == ']': #this is the last line where we want lc = spl[-4:-1] #to get rid of the ']' else: lc = spl[-3:] lc[-1] = lc[-1][:-1] llc=[] for n in range(len(lc)): llc.append(float(lc[n])) coords.append(llc) if indexflag == 1: testEnd = string.split(d) # if testEnd[0]=='texCoord': # indexflag=0 # continue if spl[-1] == ']': #this is the last line where we want li = spl[-9:-1] #to get rid of the ']' li[-1] = li[-1]+',' #and add a ',' to the last number indexflag=0 else: li = spl[-8:] ind.extend(li) lli = [] if scaleflag == 1: sc = string.split(d) scale.append( float(sc[1]) ) scale.append( float(sc[2]) ) scale.append( float(sc[3]) ) scaleflag = 0 # make index list. Note that we add -1 as many times as needed # to each index entry in order to make them all the same length lenght=0 # this is the variable that tells us how many -1 we will ad for n in range(len(ind)): if ind[n] != '-1,': lli.append(int(ind[n][:-1])) else: lli.reverse() # index list has to be inverted lli.append(-1) if len(lli) > length: length = len(lli) indices.append(lli) lli = [] # here we go again over the indices and add the -1 if necessary for m in range(len(indices)): if len(indices[m]) < length: for o in range(length-len(indices[m])): indices[m].append(-1) # apply scale to coords if len(scale): coords = Numeric.multiply(coords, scale) result = [coords]+[indices] return result def __call__(self): out=[] out = self.compute() return out mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/defaultPalettes.py0000644000175000017500000000405611575501722025052 0ustar debiandebian# # $Header: /opt/cvs/python/packages/share1.5/mglutil/util/defaultPalettes.py,v 1.6 2011/06/13 21:40:34 sargis Exp $ # # $Id: defaultPalettes.py,v 1.6 2011/06/13 21:40:34 sargis Exp $ # """ This file contains the default ColorPalette.""" ChooseColor = {'red':(1.,0.,0.), 'green':(0.,1.,0.), 'blue':(0.,0.,1.), 'white':(1.,1.,1.), 'black':(0.,0.,0.), 'cyan':(0.,1.,1.), 'yellow':(1.,1.,0.), 'magenta':(1.,0.,1.) } ChooseColorSortedKeys = [ 'white', 'black', 'red', 'green', 'blue', 'cyan', 'yellow', 'magenta' ] #Rainbow= {0: (0.,0.,1.), 1: (0.,1.,0.), 2: (1.,0.,0.), # 3: (0.,1.,1.), 4: (1.,1.,0.), 5: (1.,0.,1.), # 6: (0.,.75,1.), 7: (0.,1.,.5), 8: (.6,1.,0.), # 9: (1.,.5,0.), 10: (1.,0.,.5), 11:(.5,0.,1.), # 12:(.5,0.,.2), 13: (0.,.5,.2), 14:(0.75,0,1), # 15:(1.,0.75,0),16:(1.,0.,0.75,),17:(0., 1., .75), # 18:(1.,0.,0.25,), 19: (0.,.5,1.)} # #RainbowSortedKey = [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19] Rainbow = {'0': (0.,0.,1.), '1': (0.,1.,0.), '2': (1.,0.,0.), '3': (0.,1.,1.), '4': (1.,1.,0.), '5': (1.,0.,1.), '6': (0.,.75,1.), '7': (0.,1.,.5), '8': (.6,1.,0.), '9': (1.,.5,0.), '10': (1.,0.,.5), '11':(.5,0.,1.), '12':(.5,0.,.2), '13': (0.,.5,.2), '14':(0.75,0,1), '15':(1.,0.75,0),'16':(1.,0.,0.75,),'17':(0., 1., .75), '18':(1.,0.,0.25,), '19': (0.,.5,1.)} MolColors = {'0': (1.,0.5,1.), '1': (0., 0.509,0.), '2': (1.,0.5,0.5), '3': (0.25,0.75,1.), '4': (0.517,0.2549,0.2588), '5': (1.,0.,1.), '6': (0.,.75,1.), '7': (0.,1.,.5), '8': (.6,1.,0.), '9': (1.,.5,0.), '10': (1.,0.,.5), '11':(.5,0.,1.), '12':(.5,0.,.2), '13': (0.,.5,.2), '14':(0.75,0,1), '15':(1.,0.75,0),'16':(1.,0.,0.75,),'17':(0., 1., .75), '18':(1.,0.,0.25,), '19': (0.,.5,1.)} RainbowSortedKey = ['0','1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16','17','18','19'] mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/repeatPrinter.py0000644000175000017500000000227311225170130024532 0ustar debiandebianimport os class RepeatPrinter: """ The class allows printing repeating messages on the last line of a terminal (Unix only). This can be used to display a counter that does not scroll the terminal example: printer = RepeatPrinter() printer.prompt('Hello World') for i in range(20): printer.update(str(i)) thsi code will display 'Hello World' followed by a counter """ def __init__(self): # use tcup lines to find out how many lines in the terminal self.nbLines = int(os.popen("tput lines").readlines()[0]) self.repeatingPosition = None def prompt(self, prompt): # print a message leading the repeating messages #os.system("tput sc") os.system("tput cup %d 0"%(self.nbLines-1)) self.repeatingPosition = len(prompt) + 1 print prompt def update(self, msg): os.system("tput cup %d %d"%(self.nbLines-2, self.repeatingPosition)) print msg if __name__ == '__main__': from time import sleep printer = RepeatPrinter() printer.prompt('Hello World') sleep(0.5) for i in range(20): printer.update(str(i)) sleep(0.2) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/tree.py0000644000175000017500000000675307361145465022677 0ustar debiandebian# # Last modified on Wed Oct 10 15:07:59 PDT 2001 by lindy # # $Header: /opt/cvs/python/packages/share1.5/mglutil/util/tree.py,v 1.3 2001/10/10 22:27:01 lindy Exp $ # class TreeNode: """Base class of generic tree nodes. This class will work all by itself with data being whatever you want your nodes to be. It also could be used as the superclass of specific subclasses. """ def __init__(self, parent=None, data=None): self.parent = parent self.children = [] if parent: parent.add_child(self) if data: self.data = data def add_child(self, child): """Add given node to children of self. parent.add_child( node) adds node to children of parent. This is done in the __init__ if parent is given when node in instanciated (that's the prefered method). """ self.children.append(child) def pre_traverse(self, f, *args, **kw): """Apply f to yourself and then your children recursively The function f must take the treeNode as it's first argument. """ args = list(args) args[0] = self a = tuple([f] + args) apply(f, args, kw) for c in self.children: apply(c.pre_traverse, a, kw) def post_traverse(self, f, *args, **kw): """Traverse children with f and args, then visit parent. The function f must take the treeNode as it's first argument. """ args = list(args) args[0] = self a = tuple([f] + args) for c in self.children: apply(c.post_traverse, a, kw) apply(f, args, kw) def get_iterator(self): """over-ride me to supply an appropriate subclass of TreeIterator""" raise NotImplementedError class TreeIterator: """This iterator class is not finished yet. """ def __init__(self, node): self.iterRoot = node self.currentNode = None # set by subclass self.done = None def current(self): """return the currently-visited node""" return self.currentNode def done(self): """Returns false (None) until the traversal is finished""" return self.done def first(self): """Reset the currentNode to the initally specified node """ self.currentNode = self.iterRoot def next(self): """Move currentNode on to the next item in the traversal. Over-ride this method to provide a specific type of traversal """ # move on to next item raise NotImplementedError class PostTreeIterator(TreeIterator): """This iterator class is not finished yet. """ def __init__(self, node): TreeIterator.__init__(self) self.nodeList = [] self.iterRoot.post_traverse(self.nodeList.append) self.currentIx = 0 def next(self): self.currentNode = self.nodeList[self.currentIx] self.currentIx = self.currentIx + 1 if self.currentIx == len(self.nodeList): self.done = 1 class PreTreeIterator(TreeIterator): """This iterator class is not finished yet. """ def __init__(self, node): TreeIterator.__init__(self) self.nodeList = [] self.iterRoot.pre_traverse(self.nodeList.append) self.currentIx = 0 def next(self): self.currentNode = self.nodeList[self.currentIx] self.currentIx = self.currentIx + 1 if self.currentIx == len(self.nodeList): self.done = 1 mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/idleUtil.py0000644000175000017500000000403011066230126023457 0ustar debiandebianfrom idlelib import PyShell #from idlelib.PyShell import PyShell, PyShellFileList, use_subprocess from idlelib.EditorWindow import fixwordbreaks import Tkinter, sys, os def getShell(thread, rootTk = None, subprocess = False, debug=False, enable_shell=False, enable_edit=True): """ This function creates and returns a shell PyShell instance required arguments: thread -- optional arguments: rootTk -- subprocess -- boolean flag when set to True a the pyshell runs a new interpreter in a sub process when set to False it the user has access to the main interpreter. (default = False) enable_shell -- boolean flag when set to True a python shell is created (by default True) enable_edit -- boolean flag when set to True a edit shell is created aware of the python syntax (by default False) debug -- boolean flag when set to True starts the debugger when the pyshell is created. (by default = False) """ cmd = None script = None startup = False # try: # sys.ps1 # except AttributeError: # sys.ps1 = '>>> ' if hasattr(sys, 'ps1') is False: sys.ps1 = '>>> ' global mainThread PyShell.use_subprocess = subprocess mainThread = thread for i in range(len(sys.path)): sys.path[i] = os.path.abspath(sys.path[i]) pathx = [] for dir in pathx: dir = os.path.abspath(dir) if not dir in sys.path: sys.path.insert(0, dir) global flist, root if rootTk is None: root = Tkinter.Tk() else: root = rootTk fixwordbreaks(root) flist = PyShell.PyShellFileList(root) if enable_edit: flist.new() if enable_shell : flist.open_shell() elif enable_shell: flist.pyshell = PyShell.PyShell() #flist.pyshell.begin() shell = flist.pyshell if debug: shell.open_debugger() return shell mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/Tests/0000755000175000017500000000000012146210176022442 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/Tests/test_colorUtil.py0000644000175000017500000001271710254574425026047 0ustar debiandebian# # # #$Id: test_colorUtil.py,v 1.2 2005/06/17 16:23:49 sowjanya Exp $ ############################################################################## ## ## Authors : Sowjanya Karnati, Michel F Sanner ## ############################################################################## import sys,unittest,Tkinter from time import sleep from mglutil.util.colorUtil import * class ColorUtilBaseTest(unittest.TestCase): #####TkColor def test_TkColor_1(self): """tests TkColor with RGB float triplet""" col=(0.0,1.0,0.0) self.rvalue=TkColor(col) self.assertEqual(self.rvalue,'#00FF00') def test_TkColor_2(self): """tests TkColor with inavalid col arguement""" col=(0.0,1.0) self.assertRaises(IndexError,TkColor,col) def test_TkColr_3(self): """tests TkColor with inavalid col arguement""" col ='hello' self.assertRaises(TypeError,TkColor,col) def test_TkColor_4(self): """tests TkColor with RGB Triplet""" col = (240,248,255) self.rvalue=TkColor(col) self.assertEqual(self.rvalue,"#F0F8FF") ######ToHEX def test_ToHEX_1(self): """tests ToHEX with mode=HSV""" color = (0.0,1.0,0.5) self.rvalue =ToHEX(color,mode='HSV') self.assertEqual(self.rvalue,'#7F0000') def test_ToHEX_2(self): """tests ToHEX with mode=RGB""" color=(0.0,1.0,0.5) self.rvalue =ToHEX(color,mode='RGB') self.assertEqual(self.rvalue,'#00FF7F') def test_ToHEX_3(self): """tests ToHEX with flag,mode RGB""" color=(0.0,1.0,0.5) self.rvalue =ToHEX(color,mode='RGB',flag255=1) self.assertEqual(self.rvalue,'#000100') def test_ToHEX_4(self): """tests ToHEX with flag,mode HSV""" color=(0.0,1.0,1.0) self.rvalue =ToHEX(color,mode='HSV',flag255=1) self.assertEqual(self.rvalue,'#010000') def test_ToHEX_5(self): """tests ToHEX with invalid color arguement""" color=(0.0,1.0) self.assertRaises(IndexError,ToHEX,color) def test_ToHEX_7(self): """tests ToHEX with invalid mode arguement""" color=(0.0,1.0,0.5) mode="hello" self.assertRaises(AssertionError,ToHEX,color,mode) def test_ToHEX_8(self): """tests ToHex with invalid flag arguement""" color=(0.0,1.0,0.5) mode="HSV" flag255="hello" self.assertRaises(AssertionError,ToHEX,color,mode,flag255) def test_ToHex_9(self): """tests ToHex with RGB color Triplet""" col = (240,248,255) self.rvalue =ToHEX(col,mode='RGB') ######ToRGBA def test_ToRGBA_1(self): """tests ToRGBA """ color=(0.0,1.0,0.5,0.5) self.rvalue =ToRGBA(color) self.assertEqual(self.rvalue,[0.5, 0.0, 0.0, 0.5]) def test_ToRGBA_2(self): """Tests ToRGBA with invalid mode""" color=(0.0,1.0,0.5,0.5) self.assertRaises(AssertionError,ToRGBA,color,mode='ABCD') def test_ToRGBA_3(self): """tests ToRGBA with flag255""" color=(0.0,1.0,0.5,0.5) self.rvalue =ToRGBA(color,flag255=1) self.assertEqual(self.rvalue,[127.5, 0.0, 0.0, 0.5]) ########ToRGB def test_ToRGB_1(self): """tests ToRGB """ color=(0.0,1.0,0.5) self.rvalue = ToRGB(color) self.assertEqual(self.rvalue,(0.5, 0.0, 0.0)) def test_ToRGB_2(self): """tests ToRGB with mode HEX""" color='#FFFF00' self.rvalue = ToRGB(color,mode='HEX') self.assertEqual(self.rvalue,(1.0, 1.0, 0.0)) def test_ToRGB_3(self): """tests ToRGB with invalid color""" color="hello" self.assertRaises(AssertionError,ToRGB,color) def test_ToRGB_4(self): """tests ToRGB with flag""" color=(0.0,1.0,0.5) self.rvalue = ToRGB(color,flag255=1) self.assertEqual(self.rvalue,(127.5, 0.0, 0.0)) def test_ToRGB_5(self): """tests ToRGB with mode HEX anf flag255 1""" color='#FF0000' self.rvalue = ToRGB(color,mode='HEX',flag255=1) self.assertEqual(self.rvalue,(255, 0, 0)) def test_ToRGB_6(self): """tests ToRGB with invalid mode""" color='#FF0000' self.assertRaises(AssertionError,ToRGB,color,mode='hello') #####ToHSV def test_ToHSV_1(self): """tests ToHSV """ color=(0.0,1.0,0.5) self.rvalue = ToHSV(color) self.assertEqual(self.rvalue,(0.41666666666666669, 1.0, 1.0)) def test_ToHSV_2(self): """tests ToHSV with mode HEX""" self.rvalue = ToHSV(col='#FFFF00',mode='HEX') self.assertEqual(self.rvalue,((0.16666666666666666, 1.0, 1.0))) def test_ToHSV_3(self): """tests ToHSV with invalid color""" color="hello" self.assertRaises(AssertionError,ToHSV,color) def test_ToHSV_5(self): """tests ToHSV with flag255 in valid """ color='#FF0000' self.assertRaises(AssertionError,ToHSV,color,mode="HEX",flag255="hello") def test_ToHSV_6(self): """tests ToHSV with mode invalid""" color='#FF0000' self.assertRaises(AssertionError,ToHSV,color,mode='hello') def test_ToHSV_7(self): """tests ToHSV with RGB color""" col = (0,255,0) self.rvalue = ToHSV(col,flag255=1) self.assertEqual(self.rvalue,(0.33333333333333331, 1, 1)) if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/Tests/__init__.py0000644000175000017500000000000007723713314024550 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/__init__.py0000644000175000017500000000000007300046146023437 0ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/recentFiles.py0000644000175000017500000001103611452657624024172 0ustar debiandebian"""Impements Recent Files menues""" # $Header: /opt/cvs/python/packages/share1.5/mglutil/util/recentFiles.py,v 1.16 2010/10/05 17:25:40 sargis Exp $ # # $Id: recentFiles.py,v 1.16 2010/10/05 17:25:40 sargis Exp $ import os, pickle from mglutil.util.packageFilePath import getResourceFolderWithVersion import Tkinter class RecentFiles: """Class to store Recent Files""" def __init__(self, masterApp, masterMenu, filePath=None, menuLabel="Open recent", underline=5, index=0): """Construct recent files categories. If filePath is not provided mglutil/recent.pkl is used to store and load the data""" if not filePath: #use "mglutil/recent.pkl" to store the data filePath = getResourceFolderWithVersion() if filePath is None: return filePath += os.sep + "mglutil" + os.sep + "recent.pkl" if os.path.exists(filePath): try: self.categories = pickle.load(open(filePath)) except Exception, inst: #print inst #print "Couldn't Load Recent Files." self.categories = {} else: self.categories = {} self.resourceFilePath = filePath self.checkCategories() if masterMenu != None: self.gui(masterMenu, menuLabel, underline=underline, index=index) else: self.mainMenu = None self.masterApp = masterApp def checkCategories(self): """Loops through self.categories to check if recent file still exists. If not, removes the file from the list""" for category in self.categories.keys(): newList = [x for x in self.categories[category] if os.path.exists(x[0])] if len(newList): self.categories[category] = newList else: self.categories.pop(category) def add(self, filePath, cmdStr, category="Documents"): """Add file to self.categories[category] list. First element in this list is the file. Second is the command string - cmdStr.""" if not filePath: return if hasattr(self, 'categories') is False: return if not self.categories.has_key(category): self.categories[category] = [] #self.menuList[category] = Tkinter.Menu(self.mainMenu) #self.mainMenu.add_cascade(label=category, # menu=self.menuList[category]) if os.path.exists(filePath): filePath = os.path.abspath(filePath) if [filePath,cmdStr] in self.categories[category]: index = self.categories[category].index([filePath,cmdStr]) self.categories[category].pop(index) if self.mainMenu != None : self.mainMenu.delete(index+1) if len(self.categories[category]) > 20: self.categories[category].pop() #self.menuList[category].delete(10,Tkinter.END) self.categories[category].insert(0, [filePath,cmdStr]) if self.mainMenu != None : self.mainMenu.insert(0,'command', label=filePath, command=self.callback([filePath,cmdStr])) self.dumpCategories() def dumpCategories(self, filePath=None): """Calls pickle.dump(self.categories, open(filePath,'w'))""" if not filePath: filePath = self.resourceFilePath try: pickle.dump(self.categories, open(filePath,'w')) except Exception, inst: print "Failed to save recent files" print inst def gui(self, masterMenu, menuLabel, underline=None, index=0): self.mainMenu = Tkinter.Menu(masterMenu) masterMenu.insert_cascade(index, label=menuLabel, menu=self.mainMenu, underline=underline) self.menuList = {} for category in self.categories: # self.menuList[category] = Tkinter.Menu(self.mainMenu) # self.mainMenu.add_cascade(label=category, # menu=self.menuList[category]) for listItem in self.categories[category]: self.mainMenu.add_command(label=listItem[0], command=self.callback(listItem)) def callback(self, listItem): def call(listItem=listItem): masterApp = self.masterApp eval("masterApp." + listItem[1] + '(' + repr(listItem[0]) +')') return call mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/uniq.py0000644000175000017500000000171110063426612022666 0ustar debiandebian## def uniq(l, func=None): ## """Return a new list with duplicate items removed.""" ## l2 = l[:] # make a copy ## d = {} ## def add_to_dict(value,d=d): ## d[`value`] = value ## map(add_to_dict,l2) ## l3 = d.values() ## if len(l2)==len(l3): return(l2) ## if func: l3.sort(func) ## else: l3.sort() ## return l3 def uniq(alist): # Fastest order preserving set = {} return [set.setdefault(e,e) for e in alist if e not in set] def uniq3(alist): # Fastest without order preserving set = {} map(set.__setitem__, alist, []) return set.keys() """ from mglutil.util.uniq import uniq, uniq2, uniq3 import time a=range(100) b=range(10) c=a+b t1=time.time() for i in range(5000): x=uniq(c) print time.time()-t1 t1=time.time() for i in range(5000): x=uniq2(c) print time.time()-t1 t1=time.time() for i in range(5000): x=uniq3(c) print time.time()-t1 >>> 0.865363121033 0.463307857513 0.260641098022 """ mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/util/packageFilePath.py0000644000175000017500000002544012030166073024725 0ustar debiandebian######################################################################### # # Date: Jul 2003 Author: Michel Sanner, Daniel Stoffler # # sanner@scripps.edu # stoffler@scripps.edu # # The Scripps Research Institute (TSRI) # Molecular Graphics Lab # La Jolla, CA 92037, USA # # Copyright: Michel Sanner, Daniel Stoffler and TSRI # ######################################################################### #$Header: /opt/cvs/python/packages/share1.5/mglutil/util/packageFilePath.py,v 1.56 2012/09/24 23:26:51 sanner Exp $ # #$Id: packageFilePath.py,v 1.56 2012/09/24 23:26:51 sanner Exp $ import os, sys, re import warnings import user resourceFolder = user.home + os.sep + ".mgltools" def getBinary(name, package): """Find an executable program in a Python package. .exe extension is assumed under windows """ if (os.name == 'nt') \ and (name [-4:]!='.exe'): name = name+'.exe' pgmfullpath = findFilePath(name, package) # assert it is executable pgmfullpath = os.path.abspath(pgmfullpath) if not os.access(pgmfullpath, os.X_OK): return None else: return pgmfullpath def findFilePath(fileName, packageName): """ Find the path to the file from the package packageName""" mod = __import__(packageName) components = packageName.split('.') for comp in components[1:]: mod = getattr(mod, comp) fullName = os.path.join(mod.__path__[0], fileName) if os.path.exists(fullName): return os.path.abspath(fullName) else: return None def findResourceFile(module, resourceFile=None): """we look for the file specified in argument in the following directories: 1 - current directory 2 - user's home directory 3 - the package to which this instance belongs to Returns a list of three tuples ('home',path),('currentdir',path) ('package',path) """ if resourceFile is None: return elif resourceFile == '_visionrc': resourceFileLocation = {} resourceFileLocation['package'] = None resourceFileLocation['currentdir'] = None lResourceFolder = getResourceFolderWithVersion() if lResourceFolder is None: resourceFileLocation['home'] = None else: resourceFileLocation['home'] = getResourceFolderWithVersion() + \ os.sep + 'Vision' + os.sep + '_visionrc' if os.path.isfile(resourceFileLocation['home']) is False: resourceFileLocation['home'] = None return resourceFileLocation resourceFileLocation = {} currentfile = os.path.join('.', resourceFile) if os.path.exists(currentfile): resourceFileLocation['currentdir'] = currentfile else: resourceFileLocation['currentdir'] = None if 'HOME' in os.environ.keys(): home = os.environ['HOME'] homefile = os.path.join(home, resourceFile) if os.path.exists(homefile): resourceFileLocation['home'] = homefile else: resourceFileLocation['home'] = None else: resourceFileLocation['home'] = None path = __import__(module.__class__.__module__).__path__ path = path[0] if path: packagefile = os.path.join(path, resourceFile) if os.path.exists(packagefile): resourceFileLocation['package'] = packagefile else: resourceFileLocation['package'] = None else: resourceFileLocation['package'] = None return resourceFileLocation def findAllPackages(): """Returns a list of package names and name with path found in sys.path """ packages = {} for p in ['.']+sys.path: flagline = [] if not os.path.exists(p): continue try: files = os.listdir(p) except: continue for f in files: pdir = os.path.join(p, f) if not os.path.isdir(pdir): continue if os.path.exists( os.path.join( pdir, '__init__.py')) : if not packages.has_key(f): packages[f] = pdir elif os.path.exists( os.path.join( p, '.pth') ): if not packages.has_key(f): packages[f] = pdir return packages def findModulesInPackage(package, name, fileNameFilters=[]): """ Returns a dictionnary where the key is the path to the package or subpackage. The value is the list of modules in which the string 'name' was found. Name can be a regular expression.Using '^' as a first symbol to match string at the begining of the lines is faster. """ if name[0]=='^': candidates = {} for root, dirs, files in os.walk(package): # remove directories not to visit for rem in ['CVS', 'regression', 'Tutorial', 'test', 'Doc', 'doc', 'Icons','Tests']: if rem in dirs: dirs.remove(rem) # look for files that contain the string NodeLibrary newfiles = [] for fi in files: if fi[-3:]=='.py' and not fi[0] in ['#', '.']: for i in fileNameFilters: if i in fi : continue Lines =[] f = open( os.path.join(root, fi) ) data = f.readlines() f.close() found = 0 Lines =filter(lambda x:x.startswith(name[1:]),data) if Lines!=[]: if not candidates.has_key(root): candidates[root] = [] candidates[root].append(fi) else: # use re import re pat = re.compile(name) candidates = {} for root, dirs, files in os.walk(package): # remove directories not to visit for rem in ['CVS', 'regression', 'Tutorial', 'test', 'Doc', 'doc', 'Icons','Tests']: if rem in dirs: dirs.remove(rem) # look for files that contain the string NodeLibrary newfiles = [] for fi in files: if fi[-3:]=='.py' and not fi[0] in ['#', '.']: for i in fileNameFilters: if i in fi : continue Lines =[] f = open( os.path.join(root, fi) ) data = f.readlines() f.close() found = 0 for line in data: match = pat.search(line) if match: if not candidates.has_key(root): candidates[root] = [] candidates[root].append(fi) break return candidates def findModulesInDirectory(directory, name): """Returns a list of modules for a given directory, in which the string 'name' was found.""" #pat = re.compile(name) candidates = {} olddir = os.getcwd() os.chdir(directory) from glob import glob files = glob("*.py") # look for files that contain the string NodeLibrary for fi in files: Lines =[] f = open( fi ) data = f.readlines() f.close() found = 0 Lines =filter(lambda x:x.startswith(name),data) if Lines!=[]: if not candidates.has_key(root): candidates[root] = [] candidates[root].append(fi) os.chdir(olddir) return candidates def getObjectFromFile(absfile, obj, force=False): """import the object obj from absfile and return it""" direct, file = os.path.split(absfile) sys.path.insert(0, direct) modulepath = file[:-3].replace(os.path.sep, '.') mod = __import__(modulepath, globals(), locals(), [obj]) if force: reload(mod) components = modulepath.split('.') for comp in components[1:]: mod = getattr(mod, comp) sys.path = sys.path[1:] return getattr(mod, obj) def setResourceFolder(folderName): """ Set the name of the resourceFolder """ global resourceFolder resourceFolder = folderName if os.path.isdir(resourceFolder) is False: try: os.mkdir(resourceFolder) except Exception, e: txt = "Resource Folder can't be created in home directory, now using tmp directory %s %s" %(resourceFolder, e) warnings.warn(txt) from tempfile import gettempdir resourceFolder = gettempdir() + os.path.sep + ".mgltools" if not os.path.isdir(resourceFolder): try: os.mkdir(resourceFolder) except: txt = "Running without Resource Folder as it can't be created %s" %resourceFolder warnings.warn(txt) resourceFolder = None return resourceFolder def getResourceFolder(): """ Returns MGLTools resource folder, create it if necessary, returns None if it doesn't exist and can't be created """ global resourceFolder if resourceFolder is None: return None if os.path.isdir(resourceFolder) is False: setResourceFolder(resourceFolder) return resourceFolder def getResourceFolderWithVersion(): """ Returns MGLTools resource folder, create it if necessary, returns None if it doesn't exist and can't be created """ old_rc = getResourceFolder() if old_rc is None: return None from Support.version import __version__ Version = __version__ lRessourceFolder = old_rc + os.sep + Version if os.path.isdir(lRessourceFolder): return lRessourceFolder else: try: os.mkdir(lRessourceFolder) return lRessourceFolder except Exception, inst: print inst print "Cannot create the Resource Folder %s" %lRessourceFolder import tempfile tmpDir = tempfile.gettempdir() print "Using %s insterad" %tmpDir return tmpDir def which (filename): """Source http://mail.python.org/pipermail/python-list/2002-August/157829.html""" if os.access(filename, os.X_OK): return filename if not os.environ.has_key('PATH') or os.environ['PATH'] == '': p = os.defpath else: p = os.environ['PATH'] pathlist = p.split (os.pathsep) for path in pathlist: f = os.path.join(path, filename) if os.access(f, os.X_OK): return f fAlternative = f + '.exe' if os.access(fAlternative, os.X_OK): return fAlternative fAlternative = f + '.sh' if os.access(fAlternative, os.X_OK): return fAlternative fAlternative = f + '.bat' if os.access(fAlternative, os.X_OK): return fAlternative return None mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/regression/0000755000175000017500000000000012146210175022542 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/regression/testplus.py0000644000175000017500000001550011216031311024766 0ustar debiandebian# # The contents of this file are subject to the Mozilla Publics # License Version 1.1 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy of # the License at http://www.mozilla.org/MPL/ # # Software distributed under the License is distributed on an "AS # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or # implied. See the License for the specific language governing # rights and limitations under the License. # # The Original Code is "Java-Python Extension: testplus (JPE-testplus)". # # The Initial Developer of the Original Code is Frederic Bruno Giacometti. # Portions created by Frederic Bruno Giacometti are # Copyright (C) 2002 Frederic Bruno Giacometti. All Rights Reserved. # # Contributor: Frederic Giacometti, frederic.giacometti@arakne.com # from __future__ import nested_scopes import re, sys, os, operator, types def chdir(directory=None): if directory is None: if len(sys.argv): directory = os.path.split(sys.argv[0])[0] if len(directory): os.chdir(directory) def logfile(): global __logfile try: return __logfile except NameError: # add the regression directory to the path so that data files are # found in the local directory cwd = os.getcwd() direc = os.path.split(sys.argv[0])[0] if os.name == 'nt': #sys.platform == 'win32': direc = direc.replace( '/', '\\') if cwd[-len(direc):]!=direc: d = os.path.join( os.getcwd(), os.path.split(sys.argv[0])[0] ) __logfile = open( sys.argv[ 0] + '.log', 'w') else: d = cwd __logfile = open( os.path.split(sys.argv[0])[1] + '.log', 'w') sys.path.append( d ) return __logfile ## connect, disconnect and fun are 3 tuple (fun, args, kw) OR just a function class TestHarness: def __init__( self, name, funs = [], dependents = [], connect = (lambda : None, (), {} ), disconnect = (lambda : None, (), {} ) ): self.name = name self.funs = funs self.dependents = dependents self.connect = connect self.disconnect = disconnect self.count = 0 def __call__( self, fun): try: if type(fun)==types.TupleType: func = fun[0] args = fun[1] kw = fun[2] else: func = fun args = () kw = {} apply( func, args, kw) except: return fun, sys.exc_info() else: return None def __getattr__( self, attr): if attr == 'failures': result = filter( None, self.dependents) if not result: fail = self( self.connect ) if fail: result = [fail] else: for fun in self.funs: self.count += 1 testname = 'TEST%4i %s.%s ' % (self.count, self.name, fun.func_name) if len(testname) < 70: testname = testname + ' '*(65-len(testname)) print testname, prevstdout = sys.stdout #prevstderr = sys.stderr sys.stdout = logfile() # sys.stderr = logfile() try: print testname sys.stdout.flush() res = self( fun) result.append( res ) sys.stdout.flush() finally: sys.stdout = prevstdout #sys.stderr = prevstderr if res is None: print 'PASSED' else: print 'FAILED' result.append( self( self.disconnect)) result = filter( None, result) else: raise AttributeError( attr) setattr( self, attr, result) return result def __len__( self): return len( [x for x in self.failures if not isinstance( x, TestHarness)])\ + reduce( operator.add, [len( x) for x in self.failures if isinstance( x, TestHarness)], 0) def __str__( self): from os import path klass = self.__class__ return '\n'.join( ['LOGFILE is <%s>' % path.abspath( logfile().name), '\nTEST HARNESS %s: %s error%s' ' out of %i tests:' % (self.name, len( self) or 'SUCCESS - no', 1 < len( self) and 's' or '', self.totalcount())] + [re.sub( '\n', '\n ', isinstance( x, TestHarness) and str( x) or apply( self.error2str, x)) for x in self.failures] + ['']) def error2str( self, fun, (exctype, excvalue, tb)): import traceback return '\n%s:\n <%s>\n' % (exctype, excvalue)\ + ''.join( traceback.format_tb( tb.tb_next)) def totalcount( self): return reduce( operator.add, [x.totalcount() for x in self.dependents], self.count) def testcollect( globs, matchfun = lambda x: re.match( 'test', x)): from inspect import getfile, getsourcelines result = [x[ 1] for x in globs.items() if callable( x[ 1]) and matchfun( x[ 0])] result.sort( lambda x, y: cmp( (getfile( x), getsourcelines( x)[ -1]), (getfile( y), getsourcelines( y)[ -1]))) return result ##def timerun( fun, timeout = None, endcallback = lambda : None): ## import threading ## print 'aaaa' ## subthread = threading.Thread( target = fun) ## subthread.setDaemon( 1) ## subthread.start() ## #outer = threading.Timer( timeout, sys.exit) ## print 'bbbb', timeout ## subthread.join( timeout) ## print 'cccc' def prun( args = sys.argv[ 1:]): # win323 loses the stderr for subprocesses ... ?! sys.stderr = sys.stdout globs = {} try: for cmd in args: exec cmd in globs except SystemExit: raise except: import traceback traceback.print_stack() traceback.print_exc() sys.exit( 1) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/regression/testplus_before_2_1.py0000644000175000017500000001604011216031311026751 0ustar debiandebian# # The contents of this file are subject to the Mozilla Publics # License Version 1.1 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy of # the License at http://www.mozilla.org/MPL/ # # Software distributed under the License is distributed on an "AS # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or # implied. See the License for the specific language governing # rights and limitations under the License. # # The Original Code is "Java-Python Extension: testplus (JPE-testplus)". # # The Initial Developer of the Original Code is Frederic Bruno Giacometti. # Portions created by Frederic Bruno Giacometti are # Copyright (C) 2002 Frederic Bruno Giacometti. All Rights Reserved. # # Contributor: Frederic Giacometti, frederic.giacometti@arakne.com # # # Michel Sanner June 28 2002 # # This version of testplus was modified to run with python interpreter # version 1.5.2 and older. # WARNING: the testcollect fucntion will only sort the functions found # with version 2.1 and above. For earlier version the order is # the order of the hasing in global # import re, sys, os, operator import string, types def chdir(directory=None): if directory is None: if len(sys.argv): directory = os.path.split(sys.argv[0])[0] if len(directory): os.chdir(directory) def logfile(): global __logfile try: return __logfile except NameError: # add the regression directory to the path so that data files are # found in the local directory cwd = os.getcwd() direc = os.path.split(sys.argv[0])[0] if os.name == 'nt': #sys.platform == 'win32': direc = string.replace(direc, '/', '\\') if cwd[-len(direc):]!=direc: d = os.path.join( os.getcwd(), os.path.split(sys.argv[0])[0] ) __logfile = open( sys.argv[ 0] + '.log', 'w') else: d = cwd __logfile = open( os.path.split(sys.argv[0])[1] + '.log', 'w') sys.path.append( d ) return __logfile ## connect, disconnect and fun are 3 tuple (fun, args, kw) OR just a function class TestHarness: def __init__( self, name, funs = [], dependents = [], connect = (lambda : None, (), {} ), disconnect = (lambda : None, (), {} ) ): self.name = name self.funs = funs self.dependents = dependents self.connect = connect self.disconnect = disconnect self.count = 0 def __call__( self, fun): try: if type(fun)==types.TupleType: func = fun[0] args = fun[1] kw = fun[2] else: func = fun args = () kw = {} apply( func, args, kw) except: return fun, sys.exc_info() else: return None def __getattr__( self, attr): if attr == 'failures': result = filter( None, self.dependents) if not result: fail = self( self.connect ) if fail: result = [fail] else: for fun in self.funs: self.count = self.count + 1 testname = 'TEST%4i %s.%s ' % (self.count, self.name, fun.func_name) if len(testname) < 70: testname = testname + ' '*(65-len(testname)) print testname, prevstdout = sys.stdout #prevstderr = sys.stderr sys.stdout = logfile() # sys.stderr = logfile() try: print testname sys.stdout.flush() res = self( fun) result.append( res ) sys.stdout.flush() finally: sys.stdout = prevstdout #sys.stderr = prevstderr if res is None: print 'PASSED' else: print 'FAILED' result.append( self( self.disconnect)) result = filter( None, result) else: raise AttributeError( attr) setattr( self, attr, result) return result def __len__( self): l1 = len( filter(lambda x: not isinstance( x, TestHarness), self.failures) ) l2 = reduce(operator.add, map( len, filter( lambda x: isinstance( x, TestHarness), self.failures ) ), 0) val = l1+l2 return val def __str__( self): from os import path klass = self.__class__ return string.join( ['\n', 'LOGFILE is <%s>' % path.abspath( logfile().name), '\nTEST HARNESS %s: %s error%s' ' out of %i tests:' % (self.name, len( self) or 'SUCCESS - no', 1 < len( self) and 's' or '', self.totalcount())] + map(lambda x, self=self: re.sub( '\n', '\n ', isinstance( x, TestHarness) and str( x) or apply( self.error2str, x)), self.failures) + ['']) def error2str( self, fun, (exctype, excvalue, tb)): import traceback return '\n%s:\n <%s>\n' % (exctype, excvalue) + \ string.join([''] + traceback.format_tb( tb.tb_next)) def totalcount( self): return reduce( operator.add, map(lambda x: x.totalcount(), self.dependents), self.count) def getfile(x): return x.func_code.co_filename def getsourcelines(x): return [x.func_code.co_firstlineno] def testcollect( globs, matchfun = lambda x: re.match( 'test', x)): result = [] for x in globs.items(): if callable( x[ 1]) and matchfun( x[ 0]): result.append(x[1]) result.sort( lambda x, y: cmp( (getfile( x), getsourcelines( x)[ -1]), (getfile( y), getsourcelines( y)[ -1]))) return result def prun( args = sys.argv[ 1:]): # win323 loses the stderr for subprocesses ... ?! sys.stderr = sys.stdout globs = {} try: for cmd in args: exec cmd in globs except SystemExit: raise except: import traceback traceback.print_stack() traceback.print_exc() sys.exit( 1) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/regression/__init__.py0000644000175000017500000000026407510630374024663 0ustar debiandebianimport sys import string VERSION = string.split(sys.version)[0] if VERSION >= '2.1': import testplus else: import testplus_before_2_1 testplus = testplus_before_2_1 mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/events.py0000644000175000017500000000513212055237554022252 0ustar debiandebian############################################################################# # # Author: Michel F. SANNER # # Copyright: M. Sanner TSRI 2011 # # ######################################################################### # # $Header: /opt/cvs/python/packages/share1.5/mglutil/events.py,v 1.4 2012/11/27 22:32:12 sanner Exp $ # # $Id: events.py,v 1.4 2012/11/27 22:32:12 sanner Exp $ # from time import time import warnings class Event: """Base class for ViewerFramework events. """ def __init__(self, *args, **kw): """ """ self.timestamp = time() self.args = args self.kw = kw class EventHandler: """This class adds methods for registening functions called listeners to be called upon a particular Event. """ def __init__(self): self.eventListeners = {} def registerListener(self, event, function): """ registers a function to be called for a given event. event has to be a class subclassing VFEvent None <- registerListener(event, function) arguments: event: event class function: callable object that will be called with the event instance as an argument. """ assert issubclass(event, Event) assert callable(function) if not self.eventListeners.has_key(event): self.eventListeners[event] = [function] else: if function in self.eventListeners[event]: warnings.warn('function %s already registered for event %s'%( function,event)) else: self.eventListeners[event].append(function) def unregisterListener(self, event, function): """ unregisters a function to be called for a given event. event has to be a class subclassing VFEvent None <- unregisterListener(event, function) arguments: event: event class function: callable object that will be called with the event instance as an argument. """ if self.eventListeners.has_key(event): if function in self.eventListeners[event]: self.eventListeners[event].remove(function) def dispatchEvent(self, event): """call all registered listeners for this event type. arguments: event: instance of an event """ assert isinstance(event, Event) if self.eventListeners.has_key(event.__class__): for func in self.eventListeners[event.__class__]: func(event) ## TODO add unregisterListener method mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/Tests/0000755000175000017500000000000012146210177021466 5ustar debiandebianmgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/Tests/__init__.py0000644000175000017500000000004410405655120023572 0ustar debiandebianignore = {"test_dependencies" : []} mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/Tests/test_dependencies.py0000644000175000017500000000160611216031311025514 0ustar debiandebian# ################################################################# # Author: Sowjanya Karnati ################################################################# # #Purpose:To update dependencies list # # $Id: test_dependencies.py,v 1.5 2009/06/17 00:03:21 vareille Exp $ from mglutil.TestUtil.Tests.dependenciestest import DependencyTester import unittest,sys d = DependencyTester() result_expected =[] class test_dep(unittest.TestCase): def test_dep_1(self): if os.name != 'nt': #sys.platform != 'win32': result = d.rundeptester('mglutil') if result !=[]: print "\nThe Following Packages are not present in CRITICAL or NONCRITICAL DEPENDENCIES of mglutil :\n %s" %result self.assertEqual(result,result_expected) else: self.assertEqual(result,result_expected) if __name__ == '__main__': unittest.main() mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/__init__.py0000644000175000017500000000032611500540376022476 0ustar debiandebianCRITICAL_DEPENDENCIES = [] NONCRITICAL_DEPENDENCIES = ['numpy', 'MolKit', 'Pmw', 'bhtree', '_subprocess', 'Pmv', 'ViewerFramework', 'PIL', 'FlexTree', 'idlelib', 'DejaVu','distutils', 'Support'] __revision__ = '0' mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/alignmentEditor.py0000644000175000017500000007302410651433500024065 0ustar debiandebian## Automatically adapted for numpy.oldnumeric Jul 23, 2007 by # # $Header: /opt/cvs/python/packages/share1.5/mglutil/alignmentEditor.py,v 1.7 2007/07/24 17:30:40 vareille Exp $ # # $Id: alignmentEditor.py,v 1.7 2007/07/24 17:30:40 vareille Exp $ # import os import numpy.oldnumeric as Numeric from mglutil.math import rigidFit from MolKit import pdbWriter import Tkinter import tkFileDialog import string import Pmw oneLetterNames = {'ALA':'A','CYS':'C','ASP':'D','GLU':'E','PHE':'F','GLY':'G', 'HIS':'H','ILE':'I','LYS':'K','LEU':'L','MET':'M','ASN':'N', 'PRO':'P','GLN':'Q','ARG':'R','SER':'S','THR':'T','VAL':'V', 'TRP':'W','TYR':'Y'} threeLetterNames = oneLetterNames.keys() residueColors = {'A':'black', 'C':'black', 'D':'black', 'E':'black', 'F':'black', 'G':'black', 'H':'black', 'I':'black', 'K':'black', 'L':'black', 'M':'black', 'N':'black', 'P':'black', 'Q':'black', 'R':'black', 'S':'black', 'T':'black', 'V':'black', 'W':'black', 'Y':'black'} Fitter = rigidFit.RigidfitBodyAligner class Sequence: def __init__(self,sequence=None, numbers=None, name=None): """ numbers is an optional list, same length as sequence, with the corresponding sequence numbers. Note that gaps are also numbered """ self.name = name self.sequence = [] if sequence: for i in range(len(sequence)): resName = sequence[i] if len(resName)!=1: if resName in threeLetterNames: residue = oneLetterNames[resName] elif '-' in resName: residue = '-' else: residue = 'X' else: residue = string.upper(resName) self.sequence.append(residue) self.applyNumbers(numbers) def applyNumbers(self,numbers=None): gapMap = map(lambda x: x in ['-','|'],self.sequence) ngaps = Numeric.sum(gapMap) nresidues = len(gapMap)-ngaps if numbers is None: numbers = map(lambda x: str(x+1),range(nresidues)) if len(numbers)!=nresidues: raise ValueError('Numbers do not correspond to all residues') self.numbers = numbers count=0 newnumbers = [] for i in gapMap: if i: newnumbers.append('') else: newnumbers.append(str(numbers[count])) count=count+1 self.gappednumbers = newnumbers def __repr__(self): repr = '' for residue in self.sequence[:10]: repr = repr+residue repr = ' %s: %10s...' % (self.name,repr) return repr def __len__(self): return len(self.sequence) def __add__(self,other): """ Currently this will renumber everything from scratch to avoid duplication of residue numbers """ sequence = self.sequence + other.sequence return Sequence(name=self.name,sequence=sequence) def __getitem__(self,index): return self.sequence[index] class Alignment: """ Base class for a sequence alignment. Data is a dictionary with molecule identifiers as keys and the aligned sequences as values""" def __init__(self,sequences=None,name=None): self.name = name self.sequences={} self.seqNames=[] if sequences: for sequence in sequences: self.addSequence(name=sequence.name,sequence=sequence) self.writer = pdbWriter.PdbWriter() def __repr__(self): if len(self.sequences)>0: repr = ' with %d sequences of length %d:' % ( len(self.sequences),len(self)) else: repr = ' with 0 sequences' return repr def __len__(self): if len(self.sequences)>0: return len(self[0]) return 0 def __add__(self,other): new_aln = Alignment() for seqName in self.seqNames: new_aln.addSequence(self.sequences[seqName]) for seqName in other.seqNames: new_aln.addSequence(other.sequences[seqName]) return new_aln def __getitem__(self,index): if type(index)==type(1): #return a single sequence: seqName = self.seqNames[index] return self.sequences[seqName] elif type(index)==type(slice(1)): #return another alignment aln = Alignment() seqNames = self.seqNames[index.start:index.stop] for seqName in seqNames: aln.addSequence(sequence=self.sequences[seqName]) return aln def read(self,alnFileName): data = open(alnFileName).readlines() if data[0][:7]!='CLUSTAL': print 'Not a clustalformatted file' return None sequences = {} seqNames = [] for line in data[1:]: if line[0].isalnum(): info = line.split() seqName = info[0] seqData = info[1] if not sequences.has_key(seqName): sequences[seqName]=Sequence(name=seqName) seqNames.append(seqName) sequences[seqName] = sequences[seqName]+Sequence(sequence=seqData) for seqName in seqNames: #if seqName matches a current sequence, need to rehash this sequence with the new # arrangement of gaps, but keep the old numbers #NB -this assumes the old and new sequences have the same number of residues!! index = None if seqName in self.seqNames: # get the old numbering, stripped of gaps sequence = self.sequences[seqName] numbers = [] for number in sequence.numbers: if number != '': numbers.append(number) #remove the old copy of the sequence (with the old gaps) from the alignment index = self.seqNames.index(seqName) self.deleteSequence(seqName) #replace the read sequence's numbering system with the new one sequences[seqName].applyNumbers(numbers) self.addSequence(sequences[seqName],index) def write(self,alnFileName): outfile = open(alnFileName,'w') title = 'CLUSTAL W multiple sequence alignment\n\n' outfile.write(title) nsegments = int(len(self)/60.)+1 for x in range(nsegments): for sequence in self: outstring = sequence.name.ljust(16) for residue in sequence.sequence[60*x:60*x+60]: outstring = outstring + residue outfile.write(outstring+'\n') outfile.write('\n\n') outfile.close() def trim(self): """get rid of any universal gaps in the alignment. """ #make sure we have an alignment if len(self)==0: return #make sure we have an up-to-date matrix if not hasattr(self,'matrix'): self.makeMatrix() nsequences,nresidues = Numeric.shape(self.matrix) if (nsequences != len(self.sequences) or nresidues != len(self)): self.makeMatrix() transpose = Numeric.transpose(self.matrix) gaplist = [] #any row with sum=0 in the transpose corresponds to a column in the alignment #which is all gaps. So add the positions of these columns to the gaplist for x in range(len(transpose)): line = transpose[x] if Numeric.sum(line)==0: gaplist.append(x) #now can simply pop the unwanted gaps out of each sequence. gaplist.reverse() for sequence in self: for gap in gaplist: junk=sequence.sequence.pop(gap) junk=sequence.gappednumbers.pop(gap) def makeMatrix(self): """ Sets up a matrix (nsequences x len(sequences), the elements of which are 0 for a gap, 1 for anything else. Used by the trim command""" self.matrix = [] for x in range(len(self.sequences)): numbers = self[x].gappednumbers line = map(lambda x: x != '',numbers) self.matrix.append(line) self.matrix = Numeric.array(self.matrix) def addSequence(self,sequence,index=None): """add a sequence to the alignment. Gets tagged on to the end unless index is supplied, when it will be inserted at that position """ if self.sequences: difflen = len(sequence)-len(self) if difflen >0: seqNames = self.sequences.keys() addOn = difflen*'-' for seqName in seqNames: self.sequences[seqName] = self.sequences[seqName]+Sequence(sequence=addOn) elif difflen <0: difflen = -difflen addOn = difflen*'-' sequence = sequence + Sequence(sequence=addOn) self.sequences[sequence.name]=sequence if index is None: self.seqNames.append(sequence.name) else: self.seqNames = self.seqNames[:index]+[sequence.name]+self.seqNames[index:] def deleteSequence(self,sequenceName): if sequenceName not in self.seqNames: return del(self.sequences[sequenceName]) idx = self.seqNames.index(sequenceName) junk = self.seqNames.pop(idx) class AlignmentEditor(Tkinter.Frame): """ GUI for editing sequence alignments. Note to self (and anyone else who cares...): the top thing on the window is bottom of the displayList...""" def __init__(self,alignment=None,master=None,name=None,**kw): self.name=name self.xspace = 10 self.yspace = 20 self.selection = () self.selectionTags = [] self.colors = residueColors self.colors['default']='black', self.colors['selection']='yellow' self.colors['|']='magenta' #somewhere to store any tagspecifc colors self.colors['special']={} self.Master=master if alignment: self.alignment = alignment self.name = alignment.name else: self.alignment = Alignment() self.createGUI() def createGUI(self): #self.widgetArea = Tkinter.Frame(self, borderwidth=2, relief='sunken') #if self.hasGUI: # return if self.Master is None: master = Tkinter.Tk() else: master = Tkinter.Toplevel(self.Master) master.title('Alignment Editor') Tkinter.Frame.__init__(self,master) Tkinter.Pack.config(self, expand=1, fill=Tkinter.BOTH) self.createMenus() self.canvasFrame = Tkinter.Frame(self) self.canvas = Pmw.ScrolledCanvas(self.canvasFrame,usehullsize=1, hull_width=600,hull_height=200, hscrollmode='dynamic', vscrollmode='dynamic', canvasmargin=1) self.canvas.pack(side=Tkinter.LEFT,expand=1,fill=Tkinter.BOTH) self.canvasFrame.pack(side=Tkinter.LEFT,expand=1,fill=Tkinter.BOTH) self.canvas._canvas.bind("",self.mouseDown) self.canvas._canvas.bind("",self.mouseMotion) self.canvas._canvas.bind("",self.mouseUp) self.canvas._canvas.bind("",self.startSelection) self.canvas._canvas.bind("",self.continueSelection) self.canvas._canvas.bind("",self.mouseSelect) self.canvas._canvas.bind("",self.startSelection) self.canvas._canvas.bind("",self.continueSelection) self.canvas._canvas.bind("",self.mouseDeselect) self.fillCanvas() #self.hasGUI = 1 def startSelection(self,event=None): #print 'In startSelection' self.x0 = self.canvas.canvasx(event.x) self.y0 = self.canvas.canvasy(event.y) def continueSelection(self,event=None): #print 'In continueSelection' self.x1=self.canvas.canvasx(event.x) self.y1=self.canvas.canvasy(event.y) self.clearSelBox() self.canvas.create_line(self.x0,self.y0,self.x1,self.y0,tags=('selBox')) self.canvas.create_line(self.x0,self.y0,self.x0,self.y1,tags=('selBox')) self.canvas.create_line(self.x0,self.y1,self.x1,self.y1,tags=('selBox')) self.canvas.create_line(self.x1,self.y0,self.x1,self.y1,tags=('selBox')) def clearSelBox(self): #print 'In clearSelBox' items = self.canvas.find_withtag('selBox') for item in items: self.canvas.delete(item) def mouseSelect(self,event=None,deselect=0): """ deselect=1 if removing selection """ #print 'In select' self.x1=self.canvas.canvasx(event.x) self.y1=self.canvas.canvasy(event.y) self.clearSelBox() items = self.canvas.find_overlapping(self.x0,self.y0,self.x1,self.y1) #print items self.select(items,deselect) def select(self,items,deselect=0): if not items: return self.lastSelect = [deselect,[]] for item in items: resTag,seqTag,uniqTag = self.canvas.gettags(item)[:3] if not deselect: if item not in self.selection: self.canvas.itemconfig(item,fill=self.colors['selection']) self.canvas.addtag_withtag('selected',uniqTag) else: if item in self.selection: self.canvas.itemconfig(item,fill=self.colors['default']) self.canvas.dtag(item,'selected') self.lastSelect[1].append(item) self.selection = self.canvas.find_withtag('selected') self.rebuildSelectionTags() def rebuildSelectionTags(self): #print 'In rebuildSelectionTags' self.selectionTags = [] for item in self.selection: self.selectionTags.append(self.canvas.gettags(item)) def mouseDeselect(self,event=None): #print 'In deselect' self.mouseSelect(event=event,deselect=1) def clearSelection(self): #print 'In clearSelection' self.updateColor(self.selectionTags,self.colors['default']) self.canvas.dtag('all','selected') self.selection = () self.selectionTags = [] def mouseDown(self, event=None): #print 'In mouseDown' # this method has to figure out where we are on the canvas when the button is pressed tags = self.canvas.gettags('current') #markers for the mousemotion self.x0 = self.canvas.canvasx(event.x) self.y0 = self.canvas.canvasy(event.y) #return if tags: self.resTag = tags[0] self.seqTag = tags[1] self.uniqTag = tags[2] self.currentResidue=self.canvas.find_withtag(self.uniqTag) self.currentSeq=self.canvas.find_withtag(self.seqTag) self.findAllToRight() self.findToLeft() self.findNeighborSequences() def findNeighborSequences(self): currTag = self.seqTag currIndex = self.alignment.seqNames.index(currTag) if currIndex != len(self.alignment.seqNames)-1: nextTag = self.alignment.seqNames[currIndex+1] self.nextSeq = self.canvas.find_withtag(nextTag) else: self.nextSeq = () if currIndex != 0: prevTag = self.alignment.seqNames[currIndex-1] self.prevSeq = self.canvas.find_withtag(prevTag) else: self.prevSeq = () def findAllToRight(self): #print 'In findAllToRight' currentSeq = list(self.currentSeq) index= currentSeq.index(self.currentResidue[0]) self.allToRight = tuple(currentSeq[index:]) def findToLeft(self): #print 'In findToLeft' currentResidue = self.currentResidue if currentResidue[0] == self.canvas.find_all()[0]: return None prevResidue = self.canvas.find_below(currentResidue) tags = self.canvas.gettags(prevResidue) self.toLeft = prevResidue def mouseMotion(self, event=None): #print 'In mouseMotion' self.x1 = self.canvas.canvasx(event.x) self.y1 = self.canvas.canvasy(event.y) tags = self.canvas.gettags(self.currentResidue) #dragging to left closes a gap. Can't be done if there is no gap. if (self.x1 < self.x0-self.xspace and self.canvas.itemcget(self.toLeft,'text')=='-' and 'movable' in tags): self.closeGap() #dragging to right opens a gap. Can always be done. if (self.x1 > self.x0+self.xspace and 'movable' in tags): self.openGap() #dragging up swaps current and previous sequences if self.y1 > self.y0+self.yspace: self.swapSequences(self.currentSeq,self.nextSeq,direction='down') if self.y1 < self.y0-self.yspace: self.swapSequences(self.prevSeq,self.currentSeq,direction='up') def swapSequences(self,topSequence,bottomSequence,direction): #print 'In swapSequences' #check both sequences exist: if not (topSequence and bottomSequence): return currTag = self.seqTag seqIndex = self.alignment.seqNames.index(currTag) #move the sequences up and down: for item in topSequence: self.canvas.move(item,0,self.yspace) for item in bottomSequence: self.canvas.move(item,0,-self.yspace) #reset the starting coordinates and update the #displaylist. Also update the order of the alignment sequences if direction=='down': #swapping currentSeq and nextSeq nextTag = self.alignment.seqNames[seqIndex+1] self.alignment.seqNames[seqIndex]=nextTag self.alignment.seqNames[seqIndex+1]=currTag self.y0 = self.y0+self.yspace items = list(self.currentSeq) items.reverse() for item in items: self.canvas._canvas.lift(item,(self.nextSeq[-1],)) else: #swapping prevSeq and currentSeq prevTag = self.alignment.seqNames[seqIndex-1] self.alignment.seqNames[seqIndex]=prevTag self.alignment.seqNames[seqIndex-1]=currTag self.y0 = self.y0-self.yspace items = list(self.prevSeq) items.reverse() for item in items: self.canvas._canvas.lift(item,(self.currentSeq[-1],)) self.findToLeft() self.findNeighborSequences() def closeGap(self): # delete the gap item self.canvas.delete(self.toLeft) # update self.toLeft self.findToLeft() # move current item to left for item in self.allToRight: self.canvas.move(item, -self.xspace, 0) #need to tag this sequence as edited tags = self.canvas.gettags(self.currentResidue) if 'edited' not in tags: self.canvas.addtag_withtag('edited',tags[1]) #then need to reset x0, so it can be repeated: self.x0 = self.x0-self.xspace def openGap(self): #find out where we are so we know where to insert coordx,coordy = self.canvas.coords(self.currentResidue) #move everything that is to the right, even further to the right for item in self.allToRight: self.canvas.move(item, self.xspace, 0) #insert a gap at the current coordinates tags = self.canvas.gettags(self.currentResidue) restag,seqtag,uniqtag = tags[:3] restag = 'gap'+str(self.gapnum) self.gapnum = self.gapnum+1 uniqtag = seqtag+'_'+restag #need to tag this particular sequence as edited if 'edited' not in tags: self.canvas.addtag_withtag('edited',seqtag) #need to add the new gap, also tagged as edited self.canvas.create_text(coordx,coordy, text='-', tags=(restag,seqtag,uniqtag,'movable','edited')) #need to resize scroll region to accomodate new gap self.canvas.resizescrollregion() #then need to move things around in the displaylist so that the new item #is just below the old one (i.e just above toLeft) newItem = self.canvas.find_all()[-1] self.canvas._canvas.lift(newItem,self.toLeft) #then need to redefine the current sequence self.currentSeq=self.canvas.find_withtag(self.seqTag) #need to find the new toLeft self.findToLeft() #then need to reset x0, so it can be repeated: self.x0 = self.x0+self.xspace def mouseUp(self, event=None): self.remakeAlignment() #self.redraw() return def remakeAlignment(self): """Replaces the edited sequences in the underlying alignment. """ seqStr = None edited = self.canvas.find_withtag('edited') if edited ==(): return for item in edited: tags = self.canvas.gettags(item) if tags[0] == 'name': if seqStr: sequence = Sequence(name=sequenceName,sequence=seqStr) self.alignment.deleteSequence(sequenceName) self.alignment.addSequence(sequence,index) sequenceName = tags[1] index = self.alignment.seqNames.index(sequenceName) seqStr='' else: seqStr = seqStr+self.canvas.itemcget(item,'text') sequence = Sequence(name=sequenceName,sequence=seqStr) #tag on the final sequence self.alignment.deleteSequence(sequenceName) self.alignment.addSequence(sequence,index) self.canvas.dtag('all','edited') def createMenus(self): #print 'In createMenus' self.mBar = Tkinter.Frame(self, relief=Tkinter.RAISED,borderwidth=2) self.mBar.pack(fill=Tkinter.X) self.menuButtons = {} self.makeFileMenu() self.makeEditMenu() apply(self.mBar.tk_menuBar, self.menuButtons.values()) self.title = Tkinter.Label(self.mBar, text=self.name) self.title.pack(side=Tkinter.RIGHT) def makeFileMenu(self): #print 'In makeFileMenu' File_button = Tkinter.Menubutton(self.mBar, text='File',underline=0) self.menuButtons['File'] = File_button File_button.pack(side = Tkinter.LEFT, padx='1m') File_button.menu = Tkinter.Menu(File_button) File_button.menu.add_command(label='Load...', underline=0, command = self.loadFile) File_button.menu.add_command(label='Write...', underline=0, command = self.writeFile) File_button.menu.add_command(label='Exit...', underline=0, command = self.exit) File_button['menu'] = File_button.menu def loadFile(self): #print 'In loadFile' title = 'Read CLUSTAL formatted alignment file' types = [('CLUSTAL files', '*.aln')] file = tkFileDialog.askopenfilename( filetypes=types, title=title) if file: self.alignment.read(file) self.redraw() def writeFile(self): #print 'In writeFile' #self.remakeAlignment() # always done in mouseUp #self.redraw() # horribly expensive title = 'Save CLUSTAL formatted alignment file' types = [('CLUSTAL files', '*.aln')] file = tkFileDialog.asksaveasfilename( filetypes=types, title=title) if file and self.alignment: self.alignment.write(file) def fillCanvas(self): print 'Filling Canvas' yCoord = 0 sequences = self.alignment.sequences seqNames = self.alignment.seqNames seqCount=0 self.gapnum=gapnum=0 for seqName in seqNames: seqCount=seqCount+1 seqTag = seqName sequence=sequences[seqName].sequence numbers =sequences[seqName].gappednumbers resTag = 'name' #print seqTag,resTag uniqTag = seqTag+'_'+resTag self.canvas.create_text(0,yCoord,text=seqName,tags=(resTag,seqTag,uniqTag)) for xCoord in range(len(self.alignment)): resName = sequence[xCoord] resTag = numbers[xCoord] #need unique tags for gaps too if resTag == '': resTag = 'gap'+str(gapnum) gapnum=gapnum+1 uniqtag = seqTag+'_'+resTag try: fillColor = self.colors[resName] except: fillColor = self.colors['default'] self.canvas.create_text(100+xCoord*self.xspace,yCoord, text=resName, fill=fillColor, tags=(resTag,seqTag,uniqtag,'movable')) yCoord = yCoord+self.yspace self.canvas.resizescrollregion() print 'updating colors' self.updateColor(self.selectionTags,'yellow') self.updateSpecialColor() print 'Done' def updateSpecialColor(self): if self.colors['special']=={}: return for tag in self.colors['special'].keys(): item = self.canvas.find_withtag(tag)[0] self.canvas.itemconfig(item,fill=self.colors['special'][tag]) def updateColor(self,tags,color): #print 'In updateColor' if not tags: return #print tags for tag in tags: item = self.canvas.find_withtag(tag[2]) self.canvas.itemconfig(item,fill=color) def exit(self, event=None): if self.Master is not None: self.master.withdraw() else: self.master.destroy() def makeEditMenu(self, event=None): #print 'In makeEditMenu' Edit_button = Tkinter.Menubutton(self.mBar, text='Edit',underline=0) self.menuButtons['Edit'] = Edit_button Edit_button.pack(side = Tkinter.LEFT, padx='1m') Edit_button.menu = Tkinter.Menu(Edit_button) Edit_button.menu.add_command(label='Redraw', underline=0, command = self.redraw) Edit_button.menu.add_command(label='Clear Selection', underline=0, command = self.clearSelection) Edit_button.menu.add_command(label='Delete Selected Sequences', underline=0, command = self.deleteSelectedSequences) #Edit_button.menu.add_command(label='Delete Selected Residues', underline=0, # command = self.deleteSelectedResidues) Edit_button.menu.add_command(label='Trim Gaps', underline=0, command = self.trim) Edit_button['menu'] = Edit_button.menu def trim(self): self.alignment.trim() self.redraw() def deleteSelectedSequences(self): if self.selectionTags==[]: return while self.selection: firstSeqName = self.canvas.gettags(self.selection[0])[1] self.deleteSequence(firstSeqName) self.redraw() def deleteSequence(self,seqName): self.alignment.deleteSequence(seqName) items = self.canvas.find_withtag(seqName) if len(items): for item in items: tags = self.canvas.gettags(item) self.canvas.delete(item) try: del self.colors['special'][tags[2]] except: continue self.selection = self.canvas.find_withtag('selected') self.rebuildSelectionTags() def deleteSelectedResidues(self): #print 'In deleteSelection' #if selection is empty get out if self.selectionTags==[]: return #get hold of a list of selected residues selSeq = map(lambda x: x[1], self.selectionTags) #uniquify it uniqSelSeq = [selSeq[0]] for seq in selSeq[1:]: if seq != uniqSelSeq[-1]: uniqSelSeq.append(seq) #for each sequence, build a new sequence minus the selected tags, and #update the alignment for seqName in uniqSelSeq: sequence = [] residues = self.canvas.find_withtag(seqName) for residue in residues[1:]: tags = self.canvas.gettags(residue) if 'selected' not in tags: sequence.append(self.canvas.itemcget(residue,'text')) sequence = Sequence(name=seqName,sequence=sequence) index= self.alignment.seqNames.index(seqName) self.alignment.deleteSequence(seqName) self.alignment.addSequence(sequence,index) self.selectionTags=[] # can't have any tags if the selection is all gone... self.redraw() def redraw(self, event=None): self.canvas.delete('all') self.fillCanvas() if __name__ == '__main__': aln = AE.Alignment() aln.read('pdb1tab.aln') edt = AE.AlignmentEditor(alignment=aln) mgltools-mglutil-1.5.7~rc1~cvs.20130519/mglutil/popen2Threads.py0000644000175000017500000001704011153610111023443 0ustar debiandebianimport sys, os from threading import Thread import Pmw, Tkinter import Queue try: import subprocess except ImportError: import process as subprocess if sys.platform=='win32': mswin = True else: mswin = False ## TODO: ## -kill button under windows class SysCmdInThread(Thread): """This class is use the run a child process in a separate thread, so that reading its stdout and stderr streams will no block the parent process. The strings printed by the child to stdout and stderr are dispalyed in a Pmw ScrolledText widget. A kill button allows killing the job (after confirmation) The 'Ok' button dissmisses the GUI. The 'Ok' button only becomes enabled after the child process has completed. WARNING: if the child process runs a python interpreter, pass the -u command line argument to prevent python from buffering the output. IMPLEMENTATION NOTES: This uses the pyexpect module for posix systems and the popen5.process.py reference implementation of PEP 324 PEP 324, http://www.python.org/peps/pep-0324.html The windows implementation requires the win32all extensions to be installed http://sourceforge.net/project/showfiles.php?group_id=78018 """ def __init__(self, cmdstring, input=None, hasGui=True, shell = False): Thread.__init__(self, name="Producer") self.gui = hasGui self.input = input self.debug = 0 # to print debug message self.cmdstring = cmdstring self.output = Queue.Queue(-1) # Thread safe queue infinite size self.shell = shell if self.gui: self.root = Tkinter.Toplevel() if type(cmdstring) == list: cmdLine = ' '.join(cmdstring) else: cmdLine = cmdstring self.root.title(cmdLine) self.root.config(cursor='watch') fixedFont = Pmw.logicalfont('Fixed') self.stdoutTk = Pmw.ScrolledText( self.root, labelpos = 'nw', label_text='stdout', usehullsize = 1, hull_width = 700, hull_height = 500, text_wrap='none', text_font = fixedFont, text_foreground = 'blue', text_background='white' ) self.stdoutTk.pack(expand=True, fill='both') self.stdoutTk.insert('end', "Running: " + cmdLine +"\n") self.cursor = self.stdoutTk.component('text').config('cursor')[-1] self.stdoutTk.component('text').config(cursor='watch') f = Tkinter.Frame(self.root) f.pack(fill='x') #Tkinter.Label(f, text=' ').pack(side='right') #spacer if not mswin: self.kill = Tkinter.Button(f, text=' Kill ', command=self.kill_cb) self.kill.pack(side='right') self.ok = Tkinter.Button(f, text='OK', command=self.ok_cb, state='disabled') self.ok.pack(side='right', expand=True, fill='x') self.update_me() def run(self): done = False try: self.com = subprocess.Popen(self.cmdstring, stdin=subprocess.PIPE,\ stdout=subprocess.PIPE,stderr=subprocess.STDOUT, shell=self.shell) except Exception, inst: # FIXME: Segmentation fault is not handled #print >>sys.stderr, "Execution failed:", inst self.output.put(inst) self.output.put(None) return inp, out, err = (self.com.stdin, self.com.stdout, self.com.stderr) # send data to stdin if self.input is not None: map( lambda x, f=inp: f.write("%s\n"%x), self.input) inp.close() while not done: data = out.readline() if data=='': done = True else: self.output.put(data) # only there for debug, you should access the stdout and stderr # by parsing self.output if self.debug: print data self.output.put(None) def update_me(self): try: while 1: line = self.output.get_nowait() if line is None: self.ok.configure(state='normal') if not mswin: self.kill.configure(state='disabled') self.stdoutTk.component('text').config(cursor=self.cursor) self.root.config(cursor='') return else: if type(line) == type('s'): line = line.replace('\r','') self.stdoutTk.insert('end', line) self.stdoutTk.component('text').yview('end') self.root.update_idletasks() except Queue.Empty: pass self.root.after(10, self.update_me) def kill_cb(self, event=None): if not mswin: import signal, Tkinter from SimpleDialog import SimpleDialog text = "Do you really want to kill this process?" d = SimpleDialog(Tkinter._default_root, text=text, buttons=["Yes", "No"], default=0, title="Kill process") result = d.go() if result==0: try: os.kill(self.com.pid,signal.SIGKILL) except: pass else: pass def ok_cb(self, event=None): self.root.destroy() #self.stdoutTk.destroy() #self.stderrTk.destroy() #pgm = os.path.join('.', 'Binaries', sys.platform, 'rbox') #cmd1 = SysCmdInThread('%s c d D2'%pgm) #cmd1.start() #cmd2 = SysCmdInThread('%s -u except.py'%sys.executable) #cmd2.start() #cmd3 = SysCmdInThread('%s -u bigLoop.py'%sys.executable) #cmd3.start() #cmd4 = SysCmdInThread('%s -u longJob.py'%sys.executable)#, hasGui=False) #cmd4.start() #cmd5 = SysCmdInThread('C:\\cygwin\\usr\\local\\bin\\msms -if test.xyzr -de 3.0') #cmd5 = SysCmdInThread('msms -if 1gav.xyzr -de 3.0') #cmd5.start() #data = cmd1.output #print "****************" #for d in data: print d #print "****************" # WARNING HERE WE NEED to make sure cmd1. finished before we can run #pgm = os.path.join('.', 'Binaries', sys.platform, 'qhull') #cmd6 = SysCmdInThread('%s Qc s f Fx'%pgm, input=cmd1.output) #cmd6.start() ## # QSLIM DECIMATION EXAMPLE ## f = open('1crn.smf') ## datain = f.readlines() ## f.close() ## from popen5 import process ## p = process.Popen('propslim 5000', ## stdin=process.PIPE, stdout=process.PIPE) ## inp, out, err = (p.stdin, p.stdout, p.stderr) ## # send input ## map( lambda x, f=inp: f.write("%s\n"%x), datain) ## inp.close() ## data = out.readlines() ## vertices = [] ## faces = [] ## normals = [] ## colors = [] ## for l in data: ## w = l.split() ## if w[0]=='v': ## vertices.append( [float(w[1]),float(w[2]),float(w[3])] ) ## elif w[0]=='f': ## faces.append( [int(w[1])-1,int(w[2])-1,int(w[3])-1] ) ## if w[0]=='n': ## normals.append( [float(w[1]),float(w[2]),float(w[3])] ) ## if w[0]=='c': ## colors.append( [float(w[1]),float(w[2]),float(w[3])] ) ## from DejaVu import Viewer ## vi = Viewer() ## from DejaVu.IndexedPolygons import IndexedPolygons ## pol = IndexedPolygons('decimated', vertices=vertices, faces=faces, ## vnormals=normals, materials=colors) ## vi.AddObject(pol) mgltools-mglutil-1.5.7~rc1~cvs.20130519/setup.py0000640000175000017500000001021711370610355020416 0ustar debiandebian#!/usr/bin/env python from distutils.core import setup from distutils.command.sdist import sdist from distutils.command.install_data import install_data from glob import glob import os ######################################################################## # Had to overwrite the prunefile_list method of sdist to not # remove automatically the RCS/CVS directory from the distribution. ######################################################################## class modified_sdist(sdist): def prune_file_list(self): """ Prune off branches that might slip into the file list as created by 'read_template()', but really don't belong there: * the build tree (typically 'build') * the release tree itself (only an issue if we ran 'sdist previously with --keep-temp, or it aborted) """ build = self.get_finalized_command('build') base_dir = self.distribution.get_fullname() self.filelist.exclude_pattern(None, prefix=build.build_base) self.filelist.exclude_pattern(None, prefix=base_dir) class modified_install_data(install_data): def run(self): install_cmd = self.get_finalized_command('install') self.install_dir = getattr(install_cmd, 'install_lib') return install_data.run(self) ######################################################################## # list of the python packages to be included in this distribution. # sdist doesn't go recursively into subpackages so they need to be # explicitaly listed. # From these packages only the python modules will be taken packages = ['mglutil', 'mglutil.TestUtil', 'mglutil.Tests', 'mglutil.gui', 'mglutil.gui.BasicWidgets', 'mglutil.gui.BasicWidgets.Tk', 'mglutil.gui.BasicWidgets.Tk.icons', 'mglutil.gui.BasicWidgets.Tk.Tests', 'mglutil.gui.BasicWidgets.Tk.TreeWidget', 'mglutil.gui.BasicWidgets.Tk.TreeWidget.icons', 'mglutil.gui.BasicWidgets.Tk.TreeWidget.Tests', 'mglutil.gui.InputForm', 'mglutil.gui.InputForm.Tk', 'mglutil.gui.InputForm.Tk.Tests', 'mglutil.gui.Misc','mglutil.gui.Misc.Tk', 'mglutil.math', 'mglutil.util', 'mglutil.regression', 'mglutil.TestUtil.Tests', 'mglutil.TestUtil.Tests.Data', 'mglutil.web', 'mglutil.web.regression', 'mglutil.web.services', 'mglutil.util.Tests', 'mglutil.web.Tests', 'mglutil.math.Tests', 'mglutil/TestUtil/bin', 'mglutil/splashregister', 'mglutil/gui/BasicWidgets/Tk/trees', 'mglutil/gui/Spline', 'mglutil/gui/Spline/Tests'] # list of the python modules which are not part of a package py_modules = [] # list of the files that are not python packages but are included in the # distribution and need to be installed at the proper place by distutils. # The list in MANIFEST.in lists is needed for including those files in # the distribution, data_files in setup.py is needed to install them # at the right place. data_files = [] def getDataFiles(file_list, directory, names): fs = [] for name in names: ext = os.path.splitext(name)[1] #print directory, name, ext, len(ext) if ext !=".py" and ext !=".pyc": fullname = os.path.join(directory,name) if not os.path.isdir(fullname): fs.append(fullname) if len(fs): file_list.append((directory, fs)) os.path.walk("mglutil", getDataFiles, data_files) #print "data_files:", data_files, len(data_files) from version import VERSION setup (name = "mglutil", version = VERSION, description = "Molecular Graphics Laboratory utility collection", author = "Molecular Graphics Laboratory", author_email = "sanner@scripps.edu", download_url = 'http://www.scripps.edu/~sanner/software/packager.html', url = "http://www.scripps.edu/~sanner/software/index.html", license = "to be specified", packages = packages, cmdclass = {'install_data': modified_install_data, 'sdist': modified_sdist,}, data_files = data_files ) mgltools-mglutil-1.5.7~rc1~cvs.20130519/version.py0000644000175000017500000000002011475262400020736 0ustar debiandebianVERSION="1.5.6" mgltools-mglutil-1.5.7~rc1~cvs.20130519/MANIFEST.in0000644000175000017500000000367511033237023020451 0ustar debiandebianinclude MANIFEST.in include mglutil/RELNOTES include mglutil/gui/BasicWidgets/Tk/cw.ppm include mglutil/gui/BasicWidgets/Tk/icons/*.gif include mglutil/gui/BasicWidgets/Tk/TreeWidget/icons/* include mglutil/gui/BasicWidgets/Tk/TreeWidget/README include mglutil/gui/BasicWidgets/Tk/TreeWidget/RELNOTES include mglutil/splashregister/*.gif include mglutil/splashregister/*.jpg include mglutil/math/julie12019854k.rot include mglutil/TestUtil/publishPack.csh include mglutil/TestUtil/README include mglutil/TestUtil/bin/* include mglutil/doc.tar.gz include mglutil/web/regression/*html include mglutil/web/Tests/Data/*html # CVS directories include mglutil/CVS/* include mglutil/TestUtil/CVS/* include mglutil/TestUtil/Tests/CVS/* include mglutil/TestUtil/Tests/Data/CVS/* include mglutil/TestUtil/bin/CVS/* include mglutil/Tests/CVS/* include mglutil/gui/CVS/* include mglutil/gui/Misc/CVS/* include mglutil/gui/BasicWidgets/CVS/* include mglutil/gui/BasicWidgets/Tk/CVS/* include mglutil/gui/BasicWidgets/Tk/Tests/CVS/* include mglutil/gui/BasicWidgets/Tk/TreeWidget/Tests/CVS/* include mglutil/gui/BasicWidgets/Tk/TreeWidget/CVS/* include mglutil/gui/BasicWidgets/Tk/TreeWidget/icons/CVS/* include mglutil/gui/BasicWidgets/Tk/icons/CVS/* include mglutil/gui/InputForm/CVS/* include mglutil/gui/InputForm/Tk/CVS/* include mglutil/gui/InputForm/Tk/Tests/CVS/* include mglutil/gui/Misc/Tk/CVS/* include mglutil/math/CVS/* include mglutil/math/Tests/CVS/* include mglutil/util/CVS/* include mglutil/util/Tests/CVS/* include mglutil/web/CVS/* include mglutil/web/Tests/CVS/* include mglutil/web/Tests/Data/CVS/* include mglutil/web/regression/CVS/* include mglutil/regression/CVS/* include mglutil/splashregister/CVS/* include mglutil/web/services/CVS/* include mglutil/gui/BasicWidgets/Tk/trees/CVS/* include mglutil/gui/BasicWidgets/Tk/trees/Icons/* include mglutil/gui/BasicWidgets/Tk/trees/Icons/CVS/* include mglutil/gui/Spline/CVS/* include version.py include mglutil/LICENSE