← Back to team overview

yade-dev team mailing list archive

[Branch ~yade-dev/yade/trunk] Rev 2661: - Integrate check tests in yade options (see README).

 

------------------------------------------------------------
revno: 2661
committer: Bruno Chareyre <bruno.chareyre@xxxxxxxxxxx>
branch nick: yade
timestamp: Wed 2011-01-19 09:37:26 +0100
message:
  - Integrate check tests in yade options (see README).
  - Handle PBCs in Shop::getStressLWForEachBody (not tested)
removed:
  scripts/test/checks/data/
  scripts/test/checks/data/WallStressesCheckTest
  scripts/test/checks/data/checkTestTriax.spheres
added:
  scripts/test/checks/README
  scripts/test/checks/checkList.py
  scripts/test/checks/checkTestDummy.py
  scripts/test/checks/dataTriax/
  scripts/test/checks/dataTriax/WallStressesCheckTest
  scripts/test/checks/dataTriax/checkTestTriax.spheres
modified:
  core/main/main.py.in
  pkg/dem/Shop.cpp
  scripts/test/checks/checkTestTriax.py


--
lp:yade
https://code.launchpad.net/~yade-dev/yade/trunk

Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to https://code.launchpad.net/~yade-dev/yade/trunk/+edit-subscription
=== modified file 'core/main/main.py.in'
--- core/main/main.py.in	2010-11-22 17:58:56 +0000
+++ core/main/main.py.in	2011-01-19 08:37:26 +0000
@@ -34,6 +34,7 @@
 par.add_option('--rebuild',help="Re-run build in the source directory, then run the updated yade with the same command line except --rebuild. The build profile for this build (${profile}) and its stored parameters will be used.",dest='rebuild',action='store_true')
 par.add_option('--test',help="Run regression test suite and exit; the exists status is 0 if all tests pass, 1 if a test fails and 2 for an unspecified exception.",dest="test",action='store_true')
 par.add_option('--debug',help='Run the debug build, if available.',dest='debug',action='store_true')
+par.add_option('--checks',help='Run a series of user-defined check tests as described in ${sourceRoot}/scripts/test/checks/README',dest='checks',action='store_true')
 par.add_option('--no-gdb',help='Do not show backtrace when yade crashes (only effective with --debug).',dest='noGdb',action='store_true',)
 par.disable_interspersed_args()
 
@@ -89,7 +90,6 @@
 		print 20*'*'+' SOME TESTS FAILED '+20*'*'
 		sys.exit(1)
 
-
 # c++ boot code checks for YADE_DEBUG at some places; debug verbosity is equivalent
 # do this early, to have debug messages in the boot code (plugin registration etc)
 if opts.verbosity>1: os.environ['YADE_DEBUG']='1'
@@ -144,6 +144,11 @@
 from yade import *
 from math import *
 
+# Run the check tests listed in scripts/test/checks/checkList.py
+if opts.checks:
+	checksPath='${sourceRoot}'+'/scripts/test/checks' # replaced at install-time
+	execfile(checksPath+'/checkList.py')
+
 def userSession(qt4=False):
 	# prepare nice namespace for users
 	import yade
@@ -243,5 +248,6 @@
 	import yade.qt # this yade.qt is different from the one that comes with qt3
 	qapp=QtGui.QApplication(sys.argv)
 	userSession(qt4=True)
+
 O.exitNoBacktrace()
 

=== modified file 'pkg/dem/Shop.cpp'
--- pkg/dem/Shop.cpp	2011-01-17 16:20:12 +0000
+++ pkg/dem/Shop.cpp	2011-01-19 08:37:26 +0000
@@ -585,7 +585,10 @@
 		if (revertSign) f=-f;//revert sign for some laws, so that every interaction type can give the same result
 		//Sum f_i*l_j/V for each contact of each particle
 		bStresses[I->getId1()]-=(3.0/(4.0*Mathr::PI*pow(geom->refR1,3)))*f*((geom->contactPoint-Body::byId(I->getId1(),scene)->state->pos).transpose());
-		bStresses[I->getId2()]+=(3.0/(4.0*Mathr::PI*pow(geom->refR2,3)))*f*((geom->contactPoint-Body::byId(I->getId2(),scene)->state->pos).transpose());
+		if (!scene->isPeriodic)
+			bStresses[I->getId2()]+=(3.0/(4.0*Mathr::PI*pow(geom->refR2,3)))*f*((geom->contactPoint- (Body::byId(I->getId2(),scene)->state->pos)).transpose());
+		else
+			bStresses[I->getId2()]+=(3.0/(4.0*Mathr::PI*pow(geom->refR2,3)))*f* ((geom->contactPoint- (Body::byId(I->getId2(),scene)->state->pos + (scene->cell->Hsize*I->cellDist.cast<Real>()))).transpose());
 	}
 }
 

=== added file 'scripts/test/checks/README'
--- scripts/test/checks/README	1970-01-01 00:00:00 +0000
+++ scripts/test/checks/README	2011-01-19 08:37:26 +0000
@@ -0,0 +1,9 @@
+=== Checktesting ===
+
+1. Check tests perform comparisons of simulation results between different versions of yade, as discussed in http://www.mail-archive.com/yade-dev@xxxxxxxxxxxxxxxxxxx/msg05784.html and the whole thread. They differ with regression tests in the sense that they simulate more complex situations and combinations of different engines, and usually don't have a mathematical proof (though there is no restriction on the latest).
+2. They compare the values obtained in version N with values obtained in a previous version or any other "expected" results. The reference values must be hardcoded in the script itself or in data files provided with the script.
+3. Check tests are based on regular yade scripts, so that users can easily commit their own scripts to trunk in order to get some automatized testing after commits.
+4. Since the check tests history will be mostly based on standard output generated by "yade --checks", a meaningfull checkTest should include some "print" command telling if something went wrong. If the script itself fails for some reason and can't generate an output, the log will contain "scriptName failure".
+5. An example check test can be found in checkTestTriax.py. It shows results comparison, output, and how to define the path to data files using "checksPath".
+6. Users are encouraged to add their own scripts and list them in checkList.py. Discussion of some specific checktests design in users question is welcome.
+7. A check test should never need more than a few seconds to run. If your typical script needs more, try and reduce the number of element or the number of steps.
\ No newline at end of file

=== added file 'scripts/test/checks/checkList.py'
--- scripts/test/checks/checkList.py	1970-01-01 00:00:00 +0000
+++ scripts/test/checks/checkList.py	2011-01-19 08:37:26 +0000
@@ -0,0 +1,14 @@
+# encoding: utf-8
+# 2011 © Bruno Chareyre <bruno.chareyre@xxxxxxxxxxx>
+import math,os,sys
+
+#List your scripts here
+for script in ["checkTestDummy","checkTestTriax"]:
+	try:
+		print "running: ",script
+		execfile(checksPath+"/"+script+".py")
+	except:
+		print script," failure"
+	#this "else" is redundant with scriipt output, not needed
+	#else:
+		#print script," sucess, inspect results."

=== added file 'scripts/test/checks/checkTestDummy.py'
--- scripts/test/checks/checkTestDummy.py	1970-01-01 00:00:00 +0000
+++ scripts/test/checks/checkTestDummy.py	2011-01-19 08:37:26 +0000
@@ -0,0 +1,7 @@
+# encoding: utf-8
+# 2011 © Bruno Chareyre <bruno.chareyre@xxxxxxxxxxx>
+# A dummy test, just to give an example, and detect possible path problems
+from yade import pack,log,utils,export,plot
+import math,os,sys
+print 'checkTest mechanism success'
+

=== modified file 'scripts/test/checks/checkTestTriax.py'
--- scripts/test/checks/checkTestTriax.py	2011-01-11 18:58:08 +0000
+++ scripts/test/checks/checkTestTriax.py	2011-01-19 08:37:26 +0000
@@ -1,20 +1,22 @@
- 
-#!/usr/local/bin/yade-trunk -x
 # encoding: utf-8
+# 2011 © Bruno Chareyre <bruno.chareyre@xxxxxxxxxxx>
+# Check the result of a triaxial test on a dense 100 spheres packing with position defined,
+# comparing stresses at the "peak" state. The initial positions have been generated by
+# internal compaction without friction, so that it is initially at equilibrium without shear forces. 
+# Positions and reference results are in dataTriax folder.
 from yade import pack,log,utils,export,plot
 import math,os,sys
 
 tolerance=0.01
-interactive=True
+interactive=False
 errors=0
-
-tt=TriaxialTest(internalCompaction=True,numberOfGrains=100,compactionFrictionDeg=0,sphereFrictionDeg=30,importFilename='checkTestTriax.spheres')
+tt=TriaxialTest(internalCompaction=True,numberOfGrains=100,compactionFrictionDeg=0,sphereFrictionDeg=30,importFilename=checksPath+'/dataTriax/checkTestTriax.spheres')
 tt.generate("checkTest.yade")
 O.load("checkTest.yade")
 O.run(2020,True)
 if interactive:
 	print O.engines[4].stress(0)[1],O.engines[4].stress(1)[1], O.engines[4].stress(2)[0], O.engines[4].stress(3)[0], O.engines[4].stress(4)[2], O.engines[4].stress(5)[2]
-	os.system('gnuplot -e "plot \'./WallStresses\' using 1:3; replot \'./WallStressesCheckTest\' using 1:3; replot \'./WallStresses\' using 1:4; replot \'./WallStressesCheckTest\' using 1:4; pause -1"')
+	os.system('gnuplot -e "plot \'./WallStresses\' using 1:3; replot'+checksPath+'\'/data/WallStressesCheckTest\' using 1:3; replot '+checksPath+'\'/data/WallStresses\' using 1:4; replot '+checksPath+'\'/data/WallStressesCheckTest\' using 1:4; pause -1"')
 
 if abs((O.engines[4].stress(1)[1]-107157.2)/107157.2)>tolerance :
 	print "Triaxial checkTest: difference on peak stress"
@@ -23,5 +25,5 @@
 	print "Triaxial checkTest: difference on peak stress"
 	errors+=1
 if errors==0:
-	print "success: checkTestTriax"
+	print "checkTestTriax success"
 

=== removed directory 'scripts/test/checks/data'
=== removed file 'scripts/test/checks/data/WallStressesCheckTest'
--- scripts/test/checks/data/WallStressesCheckTest	2011-01-11 18:58:08 +0000
+++ scripts/test/checks/data/WallStressesCheckTest	1970-01-01 00:00:00 +0000
@@ -1,301 +0,0 @@
-iteration s11 s22 s33 e11 e22 e33 unb_force porosity kineticE
-400 49566.037998387372 48955.252378055688 50830.41890644082 0 0 0 0.0053680811782467674 0.44488693137992941 0.15903777482138973
-420 49977.096201642387 48864.614561700706 49899.23302581007 0.00021267293086211031 5.8964253128234604e-06 -0.00035627549183499062 0.0068712278837924348 0.44496336859240598 0.19015952577734965
-440 50036.058942961281 48968.561929892297 49972.202706320968 0.00024631280266909053 2.2978202122293951e-05 -0.00032962028724921116 0.0046803160246437908 0.44492041994286163 0.15828015151073432
-460 49987.064491349811 49100.818028878886 49996.869812418969 0.00016482477500420631 5.1178199623532612e-05 -0.00028965271763504167 0.0037816477919528054 0.44492781380926466 0.13205742692258149
-480 49994.801281714193 49190.913320016458 50012.447463006683 0.00017935166373592845 9.0429787702956814e-05 -0.0003017210425847727 0.0024870837542071843 0.44490466118123817 0.12684051084280809
-500 50001.058302638965 49374.565212195215 50007.448078951697 0.00018012080645627497 0.00014066702764890021 -0.00032441043230233674 0.0022224589053528895 0.44488894232788867 0.12098178842261725
-520 50001.972762399855 49587.995913963183 49999.900082141794 0.00016944808710761875 0.00020182366019785475 -0.0003336510480161043 0.0017217812852814381 0.44486604724526796 0.11684035515158114
-540 50004.546643027519 49829.569522149781 50002.063374404788 0.00015293821005952561 0.00027383480127565057 -0.00033552983965115383 0.0014274035215790576 0.44483627879208898 0.093197709146506172
-560 50014.752514428495 50128.491462389895 49999.362303495283 0.00013745665316053127 0.0003566341897850414 -0.00035477664315635164 0.001810806332081626 0.44480959085979099 0.090567782649043263
-580 49998.209499657431 50451.165301212961 50004.929553092625 0.00012292085491632948 0.00045015702910980806 -0.00037052798672515167 0.0032703829593221777 0.44477448189695884 0.074286413598736653
-600 50005.359621062576 50841.94276532701 49998.114355201702 0.00011148388275992605 0.00055434040164428322 -0.00038827295699470272 0.00324864200831451 0.44473283762739801 0.067260565073482936
-620 50005.62808209275 51223.817503700709 50002.297374122194 9.3364590503689941e-05 0.00066911667837191028 -0.00040761356222081399 0.0027744067202789061 0.44468990472120251 0.060230488047957942
-640 50002.963006223261 51593.510830551415 50002.522355566296 6.4891961117484562e-05 0.00079442596497925619 -0.00042728310164930858 0.0024974079932179433 0.44464705138825594 0.056768052647139473
-660 50004.47502109543 52064.593028300187 50060.399737517502 4.509840815728011e-05 0.00093020215871885813 -0.00045563276377594145 0.0023348230672856829 0.44459838202267599 0.055823130576791349
-680 50003.922870151539 52611.469521519139 50002.386481644186 2.1435372258399064e-05 0.0010763822755367532 -0.00047974978058954181 0.0019602328835925582 0.44454372777891621 0.052284334705629293
-700 50005.94855032242 53107.720732221416 50002.9976237222 -1.1067175470784068e-05 0.0012329070304957727 -0.00050266090888447087 0.001700832071693125 0.44448756215649532 0.054150188884905824
-720 50006.389210929665 53640.921536506714 50005.863747930838 -3.8972971035134305e-05 0.001399704940235198 -0.0005314267240745 0.0015983052595450757 0.4444263822589794 0.053756805581121142
-740 50005.156937890941 54222.543643777644 50005.178795685075 -6.9183933860726208e-05 0.0015767234983194154 -0.00056735460610184097 0.0011985073828479787 0.44436477700024168 0.054175464615800119
-760 50008.210969832144 54850.728756560879 50006.081722901501 -0.00010235457649716767 0.0017638953467352973 -0.00059744222312149199 0.0012058904190005151 0.44429592197977025 0.054427738954411171
-780 50005.52909633646 55495.565329390651 50003.648296804757 -0.0001431571692497864 0.0019611592113214539 -0.00063525408506367109 0.00097245312354638273 0.44422998410717152 0.047408125629938444
-800 50007.241971481664 56201.644209122518 50003.733952172523 -0.00017732527726025245 0.0021684607289895862 -0.00067409328957867567 0.00095470297046397631 0.44415534240278287 0.047710030227362768
-820 50009.764236139432 56938.971703308722 50003.033155897574 -0.00021925042124761637 0.0023857234018523979 -0.0007115680821681747 0.0014709716248607935 0.44407870685486495 0.046978302688125716
-840 50008.137044221599 57671.239697471647 50004.816766807031 -0.00026076512789549914 0.0026129032370259117 -0.00075293276112191787 0.0015706428060102838 0.4439984813741904 0.048442529104732533
-860 50008.892317611229 58461.365835084231 50007.302284468009 -0.00030509791027016095 0.0028499306693101785 -0.00079423647157349816 0.0015806260960581043 0.44391430141006438 0.043304491893954772
-880 50012.162714007216 59279.119880352977 50004.862174897949 -0.00035749338808990723 0.0030967460971833608 -0.00083516851320289453 0.0024587185446566092 0.44382894242866483 0.037493682209173484
-900 50009.327535467215 60080.367665305683 50006.633557880443 -0.00040197115804317755 0.0033533009308541646 -0.00087852547254407658 0.002224651641544069 0.44373509727322086 0.037691364159763999
-920 50014.793095669549 60938.44179850287 50005.405045302323 -0.00045479936801977886 0.0036195120495683326 -0.0009325240434291199 0.002174824547336886 0.44364643029415307 0.042658442863613033
-940 50010.70559567857 61815.820562935856 50006.634810485935 -0.00051784859990702001 0.0038953454932306826 -0.00098269073668170938 0.0022004164942143159 0.44355595010059334 0.040888328551092396
-960 50004.363902876139 62695.940881212788 50014.064795553524 -0.00055973177700115173 0.0041807280182940528 -0.0010570079897317844 0.0018586161521949879 0.44346180176664457 0.042691464267911455
-980 50017.397488818235 63679.019521287853 50009.460488662917 -0.00060770180912511987 0.0044756016278084693 -0.0011288055169523987 0.0018421705180351447 0.44336434002816233 0.046858128898113138
-1000 50008.491219792108 64594.160565640654 50005.533808335676 -0.0006794766661242824 0.0047799248681691664 -0.0011968827217597241 0.0016959790704666143 0.44327278197601738 0.047474298047119522
-1020 50011.49623842779 65600.190316090346 50012.64758585854 -0.00073440428810715795 0.0050936037380713431 -0.0012706431296587101 0.0016224446932724182 0.44316978301365434 0.045992318862660933
-1040 50011.121662242003 66583.505970307335 50012.57961763152 -0.00079797857310266143 0.0054166183976931273 -0.0013495043768270028 0.0014876894783416557 0.44306922201959376 0.051068537806104125
-1060 50012.81036957405 67598.623818575463 50014.84438847912 -0.00085578899933674022 0.0057488918948768583 -0.0014371918555643056 0.0016629589752940118 0.44296519122881128 0.050374157731787418
-1080 50015.114556055763 68640.092420288682 50015.315531424734 -0.00092311339800707612 0.0060903678409575512 -0.0015247805057382116 0.0015852012972787978 0.44286125950642508 0.053366554192070939
-1100 50013.728691172386 69699.192829950349 50011.160910325729 -0.0009853195067314306 0.0064410118673955217 -0.0016138055181873032 0.0015831076714283051 0.44275014777335953 0.057455759726266861
-1120 50010.810116044704 70733.000214090513 50013.705776152812 -0.0010661662778355483 0.0068007085840794792 -0.0017122437475882511 0.0015518975725231741 0.44264960430184136 0.058558365860792959
-1140 50009.026204664653 71776.587492003702 50015.942860265808 -0.0011316904216435591 0.0071694624890985973 -0.0018158156483994625 0.0017149908396863901 0.44253831380470171 0.05415957558237023
-1160 50018.667089896604 72875.493201932492 50013.333715999965 -0.0012106696219497306 0.0075471776080603143 -0.0019274405061449923 0.0015990832450179305 0.44243399679805245 0.061192039283979698
-1180 50016.15212889963 73973.362972415722 50013.680999619311 -0.0013088042885596801 0.0079337986058462696 -0.0020285809571168392 0.0018347593174341743 0.44232952931894032 0.067540670648322962
-1200 50022.069512445865 75124.810209945164 50016.229737059344 -0.0014051875576485216 0.008329313252456479 -0.0021253896633859899 0.0019068210163981707 0.4422166885248931 0.0697953189638576
-1220 50013.678711623026 76245.324262376322 50015.00639442441 -0.0015046130828248352 0.0087335482107491948 -0.0022373949305522899 0.0020025259530435115 0.44210913521071282 0.069127260601857754
-1240 50025.896094259748 77409.032316124285 50014.988539847582 -0.0016064410272227038 0.0091465681130706925 -0.0023366018980840145 0.0020658102884513743 0.44199085818506667 0.07198189757756443
-1260 50015.954368970517 78587.044802919801 50018.478542287499 -0.0017218227024756235 0.0095682475078417515 -0.00245040311198283 0.002292345262936305 0.44188343303601246 0.08454884024886547
-1280 50018.095476946932 79738.124150619638 50014.534301501139 -0.0018256445487115692 0.0099985319169222618 -0.0025806780458952068 0.0022874601342012619 0.44177392672853194 0.09764042476589764
-1300 50030.65797566816 80920.354866014313 50014.490254409859 -0.0019458213554588793 0.010437441576343994 -0.002694645312997488 0.0027198129974564502 0.44165960953604277 0.10271063008236009
-1320 50012.038252986713 82078.499978884211 50015.776798700048 -0.0020640863280565508 0.010884742932449567 -0.0028349506515926888 0.002758351795918186 0.44155422342623107 0.12517899118391776
-1340 50022.072309239811 83264.808937098205 50020.224676926104 -0.0021633253101561159 0.011340563181045945 -0.0029819228578914681 0.003150579192822038 0.44143715586304955 0.10928972384026862
-1360 50023.351005747929 84557.013150444851 50017.158685400595 -0.0022943790430305856 0.011804741573059318 -0.0031179011818638683 0.0034009226467739666 0.44132702638991356 0.096016691629119993
-1380 50016.077590483656 85800.993930786994 50024.889794607101 -0.0024204195304700616 0.012277224479966689 -0.0032613361323940515 0.0035398513254209668 0.44121360009077365 0.10358518398584944
-1400 50027.253927804952 86929.933574173658 50028.103706971029 -0.0025700347505772979 0.012758070360127082 -0.0034147417082690634 0.0031638394270315211 0.44111422501674358 0.13614685479436714
-1420 50034.342183972702 88253.692664038696 50030.00224640769 -0.0027244532683565409 0.013266205328087678 -0.0035946403000395666 0.0037375973664536787 0.44101707224504094 0.124680339248309
-1440 50032.604734863715 89548.542985064094 50023.47663399476 -0.0028862285573388042 0.013782924067679756 -0.0037477966483777324 0.0037266036366262719 0.44090426531872134 0.12181755201776356
-1460 50027.868231740504 90982.364975616991 50018.835985097794 -0.0030578272615698382 0.014308175226444052 -0.0039119014147398334 0.0034038006966997181 0.44079827997042459 0.13958962733005151
-1480 50018.237616149301 92122.048315490509 50032.194445367641 -0.0032039731089447063 0.014841907759114101 -0.0041347644652315737 0.0033076684025706671 0.44070615864344137 0.14318717953766491
-1500 50036.647941486532 93362.499424031586 50036.682400874764 -0.0033632834611440282 0.015384070925782211 -0.0043612461423623763 0.0042297346497067005 0.44061869439109813 0.15591968890200064
-1520 50023.829950315892 94621.134132044463 50037.635641959707 -0.003528648099858932 0.015934614290071189 -0.0045974500905229835 0.0041834949284867825 0.44053535447798753 0.17341662819570747
-1540 50044.955182856953 95632.448123411363 50028.16857467041 -0.0036972314610840503 0.016493487717318473 -0.0048586893052997276 0.0049062023435101545 0.44046315043034445 0.20289514060600553
-1560 50031.882272567214 96943.174409213563 50021.830731646798 -0.0039311629251763394 0.017060641372773154 -0.0050772681238670679 0.0053216926406885086 0.4403989995615411 0.23577512401476572
-1580 50027.069411980367 97692.654457625293 50031.784404510938 -0.0041654289916403702 0.017636025719800514 -0.0053074060663011414 0.005679718332583154 0.44033689140696669 0.28062806002856971
-1600 50028.654889161313 98670.955135255121 50033.593865106508 -0.0044012943659611998 0.018219591518100212 -0.0055963618870513761 0.0056094864891141783 0.44030401325401303 0.37337449145173135
-1620 50049.073577087132 99437.989876198582 50026.641615990004 -0.0046413361183579331 0.018811289821932031 -0.0059021965446735044 0.0059322856423293458 0.44027836633635009 0.42209722652235232
-1640 50032.54229274745 100272.81887449691 50046.986158055552 -0.0049025537768449751 0.01941107197835662 -0.0062068218898119311 0.0069338145825944483 0.44025936953593442 0.41991866397734395
-1660 50026.392708482643 101264.87297387703 50032.466465935511 -0.0051346251856785805 0.020018889625481616 -0.0065491121362623046 0.0077344711694811432 0.4402406425447053 0.51309872026835979
-1680 50035.060743615613 101753.16189470836 50062.64703046513 -0.0053243353370055133 0.020634694690722079 -0.0069747838457121193 0.0077266903094270322 0.44024040565199635 0.6763880993571274
-1700 50046.751198339334 101944.63477102852 50037.409165908437 -0.0055837883527159607 0.021258439389070589 -0.007465914851316903 0.0070602226907480418 0.44031140067739194 0.78130877791305786
-1720 50052.944974450365 102385.48903940769 50018.862197936527 -0.0058731706395913231 0.021890076221375256 -0.0078920676471882483 0.0074845135298195614 0.44035835560192188 0.66625826110489905
-1740 50031.023114860465 103006.77414740455 50061.914731141827 -0.0061213217307384653 0.022529557972632272 -0.0083507062766330145 0.0074331354195302634 0.44039602267690026 0.67975996468300759
-1760 50036.049657946511 103205.89696227368 50057.30369610303 -0.0063377682139140494 0.023176837710283629 -0.0088669943885356182 0.0073982335761506798 0.44044384151179294 0.7932185593293769
-1780 50045.484456738035 103669.88030901441 50031.664492022232 -0.0065841108425803967 0.023831868782530713 -0.0093568390403409949 0.0073309283088975512 0.44048925112524356 0.7479722541667897
-1800 50071.599267962119 104473.99172675019 50045.34515670751 -0.0069270324096878996 0.024494604816652641 -0.0097025278419885855 0.0087415221584656397 0.44050372790630155 0.76256362248519249
-1820 50045.408019729715 104996.86529545336 50051.352552736171 -0.0072564626248444869 0.025164999717337426 -0.010200501497453978 0.0095591188572324796 0.44059156694372786 0.80802620388907109
-1840 50020.114563618445 105207.50162796638 50024.337561191722 -0.0075787225880916496 0.025843007665023905 -0.010705352954276132 0.0090764810838837237 0.44067497046554488 0.95932340124958504
-1860 50098.158083603521 105624.19390702808 50044.239418358993 -0.0079941029724468482 0.026528583114251044 -0.011108331507657958 0.009942143149529523 0.4407492346635386 1.4646274041283049
-1880 50077.137742226427 104721.95031854876 50025.937907908148 -0.0085829224358547722 0.027221680792019164 -0.011731998034881293 0.01184217701278502 0.44103962755514897 2.5955395784500794
-1900 50042.447903319226 104460.21774512067 50101.767889549934 -0.0090268146408970362 0.027922255696159335 -0.012498178311617444 0.014894793951447154 0.4413243439735835 3.3486606532104912
-1920 50117.407538366439 103244.20147336698 50096.54741719483 -0.0093818567000053966 0.028630263093715188 -0.013285419304981338 0.020454474581742647 0.44156691053580166 2.4123285848201577
-1940 50023.561152537506 103546.78717835245 50017.851949860633 -0.0099107955681736089 0.029345658519329684 -0.013788625820808705 0.016995045165877208 0.44174376618265998 1.2695587930518211
-1960 50066.478515282237 105506.71997235318 50070.854822389796 -0.0099953697847823837 0.030068397773648038 -0.013989481507105227 0.016502560770350935 0.44149958212303231 0.74959335603261867
-1980 50055.218364083776 106470.56285684057 50047.006079563776 -0.010354999347766783 0.030798436921723842 -0.01447592328798549 0.014036593309540097 0.44156438239333579 0.76524589180791291
-2000 50037.957411792617 107086.89763233457 50049.945423267403 -0.010743823498068909 0.031535732291439841 -0.014956074297929958 0.013610013084600726 0.44163791223718374 0.98565290964516661
-2020 50023.930373970928 107576.50003335536 50080.855182619103 -0.011036606124594242 0.032280240471932065 -0.015583193505635416 0.013633915385663437 0.44173583681593959 1.3919572483807254
-2040 50034.116870266895 107277.53048704931 50129.685434873376 -0.011560469220533314 0.033031918312032227 -0.016207965210168752 0.013342577144751632 0.44195739968287151 1.5796899148821604
-2060 50002.967084709766 107431.93092879855 50092.9438935215 -0.011841731384045092 0.033790722918710409 -0.016758514791115169 0.012915235245496585 0.44199813928872089 1.8043486495279693
-2080 50050.024285545456 107256.68858094858 50062.800115990001 -0.012102320417867135 0.034556611655532816 -0.017517493627318578 0.014525080963021691 0.4421396747640145 1.8556825031626687
-2100 50089.36577645842 107159.25534421443 50034.740771251221 -0.012408896767204391 0.035329542141125797 -0.018305339650249323 0.015344576428232464 0.44231899350617088 1.7992420984197748
-2120 50021.904694440091 107023.21612544126 50098.553316720987 -0.012868372794837879 0.036109472247651112 -0.018788975564288796 0.014261382977159674 0.44240998949158955 2.0003416593989103
-2140 50048.8999784798 107600.00426911762 50100.986919461793 -0.013289248940402015 0.036896360099290058 -0.019459324511684282 0.01415147850394308 0.44257965907747915 2.4503120981604263
-2160 50057.767742983822 106966.76034140858 50112.383555349516 -0.013666881635198937 0.037690164070733806 -0.020114669222973159 0.015953850421035132 0.44271296327291049 3.4046325506377215
-2180 50031.738209726689 105601.22070001217 50193.094145471383 -0.014072835404353166 0.038490842785686583 -0.021094819648400129 0.017813782221918373 0.44303911782476946 4.2747939037051434
-2200 50045.61944168734 104193.65340021162 50182.852503755872 -0.014367439894810418 0.039298355115376611 -0.022286232987822147 0.020598240256925741 0.44341689067174545 4.2275158765216849
-2220 50089.45611808687 104176.63884105172 50061.984928810991 -0.01472314314007845 0.040112660177074135 -0.023164995112455157 0.024892860429468491 0.44365069568126964 4.2520680739529979
-2240 50058.038475687339 103524.16968275803 50023.880178354986 -0.015084067191479377 0.040933717332620051 -0.023793284660347233 0.025286809654837063 0.44374424153637548 3.7203408670045639
-2260 50168.016998530387 103757.9367315932 50114.728108466697 -0.015508642796365086 0.041761486186963986 -0.024434205733519281 0.022585493758371194 0.44387646329024577 5.2376278048141591
-2280 50066.154376504091 102625.14071024147 50072.673666803814 -0.016193369468327425 0.042595926586708847 -0.024896239729927369 0.028815796538963979 0.44405012482220013 6.5958716570176588
-2300 50095.475598185956 102205.30697734408 50313.236137830187 -0.01668323198515587 0.043436998618666192 -0.025739737373656875 0.032613819900294383 0.44432374499034094 6.6460624074859203
-2320 50107.048845382888 101229.42600318159 50077.748662481186 -0.017270088055392804 0.044284662608419276 -0.026554883687968572 0.034510516109688652 0.44463169231217131 5.7284702403524621
-2340 50032.115903799116 100443.18238693199 50157.605449350005 -0.017779949007206093 0.045138879118893742 -0.027130916217440203 0.033159040323244682 0.44476034345605142 7.6486509588168472
-2360 49959.159154566361 99213.133640599481 50194.947806572891 -0.018090608974819324 0.04599960894894016 -0.027988821272631324 0.031236792847686969 0.44493123945749918 10.483627182652954
-2380 50080.352213525141 97741.072645143984 49976.085101021468 -0.018431835024295781 0.046866813131920669 -0.028971479745674784 0.031635255279680585 0.44518467057462263 14.97863187336957
-2400 49925.527914324819 96377.450424635565 50209.959220344441 -0.01925980856497712 0.047740452934306794 -0.029233590449011738 0.038769332267959492 0.44530474427369782 13.277202251514449
-2420 50094.811035027662 95417.876121049965 50101.414513769618 -0.020178839023873237 0.048620489854286117 -0.030068872815746626 0.037248584490521264 0.44578948903954752 10.417692391758223
-2440 50063.032538551008 94233.689671771877 50182.312622786711 -0.020598234472496382 0.049506885620374821 -0.030847564146181713 0.033188257617429467 0.44596220455677149 9.8896105198212574
-2460 49886.264282782875 94411.736135222702 50197.467998668282 -0.020904141360022558 0.050399602190040749 -0.031466093231908347 0.037283087693346477 0.44597977802649624 9.3713745957858663
-2480 49948.127003231864 94964.146259022469 50259.337910260059 -0.020783064607431314 0.051298601748333193 -0.032489708572608376 0.037845660503414015 0.44598173871711116 9.3859134973463796
-2500 49973.018299094125 93230.590834916133 50207.454742429072 -0.020989199537296426 0.052203846706523171 -0.033722007442186536 0.035496090384491252 0.44627705633485221 10.486170649541606
-2520 49887.196631465886 94351.635225728125 50141.531234835209 -0.021074396130979139 0.053115299700748013 -0.034767255324970658 0.035226422397011924 0.44639830366648586 8.9197518356478014
-2540 49971.837131304666 96089.700825341934 50242.05156054665 -0.020894553301753944 0.054032923590667498 -0.036045817183876158 0.033241268113566737 0.44649854916579479 6.3403542859992292
-2560 49975.654157802019 96862.15909324598 50090.332018407527 -0.020692568160111266 0.05495668145812755 -0.037005480971010737 0.033082265822431914 0.4464066164416356 3.1852292772837139
-2580 49978.40854682459 98362.411479333838 50057.161388500761 -0.02089513084847093 0.055886536605830095 -0.037757785025495691 0.026642157817290828 0.44642046252206158 2.6472451182011061
-2600 50039.197202076968 99958.539650526829 50099.444270105669 -0.020967135077546144 0.056822452556011351 -0.038426166366049425 0.022655983130501572 0.4463122103214805 2.2735305198713167
-2620 49993.486374968423 101661.18510429813 50058.075242620551 -0.021152514129196155 0.057764393049130246 -0.039234259826504948 0.020345189526586264 0.44634074223601095 2.3512367896239708
-2640 50016.835142643722 102411.41004167231 50110.154579567134 -0.021339300900518315 0.05871232204256243 -0.040075023281989128 0.020123640306739084 0.44638482351405701 2.5739207512390188
-2660 50014.350907291933 102846.81304554416 50140.186984754451 -0.021575706762253205 0.059666203709301611 -0.040901293480644314 0.018261363021210991 0.44644505046526206 2.8475097874510209
-2680 49987.10940005567 103308.14569299581 50031.87200509385 -0.021774505011672194 0.060626002436671968 -0.041677203458255735 0.020763015186438308 0.44645330363106861 2.2974695280820705
-2700 50070.451157061194 104639.42468698665 50082.089918223297 -0.022227049663096264 0.061591682825044548 -0.042383218352177954 0.018945727614739501 0.44656006095524731 2.5812079586303494
-2720 50084.922680131342 103371.79324011739 50142.451981733866 -0.022872598758877746 0.062563209686563551 -0.043235314516086372 0.01945002841859567 0.44685115930664748 2.7457491767051785
-2740 50025.565005148688 104112.26416941165 50118.4560607276 -0.023284894645899022 0.06354054804387832 -0.04412798943404414 0.019158453389198696 0.44703235913015488 2.7409633149239934
-2760 49971.016248619162 103916.80794354696 50186.984416762483 -0.023485688356067624 0.064523663128885009 -0.045118860066417819 0.01922199590478528 0.44714766809688189 3.7097346052809193
-2780 49999.969443384172 103180.75405786106 50261.83853791048 -0.023717227361326716 0.065512520381476064 -0.046377249901182978 0.020118780146944539 0.44742461730096139 4.696749129684135
-2800 50035.723813618017 103072.41622448927 50074.525162355763 -0.023805255035777632 0.066507085448294895 -0.047568467418295214 0.021805942336582573 0.4475819021408427 4.360998764904215
-2820 50019.843741155892 103982.08339529298 50158.579120367292 -0.024068179798318809 0.067507324181498268 -0.048440675710371708 0.02160950436705002 0.44765641517948451 4.4766008049520432
-2840 50001.524219838633 102459.97945496994 50225.678655654738 -0.024515054908881256 0.068513202637528248 -0.049619737496751075 0.024941828806950526 0.44799879432302742 7.5178911465442715
-2860 50041.194938008419 103037.13274896091 50198.959057707711 -0.024827560963909416 0.069524687075889768 -0.050982996659213811 0.026420906509421107 0.44836535635048091 6.2469935720330572
-2880 50009.744496722647 103753.36825687817 50031.474385202964 -0.02513614965142633 0.070541743957935818 -0.051750016922886499 0.027721202968505814 0.44839765475469939 4.1191490648186715
-2900 50043.599387483751 104345.77897997176 50108.349703247921 -0.025439873067357271 0.071564339945661276 -0.052189949077907041 0.026382584864587836 0.44824376910515745 4.1948209180742575
-2920 50006.413599562642 105948.81714641505 50171.779912372825 -0.025755982611194255 0.072592441900500002 -0.053036327593584141 0.025759216047203409 0.44831791249372549 4.2055406962694057
-2940 49961.082571042265 105686.58016338191 50184.671873486484 -0.025933788512487337 0.073626016882135048 -0.054086040308276892 0.023330932046146415 0.44842489734793178 4.9223377895914924
-2960 50042.93095380054 105815.28557547773 50050.633582908813 -0.026241807150902925 0.074665032147309712 -0.055043664885986991 0.022213029506276877 0.44854988551979968 4.5767756046106385
-2980 50092.590142105117 106150.1008047896 50108.250828197743 -0.026677436440213986 0.075709455148651489 -0.055919598659081866 0.023854929902847793 0.44869718026201666 3.4353172344026177
-3000 50080.063064569644 105713.9271752639 50166.145024836616 -0.02729853464759488 0.076759253533498148 -0.056702630667593006 0.024521462222008523 0.44889248979535906 3.2050855716545223
-3020 50078.460676936273 106641.13410127394 50208.061639882217 -0.02781691186880389 0.077814395142734541 -0.057422189352730281 0.024005082258192072 0.44899321989859425 4.1626591907721506
-3040 50065.761249103365 105761.6981661762 50162.58257071409 -0.028186553430785275 0.078874848009633361 -0.058360093494423178 0.023528386553481596 0.4491293529075337 4.5720948743942902
-3060 49982.939733245497 105327.9562790679 50201.004077775789 -0.028579592483649566 0.079940580358706381 -0.059421638975927615 0.022953367366782832 0.44934351852038901 5.4996289278798143
-3080 50004.340353718064 104829.78285165525 50112.119544108187 -0.028886393074946615 0.081011560604558427 -0.06039504653894627 0.026324192112294025 0.44945871917227498 4.3360343391694318
-3100 50029.202034622809 106609.71955525738 50050.975998698661 -0.029141616176483118 0.082087757350751356 -0.06093996002022066 0.026410471653239918 0.44930671567625141 3.6507124860417952
-3120 50098.002028462317 107523.25595239746 50248.009168478791 -0.02968491390181309 0.083169139388673111 -0.06161092752467285 0.023193437842164474 0.44937988869576856 4.1840165630219728
-3140 50010.747347021083 107776.81045679565 50047.985865229253 -0.030310729762126516 0.08425567569641515 -0.062488479887060022 0.021152140698969292 0.44960935690301967 4.1770408282792868
-3160 50097.673050351666 109192.67776438837 49939.123407607527 -0.030902389890003799 0.08534733543765359 -0.062931570626002825 0.024231729281372599 0.44957803389976064 4.9526473412740524
-3180 50115.385723937725 108547.24543990393 50080.450971371458 -0.031834880252995558 0.086444087960542274 -0.063400758215858694 0.026236905939744374 0.44974584596804873 5.450471411747972
-3200 50088.717743795394 108863.05213060133 50150.818909591551 -0.032620038598678389 0.087545902796606248 -0.064152080641781545 0.027105323490528809 0.44998497073123744 7.9305742564750528
-3220 50157.049710513536 107282.68147491053 50077.307117619181 -0.033772737927852695 0.088652749659646368 -0.064647550473535736 0.032939475376113289 0.45028262555988791 11.167022499808787
-3240 50064.988669244616 105811.94015112838 50190.170525255031 -0.03518506014348307 0.089764598444648194 -0.065377072342140491 0.037798414249486129 0.45084854037663646 12.373811140482278
-3260 50107.130155878629 104311.05335370034 50201.995770446585 -0.035941954418917128 0.090881419226699053 -0.066437978928885338 0.040153548015007576 0.45123334972320545 15.021284202158963
-3280 49989.752607053313 104284.06620587679 50102.351299536327 -0.036390727746359604 0.092003182259909652 -0.067308926454696549 0.041495753681634259 0.45134197162137474 18.137698365690301
-3300 50066.095359296945 104760.53647509939 50116.568134288005 -0.036902042836601236 0.093129857976344294 -0.068015880227324063 0.042623220709715942 0.45139222263515111 18.896187625441534
-3320 50229.307438467469 104883.50217199062 49991.945291625954 -0.037353472631559033 0.094261416984955188 -0.068558672205064147 0.043270747558399304 0.45131687318538322 22.56450569388408
-3340 49946.215351722334 106693.58196373694 50014.805005598842 -0.037810391786075814 0.09539783007052563 -0.069113138394192253 0.03981826268714616 0.45124826828433645 26.048253780980687
-3360 50014.012198671226 107096.296347782 50060.907712115433 -0.03804933952342883 0.096539068192616512 -0.069898405146830905 0.039618289620963525 0.45118404760597508 27.990983106183002
-3380 50140.211318633737 107323.37491003894 50229.983741574244 -0.038591858177275555 0.09768510248452196 -0.070594573528073634 0.035923697574768022 0.45123489455387666 32.791023398658133
-3400 50006.99338297655 105616.84307817421 50469.840544477018 -0.039403421621185111 0.098835904252230058 -0.071500058155977819 0.042558304040042218 0.45154554280664466 41.752075200785256
-3420 50032.384136116882 105142.04937690096 50182.449711930291 -0.039690016446773578 0.099991444973389867 -0.072982373151776053 0.06463216270228038 0.45188184467443809 26.959341779903738
-3440 50117.440376004888 105865.24987449023 50137.005965484888 -0.039838414690099237 0.10115169629628361 -0.073979702752167281 0.053920999498254671 0.45187388403401485 13.427869805189703
-3460 50160.954608884989 107281.85068603099 50105.630393850006 -0.040691117353725936 0.1022936238573396 -0.073866903372134862 0.049182209125206981 0.45165347972731307 10.455135363297217
-3480 50151.319024224416 108646.73698319003 50133.304154756501 -0.041617464863323995 0.10341706203581209 -0.073991306339179955 0.040467204388432564 0.45161362023031842 7.2611780367118621
-3500 49996.608518417765 109104.26555026969 50219.725887001674 -0.04231339054541812 0.10454494421310405 -0.074648991007418078 0.035135673428702788 0.4517373925159725 6.7599905770569997
-3520 49982.039372811487 109288.51913299966 50133.290519047638 -0.043074020633809294 0.10570674681868725 -0.075500455907136887 0.033062017094569615 0.45198421541634032 6.5968737417552683
-3540 50046.720078935949 109551.2658747245 50175.829523562024 -0.043710385832956639 0.10687305482192992 -0.076541823955784391 0.032179924825819974 0.45226441286685726 6.3844465707510194
-3560 50075.5500781921 109413.11157502643 50171.527284730866 -0.044318397000346253 0.1080438638269028 -0.077467362073006654 0.030122247887216614 0.45246306259559499 6.7809142091671992
-3580 50102.866215361522 110011.50545598569 50161.687381724681 -0.044894189365662439 0.10921914716879653 -0.078357742064052771 0.029982432387913278 0.4526223119126403 7.5057333508876347
-3600 50099.102323033541 108783.4588877551 50229.1221681971 -0.045710301441362282 0.11039885569808457 -0.079530601693966127 0.032054000431332566 0.45306510532678329 8.2382880759676524
-3620 50048.809037688115 109188.80257988737 50188.367662612371 -0.046235510094064902 0.11158310270784072 -0.080705172731520447 0.032248691891543217 0.45334699547105956 9.0855950222970776
-3640 50066.200426433803 107617.60632739859 50274.662026584454 -0.046673281914391032 0.11277172263025365 -0.08213539565058689 0.032137398848930528 0.45371825163064061 10.86399057097996
-3660 50069.054128667536 107915.87019969609 50136.374728049326 -0.047432716382091865 0.11397333607291479 -0.083459226304009856 0.03245138638192531 0.45419966959834013 13.671071122720528
-3680 50058.407158414135 107541.80128372999 50355.791272336741 -0.047784151598714852 0.11518796391822056 -0.085038334194850712 0.032810206833902358 0.45459027654754391 11.038107312435823
-3700 50101.962176965979 106030.01417435883 50204.931926564655 -0.048236796443595985 0.11640694886440379 -0.086609810870417636 0.031605526672540588 0.45502922913175292 12.453537504531631
-3720 49915.553815778308 105147.45452916318 50187.267482823569 -0.048646964332208727 0.1176290361947832 -0.088349175107700975 0.032781568561340395 0.45553442512999159 13.202129561180008
-3740 49917.108844730428 103151.96109644348 50311.003440130415 -0.048930657078957537 0.11885542432337838 -0.090187499112608066 0.045754716646720546 0.45602184577659294 16.202006871029894
-3760 49984.070209555306 101352.02986806011 50067.154537130991 -0.048922626228139525 0.12007814383799592 -0.091664586117940816 0.049125782161862162 0.45615583102386648 23.978864319930072
-3780 50044.019557379412 100683.07586660807 50136.83380120212 -0.049257907990675399 0.12129712809318488 -0.092504177956158465 0.055265539971470351 0.45613184117256184 17.716131726346745
-3800 49908.525796084316 101247.22208335517 50220.631759272626 -0.049456438709295586 0.12252028193058412 -0.093467759545974666 0.046733351493804927 0.45609864161532726 17.148672587635936
-3820 49932.803005265567 101608.76742115419 50420.133903259288 -0.049028380920548148 0.12376486749452843 -0.094820843295798901 0.048493959153649992 0.45592480493913257 18.92904352833968
-3840 50043.232236240794 100543.19254691181 49999.054803670275 -0.049149792835097648 0.12501363093074752 -0.09654913295311035 0.04222713730385981 0.4562516622521528 23.890720761862802
-3860 49955.891984834168 100582.04830035544 50297.30166260089 -0.049179257288293046 0.12626654724418657 -0.097809750717597288 0.0414880081823195 0.45627187077526959 21.040805058606871
-3880 50165.859168838222 98306.38907650164 50076.614621252847 -0.049647571344596381 0.12752359158932369 -0.099333318076888555 0.038484095291572748 0.45667127559416826 16.704842049914898
-3900 50054.252964016778 99859.557528804828 50261.314120502335 -0.050047957902431613 0.12878473926927489 -0.10061664356628815 0.042197795593859617 0.45690081845109209 8.3091189233139957
-3920 49968.684176808136 99431.936190941939 50115.512666453797 -0.050376270357491919 0.13004848618480014 -0.10170640653728889 0.03604152077434547 0.45698462767161141 4.8485548942135592
-3940 50046.339853133795 101993.49052179091 50158.702962222102 -0.050662743502080616 0.13131628274240992 -0.10260140283944816 0.031908023892442398 0.45693774869993076 3.896997738139834
-3960 50087.528417672896 103321.41356447572 50142.607432661338 -0.051030967951850602 0.13258211579181323 -0.1034415286939812 0.025426194923723701 0.4569065310937373 4.066639875781366
-3980 49936.345297718086 104132.00448335746 50012.415733090369 -0.051567566959470429 0.13384593303669939 -0.10403609003168079 0.023821817739031245 0.45683448121912645 4.0836335236958439
-4000 50065.031047777877 104907.34299680174 50119.736700025016 -0.051940510389694675 0.13511369024369366 -0.10482702352365925 0.022461953152791123 0.45677805409956468 5.3030434334586216
-4020 49975.064370617569 105843.59153950163 50277.300266946651 -0.052263056136346409 0.13638570893439006 -0.10589368814805258 0.024740992782993604 0.45684171146207764 6.3127462650024748
-4040 49985.144562282119 105847.37067266399 50139.885879787093 -0.052406954140328511 0.13766162164117474 -0.10709369411009029 0.024404531356895114 0.45687864022264857 7.8747958729707142
-4060 50081.752165865604 106517.50942146609 50197.27933939897 -0.052367382230904244 0.13894187520193954 -0.10821101890263561 0.027223657820573798 0.45676864664273947 8.4167060441658137
-4080 50027.173396693819 107871.16492367948 50097.967067121201 -0.052831109829811464 0.14022644857566274 -0.1092748620697948 0.028535389318297393 0.45690063440805351 7.1948945169089038
-4100 50127.877998879172 108504.13866269839 50071.443861507287 -0.053398959873801596 0.14151484930003685 -0.11021215800635908 0.026374249379486691 0.45701833586310325 6.4111204617006248
-4120 50062.966820070586 109531.65431686211 49933.662335976471 -0.054001908635182783 0.14280742911990565 -0.11085095001954641 0.026260011241324651 0.45699073049197364 5.3154481386637444
-4140 50151.8052324936 111195.72641807907 50115.401931275715 -0.054624048022236443 0.14410379172776086 -0.11131447567100718 0.025968401789382856 0.45687630770488058 3.3961402345512743
-4160 50022.629601738969 112375.01607827688 50091.290723700156 -0.055256638792716126 0.14540407982021972 -0.11209136961920871 0.022990358869079099 0.45693561174174124 3.1608324989923107
-4180 50063.496233278696 113492.75662687025 50053.352549518364 -0.055702363661354108 0.14670827161296349 -0.11294757608486435 0.021560082360057266 0.45693438416586835 3.7215118102865521
-4200 50096.054371988939 113723.3623721496 50114.976049108722 -0.056210093337546778 0.14801617964896813 -0.11390036482871352 0.020030253716520879 0.45701725529440007 3.7288750987403634
-4220 49997.019463741941 114843.5579979657 50112.165855272862 -0.056927861389379407 0.14932807520787295 -0.11482091716269306 0.020260818434585409 0.45719446941773589 4.4539753524562196
-4240 50113.4992876834 114535.21485934216 50122.467254872412 -0.057577874117838053 0.15064364349810166 -0.11585844931298575 0.02433944724147737 0.45739634281881603 5.7837580416346119
-4260 49993.844328834857 114437.29643008651 50194.225376606933 -0.058274716378180623 0.15196728931870065 -0.11708333769631452 0.022445846230932674 0.45772076880431967 6.2597911689776504
-4280 50019.832865606506 114042.02596587484 50203.017905636414 -0.058543515524935627 0.15329900906363705 -0.11835301642090161 0.025097986235671249 0.45783287785202281 7.5451566548671867
-4300 50097.830866687633 114102.6235406663 50329.118748849425 -0.058855850718830933 0.15463436020719565 -0.11989706299357185 0.029108712904984513 0.45811528994638584 9.1444746172120137
-4320 49996.597625415823 112358.52221614646 50202.474580366077 -0.059235884949447287 0.15597254514148212 -0.12158874938524095 0.034625682912450703 0.45851263596843034 11.11719724108638
-4340 50043.168452397629 111330.52189324077 50291.207168384062 -0.059542800028093215 0.15731431607362306 -0.1232672133743669 0.036924241058453433 0.45886102951477564 14.993791357208346
-4360 50016.953393826167 109296.90540105513 50271.997750906739 -0.059573108439986616 0.15866058054108817 -0.12540967256805899 0.040577675835451771 0.45930809779492315 24.6325097643611
-4380 50022.265955858129 106036.82516859449 50270.337056291377 -0.059408788527178139 0.16001132088215511 -0.12828269492421768 0.045921317605408594 0.46004183859827191 38.718831278184076
-4400 49877.932423939703 100597.99307198297 50326.932334801524 -0.058726536204622856 0.1613655881040032 -0.13184396632349027 0.068469771248281311 0.46086451345952634 48.686911854034463
-4420 49774.642113080088 98845.071478089492 50331.647166054172 -0.057382658721411753 0.16272522032191972 -0.13566647379520513 0.070684598989034397 0.46146746745200701 53.965811768381947
-4440 49679.817739771956 93481.161525257543 50375.462875569545 -0.055816106935967377 0.16408834211787027 -0.13895472898077632 0.082450657758686097 0.46166054069310403 79.61104597099272
-4460 49516.346747954391 86063.604317317891 50358.436744992563 -0.053540721501191997 0.16545493261455382 -0.14343166370826974 0.11016469497166581 0.462109844358778 113.20496217731309
-4480 49720.736123895374 79558.092056797366 50203.173893496452 -0.050406664169759752 0.16682497105957086 -0.14727089435553137 0.12868553073373781 0.46175210103860759 118.52476071217555
-4500 49601.585370174726 81691.251110346551 50280.861050515727 -0.04887047342146545 0.16819843682467447 -0.15020412487328041 0.15090731263105123 0.46176478954735972 102.60889207754309
-4520 50226.314616639211 77465.791097861249 49716.764573662462 -0.047904632171657822 0.1695753094050273 -0.15106251535443219 0.14842079512420572 0.46096528123959252 96.514847461722795
-4540 49875.470494483139 76585.975453013991 50059.157328399742 -0.046923370371444485 0.17095556841846582 -0.15119830569169493 0.14218212601939423 0.4597641990914792 68.124210681239205
-4560 50077.952260577018 78310.061520268893 50265.451287527256 -0.045866652502776634 0.17233919360476327 -0.15206348032007391 0.11744602924754501 0.45891256615840903 40.52709622010979
-4580 49458.31282475865 75501.121682674944 50238.633617849213 -0.04601284422251619 0.17372616482490177 -0.1538251214544176 0.099354705546009808 0.45919432445839242 27.62250110350001
-4600 50080.108164893471 77501.698347374098 49962.259997643167 -0.045135851600273821 0.17511646206034734 -0.15541023522361519 0.076936641079237922 0.45882527389359473 18.151211644891433
-4620 49958.69935335761 78068.314297038625 50239.952190268261 -0.044975917370583013 0.17651006541232925 -0.15646670911679214 0.060960371220529982 0.45855620872239222 18.098706098101783
-4640 50143.678439349816 79226.457874099549 49881.407121311247 -0.044664603572848578 0.17790695510112267 -0.15771184572058322 0.05867031020583241 0.45830542597367657 17.015878223579399
-4660 49942.767814386505 80584.187508241012 50171.41077527681 -0.044553596433202558 0.17930711146533754 -0.15881840549845658 0.047210899410796071 0.45808620998586608 17.268731648191654
-4680 50058.707566855868 80187.729548399948 50334.391313456115 -0.044477530673944624 0.18071051496120932 -0.16034205943102384 0.04746940684909446 0.45811015374289937 19.519934593494316
-4700 49862.260878603047 79381.47886088799 50221.554496547971 -0.044382583514860199 0.18211714616189734 -0.16181812206884899 0.047606866229180186 0.45809632685585544 19.96974250556335
-4720 49911.732217098557 80347.854994283713 50187.079968084705 -0.044120469961141766 0.18352698575678295 -0.16310701840090042 0.046128324306539424 0.4578887071974187 22.127664348474536
-4740 50002.725493710008 81170.306018101517 50201.79166146159 -0.04396723073429306 0.18494001455077588 -0.1640011592252465 0.044422878319686131 0.4575242169758249 24.334197662548853
-4760 50060.46876872993 81843.559553035579 50222.117343747334 -0.043887986767730147 0.1863562134636233 -0.16544092113813147 0.040620710228767745 0.45749401055895617 26.045895028018947
-4780 49871.452093909786 80517.396507587066 50078.164749991374 -0.043781441588194955 0.18777556352922134 -0.16698258926924209 0.045416128010247601 0.45750256737658668 23.978210645280182
-4800 49938.755272726368 82634.599720455531 50208.418254989978 -0.043312626866157326 0.18919804589493358 -0.16828334297222666 0.041285571955429236 0.45718210449219365 23.744586070255068
-4820 49966.35487406289 82900.551306741239 50346.826849833691 -0.042796630561429017 0.19062364182091113 -0.16981726157871699 0.042677291696567719 0.45696076683974701 25.848289627900169
-4840 50104.286328129834 84581.974496848561 50119.148673412783 -0.04273429302152746 0.19205233267941882 -0.17102480531545655 0.05048050915041951 0.45680680172411786 22.68754723247995
-4860 49938.256320359753 85421.810267059976 50411.033893085711 -0.042905072340591842 0.19348409995416502 -0.1723071808956072 0.045480360390724971 0.45681841921202104 15.73704948548249
-4880 49910.506685438973 87119.036787519173 50208.90992532875 -0.042860480659941864 0.19491892523963264 -0.17340735004492411 0.044198981566475157 0.45661237971583579 11.357645590347255
-4900 50052.470780176271 88764.883080018612 50137.783712641191 -0.042934551163291264 0.19635679024041949 -0.17461167835850935 0.042933941936539655 0.4565257208562814 10.577046469320955
-4920 50046.466977929005 90093.724738881254 50078.228581737472 -0.043154776706508691 0.19779767677057686 -0.17568443911093912 0.043320874383460092 0.45644533493854433 10.816105247921067
-4940 49906.712097000047 92963.717594310248 50053.783598713329 -0.043171463410771278 0.19924156675295615 -0.17647279352699208 0.042230190920897089 0.45609797471577279 8.8494738449905714
-4960 50079.088234278293 94314.453519806193 50184.522746003815 -0.043319602891221574 0.20068844221855764 -0.17733531019220555 0.037849188960455041 0.45586066238784251 6.9573796869322555
-4980 50086.766526533662 95761.594170945289 50280.077230119532 -0.043533277134199314 0.20213828530588354 -0.17838478742250427 0.039428358975385359 0.45575906665339511 8.3203772937366036
-5000 50089.926352662849 95890.668450550947 50005.618237564595 -0.043826179685603386 0.20359107826029513 -0.17962575821443658 0.036022683809750523 0.45580319213106002 6.8203112258991716
-5020 50043.099731357222 97443.774988948251 50073.737295633589 -0.044113224131224781 0.20504680343337359 -0.1803518899541478 0.032647047413979995 0.45556230508637569 7.3693897977000953
-5040 50066.219640153846 98452.154507104162 50125.747599132061 -0.044604215914705425 0.20650544328228324 -0.1811762444344093 0.033853868711567169 0.45548428506742061 7.8633490755703308
-5060 50000.084027219476 99479.647498175065 50063.378283852246 -0.045078295626489601 0.20796698036914193 -0.18191250555677904 0.032258506680413683 0.45534748757950178 7.4126256004895934
-5080 50134.503812210176 101177.21205481704 50133.617811225216 -0.045481650155644524 0.20943139736039107 -0.18248571753982268 0.034322269107629637 0.45508171376673157 10.024791054895354
-5100 50031.784073063653 101618.84274120234 50097.560802058397 -0.046091512917836995 0.21089867702617338 -0.18317629512464423 0.03734115758381535 0.45499079238665241 9.7863047774799128
-5120 50089.928571843819 101765.56635586376 50080.929639226975 -0.046408429321742557 0.21236449713659059 -0.18381153924569929 0.039451468671509345 0.45471077127139153 16.935484499586956
-5140 49942.785046661695 101000.50672861833 50410.782039059894 -0.046734108788430657 0.2138331374871196 -0.18489763636630863 0.040270322566015801 0.45467976319218678 18.15901795925555
-5160 49989.077937772243 100110.75111740707 50368.782657233503 -0.046517852692243497 0.21530385086112036 -0.18644481420763984 0.045989170862804366 0.45460352665954434 22.236375906139411
-5180 50177.164338726332 97744.983509655634 50423.734394344305 -0.046656711825008634 0.21677661841494522 -0.18796305434888225 0.047064371811545873 0.45470405126443553 23.865659253790454
-5200 49934.648774237896 98786.859529773443 50450.872178780315 -0.047260740281720878 0.2182521531439193 -0.18904641729590851 0.045972581252131287 0.45481956361443399 24.12219914183077
-5220 49875.968392470371 97182.978023608681 50314.981438100484 -0.047554154882865955 0.21973625275941949 -0.19053055550626288 0.05098500320827308 0.45497952508413736 18.259196753422959
-5240 50111.4522779279 99389.331762427319 50291.268811217102 -0.047653054764541472 0.22122309729241849 -0.19163910926511948 0.042549480381630499 0.45482723005330639 18.11099388222296
-5260 50161.131117961857 99798.868587595163 50323.886762850227 -0.047654412514577887 0.22268727429972621 -0.19290337442128208 0.043530509153383877 0.45471897301693692 22.432163341880269
-5280 50091.075716961408 99836.834232639041 50077.658196943317 -0.048404078841313279 0.22412869819535811 -0.19382605056406629 0.052089935869705714 0.45484487399705914 21.387769272009578
-5300 50066.645540680089 98770.600445443255 50083.60894320051 -0.049556478061274181 0.22557272614706506 -0.1944417021139937 0.054306773210310876 0.45502148808229048 24.835307140941744
-5320 50306.79070633329 97722.721411464852 50162.450174499587 -0.050603714535659872 0.22701927555876655 -0.19509010408420163 0.062371005408256235 0.45515721934748449 23.85487128790793
-5340 50238.519358283069 97762.906061296482 50228.68220438814 -0.051967897033152563 0.22846839784144679 -0.19584303411265588 0.066040969734574531 0.45552104747872507 23.55209385779834
-5360 50144.815615828185 96154.189806644819 50172.595374746532 -0.053057334060618147 0.22991924324218638 -0.19666448984331378 0.05866180624864175 0.45577147597308332 28.466931612052683
-5380 50227.459458196223 96246.695203007359 50337.970054853431 -0.054082575401376773 0.23137179427147714 -0.19750805881248673 0.061043301237320116 0.45599796900381556 32.590986545779785
-5400 50424.630605617313 93712.861959500224 50474.565011019135 -0.054991973720694316 0.2328268693649222 -0.19848906981243691 0.063455097509371561 0.45623474016579069 39.674771268600807
-5420 50074.590989479453 91276.931190353323 50279.240377391201 -0.056151386181305767 0.23428647417431442 -0.20017282183471835 0.064244118941324813 0.45698655164319807 42.464729032148888
-5440 50186.431847232358 88493.388780441339 50260.460751363411 -0.056731602843707568 0.2357485763939054 -0.20108283104717981 0.073213805625835043 0.45700182295148423 48.273706153253855
-5460 50044.964906859415 85875.467231153045 50100.45692252944 -0.05679203801734603 0.23721380541317999 -0.20219238614110627 0.076353956475388812 0.45684148517971479 59.686382279609703
-5480 49883.645542836268 82683.377196242887 50224.689956283859 -0.057579046778529368 0.23868214800615706 -0.2033845222488693 0.091532687154442752 0.4571188609371819 54.49050989945777
-5500 50443.112173553811 81850.959077907173 50132.968714702241 -0.058508995253680592 0.24015294560978931 -0.20314539784682514 0.099317965717742512 0.45669526284231565 40.451056080614265
-5520 50284.342633961642 82591.776042534912 49706.215635494234 -0.059889699956110903 0.24162600836633916 -0.20263539583873688 0.094346198206426118 0.45636789918154436 27.073915066873059
-5540 50347.529257885071 83467.583610925125 49976.838205884233 -0.061390899015480532 0.24310149655726485 -0.20260095992437038 0.082165430650326179 0.45636315594580729 19.547132668173987
-5560 49932.66778396954 83803.975837114514 49947.914241356993 -0.062595089634444656 0.24457949985127372 -0.20297892268457207 0.071964379831277347 0.45641977282103269 13.000636655537352
-5580 50056.579797838902 83854.226415748766 50106.282708177801 -0.063389087764268645 0.24606000407731815 -0.20345736730923386 0.060680039668454214 0.45630666295256073 10.318174024534395
-5600 49986.106565669761 86474.734020396529 50060.206286787776 -0.064231247380007989 0.24754289080064076 -0.2040682682201353 0.046739331288687222 0.45629044640631766 9.3013301118499783
-5620 50098.389358528264 87164.68251376359 50071.858179458919 -0.064627816707984495 0.24902816625643209 -0.20450776766106907 0.045517262033833522 0.455937351925156 11.530944401960133
-5640 50204.385715703465 87735.734611559077 50087.141597438509 -0.065253783627758633 0.25051579581918476 -0.2053871881833757 0.054076767275284036 0.4559470132382249 7.8437649803667266
-5660 50178.514325315853 89279.568858602215 50106.634003742773 -0.066196009632882399 0.25200542525080882 -0.20572393902158917 0.04808759440679311 0.45583239499650746 7.3486292870041927
-5680 50249.331265635032 89858.283755270138 50037.616963319844 -0.067094599982423203 0.25349703975592858 -0.20594286862040309 0.043409616537400657 0.45562878677551882 8.8514485107813101
-5700 50388.971803519424 91453.430217310772 50111.459229516033 -0.068218449181192381 0.25499096531242155 -0.2061494725652035 0.040538607707359231 0.45553978982569221 8.3361161904529393
-5720 50039.248039384329 92715.839505999145 50133.003289857726 -0.069276299211763925 0.25653897990239488 -0.20660750028394684 0.041197623919065007 0.45552229231351699 8.0310051688724098
-5740 49967.409684746402 94233.204748135366 50205.442134553632 -0.069870187992676719 0.25808935701911329 -0.20741684707955144 0.038727755657781471 0.45544217113057034 6.0425087518825098
-5760 50200.347707279565 95165.46190551357 49938.75496024188 -0.070438010616140523 0.25964208252801907 -0.20843318764089572 0.035510517650381643 0.45545929049400652 4.446925471537746
-5780 50052.374124449678 98722.439857639911 50094.100109211467 -0.070989165361242459 0.26119714237911801 -0.20903219785646765 0.03096085741732572 0.45523876410110686 3.8551010978335158
-5800 50063.211864438032 100619.21029748341 50221.13994418639 -0.071599822149364917 0.26275452260647253 -0.20976334722916004 0.031996195453287114 0.4551213150471608 4.4962267379250891
-5820 50235.212042287014 102313.78233939828 50127.648007565214 -0.07235441704272548 0.26431420932769883 -0.21061618594568829 0.031196036670794784 0.45514733068797786 5.78219253205984
-5840 50181.363969300517 103358.42387103706 50179.002090312497 -0.073132631756195957 0.2658761887434673 -0.21146722043242849 0.034277495513036653 0.45518398157683276 7.6641959925476559
-5860 50135.300638648849 104879.63347689452 50147.623538860054 -0.073584807446232289 0.26744012316004034 -0.2124452029808799 0.031935301419332179 0.45511109329687949 7.5695697157980115
-5880 50217.92359901443 106349.96020711458 50103.910780160812 -0.074406173368757489 0.26900599823987126 -0.21317349375500586 0.031355952311551909 0.45510225600813703 7.9989767781527892
-5900 50048.724998787431 107654.65335644185 50198.988937297312 -0.075015571202733652 0.2705741241771828 -0.21401076947687819 0.030174192162723525 0.45503607286050635 6.6071407257112318
-5920 50015.532521099783 108613.85006899349 50210.824260680885 -0.075539468114404859 0.27214362237071277 -0.21486236662976668 0.031462670955788065 0.45493033735227051 6.8227273499004388
-5940 50158.538626418864 109104.61372799512 50125.329660554999 -0.076242227944850374 0.27371534334405978 -0.21583656268260865 0.032643004902589194 0.45498769469108025 7.2952988434395785
-5960 50072.585968079002 109226.00163481837 50207.263840624531 -0.076995633524997484 0.27528830027817863 -0.21687726278599342 0.031714532884444147 0.45510821015440095 9.2558724614297692
-5980 50073.716660544356 109377.79961791448 50190.831663251338 -0.077431588111033733 0.27686247791913193 -0.21811499991420205 0.035637806848631326 0.45516243185795552 10.694902427029412
-6000 50341.330714257878 109167.41560217475 50239.105090538353 -0.078376624854949922 0.27843883598282276 -0.21908828119232202 0.035270680328133228 0.45534871263796334 10.565428857249609
-6020 50051.113091763917 109253.53899871861 50272.67313741368 -0.079715785115832563 0.28002084213996897 -0.22013244802524121 0.039530964540065848 0.45578497829995401 11.544646964079959
-6040 50013.142955518539 108523.34215979189 50124.419437487784 -0.080419816964169499 0.28160500745848732 -0.22147468949998644 0.038948314334578141 0.45603640631976111 9.7450160812313733
-6060 49981.526987019097 110534.89886593015 50319.381573747683 -0.080670135289276523 0.28319131902049566 -0.2226938198831025 0.033061211320049418 0.45597283346726802 8.6847877814875751
-6080 50064.204179728462 111636.37361389346 50152.510969598312 -0.080936948334405054 0.28477976398539684 -0.22404543082138842 0.036450770338825426 0.45598914262329787 11.587232382531374
-6100 50219.320539341046 110652.8146127238 50201.067440101331 -0.082366368329940279 0.28637032958941433 -0.22538867775250568 0.036480130668230783 0.45663183863658696 13.919379754874397
-6120 50241.393643196716 109070.98606390026 50207.265283638801 -0.083818253693085543 0.28796300314513384 -0.2265382209653054 0.037308604977066527 0.4571796876280258 15.690617928962597
-6140 50176.115519917534 108494.77354106931 50124.847547793506 -0.084663139091175871 0.28955777204104649 -0.22718123560158832 0.045523011031923036 0.45712167393934894 23.802773900957106
-6160 50065.054042239062 107786.64196089511 50230.302972863865 -0.085755584982377384 0.29115462374109441 -0.22840711997710486 0.050499766273761175 0.45751320775729881 24.782910397944015
-6180 50050.819075917134 105745.92187955641 49671.366165277541 -0.086712502367581948 0.29275354578422025 -0.22980885330282438 0.060320545347439573 0.45792519400656928 17.691013695960805
-6200 50260.635140706945 105686.51121844171 50682.329406498109 -0.087296174593213954 0.2943545257839168 -0.23079041103230563 0.063589253493493605 0.45790581446167977 16.446959711942942
-6220 50097.602689844498 105714.00493883864 50213.916698934736 -0.087959900121024642 0.29595755142778246 -0.23211408690846638 0.062838741615840493 0.45811414228564723 19.070829974172554
-6240 50263.792618080974 103133.00234232913 50398.417057285253 -0.087928561435135555 0.29756261047707722 -0.23373332027418692 0.057287819056729812 0.45810484107675375 25.65576992725796
-6260 50268.710599935497 100871.31950140072 50516.926544817594 -0.088518083220486002 0.29916969076628191 -0.2355197881535698 0.052991721379500097 0.45852134919598381 33.841679898625863
-6280 49702.988750047429 96263.987118667748 50720.303911513336 -0.088655849217965946 0.3007787802026603 -0.23752574209359434 0.068141701380696362 0.45881076282684147 48.115022366467386
-6300 50118.170558062673 92860.744241536813 50600.657090663291 -0.087291661525518843 0.30238986676582452 -0.24043955231844788 0.084071505568453608 0.45877749813264163 45.476841611366517
-6320 49974.119894195763 91955.357264575738 50157.418451469173 -0.087026784539028998 0.30398811774950796 -0.24277278367387797 0.083297770291876183 0.45903186886798997 39.699416358522484
-6340 49804.873288495517 92332.193190603823 50038.163766612139 -0.086999134561215982 0.30558832390327401 -0.24379722823272462 0.07486212551041789 0.45870534393263057 19.998715792035725
-6360 50240.820470158869 95875.387197981108 50095.9797735916 -0.087352120361838814 0.30718876421462815 -0.24475554789781537 0.067515627842390374 0.45854881415778687 13.976986902612555
-6380 50198.516408282921 97687.863790415737 49943.825520712904 -0.087755366825108136 0.30878942396840425 -0.24531433520418988 0.05668544710546259 0.45820291892428272 8.2862771378297992

=== removed file 'scripts/test/checks/data/checkTestTriax.spheres'
--- scripts/test/checks/data/checkTestTriax.spheres	2011-01-11 18:58:08 +0000
+++ scripts/test/checks/data/checkTestTriax.spheres	1970-01-01 00:00:00 +0000
@@ -1,100 +0,0 @@
-0.889007 0.370253 0.49249 0.112051
-0.106231 0.613934 0.902817 0.0962812
-0.12452 0.873184 0.875371 0.127055
-0.832523 0.191905 0.869978 0.130982
-0.427274 0.712482 0.491121 0.129754
-0.130636 0.121106 0.121567 0.122252
-0.924603 0.40166 0.288205 0.0760697
-0.664008 0.704862 0.117063 0.122249
-0.723763 0.417214 0.676983 0.0903237
-0.580382 0.878832 0.68611 0.124262
-0.575315 0.555035 0.254806 0.100855
-0.74337 0.486397 0.280619 0.0851146
-0.39043 0.2715 0.899719 0.100437
-0.629798 0.754126 0.885567 0.116237
-0.450424 0.114867 0.114739 0.118933
-0.519912 0.328938 0.717354 0.130634
-0.477927 0.129573 0.55581 0.130896
-0.927541 0.716063 0.789473 0.074717
-0.460968 0.74796 0.241157 0.12545
-0.462977 0.631696 0.697762 0.0873663
-0.272396 0.309091 0.472434 0.108493
-0.116645 0.116327 0.691447 0.118586
-0.878025 0.8233 0.121058 0.124751
-0.739467 0.469218 0.439503 0.0745774
-0.333154 0.91401 0.91469 0.0891591
-0.917424 0.919932 0.298377 0.0844085
-0.273897 0.663729 0.647263 0.0957049
-0.333073 0.891726 0.108271 0.108659
-0.581354 0.500781 0.548516 0.119384
-0.86913 0.578421 0.619917 0.135086
-0.733968 0.679969 0.323001 0.0979915
-0.273468 0.103312 0.895351 0.104989
-0.587308 0.127969 0.32062 0.129824
-0.106708 0.694978 0.538144 0.108407
-0.126469 0.531662 0.169561 0.130534
-0.773902 0.769791 0.721813 0.103444
-0.905888 0.906728 0.669521 0.096856
-0.769344 0.291209 0.315762 0.116945
-0.700505 0.0913456 0.61564 0.0936637
-0.297977 0.130503 0.313111 0.132732
-0.665138 0.483651 0.0951909 0.0948744
-0.0848007 0.0844155 0.319672 0.0850136
-0.872557 0.568489 0.130253 0.130598
-0.0903266 0.708086 0.737566 0.0901761
-0.36138 0.478965 0.612469 0.112567
-0.0801136 0.0785539 0.919915 0.0805341
-0.690681 0.904312 0.203504 0.0973209
-0.721138 0.41539 0.883633 0.118038
-0.0965956 0.182296 0.471412 0.0967464
-0.0831669 0.297167 0.608682 0.0836104
-0.335886 0.896917 0.35925 0.110526
-0.256366 0.0949048 0.533258 0.0958868
-0.869386 0.129365 0.472819 0.132068
-0.447891 0.317073 0.235048 0.120905
-0.121732 0.274307 0.875431 0.126186
-0.57658 0.275729 0.917692 0.0871043
-0.595802 0.396661 0.365697 0.0955921
-0.604975 0.874928 0.406538 0.12675
-0.115718 0.881873 0.409916 0.11954
-0.662571 0.708538 0.556382 0.106038
-0.129734 0.492715 0.687081 0.133176
-0.640484 0.297388 0.155114 0.0863378
-0.662068 0.594781 0.735305 0.106973
-0.0740249 0.704755 0.0740086 0.0740423
-0.288438 0.914122 0.746346 0.0883019
-0.608424 0.114666 0.800904 0.11637
-0.885311 0.112878 0.226228 0.115618
-0.865802 0.800774 0.470278 0.134602
-0.897753 0.384666 0.754854 0.103426
-0.280255 0.282575 0.694192 0.115552
-0.881949 0.319611 0.114871 0.120729
-0.922221 0.250453 0.635867 0.0779785
-0.127178 0.489092 0.42654 0.127629
-0.242809 0.709746 0.0948951 0.0950931
-0.407839 0.0878376 0.758298 0.0879989
-0.277809 0.285493 0.099211 0.0990407
-0.317299 0.699551 0.868143 0.133576
-0.909094 0.0904488 0.688579 0.0913639
-0.467612 0.337789 0.485116 0.0892909
-0.504256 0.523261 0.879854 0.124714
-0.892311 0.559626 0.37862 0.109296
-0.117733 0.864499 0.172626 0.11874
-0.684607 0.10613 0.105716 0.105557
-0.113043 0.290449 0.29119 0.114165
-0.6737 0.281479 0.528252 0.119101
-0.880302 0.880578 0.882143 0.120219
-0.890397 0.566897 0.890321 0.110156
-0.455847 0.0808486 0.920019 0.0811885
-0.3068 0.899905 0.563592 0.100155
-0.236787 0.690509 0.328985 0.121908
-0.594301 0.632676 0.408954 0.0737832
-0.110501 0.889304 0.639394 0.111008
-0.372094 0.494768 0.379451 0.122105
-0.534502 0.905335 0.0939354 0.0947423
-0.393152 0.791555 0.686637 0.0856638
-0.508811 0.913869 0.912628 0.087609
-0.276046 0.455607 0.884703 0.117275
-0.382944 0.533427 0.127997 0.132751
-0.923481 0.716801 0.285144 0.0772079
-0.0915387 0.328191 0.0903334 0.0922539

=== added directory 'scripts/test/checks/dataTriax'
=== added file 'scripts/test/checks/dataTriax/WallStressesCheckTest'
--- scripts/test/checks/dataTriax/WallStressesCheckTest	1970-01-01 00:00:00 +0000
+++ scripts/test/checks/dataTriax/WallStressesCheckTest	2011-01-19 08:37:26 +0000
@@ -0,0 +1,301 @@
+iteration s11 s22 s33 e11 e22 e33 unb_force porosity kineticE
+400 49566.037998387372 48955.252378055688 50830.41890644082 0 0 0 0.0053680811782467674 0.44488693137992941 0.15903777482138973
+420 49977.096201642387 48864.614561700706 49899.23302581007 0.00021267293086211031 5.8964253128234604e-06 -0.00035627549183499062 0.0068712278837924348 0.44496336859240598 0.19015952577734965
+440 50036.058942961281 48968.561929892297 49972.202706320968 0.00024631280266909053 2.2978202122293951e-05 -0.00032962028724921116 0.0046803160246437908 0.44492041994286163 0.15828015151073432
+460 49987.064491349811 49100.818028878886 49996.869812418969 0.00016482477500420631 5.1178199623532612e-05 -0.00028965271763504167 0.0037816477919528054 0.44492781380926466 0.13205742692258149
+480 49994.801281714193 49190.913320016458 50012.447463006683 0.00017935166373592845 9.0429787702956814e-05 -0.0003017210425847727 0.0024870837542071843 0.44490466118123817 0.12684051084280809
+500 50001.058302638965 49374.565212195215 50007.448078951697 0.00018012080645627497 0.00014066702764890021 -0.00032441043230233674 0.0022224589053528895 0.44488894232788867 0.12098178842261725
+520 50001.972762399855 49587.995913963183 49999.900082141794 0.00016944808710761875 0.00020182366019785475 -0.0003336510480161043 0.0017217812852814381 0.44486604724526796 0.11684035515158114
+540 50004.546643027519 49829.569522149781 50002.063374404788 0.00015293821005952561 0.00027383480127565057 -0.00033552983965115383 0.0014274035215790576 0.44483627879208898 0.093197709146506172
+560 50014.752514428495 50128.491462389895 49999.362303495283 0.00013745665316053127 0.0003566341897850414 -0.00035477664315635164 0.001810806332081626 0.44480959085979099 0.090567782649043263
+580 49998.209499657431 50451.165301212961 50004.929553092625 0.00012292085491632948 0.00045015702910980806 -0.00037052798672515167 0.0032703829593221777 0.44477448189695884 0.074286413598736653
+600 50005.359621062576 50841.94276532701 49998.114355201702 0.00011148388275992605 0.00055434040164428322 -0.00038827295699470272 0.00324864200831451 0.44473283762739801 0.067260565073482936
+620 50005.62808209275 51223.817503700709 50002.297374122194 9.3364590503689941e-05 0.00066911667837191028 -0.00040761356222081399 0.0027744067202789061 0.44468990472120251 0.060230488047957942
+640 50002.963006223261 51593.510830551415 50002.522355566296 6.4891961117484562e-05 0.00079442596497925619 -0.00042728310164930858 0.0024974079932179433 0.44464705138825594 0.056768052647139473
+660 50004.47502109543 52064.593028300187 50060.399737517502 4.509840815728011e-05 0.00093020215871885813 -0.00045563276377594145 0.0023348230672856829 0.44459838202267599 0.055823130576791349
+680 50003.922870151539 52611.469521519139 50002.386481644186 2.1435372258399064e-05 0.0010763822755367532 -0.00047974978058954181 0.0019602328835925582 0.44454372777891621 0.052284334705629293
+700 50005.94855032242 53107.720732221416 50002.9976237222 -1.1067175470784068e-05 0.0012329070304957727 -0.00050266090888447087 0.001700832071693125 0.44448756215649532 0.054150188884905824
+720 50006.389210929665 53640.921536506714 50005.863747930838 -3.8972971035134305e-05 0.001399704940235198 -0.0005314267240745 0.0015983052595450757 0.4444263822589794 0.053756805581121142
+740 50005.156937890941 54222.543643777644 50005.178795685075 -6.9183933860726208e-05 0.0015767234983194154 -0.00056735460610184097 0.0011985073828479787 0.44436477700024168 0.054175464615800119
+760 50008.210969832144 54850.728756560879 50006.081722901501 -0.00010235457649716767 0.0017638953467352973 -0.00059744222312149199 0.0012058904190005151 0.44429592197977025 0.054427738954411171
+780 50005.52909633646 55495.565329390651 50003.648296804757 -0.0001431571692497864 0.0019611592113214539 -0.00063525408506367109 0.00097245312354638273 0.44422998410717152 0.047408125629938444
+800 50007.241971481664 56201.644209122518 50003.733952172523 -0.00017732527726025245 0.0021684607289895862 -0.00067409328957867567 0.00095470297046397631 0.44415534240278287 0.047710030227362768
+820 50009.764236139432 56938.971703308722 50003.033155897574 -0.00021925042124761637 0.0023857234018523979 -0.0007115680821681747 0.0014709716248607935 0.44407870685486495 0.046978302688125716
+840 50008.137044221599 57671.239697471647 50004.816766807031 -0.00026076512789549914 0.0026129032370259117 -0.00075293276112191787 0.0015706428060102838 0.4439984813741904 0.048442529104732533
+860 50008.892317611229 58461.365835084231 50007.302284468009 -0.00030509791027016095 0.0028499306693101785 -0.00079423647157349816 0.0015806260960581043 0.44391430141006438 0.043304491893954772
+880 50012.162714007216 59279.119880352977 50004.862174897949 -0.00035749338808990723 0.0030967460971833608 -0.00083516851320289453 0.0024587185446566092 0.44382894242866483 0.037493682209173484
+900 50009.327535467215 60080.367665305683 50006.633557880443 -0.00040197115804317755 0.0033533009308541646 -0.00087852547254407658 0.002224651641544069 0.44373509727322086 0.037691364159763999
+920 50014.793095669549 60938.44179850287 50005.405045302323 -0.00045479936801977886 0.0036195120495683326 -0.0009325240434291199 0.002174824547336886 0.44364643029415307 0.042658442863613033
+940 50010.70559567857 61815.820562935856 50006.634810485935 -0.00051784859990702001 0.0038953454932306826 -0.00098269073668170938 0.0022004164942143159 0.44355595010059334 0.040888328551092396
+960 50004.363902876139 62695.940881212788 50014.064795553524 -0.00055973177700115173 0.0041807280182940528 -0.0010570079897317844 0.0018586161521949879 0.44346180176664457 0.042691464267911455
+980 50017.397488818235 63679.019521287853 50009.460488662917 -0.00060770180912511987 0.0044756016278084693 -0.0011288055169523987 0.0018421705180351447 0.44336434002816233 0.046858128898113138
+1000 50008.491219792108 64594.160565640654 50005.533808335676 -0.0006794766661242824 0.0047799248681691664 -0.0011968827217597241 0.0016959790704666143 0.44327278197601738 0.047474298047119522
+1020 50011.49623842779 65600.190316090346 50012.64758585854 -0.00073440428810715795 0.0050936037380713431 -0.0012706431296587101 0.0016224446932724182 0.44316978301365434 0.045992318862660933
+1040 50011.121662242003 66583.505970307335 50012.57961763152 -0.00079797857310266143 0.0054166183976931273 -0.0013495043768270028 0.0014876894783416557 0.44306922201959376 0.051068537806104125
+1060 50012.81036957405 67598.623818575463 50014.84438847912 -0.00085578899933674022 0.0057488918948768583 -0.0014371918555643056 0.0016629589752940118 0.44296519122881128 0.050374157731787418
+1080 50015.114556055763 68640.092420288682 50015.315531424734 -0.00092311339800707612 0.0060903678409575512 -0.0015247805057382116 0.0015852012972787978 0.44286125950642508 0.053366554192070939
+1100 50013.728691172386 69699.192829950349 50011.160910325729 -0.0009853195067314306 0.0064410118673955217 -0.0016138055181873032 0.0015831076714283051 0.44275014777335953 0.057455759726266861
+1120 50010.810116044704 70733.000214090513 50013.705776152812 -0.0010661662778355483 0.0068007085840794792 -0.0017122437475882511 0.0015518975725231741 0.44264960430184136 0.058558365860792959
+1140 50009.026204664653 71776.587492003702 50015.942860265808 -0.0011316904216435591 0.0071694624890985973 -0.0018158156483994625 0.0017149908396863901 0.44253831380470171 0.05415957558237023
+1160 50018.667089896604 72875.493201932492 50013.333715999965 -0.0012106696219497306 0.0075471776080603143 -0.0019274405061449923 0.0015990832450179305 0.44243399679805245 0.061192039283979698
+1180 50016.15212889963 73973.362972415722 50013.680999619311 -0.0013088042885596801 0.0079337986058462696 -0.0020285809571168392 0.0018347593174341743 0.44232952931894032 0.067540670648322962
+1200 50022.069512445865 75124.810209945164 50016.229737059344 -0.0014051875576485216 0.008329313252456479 -0.0021253896633859899 0.0019068210163981707 0.4422166885248931 0.0697953189638576
+1220 50013.678711623026 76245.324262376322 50015.00639442441 -0.0015046130828248352 0.0087335482107491948 -0.0022373949305522899 0.0020025259530435115 0.44210913521071282 0.069127260601857754
+1240 50025.896094259748 77409.032316124285 50014.988539847582 -0.0016064410272227038 0.0091465681130706925 -0.0023366018980840145 0.0020658102884513743 0.44199085818506667 0.07198189757756443
+1260 50015.954368970517 78587.044802919801 50018.478542287499 -0.0017218227024756235 0.0095682475078417515 -0.00245040311198283 0.002292345262936305 0.44188343303601246 0.08454884024886547
+1280 50018.095476946932 79738.124150619638 50014.534301501139 -0.0018256445487115692 0.0099985319169222618 -0.0025806780458952068 0.0022874601342012619 0.44177392672853194 0.09764042476589764
+1300 50030.65797566816 80920.354866014313 50014.490254409859 -0.0019458213554588793 0.010437441576343994 -0.002694645312997488 0.0027198129974564502 0.44165960953604277 0.10271063008236009
+1320 50012.038252986713 82078.499978884211 50015.776798700048 -0.0020640863280565508 0.010884742932449567 -0.0028349506515926888 0.002758351795918186 0.44155422342623107 0.12517899118391776
+1340 50022.072309239811 83264.808937098205 50020.224676926104 -0.0021633253101561159 0.011340563181045945 -0.0029819228578914681 0.003150579192822038 0.44143715586304955 0.10928972384026862
+1360 50023.351005747929 84557.013150444851 50017.158685400595 -0.0022943790430305856 0.011804741573059318 -0.0031179011818638683 0.0034009226467739666 0.44132702638991356 0.096016691629119993
+1380 50016.077590483656 85800.993930786994 50024.889794607101 -0.0024204195304700616 0.012277224479966689 -0.0032613361323940515 0.0035398513254209668 0.44121360009077365 0.10358518398584944
+1400 50027.253927804952 86929.933574173658 50028.103706971029 -0.0025700347505772979 0.012758070360127082 -0.0034147417082690634 0.0031638394270315211 0.44111422501674358 0.13614685479436714
+1420 50034.342183972702 88253.692664038696 50030.00224640769 -0.0027244532683565409 0.013266205328087678 -0.0035946403000395666 0.0037375973664536787 0.44101707224504094 0.124680339248309
+1440 50032.604734863715 89548.542985064094 50023.47663399476 -0.0028862285573388042 0.013782924067679756 -0.0037477966483777324 0.0037266036366262719 0.44090426531872134 0.12181755201776356
+1460 50027.868231740504 90982.364975616991 50018.835985097794 -0.0030578272615698382 0.014308175226444052 -0.0039119014147398334 0.0034038006966997181 0.44079827997042459 0.13958962733005151
+1480 50018.237616149301 92122.048315490509 50032.194445367641 -0.0032039731089447063 0.014841907759114101 -0.0041347644652315737 0.0033076684025706671 0.44070615864344137 0.14318717953766491
+1500 50036.647941486532 93362.499424031586 50036.682400874764 -0.0033632834611440282 0.015384070925782211 -0.0043612461423623763 0.0042297346497067005 0.44061869439109813 0.15591968890200064
+1520 50023.829950315892 94621.134132044463 50037.635641959707 -0.003528648099858932 0.015934614290071189 -0.0045974500905229835 0.0041834949284867825 0.44053535447798753 0.17341662819570747
+1540 50044.955182856953 95632.448123411363 50028.16857467041 -0.0036972314610840503 0.016493487717318473 -0.0048586893052997276 0.0049062023435101545 0.44046315043034445 0.20289514060600553
+1560 50031.882272567214 96943.174409213563 50021.830731646798 -0.0039311629251763394 0.017060641372773154 -0.0050772681238670679 0.0053216926406885086 0.4403989995615411 0.23577512401476572
+1580 50027.069411980367 97692.654457625293 50031.784404510938 -0.0041654289916403702 0.017636025719800514 -0.0053074060663011414 0.005679718332583154 0.44033689140696669 0.28062806002856971
+1600 50028.654889161313 98670.955135255121 50033.593865106508 -0.0044012943659611998 0.018219591518100212 -0.0055963618870513761 0.0056094864891141783 0.44030401325401303 0.37337449145173135
+1620 50049.073577087132 99437.989876198582 50026.641615990004 -0.0046413361183579331 0.018811289821932031 -0.0059021965446735044 0.0059322856423293458 0.44027836633635009 0.42209722652235232
+1640 50032.54229274745 100272.81887449691 50046.986158055552 -0.0049025537768449751 0.01941107197835662 -0.0062068218898119311 0.0069338145825944483 0.44025936953593442 0.41991866397734395
+1660 50026.392708482643 101264.87297387703 50032.466465935511 -0.0051346251856785805 0.020018889625481616 -0.0065491121362623046 0.0077344711694811432 0.4402406425447053 0.51309872026835979
+1680 50035.060743615613 101753.16189470836 50062.64703046513 -0.0053243353370055133 0.020634694690722079 -0.0069747838457121193 0.0077266903094270322 0.44024040565199635 0.6763880993571274
+1700 50046.751198339334 101944.63477102852 50037.409165908437 -0.0055837883527159607 0.021258439389070589 -0.007465914851316903 0.0070602226907480418 0.44031140067739194 0.78130877791305786
+1720 50052.944974450365 102385.48903940769 50018.862197936527 -0.0058731706395913231 0.021890076221375256 -0.0078920676471882483 0.0074845135298195614 0.44035835560192188 0.66625826110489905
+1740 50031.023114860465 103006.77414740455 50061.914731141827 -0.0061213217307384653 0.022529557972632272 -0.0083507062766330145 0.0074331354195302634 0.44039602267690026 0.67975996468300759
+1760 50036.049657946511 103205.89696227368 50057.30369610303 -0.0063377682139140494 0.023176837710283629 -0.0088669943885356182 0.0073982335761506798 0.44044384151179294 0.7932185593293769
+1780 50045.484456738035 103669.88030901441 50031.664492022232 -0.0065841108425803967 0.023831868782530713 -0.0093568390403409949 0.0073309283088975512 0.44048925112524356 0.7479722541667897
+1800 50071.599267962119 104473.99172675019 50045.34515670751 -0.0069270324096878996 0.024494604816652641 -0.0097025278419885855 0.0087415221584656397 0.44050372790630155 0.76256362248519249
+1820 50045.408019729715 104996.86529545336 50051.352552736171 -0.0072564626248444869 0.025164999717337426 -0.010200501497453978 0.0095591188572324796 0.44059156694372786 0.80802620388907109
+1840 50020.114563618445 105207.50162796638 50024.337561191722 -0.0075787225880916496 0.025843007665023905 -0.010705352954276132 0.0090764810838837237 0.44067497046554488 0.95932340124958504
+1860 50098.158083603521 105624.19390702808 50044.239418358993 -0.0079941029724468482 0.026528583114251044 -0.011108331507657958 0.009942143149529523 0.4407492346635386 1.4646274041283049
+1880 50077.137742226427 104721.95031854876 50025.937907908148 -0.0085829224358547722 0.027221680792019164 -0.011731998034881293 0.01184217701278502 0.44103962755514897 2.5955395784500794
+1900 50042.447903319226 104460.21774512067 50101.767889549934 -0.0090268146408970362 0.027922255696159335 -0.012498178311617444 0.014894793951447154 0.4413243439735835 3.3486606532104912
+1920 50117.407538366439 103244.20147336698 50096.54741719483 -0.0093818567000053966 0.028630263093715188 -0.013285419304981338 0.020454474581742647 0.44156691053580166 2.4123285848201577
+1940 50023.561152537506 103546.78717835245 50017.851949860633 -0.0099107955681736089 0.029345658519329684 -0.013788625820808705 0.016995045165877208 0.44174376618265998 1.2695587930518211
+1960 50066.478515282237 105506.71997235318 50070.854822389796 -0.0099953697847823837 0.030068397773648038 -0.013989481507105227 0.016502560770350935 0.44149958212303231 0.74959335603261867
+1980 50055.218364083776 106470.56285684057 50047.006079563776 -0.010354999347766783 0.030798436921723842 -0.01447592328798549 0.014036593309540097 0.44156438239333579 0.76524589180791291
+2000 50037.957411792617 107086.89763233457 50049.945423267403 -0.010743823498068909 0.031535732291439841 -0.014956074297929958 0.013610013084600726 0.44163791223718374 0.98565290964516661
+2020 50023.930373970928 107576.50003335536 50080.855182619103 -0.011036606124594242 0.032280240471932065 -0.015583193505635416 0.013633915385663437 0.44173583681593959 1.3919572483807254
+2040 50034.116870266895 107277.53048704931 50129.685434873376 -0.011560469220533314 0.033031918312032227 -0.016207965210168752 0.013342577144751632 0.44195739968287151 1.5796899148821604
+2060 50002.967084709766 107431.93092879855 50092.9438935215 -0.011841731384045092 0.033790722918710409 -0.016758514791115169 0.012915235245496585 0.44199813928872089 1.8043486495279693
+2080 50050.024285545456 107256.68858094858 50062.800115990001 -0.012102320417867135 0.034556611655532816 -0.017517493627318578 0.014525080963021691 0.4421396747640145 1.8556825031626687
+2100 50089.36577645842 107159.25534421443 50034.740771251221 -0.012408896767204391 0.035329542141125797 -0.018305339650249323 0.015344576428232464 0.44231899350617088 1.7992420984197748
+2120 50021.904694440091 107023.21612544126 50098.553316720987 -0.012868372794837879 0.036109472247651112 -0.018788975564288796 0.014261382977159674 0.44240998949158955 2.0003416593989103
+2140 50048.8999784798 107600.00426911762 50100.986919461793 -0.013289248940402015 0.036896360099290058 -0.019459324511684282 0.01415147850394308 0.44257965907747915 2.4503120981604263
+2160 50057.767742983822 106966.76034140858 50112.383555349516 -0.013666881635198937 0.037690164070733806 -0.020114669222973159 0.015953850421035132 0.44271296327291049 3.4046325506377215
+2180 50031.738209726689 105601.22070001217 50193.094145471383 -0.014072835404353166 0.038490842785686583 -0.021094819648400129 0.017813782221918373 0.44303911782476946 4.2747939037051434
+2200 50045.61944168734 104193.65340021162 50182.852503755872 -0.014367439894810418 0.039298355115376611 -0.022286232987822147 0.020598240256925741 0.44341689067174545 4.2275158765216849
+2220 50089.45611808687 104176.63884105172 50061.984928810991 -0.01472314314007845 0.040112660177074135 -0.023164995112455157 0.024892860429468491 0.44365069568126964 4.2520680739529979
+2240 50058.038475687339 103524.16968275803 50023.880178354986 -0.015084067191479377 0.040933717332620051 -0.023793284660347233 0.025286809654837063 0.44374424153637548 3.7203408670045639
+2260 50168.016998530387 103757.9367315932 50114.728108466697 -0.015508642796365086 0.041761486186963986 -0.024434205733519281 0.022585493758371194 0.44387646329024577 5.2376278048141591
+2280 50066.154376504091 102625.14071024147 50072.673666803814 -0.016193369468327425 0.042595926586708847 -0.024896239729927369 0.028815796538963979 0.44405012482220013 6.5958716570176588
+2300 50095.475598185956 102205.30697734408 50313.236137830187 -0.01668323198515587 0.043436998618666192 -0.025739737373656875 0.032613819900294383 0.44432374499034094 6.6460624074859203
+2320 50107.048845382888 101229.42600318159 50077.748662481186 -0.017270088055392804 0.044284662608419276 -0.026554883687968572 0.034510516109688652 0.44463169231217131 5.7284702403524621
+2340 50032.115903799116 100443.18238693199 50157.605449350005 -0.017779949007206093 0.045138879118893742 -0.027130916217440203 0.033159040323244682 0.44476034345605142 7.6486509588168472
+2360 49959.159154566361 99213.133640599481 50194.947806572891 -0.018090608974819324 0.04599960894894016 -0.027988821272631324 0.031236792847686969 0.44493123945749918 10.483627182652954
+2380 50080.352213525141 97741.072645143984 49976.085101021468 -0.018431835024295781 0.046866813131920669 -0.028971479745674784 0.031635255279680585 0.44518467057462263 14.97863187336957
+2400 49925.527914324819 96377.450424635565 50209.959220344441 -0.01925980856497712 0.047740452934306794 -0.029233590449011738 0.038769332267959492 0.44530474427369782 13.277202251514449
+2420 50094.811035027662 95417.876121049965 50101.414513769618 -0.020178839023873237 0.048620489854286117 -0.030068872815746626 0.037248584490521264 0.44578948903954752 10.417692391758223
+2440 50063.032538551008 94233.689671771877 50182.312622786711 -0.020598234472496382 0.049506885620374821 -0.030847564146181713 0.033188257617429467 0.44596220455677149 9.8896105198212574
+2460 49886.264282782875 94411.736135222702 50197.467998668282 -0.020904141360022558 0.050399602190040749 -0.031466093231908347 0.037283087693346477 0.44597977802649624 9.3713745957858663
+2480 49948.127003231864 94964.146259022469 50259.337910260059 -0.020783064607431314 0.051298601748333193 -0.032489708572608376 0.037845660503414015 0.44598173871711116 9.3859134973463796
+2500 49973.018299094125 93230.590834916133 50207.454742429072 -0.020989199537296426 0.052203846706523171 -0.033722007442186536 0.035496090384491252 0.44627705633485221 10.486170649541606
+2520 49887.196631465886 94351.635225728125 50141.531234835209 -0.021074396130979139 0.053115299700748013 -0.034767255324970658 0.035226422397011924 0.44639830366648586 8.9197518356478014
+2540 49971.837131304666 96089.700825341934 50242.05156054665 -0.020894553301753944 0.054032923590667498 -0.036045817183876158 0.033241268113566737 0.44649854916579479 6.3403542859992292
+2560 49975.654157802019 96862.15909324598 50090.332018407527 -0.020692568160111266 0.05495668145812755 -0.037005480971010737 0.033082265822431914 0.4464066164416356 3.1852292772837139
+2580 49978.40854682459 98362.411479333838 50057.161388500761 -0.02089513084847093 0.055886536605830095 -0.037757785025495691 0.026642157817290828 0.44642046252206158 2.6472451182011061
+2600 50039.197202076968 99958.539650526829 50099.444270105669 -0.020967135077546144 0.056822452556011351 -0.038426166366049425 0.022655983130501572 0.4463122103214805 2.2735305198713167
+2620 49993.486374968423 101661.18510429813 50058.075242620551 -0.021152514129196155 0.057764393049130246 -0.039234259826504948 0.020345189526586264 0.44634074223601095 2.3512367896239708
+2640 50016.835142643722 102411.41004167231 50110.154579567134 -0.021339300900518315 0.05871232204256243 -0.040075023281989128 0.020123640306739084 0.44638482351405701 2.5739207512390188
+2660 50014.350907291933 102846.81304554416 50140.186984754451 -0.021575706762253205 0.059666203709301611 -0.040901293480644314 0.018261363021210991 0.44644505046526206 2.8475097874510209
+2680 49987.10940005567 103308.14569299581 50031.87200509385 -0.021774505011672194 0.060626002436671968 -0.041677203458255735 0.020763015186438308 0.44645330363106861 2.2974695280820705
+2700 50070.451157061194 104639.42468698665 50082.089918223297 -0.022227049663096264 0.061591682825044548 -0.042383218352177954 0.018945727614739501 0.44656006095524731 2.5812079586303494
+2720 50084.922680131342 103371.79324011739 50142.451981733866 -0.022872598758877746 0.062563209686563551 -0.043235314516086372 0.01945002841859567 0.44685115930664748 2.7457491767051785
+2740 50025.565005148688 104112.26416941165 50118.4560607276 -0.023284894645899022 0.06354054804387832 -0.04412798943404414 0.019158453389198696 0.44703235913015488 2.7409633149239934
+2760 49971.016248619162 103916.80794354696 50186.984416762483 -0.023485688356067624 0.064523663128885009 -0.045118860066417819 0.01922199590478528 0.44714766809688189 3.7097346052809193
+2780 49999.969443384172 103180.75405786106 50261.83853791048 -0.023717227361326716 0.065512520381476064 -0.046377249901182978 0.020118780146944539 0.44742461730096139 4.696749129684135
+2800 50035.723813618017 103072.41622448927 50074.525162355763 -0.023805255035777632 0.066507085448294895 -0.047568467418295214 0.021805942336582573 0.4475819021408427 4.360998764904215
+2820 50019.843741155892 103982.08339529298 50158.579120367292 -0.024068179798318809 0.067507324181498268 -0.048440675710371708 0.02160950436705002 0.44765641517948451 4.4766008049520432
+2840 50001.524219838633 102459.97945496994 50225.678655654738 -0.024515054908881256 0.068513202637528248 -0.049619737496751075 0.024941828806950526 0.44799879432302742 7.5178911465442715
+2860 50041.194938008419 103037.13274896091 50198.959057707711 -0.024827560963909416 0.069524687075889768 -0.050982996659213811 0.026420906509421107 0.44836535635048091 6.2469935720330572
+2880 50009.744496722647 103753.36825687817 50031.474385202964 -0.02513614965142633 0.070541743957935818 -0.051750016922886499 0.027721202968505814 0.44839765475469939 4.1191490648186715
+2900 50043.599387483751 104345.77897997176 50108.349703247921 -0.025439873067357271 0.071564339945661276 -0.052189949077907041 0.026382584864587836 0.44824376910515745 4.1948209180742575
+2920 50006.413599562642 105948.81714641505 50171.779912372825 -0.025755982611194255 0.072592441900500002 -0.053036327593584141 0.025759216047203409 0.44831791249372549 4.2055406962694057
+2940 49961.082571042265 105686.58016338191 50184.671873486484 -0.025933788512487337 0.073626016882135048 -0.054086040308276892 0.023330932046146415 0.44842489734793178 4.9223377895914924
+2960 50042.93095380054 105815.28557547773 50050.633582908813 -0.026241807150902925 0.074665032147309712 -0.055043664885986991 0.022213029506276877 0.44854988551979968 4.5767756046106385
+2980 50092.590142105117 106150.1008047896 50108.250828197743 -0.026677436440213986 0.075709455148651489 -0.055919598659081866 0.023854929902847793 0.44869718026201666 3.4353172344026177
+3000 50080.063064569644 105713.9271752639 50166.145024836616 -0.02729853464759488 0.076759253533498148 -0.056702630667593006 0.024521462222008523 0.44889248979535906 3.2050855716545223
+3020 50078.460676936273 106641.13410127394 50208.061639882217 -0.02781691186880389 0.077814395142734541 -0.057422189352730281 0.024005082258192072 0.44899321989859425 4.1626591907721506
+3040 50065.761249103365 105761.6981661762 50162.58257071409 -0.028186553430785275 0.078874848009633361 -0.058360093494423178 0.023528386553481596 0.4491293529075337 4.5720948743942902
+3060 49982.939733245497 105327.9562790679 50201.004077775789 -0.028579592483649566 0.079940580358706381 -0.059421638975927615 0.022953367366782832 0.44934351852038901 5.4996289278798143
+3080 50004.340353718064 104829.78285165525 50112.119544108187 -0.028886393074946615 0.081011560604558427 -0.06039504653894627 0.026324192112294025 0.44945871917227498 4.3360343391694318
+3100 50029.202034622809 106609.71955525738 50050.975998698661 -0.029141616176483118 0.082087757350751356 -0.06093996002022066 0.026410471653239918 0.44930671567625141 3.6507124860417952
+3120 50098.002028462317 107523.25595239746 50248.009168478791 -0.02968491390181309 0.083169139388673111 -0.06161092752467285 0.023193437842164474 0.44937988869576856 4.1840165630219728
+3140 50010.747347021083 107776.81045679565 50047.985865229253 -0.030310729762126516 0.08425567569641515 -0.062488479887060022 0.021152140698969292 0.44960935690301967 4.1770408282792868
+3160 50097.673050351666 109192.67776438837 49939.123407607527 -0.030902389890003799 0.08534733543765359 -0.062931570626002825 0.024231729281372599 0.44957803389976064 4.9526473412740524
+3180 50115.385723937725 108547.24543990393 50080.450971371458 -0.031834880252995558 0.086444087960542274 -0.063400758215858694 0.026236905939744374 0.44974584596804873 5.450471411747972
+3200 50088.717743795394 108863.05213060133 50150.818909591551 -0.032620038598678389 0.087545902796606248 -0.064152080641781545 0.027105323490528809 0.44998497073123744 7.9305742564750528
+3220 50157.049710513536 107282.68147491053 50077.307117619181 -0.033772737927852695 0.088652749659646368 -0.064647550473535736 0.032939475376113289 0.45028262555988791 11.167022499808787
+3240 50064.988669244616 105811.94015112838 50190.170525255031 -0.03518506014348307 0.089764598444648194 -0.065377072342140491 0.037798414249486129 0.45084854037663646 12.373811140482278
+3260 50107.130155878629 104311.05335370034 50201.995770446585 -0.035941954418917128 0.090881419226699053 -0.066437978928885338 0.040153548015007576 0.45123334972320545 15.021284202158963
+3280 49989.752607053313 104284.06620587679 50102.351299536327 -0.036390727746359604 0.092003182259909652 -0.067308926454696549 0.041495753681634259 0.45134197162137474 18.137698365690301
+3300 50066.095359296945 104760.53647509939 50116.568134288005 -0.036902042836601236 0.093129857976344294 -0.068015880227324063 0.042623220709715942 0.45139222263515111 18.896187625441534
+3320 50229.307438467469 104883.50217199062 49991.945291625954 -0.037353472631559033 0.094261416984955188 -0.068558672205064147 0.043270747558399304 0.45131687318538322 22.56450569388408
+3340 49946.215351722334 106693.58196373694 50014.805005598842 -0.037810391786075814 0.09539783007052563 -0.069113138394192253 0.03981826268714616 0.45124826828433645 26.048253780980687
+3360 50014.012198671226 107096.296347782 50060.907712115433 -0.03804933952342883 0.096539068192616512 -0.069898405146830905 0.039618289620963525 0.45118404760597508 27.990983106183002
+3380 50140.211318633737 107323.37491003894 50229.983741574244 -0.038591858177275555 0.09768510248452196 -0.070594573528073634 0.035923697574768022 0.45123489455387666 32.791023398658133
+3400 50006.99338297655 105616.84307817421 50469.840544477018 -0.039403421621185111 0.098835904252230058 -0.071500058155977819 0.042558304040042218 0.45154554280664466 41.752075200785256
+3420 50032.384136116882 105142.04937690096 50182.449711930291 -0.039690016446773578 0.099991444973389867 -0.072982373151776053 0.06463216270228038 0.45188184467443809 26.959341779903738
+3440 50117.440376004888 105865.24987449023 50137.005965484888 -0.039838414690099237 0.10115169629628361 -0.073979702752167281 0.053920999498254671 0.45187388403401485 13.427869805189703
+3460 50160.954608884989 107281.85068603099 50105.630393850006 -0.040691117353725936 0.1022936238573396 -0.073866903372134862 0.049182209125206981 0.45165347972731307 10.455135363297217
+3480 50151.319024224416 108646.73698319003 50133.304154756501 -0.041617464863323995 0.10341706203581209 -0.073991306339179955 0.040467204388432564 0.45161362023031842 7.2611780367118621
+3500 49996.608518417765 109104.26555026969 50219.725887001674 -0.04231339054541812 0.10454494421310405 -0.074648991007418078 0.035135673428702788 0.4517373925159725 6.7599905770569997
+3520 49982.039372811487 109288.51913299966 50133.290519047638 -0.043074020633809294 0.10570674681868725 -0.075500455907136887 0.033062017094569615 0.45198421541634032 6.5968737417552683
+3540 50046.720078935949 109551.2658747245 50175.829523562024 -0.043710385832956639 0.10687305482192992 -0.076541823955784391 0.032179924825819974 0.45226441286685726 6.3844465707510194
+3560 50075.5500781921 109413.11157502643 50171.527284730866 -0.044318397000346253 0.1080438638269028 -0.077467362073006654 0.030122247887216614 0.45246306259559499 6.7809142091671992
+3580 50102.866215361522 110011.50545598569 50161.687381724681 -0.044894189365662439 0.10921914716879653 -0.078357742064052771 0.029982432387913278 0.4526223119126403 7.5057333508876347
+3600 50099.102323033541 108783.4588877551 50229.1221681971 -0.045710301441362282 0.11039885569808457 -0.079530601693966127 0.032054000431332566 0.45306510532678329 8.2382880759676524
+3620 50048.809037688115 109188.80257988737 50188.367662612371 -0.046235510094064902 0.11158310270784072 -0.080705172731520447 0.032248691891543217 0.45334699547105956 9.0855950222970776
+3640 50066.200426433803 107617.60632739859 50274.662026584454 -0.046673281914391032 0.11277172263025365 -0.08213539565058689 0.032137398848930528 0.45371825163064061 10.86399057097996
+3660 50069.054128667536 107915.87019969609 50136.374728049326 -0.047432716382091865 0.11397333607291479 -0.083459226304009856 0.03245138638192531 0.45419966959834013 13.671071122720528
+3680 50058.407158414135 107541.80128372999 50355.791272336741 -0.047784151598714852 0.11518796391822056 -0.085038334194850712 0.032810206833902358 0.45459027654754391 11.038107312435823
+3700 50101.962176965979 106030.01417435883 50204.931926564655 -0.048236796443595985 0.11640694886440379 -0.086609810870417636 0.031605526672540588 0.45502922913175292 12.453537504531631
+3720 49915.553815778308 105147.45452916318 50187.267482823569 -0.048646964332208727 0.1176290361947832 -0.088349175107700975 0.032781568561340395 0.45553442512999159 13.202129561180008
+3740 49917.108844730428 103151.96109644348 50311.003440130415 -0.048930657078957537 0.11885542432337838 -0.090187499112608066 0.045754716646720546 0.45602184577659294 16.202006871029894
+3760 49984.070209555306 101352.02986806011 50067.154537130991 -0.048922626228139525 0.12007814383799592 -0.091664586117940816 0.049125782161862162 0.45615583102386648 23.978864319930072
+3780 50044.019557379412 100683.07586660807 50136.83380120212 -0.049257907990675399 0.12129712809318488 -0.092504177956158465 0.055265539971470351 0.45613184117256184 17.716131726346745
+3800 49908.525796084316 101247.22208335517 50220.631759272626 -0.049456438709295586 0.12252028193058412 -0.093467759545974666 0.046733351493804927 0.45609864161532726 17.148672587635936
+3820 49932.803005265567 101608.76742115419 50420.133903259288 -0.049028380920548148 0.12376486749452843 -0.094820843295798901 0.048493959153649992 0.45592480493913257 18.92904352833968
+3840 50043.232236240794 100543.19254691181 49999.054803670275 -0.049149792835097648 0.12501363093074752 -0.09654913295311035 0.04222713730385981 0.4562516622521528 23.890720761862802
+3860 49955.891984834168 100582.04830035544 50297.30166260089 -0.049179257288293046 0.12626654724418657 -0.097809750717597288 0.0414880081823195 0.45627187077526959 21.040805058606871
+3880 50165.859168838222 98306.38907650164 50076.614621252847 -0.049647571344596381 0.12752359158932369 -0.099333318076888555 0.038484095291572748 0.45667127559416826 16.704842049914898
+3900 50054.252964016778 99859.557528804828 50261.314120502335 -0.050047957902431613 0.12878473926927489 -0.10061664356628815 0.042197795593859617 0.45690081845109209 8.3091189233139957
+3920 49968.684176808136 99431.936190941939 50115.512666453797 -0.050376270357491919 0.13004848618480014 -0.10170640653728889 0.03604152077434547 0.45698462767161141 4.8485548942135592
+3940 50046.339853133795 101993.49052179091 50158.702962222102 -0.050662743502080616 0.13131628274240992 -0.10260140283944816 0.031908023892442398 0.45693774869993076 3.896997738139834
+3960 50087.528417672896 103321.41356447572 50142.607432661338 -0.051030967951850602 0.13258211579181323 -0.1034415286939812 0.025426194923723701 0.4569065310937373 4.066639875781366
+3980 49936.345297718086 104132.00448335746 50012.415733090369 -0.051567566959470429 0.13384593303669939 -0.10403609003168079 0.023821817739031245 0.45683448121912645 4.0836335236958439
+4000 50065.031047777877 104907.34299680174 50119.736700025016 -0.051940510389694675 0.13511369024369366 -0.10482702352365925 0.022461953152791123 0.45677805409956468 5.3030434334586216
+4020 49975.064370617569 105843.59153950163 50277.300266946651 -0.052263056136346409 0.13638570893439006 -0.10589368814805258 0.024740992782993604 0.45684171146207764 6.3127462650024748
+4040 49985.144562282119 105847.37067266399 50139.885879787093 -0.052406954140328511 0.13766162164117474 -0.10709369411009029 0.024404531356895114 0.45687864022264857 7.8747958729707142
+4060 50081.752165865604 106517.50942146609 50197.27933939897 -0.052367382230904244 0.13894187520193954 -0.10821101890263561 0.027223657820573798 0.45676864664273947 8.4167060441658137
+4080 50027.173396693819 107871.16492367948 50097.967067121201 -0.052831109829811464 0.14022644857566274 -0.1092748620697948 0.028535389318297393 0.45690063440805351 7.1948945169089038
+4100 50127.877998879172 108504.13866269839 50071.443861507287 -0.053398959873801596 0.14151484930003685 -0.11021215800635908 0.026374249379486691 0.45701833586310325 6.4111204617006248
+4120 50062.966820070586 109531.65431686211 49933.662335976471 -0.054001908635182783 0.14280742911990565 -0.11085095001954641 0.026260011241324651 0.45699073049197364 5.3154481386637444
+4140 50151.8052324936 111195.72641807907 50115.401931275715 -0.054624048022236443 0.14410379172776086 -0.11131447567100718 0.025968401789382856 0.45687630770488058 3.3961402345512743
+4160 50022.629601738969 112375.01607827688 50091.290723700156 -0.055256638792716126 0.14540407982021972 -0.11209136961920871 0.022990358869079099 0.45693561174174124 3.1608324989923107
+4180 50063.496233278696 113492.75662687025 50053.352549518364 -0.055702363661354108 0.14670827161296349 -0.11294757608486435 0.021560082360057266 0.45693438416586835 3.7215118102865521
+4200 50096.054371988939 113723.3623721496 50114.976049108722 -0.056210093337546778 0.14801617964896813 -0.11390036482871352 0.020030253716520879 0.45701725529440007 3.7288750987403634
+4220 49997.019463741941 114843.5579979657 50112.165855272862 -0.056927861389379407 0.14932807520787295 -0.11482091716269306 0.020260818434585409 0.45719446941773589 4.4539753524562196
+4240 50113.4992876834 114535.21485934216 50122.467254872412 -0.057577874117838053 0.15064364349810166 -0.11585844931298575 0.02433944724147737 0.45739634281881603 5.7837580416346119
+4260 49993.844328834857 114437.29643008651 50194.225376606933 -0.058274716378180623 0.15196728931870065 -0.11708333769631452 0.022445846230932674 0.45772076880431967 6.2597911689776504
+4280 50019.832865606506 114042.02596587484 50203.017905636414 -0.058543515524935627 0.15329900906363705 -0.11835301642090161 0.025097986235671249 0.45783287785202281 7.5451566548671867
+4300 50097.830866687633 114102.6235406663 50329.118748849425 -0.058855850718830933 0.15463436020719565 -0.11989706299357185 0.029108712904984513 0.45811528994638584 9.1444746172120137
+4320 49996.597625415823 112358.52221614646 50202.474580366077 -0.059235884949447287 0.15597254514148212 -0.12158874938524095 0.034625682912450703 0.45851263596843034 11.11719724108638
+4340 50043.168452397629 111330.52189324077 50291.207168384062 -0.059542800028093215 0.15731431607362306 -0.1232672133743669 0.036924241058453433 0.45886102951477564 14.993791357208346
+4360 50016.953393826167 109296.90540105513 50271.997750906739 -0.059573108439986616 0.15866058054108817 -0.12540967256805899 0.040577675835451771 0.45930809779492315 24.6325097643611
+4380 50022.265955858129 106036.82516859449 50270.337056291377 -0.059408788527178139 0.16001132088215511 -0.12828269492421768 0.045921317605408594 0.46004183859827191 38.718831278184076
+4400 49877.932423939703 100597.99307198297 50326.932334801524 -0.058726536204622856 0.1613655881040032 -0.13184396632349027 0.068469771248281311 0.46086451345952634 48.686911854034463
+4420 49774.642113080088 98845.071478089492 50331.647166054172 -0.057382658721411753 0.16272522032191972 -0.13566647379520513 0.070684598989034397 0.46146746745200701 53.965811768381947
+4440 49679.817739771956 93481.161525257543 50375.462875569545 -0.055816106935967377 0.16408834211787027 -0.13895472898077632 0.082450657758686097 0.46166054069310403 79.61104597099272
+4460 49516.346747954391 86063.604317317891 50358.436744992563 -0.053540721501191997 0.16545493261455382 -0.14343166370826974 0.11016469497166581 0.462109844358778 113.20496217731309
+4480 49720.736123895374 79558.092056797366 50203.173893496452 -0.050406664169759752 0.16682497105957086 -0.14727089435553137 0.12868553073373781 0.46175210103860759 118.52476071217555
+4500 49601.585370174726 81691.251110346551 50280.861050515727 -0.04887047342146545 0.16819843682467447 -0.15020412487328041 0.15090731263105123 0.46176478954735972 102.60889207754309
+4520 50226.314616639211 77465.791097861249 49716.764573662462 -0.047904632171657822 0.1695753094050273 -0.15106251535443219 0.14842079512420572 0.46096528123959252 96.514847461722795
+4540 49875.470494483139 76585.975453013991 50059.157328399742 -0.046923370371444485 0.17095556841846582 -0.15119830569169493 0.14218212601939423 0.4597641990914792 68.124210681239205
+4560 50077.952260577018 78310.061520268893 50265.451287527256 -0.045866652502776634 0.17233919360476327 -0.15206348032007391 0.11744602924754501 0.45891256615840903 40.52709622010979
+4580 49458.31282475865 75501.121682674944 50238.633617849213 -0.04601284422251619 0.17372616482490177 -0.1538251214544176 0.099354705546009808 0.45919432445839242 27.62250110350001
+4600 50080.108164893471 77501.698347374098 49962.259997643167 -0.045135851600273821 0.17511646206034734 -0.15541023522361519 0.076936641079237922 0.45882527389359473 18.151211644891433
+4620 49958.69935335761 78068.314297038625 50239.952190268261 -0.044975917370583013 0.17651006541232925 -0.15646670911679214 0.060960371220529982 0.45855620872239222 18.098706098101783
+4640 50143.678439349816 79226.457874099549 49881.407121311247 -0.044664603572848578 0.17790695510112267 -0.15771184572058322 0.05867031020583241 0.45830542597367657 17.015878223579399
+4660 49942.767814386505 80584.187508241012 50171.41077527681 -0.044553596433202558 0.17930711146533754 -0.15881840549845658 0.047210899410796071 0.45808620998586608 17.268731648191654
+4680 50058.707566855868 80187.729548399948 50334.391313456115 -0.044477530673944624 0.18071051496120932 -0.16034205943102384 0.04746940684909446 0.45811015374289937 19.519934593494316
+4700 49862.260878603047 79381.47886088799 50221.554496547971 -0.044382583514860199 0.18211714616189734 -0.16181812206884899 0.047606866229180186 0.45809632685585544 19.96974250556335
+4720 49911.732217098557 80347.854994283713 50187.079968084705 -0.044120469961141766 0.18352698575678295 -0.16310701840090042 0.046128324306539424 0.4578887071974187 22.127664348474536
+4740 50002.725493710008 81170.306018101517 50201.79166146159 -0.04396723073429306 0.18494001455077588 -0.1640011592252465 0.044422878319686131 0.4575242169758249 24.334197662548853
+4760 50060.46876872993 81843.559553035579 50222.117343747334 -0.043887986767730147 0.1863562134636233 -0.16544092113813147 0.040620710228767745 0.45749401055895617 26.045895028018947
+4780 49871.452093909786 80517.396507587066 50078.164749991374 -0.043781441588194955 0.18777556352922134 -0.16698258926924209 0.045416128010247601 0.45750256737658668 23.978210645280182
+4800 49938.755272726368 82634.599720455531 50208.418254989978 -0.043312626866157326 0.18919804589493358 -0.16828334297222666 0.041285571955429236 0.45718210449219365 23.744586070255068
+4820 49966.35487406289 82900.551306741239 50346.826849833691 -0.042796630561429017 0.19062364182091113 -0.16981726157871699 0.042677291696567719 0.45696076683974701 25.848289627900169
+4840 50104.286328129834 84581.974496848561 50119.148673412783 -0.04273429302152746 0.19205233267941882 -0.17102480531545655 0.05048050915041951 0.45680680172411786 22.68754723247995
+4860 49938.256320359753 85421.810267059976 50411.033893085711 -0.042905072340591842 0.19348409995416502 -0.1723071808956072 0.045480360390724971 0.45681841921202104 15.73704948548249
+4880 49910.506685438973 87119.036787519173 50208.90992532875 -0.042860480659941864 0.19491892523963264 -0.17340735004492411 0.044198981566475157 0.45661237971583579 11.357645590347255
+4900 50052.470780176271 88764.883080018612 50137.783712641191 -0.042934551163291264 0.19635679024041949 -0.17461167835850935 0.042933941936539655 0.4565257208562814 10.577046469320955
+4920 50046.466977929005 90093.724738881254 50078.228581737472 -0.043154776706508691 0.19779767677057686 -0.17568443911093912 0.043320874383460092 0.45644533493854433 10.816105247921067
+4940 49906.712097000047 92963.717594310248 50053.783598713329 -0.043171463410771278 0.19924156675295615 -0.17647279352699208 0.042230190920897089 0.45609797471577279 8.8494738449905714
+4960 50079.088234278293 94314.453519806193 50184.522746003815 -0.043319602891221574 0.20068844221855764 -0.17733531019220555 0.037849188960455041 0.45586066238784251 6.9573796869322555
+4980 50086.766526533662 95761.594170945289 50280.077230119532 -0.043533277134199314 0.20213828530588354 -0.17838478742250427 0.039428358975385359 0.45575906665339511 8.3203772937366036
+5000 50089.926352662849 95890.668450550947 50005.618237564595 -0.043826179685603386 0.20359107826029513 -0.17962575821443658 0.036022683809750523 0.45580319213106002 6.8203112258991716
+5020 50043.099731357222 97443.774988948251 50073.737295633589 -0.044113224131224781 0.20504680343337359 -0.1803518899541478 0.032647047413979995 0.45556230508637569 7.3693897977000953
+5040 50066.219640153846 98452.154507104162 50125.747599132061 -0.044604215914705425 0.20650544328228324 -0.1811762444344093 0.033853868711567169 0.45548428506742061 7.8633490755703308
+5060 50000.084027219476 99479.647498175065 50063.378283852246 -0.045078295626489601 0.20796698036914193 -0.18191250555677904 0.032258506680413683 0.45534748757950178 7.4126256004895934
+5080 50134.503812210176 101177.21205481704 50133.617811225216 -0.045481650155644524 0.20943139736039107 -0.18248571753982268 0.034322269107629637 0.45508171376673157 10.024791054895354
+5100 50031.784073063653 101618.84274120234 50097.560802058397 -0.046091512917836995 0.21089867702617338 -0.18317629512464423 0.03734115758381535 0.45499079238665241 9.7863047774799128
+5120 50089.928571843819 101765.56635586376 50080.929639226975 -0.046408429321742557 0.21236449713659059 -0.18381153924569929 0.039451468671509345 0.45471077127139153 16.935484499586956
+5140 49942.785046661695 101000.50672861833 50410.782039059894 -0.046734108788430657 0.2138331374871196 -0.18489763636630863 0.040270322566015801 0.45467976319218678 18.15901795925555
+5160 49989.077937772243 100110.75111740707 50368.782657233503 -0.046517852692243497 0.21530385086112036 -0.18644481420763984 0.045989170862804366 0.45460352665954434 22.236375906139411
+5180 50177.164338726332 97744.983509655634 50423.734394344305 -0.046656711825008634 0.21677661841494522 -0.18796305434888225 0.047064371811545873 0.45470405126443553 23.865659253790454
+5200 49934.648774237896 98786.859529773443 50450.872178780315 -0.047260740281720878 0.2182521531439193 -0.18904641729590851 0.045972581252131287 0.45481956361443399 24.12219914183077
+5220 49875.968392470371 97182.978023608681 50314.981438100484 -0.047554154882865955 0.21973625275941949 -0.19053055550626288 0.05098500320827308 0.45497952508413736 18.259196753422959
+5240 50111.4522779279 99389.331762427319 50291.268811217102 -0.047653054764541472 0.22122309729241849 -0.19163910926511948 0.042549480381630499 0.45482723005330639 18.11099388222296
+5260 50161.131117961857 99798.868587595163 50323.886762850227 -0.047654412514577887 0.22268727429972621 -0.19290337442128208 0.043530509153383877 0.45471897301693692 22.432163341880269
+5280 50091.075716961408 99836.834232639041 50077.658196943317 -0.048404078841313279 0.22412869819535811 -0.19382605056406629 0.052089935869705714 0.45484487399705914 21.387769272009578
+5300 50066.645540680089 98770.600445443255 50083.60894320051 -0.049556478061274181 0.22557272614706506 -0.1944417021139937 0.054306773210310876 0.45502148808229048 24.835307140941744
+5320 50306.79070633329 97722.721411464852 50162.450174499587 -0.050603714535659872 0.22701927555876655 -0.19509010408420163 0.062371005408256235 0.45515721934748449 23.85487128790793
+5340 50238.519358283069 97762.906061296482 50228.68220438814 -0.051967897033152563 0.22846839784144679 -0.19584303411265588 0.066040969734574531 0.45552104747872507 23.55209385779834
+5360 50144.815615828185 96154.189806644819 50172.595374746532 -0.053057334060618147 0.22991924324218638 -0.19666448984331378 0.05866180624864175 0.45577147597308332 28.466931612052683
+5380 50227.459458196223 96246.695203007359 50337.970054853431 -0.054082575401376773 0.23137179427147714 -0.19750805881248673 0.061043301237320116 0.45599796900381556 32.590986545779785
+5400 50424.630605617313 93712.861959500224 50474.565011019135 -0.054991973720694316 0.2328268693649222 -0.19848906981243691 0.063455097509371561 0.45623474016579069 39.674771268600807
+5420 50074.590989479453 91276.931190353323 50279.240377391201 -0.056151386181305767 0.23428647417431442 -0.20017282183471835 0.064244118941324813 0.45698655164319807 42.464729032148888
+5440 50186.431847232358 88493.388780441339 50260.460751363411 -0.056731602843707568 0.2357485763939054 -0.20108283104717981 0.073213805625835043 0.45700182295148423 48.273706153253855
+5460 50044.964906859415 85875.467231153045 50100.45692252944 -0.05679203801734603 0.23721380541317999 -0.20219238614110627 0.076353956475388812 0.45684148517971479 59.686382279609703
+5480 49883.645542836268 82683.377196242887 50224.689956283859 -0.057579046778529368 0.23868214800615706 -0.2033845222488693 0.091532687154442752 0.4571188609371819 54.49050989945777
+5500 50443.112173553811 81850.959077907173 50132.968714702241 -0.058508995253680592 0.24015294560978931 -0.20314539784682514 0.099317965717742512 0.45669526284231565 40.451056080614265
+5520 50284.342633961642 82591.776042534912 49706.215635494234 -0.059889699956110903 0.24162600836633916 -0.20263539583873688 0.094346198206426118 0.45636789918154436 27.073915066873059
+5540 50347.529257885071 83467.583610925125 49976.838205884233 -0.061390899015480532 0.24310149655726485 -0.20260095992437038 0.082165430650326179 0.45636315594580729 19.547132668173987
+5560 49932.66778396954 83803.975837114514 49947.914241356993 -0.062595089634444656 0.24457949985127372 -0.20297892268457207 0.071964379831277347 0.45641977282103269 13.000636655537352
+5580 50056.579797838902 83854.226415748766 50106.282708177801 -0.063389087764268645 0.24606000407731815 -0.20345736730923386 0.060680039668454214 0.45630666295256073 10.318174024534395
+5600 49986.106565669761 86474.734020396529 50060.206286787776 -0.064231247380007989 0.24754289080064076 -0.2040682682201353 0.046739331288687222 0.45629044640631766 9.3013301118499783
+5620 50098.389358528264 87164.68251376359 50071.858179458919 -0.064627816707984495 0.24902816625643209 -0.20450776766106907 0.045517262033833522 0.455937351925156 11.530944401960133
+5640 50204.385715703465 87735.734611559077 50087.141597438509 -0.065253783627758633 0.25051579581918476 -0.2053871881833757 0.054076767275284036 0.4559470132382249 7.8437649803667266
+5660 50178.514325315853 89279.568858602215 50106.634003742773 -0.066196009632882399 0.25200542525080882 -0.20572393902158917 0.04808759440679311 0.45583239499650746 7.3486292870041927
+5680 50249.331265635032 89858.283755270138 50037.616963319844 -0.067094599982423203 0.25349703975592858 -0.20594286862040309 0.043409616537400657 0.45562878677551882 8.8514485107813101
+5700 50388.971803519424 91453.430217310772 50111.459229516033 -0.068218449181192381 0.25499096531242155 -0.2061494725652035 0.040538607707359231 0.45553978982569221 8.3361161904529393
+5720 50039.248039384329 92715.839505999145 50133.003289857726 -0.069276299211763925 0.25653897990239488 -0.20660750028394684 0.041197623919065007 0.45552229231351699 8.0310051688724098
+5740 49967.409684746402 94233.204748135366 50205.442134553632 -0.069870187992676719 0.25808935701911329 -0.20741684707955144 0.038727755657781471 0.45544217113057034 6.0425087518825098
+5760 50200.347707279565 95165.46190551357 49938.75496024188 -0.070438010616140523 0.25964208252801907 -0.20843318764089572 0.035510517650381643 0.45545929049400652 4.446925471537746
+5780 50052.374124449678 98722.439857639911 50094.100109211467 -0.070989165361242459 0.26119714237911801 -0.20903219785646765 0.03096085741732572 0.45523876410110686 3.8551010978335158
+5800 50063.211864438032 100619.21029748341 50221.13994418639 -0.071599822149364917 0.26275452260647253 -0.20976334722916004 0.031996195453287114 0.4551213150471608 4.4962267379250891
+5820 50235.212042287014 102313.78233939828 50127.648007565214 -0.07235441704272548 0.26431420932769883 -0.21061618594568829 0.031196036670794784 0.45514733068797786 5.78219253205984
+5840 50181.363969300517 103358.42387103706 50179.002090312497 -0.073132631756195957 0.2658761887434673 -0.21146722043242849 0.034277495513036653 0.45518398157683276 7.6641959925476559
+5860 50135.300638648849 104879.63347689452 50147.623538860054 -0.073584807446232289 0.26744012316004034 -0.2124452029808799 0.031935301419332179 0.45511109329687949 7.5695697157980115
+5880 50217.92359901443 106349.96020711458 50103.910780160812 -0.074406173368757489 0.26900599823987126 -0.21317349375500586 0.031355952311551909 0.45510225600813703 7.9989767781527892
+5900 50048.724998787431 107654.65335644185 50198.988937297312 -0.075015571202733652 0.2705741241771828 -0.21401076947687819 0.030174192162723525 0.45503607286050635 6.6071407257112318
+5920 50015.532521099783 108613.85006899349 50210.824260680885 -0.075539468114404859 0.27214362237071277 -0.21486236662976668 0.031462670955788065 0.45493033735227051 6.8227273499004388
+5940 50158.538626418864 109104.61372799512 50125.329660554999 -0.076242227944850374 0.27371534334405978 -0.21583656268260865 0.032643004902589194 0.45498769469108025 7.2952988434395785
+5960 50072.585968079002 109226.00163481837 50207.263840624531 -0.076995633524997484 0.27528830027817863 -0.21687726278599342 0.031714532884444147 0.45510821015440095 9.2558724614297692
+5980 50073.716660544356 109377.79961791448 50190.831663251338 -0.077431588111033733 0.27686247791913193 -0.21811499991420205 0.035637806848631326 0.45516243185795552 10.694902427029412
+6000 50341.330714257878 109167.41560217475 50239.105090538353 -0.078376624854949922 0.27843883598282276 -0.21908828119232202 0.035270680328133228 0.45534871263796334 10.565428857249609
+6020 50051.113091763917 109253.53899871861 50272.67313741368 -0.079715785115832563 0.28002084213996897 -0.22013244802524121 0.039530964540065848 0.45578497829995401 11.544646964079959
+6040 50013.142955518539 108523.34215979189 50124.419437487784 -0.080419816964169499 0.28160500745848732 -0.22147468949998644 0.038948314334578141 0.45603640631976111 9.7450160812313733
+6060 49981.526987019097 110534.89886593015 50319.381573747683 -0.080670135289276523 0.28319131902049566 -0.2226938198831025 0.033061211320049418 0.45597283346726802 8.6847877814875751
+6080 50064.204179728462 111636.37361389346 50152.510969598312 -0.080936948334405054 0.28477976398539684 -0.22404543082138842 0.036450770338825426 0.45598914262329787 11.587232382531374
+6100 50219.320539341046 110652.8146127238 50201.067440101331 -0.082366368329940279 0.28637032958941433 -0.22538867775250568 0.036480130668230783 0.45663183863658696 13.919379754874397
+6120 50241.393643196716 109070.98606390026 50207.265283638801 -0.083818253693085543 0.28796300314513384 -0.2265382209653054 0.037308604977066527 0.4571796876280258 15.690617928962597
+6140 50176.115519917534 108494.77354106931 50124.847547793506 -0.084663139091175871 0.28955777204104649 -0.22718123560158832 0.045523011031923036 0.45712167393934894 23.802773900957106
+6160 50065.054042239062 107786.64196089511 50230.302972863865 -0.085755584982377384 0.29115462374109441 -0.22840711997710486 0.050499766273761175 0.45751320775729881 24.782910397944015
+6180 50050.819075917134 105745.92187955641 49671.366165277541 -0.086712502367581948 0.29275354578422025 -0.22980885330282438 0.060320545347439573 0.45792519400656928 17.691013695960805
+6200 50260.635140706945 105686.51121844171 50682.329406498109 -0.087296174593213954 0.2943545257839168 -0.23079041103230563 0.063589253493493605 0.45790581446167977 16.446959711942942
+6220 50097.602689844498 105714.00493883864 50213.916698934736 -0.087959900121024642 0.29595755142778246 -0.23211408690846638 0.062838741615840493 0.45811414228564723 19.070829974172554
+6240 50263.792618080974 103133.00234232913 50398.417057285253 -0.087928561435135555 0.29756261047707722 -0.23373332027418692 0.057287819056729812 0.45810484107675375 25.65576992725796
+6260 50268.710599935497 100871.31950140072 50516.926544817594 -0.088518083220486002 0.29916969076628191 -0.2355197881535698 0.052991721379500097 0.45852134919598381 33.841679898625863
+6280 49702.988750047429 96263.987118667748 50720.303911513336 -0.088655849217965946 0.3007787802026603 -0.23752574209359434 0.068141701380696362 0.45881076282684147 48.115022366467386
+6300 50118.170558062673 92860.744241536813 50600.657090663291 -0.087291661525518843 0.30238986676582452 -0.24043955231844788 0.084071505568453608 0.45877749813264163 45.476841611366517
+6320 49974.119894195763 91955.357264575738 50157.418451469173 -0.087026784539028998 0.30398811774950796 -0.24277278367387797 0.083297770291876183 0.45903186886798997 39.699416358522484
+6340 49804.873288495517 92332.193190603823 50038.163766612139 -0.086999134561215982 0.30558832390327401 -0.24379722823272462 0.07486212551041789 0.45870534393263057 19.998715792035725
+6360 50240.820470158869 95875.387197981108 50095.9797735916 -0.087352120361838814 0.30718876421462815 -0.24475554789781537 0.067515627842390374 0.45854881415778687 13.976986902612555
+6380 50198.516408282921 97687.863790415737 49943.825520712904 -0.087755366825108136 0.30878942396840425 -0.24531433520418988 0.05668544710546259 0.45820291892428272 8.2862771378297992

=== added file 'scripts/test/checks/dataTriax/checkTestTriax.spheres'
--- scripts/test/checks/dataTriax/checkTestTriax.spheres	1970-01-01 00:00:00 +0000
+++ scripts/test/checks/dataTriax/checkTestTriax.spheres	2011-01-19 08:37:26 +0000
@@ -0,0 +1,100 @@
+0.889007 0.370253 0.49249 0.112051
+0.106231 0.613934 0.902817 0.0962812
+0.12452 0.873184 0.875371 0.127055
+0.832523 0.191905 0.869978 0.130982
+0.427274 0.712482 0.491121 0.129754
+0.130636 0.121106 0.121567 0.122252
+0.924603 0.40166 0.288205 0.0760697
+0.664008 0.704862 0.117063 0.122249
+0.723763 0.417214 0.676983 0.0903237
+0.580382 0.878832 0.68611 0.124262
+0.575315 0.555035 0.254806 0.100855
+0.74337 0.486397 0.280619 0.0851146
+0.39043 0.2715 0.899719 0.100437
+0.629798 0.754126 0.885567 0.116237
+0.450424 0.114867 0.114739 0.118933
+0.519912 0.328938 0.717354 0.130634
+0.477927 0.129573 0.55581 0.130896
+0.927541 0.716063 0.789473 0.074717
+0.460968 0.74796 0.241157 0.12545
+0.462977 0.631696 0.697762 0.0873663
+0.272396 0.309091 0.472434 0.108493
+0.116645 0.116327 0.691447 0.118586
+0.878025 0.8233 0.121058 0.124751
+0.739467 0.469218 0.439503 0.0745774
+0.333154 0.91401 0.91469 0.0891591
+0.917424 0.919932 0.298377 0.0844085
+0.273897 0.663729 0.647263 0.0957049
+0.333073 0.891726 0.108271 0.108659
+0.581354 0.500781 0.548516 0.119384
+0.86913 0.578421 0.619917 0.135086
+0.733968 0.679969 0.323001 0.0979915
+0.273468 0.103312 0.895351 0.104989
+0.587308 0.127969 0.32062 0.129824
+0.106708 0.694978 0.538144 0.108407
+0.126469 0.531662 0.169561 0.130534
+0.773902 0.769791 0.721813 0.103444
+0.905888 0.906728 0.669521 0.096856
+0.769344 0.291209 0.315762 0.116945
+0.700505 0.0913456 0.61564 0.0936637
+0.297977 0.130503 0.313111 0.132732
+0.665138 0.483651 0.0951909 0.0948744
+0.0848007 0.0844155 0.319672 0.0850136
+0.872557 0.568489 0.130253 0.130598
+0.0903266 0.708086 0.737566 0.0901761
+0.36138 0.478965 0.612469 0.112567
+0.0801136 0.0785539 0.919915 0.0805341
+0.690681 0.904312 0.203504 0.0973209
+0.721138 0.41539 0.883633 0.118038
+0.0965956 0.182296 0.471412 0.0967464
+0.0831669 0.297167 0.608682 0.0836104
+0.335886 0.896917 0.35925 0.110526
+0.256366 0.0949048 0.533258 0.0958868
+0.869386 0.129365 0.472819 0.132068
+0.447891 0.317073 0.235048 0.120905
+0.121732 0.274307 0.875431 0.126186
+0.57658 0.275729 0.917692 0.0871043
+0.595802 0.396661 0.365697 0.0955921
+0.604975 0.874928 0.406538 0.12675
+0.115718 0.881873 0.409916 0.11954
+0.662571 0.708538 0.556382 0.106038
+0.129734 0.492715 0.687081 0.133176
+0.640484 0.297388 0.155114 0.0863378
+0.662068 0.594781 0.735305 0.106973
+0.0740249 0.704755 0.0740086 0.0740423
+0.288438 0.914122 0.746346 0.0883019
+0.608424 0.114666 0.800904 0.11637
+0.885311 0.112878 0.226228 0.115618
+0.865802 0.800774 0.470278 0.134602
+0.897753 0.384666 0.754854 0.103426
+0.280255 0.282575 0.694192 0.115552
+0.881949 0.319611 0.114871 0.120729
+0.922221 0.250453 0.635867 0.0779785
+0.127178 0.489092 0.42654 0.127629
+0.242809 0.709746 0.0948951 0.0950931
+0.407839 0.0878376 0.758298 0.0879989
+0.277809 0.285493 0.099211 0.0990407
+0.317299 0.699551 0.868143 0.133576
+0.909094 0.0904488 0.688579 0.0913639
+0.467612 0.337789 0.485116 0.0892909
+0.504256 0.523261 0.879854 0.124714
+0.892311 0.559626 0.37862 0.109296
+0.117733 0.864499 0.172626 0.11874
+0.684607 0.10613 0.105716 0.105557
+0.113043 0.290449 0.29119 0.114165
+0.6737 0.281479 0.528252 0.119101
+0.880302 0.880578 0.882143 0.120219
+0.890397 0.566897 0.890321 0.110156
+0.455847 0.0808486 0.920019 0.0811885
+0.3068 0.899905 0.563592 0.100155
+0.236787 0.690509 0.328985 0.121908
+0.594301 0.632676 0.408954 0.0737832
+0.110501 0.889304 0.639394 0.111008
+0.372094 0.494768 0.379451 0.122105
+0.534502 0.905335 0.0939354 0.0947423
+0.393152 0.791555 0.686637 0.0856638
+0.508811 0.913869 0.912628 0.087609
+0.276046 0.455607 0.884703 0.117275
+0.382944 0.533427 0.127997 0.132751
+0.923481 0.716801 0.285144 0.0772079
+0.0915387 0.328191 0.0903334 0.0922539