dartpy 7.0.0.dev0__cp313-cp313-manylinux_2_39_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dartpy might be problematic. Click here for more details.
- dartpy-7.0.0.dev0.dist-info/METADATA +86 -0
- dartpy-7.0.0.dev0.dist-info/RECORD +994 -0
- dartpy-7.0.0.dev0.dist-info/WHEEL +5 -0
- dartpy-7.0.0.dev0.dist-info/licenses/LICENSE +31 -0
- dartpy.cpython-313-x86_64-linux-gnu.so +0 -0
- dartpy.libs/libBulletCollision-f96eb02c.so.3.25 +0 -0
- dartpy.libs/libBulletDynamics-3cff1f18.so.3.25 +0 -0
- dartpy.libs/libBulletSoftBody-220f01bd.so.3.25 +0 -0
- dartpy.libs/libLinearMath-71568d02.so.3.25 +0 -0
- dartpy.libs/libOpenThreads-8bc434db.so.3.3.1 +0 -0
- dartpy.libs/libSDL2-2-3db87ac0.0.so.0.3200.56 +0 -0
- dartpy.libs/libassimp-44cf3e77.so.5.4.3 +0 -0
- dartpy.libs/libccd-4f119cf4.so.2.0 +0 -0
- dartpy.libs/libconsole_bridge-f26e11cc.so.1.0 +0 -0
- dartpy.libs/libfcl-0400fc28.so.0.7.0 +0 -0
- dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
- dartpy.libs/libfontconfig-582da43c.so.1.14.0 +0 -0
- dartpy.libs/libfreetype-64806fc6.so.6.20.4 +0 -0
- dartpy.libs/libglfw-6f066845.so.3.4 +0 -0
- dartpy.libs/libimgui-ab87b07d.so +0 -0
- dartpy.libs/libnlopt-d1ae937b.so.1.0.0 +0 -0
- dartpy.libs/liboctomap-38e56f99.so.1.10.0 +0 -0
- dartpy.libs/liboctomath-bff26442.so.1.10.0 +0 -0
- dartpy.libs/libode-99b67f5b.so.8.2.0 +0 -0
- dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
- dartpy.libs/libosgDB-bcdb6be9.so.3.6.5 +0 -0
- dartpy.libs/libosgGA-6af4078b.so.3.6.5 +0 -0
- dartpy.libs/libosgManipulator-3270f659.so.3.6.5 +0 -0
- dartpy.libs/libosgShadow-127a8d77.so.3.6.5 +0 -0
- dartpy.libs/libosgText-87d82d87.so.3.6.5 +0 -0
- dartpy.libs/libosgUtil-55896958.so.3.6.5 +0 -0
- dartpy.libs/libosgViewer-76d832e3.so.3.6.5 +0 -0
- dartpy.libs/libpng16-bd65464e.so.16.50.0 +0 -0
- dartpy.libs/libtinyxml2-8d10763c.so.11.0.0 +0 -0
- dartpy.libs/liburdfdom_model-7b26ae88.so.4.0 +0 -0
- dartpy.libs/liburdfdom_model_state-95a5ad6e.so.4.0 +0 -0
- dartpy.libs/liburdfdom_sensor-55a145ea.so.4.0 +0 -0
- dartpy.libs/liburdfdom_world-a32c7194.so.4.0 +0 -0
- dartpy.libs/libvulkan-08e1e162.so.1.4.328 +0 -0
- include/dart/collision/CollisionDetector.hpp +305 -0
- include/dart/collision/CollisionFilter.hpp +126 -0
- include/dart/collision/CollisionGroup.hpp +546 -0
- include/dart/collision/CollisionObject.hpp +90 -0
- include/dart/collision/CollisionOption.hpp +71 -0
- include/dart/collision/CollisionResult.hpp +109 -0
- include/dart/collision/Contact.hpp +103 -0
- include/dart/collision/DistanceFilter.hpp +66 -0
- include/dart/collision/DistanceOption.hpp +80 -0
- include/dart/collision/DistanceResult.hpp +123 -0
- include/dart/collision/Option.hpp +42 -0
- include/dart/collision/RaycastOption.hpp +58 -0
- include/dart/collision/RaycastResult.hpp +80 -0
- include/dart/collision/Result.hpp +42 -0
- include/dart/collision/SmartPointer.hpp +51 -0
- include/dart/collision/all.hpp +17 -0
- include/dart/collision/bullet/BulletCollisionDetector.hpp +168 -0
- include/dart/collision/bullet/BulletCollisionGroup.hpp +98 -0
- include/dart/collision/bullet/BulletCollisionObject.hpp +75 -0
- include/dart/collision/bullet/BulletCollisionShape.hpp +62 -0
- include/dart/collision/bullet/BulletInclude.hpp +47 -0
- include/dart/collision/bullet/BulletTypes.hpp +57 -0
- include/dart/collision/bullet/all.hpp +8 -0
- include/dart/collision/bullet/bullet.hpp +14 -0
- include/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp +70 -0
- include/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp +72 -0
- include/dart/collision/collision.hpp +14 -0
- include/dart/collision/dart/DARTCollide.hpp +106 -0
- include/dart/collision/dart/DARTCollisionDetector.hpp +109 -0
- include/dart/collision/dart/DARTCollisionGroup.hpp +82 -0
- include/dart/collision/dart/DARTCollisionObject.hpp +63 -0
- include/dart/collision/dart/all.hpp +6 -0
- include/dart/collision/dart/dart.hpp +14 -0
- include/dart/collision/detail/CollisionDetector.hpp +66 -0
- include/dart/collision/detail/CollisionGroup.hpp +287 -0
- include/dart/collision/detail/Contact-impl.hpp +56 -0
- include/dart/collision/detail/UnorderedPairs.hpp +153 -0
- include/dart/collision/fcl/BackwardCompatibility.hpp +145 -0
- include/dart/collision/fcl/CollisionShapes.hpp +374 -0
- include/dart/collision/fcl/FCLCollisionDetector.hpp +204 -0
- include/dart/collision/fcl/FCLCollisionGroup.hpp +95 -0
- include/dart/collision/fcl/FCLCollisionObject.hpp +72 -0
- include/dart/collision/fcl/FCLTypes.hpp +62 -0
- include/dart/collision/fcl/TriTriIntersectionTest.hpp +17 -0
- include/dart/collision/fcl/all.hpp +9 -0
- include/dart/collision/fcl/fcl.hpp +14 -0
- include/dart/collision/fcl/tri_tri_intersection_test.hpp +332 -0
- include/dart/collision/ode/OdeCollisionDetector.hpp +131 -0
- include/dart/collision/ode/OdeCollisionGroup.hpp +87 -0
- include/dart/collision/ode/OdeCollisionObject.hpp +89 -0
- include/dart/collision/ode/OdeTypes.hpp +51 -0
- include/dart/collision/ode/all.hpp +6 -0
- include/dart/collision/ode/detail/OdeBox.hpp +58 -0
- include/dart/collision/ode/detail/OdeCapsule.hpp +58 -0
- include/dart/collision/ode/detail/OdeCylinder.hpp +58 -0
- include/dart/collision/ode/detail/OdeGeom.hpp +83 -0
- include/dart/collision/ode/detail/OdeHeightmap-impl.hpp +170 -0
- include/dart/collision/ode/detail/OdeHeightmap.hpp +70 -0
- include/dart/collision/ode/detail/OdeMesh.hpp +83 -0
- include/dart/collision/ode/detail/OdePlane.hpp +67 -0
- include/dart/collision/ode/detail/OdeSphere.hpp +58 -0
- include/dart/collision/ode/ode.hpp +14 -0
- include/dart/common/Aspect.hpp +215 -0
- include/dart/common/AspectWithVersion.hpp +180 -0
- include/dart/common/CAllocator.hpp +65 -0
- include/dart/common/Castable.hpp +102 -0
- include/dart/common/ClassWithVirtualBase.hpp +47 -0
- include/dart/common/Cloneable.hpp +327 -0
- include/dart/common/Composite.hpp +205 -0
- include/dart/common/CompositeJoiner.hpp +160 -0
- include/dart/common/Console.hpp +75 -0
- include/dart/common/Deprecated.hpp +126 -0
- include/dart/common/EmbeddedAspect.hpp +466 -0
- include/dart/common/Empty.hpp +55 -0
- include/dart/common/Factory.hpp +146 -0
- include/dart/common/Filesystem.hpp +112 -0
- include/dart/common/FreeListAllocator.hpp +162 -0
- include/dart/common/IncludeWindows.hpp +50 -0
- include/dart/common/LocalResource.hpp +76 -0
- include/dart/common/LocalResourceRetriever.hpp +63 -0
- include/dart/common/LockableReference.hpp +166 -0
- include/dart/common/Logging.hpp +146 -0
- include/dart/common/Macros.hpp +78 -0
- include/dart/common/Memory.hpp +215 -0
- include/dart/common/MemoryAllocator.hpp +120 -0
- include/dart/common/MemoryAllocatorDebugger.hpp +98 -0
- include/dart/common/MemoryManager.hpp +189 -0
- include/dart/common/Metaprogramming.hpp +68 -0
- include/dart/common/NameManager.hpp +184 -0
- include/dart/common/Observer.hpp +85 -0
- include/dart/common/Optional.hpp +48 -0
- include/dart/common/Platform.hpp +92 -0
- include/dart/common/PoolAllocator.hpp +141 -0
- include/dart/common/Profile.hpp +56 -0
- include/dart/common/ProxyAspect.hpp +93 -0
- include/dart/common/RequiresAspect.hpp +79 -0
- include/dart/common/Resource.hpp +96 -0
- include/dart/common/ResourceRetriever.hpp +82 -0
- include/dart/common/SharedLibrary.hpp +201 -0
- include/dart/common/Signal.hpp +250 -0
- include/dart/common/Singleton.hpp +85 -0
- include/dart/common/SmartPointer.hpp +63 -0
- include/dart/common/SpecializedForAspect.hpp +207 -0
- include/dart/common/StlAllocator.hpp +111 -0
- include/dart/common/StlHelpers.hpp +61 -0
- include/dart/common/Stopwatch.hpp +143 -0
- include/dart/common/String.hpp +71 -0
- include/dart/common/SubPtr.hpp +17 -0
- include/dart/common/Subject.hpp +84 -0
- include/dart/common/Timer.hpp +119 -0
- include/dart/common/Uri.hpp +229 -0
- include/dart/common/VersionCounter.hpp +68 -0
- include/dart/common/Virtual.hpp +51 -0
- include/dart/common/all.hpp +53 -0
- include/dart/common/common.hpp +14 -0
- include/dart/common/detail/Aspect.hpp +102 -0
- include/dart/common/detail/AspectWithVersion.hpp +455 -0
- include/dart/common/detail/Castable-impl.hpp +109 -0
- include/dart/common/detail/Cloneable.hpp +638 -0
- include/dart/common/detail/Composite.hpp +241 -0
- include/dart/common/detail/CompositeData.hpp +393 -0
- include/dart/common/detail/CompositeJoiner.hpp +128 -0
- include/dart/common/detail/ConnectionBody.hpp +157 -0
- include/dart/common/detail/EmbeddedAspect.hpp +487 -0
- include/dart/common/detail/Factory-impl.hpp +200 -0
- include/dart/common/detail/LockableReference-impl.hpp +156 -0
- include/dart/common/detail/Logging-impl.hpp +162 -0
- include/dart/common/detail/Memory-impl.hpp +66 -0
- include/dart/common/detail/MemoryAllocator-impl.hpp +97 -0
- include/dart/common/detail/MemoryAllocatorDebugger-impl.hpp +201 -0
- include/dart/common/detail/MemoryManager-impl.hpp +102 -0
- include/dart/common/detail/Metaprogramming-impl.hpp +89 -0
- include/dart/common/detail/NameManager.hpp +301 -0
- include/dart/common/detail/NoOp.hpp +57 -0
- include/dart/common/detail/ProxyAspect.hpp +172 -0
- include/dart/common/detail/RequiresAspect.hpp +51 -0
- include/dart/common/detail/SharedLibraryManager.hpp +106 -0
- include/dart/common/detail/Signal.hpp +242 -0
- include/dart/common/detail/Singleton-impl.hpp +74 -0
- include/dart/common/detail/SpecializedForAspect.hpp +331 -0
- include/dart/common/detail/StlAllocator-impl.hpp +108 -0
- include/dart/common/detail/Stopwatch-impl.hpp +242 -0
- include/dart/common/detail/SubPtr.hpp +17 -0
- include/dart/common/detail/TemplateJoinerDispatchMacro.hpp +59 -0
- include/dart/common/detail/sub_ptr.hpp +139 -0
- include/dart/common/sub_ptr.hpp +103 -0
- include/dart/config.hpp +100 -0
- include/dart/constraint/BalanceConstraint.hpp +202 -0
- include/dart/constraint/BallJointConstraint.hpp +142 -0
- include/dart/constraint/BoxedLcpConstraintSolver.hpp +182 -0
- include/dart/constraint/BoxedLcpSolver.hpp +101 -0
- include/dart/constraint/ConstrainedGroup.hpp +120 -0
- include/dart/constraint/ConstraintBase.hpp +141 -0
- include/dart/constraint/ConstraintSolver.hpp +325 -0
- include/dart/constraint/ContactConstraint.hpp +286 -0
- include/dart/constraint/ContactSurface.hpp +191 -0
- include/dart/constraint/DantzigBoxedLcpSolver.hpp +71 -0
- include/dart/constraint/DantzigLCPSolver.hpp +87 -0
- include/dart/constraint/DynamicJointConstraint.hpp +120 -0
- include/dart/constraint/JointConstraint.hpp +182 -0
- include/dart/constraint/JointCoulombFrictionConstraint.hpp +149 -0
- include/dart/constraint/JointLimitConstraint.hpp +185 -0
- include/dart/constraint/LCPSolver.hpp +71 -0
- include/dart/constraint/MimicMotorConstraint.hpp +164 -0
- include/dart/constraint/PGSLCPSolver.hpp +109 -0
- include/dart/constraint/PgsBoxedLcpSolver.hpp +106 -0
- include/dart/constraint/ServoMotorConstraint.hpp +151 -0
- include/dart/constraint/SmartPointer.hpp +69 -0
- include/dart/constraint/SoftContactConstraint.hpp +262 -0
- include/dart/constraint/WeldJointConstraint.hpp +133 -0
- include/dart/constraint/all.hpp +25 -0
- include/dart/constraint/constraint.hpp +14 -0
- include/dart/constraint/detail/ConstraintSolver-impl.hpp +78 -0
- include/dart/dart.hpp +44 -0
- include/dart/dynamics/ArrowShape.hpp +121 -0
- include/dart/dynamics/AssimpInputResourceAdaptor.hpp +129 -0
- include/dart/dynamics/BallJoint.hpp +143 -0
- include/dart/dynamics/BodyNode.hpp +1279 -0
- include/dart/dynamics/BoxShape.hpp +90 -0
- include/dart/dynamics/Branch.hpp +107 -0
- include/dart/dynamics/CapsuleShape.hpp +105 -0
- include/dart/dynamics/Chain.hpp +142 -0
- include/dart/dynamics/CompositeNode.hpp +114 -0
- include/dart/dynamics/ConeShape.hpp +107 -0
- include/dart/dynamics/CylinderShape.hpp +96 -0
- include/dart/dynamics/DegreeOfFreedom.hpp +415 -0
- include/dart/dynamics/EllipsoidShape.hpp +115 -0
- include/dart/dynamics/EndEffector.hpp +158 -0
- include/dart/dynamics/Entity.hpp +258 -0
- include/dart/dynamics/EntityNode.hpp +77 -0
- include/dart/dynamics/EulerJoint.hpp +174 -0
- include/dart/dynamics/FixedFrame.hpp +105 -0
- include/dart/dynamics/FixedJacobianNode.hpp +168 -0
- include/dart/dynamics/Frame.hpp +388 -0
- include/dart/dynamics/FreeJoint.hpp +369 -0
- include/dart/dynamics/GenericJoint.hpp +825 -0
- include/dart/dynamics/Group.hpp +270 -0
- include/dart/dynamics/HeightmapShape.hpp +195 -0
- include/dart/dynamics/HierarchicalIK.hpp +419 -0
- include/dart/dynamics/IkFast.hpp +277 -0
- include/dart/dynamics/Inertia.hpp +176 -0
- include/dart/dynamics/InvalidIndex.hpp +46 -0
- include/dart/dynamics/InverseKinematics.hpp +1401 -0
- include/dart/dynamics/JacobianNode.hpp +312 -0
- include/dart/dynamics/Joint.hpp +1128 -0
- include/dart/dynamics/LineSegmentShape.hpp +140 -0
- include/dart/dynamics/Linkage.hpp +246 -0
- include/dart/dynamics/Marker.hpp +126 -0
- include/dart/dynamics/MeshShape.hpp +225 -0
- include/dart/dynamics/MetaSkeleton.hpp +1034 -0
- include/dart/dynamics/MimicDofProperties.hpp +62 -0
- include/dart/dynamics/MultiSphereConvexHullShape.hpp +111 -0
- include/dart/dynamics/MultiSphereShape.hpp +42 -0
- include/dart/dynamics/Node.hpp +273 -0
- include/dart/dynamics/NodeManagerJoiner.hpp +190 -0
- include/dart/dynamics/PlanarJoint.hpp +161 -0
- include/dart/dynamics/PlaneShape.hpp +105 -0
- include/dart/dynamics/PointCloudShape.hpp +186 -0
- include/dart/dynamics/PointMass.hpp +709 -0
- include/dart/dynamics/PrismaticJoint.hpp +120 -0
- include/dart/dynamics/PyramidShape.hpp +122 -0
- include/dart/dynamics/ReferentialSkeleton.hpp +550 -0
- include/dart/dynamics/RevoluteJoint.hpp +120 -0
- include/dart/dynamics/ScrewJoint.hpp +126 -0
- include/dart/dynamics/Shape.hpp +231 -0
- include/dart/dynamics/ShapeFrame.hpp +291 -0
- include/dart/dynamics/ShapeNode.hpp +134 -0
- include/dart/dynamics/SharedLibraryIkFast.hpp +147 -0
- include/dart/dynamics/SimpleFrame.hpp +247 -0
- include/dart/dynamics/Skeleton.hpp +1350 -0
- include/dart/dynamics/SmartPointer.hpp +185 -0
- include/dart/dynamics/SoftBodyNode.hpp +472 -0
- include/dart/dynamics/SoftMeshShape.hpp +100 -0
- include/dart/dynamics/SpecializedNodeManager.hpp +230 -0
- include/dart/dynamics/SphereShape.hpp +89 -0
- include/dart/dynamics/TemplatedJacobianNode.hpp +128 -0
- include/dart/dynamics/TranslationalJoint.hpp +105 -0
- include/dart/dynamics/TranslationalJoint2D.hpp +156 -0
- include/dart/dynamics/UniversalJoint.hpp +128 -0
- include/dart/dynamics/VoxelGridShape.hpp +171 -0
- include/dart/dynamics/WeldJoint.hpp +116 -0
- include/dart/dynamics/ZeroDofJoint.hpp +562 -0
- include/dart/dynamics/all.hpp +69 -0
- include/dart/dynamics/detail/BasicNodeManager.hpp +539 -0
- include/dart/dynamics/detail/BodyNode.hpp +344 -0
- include/dart/dynamics/detail/BodyNodeAspect.hpp +177 -0
- include/dart/dynamics/detail/BodyNodePtr.hpp +351 -0
- include/dart/dynamics/detail/CompositeNode.hpp +93 -0
- include/dart/dynamics/detail/DegreeOfFreedomPtr.hpp +338 -0
- include/dart/dynamics/detail/EndEffectorAspect.hpp +106 -0
- include/dart/dynamics/detail/EntityNode.hpp +81 -0
- include/dart/dynamics/detail/EntityNodeAspect.hpp +101 -0
- include/dart/dynamics/detail/EulerJointAspect.hpp +93 -0
- include/dart/dynamics/detail/FixedFrameAspect.hpp +58 -0
- include/dart/dynamics/detail/FixedJacobianNode.hpp +55 -0
- include/dart/dynamics/detail/GenericJoint.hpp +2471 -0
- include/dart/dynamics/detail/GenericJointAspect.hpp +353 -0
- include/dart/dynamics/detail/HeightmapShape-impl.hpp +243 -0
- include/dart/dynamics/detail/InverseKinematics.hpp +83 -0
- include/dart/dynamics/detail/InverseKinematicsPtr.hpp +341 -0
- include/dart/dynamics/detail/JointAspect.hpp +161 -0
- include/dart/dynamics/detail/JointPtr.hpp +293 -0
- include/dart/dynamics/detail/MarkerAspect.hpp +68 -0
- include/dart/dynamics/detail/MetaSkeleton-impl.hpp +151 -0
- include/dart/dynamics/detail/Node.hpp +532 -0
- include/dart/dynamics/detail/NodeManagerJoiner.hpp +184 -0
- include/dart/dynamics/detail/NodePtr.hpp +259 -0
- include/dart/dynamics/detail/PlanarJointAspect.hpp +136 -0
- include/dart/dynamics/detail/PrismaticJointAspect.hpp +85 -0
- include/dart/dynamics/detail/RevoluteJointAspect.hpp +86 -0
- include/dart/dynamics/detail/ScrewJointAspect.hpp +90 -0
- include/dart/dynamics/detail/ShapeFrameAspect.hpp +169 -0
- include/dart/dynamics/detail/ShapeNode.hpp +51 -0
- include/dart/dynamics/detail/Skeleton.hpp +92 -0
- include/dart/dynamics/detail/SkeletonAspect.hpp +181 -0
- include/dart/dynamics/detail/SoftBodyNodeAspect.hpp +132 -0
- include/dart/dynamics/detail/SpecializedNodeManager.hpp +324 -0
- include/dart/dynamics/detail/TemplatedJacobianNode.hpp +294 -0
- include/dart/dynamics/detail/TranslationalJoint2DAspect.hpp +140 -0
- include/dart/dynamics/detail/UniversalJointAspect.hpp +86 -0
- include/dart/dynamics/dynamics.hpp +14 -0
- include/dart/dynamics/ikfast.h +345 -0
- include/dart/external/convhull_3d/convhull_3d.h +1878 -0
- include/dart/external/convhull_3d/safe_convhull_3d.h +53 -0
- include/dart/external/odelcpsolver/common.h +418 -0
- include/dart/external/odelcpsolver/error.h +62 -0
- include/dart/external/odelcpsolver/lcp.h +75 -0
- include/dart/external/odelcpsolver/matrix.h +277 -0
- include/dart/external/odelcpsolver/misc.h +82 -0
- include/dart/external/odelcpsolver/odeconfig.h +110 -0
- include/dart/gui/osg/DefaultEventHandler.hpp +237 -0
- include/dart/gui/osg/DragAndDrop.hpp +360 -0
- include/dart/gui/osg/GridVisual.hpp +218 -0
- include/dart/gui/osg/ImGuiHandler.hpp +113 -0
- include/dart/gui/osg/ImGuiViewer.hpp +83 -0
- include/dart/gui/osg/ImGuiWidget.hpp +91 -0
- include/dart/gui/osg/IncludeImGui.hpp +75 -0
- include/dart/gui/osg/InteractiveFrame.hpp +170 -0
- include/dart/gui/osg/MouseEventHandler.hpp +76 -0
- include/dart/gui/osg/RealTimeWorldNode.hpp +126 -0
- include/dart/gui/osg/ShapeFrameNode.hpp +117 -0
- include/dart/gui/osg/SupportPolygonVisual.hpp +202 -0
- include/dart/gui/osg/TrackballManipulator.hpp +97 -0
- include/dart/gui/osg/Utils.hpp +120 -0
- include/dart/gui/osg/Viewer.hpp +427 -0
- include/dart/gui/osg/WorldNode.hpp +211 -0
- include/dart/gui/osg/all.hpp +19 -0
- include/dart/gui/osg/detail/CameraModeCallback.hpp +82 -0
- include/dart/gui/osg/detail/Utils-impl.hpp +160 -0
- include/dart/gui/osg/osg.hpp +14 -0
- include/dart/gui/osg/render/BoxShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CapsuleShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ConeShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CylinderShapeNode.hpp +75 -0
- include/dart/gui/osg/render/EllipsoidShapeNode.hpp +76 -0
- include/dart/gui/osg/render/HeightmapShapeNode.hpp +485 -0
- include/dart/gui/osg/render/LineSegmentShapeNode.hpp +75 -0
- include/dart/gui/osg/render/MeshShapeNode.hpp +86 -0
- include/dart/gui/osg/render/MultiSphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/PlaneShapeNode.hpp +75 -0
- include/dart/gui/osg/render/PointCloudShapeNode.hpp +85 -0
- include/dart/gui/osg/render/PyramidShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ShapeNode.hpp +126 -0
- include/dart/gui/osg/render/SoftMeshShapeNode.hpp +75 -0
- include/dart/gui/osg/render/SphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/VoxelGridShapeNode.hpp +83 -0
- include/dart/gui/osg/render/WarningShapeNode.hpp +64 -0
- include/dart/gui/osg/render/all.hpp +19 -0
- include/dart/gui/osg/render/render.hpp +14 -0
- include/dart/integration/EulerIntegrator.hpp +64 -0
- include/dart/integration/Integrator.hpp +104 -0
- include/dart/integration/RK4Integrator.hpp +68 -0
- include/dart/integration/SemiImplicitEulerIntegrator.hpp +64 -0
- include/dart/integration/all.hpp +6 -0
- include/dart/integration/integration.hpp +14 -0
- include/dart/lcpsolver/Lemke.hpp +54 -0
- include/dart/lcpsolver/ODELCPSolver.hpp +88 -0
- include/dart/lcpsolver/all.hpp +4 -0
- include/dart/lcpsolver/lcpsolver.hpp +14 -0
- include/dart/math/ConfigurationSpace.hpp +144 -0
- include/dart/math/Constants.hpp +79 -0
- include/dart/math/Geometry.hpp +659 -0
- include/dart/math/Helpers.hpp +481 -0
- include/dart/math/Icosphere.hpp +106 -0
- include/dart/math/MathTypes.hpp +100 -0
- include/dart/math/Mesh.hpp +108 -0
- include/dart/math/Random.hpp +225 -0
- include/dart/math/TriMesh.hpp +121 -0
- include/dart/math/all.hpp +11 -0
- include/dart/math/detail/ConfigurationSpace.hpp +235 -0
- include/dart/math/detail/Geometry-impl.hpp +126 -0
- include/dart/math/detail/Icosphere-impl.hpp +214 -0
- include/dart/math/detail/Mesh-impl.hpp +151 -0
- include/dart/math/detail/Random-impl.hpp +353 -0
- include/dart/math/detail/TriMesh-impl.hpp +202 -0
- include/dart/math/math.hpp +14 -0
- include/dart/optimizer/Function.hpp +203 -0
- include/dart/optimizer/GenericMultiObjectiveProblem.hpp +174 -0
- include/dart/optimizer/GradientDescentSolver.hpp +240 -0
- include/dart/optimizer/MultiObjectiveProblem.hpp +168 -0
- include/dart/optimizer/MultiObjectiveSolver.hpp +168 -0
- include/dart/optimizer/Population.hpp +108 -0
- include/dart/optimizer/Problem.hpp +191 -0
- include/dart/optimizer/Solver.hpp +182 -0
- include/dart/optimizer/all.hpp +10 -0
- include/dart/optimizer/ipopt/BackwardCompatibility.hpp +43 -0
- include/dart/optimizer/ipopt/IpoptSolver.hpp +223 -0
- include/dart/optimizer/ipopt/all.hpp +4 -0
- include/dart/optimizer/ipopt/ipopt.hpp +14 -0
- include/dart/optimizer/nlopt/NloptSolver.hpp +212 -0
- include/dart/optimizer/nlopt/all.hpp +3 -0
- include/dart/optimizer/nlopt/nlopt.hpp +14 -0
- include/dart/optimizer/optimizer.hpp +14 -0
- include/dart/simulation/Recording.hpp +118 -0
- include/dart/simulation/SmartPointer.hpp +46 -0
- include/dart/simulation/World.hpp +405 -0
- include/dart/simulation/all.hpp +5 -0
- include/dart/simulation/detail/World-impl.hpp +129 -0
- include/dart/simulation/simulation.hpp +14 -0
- include/dart/utils/C3D.hpp +107 -0
- include/dart/utils/CompositeResourceRetriever.hpp +97 -0
- include/dart/utils/DartResourceRetriever.hpp +104 -0
- include/dart/utils/FileInfoC3D.hpp +91 -0
- include/dart/utils/FileInfoDof.hpp +109 -0
- include/dart/utils/FileInfoWorld.hpp +75 -0
- include/dart/utils/PackageResourceRetriever.hpp +118 -0
- include/dart/utils/SkelParser.hpp +70 -0
- include/dart/utils/VskParser.hpp +108 -0
- include/dart/utils/XmlHelpers.hpp +243 -0
- include/dart/utils/all.hpp +14 -0
- include/dart/utils/detail/XmlHelpers-impl.hpp +213 -0
- include/dart/utils/mjcf/MjcfParser.hpp +80 -0
- include/dart/utils/mjcf/all.hpp +3 -0
- include/dart/utils/mjcf/mjcf.hpp +14 -0
- include/dart/utils/sdf/SdfParser.hpp +98 -0
- include/dart/utils/sdf/all.hpp +3 -0
- include/dart/utils/sdf/sdf.hpp +14 -0
- include/dart/utils/urdf/BackwardCompatibility.hpp +52 -0
- include/dart/utils/urdf/DartLoader.hpp +277 -0
- include/dart/utils/urdf/IncludeUrdf.hpp +47 -0
- include/dart/utils/urdf/URDFTypes.hpp +42 -0
- include/dart/utils/urdf/all.hpp +5 -0
- include/dart/utils/urdf/urdf.hpp +14 -0
- include/dart/utils/urdf/urdf_world_parser.hpp +83 -0
- include/dart/utils/utils.hpp +14 -0
- lib64/libdart-collision-bullet.a +0 -0
- lib64/libdart-collision-ode.a +0 -0
- lib64/libdart-external-odelcpsolver.a +0 -0
- lib64/libdart-gui-osg.a +0 -0
- lib64/libdart-optimizer-ipopt.a +0 -0
- lib64/libdart-optimizer-nlopt.a +0 -0
- lib64/libdart-utils-urdf.a +0 -0
- lib64/libdart-utils.a +0 -0
- lib64/libdart.a +0 -0
- lib64/pkgconfig/dart.pc +12 -0
- share/dart/cmake/DARTConfig.cmake +194 -0
- share/dart/cmake/DARTConfigVersion.cmake +65 -0
- share/dart/cmake/DARTFindBullet.cmake +96 -0
- share/dart/cmake/DARTFindEigen3.cmake +9 -0
- share/dart/cmake/DARTFindIPOPT.cmake +20 -0
- share/dart/cmake/DARTFindNLOPT.cmake +17 -0
- share/dart/cmake/DARTFindODE.cmake +23 -0
- share/dart/cmake/DARTFindOpenSceneGraph.cmake +69 -0
- share/dart/cmake/DARTFindassimp.cmake +18 -0
- share/dart/cmake/DARTFindfcl.cmake +23 -0
- share/dart/cmake/DARTFindfmt.cmake +9 -0
- share/dart/cmake/DARTFindimgui.cmake +21 -0
- share/dart/cmake/DARTFindoctomap.cmake +17 -0
- share/dart/cmake/DARTFindspdlog.cmake +9 -0
- share/dart/cmake/DARTFindtinyxml2.cmake +27 -0
- share/dart/cmake/DARTFindurdfdom.cmake +29 -0
- share/dart/cmake/FindIPOPT.cmake +54 -0
- share/dart/cmake/FindNLOPT.cmake +54 -0
- share/dart/cmake/FindODE.cmake +54 -0
- share/dart/cmake/Findassimp.cmake +56 -0
- share/dart/cmake/Findfcl.cmake +67 -0
- share/dart/cmake/Findimgui.cmake +70 -0
- share/dart/cmake/Findtinyxml2.cmake +54 -0
- share/dart/cmake/dart_collision-bulletComponent.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets.cmake +122 -0
- share/dart/cmake/dart_collision-odeComponent.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets.cmake +122 -0
- share/dart/cmake/dart_dartComponent.cmake +19 -0
- share/dart/cmake/dart_dartTargets-release.cmake +19 -0
- share/dart/cmake/dart_dartTargets.cmake +125 -0
- share/dart/cmake/dart_external-odelcpsolverComponent.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets-release.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets.cmake +106 -0
- share/dart/cmake/dart_gui-osgComponent.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets-release.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets.cmake +122 -0
- share/dart/cmake/dart_optimizer-ipoptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets.cmake +123 -0
- share/dart/cmake/dart_optimizer-nloptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets.cmake +123 -0
- share/dart/cmake/dart_utils-urdfComponent.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets-release.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets.cmake +122 -0
- share/dart/cmake/dart_utilsComponent.cmake +19 -0
- share/dart/cmake/dart_utilsTargets-release.cmake +19 -0
- share/dart/cmake/dart_utilsTargets.cmake +122 -0
- share/dart/package.xml +42 -0
- share/doc/dart/data/c3d/nick_freeform_001.c3d +0 -0
- share/doc/dart/data/c3d/squat.c3d +0 -0
- share/doc/dart/data/dof/RHand.dof +205 -0
- share/doc/dart/data/dof/fixedHand.dof +205 -0
- share/doc/dart/data/dof/init_Tpose.dof +240 -0
- share/doc/dart/data/dof/same.dof +1003 -0
- share/doc/dart/data/dof/simMotion.dof +1817 -0
- share/doc/dart/data/dof/simMotion1.dof +1355 -0
- share/doc/dart/data/etc/fort.4 +43 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-larm +0 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-lleg +0 -0
- share/doc/dart/data/mjcf/openai/LICENSE.md +36 -0
- share/doc/dart/data/mjcf/openai/ant.xml +81 -0
- share/doc/dart/data/mjcf/openai/half_cheetah.xml +96 -0
- share/doc/dart/data/mjcf/openai/hopper.xml +50 -0
- share/doc/dart/data/mjcf/openai/humanoid.xml +121 -0
- share/doc/dart/data/mjcf/openai/humanoidstandup.xml +121 -0
- share/doc/dart/data/mjcf/openai/inverted_double_pendulum.xml +47 -0
- share/doc/dart/data/mjcf/openai/inverted_pendulum.xml +27 -0
- share/doc/dart/data/mjcf/openai/point.xml +31 -0
- share/doc/dart/data/mjcf/openai/pusher.xml +91 -0
- share/doc/dart/data/mjcf/openai/reacher.xml +39 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/pick_and_place.xml +35 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/push.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/reach.xml +26 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/robot.xml +123 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/shared.xml +66 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/slide.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/.get +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/base_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/bellows_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/elbow_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/estop_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/forearm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/gripper_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_tilt_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/l_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/laser_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/r_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_fixed_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/upperarm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block.png +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block_hidden.png +0 -0
- share/doc/dart/data/mjcf/openai/striker.xml +101 -0
- share/doc/dart/data/mjcf/openai/swimmer.xml +39 -0
- share/doc/dart/data/mjcf/openai/thrower.xml +127 -0
- share/doc/dart/data/mjcf/openai/walker2d.xml +62 -0
- share/doc/dart/data/mjcf/test/default.xml +17 -0
- share/doc/dart/data/mjcf/test/include_default.xml +8 -0
- share/doc/dart/data/mjcf/test/include_main.xml +12 -0
- share/doc/dart/data/obj/Body_Hip.obj +22830 -0
- share/doc/dart/data/obj/BoxSmall.obj +23 -0
- share/doc/dart/data/obj/foot.obj +10970 -0
- share/doc/dart/data/other/torus1.path +11991 -0
- share/doc/dart/data/other/torus1.tris +5329 -0
- share/doc/dart/data/other/torus2.path +11991 -0
- share/doc/dart/data/other/torus2.tris +12961 -0
- share/doc/dart/data/screencap/.KEEP +0 -0
- share/doc/dart/data/sdf/atlas/atlas_v3.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.sdf +1541 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head_soft_feet.sdf +1567 -0
- share/doc/dart/data/sdf/atlas/ground.urdf +28 -0
- share/doc/dart/data/sdf/atlas/head.dae +8607 -0
- share/doc/dart/data/sdf/atlas/head.stl +0 -0
- share/doc/dart/data/sdf/atlas/head_camera.dae +2326 -0
- share/doc/dart/data/sdf/atlas/head_camera.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/l_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/l_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_hand.dae +964 -0
- share/doc/dart/data/sdf/atlas/l_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/l_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/l_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lleg.dae +6660 -0
- share/doc/dart/data/sdf/atlas/l_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/l_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/l_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uarm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/l_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/l_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/ltorso.dae +614 -0
- share/doc/dart/data/sdf/atlas/ltorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/mtorso.dae +266 -0
- share/doc/dart/data/sdf/atlas/mtorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/pelvis.dae +8727 -0
- share/doc/dart/data/sdf/atlas/pelvis.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/r_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/r_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/r_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_hand.dae +904 -0
- share/doc/dart/data/sdf/atlas/r_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/r_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/r_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lleg.dae +6661 -0
- share/doc/dart/data/sdf/atlas/r_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/r_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/r_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uarm.dae +1144 -0
- share/doc/dart/data/sdf/atlas/r_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/r_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/r_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso.dae +28342 -0
- share/doc/dart/data/sdf/atlas/utorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.dae +16508 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.dae +8521 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.stl +0 -0
- share/doc/dart/data/sdf/benchmark.world +2510 -0
- share/doc/dart/data/sdf/double_pendulum.world +168 -0
- share/doc/dart/data/sdf/double_pendulum_with_base.world +263 -0
- share/doc/dart/data/sdf/empty.world +13 -0
- share/doc/dart/data/sdf/ground.world +48 -0
- share/doc/dart/data/sdf/materials/textures/atlas_cage_and_camera_diffuse_flat.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_extremities_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_labels_1.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_torso_head_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/extremities_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/right_leg_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/torso_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/quad.sdf +867 -0
- share/doc/dart/data/sdf/test/force_torque_test.world +173 -0
- share/doc/dart/data/sdf/test/force_torque_test2.world +214 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_with_offset_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1624_cubes.sdf +5037 -0
- share/doc/dart/data/sdf/test/single_bodynode_skeleton.world +55 -0
- share/doc/dart/data/sdf/test/test_issue1583.model +45 -0
- share/doc/dart/data/sdf/test/test_issue1596.model +182 -0
- share/doc/dart/data/sdf/test/test_skeleton_joint.world +278 -0
- share/doc/dart/data/skel/biped.skel +850 -0
- share/doc/dart/data/skel/bullet_collision.skel +174 -0
- share/doc/dart/data/skel/chain.skel +212 -0
- share/doc/dart/data/skel/cube.skel +71 -0
- share/doc/dart/data/skel/cubes.skel +137 -0
- share/doc/dart/data/skel/empty.skel +10 -0
- share/doc/dart/data/skel/freeChain.skel +212 -0
- share/doc/dart/data/skel/fullbody1.skel +1177 -0
- share/doc/dart/data/skel/ground.skel +31 -0
- share/doc/dart/data/skel/joint_limit.skel +123 -0
- share/doc/dart/data/skel/kima/abdomen.dae +18933 -0
- share/doc/dart/data/skel/kima/head.dae +34634 -0
- share/doc/dart/data/skel/kima/kima_human_edited.skel +933 -0
- share/doc/dart/data/skel/kima/kima_human_left_arm.skel +323 -0
- share/doc/dart/data/skel/kima/kima_human_left_leg.skel +327 -0
- share/doc/dart/data/skel/kima/l-clavicle.dae +20111 -0
- share/doc/dart/data/skel/kima/l-foot.dae +28208 -0
- share/doc/dart/data/skel/kima/pelvis.dae +35919 -0
- share/doc/dart/data/skel/kima/r-clavicle.dae +20090 -0
- share/doc/dart/data/skel/kima/thorax.dae +47337 -0
- share/doc/dart/data/skel/mesh_collision.skel +137 -0
- share/doc/dart/data/skel/shapes.skel +378 -0
- share/doc/dart/data/skel/skateboard.skel +222 -0
- share/doc/dart/data/skel/softBodies.skel +284 -0
- share/doc/dart/data/skel/soft_cubes.skel +134 -0
- share/doc/dart/data/skel/soft_open_chain.skel +241 -0
- share/doc/dart/data/skel/sphere.skel +74 -0
- share/doc/dart/data/skel/spheres.skel +118 -0
- share/doc/dart/data/skel/test/SimplePendulum.skel +141 -0
- share/doc/dart/data/skel/test/ball_joints.skel +49 -0
- share/doc/dart/data/skel/test/box_stacking.skel +346 -0
- share/doc/dart/data/skel/test/boxes.skel +52 -0
- share/doc/dart/data/skel/test/chainwhipa.skel +193 -0
- share/doc/dart/data/skel/test/collision_of_prescribed_joints_test.skel +249 -0
- share/doc/dart/data/skel/test/dof_attribute_test.skel +206 -0
- share/doc/dart/data/skel/test/double_pendulum.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_ball_joint.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_euler_joint.skel +78 -0
- share/doc/dart/data/skel/test/double_pendulum_with_base.skel +1390 -0
- share/doc/dart/data/skel/test/drop.skel +116 -0
- share/doc/dart/data/skel/test/drop_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/drop_unrotated_box.skel +156 -0
- share/doc/dart/data/skel/test/empty.skel +10 -0
- share/doc/dart/data/skel/test/file_info_world_test.skel +1177 -0
- share/doc/dart/data/skel/test/free_joints.skel +49 -0
- share/doc/dart/data/skel/test/gazebo/drop_test.skel +161 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test.skel +138 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test2.skel +171 -0
- share/doc/dart/data/skel/test/hybrid_dynamics_test.skel +172 -0
- share/doc/dart/data/skel/test/joint_actuator_type_test.skel +185 -0
- share/doc/dart/data/skel/test/joint_dynamics_elements_test.skel +103 -0
- share/doc/dart/data/skel/test/joint_friction_test.skel +80 -0
- share/doc/dart/data/skel/test/joint_limit_test.skel +80 -0
- share/doc/dart/data/skel/test/planar_joint.skel +167 -0
- share/doc/dart/data/skel/test/serial_chain_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint.skel +212 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_20.skel +412 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_40.skel +812 -0
- share/doc/dart/data/skel/test/serial_chain_eulerxyz_joint.skel +224 -0
- share/doc/dart/data/skel/test/serial_chain_revolute_joint.skel +244 -0
- share/doc/dart/data/skel/test/simple_tree_structure.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_ball_joint.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_euler_joint.skel +111 -0
- share/doc/dart/data/skel/test/single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_ball_joint.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_euler_joint.skel +56 -0
- share/doc/dart/data/skel/test/spheres.skel +118 -0
- share/doc/dart/data/skel/test/test_adaptive_deformable.skel +88 -0
- share/doc/dart/data/skel/test/test_articulated_bodies.skel +112 -0
- share/doc/dart/data/skel/test/test_articulated_bodies_10bodies.skel +401 -0
- share/doc/dart/data/skel/test/test_double_pendulum.skel +105 -0
- share/doc/dart/data/skel/test/test_drop_box.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_box_offset.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_low_stiffness.skel +86 -0
- share/doc/dart/data/skel/test/test_drop_sphere.skel +86 -0
- share/doc/dart/data/skel/test/test_shapes.skel +324 -0
- share/doc/dart/data/skel/test/test_single_body.skel +55 -0
- share/doc/dart/data/skel/test/test_single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/translational_joints.skel +49 -0
- share/doc/dart/data/skel/test/tree_structure.skel +428 -0
- share/doc/dart/data/skel/test/tree_structure_ball_joint.skel +441 -0
- share/doc/dart/data/skel/test/tree_structure_euler_joint.skel +441 -0
- share/doc/dart/data/skel/two_cubes.skel +118 -0
- share/doc/dart/data/skel/vehicle.skel +322 -0
- share/doc/dart/data/test/hello_world.txt +1 -0
- share/doc/dart/data/urdf/KR5/KR5 sixx R650.urdf +397 -0
- share/doc/dart/data/urdf/KR5/ground.urdf +28 -0
- share/doc/dart/data/urdf/KR5/meshes/base_link.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/bicep.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/elbow.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/forearm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/palm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/shoulder.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/wrist.STL +0 -0
- share/doc/dart/data/urdf/drchubo/CMakeLists.txt +5 -0
- share/doc/dart/data/urdf/drchubo/drchubo.urdf +1508 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LEP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK1_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NKY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_REP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_TSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_Torso_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/package.xml +11 -0
- share/doc/dart/data/urdf/test/invalid.urdf +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.stl +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/issue838.urdf +86 -0
- share/doc/dart/data/urdf/test/joint_properties.urdf +60 -0
- share/doc/dart/data/urdf/test/missing_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/missing_package.urdf +10 -0
- share/doc/dart/data/urdf/test/primitive_geometry.urdf +12 -0
- share/doc/dart/data/urdf/test/testWorld.urdf +9 -0
- share/doc/dart/data/urdf/wam/meshes/images/base_gray_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/forearm_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/lpu_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/shoulder_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/upperarm_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/wrist_yaw_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.dae +137 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.dae +103 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/wam.urdf +230 -0
- share/doc/dart/data/vsk/Nick01.vsk +398 -0
- share/doc/dart/data/vsk/SehoonVSK3.vsk +398 -0
- share/doc/dart/data/vsk/Yuting.vsk +398 -0
- share/doc/dart/data/vsk/test/empty.vsk +3 -0
- share/doc/dart/examples/CMakeLists.txt +44 -0
- share/doc/dart/examples/README.md +33 -0
- share/doc/dart/examples/add_delete_skels/CMakeLists.txt +19 -0
- share/doc/dart/examples/add_delete_skels/main.cpp +165 -0
- share/doc/dart/examples/atlas_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_puppet/README.md +20 -0
- share/doc/dart/examples/atlas_puppet/main.cpp +930 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.cpp +71 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.hpp +56 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.cpp +187 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.hpp +85 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.cpp +134 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.hpp +75 -0
- share/doc/dart/examples/atlas_simbicon/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_simbicon/Controller.cpp +996 -0
- share/doc/dart/examples/atlas_simbicon/Controller.hpp +203 -0
- share/doc/dart/examples/atlas_simbicon/README.md +20 -0
- share/doc/dart/examples/atlas_simbicon/State.cpp +674 -0
- share/doc/dart/examples/atlas_simbicon/State.hpp +336 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.cpp +222 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.hpp +134 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.cpp +111 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.hpp +102 -0
- share/doc/dart/examples/atlas_simbicon/main.cpp +102 -0
- share/doc/dart/examples/biped_stand/CMakeLists.txt +19 -0
- share/doc/dart/examples/biped_stand/README.md +20 -0
- share/doc/dart/examples/biped_stand/main.cpp +287 -0
- share/doc/dart/examples/box_stacking/CMakeLists.txt +19 -0
- share/doc/dart/examples/box_stacking/README.md +20 -0
- share/doc/dart/examples/box_stacking/main.cpp +417 -0
- share/doc/dart/examples/boxes/CMakeLists.txt +19 -0
- share/doc/dart/examples/boxes/README.md +20 -0
- share/doc/dart/examples/boxes/main.cpp +157 -0
- share/doc/dart/examples/drag_and_drop/CMakeLists.txt +19 -0
- share/doc/dart/examples/drag_and_drop/README.md +20 -0
- share/doc/dart/examples/drag_and_drop/main.cpp +101 -0
- share/doc/dart/examples/empty/CMakeLists.txt +19 -0
- share/doc/dart/examples/empty/README.md +20 -0
- share/doc/dart/examples/empty/main.cpp +164 -0
- share/doc/dart/examples/fetch/CMakeLists.txt +19 -0
- share/doc/dart/examples/fetch/README.md +20 -0
- share/doc/dart/examples/fetch/main.cpp +246 -0
- share/doc/dart/examples/hardcoded_design/CMakeLists.txt +19 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.cpp +71 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.hpp +56 -0
- share/doc/dart/examples/hardcoded_design/README.md +27 -0
- share/doc/dart/examples/hardcoded_design/main.cpp +186 -0
- share/doc/dart/examples/heightmap/CMakeLists.txt +19 -0
- share/doc/dart/examples/heightmap/README.md +20 -0
- share/doc/dart/examples/heightmap/main.cpp +460 -0
- share/doc/dart/examples/hello_world/CMakeLists.txt +19 -0
- share/doc/dart/examples/hello_world/README.md +20 -0
- share/doc/dart/examples/hello_world/main.cpp +114 -0
- share/doc/dart/examples/hubo_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/hubo_puppet/README.md +20 -0
- share/doc/dart/examples/hubo_puppet/main.cpp +1464 -0
- share/doc/dart/examples/human_joint_limits/CMakeLists.txt +49 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.cpp +411 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.hpp +182 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.cpp +432 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.hpp +179 -0
- share/doc/dart/examples/human_joint_limits/main.cpp +157 -0
- share/doc/dart/examples/hybrid_dynamics/CMakeLists.txt +19 -0
- share/doc/dart/examples/hybrid_dynamics/README.md +17 -0
- share/doc/dart/examples/hybrid_dynamics/main.cpp +187 -0
- share/doc/dart/examples/imgui/CMakeLists.txt +19 -0
- share/doc/dart/examples/imgui/README.md +20 -0
- share/doc/dart/examples/imgui/main.cpp +289 -0
- share/doc/dart/examples/joint_constraints/CMakeLists.txt +19 -0
- share/doc/dart/examples/joint_constraints/Controller.cpp +110 -0
- share/doc/dart/examples/joint_constraints/Controller.hpp +105 -0
- share/doc/dart/examples/joint_constraints/README.md +22 -0
- share/doc/dart/examples/joint_constraints/main.cpp +242 -0
- share/doc/dart/examples/mixed_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/mixed_chain/README.md +35 -0
- share/doc/dart/examples/mixed_chain/main.cpp +188 -0
- share/doc/dart/examples/operational_space_control/CMakeLists.txt +19 -0
- share/doc/dart/examples/operational_space_control/README.md +20 -0
- share/doc/dart/examples/operational_space_control/main.cpp +338 -0
- share/doc/dart/examples/point_cloud/CMakeLists.txt +19 -0
- share/doc/dart/examples/point_cloud/README.md +20 -0
- share/doc/dart/examples/point_cloud/main.cpp +740 -0
- share/doc/dart/examples/rerun/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/README.md +19 -0
- share/doc/dart/examples/rigid_chain/main.cpp +110 -0
- share/doc/dart/examples/rigid_cubes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_cubes/README.md +91 -0
- share/doc/dart/examples/rigid_cubes/main.cpp +201 -0
- share/doc/dart/examples/rigid_loop/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_loop/README.md +34 -0
- share/doc/dart/examples/rigid_loop/main.cpp +127 -0
- share/doc/dart/examples/rigid_shapes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_shapes/README.md +19 -0
- share/doc/dart/examples/rigid_shapes/main.cpp +250 -0
- share/doc/dart/examples/simple_frames/CMakeLists.txt +19 -0
- share/doc/dart/examples/simple_frames/README.md +27 -0
- share/doc/dart/examples/simple_frames/main.cpp +124 -0
- share/doc/dart/examples/simulation_event_handler/CMakeLists.txt +19 -0
- share/doc/dart/examples/simulation_event_handler/README.md +189 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.cpp +572 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.hpp +211 -0
- share/doc/dart/examples/simulation_event_handler/main.cpp +277 -0
- share/doc/dart/examples/soft_bodies/CMakeLists.txt +19 -0
- share/doc/dart/examples/soft_bodies/README.md +20 -0
- share/doc/dart/examples/soft_bodies/main.cpp +219 -0
- share/doc/dart/examples/speed_test/CMakeLists.txt +19 -0
- share/doc/dart/examples/speed_test/README.md +20 -0
- share/doc/dart/examples/speed_test/main.cpp +250 -0
- share/doc/dart/examples/tinkertoy/CMakeLists.txt +19 -0
- share/doc/dart/examples/tinkertoy/README.md +20 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.cpp +208 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.hpp +70 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.cpp +35 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.hpp +470 -0
- share/doc/dart/examples/tinkertoy/main.cpp +186 -0
- share/doc/dart/examples/vehicle/CMakeLists.txt +19 -0
- share/doc/dart/examples/vehicle/README.md +22 -0
- share/doc/dart/examples/vehicle/main.cpp +195 -0
- share/doc/dart/examples/wam_ikfast/CMakeLists.txt +22 -0
- share/doc/dart/examples/wam_ikfast/Helpers.cpp +148 -0
- share/doc/dart/examples/wam_ikfast/Helpers.hpp +46 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.cpp +110 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.hpp +73 -0
- share/doc/dart/examples/wam_ikfast/README.md +20 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.cpp +46 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.hpp +53 -0
- share/doc/dart/examples/wam_ikfast/ikfast/CMakeLists.txt +11 -0
- share/doc/dart/examples/wam_ikfast/ikfast/ikfast71.Transform6D.4_6_9_10_11_12_f8.cpp +14930 -0
- share/doc/dart/examples/wam_ikfast/osgWamIkFast.cpp +96 -0
- share/doc/dart/tutorials/CMakeLists.txt +12 -0
- share/doc/dart/tutorials/README.md +45 -0
- share/doc/dart/tutorials/tutorial_biped/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped/README +18 -0
- share/doc/dart/tutorials/tutorial_biped/main.cpp +374 -0
- share/doc/dart/tutorials/tutorial_biped_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_biped_finished/main.cpp +532 -0
- share/doc/dart/tutorials/tutorial_collisions/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions/main.cpp +506 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/main.cpp +679 -0
- share/doc/dart/tutorials/tutorial_dominoes/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes/main.cpp +394 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/main.cpp +559 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/main.cpp +443 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/main.cpp +512 -0
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
frames = 202 dofs = 30
|
|
2
|
+
Yuting1116Cube_root<t-X> Yuting1116Cube_root<t-Y> Yuting1116Cube_root<t-Z> Yuting1116Cube_root<a-Z> Yuting1116Cube_root<a-X> Yuting1116Cube_root<a-Y> Yuting1116Cube_wrist<a-Z> Yuting1116Cube_wrist<a-Y> Yuting1116Cube_CMC<a-X> Yuting1116Cube_CMC<a-Y> Yuting1116Cube_CMC<a-Z> Yuting1116Cube_thumbMCP<a-Z> Yuting1116Cube_thumbMCP<a-Y> Yuting1116Cube_thumbDIP<a-Z> Yuting1116Cube_indexMCP<a-Z> Yuting1116Cube_indexMCP<a-Y> Yuting1116Cube_indexPIP<a-Z> Yuting1116Cube_indexDIP<a-Z> Yuting1116Cube_middleMCP<a-Z> Yuting1116Cube_middleMCP<a-Y> Yuting1116Cube_middlePIP<a-Z> Yuting1116Cube_middleDIP<a-Z> Yuting1116Cube_ringMCP<a-Z> Yuting1116Cube_ringMCP<a-Y> Yuting1116Cube_ringPIP<a-Z> Yuting1116Cube_ringDIP<a-Z> Yuting1116Cube_pinkyMCP<a-Z> Yuting1116Cube_pinkyMCP<a-Y> Yuting1116Cube_pinkyPIP<a-Z> Yuting1116Cube_pinkyDIP<a-Z>
|
|
3
|
+
0.12443606841519318229 0.11987795292503945765 0.011267867662577720975 1.1650263849341542244 -0.90738216476945632305 -3.2736415363828421654 1.1571946631272334027 0.28296769490469175778 -0.86841303362685362544 -0.25627969123426669329 -0.79685538047236859072 -0.12734463791710903813 0.14789072934042360452 -0.48935240234150112482 -0.30611976871154328306 -0.14817345106151691425 -0.24066512198813386214 -0.21809634746591596843 -0.011130368938586579844 -0.034110448084233024879 -0.4397398082290809862 -0.038024760469828035314 0.029673622504407651257 -0.11456185499668754268 -0.56881125122878961609 -0.062291363717269003508 -0.17039243995921912744 -0.34058612440903029972 -0.74166613411407411594 0.083218661053851505915
|
|
4
|
+
0.12458459077394662406 0.11942053907204089325 0.011333969555016532027 1.1535230790675423673 -0.90700811669826797434 -3.2740446766833932735 1.1549155783530700159 0.28180010292868679089 -0.87532797141914564509 -0.2523281749153222786 -0.80265779457309149869 -0.13668258465894272957 0.14643745989301371058 -0.50066395893456150379 -0.31530869490904522845 -0.15271469457966116434 -0.24391031411763031134 -0.22360501590092857205 -0.02586398698742404384 -0.029330295544362075533 -0.45075415228234799736 -0.035403406905528289617 0.031147794152534630241 -0.11775121242839868552 -0.58243939310936310161 -0.066929222283777858871 -0.14785387176172723467 -0.34243037547991639347 -0.78784598013872153555 0.077512608506654284701
|
|
5
|
+
0.12475407860685107375 0.11892894667724433766 0.01138544003613092305 1.1398219283002428703 -0.90600853724189933658 -3.2752842960731447519 1.1514143790573829751 0.28054346195394386232 -0.87959010456799335831 -0.2489558317140932453 -0.80868909903222907509 -0.14652424103282518653 0.1440774665290871781 -0.51023645760713542963 -0.325419045715567401 -0.15779801897188922011 -0.24676942426360071181 -0.22847835315671924383 -0.038579134644969557966 -0.027553538690171099773 -0.46552228823138208647 -0.03238910675323895122 0.033680509556397293658 -0.12288410530143753507 -0.59826577702410221882 -0.069917139109446302392 -0.12212981835685127185 -0.34602943941257874316 -0.83913508345610909878 0.075452116803013849489
|
|
6
|
+
0.12497511899412901137 0.11839629947751451056 0.011406652317696807861 1.1201124119537360091 -0.90370959040897047565 -3.2795006696940505186 1.1440284563041784871 0.27887154079955961405 -0.8818138876830594608 -0.24623793113818900902 -0.81564698805257451752 -0.15660355557692312578 0.14103241990149856244 -0.51733805284970679761 -0.33708406848036504 -0.16413638621481760338 -0.24858091913404897766 -0.23276821202600697647 -0.04890924180474755939 -0.029137738011761286222 -0.48335477743006693974 -0.028652269760848080027 0.038399863364424434431 -0.13043762794945412686 -0.61692076446521482147 -0.071396986113652111117 -0.092119294473930302125 -0.3522872264796272912 -0.8953611699008291458 0.076939886453296607582
|
|
7
|
+
0.12522026422412060875 0.11788914508087894317 0.011411944307893464451 1.0991676471501972134 -0.90013830812176898188 -3.2845664401383136699 1.1356685628110980701 0.27671327267852408038 -0.88040601786251360128 -0.24538699758716339683 -0.8206464535665447535 -0.16855631599150752709 0.1393034314512482108 -0.52267662155775651556 -0.34865231740518598524 -0.17104437011645937106 -0.25055537250622572643 -0.2375145551838849789 -0.057500650067800362919 -0.032835908909679870082 -0.50100153111404432948 -0.027341138150550454988 0.042455383620825661029 -0.1394765303237684162 -0.63411778931656570535 -0.07387445021116542665 -0.065162369500486372331 -0.35937519669502221431 -0.94703015705314108619 0.081484345490858936523
|
|
8
|
+
0.12548233498947702902 0.11740859947957399401 0.01136904820185401406 1.0797868383836901618 -0.89644518747184442908 -3.2898944694119118815 1.1284437604003050293 0.27479894986381275812 -0.87672739749034545031 -0.2441134301823067454 -0.82598386644819798974 -0.17560294480500437952 0.13487339670591705354 -0.52872784341170397937 -0.35987832812039266539 -0.176100902102787088 -0.25306137024810193559 -0.24068256625430281548 -0.064760367684135303201 -0.035994933038328014163 -0.51829668720787447356 -0.026240596149460636288 0.045892495315778478182 -0.14739476032259224425 -0.65170231980138626504 -0.075045411441493001248 -0.040122243353082454043 -0.36516932686340691783 -0.99691524096084849216 0.086644398315827736434
|
|
9
|
+
0.12577688050156810018 0.11695380638224836534 0.011322251345546107543 1.0556612160497069741 -0.89147072571190044687 -3.297734042836624635 1.1177426465387707566 0.27225487431442196851 -0.87158494981269074575 -0.24398411965483265962 -0.83024966338457584225 -0.18460144480237025699 0.13228341252047728926 -0.53422066351829744502 -0.37144555663208417284 -0.18257149370310118974 -0.25613882065350007666 -0.2438380599867573939 -0.07122294119160295367 -0.040738686002008736575 -0.53429771180904017669 -0.025985150915917229475 0.048759979226420335774 -0.15706476147494694007 -0.66706327207526316947 -0.076976243061293900261 -0.02010679898752128561 -0.37200725133290618585 -1.0364735205818176311 0.091311352681418933575
|
|
10
|
+
0.12608598550273467098 0.11659855782911815458 0.011229326496337538321 1.0361139139888844163 -0.88552369489465621033 -3.3045569898056279534 1.1091561033475305642 0.26902035410541347282 -0.86556761234914458836 -0.24495495314753007454 -0.83238346865718149115 -0.19132803127884065453 0.1312571112638798998 -0.53662996640398141768 -0.38095586165039441173 -0.18666815703346797961 -0.25835891067303751178 -0.24772731435427700064 -0.076637651099041373404 -0.043560770609347439219 -0.5461940116275926238 -0.02933026907065960226 0.050020135217664719873 -0.16427475916768813358 -0.67896241919751298965 -0.081364846617731953482 -0.0064260357384801737937 -0.37546308323424809616 -1.0653245495700933709 0.090277690068988183936
|
|
11
|
+
0.12642857607751825655 0.11626984570089864135 0.011136486757062623656 1.011822070093104875 -0.8781835413882108643 -3.3136801236830537576 1.0969315955055811695 0.26470487457082225724 -0.859545164985559218 -0.24583007009448026858 -0.83518871175296416354 -0.19792466333749642038 0.13046943180116679639 -0.5395916277325158994 -0.39152222668790298554 -0.19176716382326314259 -0.25992476067625147618 -0.25135066209895534639 -0.082408696816566623378 -0.047233450787910601087 -0.55638567019852913642 -0.032109879399146092072 0.050801156224644955506 -0.17230893114740342131 -0.68899908315752556032 -0.085558308995306392442 0.0037756873132616755075 -0.37960678396397218304 -1.0839492633028113833 0.084043124905341964892
|
|
12
|
+
0.12674064040753033056 0.11608531860292439775 0.011013761003320198667 0.99917753093515704332 -0.87355047928674611768 -3.3180080502624971217 1.0918997910820875674 0.26224764680824635965 -0.8534699849039197872 -0.24691886716963970527 -0.83598453630154123672 -0.20239755736326706104 0.13044153956251897108 -0.54136802257842431274 -0.39901898513951972181 -0.19355318574904400997 -0.26269942795154660464 -0.253852669630299288 -0.087347006504135155103 -0.04749176003877154939 -0.56413465751699964912 -0.036228368271984452698 0.049471305206390626952 -0.17649918993904570308 -0.69542029510745817511 -0.08991893915220039446 0.0059851241958132394075 -0.37845509077991035252 -1.089274840386038834 0.071379181672696481731
|
|
13
|
+
0.12706710418343070135 0.11593760485538026628 0.010897704578501863845 0.98612880552999315764 -0.8683859371797494342 -3.3231618229369588313 1.0862013477241987403 0.25947504702456453129 -0.84735247460077789405 -0.24814689155010774546 -0.83669977012289153961 -0.20647979251467496464 0.13024636442895251576 -0.54221698565872811226 -0.40625709279367194782 -0.19524200572793848352 -0.26465258866881818944 -0.25525937023221700883 -0.092454090741880004534 -0.047410554190364273541 -0.56990442465181334608 -0.039617850599601413253 0.047604826651365193813 -0.17997691748765440312 -0.69973445304043913051 -0.093381794285095701125 0.0052748126892202228111 -0.3766209255055950611 -1.0879984019313890808 0.057255205123596247807
|
|
14
|
+
0.12738653672532537775 0.11585217620479068557 0.010789209201226260607 0.9744542724922891086 -0.86341189297687204185 -3.3280897786013969863 1.0810020436270471045 0.25691558801047792437 -0.84175537268504674326 -0.24908070707276988576 -0.83762176184048364735 -0.21006403700618700436 0.12988708609027710406 -0.54302609449032668287 -0.4133562074318657964 -0.19711627436504072786 -0.26488202285034495587 -0.25661292922377343384 -0.097303224305838459385 -0.047048571014068951701 -0.57403721139711649801 -0.042953807327706559904 0.046009269264506047481 -0.18299036618159617018 -0.70297834114716462039 -0.096145292782714025792 0.0046431728882680989301 -0.37512521629777967336 -1.0832558967276872952 0.038952329245879803443
|
|
15
|
+
0.12773542436828314028 0.11580266131166205845 0.010662798442630143717 0.9641752581123088639 -0.85819985475367766004 -3.3325869094710149909 1.0768365106601056613 0.25414764332109329725 -0.83552366093554342186 -0.25009933112072613159 -0.83831938182562870665 -0.2133372586914149549 0.12935069656849826347 -0.54235617255308588014 -0.41998455613362251082 -0.19793969390018781307 -0.26547155426970409087 -0.25735125838263994691 -0.10194222078302403456 -0.045847820041389875101 -0.57770966282107327761 -0.046302625675638267588 0.044168454324403604028 -0.18462053025473343371 -0.70567561232006981164 -0.09813583095419879665 0.0029925675598804586316 -0.37296542373002067317 -1.0768439073678974793 0.020993772521811931292
|
|
16
|
+
0.12808347939055148013 0.11577853809332332158 0.010561829722724524333 0.95325586636805847984 -0.85296576186846317924 -3.3379518535486378816 1.0723551323832969384 0.2517491329465488259 -0.83047841917973841408 -0.25053696694826599334 -0.83949652619671599751 -0.21635679720278314098 0.12832243397681236674 -0.54281995792056858541 -0.42659444795109396908 -0.1993402163462380805 -0.26503126029344736825 -0.25737589510602687515 -0.10536032018683680334 -0.045674688064353319294 -0.58218658462251970942 -0.048445165352048714935 0.043500322962852791542 -0.18684043402294836511 -0.7094776475426676221 -0.097793911788626092241 0.0038474055156528619119 -0.37259090995028076865 -1.0724910567942425033 0.0031616003373908284704
|
|
17
|
+
0.12844116780287040402 0.11584374389832245711 0.01045449672890838913 0.9463736145415316825 -0.84909859697802270162 -3.3413995593140253249 1.070566292710140921 0.25043666482999454859 -0.82481922466699431062 -0.25134691561545785543 -0.84049716496946624833 -0.21886034431040352066 0.12670365029115526756 -0.54178506340626153559 -0.43167233511028757498 -0.1999222357290244001 -0.2652654457574289415 -0.25701747258012141994 -0.10753013734952644731 -0.045526749735561679311 -0.58582714973741800701 -0.051916600171780298567 0.043351924551296154575 -0.18823883834885965505 -0.71243455904667996048 -0.098415849520079853874 0.0041956073466528779128 -0.37226977211835049486 -1.0687408862966338852 -0.010202733027691765835
|
|
18
|
+
0.12882197891850841187 0.11594949348906700981 0.010353827683521554803 0.93951477354631829364 -0.84549107466892781115 -3.3447357468929115321 1.0692417004630179189 0.24944220961848040385 -0.82028760501745845435 -0.25192195317069798755 -0.84173264908958611574 -0.22082618098075190716 0.12518282784758047455 -0.54111177777052466009 -0.43610257228496862592 -0.200357913479699834 -0.26580231913951862799 -0.25648243906248235913 -0.10764430004107150562 -0.04662264802780538564 -0.59137943125293324087 -0.055220616623663579259 0.044229307453172286846 -0.18988363331272159473 -0.71659802185689647214 -0.097948696690161332623 0.005971251348857832715 -0.37285446884002843015 -1.0682446558988747398 -0.019527926507160089237
|
|
19
|
+
0.12925191012635983689 0.11609205990438770106 0.010264633716750157927 0.93040551943704752347 -0.8413978659625483969 -3.3487119782922918354 1.0667857521424879419 0.24818483330100774009 -0.81691519884273522401 -0.25236043326794654895 -0.84330846745657050967 -0.22249449156342945844 0.12391486756442234018 -0.54050156956290651422 -0.44012281647667089723 -0.20093939062058707723 -0.26655165486043624901 -0.25599197551910707338 -0.10578938419029858264 -0.049577730976935560636 -0.59869288505926276933 -0.05861154145445599678 0.046122328978942216116 -0.19220422265153830343 -0.72169452739217221371 -0.097168901811335514629 0.0092595483989911138434 -0.3746891365009628605 -1.0704817335563994174 -0.026090726708773111231
|
|
20
|
+
0.12971721523579327062 0.11632067280294011713 0.010187668457378040374 0.92119808026129856859 -0.83752516378071839576 -3.3521281601560386498 1.0645396149298227417 0.24697671375170393571 -0.814768374609801449 -0.25269432406070496677 -0.84504655570599251924 -0.22341864022273269508 0.12276760583211097921 -0.53991468024908617629 -0.44301803551860158281 -0.20117222620964064772 -0.26804101400416791012 -0.25535219453941687684 -0.10160534611050263398 -0.053994610753817069704 -0.60769815002264770953 -0.062519870924889475727 0.048726154365677919189 -0.1947485940008709393 -0.72713987243913347225 -0.096294168490106510361 0.012862136480974374619 -0.37679863888495596091 -1.0738818773568994391 -0.030189642272842449194
|
|
21
|
+
0.13024156640981782163 0.11662725698033252208 0.010130966633038461858 0.90840267889168291315 -0.83279593478391289452 -3.3568775706644813361 1.0600258099088690766 0.24528936753384766867 -0.81401872318517842775 -0.25288658914127581934 -0.84705378168649458903 -0.22401587031166825259 0.12188686054206236686 -0.53927444515033040595 -0.44544359799387200916 -0.20156586255468197932 -0.26948441307895926178 -0.25499016489348103054 -0.095377347268545895065 -0.060186099663543775329 -0.61842942437369841091 -0.066680586144195364007 0.052128704394505870345 -0.19805930930502521625 -0.73329063821879858498 -0.095149082279616145619 0.017126837898579383435 -0.37970908246985773937 -1.0782886803507774065 -0.033439163775504453235
|
|
22
|
+
0.13079929576758267395 0.11709934861074790258 0.010091695742959396614 0.89775450258104005918 -0.82817294091652804422 -3.3597712035101681138 1.0568130947533802555 0.24323167532431419491 -0.81357453629576470533 -0.25320074902347139423 -0.84869539734838328471 -0.22372358797859803747 0.12078332816550024775 -0.5389439100025646967 -0.44612575176278801425 -0.20125645965127358927 -0.27193103876315111167 -0.25459706512558616387 -0.087530132084223569167 -0.066701606006380254055 -0.62913193002695155798 -0.072121803018485114434 0.055450444584527136538 -0.20090991911258418434 -0.7386626312177601017 -0.094282547003948100062 0.019796089003623836694 -0.38149326458717974786 -1.0810548707946490143 -0.036102849805993944554
|
|
23
|
+
0.13138464200615473931 0.1177341082572748443 0.010078568932694662377 0.88709974071560337983 -0.82374083366411332552 -3.3624397691335734528 1.0536157869840807599 0.24118841480656394438 -0.81363441597463359578 -0.25319573132331646415 -0.85038072891448168722 -0.22247731928244240951 0.1193413467959985319 -0.53876594787720910595 -0.44576496804271098506 -0.20018557659655988878 -0.27538021888966479622 -0.25350431606816015151 -0.078508730036891891113 -0.073229960002679950204 -0.64082100194866253862 -0.077593009225806669482 0.058700476897301109847 -0.20316354450888635119 -0.74396344877310083277 -0.092855150323335702844 0.021080568071316477946 -0.38244409839383358696 -1.0826264758340351513 -0.038312087885777147689
|
|
24
|
+
0.13203431902964052336 0.11851833345012208198 0.010086818217618221186 0.87257085546055179748 -0.81655266997217335057 -3.3662457220078523257 1.0471034364369051772 0.23689926420286633313 -0.81386955551555772992 -0.2531789273799188722 -0.85190875963828205375 -0.22129210759699860511 0.11779081915026590188 -0.53825777315657763467 -0.44514667783468003792 -0.19913320683416577128 -0.27845108248347882896 -0.25297044584279038126 -0.069566214448260624281 -0.079632498772516061014 -0.65146159906366463144 -0.083685960680367085796 0.061965161297033312382 -0.20557376526126583394 -0.74917272528804423892 -0.091255868342187101971 0.021969064575453649962 -0.38335326327515661937 -1.0839101731362539294 -0.040290430899125227737
|
|
25
|
+
0.13273199552277581414 0.11946174730791275787 0.010116842206263245221 0.85493902063139437519 -0.80709957967843704019 -3.3710642785995550419 1.0377810232661137668 0.23083985078385155232 -0.8140627792717046729 -0.253067145969924856 -0.85315187951498183683 -0.2203516926974748158 0.11622830739335912598 -0.53781703555513771242 -0.44452482681897803607 -0.19820095470156146034 -0.28117837873311279928 -0.2529952281150436022 -0.061434015057449588293 -0.08548522896442810326 -0.66076325982705841344 -0.089810861337986963582 0.064891988804066658147 -0.20779776810909161844 -0.75418088863040977365 -0.08932705594879579436 0.022379226846126445277 -0.38432106380343333818 -1.0853350371166998745 -0.041445258836636432453
|
|
26
|
+
0.13349536837604586426 0.12055223529428828189 0.010151561053982396596 0.83401953311265597524 -0.79455245274207619843 -3.3760623784525773949 1.0251819274671221116 0.22205696374673014604 -0.81405122884824199225 -0.25295553402543280441 -0.85438395302164860112 -0.21972585959378085341 0.11467646175901041738 -0.53671321354635048717 -0.44430576107227193194 -0.19727323418809694644 -0.28342119135246907069 -0.25283007530755097214 -0.054741627875516819801 -0.090466347334191454799 -0.66845001052446850753 -0.094894942269453275152 0.067424050365143484154 -0.20983788185060600617 -0.75855295802683275763 -0.087270796890364696341 0.022998425868709405917 -0.38533441515023070245 -1.086947022478142566 -0.04209629269302714305
|
|
27
|
+
0.13429970387481518501 0.12177220880444858397 0.010203939452996196521 0.80961438935931506755 -0.77942995334204845381 -3.3814518096485630672 1.0094246926061218872 0.21121237816225810202 -0.81440301918224344835 -0.25269214693702263252 -0.85555458872963319195 -0.21999850142859145308 0.11367532608960710661 -0.53570208336810332117 -0.44507612461463696985 -0.19703835257215249199 -0.28468475807821791435 -0.2530529053068827916 -0.049776864855796992826 -0.09523891357026134652 -0.67448759373750377666 -0.09969068060371436002 0.069480457549980931264 -0.21239268933939961514 -0.7626424235138827834 -0.085178874760517456211 0.024649194226798749191 -0.38737613048664948368 -1.0901854566944002567 -0.041812992423739710202
|
|
28
|
+
0.13515473790619678129 0.12311045020980121434 0.010255106388003877235 0.78179209148112005501 -0.76176343846685456995 -3.386395289500729433 0.99030475003855489291 0.19804448924616621652 -0.81504521904364812812 -0.25244928185921489128 -0.85690745577339078043 -0.22093848761227544153 0.11313434665787416855 -0.53533134741584864624 -0.44689491451406415656 -0.19768549478016536614 -0.28497207172797900387 -0.25352976963531770327 -0.046391290146802363625 -0.1000701528362407805 -0.67922270045347743483 -0.10263337984883984244 0.071626349567411540242 -0.21562547395906550562 -0.76624767958662542977 -0.083654495153990954259 0.028405564146974860568 -0.39076916529179650528 -1.094877666667363858 -0.041650172826644099588
|
|
29
|
+
0.13593664982384659479 0.12477403508572046387 0.010305086450600943471 0.76808160481871867731 -0.75228317164881985946 -3.3864901467709835892 0.98213615829666489621 0.19128950759722565533 -0.81574199663730040388 -0.2522587371434292236 -0.85745612765196588256 -0.22033501840850683307 0.1127163006164152298 -0.53569929441903374467 -0.44606171919986975505 -0.19638072250205682034 -0.28757951739681891778 -0.25252791856186718178 -0.042789938604119663601 -0.10243656302070383579 -0.68271551663897656059 -0.10701251817463129645 0.072611174769838998655 -0.21645656234852839184 -0.76780701769965453707 -0.083739592046154359695 0.02917114715532479266 -0.39099989236236037948 -1.0962845131203131643 -0.041876833124463816449
|
|
30
|
+
0.13673188465530183855 0.12658123092126455367 0.010363780577488478432 0.75514921138711610382 -0.74386004085958357113 -3.3857011758379633726 0.97476996336195487203 0.18537962346022107685 -0.81672214702110346174 -0.25221439851680421684 -0.85834596238975413574 -0.21982616922317602115 0.11253771746220710137 -0.53527303810878645862 -0.44561018838618315918 -0.19564069606101464061 -0.28954147796553397765 -0.25037613799118313418 -0.039549705329552188593 -0.10504071489259012018 -0.68540608161855975933 -0.1102112670309888659 0.073827075734893665704 -0.21759144578453701313 -0.76855916102519450384 -0.084624163086711390314 0.030883415600640399395 -0.39187298196983272325 -1.0970914275152343631 -0.044184587445165214581
|
|
31
|
+
0.13754871170922988721 0.12850640355580295049 0.010435883023881695197 0.74264262244439205318 -0.73606744005354429738 -3.3842880072484176068 0.96822694687220234311 0.17995569643379949465 -0.817875092658407854 -0.25229787295805278236 -0.85909325666587388337 -0.21983961004602506351 0.11278495817179436111 -0.53584900401399071512 -0.44549898819673150463 -0.19531127065614117821 -0.29107725522094141102 -0.24870489124815725601 -0.036451252494605929089 -0.10810697957535508884 -0.68784834991868037957 -0.11390384747043305613 0.075257603562818631282 -0.2193645789019127712 -0.76907525737242077302 -0.086908283855970963616 0.032741172642900648326 -0.39378295452777489771 -1.0973251199395839262 -0.048166216922859425575
|
|
32
|
+
0.13840639884920666325 0.13052465750244654497 0.010512268391508452353 0.72932661112995134101 -0.72798688333956651508 -3.3826856671355769457 0.96165057857949143294 0.17444583567289312365 -0.81893958553129697631 -0.25256114663079481941 -0.85973095493573126191 -0.22026713545171394681 0.11338809941309467566 -0.53627231345298753684 -0.4461035645926105242 -0.19537511076130908982 -0.29165505945199188265 -0.24776488886435685255 -0.03346457288876733549 -0.1116709979728855856 -0.6902538510595050969 -0.11785546465572871444 0.076923713331311094343 -0.22154022238694529023 -0.76964999421792057444 -0.090492397888168749076 0.034756779304458501612 -0.39625382786526075485 -1.0973699399686254186 -0.053857747942817744968
|
|
33
|
+
0.13927713787139764379 0.13267668658788528413 0.010607496847842786541 0.71793002247763160195 -0.72136754922612633667 -3.3807670696659410936 0.95725019551125667405 0.170552147993081743 -0.81974859943751865465 -0.25294096086297240822 -0.86004842452506180539 -0.22067035868788109632 0.1138792055467358344 -0.53702753867330699222 -0.44639816304039381389 -0.19540390701091039927 -0.29211029667897359108 -0.2472927363264226519 -0.030194360351550490057 -0.11526212571711111354 -0.69268455648428373106 -0.12203377942484043561 0.078750715742056720536 -0.22374262673403685908 -0.77002634573085082526 -0.094892527510495885967 0.036349973592909860798 -0.39874122371890785566 -1.0972875156188994783 -0.058974675682664186305
|
|
34
|
+
0.14016495092473393869 0.13496352097697197903 0.010728451445704391756 0.70885313849166220468 -0.71629984900979715157 -3.3784443142800117954 0.95525417589211625291 0.16813179680041098751 -0.81997864581086910007 -0.25353617688402324548 -0.85993119342935253613 -0.22142506818133586566 0.11441958359680989843 -0.53720808398088948366 -0.44616902286388326893 -0.19489867271238311974 -0.29309076979438980493 -0.24707794680073541516 -0.026606067727054365235 -0.11842662502612757991 -0.69546860684540157127 -0.12592095539904260559 0.080625521574904476796 -0.22548752904600499747 -0.77015687539145893936 -0.099971306178867153092 0.037807871661532418961 -0.40053981733158988687 -1.097320089063706261 -0.062412976418383905863
|
|
35
|
+
0.14108871464005454111 0.13735651818208813313 0.010867045938599046231 0.69972211599764022605 -0.71114232825239309665 -3.3764437772665321091 0.95348035402444664133 0.16606716911964777839 -0.8201781731838104772 -0.25408691481627743158 -0.85961897611416615561 -0.22231642326380601782 0.11492316480421864433 -0.53734417270249745791 -0.44594574224048971756 -0.19436961722414561327 -0.29360216005617023605 -0.2477672676484191927 -0.023088260493764431458 -0.12141209452939331903 -0.69852600287328181494 -0.12915116209887875232 0.082535244135581511959 -0.22723374410027860626 -0.77036187852488957617 -0.1051489463150393211 0.040159479806601838803 -0.40226605038180440754 -1.0992923248737938025 -0.063140746674595044086
|
|
36
|
+
0.14203460199366432781 0.13988072896416528512 0.011026090689620916471 0.69269122658807347204 -0.70724150886386849546 -3.3742162637367130174 0.95361296411500862114 0.16535522057423163167 -0.82043178268851502111 -0.25456698105053970904 -0.8591324981942889405 -0.22313571239510918143 0.11537841035115428689 -0.53718230210847905948 -0.44537222145795518635 -0.19349934145180489042 -0.29415570226604809134 -0.24890601018817479217 -0.019682463459870676997 -0.12378704015600039412 -0.7017198217957864026 -0.13137484584698988499 0.084159935700525934088 -0.22850009600725113001 -0.77009310062430103017 -0.1102764465986652842 0.042534353330165204643 -0.40319686492096673547 -1.1014652642453999221 -0.062408207613531989366
|
|
37
|
+
0.14301825838338394492 0.14250644728378331072 0.011201204885898872685 0.68563347355680537287 -0.70300337453930195064 -3.3718885888765641745 0.95367037539316712458 0.16439997771925290992 -0.82107853875319480874 -0.25486764156807450998 -0.85865766543433430513 -0.22408651245466806867 0.1160581117486970959 -0.5368165606736026163 -0.44498981148079203018 -0.19260320490819640704 -0.29414416188754916037 -0.25085628911887403181 -0.016678528479295118975 -0.12579736774809646693 -0.70481687160994765939 -0.13267213732509225421 0.085488232735168659393 -0.22955399765852746441 -0.76929840950815453482 -0.11563398830241014559 0.04400471075641559926 -0.40369454050213254837 -1.1016782060158278878 -0.063544318313189185332
|
|
38
|
+
0.14403406863063558663 0.14523323521267217373 0.011395056355907371912 0.67934571327524584383 -0.69903890371859234154 -3.3694286504153598827 0.95435189005261700235 0.16371480890219042292 -0.82197839799832284058 -0.25502902749209033217 -0.85806325856358500737 -0.22493302954405464122 0.11687730335787140101 -0.53639256484530362101 -0.44471166652347998705 -0.19160008541285747374 -0.29350547665354148608 -0.25358510285203894608 -0.014317127678086686432 -0.12727902220940082167 -0.70727860723366442475 -0.13337371332036934701 0.085992124004251491165 -0.23013355659395123842 -0.76755134171680416966 -0.12088241978979256952 0.041646493560997581429 -0.40341984892079885139 -1.0953267847638730181 -0.071544566018625938009
|
|
39
|
+
0.14507496031971078843 0.14806101741812160988 0.011588005514935762613 0.67398947912676021588 -0.69620745025390862182 -3.3667096477747753269 0.9558747062758290447 0.16412872678950435334 -0.82349500510724871205 -0.25487045344950060022 -0.85789026636695642214 -0.22582271341983298218 0.11776840653186702867 -0.53563959095130331267 -0.44501587816037441181 -0.19106060152639700589 -0.29203006497746170078 -0.25668129733413841409 -0.012315770050682461889 -0.12880307723708903089 -0.70963120953966840609 -0.13323460458474753465 0.086363984918628983189 -0.23081987690659244716 -0.76561151739353083823 -0.12618486257040811838 0.041301887553928606778 -0.40295252179254847924 -1.090809574647696456 -0.077694348909629964983
|
|
40
|
+
0.14614515545469489166 0.15098158070264783293 0.011811164687924459449 0.66974291150962517172 -0.69387100956614811142 -3.3641400390414379906 0.95857588088222389633 0.16481987069267342583 -0.82456125001656299656 -0.25465068127100626283 -0.85711905349021189071 -0.2263974372930815937 0.11884760418659312542 -0.53532215072391198252 -0.44551968129914443217 -0.18982835130728334394 -0.28986380261327016061 -0.26075378873942905988 -0.011591296231281812343 -0.12917020959529679214 -0.71013244735175873323 -0.13407256216280738492 0.084879480599863915691 -0.23021229439316009957 -0.76186767011643119485 -0.13214893390441942445 0.025298701425646209079 -0.4010790028671623042 -1.0629238486594605462 -0.10798095413930823561
|
|
41
|
+
0.14724286017498641743 0.15398948448765809038 0.012059958882326696911 0.66695667360145338698 -0.69254592914976831342 -3.3619168139824675556 0.96292770785718895254 0.16634470909871676425 -0.82480844856766699635 -0.25438671086084874151 -0.85551034161044559045 -0.22687903900257189171 0.12006262782335690165 -0.53535330810236358978 -0.44615595033407867698 -0.1877312519459340967 -0.28724785218892984195 -0.26559699580067641644 -0.012123098325176705561 -0.12821049998526556912 -0.70881784419625359916 -0.13607502901954068864 0.081581468226927494891 -0.22812373683460454576 -0.756617415324635334 -0.1386487426322597083 -0.0075048401898225773968 -0.39761430351851140275 -1.0112667733774118872 -0.1592026988412400812
|
|
42
|
+
0.14831767080914495804 0.15687742639761595442 0.011968503414483584735 0.68784369930284561256 -0.68396424357474638889 -3.3814622058766095059 0.993473166538221375 0.18503351257506556182 -0.8032594016119360969 -0.26105997920709506088 -0.80791132870963955348 -0.2491109170600239453 0.13075852799917203617 -0.53303081785110639768 -0.41937289819932316304 -0.17303365404333642674 -0.31873628051081265289 -0.26115409525244465128 -0.018803028906291749389 -0.12087654905061295807 -0.71133973602104749734 -0.14448367456682284504 0.04539874151245779782 -0.21989134014449149279 -0.75217617846063011822 -0.12861721858428984411 0.047080816316333429228 -0.45891987262927697033 -1.2329850321385336098 -0.14484911764427418901
|
|
43
|
+
0.14936551816767756895 0.16023372487846487822 0.01219444300005116319 0.69968363221301133059 -0.69629876389285205729 -3.3757500509703568525 1.0108796543733786777 0.19827987542742070426 -0.80416927559415740667 -0.26036699268541607655 -0.80863376891763416587 -0.24816259088114367426 0.13039916914219623623 -0.53296204133055569141 -0.41943325746802384568 -0.17228555386054361653 -0.31679698855821092351 -0.26493563683629567374 -0.017828747391115323112 -0.12022202908138565625 -0.71073771541107000349 -0.14587719865079387671 0.044374002627975764335 -0.21837988184532977631 -0.7481870282361018365 -0.13494650064720176141 0.040770834343304751535 -0.45395819640126977568 -1.2184931445886910684 -0.1309544549886429432
|
|
44
|
+
0.15048606381211135363 0.16361254297853722317 0.012399999432001495431 0.71057033797211122117 -0.70719308865119689944 -3.3686343043610658121 1.0272739120486540365 0.20977564789112074228 -0.8046454867037704517 -0.25953778557096018886 -0.80972077619947402383 -0.24765667586430523128 0.13029666078439328114 -0.53239410571604273148 -0.4201593595423068761 -0.17171164101403801894 -0.31516108288758731826 -0.26834363378959907864 -0.017246389709198377965 -0.11920179446141924984 -0.71018867463866686141 -0.14721948536070733615 0.043737573537177415472 -0.21683974516475329475 -0.74495531373820422782 -0.14086049779215750744 0.03595844463857898049 -0.44971284370141589859 -1.2070928410430672439 -0.11540575743167114098
|
|
45
|
+
0.15165985281247917893 0.16703875367467940771 0.01261973230611150229 0.72064728623100116067 -0.7185638839238607245 -3.3618595971913411979 1.0429099028441195518 0.22217376599503518841 -0.80523873019965808151 -0.25884157039940208778 -0.81082953497299969925 -0.24793473061928059109 0.13013502588658082404 -0.53204301523981856192 -0.42152983391719889283 -0.17208116085520397398 -0.3129693188820332761 -0.2720873021196237862 -0.01667541373737429361 -0.11926148538382262687 -0.70984792642756233683 -0.14885681173955189749 0.043706650887779439907 -0.21632680634967324518 -0.7428358955440631517 -0.14651053003206490621 0.032658063958843949748 -0.4476209235631968264 -1.1997175050993318379 -0.099844842790976121027
|
|
46
|
+
0.15289134612174370975 0.17050947327519902497 0.012842467203875437137 0.73250063541608856355 -0.73007944689383097447 -3.35394322988213478 1.0595687035579699486 0.23441260596227303514 -0.80556031314084952655 -0.25823624210008161439 -0.81169361329166800356 -0.24765907679853513268 0.12993737527588300473 -0.53078762320828554166 -0.42185955949433096013 -0.17186455066502145939 -0.31244942551815108045 -0.27440836130483625688 -0.015704378662937033134 -0.11831155862178781291 -0.70987744109977524154 -0.15027941880384876328 0.043834567199734678078 -0.21507244537482908542 -0.74111360320145791558 -0.15091874234766358698 0.031027844085614549041 -0.44564014099552723414 -1.1960039669783453231 -0.08821612765893990793
|
|
47
|
+
0.15421681237094456152 0.1739620716734685546 0.013078330840028675949 0.74024018941520897119 -0.73883603031705857855 -3.3468633535067051632 1.072509343584829633 0.24450111527296358727 -0.80620306757372439677 -0.25784984379675218724 -0.81247432892657756032 -0.24810599506647931789 0.13027298288727701125 -0.52947550415518851441 -0.4226825915970379155 -0.17231896514394026698 -0.31181151915420141085 -0.27625927621581641835 -0.014725651327517767439 -0.11799602751865065353 -0.71041297609999731755 -0.15168465165491426538 0.044502988190801895385 -0.21486189480468045887 -0.74035817229230538317 -0.15475532569532210458 0.030863150685586527439 -0.44589785830659978139 -1.194912990022432453 -0.080665892962881971529
|
|
48
|
+
0.15559783109233552012 0.17746482916190917112 0.013342902559397117404 0.75030958225893318314 -0.74793807085406094348 -3.3386254279375817688 1.0868043048969751041 0.25455573313081464315 -0.80696848526336206753 -0.25750688388041775845 -0.81285266631235708612 -0.24824030421887796627 0.13036555003436270384 -0.52843363099665885407 -0.42211819198543193421 -0.17244997595618521968 -0.31278730023391027038 -0.27700225223552843445 -0.013218858590087702656 -0.11721834474587143615 -0.71148542511395707066 -0.15334811290295918829 0.044599536527753717852 -0.21423213757971326654 -0.73914099207405470349 -0.15675262825556579571 0.029743487217380529253 -0.44617909585860909827 -1.1924221318696592853 -0.076927322790167312894
|
|
49
|
+
0.15706492268752927921 0.180979502277833465 0.013631740578435807762 0.75882355154163827482 -0.75547687110780492592 -3.3305197829253621045 1.0992565688016913139 0.2631981263054771758 -0.80827767802114258711 -0.25731668602491775122 -0.81328402484039785669 -0.2479124685983299381 0.1305925330514370597 -0.52707571460457602885 -0.42155263071670567854 -0.17268483414274088394 -0.31313679500368585273 -0.27744513471650411596 -0.012101407142728998548 -0.11627430468814646536 -0.7117103580589035916 -0.15490422801507761075 0.044193092081533831561 -0.21375304029705413655 -0.73713725160475851439 -0.1579095386244133703 0.027725723891735928883 -0.4466463472785530131 -1.1877230775676952401 -0.077168053082029022804
|
|
50
|
+
0.15862325476065403107 0.18445505169685727509 0.013946344087349201932 0.76416795284419125611 -0.7594582228601007845 -3.3226585750778032669 1.1087686941784025141 0.26838400411864921091 -0.80879781928054517159 -0.25754319094902411447 -0.81323403442843500422 -0.24755362960749907608 0.13080213962231693192 -0.52626335496359033517 -0.42104605238243464349 -0.17295453800606316874 -0.31347784765307273869 -0.27744034645041421028 -0.012272117572100605526 -0.11499532687225162697 -0.71043356986754480076 -0.1560444665722239832 0.042386108602924674194 -0.21324481174969095454 -0.73374032879584449862 -0.15766872916587348907 0.024039739117470971391 -0.44701740228296910074 -1.1795770022146516709 -0.079450678825579643116
|
|
51
|
+
0.16025544424945756261 0.18788856296882788799 0.014284997637242030644 0.76513033799139051894 -0.76095298429903523996 -3.3161371863517161707 1.1147265435158935087 0.271315780530496653 -0.80949212047855734209 -0.25783783995563358538 -0.81322775790719170619 -0.24737713676651656991 0.1314326148214608192 -0.52536575322572787172 -0.4216775881890994504 -0.17350474733485274359 -0.31224276887623225729 -0.27808235824877197695 -0.014301202850788861942 -0.11348395367188540694 -0.70717048990902120487 -0.15646016111233856938 0.039136988450203955003 -0.21301034879792860033 -0.72897714169747729329 -0.15638031762037937766 0.018515987728768071308 -0.44756147265650486622 -1.168233731103697437 -0.08242117449045271993
|
|
52
|
+
0.16192436274298105392 0.19133109054931943249 0.014648570182073293588 0.7667359774022233232 -0.76232359478853750634 -3.3088768413132148005 1.1209558636141419008 0.27362772437462651309 -0.80952215327881027473 -0.25834495422500958206 -0.81292644349857234864 -0.24685176618941354065 0.13203425338885158014 -0.5250566707907912134 -0.42250678939266345102 -0.17361893003471315367 -0.31058903524290754072 -0.27861550604299389899 -0.018271593449842072482 -0.1109139599113405511 -0.70138944647886469763 -0.15607141017179679277 0.034075096561794110395 -0.21215370784088574685 -0.72222843571505090932 -0.15439213408888247114 0.0096515309262834407533 -0.44719756189980552907 -1.1522425021353615016 -0.084048895434470222154
|
|
53
|
+
0.16361999812661351394 0.19475423671815342286 0.01503282048005463202 0.76699406153646654261 -0.76284695522833478876 -3.3017989319998140019 1.1258789818187020515 0.27482786540871134706 -0.80900529626392658766 -0.25904585569061583383 -0.81225452129379249744 -0.24657137647960378213 0.13279345249615598368 -0.52506616001042372144 -0.42367257224322890652 -0.17359129149344884602 -0.30857845208727402442 -0.27898624348346029445 -0.024111817757174459215 -0.10761560662854587067 -0.69324252223531546147 -0.15479441034716626135 0.027977763465668388509 -0.21108312379260277258 -0.71436590558328127987 -0.15240273411119800717 -0.0013144855682283933772 -0.44652676519473516459 -1.133685191830554384 -0.083770639093904739059
|
|
54
|
+
0.16531457077205682915 0.19815658277837452927 0.015429770218173731455 0.766833202584564666 -0.76338155375816518777 -3.2947118409442697207 1.130287616554216612 0.27571379380973526363 -0.80821633677695847719 -0.25978576739336817214 -0.81126964780215315987 -0.24653148385489043193 0.13373193137200700686 -0.52536160312923207982 -0.42525654307677585031 -0.17326220600442449049 -0.30617152761447219422 -0.27905945969104456461 -0.031394167841352786652 -0.10361856689624768246 -0.68350162524640289963 -0.15253078615961626618 0.021669424180083687176 -0.20972868195326310747 -0.70648949794792914592 -0.15079809451832693057 -0.013662627492109719399 -0.44582510204830588796 -1.1141870426320141796 -0.081597813986335573921
|
|
55
|
+
0.16698072210148445782 0.20155036569652023948 0.015832346161438661664 0.76846537517472046641 -0.76455002789968828925 -3.2867794349256116426 1.1358141802811601018 0.27678117236783611466 -0.8064771250999115404 -0.2606929046525624516 -0.80952792356860703293 -0.24661984565964864546 0.13458686510952186377 -0.52639603798369105636 -0.42660834969007627171 -0.172353743254524433 -0.3042612424024601081 -0.27865214880487892968 -0.039441753031407303376 -0.098932590824155869358 -0.67291909303554231503 -0.15005174637628115875 0.015629143936832221029 -0.20793835150973458137 -0.69929845793432066081 -0.15033765367459156481 -0.027305549964382981598 -0.44481722797797734748 -1.0944245464625785846 -0.078262396891304736313
|
|
56
|
+
0.16860753724467808512 0.20489289608223273942 0.016236749962302284706 0.76898881236523697336 -0.76580342916352028837 -3.2795813340578132689 1.1402974569578840924 0.27795588420048461531 -0.80505881726718664382 -0.26143628084409498147 -0.80754540060877078034 -0.24723111206015063734 0.13569849818102236449 -0.5273487183532364897 -0.42810636943089996898 -0.1714539643844713579 -0.30249279560021558044 -0.27773171564944904022 -0.0472794490964131911 -0.094428918553848453787 -0.66325199364163811566 -0.14710332698967432119 0.011335982113022519818 -0.20641652884149827574 -0.69462110793637910078 -0.15113774444351699144 -0.039350707107596236134 -0.44442670453943949882 -1.0782164452060063464 -0.075127861897928999158
|
|
57
|
+
0.17017336356613793624 0.2082002210302438816 0.016637251446422442885 0.77050700533748017751 -0.76768712544226846983 -3.2722657170408671057 1.1451554288960037464 0.27969683042382276206 -0.80382741443356442446 -0.26205194898177519569 -0.80537494184543723108 -0.24789709550257807424 0.13662956692082178778 -0.5285082079563065971 -0.42918169233013858666 -0.17044190027721564662 -0.30121399675322663159 -0.2763239581389141386 -0.053977374798081657892 -0.090257708978952772005 -0.6554252504229887144 -0.14413318334241068119 0.0090030333105294031021 -0.20502736761798187604 -0.6924826081189565663 -0.15311138429191234467 -0.048994825320118638723 -0.44431459570354414623 -1.0666000853478163624 -0.073664302384718632899
|
|
58
|
+
0.17166825183275841171 0.21143532851513649473 0.017034323368674133409 0.77195310212131063032 -0.76949563855563429815 -3.2653244117983595274 1.1497646641348819863 0.28152318833519901498 -0.8028537997471976162 -0.26246280623523821074 -0.80304060907181107343 -0.24879393411433192718 0.13753278110499148057 -0.52975767184059774362 -0.43014914107821861089 -0.16951230269257192007 -0.30010902632666797141 -0.27479468674746754253 -0.059406937714659865946 -0.086828824521572492423 -0.64992858838812295197 -0.14113725013814829023 0.0082834841563533823106 -0.20391272830608664357 -0.69271791174788444057 -0.15586312157947290746 -0.055141577379733637543 -0.44453440783810249659 -1.0616619042649244609 -0.074922550399578513591
|
|
59
|
+
0.17308520249232270394 0.21458141633381408453 0.01742234128982779115 0.77236085582347735468 -0.7710366757423581241 -3.2591899491522675625 1.1533809954476927917 0.28333023799301515488 -0.8021077945697081546 -0.26276853732089000548 -0.80098992851030725859 -0.24969149163437301397 0.13828603410173898047 -0.53075744725893292397 -0.43122044998069003485 -0.16886314156528531294 -0.29878733244674360314 -0.27361135305624983971 -0.063401828738493593018 -0.084400630419846675578 -0.64685574014708224766 -0.13821290454270507286 0.0088428205259510530428 -0.20325660032416770218 -0.69465836017128224089 -0.15896267059750615602 -0.056790386436415811466 -0.44515769107832220408 -1.0643696065912724436 -0.079502567547886593413
|
|
60
|
+
0.17441249215587489863 0.2176286127582918728 0.017805862785114701108 0.77255247725170572703 -0.77243623226001401072 -3.2535509931074950707 1.1566948864917152573 0.28521900816525569411 -0.80141814114500864452 -0.26303733761980002681 -0.79906790718492293202 -0.25051641962127713104 0.13879304925594024289 -0.53185717819435818221 -0.43226278091409675586 -0.16849315023946814796 -0.29721899815711727566 -0.27277014321746367864 -0.066214503542215780163 -0.082954838893049331894 -0.6455687968523818876 -0.13515205964883592049 0.0097614924983912398221 -0.20296569262693461844 -0.6972521691694291146 -0.16138414080766916303 -0.05435891031539004381 -0.44587388837639385653 -1.0739447341687922144 -0.087647030790855368076
|
|
61
|
+
0.1756429397263460368 0.22057283016003031983 0.018181133120558370941 0.77268317116331219907 -0.77395723205353794683 -3.2483073929810353242 1.1598165211741044978 0.28736034370754742762 -0.80054689759470676336 -0.26333143924216523279 -0.79750122336788009658 -0.25110514821660295803 0.13910215773862147359 -0.53287679820642641637 -0.43327390715088298645 -0.16834685128361936979 -0.29553583885816625543 -0.27250049318053365388 -0.068139096103265170412 -0.082306109293598994636 -0.64537073740406181166 -0.13227055582665131483 0.010502318870146527818 -0.20288446743541338479 -0.69975201489080884887 -0.16297304730715544974 -0.048722732109607862216 -0.44670735295359104144 -1.0886469717303610683 -0.098255518491089391397
|
|
62
|
+
0.17678054321028460749 0.22338393231126971172 0.018550894847698715107 0.77167730410406987218 -0.77487023561996037913 -3.2438074089907749098 1.1620843910754108386 0.28901405355026327237 -0.79937680243152575699 -0.2637295729203056327 -0.79623181774782991749 -0.25171742797635232591 0.13929607653224732045 -0.53377540040183724113 -0.43453497283784875416 -0.1685480312259345359 -0.29351456137551956704 -0.27281177853661209287 -0.069815620757935653584 -0.082412589781402062483 -0.64527726734679580201 -0.12948754973797821366 0.010540578963811376295 -0.20315111284614401077 -0.70153149653126301022 -0.16343621357425325291 -0.041049086230696092692 -0.44764406249506288882 -1.1058799404797847732 -0.11032043562598606301
|
|
63
|
+
0.1778244757893594763 0.22606216411389276622 0.018916848957853695662 0.77007070481092287917 -0.77569872009186313644 -3.2399245230964495157 1.1639186466408704135 0.2906257123479134008 -0.79800309753177045557 -0.26418484909838346741 -0.79532857244920140971 -0.25226607350130758611 0.13935716959956781502 -0.53449256974918379903 -0.43596129042667036702 -0.16900615607747176972 -0.29137417406065557746 -0.27344071683692383612 -0.071465813137945935485 -0.082998207578632243742 -0.64480103908637820265 -0.12692924125361701448 0.0097840643576456512442 -0.2036537203501921911 -0.70231053052847558504 -0.16300603200835389606 -0.032769831481687793084 -0.44863162561382063931 -1.1227816518699418324 -0.12212881329129393615
|
|
64
|
+
0.17877770796814362875 0.2286046640911369443 0.019279727310369004778 0.76827312347663723191 -0.77640154433637964537 -3.2364619995427785781 1.1656508908367959609 0.29207372418820198856 -0.79661923863837458271 -0.26461233801715561276 -0.79473459879371943781 -0.25276082358697560259 0.13938380192318394757 -0.53494502341815586277 -0.43742335395852099955 -0.16950592565579258864 -0.28936817603205639005 -0.27409895575295739611 -0.073212667249733187624 -0.083710685157412700885 -0.64369236016592901173 -0.12475957599229384187 0.008232112711947557962 -0.20421771179985237499 -0.7019063031736207936 -0.16211423241019951025 -0.025385722370857396329 -0.44952624219496156721 -1.1369864428850573468 -0.13183964839814432679
|
|
65
|
+
0.17964977504569268341 0.23100840011339612845 0.019640870385855799946 0.76631898727055358655 -0.77705116335101420688 -3.2334392229780837269 1.1673047544554755461 0.29347465776531861392 -0.79550117152167076906 -0.26487522329663704124 -0.79454249582147074005 -0.25317433629746916024 0.13935047136344966279 -0.53514882393406015826 -0.43900452335683970428 -0.17009612520727790397 -0.28750203116206607401 -0.27453964867062174982 -0.075118974370705526855 -0.084493602178714280471 -0.64203110056918000215 -0.12302684332824433133 0.0060391461477195679253 -0.20489034218020946154 -0.70036630448953296479 -0.16122670811002681734 -0.019535417471367545056 -0.45036613717083490149 -1.147354429153539801 -0.13883493633320806437
|
|
66
|
+
0.18045005086341853184 0.23327203971895127399 0.020000796691046297815 0.76430580739782760791 -0.77745538492481669479 -3.2308013737785934438 1.1689733323625075556 0.29465977768343659671 -0.79488534226195128873 -0.26486483588154990931 -0.79465735110258417517 -0.25361267736950715568 0.13940165757668587787 -0.53504657403765243373 -0.44070755322247162633 -0.17062587280078567176 -0.28587916604147317612 -0.2746062050157613843 -0.077219196541888995844 -0.085178406941455300783 -0.64000480514404511911 -0.12183834084208629289 0.0032396403052170085791 -0.20555364834584458067 -0.69774354629267676398 -0.16068237706972121615 -0.01568676884490920187 -0.45108013996754370289 -1.1538299201602018051 -0.14310367154924533151
|
|
67
|
+
0.18118819869079610951 0.23539471692181579421 0.02035824766407096087 0.76208705400391429929 -0.777571676661100053 -3.2286343837817699232 1.1705426682337793931 0.29566008334317112061 -0.79483105406091547618 -0.26453919957497012971 -0.79503142144167526784 -0.25412469775837182029 0.13959627284601242025 -0.53465679122369236254 -0.44263674014391057865 -0.17105987211189049857 -0.28444369286730047941 -0.27417936290720618109 -0.079565749429679019644 -0.085760873550088587147 -0.63780694372865032182 -0.12110941309102880858 -0.00010156224424160555195 -0.20619096143978388191 -0.69420908131168501676 -0.1605477309841020217 -0.013658171311189543085 -0.45173869329901533698 -1.1574174629695375138 -0.14544874029250057235
|
|
68
|
+
0.18187180144163317408 0.23738285493011743177 0.020710532517740361247 0.75986157820859734358 -0.77746491887884838778 -3.226878761945537466 1.1721031793444156577 0.29658225729926468439 -0.79514681007028609194 -0.2639720434726615661 -0.79547105630779613161 -0.25477487841384527378 0.13996444245219630265 -0.53405503872423265577 -0.44470207061728594944 -0.17132210204160475131 -0.28324076394413832958 -0.27327047635399787096 -0.082142427971845066725 -0.086219843817548436071 -0.63555594752537447611 -0.12074034670188156515 -0.0039312362824833919916 -0.20671021595632854684 -0.68998809438847819031 -0.1606749786483146758 -0.013074747176764264095 -0.45230559975912187909 -1.1594887078785625079 -0.14701899587163874683
|
|
69
|
+
0.18250601963082646595 0.23924191027989039071 0.02105497131314135878 0.75754178527265603194 -0.77716657073880002216 -3.2255714739577929784 1.1735125866245257331 0.29746706825756485948 -0.7956515712658391859 -0.26326635741093890042 -0.79587958317564755362 -0.25556396152582633308 0.1405174014022671225 -0.53331267941383020403 -0.44690702220919464871 -0.17142501312147218062 -0.28218007951092605179 -0.27195180971096960532 -0.084934607423987174002 -0.086627045501721469667 -0.63329798699385642102 -0.12056743051740077821 -0.0080289577893250339141 -0.20711144646045337447 -0.68555837745506675862 -0.16083614613449695452 -0.013260548466138449494 -0.45282545537799323565 -1.1613610880675446779 -0.14876816807764903228
|
|
70
|
+
0.18309368804282225018 0.24097997878453972231 0.021387058609133514919 0.75540865685924307726 -0.77673424865363005498 -3.224534469155400096 1.1748805674393301146 0.29831921728497740043 -0.79595277013083309825 -0.26261008006482977617 -0.79608409393142332 -0.25642828594560640454 0.14116877346750036915 -0.53258771101170276907 -0.44907728203994073946 -0.17134543177784833379 -0.2812401366438755379 -0.27037272030579917459 -0.087851661646054526877 -0.086983028112824989364 -0.63095890536009147098 -0.12044211425136396032 -0.01211691317721624514 -0.20733959955989636481 -0.68133317101946488936 -0.16082364585282668545 -0.013835798483558111802 -0.45319917644889279318 -1.1634964841846693329 -0.15112211111601747682
|
|
71
|
+
0.18363594707524152905 0.242604836736670465 0.021703599183657485555 0.75363146916653622753 -0.7762923561919905513 -3.2236697316910305489 1.1762394605622801258 0.29919216409514637345 -0.79583684675937749198 -0.26215782626209449546 -0.79604184627911278582 -0.25724011842950150752 0.14180989261946677638 -0.5319971955131213015 -0.45106296442782162215 -0.17112462139860712407 -0.28036290940121477711 -0.2688213224858307937 -0.090711166367850717962 -0.087313168961307280336 -0.62857101230156620097 -0.12026859415879494197 -0.015791962324411667334 -0.20739713453346492189 -0.67783219339288203198 -0.160577893561707985 -0.014548773371040270644 -0.45333539233691122483 -1.1656263859397602012 -0.15359365198142252429
|
|
72
|
+
0.18413257325228479799 0.24411729213572297414 0.02200200731506408991 0.75216333884189956471 -0.77594518209478202664 -3.2230052676149960611 1.1775297000259898894 0.30013637716230923136 -0.79526631055326924002 -0.26198076812880660702 -0.79573672638441439453 -0.25794669325222796541 0.14236972230474467804 -0.53160456127853494834 -0.45275429823175700195 -0.17084544703901635709 -0.27945608294807794403 -0.26752440453313802715 -0.093336127823012288163 -0.087645088792966827085 -0.6261916892795656997 -0.11994836257335951546 -0.018703640085116813446 -0.20733325352387271812 -0.67538899453876111156 -0.16012385380678331726 -0.015389382505258869527 -0.4531198922372315363 -1.166819073520625194 -0.15516175862105197059
|
|
73
|
+
0.18458331634130031862 0.24551828110096701741 0.022279977122483217433 0.75108376255877129513 -0.77566005005378324544 -3.222390171246789059 1.1787656862670636837 0.30102397423422483369 -0.79442079625231443174 -0.26206401056941247552 -0.7953051189797777365 -0.25840195215231726023 0.14276953678536066783 -0.53146464435141682614 -0.45409705302850322806 -0.17058956681312814618 -0.27840215912811094867 -0.26673695221893001239 -0.095502931955588357682 -0.087973331414227085023 -0.62397725278436533269 -0.11946429425155884185 -0.020566947590240244187 -0.20720682337928411632 -0.6741505981928767044 -0.15959776086785845695 -0.016423667966923141681 -0.45246881879009742677 -1.1660724160473605604 -0.15467002679524730069
|
|
74
|
+
0.18498622725872668204 0.24680153394511136766 0.022535756475402422827 0.75026011346911258837 -0.77559983526505660301 -3.2219428289348397421 1.1799291900119925902 0.30200452299875291118 -0.79347262877499291633 -0.26234848225039297809 -0.79478497330321407066 -0.25861564522816671285 0.14302115020260627865 -0.5316020138746447854 -0.45511654927698785844 -0.17039837759874371104 -0.27716845190193428738 -0.26658112349994811385 -0.097148289521764116805 -0.088267054001805386743 -0.62206839196401442216 -0.11885074855079152956 -0.021431620541288571441 -0.2070580770661236969 -0.67398627774823827163 -0.15909433288143476348 -0.017869643731496027972 -0.45135151668690026705 -1.1627743782491632984 -0.1513173915432438621
|
|
75
|
+
0.18534125025894590544 0.24796236578166425124 0.022764783378288237781 0.74967173628950967146 -0.77563409917697367923 -3.2215019967280511537 1.1809694889022386288 0.30288941400108299051 -0.79289224543912106835 -0.26267978497703370344 -0.79437544336756749086 -0.25857225828292829117 0.14320426594175469925 -0.53191252004136002629 -0.45584113720314872742 -0.17034019396277860769 -0.27577051190512352763 -0.26703729308672718989 -0.098168673946453358092 -0.088529690365894836424 -0.62062776276233178052 -0.11813651763095946168 -0.021320161181755864499 -0.20695671233115292553 -0.67470146665249564055 -0.15866401356296344627 -0.01956977048784618381 -0.44986174364751152499 -1.1571316951665182593 -0.14514897083570044156
|
|
76
|
+
0.18564672448302152463 0.24899206380877084155 0.022961908149904893678 0.74919149221182668175 -0.77575713675989443896 -3.2210976452862318808 1.1818166304353709961 0.30367454055588388728 -0.7928175811022748487 -0.262978035063532678 -0.79409604160538072026 -0.25834870440839785566 0.14339888028397465569 -0.53235177840344760636 -0.45632165882718217498 -0.17040161209552548427 -0.27432611163362202733 -0.26792412420296379816 -0.098628717260560563873 -0.088736512926500032972 -0.6196798955201348047 -0.11740506579684407973 -0.020495089497773850973 -0.20691025291566658706 -0.67598529166877285856 -0.15828599580050389806 -0.021379834126871069544 -0.44814638150753299817 -1.1499835310317394477 -0.1369837328786550068
|
|
77
|
+
0.18589906507242204281 0.24988492677104712225 0.023121644614025837344 0.74889474536493660928 -0.77610463750309865993 -3.220717846746817159 1.1825157472844873841 0.30449785325633443867 -0.79326062673883335208 -0.263195614781009668 -0.79394217696508573301 -0.25800647718248026496 0.14364651564972960585 -0.53289333903464064512 -0.45658594900565813157 -0.17054161452517258013 -0.27297546988548831992 -0.26900011474130591793 -0.098631440135015610582 -0.088876636699727604163 -0.61914482846854324016 -0.11673431495959869786 -0.019207674169937835607 -0.20690582575727223258 -0.67758884576122069276 -0.157907883399927923 -0.023042543754525503241 -0.44641016456063487006 -1.1425656989487749104 -0.12821332677493652019
|
|
78
|
+
0.18609583085342659703 0.25062717014237229085 0.023236983197606659451 0.74858491945891303398 -0.77629769386616809257 -3.2203077267318351851 1.1828943181909592486 0.30497059576651430746 -0.79416616549545993031 -0.26331633660322351087 -0.79388323443947539371 -0.25768687093347364403 0.14402977649558598716 -0.53343064037955267853 -0.4566704409027774747 -0.17074713791331286306 -0.27191160633215771814 -0.26996567269548049639 -0.098354593955158137186 -0.08898483136283426298 -0.61885094500699933118 -0.11619888256954641337 -0.0176427170151037295 -0.20694828351714444903 -0.67936658570931007795 -0.15751555882320819602 -0.024213377888986697961 -0.44489070950143061456 -1.1361322822127426502 -0.12027279936065717048
|
|
79
|
+
0.18623105352548324776 0.25121138269353426864 0.023304354270566384616 0.74838941249448631687 -0.7765388688543958251 -3.2199776635496037969 1.1830337976256253274 0.3053241690182951773 -0.79526772993697369962 -0.26338466267283022759 -0.79383925308568925594 -0.25740656406891665453 0.14448822228152116698 -0.53395530531046020428 -0.45650350432174163773 -0.17093141740940631657 -0.27131240383155619256 -0.27058635437572203797 -0.097894487409694266877 -0.089040054743660904113 -0.61865587278008771221 -0.11583528399387529872 -0.015949494684643978487 -0.20697671088517238802 -0.68121029087927431611 -0.15716791887757369794 -0.024887700100557422211 -0.44372334213003411518 -1.1312101491243302664 -0.11421793105497965448
|
|
80
|
+
0.18629917813759602763 0.25162350425783996943 0.02332228561582336962 0.74836253907578442757 -0.7766725141254143816 -3.2197564504777238525 1.1829985480924558594 0.3054027573423899744 -0.79619247969005824128 -0.26347758694851247663 -0.79370928617636593572 -0.25717903958498061767 0.1449518326470853602 -0.53450795768811454334 -0.4561005421267376736 -0.17100735150065288215 -0.27122666077812285224 -0.27078218195600733953 -0.097449305771915267771 -0.088990674513934900358 -0.61830943089565149062 -0.11572218236104299394 -0.014352118927195281137 -0.20690230447640789446 -0.68289015995568147499 -0.15700573191538078066 -0.025431587827035941757 -0.4428895984143838005 -1.127365071853822176 -0.11047407229803549167
|
|
81
|
+
0.18629387633575644756 0.2518513597035832996 0.023291166961149471076 0.74868291875487946729 -0.77673143122835741625 -3.2196613826649933543 1.1829425838326554921 0.30525286474828566829 -0.79685829121517637308 -0.26359079977100569048 -0.79351129165462874759 -0.25700669155722993819 0.14539061939761335762 -0.53499544439638879734 -0.45549005474688253337 -0.17093895898816394152 -0.27162241323795860426 -0.27055625955928025439 -0.097148082868068738605 -0.088797826612963814963 -0.61767045706119927395 -0.11584950887828102117 -0.013025408784765138762 -0.20667839875278712358 -0.68416439193380562678 -0.15716473037233699706 -0.02632301248327593643 -0.44231320968256526704 -1.1236231419104236728 -0.10881277930857816139
|
|
82
|
+
0.18620952667951934378 0.25187819918380643935 0.023214247358246644509 0.74913985310333708334 -0.77669431746738215594 -3.2199056365199774099 1.182764950553650829 0.30488616996680240057 -0.7970744074341433727 -0.26374806151631319251 -0.79329286082174166328 -0.2568210306534424725 0.1457000752033083546 -0.5355506422710797354 -0.454852130216045758 -0.17075346042189404328 -0.2722633118478437475 -0.27008390096016826609 -0.097144309322239996707 -0.088449643710627259829 -0.616634811930491189 -0.11620282870448317425 -0.012146433035693019603 -0.20632559260005514656 -0.68479420275475966218 -0.15775849957872770113 -0.027884548738243638416 -0.44191580528052676335 -1.1191322647088055575 -0.10864730552566233268
|
|
83
|
+
0.18604042506693332926 0.25169114314080115458 0.023092871463982572039 0.74987830397112309466 -0.77656603094187448555 -3.2204801266410907346 1.1825959088654265372 0.30433244485927407608 -0.79686335363705174117 -0.2639300345866858466 -0.79303653278721930597 -0.25667915067026197962 0.14589967356824690148 -0.53612294753147726745 -0.45427890836676815267 -0.17045518279175336795 -0.27302572278531894723 -0.2694629874113436685 -0.097549498541984067113 -0.08789569365990408667 -0.61517521570136690645 -0.11668626450629583646 -0.011894406265389694324 -0.2058354477708758401 -0.68459848207318019231 -0.15871031400897572805 -0.030222538251987021707 -0.44154092202431055592 -1.1136538366068391426 -0.10921266369942141117
|
|
84
|
+
0.18578189665484537429 0.25128343103479910958 0.022927038284357648817 0.75092042609354547889 -0.77647962526290914553 -3.2213481664276737426 1.1823736506799189527 0.30373685252883708685 -0.79649756596912757445 -0.26405339786182885353 -0.79291996866823422074 -0.2565504537765554427 0.14598636947755996851 -0.53666761400867046827 -0.45392977490492913972 -0.17018372183552527011 -0.27368850819179374456 -0.26879096791869089289 -0.098316359206209041899 -0.087209215306827778114 -0.61345131102738503781 -0.11709810814463790518 -0.012116982735829454759 -0.205343558050487901 -0.68374028986661672391 -0.15987083974025279032 -0.03260299885020086913 -0.44121363751948350362 -1.108283995732216809 -0.10989296316745200688
|
|
85
|
+
0.18542995237895831817 0.250652722574589093 0.022714858540800273584 0.75237720838595179007 -0.77652328312243024122 -3.2224222427752584608 1.1820547884145564677 0.30319209886769132867 -0.79615015643402153867 -0.26408879417102509857 -0.79298914319536095707 -0.25641718930485263295 0.14593741355327102815 -0.53717583798970314213 -0.4537938366539722157 -0.170017826396883176 -0.27421584001068793901 -0.26805138954769458515 -0.099314710237304870688 -0.086435668286117900427 -0.61165026633264485412 -0.117230037911197571 -0.012544678185677664295 -0.204933327943793403 -0.6825727463498341141 -0.16101875202408336141 -0.034072656264000300563 -0.44097976482095413431 -1.1048417297667443293 -0.11028140355105151005
|
|
86
|
+
0.18498153475211015495 0.24980303541983814308 0.022453874462905407117 0.7544149859203892472 -0.77674135617421946609 -3.2235219436850179875 1.181590319756416152 0.30271690195401296242 -0.79605574191568162501 -0.26400204653019798684 -0.79328522914265497956 -0.25625785246677085238 0.14575677492900532273 -0.53761206265327377007 -0.453750780339861437 -0.17001811263502442095 -0.2746978637381919941 -0.26718579834795830319 -0.10034440267285618664 -0.085642946940272884904 -0.60999080664604610202 -0.11692640358191022654 -0.012780732679560509804 -0.20468245980193544575 -0.68160004223176917648 -0.16193849478449401369 -0.033679606642225960733 -0.44091175117239816972 -1.105174710971061236 -0.11014784589207664289
|
|
87
|
+
0.1844341367132976417 0.24873989257405504372 0.022144073728460063333 0.75695897909523157665 -0.77719592189831987472 -3.2246439965490703017 1.1807714826145916387 0.30235873280018188414 -0.79636795729395126742 -0.26378654700405745892 -0.79382922115364951132 -0.25603967303948355072 0.14542231959347598491 -0.53790980796302911848 -0.45365588880735818744 -0.17023729599559009329 -0.27525167172845127483 -0.26610766506901839534 -0.10115258326556167412 -0.084914800852799815489 -0.60872550069665787298 -0.11595987611321735555 -0.012325000859036058451 -0.2046489086867123719 -0.68139380790181147685 -0.16255952836479956036 -0.030868614998614082867 -0.44114578507645568761 -1.1104169438819679883 -0.1093673486947348561
|
|
88
|
+
0.18378696883664180639 0.24747360386978814462 0.021787386643745451642 0.76022785722903107875 -0.77785275661648378698 -3.225659417918392613 1.1796490493115803222 0.30204062179776092201 -0.79702833429817687705 -0.26351237752573969386 -0.7945017735983639362 -0.25567097378867786883 0.14490267962214767317 -0.53804141883891642983 -0.4532231639078139751 -0.17054880115605011714 -0.27604769959667896373 -0.26484763373061664948 -0.10153924735575138583 -0.08418724637908452102 -0.60790287135247145223 -0.11442012857599183351 -0.010930840628411991541 -0.20470033101997983649 -0.68222480492955817066 -0.16281481159434615935 -0.026141698206014404859 -0.44158887930798895738 -1.1198972413164389739 -0.10786849970313809599
|
|
89
|
+
0.18303881970562402293 0.2460135231655718735 0.021393199731257604712 0.76433693832270899193 -0.77871012063108024925 -3.2264860472894891785 1.1783022274094399062 0.30171254805345726346 -0.79788678975395577186 -0.2632516082478734698 -0.79520716559329063244 -0.25513298517813393085 0.14418476439983113346 -0.53808808500341598346 -0.45229662014325427988 -0.17088098971243595448 -0.27723016374663406181 -0.26343068952977327646 -0.10143299282071042977 -0.083441800935531648675 -0.6075137950260450781 -0.1123717449659338008 -0.0085489824151946808284 -0.20475037993636904798 -0.68409483815103122595 -0.16272297783994721376 -0.02079901800785212071 -0.4421489467813223273 -1.1313398126621518891 -0.10534189437541521817
|
|
90
|
+
0.18219222871891008197 0.24435980547633873172 0.020973532901094917025 0.7687345410801246226 -0.77949474780821770281 -3.2273922175074707397 1.176455237253037911 0.30112085254302412007 -0.79874500598961450937 -0.26309079254793532598 -0.79582730636713572281 -0.25447321449153459394 0.14335820329913234739 -0.53803702757580118554 -0.45095738788275480102 -0.17115758230295927134 -0.27862996435712739096 -0.26210352435563177842 -0.10090501952806653352 -0.082643575499500715464 -0.60745077772107025638 -0.11005751244805685174 -0.0053477720697307652015 -0.20466840440213693308 -0.68681119990891814631 -0.16238068438139616201 -0.016281754933376291899 -0.4427704835494719604 -1.1420855895802095592 -0.10167500612758322009
|
|
91
|
+
0.18124902537107356881 0.2425226121521672773 0.020540460840745258103 0.77346809781275371876 -0.78029749115662072612 -3.228333418947524347 1.1742500888207918486 0.30035424465691668017 -0.79943376436829050036 -0.26303524307794784454 -0.79641107188199444789 -0.25368622749022878837 0.142391376832840727 -0.53791550568957069434 -0.4493503401466086844 -0.17136382056791996109 -0.28011234308173316165 -0.26101585687731032603 -0.10001494405131509946 -0.081792787523831178564 -0.60764806155990935821 -0.10775204356448873921 -0.0015674560258434908164 -0.20444669374520185734 -0.69008338567677030007 -0.16180217410669439637 -0.013957514211824397291 -0.44333901660655211652 -1.1494232807888637993 -0.096693213050898951799
|
|
92
|
+
0.18021131670907217237 0.2405232519216147502 0.020103673874218106615 0.77948780877053158722 -0.78134987788350784843 -3.2287760972691956773 1.1724144631195771993 0.29959995697165325845 -0.79998075390344181024 -0.26311337993525008017 -0.79698711972249469682 -0.25268744633115125531 0.14142463728223703123 -0.53763803454278125127 -0.44745233648345617006 -0.17139527102112936396 -0.28165933384350760882 -0.26015116833624024606 -0.098697317198907702496 -0.080770439964781129416 -0.60810157230495576197 -0.10570911268348924528 0.00252648415337989804 -0.20392833915361910369 -0.69355861874942004164 -0.16093224657380450493 -0.014342706043777962363 -0.44367282284557502114 -1.1519702148529040731 -0.09077208184501013577
|
|
93
|
+
0.17908417013384808625 0.2383645674036632689 0.019673196416393801816 0.78606018592186033267 -0.78261132697593172036 -3.2291083191113529871 1.1705379880055448716 0.29894937158283763079 -0.80034376297118892118 -0.26330672941955218791 -0.79763368295325398627 -0.25164529705130400661 0.14046458396171893068 -0.53724485336640748212 -0.44568659380524366931 -0.17145738276981975501 -0.28286819901979870506 -0.25955090543920228408 -0.097083653683522369571 -0.079784078350260689838 -0.60879006541436342381 -0.1040428062573513085 0.0066203726713512300525 -0.20335622838542535828 -0.69696141699545677284 -0.15957147963829412807 -0.016556736918134164899 -0.44406347500707377129 -1.1506227741900898476 -0.08509827475963577248
|
|
94
|
+
0.17787211944175154721 0.23605627861973596526 0.019253174698781655438 0.79322030192484793698 -0.78388246625679258717 -3.2291589806570173415 1.1687237754501091924 0.29825156870969643519 -0.80066430488734774418 -0.26351772590220212678 -0.79840980718928744597 -0.25065458457560613192 0.13958627677272603118 -0.536687872100340857 -0.44425369793421076725 -0.17160324723375317002 -0.28369172181322171999 -0.25924637594111255012 -0.09524600847559783201 -0.078922723350601589609 -0.60977792427567223399 -0.10293267587738139102 0.010273554131514841398 -0.20287157693450627582 -0.69997595742480556158 -0.15756072159850026404 -0.018946220123552962727 -0.44468294102167243986 -1.1480079909069229593 -0.08125191621308211487
|
|
95
|
+
0.17658120299582114043 0.23360773339564805395 0.018842397583640060205 0.80068055230223977858 -0.78506864202252113483 -3.2290940861283146113 1.1667368686588757143 0.2975194572358775269 -0.80110666213875902919 -0.26367537680428121405 -0.79937883617739080577 -0.24982609131446484318 0.13882199614593901393 -0.53590448546655466977 -0.44330575650150411127 -0.17193771625955858728 -0.2841087034185985627 -0.25891379195562808091 -0.093280828443716726217 -0.078321170932941691634 -0.61103737567781990503 -0.1023381201536751467 0.012996253349148490647 -0.20266493269507432351 -0.7020918776228621816 -0.15463684931134505374 -0.019473151851611684993 -0.44579349513616400857 -1.1475826990040691733 -0.080262337789752849493
|
|
96
|
+
0.17521342324023120307 0.23103832205736404837 0.01844056743934845144 0.8088167044745264711 -0.78624553736654123615 -3.2286880756344231713 1.164813521665664986 0.29680508297923907657 -0.80180682059560748343 -0.26370756280681051376 -0.80060812721872476327 -0.24899538303349391666 0.13808674022193545561 -0.53496166288983604264 -0.44286050807949567387 -0.17239586914587937128 -0.28408092624399911008 -0.25855447296183281525 -0.091259535869181701573 -0.077971479523334122352 -0.61238760922868318293 -0.10233785581422856492 0.014257553873404585701 -0.20274970912821699276 -0.7026012385206514832 -0.150730397302593494 -0.016549149479744038743 -0.44733888492633583356 -1.1521473781438500428 -0.083258709708941766592
|
|
97
|
+
0.17377134451857179087 0.22836059469393596433 0.01804717437173363262 0.8176030213612118791 -0.78740799433012520492 -3.2280928450680259623 1.1629795508319844544 0.29611288807962166114 -0.80298886072427300142 -0.26349174839821698502 -0.80201398471334861551 -0.24824265603590678353 0.13745865616894389905 -0.53377783274204848585 -0.44282535235069325763 -0.17283032521013910743 -0.2838868324838157986 -0.25796820375208878717 -0.089406129715544846448 -0.077748542954030816499 -0.61363060422949922135 -0.10286470353989313198 0.013500603856451773993 -0.20297068089298686555 -0.70090451562358191406 -0.1459652839366281929 -0.0097917127176780881237 -0.44917205846285884752 -1.1623808647829461105 -0.090075519102507231595
|
|
98
|
+
0.17226047347085643446 0.22556826543221875081 0.01766657302316929426 0.8258992313693307441 -0.78823419438072184207 -3.228082988152183308 1.1606281850623021423 0.29519736706375315771 -0.80413716408820756776 -0.26319297451448531167 -0.80321024457903023031 -0.24779265467984243343 0.13686105442974130786 -0.53256578481603478181 -0.44337371002781383877 -0.17305648051285810185 -0.28332693275861081661 -0.25722057553448868239 -0.088249802471627711298 -0.07764502512597565298 -0.61418013105741242619 -0.10384399431043095374 0.010220597227079606523 -0.20334498088562311113 -0.69662371043427817607 -0.14001493194721628677 -0.00026626435812517057489 -0.45086557278970601503 -1.17694595837274818 -0.09969082324261682726
|
|
99
|
+
0.17067225525292412103 0.22268209065195124219 0.017297321582585588329 0.83404930231486429371 -0.78894490958279495096 -3.2284834242262299142 1.1581109077528983775 0.29410781930040197363 -0.80544203009313763975 -0.26262615355720864141 -0.8042155932544581276 -0.24762234417163062061 0.13650361186421636206 -0.53128706972771555517 -0.44451968063541491549 -0.17297502906544501289 -0.28256907261861741176 -0.25629097938042250115 -0.088014620006143823305 -0.077456111737566571418 -0.61392320793213417396 -0.10510672654576087848 0.0049355281873728210421 -0.20369656118649084875 -0.6903533326635482581 -0.13386612608458228757 0.010238818370885197778 -0.45209112496712378082 -1.1926390277110860971 -0.11023676487348604836
|
|
100
|
+
0.16901267115697302112 0.21972064417060988006 0.016938909371448342828 0.84223650284134587984 -0.78975468296512696398 -3.2293514306883781551 1.1555771249570647718 0.29302333470933522586 -0.80652321672409443831 -0.26198980907741109547 -0.80483487994920033248 -0.247735224168819268 0.13620587461192418255 -0.53027510204512862124 -0.44605526352783897437 -0.17254069936876659241 -0.28174441279830719775 -0.25499600365826424753 -0.088620121962391620873 -0.07709160073129951718 -0.61296503298597360132 -0.10626061768884866032 -0.00098849577515231780954 -0.20378451703673422513 -0.68393684182488201362 -0.12772750023230874938 0.019837842549648789653 -0.45234419478097065426 -1.2060471580468530295 -0.11947923824759054678
|
|
101
|
+
0.16728079486203020765 0.21671232035477802635 0.016585792594667858602 0.85115758495013238427 -0.79103113824883997118 -3.2302544445416874197 1.1535338225860127803 0.29219033351921763764 -0.80737445909890825924 -0.26128732269076493377 -0.80511612485209438361 -0.24814537748351828128 0.13604471816359728353 -0.52940232710197987487 -0.44782082162465891573 -0.17176143348880229533 -0.28101117198977876299 -0.25316838488751314262 -0.089840966252091258859 -0.076524881818354317797 -0.61162010652559828383 -0.10687862302678202697 -0.0054130857037707922827 -0.20363810215434191564 -0.67989478793341295848 -0.12255179545385214146 0.027070512312664551935 -0.45144734670619235395 -1.2141627837918049782 -0.12537216014024857302
|
|
102
|
+
0.16548043302038259461 0.21366726865812657454 0.016231400521342611437 0.86024399212725488617 -0.79310175855996434269 -3.2315426120186034886 1.1517271087521909756 0.29196924684047415033 -0.80760716771419727156 -0.26056159925974836655 -0.80526227421879958968 -0.24865378641278193528 0.1356784752954303952 -0.52869104717020909412 -0.44975548445159180266 -0.17082302158220830091 -0.2808200110262465965 -0.25025022534853380574 -0.091263482587840644156 -0.075868012311093219191 -0.6108814033104204011 -0.10623876413021125786 -0.0060452445982126026824 -0.20339536911364128335 -0.68155196447098209678 -0.1185133776546492268 0.031363159222188366493 -0.44974449022135748466 -1.2161623430644004085 -0.12658711680475290273
|
|
103
|
+
0.16363305635849764719 0.21060778795011611542 0.015872309589698280902 0.86927836607190889229 -0.79551947349654272834 -3.2332312943585059806 1.149939633068838285 0.29208269876141601529 -0.80726567415643613046 -0.26003827050674910293 -0.80497562734131189455 -0.24954371181229692556 0.13539307151356885783 -0.52850457776685999534 -0.45157516404917052988 -0.17004213900299194884 -0.28092389099933406937 -0.24692576973043536825 -0.092517300350259318309 -0.075383395003537273515 -0.61087541842182668805 -0.10445202599088022899 -0.0015182516028360818101 -0.20324093374714244375 -0.69031092394126503109 -0.11666859420392530766 0.033121039826299603082 -0.44773732679430655601 -1.2128810861710910274 -0.12376208029210752914
|
|
104
|
+
0.16175218848531233706 0.20754355984245595468 0.015504240757006047119 0.87777166354945967974 -0.79816308525585233369 -3.2356257166545954185 1.1480218649697888633 0.2924755672274871876 -0.80602598184188056774 -0.25975943413856072972 -0.80430698498057062729 -0.2504789852831331709 0.13498596864692888331 -0.5286215542112625565 -0.45303846988345841673 -0.16927852846974647538 -0.28188545190855107681 -0.24264123457563574471 -0.093366175248306954026 -0.07493854240134982525 -0.6121226698990442916 -0.10115807908194335285 0.0079913644281374551087 -0.20312707631767634719 -0.70573118455224059797 -0.1172729183360515931 0.032987631324322259918 -0.44589874093856890491 -1.2065849741548293483 -0.11860237573428634994
|
|
105
|
+
0.15984865910742551698 0.20451521809958889131 0.015130806406429570671 0.88775406327248318483 -0.8019616417983147505 -3.2379685167109584221 1.1474675730590730982 0.29418038759587800124 -0.80373205807573777637 -0.25983978750465208662 -0.80307620779373001252 -0.25116492653060812357 0.13423618322249605828 -0.52949594884964790165 -0.45346475646530393089 -0.16850163380620719611 -0.28406269523743749028 -0.23763892630394675698 -0.093518449651301960301 -0.074496298668245100605 -0.61446957335622165441 -0.096745214097164577982 0.020727073243855136109 -0.20290193134704281874 -0.72504891691776052198 -0.12015826752994174242 0.031975440304064850494 -0.44452331556587848516 -1.2005507002723103671 -0.1129690078398672276
|
|
106
|
+
0.15795900962585379679 0.2015108156521823457 0.014750796083833421155 0.89709374802861363563 -0.80533339099352363455 -3.2408155266171174702 1.1468022109519417917 0.29569649964722827251 -0.80032894972569634806 -0.26042001731588926283 -0.80129130979466167695 -0.25160048628984776897 0.13337578353703202771 -0.53095973385590455873 -0.45319605981593813482 -0.16771493652992924828 -0.28685864731236704328 -0.23274957944083515815 -0.093351542532061571045 -0.074062011833263344251 -0.6172059507583410598 -0.091852226903912162492 0.034248544967971805697 -0.20262885502959648854 -0.7449037528178285017 -0.12451049939769338881 0.031572255095754647725 -0.44407029151241983467 -1.1985687365675221638 -0.10889898617741108899
|
|
107
|
+
0.15610482087124186168 0.1985339558462121401 0.014371182655684218432 0.90527914910274942528 -0.8080419910878856582 -3.2442074117472965433 1.1458468596812632079 0.29689693305992226335 -0.79606384124547902026 -0.26144058571119238588 -0.79894448089891356712 -0.25195232656137683813 0.13248230736457244916 -0.53315268332133558538 -0.45252883175557079287 -0.1670935102196463018 -0.28979415993388729644 -0.22859374683987518373 -0.093311494807873762714 -0.073827964934484499593 -0.6195645983542797941 -0.087091355138875489739 0.045816570826084729307 -0.20251651167106721196 -0.76189789269017527129 -0.12865211167944640147 0.032833906490963842006 -0.4449669210473891634 -1.2033474041150100664 -0.107510591727903837
|
|
108
|
+
0.15429095921522503754 0.19563197262048803715 0.013997900811673871097 0.91436584946981180888 -0.8115901389468161975 -3.2472263491159671922 1.1458144774379481756 0.29907615924662278584 -0.79106734488867136434 -0.26290388112466422932 -0.79642713158509992333 -0.25154789058281495917 0.13117436568480700387 -0.53596419938086237167 -0.45092429949658913158 -0.16641869172025056112 -0.29333034858259593447 -0.2245160069989768914 -0.093004953057455902465 -0.073472221166280896054 -0.62154736088439033193 -0.08234021584992869125 0.054017255744265378625 -0.20221803825049203263 -0.77403476227784573371 -0.13072418925179454807 0.036156052280735991034 -0.44644819113245959308 -1.2148483916140093708 -0.10916552289469538817
|
|
109
|
+
0.15254421094122869174 0.1927819558530301236 0.013633704684147648217 0.92194972829705057471 -0.81399014851042639229 -3.2502617637663204775 1.1450346448308184044 0.30019130314739389531 -0.78586879731257930359 -0.26470984576826617207 -0.79383365374625736166 -0.25101690942139104346 0.13014488457675818522 -0.5391158759660444888 -0.4496490945467900846 -0.16592366219149970452 -0.29568683538607049011 -0.2221054241982246269 -0.093420314581547037047 -0.073242946892921295676 -0.62184383988056923798 -0.078645229097225224923 0.057499341774968015795 -0.20185711031609029908 -0.77996752120538359598 -0.13000370494739299509 0.040951653871462920242 -0.44867988746499398722 -1.2311662783380883379 -0.11340325746756685366
|
|
110
|
+
0.15085840574180953144 0.19001244761116847792 0.013285266641424008094 0.9286534406656082874 -0.81621346675897643586 -3.2530999695880895572 1.1438681974387074902 0.30105419428259316827 -0.78085378783202419317 -0.26667181120401517447 -0.79154163237647012785 -0.25027803761831141083 0.12921270615618499211 -0.54230436549084104492 -0.44883581215590168112 -0.16563043212053379927 -0.29696392129082421762 -0.22062714665771121503 -0.094372208038001448305 -0.073106733687714767211 -0.62081551319863093052 -0.075561759000692063637 0.056602121236240601765 -0.2016234115863436982 -0.78010024845176761943 -0.12609537949531110512 0.046367026115255227658 -0.45102696254934865339 -1.2489855778782301687 -0.11867663473773566729
|
|
111
|
+
0.14923022481067110823 0.18733830581208277266 0.012954523051039289888 0.93468954609455956462 -0.81827525880922291623 -3.2556524232998733659 1.1423830792081492991 0.30149614304553074007 -0.77636531237042016862 -0.2685745389864303001 -0.78970458410880262079 -0.24944850630410181358 0.12855520728040314982 -0.54526603507160209539 -0.44877081118073114396 -0.16535168429634145015 -0.29691972854975301477 -0.22010958177307665684 -0.095877411442363280614 -0.07287497238927982679 -0.61867457892345334436 -0.073175083418832609361 0.052267322691320242112 -0.20124288288982872253 -0.77571698305290426312 -0.11989974689662771801 0.051195877107216687663 -0.45279968782010854289 -1.2649656799590256462 -0.12416424055281725936
|
|
112
|
+
0.14765419941805460469 0.18477170542197929315 0.012635211757788835513 0.94051794984769421237 -0.82013845405826679702 -3.2576315268729221231 1.1407559714688852992 0.30138778696888912645 -0.77289330362469588209 -0.27023490466886096462 -0.78851656701015682138 -0.24860588900648730726 0.12826585634207698927 -0.54749410089208083718 -0.44944636467173004757 -0.16516044580555344634 -0.29572727608379062447 -0.22017324063270871104 -0.097624428056006767873 -0.072615899167867897779 -0.61601213458859316319 -0.071224475619578869745 0.046314551442356688415 -0.20076737832200330924 -0.76892313818892987776 -0.11289983762109047361 0.05512131774767348863 -0.45382002901299495212 -1.2770219424308204559 -0.12870086789851511999
|
|
113
|
+
0.14612189222559715529 0.18230747548227149712 0.012325563042892458132 0.94574450882688188003 -0.8219370439252701166 -3.2595581710196506187 1.1387391656497141135 0.30095330669693282077 -0.77078477461467909126 -0.27145866362075510292 -0.78808429679460056949 -0.2479141845417909551 0.12838638449252237628 -0.54891009223967968111 -0.45093178654941162842 -0.16508912680780024607 -0.29342984504844471516 -0.22066227827975617992 -0.099305437047896349956 -0.072406207075326009526 -0.61358259124351144376 -0.069375745251046477824 0.040621040713101255748 -0.20036901681704688549 -0.76215098076636655922 -0.10640417683281266914 0.058142026573411643986 -0.45421811694334879306 -1.2849588358608048377 -0.13175246401953830122
|
|
114
|
+
0.14462558637493569402 0.17994501415759289742 0.01201937212295423052 0.9510354894312718077 -0.82386100135048156989 -3.2612994792100700181 1.1368003852661783259 0.30046327162178781967 -0.77006689031889463681 -0.2721887413001461975 -0.78832253962145226733 -0.24738556830168154099 0.12880925475666479829 -0.54943955277521594471 -0.45285016131549604701 -0.1651213778787163633 -0.29067352351381803288 -0.22110509666721422928 -0.1006761311630150757 -0.072259990522367936738 -0.61181173926733600776 -0.067353301192416434318 0.036466049509543629892 -0.20008774066892198729 -0.75710799955728513844 -0.10116293644680880714 0.060338371910750185356 -0.45411623090784547507 -1.289013594697952847 -0.13369725682725780436
|
|
115
|
+
0.14316158156650779509 0.17767047065610558354 0.011711897152233472982 0.95634071299352085838 -0.82598568475231703978 -3.2630370159526238538 1.134976481567908424 0.30012262802554606766 -0.7705532266671777375 -0.27243005874654580012 -0.78916632177101597723 -0.2469230114361402606 0.12945564742610188302 -0.54919072958050074718 -0.45519521140040691831 -0.16524605583915991103 -0.28745137956957245162 -0.22163375848715557992 -0.10178527136243137319 -0.072201242472141033413 -0.61070299302492891957 -0.065254734709791428759 0.03427859851285069287 -0.20001048619046482568 -0.75448973203869806881 -0.097605268121276844706 0.061961555318635702649 -0.45385137301594946635 -1.2901202238033291358 -0.13548949028644660664
|
|
116
|
+
0.14173085266082613431 0.175485374840973124 0.011400322746481330802 0.9627044532913683339 -0.82861566504595318694 -3.2643404939263294118 1.1339995668647666616 0.30026718006906616409 -0.77190551235039961409 -0.27226828099388167281 -0.79038902901913532517 -0.24631556701336956849 0.13017023559129853316 -0.54855071840292080054 -0.45750335208705561474 -0.16530758608467022164 -0.28426345790906121236 -0.22220274601656481162 -0.10263421128515888558 -0.07206552835363701226 -0.60999503744493221991 -0.063387599949640771602 0.03366768791512882858 -0.19988102559843226591 -0.75379635103023900911 -0.095638527936796502438 0.06291982152498276637 -0.45325227766246389827 -1.28922978794791665 -0.13779900109901646599
|
|
117
|
+
0.1403423648034709259 0.17337062771782607573 0.011084530581472726296 0.9692056653613342343 -0.83116268781362578899 -3.2655799340749291915 1.1332085080710261327 0.30042449620886191308 -0.77367055183203237156 -0.27187200309254699881 -0.79182442389956109174 -0.24545830782061608955 0.13076812009397434378 -0.54777173096997644475 -0.45984293761760558494 -0.1653395240369181507 -0.2808484506087625121 -0.22292046153696512545 -0.10357587018040836924 -0.071867575131569036428 -0.60900820975581326788 -0.061915952248864369878 0.033777644341098617131 -0.19978737858646716807 -0.75397995884585944371 -0.094632516524256041213 0.063328066452828402078 -0.45258085393191166412 -1.2872253311103951656 -0.1406694753568867029
|
|
118
|
+
0.13900645870056588249 0.1713205346806302154 0.010765450064313749831 0.97521160399586914735 -0.83327927585657157739 -3.2670194648894206324 1.1321224365154858305 0.30026755436318941506 -0.77535933176674398659 -0.27139246450871640226 -0.79324638755570375803 -0.24429698855952750036 0.13123117722309193822 -0.54706823485826239217 -0.46200826545593148831 -0.1651834886095507049 -0.27748249296955379561 -0.22389593800314117056 -0.10476449989609280811 -0.071458187765452652052 -0.60737815486116419894 -0.06118191619804676934 0.033790184605610174007 -0.19954525707654743871 -0.75404560400857434388 -0.094060392045735366495 0.063118952211374382277 -0.45173007195708686501 -1.2846157742731845186 -0.14417111832177412212
|
|
119
|
+
0.13773121256331383178 0.16933885932607106728 0.010447342785650777161 0.9804033510411290786 -0.83456677023769565427 -3.2686875288145773588 1.1303760155522017961 0.29935401609302320081 -0.77679763450892458376 -0.27092962208174858896 -0.7945762728166517741 -0.24272583739792907842 0.13142474746427218468 -0.54672366880387646138 -0.46379335402290106094 -0.16480243278224457337 -0.27428853477225850765 -0.22490088212526024303 -0.10614270955070773117 -0.070803570226149997735 -0.60490198116298510289 -0.061268281425840391552 0.033357795105062461316 -0.1989860884385421802 -0.75343357629787788277 -0.093495203369958257422 0.062292281908907932986 -0.45057259804088273247 -1.2815563053123546489 -0.14761591078472263705
|
|
120
|
+
0.13652194455256061456 0.16743170794786313427 0.010131463243952979619 0.98438181623561182843 -0.83485475929357555458 -3.2707374468556080771 1.1275393575523779965 0.29747782597306438035 -0.77793670695915229096 -0.27053688067499132019 -0.7958431045612225363 -0.24067023395730255397 0.13131492948411141453 -0.54661029285185247506 -0.46491577176638482216 -0.16420180229131159377 -0.27159469836542243781 -0.22568156339695524815 -0.10738550726468101826 -0.069816214408814053494 -0.60187630569470740305 -0.062048157385122898466 0.032733507218347480949 -0.19813647120251848266 -0.75228240631530896021 -0.092734946159850950576 0.061131389236020884648 -0.44911153445172513621 -1.2781730543828275781 -0.15051521813522339421
|
|
121
|
+
0.13538365386277784186 0.1655929001059895378 0.0098214009867349065519 0.98702670121446478557 -0.83358810564677077171 -3.2731245904245365175 1.123543892885417339 0.29408081087619475369 -0.778803633146164076 -0.27025796784195066369 -0.79683605609628238575 -0.23837964146456183667 0.13104660483989313824 -0.54659815092103902767 -0.4652420138237736702 -0.16326256229028035527 -0.26957974797913858422 -0.22606970442518298237 -0.1083413181514736312 -0.068509841888932873633 -0.59858142578271156253 -0.063358752895349215728 0.032076854512359524729 -0.19689854001727302713 -0.7509228269219383467 -0.091739445603734107171 0.059502169159683405975 -0.44730449638233349408 -1.2745821024962973311 -0.15206098215495575388
|
|
122
|
+
0.13431238126338618244 0.16381955143205456649 0.0095202945967229422181 0.98809101283439071395 -0.83160019611153368491 -3.27619643825442175 1.1183005250531075081 0.29010867101553350356 -0.77983102706092644052 -0.26997333739334850033 -0.79786269722114266933 -0.23601201089578840997 0.13061793476953142967 -0.54660438800174726559 -0.46488746512410827894 -0.16235901432522079069 -0.26823437839524033599 -0.22604869305996869167 -0.10856961181032499797 -0.067230737571089091431 -0.59585933058570861309 -0.064574221377962703894 0.032217764992133204882 -0.19569160860899553755 -0.75024884684332204809 -0.090600375259468082789 0.05831651925684724902 -0.44565022575429025231 -1.2714497269104403365 -0.15243883898577856306
|
|
123
|
+
0.13331483482058939516 0.16207952098842631772 0.009229512881514967404 0.98680936596082446943 -0.82852261529982240695 -3.2802185187260719523 1.1116183736180502706 0.28537220493443815617 -0.78110604772260483486 -0.26968566190431658702 -0.79880209468503804437 -0.23414826734227314753 0.13036850307600864052 -0.54634292309886112182 -0.46442320579238061118 -0.16169404282945332163 -0.26717111233710044704 -0.22601535282900811485 -0.10833075402700462209 -0.066225128956248741074 -0.59400195428833035827 -0.065545565599325048001 0.033131924733036485775 -0.19477772055344613755 -0.75061838212111797741 -0.089620169668012103492 0.057835057320136683268 -0.44446100307233471494 -1.26954098955779493 -0.1517544071159033503
|
|
124
|
+
0.13238170924350511903 0.16035610393695828857 0.0089485340277173034546 0.98399572973357807282 -0.82530872043410552497 -3.284792839870292358 1.1043530077193481898 0.28090763850645833477 -0.78272195305760949857 -0.26929140991815597728 -0.79980379151127634074 -0.2330356004280863258 0.13041822859786414424 -0.54588154753873385783 -0.46430641123921434499 -0.16156158063976194805 -0.26598293098844000282 -0.22623400047411973413 -0.10777619283994048505 -0.065816819542134558096 -0.59317928384850671097 -0.065815984985399034191 0.034754969312501549084 -0.19454168312441383337 -0.75196987103287171728 -0.088940634120748526814 0.058456222118626000039 -0.44426167366488134025 -1.2693026663780808683 -0.15050306661533038866
|
|
125
|
+
0.13149832039703437947 0.15865273316754577304 0.0086767686765006016986 0.98194092566480806195 -0.82321805900116107324 -3.2888888841407744046 1.0983636741904236889 0.27793312926592722567 -0.78464805453378227984 -0.26883602282148344464 -0.80065005651977372292 -0.23275551741105632297 0.1307528745358023381 -0.5453431168756560643 -0.46458896017031303671 -0.1618747574790924959 -0.26456020421071574367 -0.22693494320669541087 -0.10709241265913960195 -0.065888680175323524613 -0.59328301995350340992 -0.065487853885039692958 0.036625510271672795382 -0.19483052607203932283 -0.75370665185936225328 -0.088904076868480813589 0.059880482597996199934 -0.44470285129367109755 -1.2705409970297865119 -0.14900403663400660359
|
|
126
|
+
0.13066447690777194257 0.15694479759428583976 0.0084146145268492473362 0.98018410058161165033 -0.8223098117152017883 -3.2925197966523933601 1.0935480119613043559 0.27654955940474307274 -0.78664652102108612031 -0.26831688304756717844 -0.80150689961748211587 -0.23344914995572699223 0.13146071582785481824 -0.54467614768752425913 -0.46610054419239344004 -0.16286435108113114789 -0.26215415253967505604 -0.22848240436038880219 -0.10694474416694749186 -0.066662430662308314044 -0.59387754430607897493 -0.064389692331673159531 0.038184774099217035082 -0.19592034466102400958 -0.75524904513471058376 -0.08968266315854742099 0.062270265564394723656 -0.44615055859595531551 -1.2733290921237145898 -0.14770579805006853191
|
|
127
|
+
0.12986182479459620898 0.15527236543710468131 0.0081571893662234495892 0.98181492427815730828 -0.82369349671289726622 -3.294128901157872491 1.091910594437617954 0.27751465104209555035 -0.78857257167972083511 -0.26776960554687145866 -0.80219771734009359676 -0.2347042249508257683 0.1323975186591163089 -0.54437041090268123433 -0.46824634864342867813 -0.16413204214375132217 -0.25919551716896188642 -0.23061304884554217898 -0.10724792791889412036 -0.067679002209903249554 -0.59455220029917532631 -0.06294907615369288445 0.039132212257051934845 -0.19727444624999926348 -0.75581933881064433667 -0.091700203247466430256 0.064740708595344406695 -0.44777971763446827724 -1.27633342018816065 -0.14677914830994215345
|
|
128
|
+
0.12909267016270761785 0.15363184730039405879 0.0079096083138651979844 0.98520541576667230999 -0.8267761748255710863 -3.2945968491852508642 1.0921847724323892059 0.28028815969027037758 -0.79022520317372924037 -0.26725600846195751714 -0.8027331666965163981 -0.23649636364861420512 0.13355996609913842188 -0.54420722988283409816 -0.47112984995515710951 -0.16564716409629118288 -0.25564564893048163929 -0.23318986381156700527 -0.10820810152576917917 -0.068920129989108167012 -0.59503997113852769019 -0.061196630865650962494 0.039363953476666817266 -0.198908030135631686 -0.75535961249304306442 -0.094774124505226098325 0.067189578147164030764 -0.44967304722565576425 -1.2793063416099799134 -0.1462443347820450712
|
|
129
|
+
0.12833899112798669018 0.1520821411838848003 0.0076677986038386275122 0.99338472255853760284 -0.83243539872161120829 -3.2926971695376194837 1.0960932888391687889 0.28539632765988964813 -0.79156842935307336617 -0.26684164971096407948 -0.80292645746125779205 -0.23811646789600293683 0.13473480016337455178 -0.54411765084855334695 -0.47352086725540171175 -0.16666348806932232418 -0.25250900503737838676 -0.23542856334284700814 -0.109236941295315651 -0.069616031935426134214 -0.5952720581561931068 -0.059599657405165970547 0.038944837184771222138 -0.19991315360999434292 -0.75365376674562634118 -0.098998974948331486257 0.068430081126973837935 -0.4506105970174359987 -1.2807251596578865804 -0.14613038906365560798
|
|
130
|
+
0.12761214388137859244 0.1506206283611579988 0.0074411032047201333336 1.0034593889069911565 -0.83834243140404773875 -3.2893579103612853309 1.1011593014954190739 0.29047246689505529238 -0.79261165490297691427 -0.26651850565061052656 -0.80267490144068120994 -0.23982018802620921893 0.13615098865124819483 -0.54481115421197323645 -0.47534086537150349594 -0.16740409390310620474 -0.24986495431699337622 -0.23784800570624101135 -0.11025568600751468884 -0.070028383867281496222 -0.59509571496757374121 -0.058586320123948591732 0.038213336051110699532 -0.20062031613746886261 -0.75108527187599094521 -0.10422663477852518732 0.068710573935589852601 -0.4510624912398153441 -1.2804729338047651233 -0.1460667450979467874
|
|
131
|
+
0.12692745060273777358 0.14923828013189099906 0.0072148180922736752582 1.0142780966415854138 -0.84398766732362917597 -3.2854885134298417171 1.1065728260787484061 0.29523521256683277203 -0.79371366093362671901 -0.2663220187827806118 -0.80246311441532969244 -0.24065918185864737522 0.13729359729608595075 -0.54491219506462562627 -0.47682788327583341959 -0.16748976409062138471 -0.24714078797617636263 -0.23931520904744449374 -0.11133157008696044354 -0.069779167713104883752 -0.59458738543217992678 -0.057173671799362772716 0.037191935279377690005 -0.20056956561852995469 -0.74839743552147486305 -0.10822581256238045233 0.067937675603184463635 -0.4506887322823925901 -1.2789272027377069918 -0.14716367069688449098
|
|
132
|
+
0.12624548408616517725 0.14800375073308266738 0.0070071909335586730211 1.0294868124469027659 -0.85052382620769073629 -3.279436033875279044 1.1144247840608452194 0.30035552868337372923 -0.7948345928151032691 -0.26618442826547178415 -0.80190485271670719492 -0.2404996964928149128 0.13823864281590975134 -0.54567329371203754373 -0.47615546972804201342 -0.16666096817606620983 -0.2462352606224641749 -0.24003416399445451357 -0.11117564492595095882 -0.068669826345398421452 -0.59423355721179305089 -0.056339635307004302944 0.036431155961056164994 -0.19936687001537475861 -0.74543945402503586362 -0.11208013082316181652 0.065415673642393840082 -0.44860906664189942328 -1.2751485182539865626 -0.14799463482725280783
|
|
133
|
+
0.12562934122297444994 0.14680855504352532948 0.0068131458366491341391 1.0399762896308515359 -0.85467471014046791922 -3.2758378698252479388 1.1191229910465321229 0.30342545550266392107 -0.79604283559677246895 -0.26607546360281159048 -0.80121262023419692611 -0.24070306955875483967 0.13959617350482936282 -0.54612311683486591818 -0.47574270600504459106 -0.16580101207004477315 -0.24510815706034250194 -0.24136270143444277236 -0.11118994288214070765 -0.067539189241299230071 -0.59395020289274269576 -0.05594287309907352429 0.03571090864530900022 -0.19826130007022010893 -0.74342826092618241596 -0.11500360171104860585 0.063139860464463334888 -0.44719215811615126155 -1.2713416910826997874 -0.14915979178968052921
|
|
134
|
+
0.12504268472284613134 0.14571072130383841414 0.0066278203382189003479 1.0507964373552634019 -0.85862646404715048387 -3.2719063458036150571 1.1237392272622064304 0.30618965197114056398 -0.79744542151310893185 -0.26604199551640100863 -0.80088070793792998092 -0.24011861334587125683 0.1405419345141555032 -0.54665600445835527132 -0.47451090939899759347 -0.16492608842092654209 -0.24440778669704246728 -0.24261247825475665274 -0.11051483856258716154 -0.066510446399737077616 -0.59363837016727538654 -0.055836530224241301412 0.035704785184480863913 -0.19715883476782627981 -0.7418679488849249104 -0.11728580811915766124 0.061021485436448738571 -0.44544798300788834844 -1.2674753841398918031 -0.15003161459797267896
|
|
135
|
+
0.12450720912475468638 0.14465638955760209972 0.0064507328042366215634 1.0590281427785883661 -0.86128459471158735905 -3.2696192432919799487 1.1269461042137409734 0.30797063592714024605 -0.79882204465302986129 -0.26592274280996447411 -0.80028425558283755592 -0.23952304777399541225 0.14146251781508567547 -0.54701912915048001018 -0.47320205936219600362 -0.16388371244834856744 -0.24369070309365098437 -0.24434057590445992791 -0.10974646874965920951 -0.065435636336007380054 -0.59368680146818741949 -0.055683723261118291126 0.035503425174125184671 -0.19594153098725139439 -0.74110090082827650981 -0.11795050861379741125 0.058959055951266957363 -0.44382918049206354638 -1.2648109929690005693 -0.15069473395142021777
|
|
136
|
+
0.12401769451717863102 0.14365060453398245666 0.0062766089121405552881 1.0659218025797281282 -0.86363624831405783056 -3.2675264966041157599 1.1294704323679649605 0.3094437773823417448 -0.79985007511503114497 -0.26584646667818251364 -0.80020816675453432243 -0.23876198704248466353 0.14198664098471808215 -0.54730781752826884734 -0.47236150639659219008 -0.1632612968112532037 -0.24295497158340556565 -0.24598368550307070368 -0.10930042957228428002 -0.064823402270675969938 -0.59344454391364942492 -0.055471475480481952092 0.035621407987908242088 -0.19523752300596111664 -0.74071703549884138074 -0.11842594880868388685 0.058073563945601300307 -0.44298858439363963946 -1.2634405987075603139 -0.15055046836017901835
|
|
137
|
+
0.12357313544265086103 0.14270846496435415918 0.006105355852516657772 1.0723406524863281497 -0.86578535511469767449 -3.2655236021099125487 1.131721478576779738 0.3107790566021444989 -0.8006314816266586476 -0.26580383751893954525 -0.8002716834961992598 -0.23784830824943201111 0.14204688978170926239 -0.54744971728299873792 -0.47149722394815224424 -0.16282993674880716362 -0.24213379512480440181 -0.24761378888894983175 -0.10880712159424378582 -0.064433596022962003058 -0.59292263321288396494 -0.055368913628845724262 0.036078727695728111946 -0.19470074264209408232 -0.74065799306393131918 -0.11865272059328639542 0.058019670061119431315 -0.44253066507500260496 -1.2633795252591568659 -0.14954758334870604797
|
|
138
|
+
0.1231863237868349864 0.14180664344907215058 0.0059361268594265506615 1.0764282790556816138 -0.86715204872568607541 -3.26446070557514334 1.1326101906913113027 0.31150290741384228932 -0.8010175724620067772 -0.26580849304578091363 -0.80045040984979032306 -0.23726381549913805324 0.14193001357457180056 -0.54735430700500020684 -0.4711562195427672628 -0.16278436282247388256 -0.24107518007501152479 -0.24923348356537591841 -0.10870861619014587918 -0.064494321127863171728 -0.59199597043121066076 -0.055310096483458186245 0.036756072891698882144 -0.19465000177042973695 -0.74100739365592638297 -0.11882301997102091839 0.058978517859667796419 -0.44286649706424252582 -1.264991571968097972 -0.14789091322020234132
|
|
139
|
+
0.12284143345539177972 0.14097099481803815335 0.005769602597011503145 1.0807317542725598525 -0.86866881687586805505 -3.2630844659692459508 1.1336904613343543602 0.31230591651345102067 -0.80113141106049945428 -0.26582437572418238236 -0.80073217890837922184 -0.2366737778905492473 0.1415047200626348145 -0.54716081668542460026 -0.4707618685138851844 -0.16282189788610712533 -0.24042465179800037722 -0.25001853328275297494 -0.10861239897636945639 -0.064581941158962999361 -0.59091813579095431308 -0.055101818182479632424 0.037666227888089466591 -0.1946460278644897568 -0.74159378042569490397 -0.11876636777857134397 0.060331824740638445581 -0.44336150175421684683 -1.2672454457811068718 -0.14578497334900866744
|
|
140
|
+
0.12255387708831624871 0.14017759467544513297 0.005606753445792964953 1.0833744091894610406 -0.86957341587590075704 -3.2623886473142986731 1.1337605039961851094 0.31258020773461769881 -0.80120210646416789579 -0.26592743781439742712 -0.80103221960259773926 -0.23645693876939224976 0.14118868727169248123 -0.54659213281515606209 -0.47062009916321667635 -0.16306486796062993894 -0.23967788991387323216 -0.25036517990550144486 -0.10860783414297804639 -0.064876081815311417711 -0.58960332144607041638 -0.054872205255339111252 0.038874467650011151898 -0.1948544715747721201 -0.74247588266511566069 -0.11862679216890785472 0.061955140320975668478 -0.44407665939662255283 -1.2694342074717428481 -0.1437183232075722461
|
|
141
|
+
0.12231099050139891682 0.1394334803127363076 0.0054465602660122638956 1.0854718183091816019 -0.87027039501079317407 -3.2619230181901972543 1.1336525829123234033 0.31269929630892662198 -0.80129178783741361602 -0.26604696791826448754 -0.80125891018157202605 -0.23648823616784400703 0.1410096100981926559 -0.54597166658451135035 -0.47046123840144038475 -0.1633434039774047386 -0.23925519919074181296 -0.25007903298238731704 -0.10860119781743778067 -0.065199981302366608049 -0.58833121848190106373 -0.054537621820561051067 0.04007580785587216976 -0.19510938147400458398 -0.74354531964712144987 -0.11805581989256166975 0.063245888531378482988 -0.44472398011312236354 -1.2710552838534376896 -0.14190856206234581105
|
|
142
|
+
0.12210628671317184935 0.13873250003314854806 0.0052869987880633847327 1.0874053409508210866 -0.87092816162605102281 -3.2614384518380989952 1.1336584956436612792 0.31280425696256514145 -0.8016530526423195635 -0.26613090202348504976 -0.80150872234500702973 -0.23662299941732573005 0.14110051762913888851 -0.54537642221702153922 -0.4702723036892244024 -0.16361318722146961369 -0.23915669936951985952 -0.2492202426553028205 -0.1084517962825482934 -0.065486244760267722786 -0.58744587861151609243 -0.053998749243998833691 0.041265786065364525037 -0.19538666268577897789 -0.74480072473551828249 -0.11710601132379923339 0.063990417745426977914 -0.44513560921071132492 -1.2715724013221085809 -0.14065571335564042155
|
|
143
|
+
0.12193253798389594444 0.138071080020604392 0.0051239129190098148606 1.0895843406573857415 -0.87171740379574369495 -3.2606434593232340724 1.1340611083968221706 0.31305482946894092056 -0.80240477503860796471 -0.26614823106435797628 -0.80181221104311761749 -0.23670643539047203641 0.14147392818040666063 -0.54483886696007077788 -0.46993679280917899366 -0.16384659148113572824 -0.23951437449241980149 -0.24778815866600836793 -0.10805417644820085321 -0.065734383374448271398 -0.58717623262141727114 -0.053175769405611181262 0.042399219260678439047 -0.1956015797000537626 -0.74609441496665651616 -0.11595868665670197584 0.064124520798644502051 -0.4451728596455475917 -1.270794961685635549 -0.14006045976578021528
|
|
144
|
+
0.12179161286589783308 0.13743217607565821892 0.0049575983197915514389 1.0910320701091076323 -0.87223468115782532006 -3.2600204810255846155 1.1342689902468012786 0.31313652221539461928 -0.80321193954568403939 -0.26616622162443842603 -0.80207547824329428199 -0.23678775981163086017 0.14205988773919067669 -0.54457768831246455843 -0.4697380761714060049 -0.16408177753109395858 -0.24006494805023226302 -0.24600936812993898228 -0.10764526719895280149 -0.065966749685768641398 -0.58745782418574843398 -0.052120120848931118795 0.043241430160158404739 -0.19584893984721654658 -0.74724702968161704764 -0.1147730212834824487 0.063744577704708815791 -0.4449920250364164942 -1.2691256484132773519 -0.14010496080045706235
|
|
145
|
+
0.12167127181593893892 0.13682294086563395741 0.0047865989566569216301 1.092389017014029573 -0.87272469792378215558 -3.2591018158237048397 1.1345549839105437684 0.31318648968347911898 -0.8041928926105581521 -0.26612799172206108578 -0.80246115751024582607 -0.23663671045976744645 0.14275173158331005974 -0.54451417815953739865 -0.46946016294001019498 -0.16428910592825773929 -0.24105337954012429069 -0.24383378307031500221 -0.1070557487527348528 -0.066152886794565754491 -0.58844275916440125229 -0.050796112944573409975 0.043991029561199115894 -0.19608303129795798259 -0.74831713192591764461 -0.11377506868110130733 0.063147447903790829282 -0.44462525346478465327 -1.2669263371510022242 -0.14074407787588189001
|
|
146
|
+
0.12157031549192136299 0.13624363067969377794 0.0046112253250721662798 1.0931750557411048508 -0.87305118169551554352 -3.2581814562754378706 1.1344814032107659596 0.31309801488953192816 -0.80515097153625991844 -0.26607547353109445298 -0.80291440416078596609 -0.23633722786345079392 0.14338200809600668006 -0.54458161830705820172 -0.46923231014734406719 -0.16449813071249480556 -0.24213346137247543366 -0.24152428260782393687 -0.10641017552078239905 -0.066318216822670694732 -0.58976483013733105309 -0.049398833419213930562 0.044656665162560650606 -0.19632102713923796355 -0.74914817539958156178 -0.11319935733932326438 0.06273604941637533905 -0.44417127802975098216 -1.2648629820861834183 -0.14191853526985756528
|
|
147
|
+
0.12147956462732735494 0.13570396344224752716 0.0044339815538588745955 1.0939591403420991789 -0.87331136044430146548 -3.2569328934563701594 1.1342754234538781066 0.31286278849341603303 -0.80602213603805317188 -0.26602261092293194578 -0.80343471147654987874 -0.23585953948026089355 0.14385245116479727923 -0.54462884535045563705 -0.46887838136174980752 -0.16465218334479297946 -0.2432869415596188023 -0.23921306887545054631 -0.10561549090163695197 -0.066386265957070145216 -0.5911964344284719175 -0.048088232064790036036 0.045406062271166593158 -0.19644462835385187449 -0.74977918097664897346 -0.11304294712417656266 0.062701874934540491324 -0.44355519868361248381 -1.2630831337937724612 -0.14354499248707788817
|
|
148
|
+
0.12139401323565104929 0.1352037008901647297 0.0042607932405493908687 1.0945682175785433898 -0.87347927251846591012 -3.255535352374266278 1.1338141661475440447 0.31243877422805477195 -0.80671046694640957675 -0.2660021443074673253 -0.80399154404277461961 -0.23533831718311379322 0.14406028811750978824 -0.54459670521642500329 -0.46846238318647853704 -0.164793760471369094 -0.24426683499129997479 -0.23718475448717787901 -0.10473321463352866512 -0.066397586304295791448 -0.59245174908837239247 -0.046963438182950470456 0.046351408081531972338 -0.19645999453285109548 -0.75031029269296445339 -0.11318798267421786852 0.063207953254751092498 -0.44284005940349535635 -1.2616916160813216319 -0.14556388926979260678
|
|
149
|
+
0.12130995824054689736 0.13473701849973235278 0.0040974376903857526871 1.0946471142288609624 -0.87358394533330618881 -3.2542886717075556469 1.1329383911817758612 0.31186458423504365145 -0.80727138336097037374 -0.26606006027928003066 -0.80462617375206391124 -0.23486596382646310333 0.1440799500843030212 -0.54440950217446659742 -0.46806409507191770736 -0.16500634354320506403 -0.24478578796409186658 -0.23577030621516709141 -0.1037340634171996373 -0.06642685875577060417 -0.59335609733016059231 -0.046131784549424882658 0.047735765005832556107 -0.19643754834967472322 -0.7509698609132374747 -0.11355384599261096612 0.064460699695757794903 -0.44211083320068073066 -1.2606211413198489257 -0.14798342538665762436
|
|
150
|
+
0.12122279464922210146 0.13429598861051686431 0.0039483521039413074089 1.0944033750368911129 -0.87355049185915445431 -3.2530629823183265792 1.1319406652478820607 0.3110345449173910759 -0.80776131427422337428 -0.26615894451590255132 -0.8053443962665898237 -0.2344724704246308189 0.14390271813079683061 -0.54407352686971510725 -0.46769123009246210687 -0.16529818269099194605 -0.24480554227629497399 -0.23498842807732153726 -0.10263924841042545988 -0.066487133094960917945 -0.59386435023235517594 -0.045452732510986471048 0.049551201627759604296 -0.19635065195332473964 -0.75176437326384204507 -0.11393390022878770174 0.066290559750194141819 -0.44133109085703053909 -1.2595159973573741841 -0.15061490988428663518
|
|
151
|
+
0.12112898831075911976 0.1338684434751365171 0.0038178348060938448703 1.0935584108046683127 -0.87350045387107555506 -3.2521040669660652433 1.1308359819067721475 0.3101168070976358937 -0.80829264841893022631 -0.266291187848976596 -0.8062384957804227259 -0.23412460608165322484 0.14361751475075115736 -0.54367204401657187596 -0.4674102241240820077 -0.16576430291359589564 -0.24431988270194729407 -0.23479764086351148644 -0.10143234173043241819 -0.066680365803369306965 -0.59408747108646153823 -0.044799026558317085744 0.051856996189550030874 -0.19630366440631258351 -0.75277736557676921958 -0.11425101724596538333 0.068637210968044704007 -0.44066216053965612254 -1.2582056564997310399 -0.1532601905638775186
|
|
152
|
+
0.12102617363397208394 0.13344503031529103554 0.0037079929246581306776 1.0920568007051221215 -0.87347525534381842416 -3.2515743842419504439 1.1297432099867290578 0.30921700812873059716 -0.80892897231261751134 -0.26644349336135747519 -0.80727470933287615029 -0.23372287931235888325 0.14330870459161937358 -0.54331710255709242396 -0.46711261489866373608 -0.16636746313639033668 -0.24358695704283145345 -0.23491674129379722102 -0.10007415980453404636 -0.066986266334885899432 -0.59422152908591407972 -0.044046019383669296476 0.054541349218130225074 -0.19629066814643858496 -0.75398454866703568111 -0.11439768972156670601 0.071270362887683541553 -0.44015270462889249936 -1.2567323910884444782 -0.15558019894620589429
|
|
153
|
+
0.12091289818237049847 0.13302037432296509589 0.0036208214047879928171 1.0900536060006440486 -0.87337037684584262198 -3.2513406723320468217 1.1287996157153685761 0.30823170586589754283 -0.80961889368931749811 -0.26662286253859007745 -0.80841017804642978373 -0.23321152415378565426 0.14304933302240604998 -0.54311520468826612884 -0.4666647496803854045 -0.16707143810023294961 -0.24302658447655536844 -0.23495535327856112429 -0.098623119586710994433 -0.067388059082297696589 -0.59433590421880133636 -0.043181727528434847574 0.057359633460737295685 -0.19630219864098302773 -0.75517506305393633514 -0.11439765795022902028 0.073955913384691623902 -0.43986569180948192903 -1.2552488466304523307 -0.15713140697204097673
|
|
154
|
+
0.1207883012688577562 0.13260060124785122415 0.0035527980615685460751 1.0880260651027988672 -0.87332789206429606299 -3.2513169792268481473 1.1281917516840007654 0.30737129644521038463 -0.81023387706012195419 -0.26686817362112857932 -0.80951062236945503514 -0.23238118791753820114 0.14280431587895150991 -0.54312146146919570988 -0.46585208034069114369 -0.1677142029519623212 -0.2428716376261549903 -0.23459571010482702103 -0.097058969206026246557 -0.067737699581382815328 -0.59445166754205158721 -0.042235772213290376231 0.060098028088213927 -0.19622220192441741649 -0.75624157823530890887 -0.11411849598505935388 0.07643161945526527612 -0.43973048631658595564 -1.25398810884014833 -0.15789944406786796116
|
|
155
|
+
0.12066292660562363825 0.13217682271281874784 0.0035052201870135971801 1.0844769392816981934 -0.872719748634928294 -3.2521359085401000399 1.1267109484312485268 0.30608416437963675838 -0.81116001173731044904 -0.26703371165710232393 -0.81078867529207521159 -0.23147632002804280349 0.14273709926171226914 -0.54306742600473101312 -0.46496780635895035294 -0.16855910116044370284 -0.24313385518464886159 -0.23378273109170158439 -0.095464628302048923358 -0.068283175503185175592 -0.594872111978273721 -0.041073533749832871753 0.062860670696513840094 -0.19641138821957426774 -0.7575855957952668529 -0.11338397575789742333 0.079308004878356777589 -0.44018767493727212203 -1.2540622167956654298 -0.15772455237120880378
|
|
156
|
+
0.12052830460556823722 0.13176429740675385527 0.0034777949762975586198 1.0816678549122891173 -0.8721459173702227341 -3.2528756045856712653 1.1257918734478404854 0.30496011944156847795 -0.81146099023818241136 -0.267352640149008558 -0.81149861105327936173 -0.23059170423164204733 0.14279795326541766531 -0.54317427077795521484 -0.46382904434452809639 -0.1691165714623841243 -0.24384801714697776354 -0.23278351151887180515 -0.094328578138938523612 -0.068599311602021026402 -0.59483063558032622797 -0.040355682744823519192 0.064629309458972730718 -0.19635993787222263962 -0.75840779623595422354 -0.11225424952422856373 0.081069053148483338767 -0.44062613845698300752 -1.2545297158281336625 -0.15649905828877727632
|
|
157
|
+
0.12039458749149341277 0.13136005468754813341 0.0034670056332403629239 1.0781957927164307343 -0.87123089292559408037 -3.254015227033825397 1.1240976691609967375 0.30363382839751612563 -0.81180227282901307184 -0.26761078022309936486 -0.81218916648088201882 -0.22978304665740792445 0.14298851293499759141 -0.54290948651197823427 -0.46277947786912204675 -0.16973491562442385994 -0.24475884120627799945 -0.23159129669415193242 -0.09338785421839544687 -0.068977019636952699444 -0.59493938210052244031 -0.039615103820200524287 0.066118804747669970845 -0.196511881034088981 -0.75946458595175958539 -0.11070934674391473551 0.082920938130210494754 -0.44143017388578897897 -1.2561582131156698861 -0.15496475458241742995
|
|
158
|
+
0.12025602871844295882 0.13097085329386445873 0.0034734065674619459853 1.0752525317892278611 -0.87050146811944917324 -3.254965445509440336 1.1223362835076158284 0.30257426403563003614 -0.81195724177768346941 -0.26783642756841213872 -0.81270522603756878421 -0.22914546935415008866 0.14324448181169011085 -0.54236134583600614789 -0.46192447578337736402 -0.17032014575679296775 -0.24563015130202114911 -0.23056394254569231861 -0.092795472812177204336 -0.069338827525692980913 -0.5949866345586467542 -0.039059419916280972707 0.067034147408343847108 -0.19675565293957525403 -0.76039800235175136756 -0.10894510801532085453 0.084319882793581546476 -0.4423079693311517957 -1.2580627375954627212 -0.15350065475693588923
|
|
159
|
+
0.12011302718615965435 0.1305886260211962524 0.0034983623286895275048 1.0727407168678539939 -0.87000920115615332229 -3.2557650098473360778 1.1204760321528244305 0.30180399763349996523 -0.81204987299976827408 -0.26794848206661070478 -0.81312667317018549884 -0.22865220954726689362 0.14355801723404906789 -0.54158884325718348318 -0.46148759197621008754 -0.17085628919200154807 -0.24623780400409173152 -0.22980155240835328789 -0.092555771396805555651 -0.069684573907413907556 -0.59512805156137049689 -0.038555143982649781043 0.067369856999800692421 -0.19708466041469921426 -0.76112590376101174616 -0.10723033442614590682 0.085153032521350244255 -0.44314332061916855698 -1.2596890668461868668 -0.15267030064289915936
|
|
160
|
+
0.11996143875092962761 0.13021561786653329529 0.0035416209464080032794 1.0712690695446245304 -0.86993238907046355202 -3.2560507816657509039 1.1189331361701633227 0.30141863829486681414 -0.81212568273314755807 -0.26797187344209472126 -0.8135089743812761176 -0.22813076959950626121 0.14384335549686719236 -0.54058164998145474822 -0.46131807086494241998 -0.17124892322314072546 -0.24652298403383535175 -0.22928797980424564518 -0.092492539242251051168 -0.06992318012491485768 -0.59528766275811140218 -0.038135404801547485854 0.067187969528675339781 -0.19735480347622175179 -0.76122872456234014216 -0.10585786264896157594 0.085232034147187232809 -0.4436426567712037361 -1.2601804402039722408 -0.1525948939769537771
|
|
161
|
+
0.11980731036133467071 0.12983439189265921776 0.0036066370165050627185 1.0695061731406652061 -0.86984417922274581692 -3.2566149485918303164 1.116996504693610115 0.3010622298733283686 -0.81233734150742831215 -0.26785980460343122855 -0.81394298120166186372 -0.2275698993859641972 0.14415665263869950619 -0.53959156876528946434 -0.46146858789323108585 -0.17159792243120808308 -0.24655674098077748346 -0.22889062525110442925 -0.09252844026243473019 -0.070175587776091452596 -0.59561498068652174442 -0.037690233735084156808 0.066662280494886400062 -0.19764755989790275259 -0.76072567391745293808 -0.10515730818395090107 0.084780865339674008063 -0.44394973297078266228 -1.2595312584255975441 -0.15349296121877711863
|
|
162
|
+
0.11964588881941377874 0.12945294395147560751 0.0036915703692171285798 1.0683110020141206586 -0.86981039440006180374 -3.2570525516150392598 1.1153173953513875194 0.30071850434187719081 -0.81264372554853625541 -0.26767731617159395974 -0.81441438209035921236 -0.22663802626707291177 0.14440531282457541584 -0.53877609990781216709 -0.46149456853700110415 -0.17166792684208409536 -0.24668537091614148316 -0.22831911817584737978 -0.09241643144377870156 -0.070202930798029736237 -0.59604416504716695169 -0.037336841669576882607 0.065901430094345181399 -0.19767921706910279722 -0.75953285451992968991 -0.105041116386764527 0.08362816241171620868 -0.44371865575266161708 -1.2575654472008255258 -0.1548894080581058319
|
|
163
|
+
0.11948188193076558772 0.12906483489019790478 0.0037966921294011004608 1.0670645320395992783 -0.86944127475681720618 -3.2578528603917109585 1.1135657455777858704 0.30007816062426406756 -0.81307069656669950231 -0.26749416122300745391 -0.81482655098777068137 -0.22535931947724782698 0.14453090987347624874 -0.5382614941446789425 -0.46115950921017101471 -0.17147539366904579472 -0.24701795941766219178 -0.22739030638213789115 -0.092036205144848656778 -0.070025157870226034662 -0.59646772892813570977 -0.037043196454569542186 0.06517083032490039729 -0.19743322415321346019 -0.7580045100718926232 -0.10514531874203537909 0.082136053393300337278 -0.44299992039752628115 -1.2547971551286778435 -0.15665204710968641533
|
|
164
|
+
0.1193196619272522685 0.1286677309873926478 0.0039144618348593207199 1.0652925910541526378 -0.86838692399486450135 -3.259254503716450202 1.111457485543579482 0.29882964058875943758 -0.81342989706203960854 -0.26739381538439505048 -0.81513426877591532715 -0.22381942709401236868 0.14459539953711375571 -0.53798696938764045683 -0.46039728088117887195 -0.1710191446314698327 -0.24767803645388242195 -0.22624217334042101557 -0.091379953249735329512 -0.06963789089842206681 -0.59686042328491917264 -0.036966086210420849578 0.064758611690339043521 -0.19694363372230194731 -0.75683870069067571418 -0.10511944641069093098 0.080681067066604925109 -0.44201931774240488249 -1.2521844238656636428 -0.15816257333879729652
|
|
165
|
+
0.11916979287548158661 0.12824626473639139101 0.0040399292426435652256 1.0619234303489386573 -0.8662137562228275911 -3.2618608935244641778 1.108353119913738194 0.29668892430953042183 -0.81349476360399630703 -0.26746678323606087879 -0.81515486895334254847 -0.22245855635599348643 0.14456702579794011854 -0.53783067074840817945 -0.45943628326581470445 -0.17053091852847010457 -0.24835408287356031121 -0.22516530292896819176 -0.090655272834381669944 -0.069260512951350342026 -0.5970635094845435642 -0.037073298080832713108 0.064816665892435024188 -0.19642851349323900423 -0.7567151333403570046 -0.1043886084612534737 0.079692200050639344644 -0.44107316149283526396 -1.250734878949425255 -0.15899286230066500547
|
|
166
|
+
0.11902350477728831923 0.12781799071152333269 0.0041557742814184893063 1.0587566464271691569 -0.86384529163015399966 -3.2645572548819341563 1.1053487789925813267 0.29441492469557395406 -0.81321109591689233476 -0.26773867992808603189 -0.81503285511572043376 -0.22110257940271957344 0.14447723782665614078 -0.5376933344356275013 -0.45829622007315878873 -0.16991699608002641675 -0.24909244950167219734 -0.22429423640342666113 -0.089766114694867796264 -0.068787164693458080489 -0.59730357809841616579 -0.037392054945014845113 0.06554155058403311751 -0.19581289975613760945 -0.75808726630499367882 -0.10287106038679107167 0.079374333138573935353 -0.44018403914894715934 -1.2509126157405674462 -0.15885509308484335733
|
|
167
|
+
0.11888158739657951612 0.12737779679191779669 0.0042518896089143096151 1.0556064359253198859 -0.86136705243990441261 -3.2674917436782022762 1.1023124530652310682 0.29219601406431489066 -0.81236310069957295976 -0.26823099151040391552 -0.81454706800577725279 -0.22017439517849601849 0.14421874017278243918 -0.53739546228901202696 -0.45716586192324476512 -0.16934767994708679884 -0.24944026188577853032 -0.22402209205082487808 -0.088842500426191156615 -0.068395190093967980771 -0.59744677409898461207 -0.037873588286131090741 0.066858829245073303493 -0.19532369809603275512 -0.76098869266552993107 -0.10051946765458512345 0.079807839069986286074 -0.43970516255005087647 -1.2528980983154049955 -0.15797997649717682167
|
|
168
|
+
0.11874740079962442518 0.12691978949322413328 0.0043184063461972239939 1.0524007037114833096 -0.85901257946225828555 -3.2703991383198003362 1.0993175623785389483 0.29019227114336565432 -0.81103102778797919736 -0.26885349501904204361 -0.81388244649948815468 -0.21977191338668419784 0.14389652942607406017 -0.5370035311799601363 -0.45645112167127477321 -0.1689864231461210009 -0.24939915113764662968 -0.22434860190516872636 -0.088071683855131782659 -0.068278952896133754402 -0.5977972779549961535 -0.038321871887163551362 0.068520672654263967138 -0.19513427685381651289 -0.76516392802834265474 -0.097714798277660747106 0.080895419535489412888 -0.43983135602387929408 -1.2565749104443342254 -0.15653505232960113203
|
|
169
|
+
0.11863194905447695116 0.1264258202935271691 0.0043538845925602366951 1.046817504317836045 -0.85607919719594927077 -3.2743147227424671541 1.0948522246559508897 0.28777422733339369509 -0.80930450899700367984 -0.2695685178671980986 -0.81318314172360905978 -0.2200438792312190972 0.1435753027541248894 -0.53644408068642812637 -0.45656033753997909974 -0.16913378219458841123 -0.24857862226149513019 -0.22520049173204245707 -0.087612648194253128775 -0.068670128796715163011 -0.59830700477783449465 -0.038390141076147951682 0.070362338633752088968 -0.19549080205800475896 -0.76992393254878332964 -0.094898928780304259156 0.082850306338860063571 -0.44080800524906088578 -1.2615782041794576518 -0.1549252966161842604
|
|
170
|
+
0.11852388712794115211 0.12592496216673876308 0.0043554850984809899417 1.0407535576407835887 -0.85340166428106223329 -3.2783424621963530576 1.0901512137469229202 0.2856425375555293189 -0.80753968445415946764 -0.27025267257800345 -0.81256073899128578031 -0.22051903723074142705 0.14324518561729090993 -0.53583782314111472189 -0.4569862573001904904 -0.16938990623248934009 -0.24753678101682272117 -0.22612615949905248702 -0.087189519775350304842 -0.069333374669141384361 -0.5991066499940510548 -0.038118981360528540747 0.072097879857195276698 -0.19609060347157564186 -0.77442210725302296215 -0.092637552927523098001 0.084909364174421714244 -0.44223224545343908787 -1.2667243038035798097 -0.15351817730343805812
|
|
171
|
+
0.11840780269817706427 0.12545733674633541277 0.004326017114327528057 1.0365259632512089372 -0.85167016240317661158 -3.2813004228110922433 1.0866135999259129985 0.28424099907293248757 -0.80593624850338785315 -0.27087744453976131398 -0.81211938030079078299 -0.22059053517709040215 0.14270307306948021298 -0.53546701978629407392 -0.45697180072461585087 -0.1695494844074020846 -0.24688945105013293535 -0.22645336227792711714 -0.086433243130167133894 -0.069892873524983759048 -0.59991047243818518275 -0.037645970484792241895 0.073591569511451085384 -0.19644050520849587471 -0.7776160419760028697 -0.091424208956939451154 0.086299374754165172896 -0.44328230053257072774 -1.270281110802438107 -0.15239669183920886986
|
|
172
|
+
0.11830220324540341448 0.12500468091215269362 0.0042756451965812354576 1.0311778507776401259 -0.84966518663287460278 -3.2847464309509932789 1.0822745544231682224 0.28255752492043256785 -0.80484503721783873242 -0.27136255269084097463 -0.81201506624515251698 -0.22034486013112786207 0.14217491848518692965 -0.53519390722737258947 -0.45663094560824502022 -0.16972271563765706226 -0.24665674020562186608 -0.22604556780507611968 -0.085389171563946791865 -0.070461064640246290347 -0.60076906251608741538 -0.036788544165324794932 0.075078461921660871736 -0.19676594100077199334 -0.77972730274612900292 -0.091154116326073772458 0.087471921002180472171 -0.44419649378634123993 -1.2725329129826310481 -0.15187426288782618355
|
|
173
|
+
0.11820173350533562384 0.12458546005017125113 0.0042138127576634145863 1.0261483779565943042 -0.84753048196500735401 -3.2878402082743960477 1.0780997806592382826 0.28060737132004748284 -0.80431879985383114562 -0.27170389422855534267 -0.81215629823201962445 -0.21963213716136892328 0.14172229387747611873 -0.53510579321640516781 -0.4557149475042297504 -0.16964878563948709855 -0.24703205222566435029 -0.22489750740349753744 -0.084152535992771559936 -0.070792890123643786859 -0.60127778352829375219 -0.03594445587222690891 0.076353597914379872647 -0.19673551926875754159 -0.78056210397373126941 -0.091706754631075873552 0.08791295610067431654 -0.44444913823315257417 -1.272823401916913566 -0.15193920724318432658
|
|
174
|
+
0.118117285288064644 0.12418521261291501356 0.0041507794016014589594 1.0204358328988194504 -0.84480714864305317402 -3.2910404237014949658 1.0733709001459559307 0.27805029744889031562 -0.80445660918882644363 -0.27191821619612277505 -0.81250356195878470356 -0.218798468398114343 0.14142147960491097125 -0.53515286131450956475 -0.45446774817458091 -0.16958261132755397815 -0.24793831273992222863 -0.22314385248785492677 -0.082886007524829288795 -0.071037526409668580452 -0.60144793486071435051 -0.035118670209627049494 0.077621893599771715766 -0.19659650563367175868 -0.78070768798751821738 -0.092689373356857188146 0.08820058263627657269 -0.44435705986158252623 -1.2719379688471599277 -0.15246239277626655317
|
|
175
|
+
0.11805076401877598324 0.12379830396805859005 0.0040888377311275739615 1.0143967468064403192 -0.84152335539095723949 -3.2940014046376129286 1.0683525647198772734 0.27488941514509085406 -0.80506422600012328417 -0.27200970330578649881 -0.81295648746492499281 -0.21808033434398166328 0.14141577841258709536 -0.53524100837073285142 -0.45315853140350093042 -0.16957158546049347358 -0.24899332936493812074 -0.22131878820386280404 -0.081780242423345056446 -0.071207494740700691405 -0.60121415025199276272 -0.034615230163507440531 0.078819817081289059169 -0.1963764675368918633 -0.78052620922876636556 -0.093824972473062040468 0.088458895295582040674 -0.44408344823390050182 -1.2705030265362815545 -0.15327243542267401932
|
|
176
|
+
0.11800418176299604101 0.12341970106508876048 0.0040269835481175735026 1.008695485880731324 -0.83807686570105954793 -3.2964964850498406079 1.0636094314564255026 0.27153137864271120749 -0.80592361634209519483 -0.27204064303933495061 -0.81320522528713856669 -0.21772261961249644857 0.14192333406335658208 -0.53514543801926905964 -0.45198930824861066613 -0.16940851190068204057 -0.25012429552535364596 -0.21962283512471103553 -0.080988753289994899753 -0.071089412659590608956 -0.60083798149630052166 -0.034464923225258153883 0.079739894868767619007 -0.19607917893195184189 -0.78033991342276476377 -0.094918923141022890078 0.088690721845049599881 -0.4435186483645091049 -1.2694287751803732256 -0.1540913539025329515
|
|
177
|
+
0.11796904734933459646 0.12303624816058031377 0.0039728438510426965918 1.0030004088964314946 -0.83497375252193084538 -3.2987625946537377786 1.0590082179845790034 0.2685705127117218316 -0.80685321499635398457 -0.27199003624639050969 -0.8134097493264887957 -0.21797961716532004983 0.14270191248416855268 -0.53519910192845554509 -0.45145948732863133701 -0.16969580446910623173 -0.25082893139391776449 -0.21848515171284063618 -0.080605028930245861685 -0.071323780147848139799 -0.60047102607748015224 -0.034597596705717478804 0.080431657594311492532 -0.19616100254187951446 -0.78024562717387424549 -0.095980148831339984206 0.089587547236017528451 -0.44363598064583270597 -1.2695684122082815382 -0.15448069693011981518
|
|
178
|
+
0.11795312335005578297 0.12263399249924633594 0.0039195371376743578726 0.99718265099492242598 -0.83185093904609608284 -3.3007728315244375672 1.0544921472817951891 0.26561774293843165573 -0.8076085934831563895 -0.27196159024251748138 -0.81337480239498960444 -0.21886841604229054226 0.14380109423730860763 -0.53498573743965260885 -0.45167077716898196282 -0.17018796877592767824 -0.25099238196482259733 -0.21783173932958399543 -0.080790781343786699509 -0.071648157364039108397 -0.6001639794489774804 -0.034750754229993609246 0.080592482848956620289 -0.19647477132767574015 -0.78002713936686141061 -0.096819337180941739129 0.090967498706021152066 -0.44418065589728605858 -1.271120577440300714 -0.1544345865822458197
|
|
179
|
+
0.11792893723744485301 0.1222421876423445547 0.0038687613888585847301 0.99331991767247296288 -0.83022679681382394179 -3.3022195093621937723 1.0515179289694513987 0.26417186102856798913 -0.80796374206253140926 -0.27196036859299971278 -0.81315490887921559882 -0.21986423725409981467 0.14489899295973721061 -0.53482598735463016126 -0.45210463434262165849 -0.17074699013712252293 -0.25096121549434152742 -0.21741519326247049637 -0.081144545639050338903 -0.071997399146823667926 -0.60008414897711614966 -0.034889874027178108262 0.080308676411196766587 -0.19687257054882176255 -0.77957227115678451312 -0.097590568530048729667 0.092408160779236886428 -0.44498518421115446086 -1.2737106934353383814 -0.1537073140093923318
|
|
180
|
+
0.11789212118190545153 0.12186188396161215519 0.0038203868456506374571 0.99110392844264472156 -0.82965160116600344953 -3.3032595601958818499 1.0498215943662279059 0.26376896659658305433 -0.8079362138111629843 -0.27200033877208207311 -0.8128235019457388244 -0.22068034050081647424 0.14582530410867464155 -0.53473986294566622224 -0.45250092022430576932 -0.17127942597029549576 -0.25091635573489129429 -0.21705068959689272079 -0.081538936684856885839 -0.072330089670838232374 -0.60011935634260427097 -0.034855345994188019487 0.07975865302680558433 -0.19725623541716116871 -0.77893428044583834513 -0.098080078050036045845 0.093762181680945355655 -0.44585703738618731595 -1.2767789486100979968 -0.15238853113681744
|
|
181
|
+
0.11784094685145592163 0.12149085237921190827 0.0037743643047829875808 0.99026208087147049586 -0.82978199578639255662 -3.3041212808512532284 1.0491772059262254313 0.26408825758543791329 -0.80753219207292481485 -0.27209952821918359511 -0.81245683913237232154 -0.22108588197526848895 0.14645854406291505811 -0.53471176289937871751 -0.45270587102026421666 -0.17166962273101124548 -0.25094106164049873042 -0.21661059389354384019 -0.081941453747572348676 -0.072588285031144714199 -0.60005666470364515952 -0.034641663323362374693 0.079136745258437071748 -0.19753154970797229262 -0.77836712143898378891 -0.098102354208119163514 0.094715166220602706182 -0.44657864997353025061 -1.2796579416322393374 -0.150763476998807322
|
|
182
|
+
0.1177742125520677835 0.12112421805338265124 0.0037293610938596418944 0.99013195275983800769 -0.83048017594140421949 -3.3051827566263702884 1.0491131405103277796 0.26504132430847127111 -0.80697642653657530865 -0.27222118125165428726 -0.81222045111627794167 -0.2209885365242515165 0.1467767315924592697 -0.53467317432777794473 -0.45266494374538307488 -0.17196156955942040745 -0.25107933510714580683 -0.21595899956702030442 -0.08226341231672511245 -0.072833112711086778202 -0.59982685572886373926 -0.034160732779374237966 0.078832123847783139303 -0.19775778825367221203 -0.77837147487546176627 -0.097273245524001211715 0.095348806015276441062 -0.44711497113390141767 -1.2819156856697722091 -0.149135852913578143
|
|
183
|
+
0.11769689606831462703 0.12075042185114294446 0.0036835419204224377314 0.99035233687183132911 -0.83127681200461134292 -3.3062528869882608085 1.0493791484008780923 0.26607479260531707865 -0.80645418570900551103 -0.27234314160973521757 -0.81215195128511608047 -0.22049045933533498176 0.14689824205455517814 -0.53461440233705515013 -0.45256156909565076196 -0.17217993060066119626 -0.25114619895131062854 -0.2151546729565087801 -0.082665750011663055585 -0.073095276915427082054 -0.59917985735172529793 -0.033539770627597401131 0.078905961207536942648 -0.19797032808679260185 -0.77912518936002617131 -0.095400976164640244326 0.09559732735198472886 -0.44741772849960609326 -1.283081329124683867 -0.1479024614234476509
|
|
184
|
+
0.11761039184164200078 0.12036564654325726531 0.0036340315029358533604 0.99107299946718963035 -0.83236071263749156213 -3.3071425391439750463 1.0501268458907451198 0.26733598133675645636 -0.80617285035307351126 -0.27244121387646202948 -0.8121330618777223842 -0.21980528295519274895 0.14701546421888769811 -0.53454705303184202325 -0.45240120974470776627 -0.17232289040095183363 -0.25114987420320028511 -0.21417467009193383309 -0.083146264923976420658 -0.073361558970600107554 -0.59812935930855271049 -0.032924587992119752622 0.079318722249685183479 -0.19817716864267531651 -0.7806133993007700056 -0.092479812558320731442 0.095422673918535760862 -0.44747032732679287159 -1.2830392168239805883 -0.14721843562716879772
|
|
185
|
+
0.11752608409023333758 0.11996278751507916116 0.0035769013582552084372 0.99205386981179755068 -0.83330196597098304956 -3.3074286925012228444 1.0511743578402368282 0.26826644717492015291 -0.80627868209498521068 -0.27251348928904939317 -0.81210778817696760434 -0.21916906766211488589 0.14736007870051670565 -0.5345068211890374732 -0.45243683967607134511 -0.17248189899727189855 -0.25080881344861372106 -0.21322664172546099137 -0.083831986369426125805 -0.073687883685112059995 -0.59664292172693556005 -0.032525128093894198344 0.079818743690167517912 -0.19844641866341461434 -0.78241225153038351792 -0.088824303785257838206 0.094907097797776632242 -0.44734927810416563743 -1.2818042669530758104 -0.14726403818289077186
|
|
186
|
+
0.11743441528069495372 0.11956730038925958426 0.0035108843457519411067 0.99488521175268174179 -0.83524745466048966325 -3.3065123498025306148 1.0536485176194272384 0.26991418811509193532 -0.80680290930016418383 -0.27255725926405471871 -0.81194077992750945949 -0.21847467900009848174 0.14794654956107242127 -0.53460452770834809844 -0.45228523438968815107 -0.17250569692811351663 -0.25046531070664190821 -0.21209833954501075559 -0.084426486373000167451 -0.07388211137205125123 -0.59503032828072421889 -0.032415824035047550999 0.080183055181364801256 -0.1985653203113196541 -0.78388673477545578461 -0.085051281071214457352 0.093843870024383671535 -0.44683351627604617207 -1.2792845609254341888 -0.14802274752789118528
|
|
187
|
+
0.11735315045286433266 0.11918487142324922512 0.0034400321849443081176 0.99825251757093080851 -0.83737466323458298323 -3.30486856669051976 1.0565123113695791268 0.27150831787843643372 -0.80774314131596347544 -0.27259297145899952231 -0.81162788711810984754 -0.21768761917742021628 0.14878152541354419669 -0.53503600030499154361 -0.45202339437766153596 -0.17247398839586233765 -0.24984299536725437796 -0.21113994911858602332 -0.0848552921198706539 -0.073983479460151088669 -0.5934123657103547167 -0.03272586256224507828 0.080327624173960249232 -0.19856027520538122033 -0.78459553173729434938 -0.081842371698507040967 0.092477053000229472723 -0.44590384171858493678 -1.2759897557667760903 -0.149449186776533266
|
|
188
|
+
0.11727508700280479814 0.11883749487074349305 0.0033705643659877942628 1.0030457680742170812 -0.84008544105706206562 -3.302298326703532183 1.0604098009998399466 0.27340611319776408905 -0.8087968105862651802 -0.27268666694396065386 -0.81110884574653629997 -0.21653839674635833035 0.14969854846728827824 -0.53561309617939922845 -0.45114530254972640133 -0.17208590382579497247 -0.2495942717592858906 -0.21014176657253338942 -0.084841876772952379282 -0.073675885226410567364 -0.59217906682329224388 -0.03342768363741912413 0.080078765954585240383 -0.19808258962052469054 -0.78417980477503945735 -0.079800944928760372821 0.090424374792264741729 -0.44426375771361575895 -1.2714252996452977129 -0.15186129009947135771
|
|
189
|
+
0.11721321015360181006 0.11852710752201396638 0.0033061115132094151016 1.0065335619904915987 -0.84220197798732687744 -3.3004861642331566607 1.0632990610285166788 0.27492275663845905376 -0.80997883980953722105 -0.27278267158962055117 -0.81018659913680535212 -0.21521450725159241291 0.15068052867374651105 -0.53709537025751563633 -0.44993990238646314195 -0.17166405731507830557 -0.24891302830939662782 -0.20951581176754899283 -0.084558512082266501508 -0.073283944060011582677 -0.59082552222249651308 -0.034385660325849325136 0.079551823431154036759 -0.19753144438355896284 -0.7825840343716080616 -0.079079680528614179624 0.088188473825939819872 -0.44255819420709907597 -1.2669802858485310626 -0.153757210874261252
|
|
190
|
+
0.11717036873560236765 0.11825736174159535985 0.0032593262611048923715 1.0086398319717169159 -0.84376097267571004146 -3.2994224431445426937 1.0651989448471974598 0.27595621159379413179 -0.81097043447836325569 -0.27295262601829728411 -0.8094254029483147761 -0.21337301700434921359 0.15132175116986668062 -0.53854926389857293856 -0.44836550682835679682 -0.17110774583616802924 -0.24844053014525091516 -0.20912837998190084154 -0.083846205436731102711 -0.072638195233002536555 -0.58994096549509689176 -0.035464367166071375514 0.079248688422711141555 -0.19666624841645358179 -0.78055374186744852505 -0.079915863624478847282 0.086083204100619467591 -0.44050611899046665521 -1.2621765621702580873 -0.15652413267487547133
|
|
191
|
+
0.11714312165051828096 0.11802596202988790974 0.0032322977507866119951 1.0092922124991257071 -0.84447576483996311669 -3.2994441360278119468 1.0660685673368002213 0.27640911537192841552 -0.81192410220550237376 -0.27308584386037365599 -0.80855332821615721883 -0.21114904928766056735 0.15177947343247280565 -0.54013969703721431692 -0.44642063576088925059 -0.17026790441653516517 -0.24792818383652190373 -0.20894044316064083744 -0.082875332583900382377 -0.071668689037035784861 -0.58920817993075358388 -0.036558115270734027613 0.079147127412777476541 -0.19543800545618456033 -0.77846045807913555326 -0.081980800738407022532 0.083769554832787529453 -0.43820473822449845791 -1.257638994542858546 -0.15884736754649056434
|
|
192
|
+
0.11712815771919317387 0.11782701425115563176 0.0032246268584707280663 1.0087759841285461881 -0.84464400428762764772 -3.3002513980146703787 1.0660920568864309388 0.27655168857571660324 -0.81296735603808689685 -0.27312308870082785406 -0.80787636358466075048 -0.20874425334916701935 0.1520520619986241162 -0.5416690871698426335 -0.44438561488292699364 -0.16941438470079789314 -0.24732286240069906169 -0.2088378968014704129 -0.081797686179394910044 -0.07058611986270982297 -0.58851783766723808622 -0.037594780746203197708 0.079579567217061081275 -0.19407936639281628266 -0.77680462303665609447 -0.084892146113349581382 0.081872756015635678173 -0.4361189147131630528 -1.2534914072247864691 -0.16087194105800495247
|
|
193
|
+
0.11712639888142399591 0.11764535187991219389 0.0032328493287489125201 1.0074964182720647088 -0.84434972399110908015 -3.3015141870458775131 1.065615821694325005 0.27645948334363712462 -0.81433014751472310166 -0.27299061315322170618 -0.80735097712419268134 -0.20647718209410573231 0.15245211414729065158 -0.54290788737839368316 -0.44246011623241315869 -0.1685804270852514497 -0.24661829930951589818 -0.20866818805349843235 -0.080868086143738124316 -0.069473245657711513168 -0.58772989712522527572 -0.038532754426000119519 0.080473899391107675538 -0.19268554084608757737 -0.77584090964949181668 -0.08820501849857936838 0.080459722564781649412 -0.4344741140972719351 -1.2501834226070769329 -0.16220926036470553755
|
|
194
|
+
0.11713761366622782445 0.1174752513056852854 0.0032516905975822959357 1.0062305467016852134 -0.8438876313192115175 -3.3025310991174876563 1.0651224732888506797 0.2762700516318170596 -0.81643471502347031432 -0.27257314831919821074 -0.80718523018755050646 -0.2044731374476955188 0.15325363529515112493 -0.54372447707103377379 -0.4407141710287003078 -0.16791127028950622591 -0.24591363935234858418 -0.20816966266392505913 -0.080132882088351342631 -0.068484655027244184522 -0.58683426264515536896 -0.039304323918935082927 0.081861571326411322613 -0.19142454081427023871 -0.77558349114824742809 -0.091582244851414501552 0.079826480926758078271 -0.43349660529205358284 -1.2479225722913165342 -0.16265611659333886752
|
|
195
|
+
0.11716750267911846262 0.11730812197059289903 0.0032792762088919178917 1.0049031315061451863 -0.84321450837539113632 -3.3032042526907408053 1.0645431635174158469 0.27589921580388948597 -0.81955644779707381709 -0.2718086533360494772 -0.80741936994303231678 -0.20284055218005572763 0.15472144340074514557 -0.54415849871940480398 -0.43906837732116665851 -0.16753219102989672096 -0.24543382477916828033 -0.2070818195140299578 -0.079592771789247521164 -0.067780437230067130949 -0.5858728347022570393 -0.039857027552706668361 0.083681849279881301285 -0.19047099581086568421 -0.77588544178181717559 -0.094896120017765664412 0.080142611999176466275 -0.43335582485279694476 -1.2469514432711366059 -0.16213667186595195902
|
|
196
|
+
0.11721556785987771732 0.11715264674949490975 0.0033144691025352624077 1.0043052084231007814 -0.84260138804892548148 -3.3031760311952287346 1.0643539620634827614 0.27549185022504435461 -0.82372914127766461156 -0.27070184099532168531 -0.80804974440313470652 -0.20127555855945733487 0.15689881564624819088 -0.54425350380936032835 -0.43701914189303164848 -0.16729147533546950832 -0.24565889181906072625 -0.20501478245449852866 -0.079006496150402893974 -0.06724444224822778704 -0.5849202497054867278 -0.04023583745299594977 0.085819391924449844877 -0.18969162973225286994 -0.7764672974019094509 -0.097950465020602089927 0.081160458855161696223 -0.43378107785068781288 -1.2469990473714283041 -0.16066301856499931588
|
|
197
|
+
0.11728740676969642842 0.1170115280478126879 0.0033592772076309739687 1.0041083601079745513 -0.84168768166667706776 -3.3025639104382320532 1.0642184758830197655 0.27463707605080894814 -0.82898639356492442865 -0.26924716253070629657 -0.80912718016594331605 -0.19949571011815805943 0.15968052495406045987 -0.54417300986177019606 -0.43423249900525445755 -0.16715782427554851108 -0.24675655687621814161 -0.20169572541033073398 -0.078129524337746225626 -0.066855127605038186522 -0.58404986175451567565 -0.040429590827158204402 0.08831986085865876912 -0.18907627269599594499 -0.7771989739791919094 -0.10063216628187643398 0.08289128324043355811 -0.43466586398986717388 -1.2479946301664779362 -0.15835633297078430259
|
|
198
|
+
0.11738441243908129263 0.11688623933391631415 0.0034171280352385852326 1.0039865681660851138 -0.84028453962970472979 -3.301727546975576022 1.063891554556926744 0.27317221844078759529 -0.83499270929015878551 -0.26753681115540201008 -0.81052839583667868339 -0.19718944819447004058 0.16279322051818220785 -0.54400835898906640953 -0.43033773945766945479 -0.16694596154174384806 -0.24883833372194233413 -0.19678633695539873849 -0.076733535528922827695 -0.066456383066169535945 -0.58333186928190527976 -0.040446024557398194132 0.091207613330673453778 -0.18848527071111259579 -0.77805191126428507875 -0.10298714112477021232 0.085149183372521849988 -0.43579536462010559639 -1.2498125702242033341 -0.15532791810924123643
|
|
199
|
+
0.11750540151021074409 0.11677218671952020734 0.0034921759006596012932 1.0033634698170594834 -0.83838725097227329019 -3.3012636083112703034 1.0630420496298431665 0.27119561620077670128 -0.84130710494277916034 -0.26568932335901751518 -0.8120899677233232028 -0.19422653768371503369 0.16586771035589711887 -0.54382076833981518593 -0.4252447649746198266 -0.16654416373978517263 -0.2516555875605902548 -0.19000533066780356251 -0.074700367540083176254 -0.065945248322143767972 -0.58285719198231744631 -0.040229680609875438646 0.094512588562023380767 -0.18785263132779703166 -0.77916899543843787246 -0.10496892136378217775 0.087867797228789012998 -0.4371166825367751585 -1.2524836239238392732 -0.15169863875077960191
|
|
200
|
+
0.11764691479229254234 0.11666025833170529102 0.0035845597939503591987 1.0021727776074580429 -0.83605783769320396459 -3.3013396389552789323 1.0617228710687469651 0.26883102289845756117 -0.84736963341920712445 -0.26387562950963711073 -0.81356701155897848121 -0.19065780866629267187 0.16853842591092016434 -0.54352567715152910743 -0.41912226492106702258 -0.16587185254534331236 -0.25458010078984127933 -0.18129778279922872941 -0.072134457139830493455 -0.06523233493287511342 -0.58253536026748620191 -0.039760780767670873825 0.098103771084561447458 -0.18710296157091546587 -0.78054474176232069293 -0.10664540530271994501 0.090831752510855512384 -0.43852075591961042766 -1.2559210861091085754 -0.14762460344212999241
|
|
201
|
+
0.1178165762193570526 0.11652024227053392469 0.0036934581809057822656 0.99886207232921842003 -0.83235287186392159509 -3.3022550420145986294 1.0589469537499507368 0.26517003865413829589 -0.85282963053714044843 -0.26219922732523454068 -0.81495013065476329395 -0.18685289511236222171 0.17067881536928453112 -0.54282498566636105952 -0.412944630449393002 -0.16509390042694135903 -0.25619360672475860463 -0.17097876516153312498 -0.069550784735562101724 -0.064526631818581939304 -0.58204360027167889591 -0.038962407322307893165 0.10181476727877739052 -0.18645647464871775711 -0.78208196213046243805 -0.1081951145410666032 0.094344307408530336811 -0.44051543890685773697 -1.260061539796804686 -0.14341136965557790828
|
|
202
|
+
0.11799344362963506971 0.11636008766118000057 0.0038136267866639103098 0.99498110474740764086 -0.82880940626713484054 -3.3038424406773154729 1.0560080278757659755 0.26183714691076381831 -0.85686691625417354956 -0.26090238095624751491 -0.81582650605445672376 -0.18286538468228674681 0.17196484972639744515 -0.54160341387034449667 -0.40674999921173099482 -0.16395089652608976771 -0.25603535406326888291 -0.1592136269893539291 -0.067129448053749027348 -0.063604369392490298085 -0.58122565475854492956 -0.037792899593270853908 0.10523117122545486146 -0.18588195233387524996 -0.78340652982248215608 -0.10973782154903073682 0.097597340971698143264 -0.44258093886162686026 -1.2638545762072994627 -0.1393788227049052586
|
|
203
|
+
0.11819190950922443817 0.11614967022002622987 0.0039453819214416074521 0.98884940685667288562 -0.82427575731057123321 -3.3062441381361389325 1.0517113964537789794 0.25769950699129262617 -0.85958993661528215746 -0.2600545296086280711 -0.81632411929593895472 -0.1792702452346023323 0.17247157764143988823 -0.53920490738098203476 -0.40152095320317499061 -0.16294963918119673152 -0.25303232788026663869 -0.14619492417391383166 -0.06542016556222235435 -0.062974574428324089914 -0.57963806352995572713 -0.035880908881311429637 0.10817580473787458128 -0.185645536751124135 -0.78410103632077376989 -0.11131263547204174602 0.10102638745745068372 -0.44504236643609984547 -1.2669153616171293653 -0.13583990669966569675
|
|
204
|
+
0.11839125661237426268 0.11592905220602010841 0.0040714313136432965859 0.98261041428130890818 -0.82012137001508134126 -3.3089436138512180463 1.0476715826245404095 0.25410639699740505959 -0.86019293020995124532 -0.25979204894367530221 -0.81628715813214525188 -0.17543315152046920491 0.17231789482213705211 -0.53558973812167043338 -0.39706057978564296418 -0.161483284581555947 -0.2468123869053530095 -0.13448871435807011054 -0.064732067490186992464 -0.062149588491767521203 -0.57715741803732711901 -0.033872243758399131486 0.1100337292093141045 -0.18540230225714596224 -0.78398546105166366793 -0.11346684598194735349 0.10300444341836260953 -0.44706054953932572449 -1.2682909310003127601 -0.13340829012887731042
|
|
205
|
+
FPS 60
|